xref: /freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pcb.h (revision 6ff6d951ade3f3379932df7f878ef3ea272cfc59)
16ff6d951SJohn Birrell /*
26ff6d951SJohn Birrell  * CDDL HEADER START
36ff6d951SJohn Birrell  *
46ff6d951SJohn Birrell  * The contents of this file are subject to the terms of the
56ff6d951SJohn Birrell  * Common Development and Distribution License, Version 1.0 only
66ff6d951SJohn Birrell  * (the "License").  You may not use this file except in compliance
76ff6d951SJohn Birrell  * with the License.
86ff6d951SJohn Birrell  *
96ff6d951SJohn Birrell  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
106ff6d951SJohn Birrell  * or http://www.opensolaris.org/os/licensing.
116ff6d951SJohn Birrell  * See the License for the specific language governing permissions
126ff6d951SJohn Birrell  * and limitations under the License.
136ff6d951SJohn Birrell  *
146ff6d951SJohn Birrell  * When distributing Covered Code, include this CDDL HEADER in each
156ff6d951SJohn Birrell  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
166ff6d951SJohn Birrell  * If applicable, add the following below this CDDL HEADER, with the
176ff6d951SJohn Birrell  * fields enclosed by brackets "[]" replaced with your own identifying
186ff6d951SJohn Birrell  * information: Portions Copyright [yyyy] [name of copyright owner]
196ff6d951SJohn Birrell  *
206ff6d951SJohn Birrell  * CDDL HEADER END
216ff6d951SJohn Birrell  */
226ff6d951SJohn Birrell /*
236ff6d951SJohn Birrell  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
246ff6d951SJohn Birrell  * Use is subject to license terms.
256ff6d951SJohn Birrell  */
266ff6d951SJohn Birrell 
276ff6d951SJohn Birrell #ifndef	_DT_PCB_H
286ff6d951SJohn Birrell #define	_DT_PCB_H
296ff6d951SJohn Birrell 
306ff6d951SJohn Birrell #pragma ident	"%Z%%M%	%I%	%E% SMI"
316ff6d951SJohn Birrell 
326ff6d951SJohn Birrell #include <dtrace.h>
336ff6d951SJohn Birrell #include <setjmp.h>
346ff6d951SJohn Birrell #include <stdio.h>
356ff6d951SJohn Birrell 
366ff6d951SJohn Birrell #ifdef	__cplusplus
376ff6d951SJohn Birrell extern "C" {
386ff6d951SJohn Birrell #endif
396ff6d951SJohn Birrell 
406ff6d951SJohn Birrell #include <dt_parser.h>
416ff6d951SJohn Birrell #include <dt_regset.h>
426ff6d951SJohn Birrell #include <dt_inttab.h>
436ff6d951SJohn Birrell #include <dt_strtab.h>
446ff6d951SJohn Birrell #include <dt_decl.h>
456ff6d951SJohn Birrell #include <dt_as.h>
466ff6d951SJohn Birrell 
476ff6d951SJohn Birrell typedef struct dt_pcb {
486ff6d951SJohn Birrell 	dtrace_hdl_t *pcb_hdl;	/* pointer to library handle */
496ff6d951SJohn Birrell 	struct dt_pcb *pcb_prev; /* pointer to previous pcb in stack */
506ff6d951SJohn Birrell 	FILE *pcb_fileptr;	/* pointer to input file (or NULL) */
516ff6d951SJohn Birrell 	char *pcb_filetag;	/* optional file name string (or NULL) */
526ff6d951SJohn Birrell 	const char *pcb_string;	/* pointer to input string (or NULL) */
536ff6d951SJohn Birrell 	const char *pcb_strptr;	/* pointer to input position */
546ff6d951SJohn Birrell 	size_t pcb_strlen;	/* length of pcb_string */
556ff6d951SJohn Birrell 	int pcb_sargc;		/* number of script arguments (if any) */
566ff6d951SJohn Birrell 	char *const *pcb_sargv;	/* script argument strings (if any) */
576ff6d951SJohn Birrell 	ushort_t *pcb_sflagv;	/* script argument flags (DT_IDFLG_* bits) */
586ff6d951SJohn Birrell 	dt_scope_t pcb_dstack;	/* declaration processing stack */
596ff6d951SJohn Birrell 	dt_node_t *pcb_list;	/* list of allocated parse tree nodes */
606ff6d951SJohn Birrell 	dt_node_t *pcb_hold;	/* parse tree nodes on hold until end of defn */
616ff6d951SJohn Birrell 	dt_node_t *pcb_root;	/* root of current parse tree */
626ff6d951SJohn Birrell 	dt_idstack_t pcb_globals; /* stack of global identifier hash tables */
636ff6d951SJohn Birrell 	dt_idhash_t *pcb_locals; /* current hash table of local identifiers */
646ff6d951SJohn Birrell 	dt_idhash_t *pcb_idents; /* current hash table of ambiguous idents */
656ff6d951SJohn Birrell 	dt_idhash_t *pcb_pragmas; /* current hash table of pending pragmas */
666ff6d951SJohn Birrell 	dt_inttab_t *pcb_inttab; /* integer table for constant references */
676ff6d951SJohn Birrell 	dt_strtab_t *pcb_strtab; /* string table for string references */
686ff6d951SJohn Birrell 	dt_regset_t *pcb_regs;	/* register set for code generation */
696ff6d951SJohn Birrell 	dt_irlist_t pcb_ir;	/* list of unrelocated IR instructions */
706ff6d951SJohn Birrell 	uint_t pcb_asvidx;	/* assembler vartab index (see dt_as.c) */
716ff6d951SJohn Birrell 	ulong_t **pcb_asxrefs;	/* assembler imported xlators (see dt_as.c) */
726ff6d951SJohn Birrell 	uint_t pcb_asxreflen;	/* assembler xlator map length (see dt_as.c) */
736ff6d951SJohn Birrell 	const dtrace_probedesc_t *pcb_pdesc; /* probedesc for current context */
746ff6d951SJohn Birrell 	struct dt_probe *pcb_probe; /* probe associated with current context */
756ff6d951SJohn Birrell 	dtrace_probeinfo_t pcb_pinfo; /* info associated with current context */
766ff6d951SJohn Birrell 	dtrace_attribute_t pcb_amin; /* stability minimum for compilation */
776ff6d951SJohn Birrell 	dt_node_t *pcb_dret;	/* node containing return type for assembler */
786ff6d951SJohn Birrell 	dtrace_difo_t *pcb_difo; /* intermediate DIF object made by assembler */
796ff6d951SJohn Birrell 	dtrace_prog_t *pcb_prog; /* intermediate program made by compiler */
806ff6d951SJohn Birrell 	dtrace_stmtdesc_t *pcb_stmt; /* intermediate stmt made by compiler */
816ff6d951SJohn Birrell 	dtrace_ecbdesc_t *pcb_ecbdesc; /* intermediate ecbdesc made by cmplr */
826ff6d951SJohn Birrell 	jmp_buf pcb_jmpbuf;	/* setjmp(3C) buffer for error return */
836ff6d951SJohn Birrell 	const char *pcb_region;	/* optional region name for yyerror() suffix */
846ff6d951SJohn Birrell 	dtrace_probespec_t pcb_pspec; /* probe description evaluation context */
856ff6d951SJohn Birrell 	uint_t pcb_cflags;	/* optional compilation flags (see dtrace.h) */
866ff6d951SJohn Birrell 	uint_t pcb_idepth;	/* preprocessor #include nesting depth */
876ff6d951SJohn Birrell 	yystate_t pcb_yystate;	/* lex/yacc parsing state (see yybegin()) */
886ff6d951SJohn Birrell 	int pcb_context;	/* yyparse() rules context (DT_CTX_* value) */
896ff6d951SJohn Birrell 	int pcb_token;		/* token to be returned by yylex() (if != 0) */
906ff6d951SJohn Birrell 	int pcb_cstate;		/* state to be restored by lexer at state end */
916ff6d951SJohn Birrell 	int pcb_braces;		/* number of open curly braces in lexer */
926ff6d951SJohn Birrell 	int pcb_brackets;	/* number of open square brackets in lexer */
936ff6d951SJohn Birrell 	int pcb_parens;		/* number of open parentheses in lexer */
946ff6d951SJohn Birrell } dt_pcb_t;
956ff6d951SJohn Birrell 
966ff6d951SJohn Birrell extern void dt_pcb_push(dtrace_hdl_t *, dt_pcb_t *);
976ff6d951SJohn Birrell extern void dt_pcb_pop(dtrace_hdl_t *, int);
986ff6d951SJohn Birrell 
996ff6d951SJohn Birrell #ifdef	__cplusplus
1006ff6d951SJohn Birrell }
1016ff6d951SJohn Birrell #endif
1026ff6d951SJohn Birrell 
1036ff6d951SJohn Birrell #endif	/* _DT_PCB_H */
104