Path: blob/main/cddl/contrib/opensolaris/lib/libdtrace/common/dt_ident.h
39562 views
/*1* CDDL HEADER START2*3* The contents of this file are subject to the terms of the4* Common Development and Distribution License, Version 1.0 only5* (the "License"). You may not use this file except in compliance6* with the License.7*8* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE9* or http://www.opensolaris.org/os/licensing.10* See the License for the specific language governing permissions11* and limitations under the License.12*13* When distributing Covered Code, include this CDDL HEADER in each14* file and include the License file at usr/src/OPENSOLARIS.LICENSE.15* If applicable, add the following below this CDDL HEADER, with the16* fields enclosed by brackets "[]" replaced with your own identifying17* information: Portions Copyright [yyyy] [name of copyright owner]18*19* CDDL HEADER END20*/21/*22* Copyright 2005 Sun Microsystems, Inc. All rights reserved.23* Use is subject to license terms.24*/2526#ifndef _DT_IDENT_H27#define _DT_IDENT_H2829#pragma ident "%Z%%M% %I% %E% SMI"3031#include <libctf.h>32#include <dtrace.h>3334#ifdef __cplusplus35extern "C" {36#endif3738#include <dt_list.h>3940struct dt_node;41struct dt_ident;42struct dt_idhash;43struct dt_irlist;44struct dt_regset;4546typedef struct dt_idsig {47int dis_varargs; /* argument index of start of varargs (or -1) */48int dis_optargs; /* argument index of start of optargs (or -1) */49int dis_argc; /* number of types in this signature */50struct dt_node *dis_args; /* array of nodes representing formal types */51uint64_t dis_auxinfo; /* auxiliary signature information, if any */52} dt_idsig_t;5354typedef struct dt_idnode {55struct dt_node *din_list; /* allocation list for parse tree nodes */56struct dt_node *din_root; /* root of this identifier's parse tree */57struct dt_idhash *din_hash; /* identifiers private to this subtree */58struct dt_ident **din_argv; /* identifiers in din_hash for arguments */59int din_argc; /* length of din_argv[] array */60} dt_idnode_t;6162typedef struct dt_idops {63void (*di_cook)(struct dt_node *, struct dt_ident *,64int, struct dt_node *);65void (*di_dtor)(struct dt_ident *);66size_t (*di_size)(struct dt_ident *);67} dt_idops_t;6869typedef struct dt_ident {70char *di_name; /* identifier name */71ushort_t di_kind; /* identifier kind (see below) */72ushort_t di_flags; /* identifier flags (see below) */73uint_t di_id; /* variable or subr id (see <sys/dtrace.h>) */74dtrace_attribute_t di_attr; /* identifier stability attributes */75uint_t di_vers; /* identifier version number (dt_version_t) */76const dt_idops_t *di_ops; /* identifier's class-specific ops vector */77void *di_iarg; /* initial argument pointer for ops vector */78void *di_data; /* private data pointer for ops vector */79ctf_file_t *di_ctfp; /* CTF container for the variable data type */80ctf_id_t di_type; /* CTF identifier for the variable data type */81struct dt_ident *di_next; /* pointer to next ident in hash chain */82ulong_t di_gen; /* generation number (pass that created me) */83int di_lineno; /* line number that defined this identifier */84} dt_ident_t;8586#define DT_IDENT_ARRAY 0 /* identifier is an array variable */87#define DT_IDENT_SCALAR 1 /* identifier is a scalar variable */88#define DT_IDENT_PTR 2 /* identifier is a magic pointer */89#define DT_IDENT_FUNC 3 /* identifier is a built-in function */90#define DT_IDENT_AGG 4 /* identifier is an aggregation */91#define DT_IDENT_AGGFUNC 5 /* identifier is an aggregating function */92#define DT_IDENT_ACTFUNC 6 /* identifier is an action function */93#define DT_IDENT_XLSOU 7 /* identifier is a translated struct or union */94#define DT_IDENT_XLPTR 8 /* identifier is a translated pointer */95#define DT_IDENT_SYMBOL 9 /* identifier is an external symbol */96#define DT_IDENT_ENUM 10 /* identifier is an enumerator */97#define DT_IDENT_PRAGAT 11 /* identifier is #pragma attributes */98#define DT_IDENT_PRAGBN 12 /* identifier is #pragma binding */99#define DT_IDENT_PROBE 13 /* identifier is a probe definition */100101#define DT_IDFLG_TLS 0x0001 /* variable is thread-local storage */102#define DT_IDFLG_LOCAL 0x0002 /* variable is local storage */103#define DT_IDFLG_WRITE 0x0004 /* variable is writable (can be modified) */104#define DT_IDFLG_INLINE 0x0008 /* variable is an inline definition */105#define DT_IDFLG_REF 0x0010 /* variable is referenced by this program */106#define DT_IDFLG_MOD 0x0020 /* variable is modified by this program */107#define DT_IDFLG_DIFR 0x0040 /* variable is referenced by current DIFO */108#define DT_IDFLG_DIFW 0x0080 /* variable is modified by current DIFO */109#define DT_IDFLG_CGREG 0x0100 /* variable is inlined by code generator */110#define DT_IDFLG_USER 0x0200 /* variable is associated with userland */111#define DT_IDFLG_PRIM 0x0400 /* variable is associated with primary object */112#define DT_IDFLG_DECL 0x0800 /* variable is associated with explicit decl */113#define DT_IDFLG_ORPHAN 0x1000 /* variable is in a dt_node and not dt_idhash */114115typedef struct dt_idhash {116dt_list_t dh_list; /* list prev/next pointers for dt_idstack */117const char *dh_name; /* name of this hash table */118void (*dh_defer)(struct dt_idhash *, dt_ident_t *); /* defer callback */119const dt_ident_t *dh_tmpl; /* template for initial ident population */120uint_t dh_nextid; /* next id to be returned by idhash_nextid() */121uint_t dh_minid; /* min id to be returned by idhash_nextid() */122uint_t dh_maxid; /* max id to be returned by idhash_nextid() */123ulong_t dh_nelems; /* number of identifiers in hash table */124ulong_t dh_hashsz; /* number of entries in dh_buckets array */125dt_ident_t *dh_hash[1]; /* array of hash table bucket pointers */126} dt_idhash_t;127128typedef struct dt_idstack {129dt_list_t dids_list; /* list meta-data for dt_idhash_t stack */130} dt_idstack_t;131132extern const dt_idops_t dt_idops_assc; /* associative array or aggregation */133extern const dt_idops_t dt_idops_func; /* function call built-in */134extern const dt_idops_t dt_idops_args; /* args[] built-in */135extern const dt_idops_t dt_idops_regs; /* regs[]/uregs[] built-in */136extern const dt_idops_t dt_idops_type; /* predefined type name string */137extern const dt_idops_t dt_idops_thaw; /* prefrozen type identifier */138extern const dt_idops_t dt_idops_inline; /* inline variable */139extern const dt_idops_t dt_idops_probe; /* probe definition */140141extern dt_idhash_t *dt_idhash_create(const char *, const dt_ident_t *,142uint_t, uint_t);143extern void dt_idhash_destroy(dt_idhash_t *);144extern void dt_idhash_update(dt_idhash_t *);145extern dt_ident_t *dt_idhash_lookup(dt_idhash_t *, const char *);146extern int dt_idhash_nextid(dt_idhash_t *, uint_t *);147extern ulong_t dt_idhash_size(const dt_idhash_t *);148extern const char *dt_idhash_name(const dt_idhash_t *);149150extern dt_ident_t *dt_idhash_insert(dt_idhash_t *, const char *, ushort_t,151ushort_t, uint_t, dtrace_attribute_t, uint_t,152const dt_idops_t *, void *, ulong_t);153154extern void dt_idhash_xinsert(dt_idhash_t *, dt_ident_t *);155extern void dt_idhash_delete(dt_idhash_t *, dt_ident_t *);156157typedef int dt_idhash_f(dt_idhash_t *, dt_ident_t *, void *);158extern int dt_idhash_iter(dt_idhash_t *, dt_idhash_f *, void *);159160extern dt_ident_t *dt_idstack_lookup(dt_idstack_t *, const char *);161extern void dt_idstack_push(dt_idstack_t *, dt_idhash_t *);162extern void dt_idstack_pop(dt_idstack_t *, dt_idhash_t *);163164extern dt_ident_t *dt_ident_create(const char *, ushort_t, ushort_t, uint_t,165dtrace_attribute_t, uint_t, const dt_idops_t *, void *, ulong_t);166extern void dt_ident_destroy(dt_ident_t *);167extern void dt_ident_morph(dt_ident_t *, ushort_t, const dt_idops_t *, void *);168extern dtrace_attribute_t dt_ident_cook(struct dt_node *,169dt_ident_t *, struct dt_node **);170171extern void dt_ident_type_assign(dt_ident_t *, ctf_file_t *, ctf_id_t);172extern dt_ident_t *dt_ident_resolve(dt_ident_t *);173extern size_t dt_ident_size(dt_ident_t *);174extern int dt_ident_unref(const dt_ident_t *);175176extern const char *dt_idkind_name(uint_t);177178#ifdef __cplusplus179}180#endif181182#endif /* _DT_IDENT_H */183184185