1*a864dc36Sdarran /* 2*a864dc36Sdarran * CDDL HEADER START 3*a864dc36Sdarran * 4*a864dc36Sdarran * The contents of this file are subject to the terms of the 5*a864dc36Sdarran * Common Development and Distribution License, Version 1.0 only 6*a864dc36Sdarran * (the "License"). You may not use this file except in compliance 7*a864dc36Sdarran * with the License. 8*a864dc36Sdarran * 9*a864dc36Sdarran * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*a864dc36Sdarran * or http://www.opensolaris.org/os/licensing. 11*a864dc36Sdarran * See the License for the specific language governing permissions 12*a864dc36Sdarran * and limitations under the License. 13*a864dc36Sdarran * 14*a864dc36Sdarran * When distributing Covered Code, include this CDDL HEADER in each 15*a864dc36Sdarran * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*a864dc36Sdarran * If applicable, add the following below this CDDL HEADER, with the 17*a864dc36Sdarran * fields enclosed by brackets "[]" replaced with your own identifying 18*a864dc36Sdarran * information: Portions Copyright [yyyy] [name of copyright owner] 19*a864dc36Sdarran * 20*a864dc36Sdarran * CDDL HEADER END 21*a864dc36Sdarran */ 22*a864dc36Sdarran /* 23*a864dc36Sdarran * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 24*a864dc36Sdarran * Use is subject to license terms. 25*a864dc36Sdarran */ 26*a864dc36Sdarran 27*a864dc36Sdarran #ifndef _DT_PCB_H 28*a864dc36Sdarran #define _DT_PCB_H 29*a864dc36Sdarran 30*a864dc36Sdarran #pragma ident "%Z%%M% %I% %E% SMI" 31*a864dc36Sdarran 32*a864dc36Sdarran #include <dtrace.h> 33*a864dc36Sdarran #include <setjmp.h> 34*a864dc36Sdarran #include <stdio.h> 35*a864dc36Sdarran 36*a864dc36Sdarran #ifdef __cplusplus 37*a864dc36Sdarran extern "C" { 38*a864dc36Sdarran #endif 39*a864dc36Sdarran 40*a864dc36Sdarran #include <dt_parser.h> 41*a864dc36Sdarran #include <dt_regset.h> 42*a864dc36Sdarran #include <dt_inttab.h> 43*a864dc36Sdarran #include <dt_strtab.h> 44*a864dc36Sdarran #include <dt_decl.h> 45*a864dc36Sdarran #include <dt_as.h> 46*a864dc36Sdarran 47*a864dc36Sdarran typedef struct dt_pcb { 48*a864dc36Sdarran dtrace_hdl_t *pcb_hdl; /* pointer to library handle */ 49*a864dc36Sdarran struct dt_pcb *pcb_prev; /* pointer to previous pcb in stack */ 50*a864dc36Sdarran FILE *pcb_fileptr; /* pointer to input file (or NULL) */ 51*a864dc36Sdarran char *pcb_filetag; /* optional file name string (or NULL) */ 52*a864dc36Sdarran const char *pcb_string; /* pointer to input string (or NULL) */ 53*a864dc36Sdarran const char *pcb_strptr; /* pointer to input position */ 54*a864dc36Sdarran size_t pcb_strlen; /* length of pcb_string */ 55*a864dc36Sdarran int pcb_sargc; /* number of script arguments (if any) */ 56*a864dc36Sdarran char *const *pcb_sargv; /* script argument strings (if any) */ 57*a864dc36Sdarran ushort_t *pcb_sflagv; /* script argument flags (DT_IDFLG_* bits) */ 58*a864dc36Sdarran dt_scope_t pcb_dstack; /* declaration processing stack */ 59*a864dc36Sdarran dt_node_t *pcb_list; /* list of allocated parse tree nodes */ 60*a864dc36Sdarran dt_node_t *pcb_hold; /* parse tree nodes on hold until end of defn */ 61*a864dc36Sdarran dt_node_t *pcb_root; /* root of current parse tree */ 62*a864dc36Sdarran dt_idstack_t pcb_globals; /* stack of global identifier hash tables */ 63*a864dc36Sdarran dt_idhash_t *pcb_locals; /* current hash table of local identifiers */ 64*a864dc36Sdarran dt_idhash_t *pcb_idents; /* current hash table of ambiguous idents */ 65*a864dc36Sdarran dt_idhash_t *pcb_pragmas; /* current hash table of pending pragmas */ 66*a864dc36Sdarran dt_inttab_t *pcb_inttab; /* integer table for constant references */ 67*a864dc36Sdarran dt_strtab_t *pcb_strtab; /* string table for string references */ 68*a864dc36Sdarran dt_regset_t *pcb_regs; /* register set for code generation */ 69*a864dc36Sdarran dt_irlist_t pcb_ir; /* list of unrelocated IR instructions */ 70*a864dc36Sdarran uint_t pcb_asvidx; /* assembler vartab index (see dt_as.c) */ 71*a864dc36Sdarran ulong_t **pcb_asxrefs; /* assembler imported xlators (see dt_as.c) */ 72*a864dc36Sdarran uint_t pcb_asxreflen; /* assembler xlator map length (see dt_as.c) */ 73*a864dc36Sdarran const dtrace_probedesc_t *pcb_pdesc; /* probedesc for current context */ 74*a864dc36Sdarran struct dt_probe *pcb_probe; /* probe associated with current context */ 75*a864dc36Sdarran dtrace_probeinfo_t pcb_pinfo; /* info associated with current context */ 76*a864dc36Sdarran dtrace_attribute_t pcb_amin; /* stability minimum for compilation */ 77*a864dc36Sdarran dt_node_t *pcb_dret; /* node containing return type for assembler */ 78*a864dc36Sdarran dtrace_difo_t *pcb_difo; /* intermediate DIF object made by assembler */ 79*a864dc36Sdarran dtrace_prog_t *pcb_prog; /* intermediate program made by compiler */ 80*a864dc36Sdarran dtrace_stmtdesc_t *pcb_stmt; /* intermediate stmt made by compiler */ 81*a864dc36Sdarran dtrace_ecbdesc_t *pcb_ecbdesc; /* intermediate ecbdesc made by cmplr */ 82*a864dc36Sdarran jmp_buf pcb_jmpbuf; /* setjmp(3C) buffer for error return */ 83*a864dc36Sdarran const char *pcb_region; /* optional region name for yyerror() suffix */ 84*a864dc36Sdarran dtrace_probespec_t pcb_pspec; /* probe description evaluation context */ 85*a864dc36Sdarran uint_t pcb_cflags; /* optional compilation flags (see dtrace.h) */ 86*a864dc36Sdarran uint_t pcb_idepth; /* preprocessor #include nesting depth */ 87*a864dc36Sdarran yystate_t pcb_yystate; /* lex/yacc parsing state (see yybegin()) */ 88*a864dc36Sdarran int pcb_context; /* yyparse() rules context (DT_CTX_* value) */ 89*a864dc36Sdarran int pcb_token; /* token to be returned by yylex() (if != 0) */ 90*a864dc36Sdarran int pcb_cstate; /* state to be restored by lexer at state end */ 91*a864dc36Sdarran int pcb_braces; /* number of open curly braces in lexer */ 92*a864dc36Sdarran int pcb_brackets; /* number of open square brackets in lexer */ 93*a864dc36Sdarran int pcb_parens; /* number of open parentheses in lexer */ 94*a864dc36Sdarran } dt_pcb_t; 95*a864dc36Sdarran 96*a864dc36Sdarran extern void dt_pcb_push(dtrace_hdl_t *, dt_pcb_t *); 97*a864dc36Sdarran extern void dt_pcb_pop(dtrace_hdl_t *, int); 98*a864dc36Sdarran 99*a864dc36Sdarran #ifdef __cplusplus 100*a864dc36Sdarran } 101*a864dc36Sdarran #endif 102*a864dc36Sdarran 103*a864dc36Sdarran #endif /* _DT_PCB_H */ 104