17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 523a1cceaSRoger A. Faulkner * Common Development and Distribution License (the "License"). 623a1cceaSRoger A. Faulkner * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 21e4586ebfSmws 227c478bd9Sstevel@tonic-gate /* 2323a1cceaSRoger A. Faulkner * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 24*7fd79137SRobert Mustacchi * Copyright (c) 2015, Joyent Inc. All rights reserved. 250af8f00bSMatthew Ahrens * Copyright (c) 2012, 2016 by Delphix. All rights reserved. 267c478bd9Sstevel@tonic-gate */ 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate /* 297c478bd9Sstevel@tonic-gate * DTrace D Language Parser 307c478bd9Sstevel@tonic-gate * 317c478bd9Sstevel@tonic-gate * The D Parser is a lex/yacc parser consisting of the lexer dt_lex.l, the 327c478bd9Sstevel@tonic-gate * parsing grammar dt_grammar.y, and this file, dt_parser.c, which handles 337c478bd9Sstevel@tonic-gate * the construction of the parse tree nodes and their syntactic validation. 347c478bd9Sstevel@tonic-gate * The parse tree is constructed of dt_node_t structures (see <dt_parser.h>) 357c478bd9Sstevel@tonic-gate * that are built in two passes: (1) the "create" pass, where the parse tree 367c478bd9Sstevel@tonic-gate * nodes are allocated by calls from the grammar to dt_node_*() subroutines, 377c478bd9Sstevel@tonic-gate * and (2) the "cook" pass, where nodes are coalesced, assigned D types, and 387c478bd9Sstevel@tonic-gate * validated according to the syntactic rules of the language. 397c478bd9Sstevel@tonic-gate * 407c478bd9Sstevel@tonic-gate * All node allocations are performed using dt_node_alloc(). All node frees 417c478bd9Sstevel@tonic-gate * during the parsing phase are performed by dt_node_free(), which frees node- 427c478bd9Sstevel@tonic-gate * internal state but does not actually free the nodes. All final node frees 437c478bd9Sstevel@tonic-gate * are done as part of the end of dt_compile() or as part of destroying 447c478bd9Sstevel@tonic-gate * persistent identifiers or translators which have embedded nodes. 457c478bd9Sstevel@tonic-gate * 467c478bd9Sstevel@tonic-gate * The dt_node_* routines that implement pass (1) may allocate new nodes. The 477c478bd9Sstevel@tonic-gate * dt_cook_* routines that implement pass (2) may *not* allocate new nodes. 487c478bd9Sstevel@tonic-gate * They may free existing nodes using dt_node_free(), but they may not actually 497c478bd9Sstevel@tonic-gate * deallocate any dt_node_t's. Currently dt_cook_op2() is an exception to this 507c478bd9Sstevel@tonic-gate * rule: see the comments therein for how this issue is resolved. 517c478bd9Sstevel@tonic-gate * 527c478bd9Sstevel@tonic-gate * The dt_cook_* routines are responsible for (at minimum) setting the final 537c478bd9Sstevel@tonic-gate * node type (dn_ctfp/dn_type) and attributes (dn_attr). If dn_ctfp/dn_type 547c478bd9Sstevel@tonic-gate * are set manually (i.e. not by one of the type assignment functions), then 557c478bd9Sstevel@tonic-gate * the DT_NF_COOKED flag must be set manually on the node. 567c478bd9Sstevel@tonic-gate * 577c478bd9Sstevel@tonic-gate * The cooking pass can be applied to the same parse tree more than once (used 587c478bd9Sstevel@tonic-gate * in the case of a comma-separated list of probe descriptions). As such, the 597c478bd9Sstevel@tonic-gate * cook routines must not perform any parse tree transformations which would 607c478bd9Sstevel@tonic-gate * be invalid if the tree were subsequently cooked using a different context. 617c478bd9Sstevel@tonic-gate * 627c478bd9Sstevel@tonic-gate * The dn_ctfp and dn_type fields form the type of the node. This tuple can 637c478bd9Sstevel@tonic-gate * take on the following set of values, which form our type invariants: 647c478bd9Sstevel@tonic-gate * 657c478bd9Sstevel@tonic-gate * 1. dn_ctfp = NULL, dn_type = CTF_ERR 667c478bd9Sstevel@tonic-gate * 677c478bd9Sstevel@tonic-gate * In this state, the node has unknown type and is not yet cooked. The 687c478bd9Sstevel@tonic-gate * DT_NF_COOKED flag is not yet set on the node. 697c478bd9Sstevel@tonic-gate * 707c478bd9Sstevel@tonic-gate * 2. dn_ctfp = DT_DYN_CTFP(dtp), dn_type = DT_DYN_TYPE(dtp) 717c478bd9Sstevel@tonic-gate * 727c478bd9Sstevel@tonic-gate * In this state, the node is a dynamic D type. This means that generic 737c478bd9Sstevel@tonic-gate * operations are not valid on this node and only code that knows how to 747c478bd9Sstevel@tonic-gate * examine the inner details of the node can operate on it. A <DYN> node 757c478bd9Sstevel@tonic-gate * must have dn_ident set to point to an identifier describing the object 767c478bd9Sstevel@tonic-gate * and its type. The DT_NF_REF flag is set for all nodes of type <DYN>. 777c478bd9Sstevel@tonic-gate * At present, the D compiler uses the <DYN> type for: 787c478bd9Sstevel@tonic-gate * 797c478bd9Sstevel@tonic-gate * - associative arrays that do not yet have a value type defined 807c478bd9Sstevel@tonic-gate * - translated data (i.e. the result of the xlate operator) 817c478bd9Sstevel@tonic-gate * - aggregations 827c478bd9Sstevel@tonic-gate * 837c478bd9Sstevel@tonic-gate * 3. dn_ctfp = DT_STR_CTFP(dtp), dn_type = DT_STR_TYPE(dtp) 847c478bd9Sstevel@tonic-gate * 857c478bd9Sstevel@tonic-gate * In this state, the node is of type D string. The string type is really 867c478bd9Sstevel@tonic-gate * a char[0] typedef, but requires special handling throughout the compiler. 877c478bd9Sstevel@tonic-gate * 887c478bd9Sstevel@tonic-gate * 4. dn_ctfp != NULL, dn_type = any other type ID 897c478bd9Sstevel@tonic-gate * 907c478bd9Sstevel@tonic-gate * In this state, the node is of some known D/CTF type. The normal libctf 917c478bd9Sstevel@tonic-gate * APIs can be used to learn more about the type name or structure. When 927c478bd9Sstevel@tonic-gate * the type is assigned, the DT_NF_SIGNED, DT_NF_REF, and DT_NF_BITFIELD 937c478bd9Sstevel@tonic-gate * flags cache the corresponding attributes of the underlying CTF type. 947c478bd9Sstevel@tonic-gate */ 957c478bd9Sstevel@tonic-gate 967c478bd9Sstevel@tonic-gate #include <sys/param.h> 97e5803b76SAdam H. Leventhal #include <sys/sysmacros.h> 987c478bd9Sstevel@tonic-gate #include <limits.h> 997c478bd9Sstevel@tonic-gate #include <setjmp.h> 1007c478bd9Sstevel@tonic-gate #include <strings.h> 1017c478bd9Sstevel@tonic-gate #include <assert.h> 1027c478bd9Sstevel@tonic-gate #include <alloca.h> 1037c478bd9Sstevel@tonic-gate #include <stdlib.h> 1047c478bd9Sstevel@tonic-gate #include <stdarg.h> 1057c478bd9Sstevel@tonic-gate #include <stdio.h> 1067c478bd9Sstevel@tonic-gate #include <errno.h> 1077c478bd9Sstevel@tonic-gate #include <ctype.h> 1087c478bd9Sstevel@tonic-gate 1097c478bd9Sstevel@tonic-gate #include <dt_impl.h> 1107c478bd9Sstevel@tonic-gate #include <dt_grammar.h> 1117c478bd9Sstevel@tonic-gate #include <dt_module.h> 1127c478bd9Sstevel@tonic-gate #include <dt_provider.h> 1137c478bd9Sstevel@tonic-gate #include <dt_string.h> 1147c478bd9Sstevel@tonic-gate #include <dt_as.h> 1157c478bd9Sstevel@tonic-gate 1167c478bd9Sstevel@tonic-gate dt_pcb_t *yypcb; /* current control block for parser */ 1177c478bd9Sstevel@tonic-gate dt_node_t *yypragma; /* lex token list for control lines */ 1187c478bd9Sstevel@tonic-gate char yyintprefix; /* int token macro prefix (+/-) */ 1197c478bd9Sstevel@tonic-gate char yyintsuffix[4]; /* int token suffix string [uU][lL] */ 1207c478bd9Sstevel@tonic-gate int yyintdecimal; /* int token format flag (1=decimal, 0=octal/hex) */ 1217c478bd9Sstevel@tonic-gate 1227c478bd9Sstevel@tonic-gate static const char * 1237c478bd9Sstevel@tonic-gate opstr(int op) 1247c478bd9Sstevel@tonic-gate { 1257c478bd9Sstevel@tonic-gate switch (op) { 1267c478bd9Sstevel@tonic-gate case DT_TOK_COMMA: return (","); 1277c478bd9Sstevel@tonic-gate case DT_TOK_ELLIPSIS: return ("..."); 1287c478bd9Sstevel@tonic-gate case DT_TOK_ASGN: return ("="); 1297c478bd9Sstevel@tonic-gate case DT_TOK_ADD_EQ: return ("+="); 1307c478bd9Sstevel@tonic-gate case DT_TOK_SUB_EQ: return ("-="); 1317c478bd9Sstevel@tonic-gate case DT_TOK_MUL_EQ: return ("*="); 1327c478bd9Sstevel@tonic-gate case DT_TOK_DIV_EQ: return ("/="); 1337c478bd9Sstevel@tonic-gate case DT_TOK_MOD_EQ: return ("%="); 1347c478bd9Sstevel@tonic-gate case DT_TOK_AND_EQ: return ("&="); 1357c478bd9Sstevel@tonic-gate case DT_TOK_XOR_EQ: return ("^="); 1367c478bd9Sstevel@tonic-gate case DT_TOK_OR_EQ: return ("|="); 1377c478bd9Sstevel@tonic-gate case DT_TOK_LSH_EQ: return ("<<="); 1387c478bd9Sstevel@tonic-gate case DT_TOK_RSH_EQ: return (">>="); 1397c478bd9Sstevel@tonic-gate case DT_TOK_QUESTION: return ("?"); 1407c478bd9Sstevel@tonic-gate case DT_TOK_COLON: return (":"); 1417c478bd9Sstevel@tonic-gate case DT_TOK_LOR: return ("||"); 1427c478bd9Sstevel@tonic-gate case DT_TOK_LXOR: return ("^^"); 1437c478bd9Sstevel@tonic-gate case DT_TOK_LAND: return ("&&"); 1447c478bd9Sstevel@tonic-gate case DT_TOK_BOR: return ("|"); 1457c478bd9Sstevel@tonic-gate case DT_TOK_XOR: return ("^"); 1467c478bd9Sstevel@tonic-gate case DT_TOK_BAND: return ("&"); 1477c478bd9Sstevel@tonic-gate case DT_TOK_EQU: return ("=="); 1487c478bd9Sstevel@tonic-gate case DT_TOK_NEQ: return ("!="); 1497c478bd9Sstevel@tonic-gate case DT_TOK_LT: return ("<"); 1507c478bd9Sstevel@tonic-gate case DT_TOK_LE: return ("<="); 1517c478bd9Sstevel@tonic-gate case DT_TOK_GT: return (">"); 1527c478bd9Sstevel@tonic-gate case DT_TOK_GE: return (">="); 1537c478bd9Sstevel@tonic-gate case DT_TOK_LSH: return ("<<"); 1547c478bd9Sstevel@tonic-gate case DT_TOK_RSH: return (">>"); 1557c478bd9Sstevel@tonic-gate case DT_TOK_ADD: return ("+"); 1567c478bd9Sstevel@tonic-gate case DT_TOK_SUB: return ("-"); 1577c478bd9Sstevel@tonic-gate case DT_TOK_MUL: return ("*"); 1587c478bd9Sstevel@tonic-gate case DT_TOK_DIV: return ("/"); 1597c478bd9Sstevel@tonic-gate case DT_TOK_MOD: return ("%"); 1607c478bd9Sstevel@tonic-gate case DT_TOK_LNEG: return ("!"); 1617c478bd9Sstevel@tonic-gate case DT_TOK_BNEG: return ("~"); 1627c478bd9Sstevel@tonic-gate case DT_TOK_ADDADD: return ("++"); 1637c478bd9Sstevel@tonic-gate case DT_TOK_PREINC: return ("++"); 1647c478bd9Sstevel@tonic-gate case DT_TOK_POSTINC: return ("++"); 1657c478bd9Sstevel@tonic-gate case DT_TOK_SUBSUB: return ("--"); 1667c478bd9Sstevel@tonic-gate case DT_TOK_PREDEC: return ("--"); 1677c478bd9Sstevel@tonic-gate case DT_TOK_POSTDEC: return ("--"); 1687c478bd9Sstevel@tonic-gate case DT_TOK_IPOS: return ("+"); 1697c478bd9Sstevel@tonic-gate case DT_TOK_INEG: return ("-"); 1707c478bd9Sstevel@tonic-gate case DT_TOK_DEREF: return ("*"); 1717c478bd9Sstevel@tonic-gate case DT_TOK_ADDROF: return ("&"); 1727c478bd9Sstevel@tonic-gate case DT_TOK_OFFSETOF: return ("offsetof"); 1737c478bd9Sstevel@tonic-gate case DT_TOK_SIZEOF: return ("sizeof"); 1747c478bd9Sstevel@tonic-gate case DT_TOK_STRINGOF: return ("stringof"); 1757c478bd9Sstevel@tonic-gate case DT_TOK_XLATE: return ("xlate"); 1767c478bd9Sstevel@tonic-gate case DT_TOK_LPAR: return ("("); 1777c478bd9Sstevel@tonic-gate case DT_TOK_RPAR: return (")"); 1787c478bd9Sstevel@tonic-gate case DT_TOK_LBRAC: return ("["); 1797c478bd9Sstevel@tonic-gate case DT_TOK_RBRAC: return ("]"); 1807c478bd9Sstevel@tonic-gate case DT_TOK_PTR: return ("->"); 1817c478bd9Sstevel@tonic-gate case DT_TOK_DOT: return ("."); 1827c478bd9Sstevel@tonic-gate case DT_TOK_STRING: return ("<string>"); 1837c478bd9Sstevel@tonic-gate case DT_TOK_IDENT: return ("<ident>"); 1847c478bd9Sstevel@tonic-gate case DT_TOK_TNAME: return ("<type>"); 1857c478bd9Sstevel@tonic-gate case DT_TOK_INT: return ("<int>"); 1867c478bd9Sstevel@tonic-gate default: return ("<?>"); 1877c478bd9Sstevel@tonic-gate } 1887c478bd9Sstevel@tonic-gate } 1897c478bd9Sstevel@tonic-gate 1907c478bd9Sstevel@tonic-gate int 1917c478bd9Sstevel@tonic-gate dt_type_lookup(const char *s, dtrace_typeinfo_t *tip) 1927c478bd9Sstevel@tonic-gate { 1937c478bd9Sstevel@tonic-gate static const char delimiters[] = " \t\n\r\v\f*`"; 1947c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 195a386cc11SRobert Mustacchi const char *p, *q, *r, *end, *obj; 1967c478bd9Sstevel@tonic-gate 1977c478bd9Sstevel@tonic-gate for (p = s, end = s + strlen(s); *p != '\0'; p = q) { 1987c478bd9Sstevel@tonic-gate while (isspace(*p)) 1997c478bd9Sstevel@tonic-gate p++; /* skip leading whitespace prior to token */ 2007c478bd9Sstevel@tonic-gate 2017c478bd9Sstevel@tonic-gate if (p == end || (q = strpbrk(p + 1, delimiters)) == NULL) 2027c478bd9Sstevel@tonic-gate break; /* empty string or single token remaining */ 2037c478bd9Sstevel@tonic-gate 2047c478bd9Sstevel@tonic-gate if (*q == '`') { 2057c478bd9Sstevel@tonic-gate char *object = alloca((size_t)(q - p) + 1); 2067c478bd9Sstevel@tonic-gate char *type = alloca((size_t)(end - s) + 1); 2077c478bd9Sstevel@tonic-gate 2087c478bd9Sstevel@tonic-gate /* 2097c478bd9Sstevel@tonic-gate * Copy from the start of the token (p) to the location 2107c478bd9Sstevel@tonic-gate * backquote (q) to extract the nul-terminated object. 2117c478bd9Sstevel@tonic-gate */ 2127c478bd9Sstevel@tonic-gate bcopy(p, object, (size_t)(q - p)); 2137c478bd9Sstevel@tonic-gate object[(size_t)(q - p)] = '\0'; 2147c478bd9Sstevel@tonic-gate 2157c478bd9Sstevel@tonic-gate /* 2167c478bd9Sstevel@tonic-gate * Copy the original string up to the start of this 2177c478bd9Sstevel@tonic-gate * token (p) into type, and then concatenate everything 2187c478bd9Sstevel@tonic-gate * after q. This is the type name without the object. 2197c478bd9Sstevel@tonic-gate */ 2207c478bd9Sstevel@tonic-gate bcopy(s, type, (size_t)(p - s)); 2217c478bd9Sstevel@tonic-gate bcopy(q + 1, type + (size_t)(p - s), strlen(q + 1) + 1); 2227c478bd9Sstevel@tonic-gate 223a386cc11SRobert Mustacchi /* 224a386cc11SRobert Mustacchi * There may be at most three delimeters. The second 225a386cc11SRobert Mustacchi * delimeter is usually used to distinguish the type 226a386cc11SRobert Mustacchi * within a given module, however, there could be a link 227a386cc11SRobert Mustacchi * map id on the scene in which case that delimeter 228a386cc11SRobert Mustacchi * would be the third. We determine presence of the lmid 229a386cc11SRobert Mustacchi * if it rouglhly meets the from LM[0-9] 230a386cc11SRobert Mustacchi */ 231a386cc11SRobert Mustacchi if ((r = strchr(q + 1, '`')) != NULL && 232a386cc11SRobert Mustacchi ((r = strchr(r + 1, '`')) != NULL)) { 233a386cc11SRobert Mustacchi if (strchr(r + 1, '`') != NULL) 234a386cc11SRobert Mustacchi return (dt_set_errno(dtp, 235a386cc11SRobert Mustacchi EDT_BADSCOPE)); 236a386cc11SRobert Mustacchi if (q[1] != 'L' || q[2] != 'M') 237a386cc11SRobert Mustacchi return (dt_set_errno(dtp, 238a386cc11SRobert Mustacchi EDT_BADSCOPE)); 239a386cc11SRobert Mustacchi } 2407c478bd9Sstevel@tonic-gate 2417c478bd9Sstevel@tonic-gate return (dtrace_lookup_by_type(dtp, object, type, tip)); 2427c478bd9Sstevel@tonic-gate } 2437c478bd9Sstevel@tonic-gate } 2447c478bd9Sstevel@tonic-gate 2457c478bd9Sstevel@tonic-gate if (yypcb->pcb_idepth != 0) 2467c478bd9Sstevel@tonic-gate obj = DTRACE_OBJ_CDEFS; 2477c478bd9Sstevel@tonic-gate else 2487c478bd9Sstevel@tonic-gate obj = DTRACE_OBJ_EVERY; 2497c478bd9Sstevel@tonic-gate 2507c478bd9Sstevel@tonic-gate return (dtrace_lookup_by_type(dtp, obj, s, tip)); 2517c478bd9Sstevel@tonic-gate } 2527c478bd9Sstevel@tonic-gate 2537c478bd9Sstevel@tonic-gate /* 2547c478bd9Sstevel@tonic-gate * When we parse type expressions or parse an expression with unary "&", we 2557c478bd9Sstevel@tonic-gate * need to find a type that is a pointer to a previously known type. 2567c478bd9Sstevel@tonic-gate * Unfortunately CTF is limited to a per-container view, so ctf_type_pointer() 2577c478bd9Sstevel@tonic-gate * alone does not suffice for our needs. We provide a more intelligent wrapper 2587c478bd9Sstevel@tonic-gate * for the compiler that attempts to compute a pointer to either the given type 2597c478bd9Sstevel@tonic-gate * or its base (that is, we try both "foo_t *" and "struct foo *"), and also 2607c478bd9Sstevel@tonic-gate * to potentially construct the required type on-the-fly. 2617c478bd9Sstevel@tonic-gate */ 2627c478bd9Sstevel@tonic-gate int 2637c478bd9Sstevel@tonic-gate dt_type_pointer(dtrace_typeinfo_t *tip) 2647c478bd9Sstevel@tonic-gate { 2657c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 2667c478bd9Sstevel@tonic-gate ctf_file_t *ctfp = tip->dtt_ctfp; 2677c478bd9Sstevel@tonic-gate ctf_id_t type = tip->dtt_type; 2687c478bd9Sstevel@tonic-gate ctf_id_t base = ctf_type_resolve(ctfp, type); 269a386cc11SRobert Mustacchi uint_t bflags = tip->dtt_flags; 2707c478bd9Sstevel@tonic-gate 2717c478bd9Sstevel@tonic-gate dt_module_t *dmp; 2727c478bd9Sstevel@tonic-gate ctf_id_t ptr; 2737c478bd9Sstevel@tonic-gate 2747c478bd9Sstevel@tonic-gate if ((ptr = ctf_type_pointer(ctfp, type)) != CTF_ERR || 2757c478bd9Sstevel@tonic-gate (ptr = ctf_type_pointer(ctfp, base)) != CTF_ERR) { 2767c478bd9Sstevel@tonic-gate tip->dtt_type = ptr; 2777c478bd9Sstevel@tonic-gate return (0); 2787c478bd9Sstevel@tonic-gate } 2797c478bd9Sstevel@tonic-gate 2807c478bd9Sstevel@tonic-gate if (yypcb->pcb_idepth != 0) 2817c478bd9Sstevel@tonic-gate dmp = dtp->dt_cdefs; 2827c478bd9Sstevel@tonic-gate else 2837c478bd9Sstevel@tonic-gate dmp = dtp->dt_ddefs; 2847c478bd9Sstevel@tonic-gate 2857c478bd9Sstevel@tonic-gate if (ctfp != dmp->dm_ctfp && ctfp != ctf_parent_file(dmp->dm_ctfp) && 2867c478bd9Sstevel@tonic-gate (type = ctf_add_type(dmp->dm_ctfp, ctfp, type)) == CTF_ERR) { 2877c478bd9Sstevel@tonic-gate dtp->dt_ctferr = ctf_errno(dmp->dm_ctfp); 2887c478bd9Sstevel@tonic-gate return (dt_set_errno(dtp, EDT_CTF)); 2897c478bd9Sstevel@tonic-gate } 2907c478bd9Sstevel@tonic-gate 291*7fd79137SRobert Mustacchi ptr = ctf_add_pointer(dmp->dm_ctfp, CTF_ADD_ROOT, NULL, type); 2927c478bd9Sstevel@tonic-gate 2937c478bd9Sstevel@tonic-gate if (ptr == CTF_ERR || ctf_update(dmp->dm_ctfp) == CTF_ERR) { 2947c478bd9Sstevel@tonic-gate dtp->dt_ctferr = ctf_errno(dmp->dm_ctfp); 2957c478bd9Sstevel@tonic-gate return (dt_set_errno(dtp, EDT_CTF)); 2967c478bd9Sstevel@tonic-gate } 2977c478bd9Sstevel@tonic-gate 2987c478bd9Sstevel@tonic-gate tip->dtt_object = dmp->dm_name; 2997c478bd9Sstevel@tonic-gate tip->dtt_ctfp = dmp->dm_ctfp; 3007c478bd9Sstevel@tonic-gate tip->dtt_type = ptr; 301a386cc11SRobert Mustacchi tip->dtt_flags = bflags; 3027c478bd9Sstevel@tonic-gate 3037c478bd9Sstevel@tonic-gate return (0); 3047c478bd9Sstevel@tonic-gate } 3057c478bd9Sstevel@tonic-gate 3067c478bd9Sstevel@tonic-gate const char * 3077c478bd9Sstevel@tonic-gate dt_type_name(ctf_file_t *ctfp, ctf_id_t type, char *buf, size_t len) 3087c478bd9Sstevel@tonic-gate { 3097c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 3107c478bd9Sstevel@tonic-gate 3117c478bd9Sstevel@tonic-gate if (ctfp == DT_FPTR_CTFP(dtp) && type == DT_FPTR_TYPE(dtp)) 3127c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "function pointer"); 3137c478bd9Sstevel@tonic-gate else if (ctfp == DT_FUNC_CTFP(dtp) && type == DT_FUNC_TYPE(dtp)) 3147c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "function"); 3157c478bd9Sstevel@tonic-gate else if (ctfp == DT_DYN_CTFP(dtp) && type == DT_DYN_TYPE(dtp)) 3167c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "dynamic variable"); 3177c478bd9Sstevel@tonic-gate else if (ctfp == NULL) 3187c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "<none>"); 3197c478bd9Sstevel@tonic-gate else if (ctf_type_name(ctfp, type, buf, len) == NULL) 3207c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "unknown"); 3217c478bd9Sstevel@tonic-gate 3227c478bd9Sstevel@tonic-gate return (buf); 3237c478bd9Sstevel@tonic-gate } 3247c478bd9Sstevel@tonic-gate 3257c478bd9Sstevel@tonic-gate /* 3267c478bd9Sstevel@tonic-gate * Perform the "usual arithmetic conversions" to determine which of the two 3277c478bd9Sstevel@tonic-gate * input operand types should be promoted and used as a result type. The 3287c478bd9Sstevel@tonic-gate * rules for this are described in ISOC[6.3.1.8] and K&R[A6.5]. 3297c478bd9Sstevel@tonic-gate */ 3307c478bd9Sstevel@tonic-gate static void 3317c478bd9Sstevel@tonic-gate dt_type_promote(dt_node_t *lp, dt_node_t *rp, ctf_file_t **ofp, ctf_id_t *otype) 3327c478bd9Sstevel@tonic-gate { 3337c478bd9Sstevel@tonic-gate ctf_file_t *lfp = lp->dn_ctfp; 3347c478bd9Sstevel@tonic-gate ctf_id_t ltype = lp->dn_type; 3357c478bd9Sstevel@tonic-gate 3367c478bd9Sstevel@tonic-gate ctf_file_t *rfp = rp->dn_ctfp; 3377c478bd9Sstevel@tonic-gate ctf_id_t rtype = rp->dn_type; 3387c478bd9Sstevel@tonic-gate 3397c478bd9Sstevel@tonic-gate ctf_id_t lbase = ctf_type_resolve(lfp, ltype); 3407c478bd9Sstevel@tonic-gate uint_t lkind = ctf_type_kind(lfp, lbase); 3417c478bd9Sstevel@tonic-gate 3427c478bd9Sstevel@tonic-gate ctf_id_t rbase = ctf_type_resolve(rfp, rtype); 3437c478bd9Sstevel@tonic-gate uint_t rkind = ctf_type_kind(rfp, rbase); 3447c478bd9Sstevel@tonic-gate 3457c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 3467c478bd9Sstevel@tonic-gate ctf_encoding_t le, re; 3477c478bd9Sstevel@tonic-gate uint_t lrank, rrank; 3487c478bd9Sstevel@tonic-gate 3497c478bd9Sstevel@tonic-gate assert(lkind == CTF_K_INTEGER || lkind == CTF_K_ENUM); 3507c478bd9Sstevel@tonic-gate assert(rkind == CTF_K_INTEGER || rkind == CTF_K_ENUM); 3517c478bd9Sstevel@tonic-gate 3527c478bd9Sstevel@tonic-gate if (lkind == CTF_K_ENUM) { 3537c478bd9Sstevel@tonic-gate lfp = DT_INT_CTFP(dtp); 3547c478bd9Sstevel@tonic-gate ltype = lbase = DT_INT_TYPE(dtp); 3557c478bd9Sstevel@tonic-gate } 3567c478bd9Sstevel@tonic-gate 3577c478bd9Sstevel@tonic-gate if (rkind == CTF_K_ENUM) { 3587c478bd9Sstevel@tonic-gate rfp = DT_INT_CTFP(dtp); 3597c478bd9Sstevel@tonic-gate rtype = rbase = DT_INT_TYPE(dtp); 3607c478bd9Sstevel@tonic-gate } 3617c478bd9Sstevel@tonic-gate 3627c478bd9Sstevel@tonic-gate if (ctf_type_encoding(lfp, lbase, &le) == CTF_ERR) { 3637c478bd9Sstevel@tonic-gate yypcb->pcb_hdl->dt_ctferr = ctf_errno(lfp); 3647c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_CTF); 3657c478bd9Sstevel@tonic-gate } 3667c478bd9Sstevel@tonic-gate 3677c478bd9Sstevel@tonic-gate if (ctf_type_encoding(rfp, rbase, &re) == CTF_ERR) { 3687c478bd9Sstevel@tonic-gate yypcb->pcb_hdl->dt_ctferr = ctf_errno(rfp); 3697c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_CTF); 3707c478bd9Sstevel@tonic-gate } 3717c478bd9Sstevel@tonic-gate 3727c478bd9Sstevel@tonic-gate /* 3737c478bd9Sstevel@tonic-gate * Compute an integer rank based on the size and unsigned status. 3747c478bd9Sstevel@tonic-gate * If rank is identical, pick the "larger" of the equivalent types 3757c478bd9Sstevel@tonic-gate * which we define as having a larger base ctf_id_t. If rank is 3767c478bd9Sstevel@tonic-gate * different, pick the type with the greater rank. 3777c478bd9Sstevel@tonic-gate */ 3787c478bd9Sstevel@tonic-gate lrank = le.cte_bits + ((le.cte_format & CTF_INT_SIGNED) == 0); 3797c478bd9Sstevel@tonic-gate rrank = re.cte_bits + ((re.cte_format & CTF_INT_SIGNED) == 0); 3807c478bd9Sstevel@tonic-gate 3817c478bd9Sstevel@tonic-gate if (lrank == rrank) { 3827c478bd9Sstevel@tonic-gate if (lbase - rbase < 0) 3837c478bd9Sstevel@tonic-gate goto return_rtype; 3847c478bd9Sstevel@tonic-gate else 3857c478bd9Sstevel@tonic-gate goto return_ltype; 3867c478bd9Sstevel@tonic-gate } else if (lrank > rrank) { 3877c478bd9Sstevel@tonic-gate goto return_ltype; 3887c478bd9Sstevel@tonic-gate } else 3897c478bd9Sstevel@tonic-gate goto return_rtype; 3907c478bd9Sstevel@tonic-gate 3917c478bd9Sstevel@tonic-gate return_ltype: 3927c478bd9Sstevel@tonic-gate *ofp = lfp; 3937c478bd9Sstevel@tonic-gate *otype = ltype; 3947c478bd9Sstevel@tonic-gate return; 3957c478bd9Sstevel@tonic-gate 3967c478bd9Sstevel@tonic-gate return_rtype: 3977c478bd9Sstevel@tonic-gate *ofp = rfp; 3987c478bd9Sstevel@tonic-gate *otype = rtype; 3997c478bd9Sstevel@tonic-gate } 4007c478bd9Sstevel@tonic-gate 4017c478bd9Sstevel@tonic-gate void 4027c478bd9Sstevel@tonic-gate dt_node_promote(dt_node_t *lp, dt_node_t *rp, dt_node_t *dnp) 4037c478bd9Sstevel@tonic-gate { 4047c478bd9Sstevel@tonic-gate dt_type_promote(lp, rp, &dnp->dn_ctfp, &dnp->dn_type); 405a386cc11SRobert Mustacchi dt_node_type_assign(dnp, dnp->dn_ctfp, dnp->dn_type, B_FALSE); 4067c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 4077c478bd9Sstevel@tonic-gate } 4087c478bd9Sstevel@tonic-gate 4097c478bd9Sstevel@tonic-gate const char * 4107c478bd9Sstevel@tonic-gate dt_node_name(const dt_node_t *dnp, char *buf, size_t len) 4117c478bd9Sstevel@tonic-gate { 4127c478bd9Sstevel@tonic-gate char n1[DT_TYPE_NAMELEN]; 4137c478bd9Sstevel@tonic-gate char n2[DT_TYPE_NAMELEN]; 4147c478bd9Sstevel@tonic-gate 4157c478bd9Sstevel@tonic-gate const char *prefix = "", *suffix = ""; 4167c478bd9Sstevel@tonic-gate const dtrace_syminfo_t *dts; 4177c478bd9Sstevel@tonic-gate char *s; 4187c478bd9Sstevel@tonic-gate 4197c478bd9Sstevel@tonic-gate switch (dnp->dn_kind) { 4207c478bd9Sstevel@tonic-gate case DT_NODE_INT: 4217c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "integer constant 0x%llx", 4227c478bd9Sstevel@tonic-gate (u_longlong_t)dnp->dn_value); 4237c478bd9Sstevel@tonic-gate break; 4247c478bd9Sstevel@tonic-gate case DT_NODE_STRING: 4257c478bd9Sstevel@tonic-gate s = strchr2esc(dnp->dn_string, strlen(dnp->dn_string)); 4267c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "string constant \"%s\"", 4277c478bd9Sstevel@tonic-gate s != NULL ? s : dnp->dn_string); 4287c478bd9Sstevel@tonic-gate free(s); 4297c478bd9Sstevel@tonic-gate break; 4307c478bd9Sstevel@tonic-gate case DT_NODE_IDENT: 4317c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "identifier %s", dnp->dn_string); 4327c478bd9Sstevel@tonic-gate break; 4337c478bd9Sstevel@tonic-gate case DT_NODE_VAR: 4347c478bd9Sstevel@tonic-gate case DT_NODE_FUNC: 4357c478bd9Sstevel@tonic-gate case DT_NODE_AGG: 4367c478bd9Sstevel@tonic-gate case DT_NODE_INLINE: 4377c478bd9Sstevel@tonic-gate switch (dnp->dn_ident->di_kind) { 4387c478bd9Sstevel@tonic-gate case DT_IDENT_FUNC: 4397c478bd9Sstevel@tonic-gate case DT_IDENT_AGGFUNC: 4407c478bd9Sstevel@tonic-gate case DT_IDENT_ACTFUNC: 4417c478bd9Sstevel@tonic-gate suffix = "( )"; 4427c478bd9Sstevel@tonic-gate break; 4437c478bd9Sstevel@tonic-gate case DT_IDENT_AGG: 4447c478bd9Sstevel@tonic-gate prefix = "@"; 4457c478bd9Sstevel@tonic-gate break; 4467c478bd9Sstevel@tonic-gate } 4477c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "%s %s%s%s", 4487c478bd9Sstevel@tonic-gate dt_idkind_name(dnp->dn_ident->di_kind), 4497c478bd9Sstevel@tonic-gate prefix, dnp->dn_ident->di_name, suffix); 4507c478bd9Sstevel@tonic-gate break; 4517c478bd9Sstevel@tonic-gate case DT_NODE_SYM: 4527c478bd9Sstevel@tonic-gate dts = dnp->dn_ident->di_data; 4537c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "symbol %s`%s", 4547c478bd9Sstevel@tonic-gate dts->dts_object, dts->dts_name); 4557c478bd9Sstevel@tonic-gate break; 4567c478bd9Sstevel@tonic-gate case DT_NODE_TYPE: 4577c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "type %s", 4587c478bd9Sstevel@tonic-gate dt_node_type_name(dnp, n1, sizeof (n1))); 4597c478bd9Sstevel@tonic-gate break; 4607c478bd9Sstevel@tonic-gate case DT_NODE_OP1: 4617c478bd9Sstevel@tonic-gate case DT_NODE_OP2: 4627c478bd9Sstevel@tonic-gate case DT_NODE_OP3: 4637c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "operator %s", opstr(dnp->dn_op)); 4647c478bd9Sstevel@tonic-gate break; 4657c478bd9Sstevel@tonic-gate case DT_NODE_DEXPR: 4667c478bd9Sstevel@tonic-gate case DT_NODE_DFUNC: 4677c478bd9Sstevel@tonic-gate if (dnp->dn_expr) 4687c478bd9Sstevel@tonic-gate return (dt_node_name(dnp->dn_expr, buf, len)); 4697c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "%s", "statement"); 4707c478bd9Sstevel@tonic-gate break; 4717c478bd9Sstevel@tonic-gate case DT_NODE_PDESC: 4727c478bd9Sstevel@tonic-gate if (dnp->dn_desc->dtpd_id == 0) { 4737c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, 4747c478bd9Sstevel@tonic-gate "probe description %s:%s:%s:%s", 4757c478bd9Sstevel@tonic-gate dnp->dn_desc->dtpd_provider, dnp->dn_desc->dtpd_mod, 4767c478bd9Sstevel@tonic-gate dnp->dn_desc->dtpd_func, dnp->dn_desc->dtpd_name); 4777c478bd9Sstevel@tonic-gate } else { 4787c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "probe description %u", 4797c478bd9Sstevel@tonic-gate dnp->dn_desc->dtpd_id); 4807c478bd9Sstevel@tonic-gate } 4817c478bd9Sstevel@tonic-gate break; 4827c478bd9Sstevel@tonic-gate case DT_NODE_CLAUSE: 4837c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "%s", "clause"); 4847c478bd9Sstevel@tonic-gate break; 4857c478bd9Sstevel@tonic-gate case DT_NODE_MEMBER: 4867c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "member %s", dnp->dn_membname); 4877c478bd9Sstevel@tonic-gate break; 4887c478bd9Sstevel@tonic-gate case DT_NODE_XLATOR: 4897c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "translator <%s> (%s)", 4907c478bd9Sstevel@tonic-gate dt_type_name(dnp->dn_xlator->dx_dst_ctfp, 4917c478bd9Sstevel@tonic-gate dnp->dn_xlator->dx_dst_type, n1, sizeof (n1)), 4927c478bd9Sstevel@tonic-gate dt_type_name(dnp->dn_xlator->dx_src_ctfp, 4937c478bd9Sstevel@tonic-gate dnp->dn_xlator->dx_src_type, n2, sizeof (n2))); 4947c478bd9Sstevel@tonic-gate break; 4957c478bd9Sstevel@tonic-gate case DT_NODE_PROG: 4967c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "%s", "program"); 4977c478bd9Sstevel@tonic-gate break; 4987c478bd9Sstevel@tonic-gate default: 4997c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "node <%u>", dnp->dn_kind); 5007c478bd9Sstevel@tonic-gate break; 5017c478bd9Sstevel@tonic-gate } 5027c478bd9Sstevel@tonic-gate 5037c478bd9Sstevel@tonic-gate return (buf); 5047c478bd9Sstevel@tonic-gate } 5057c478bd9Sstevel@tonic-gate 5067c478bd9Sstevel@tonic-gate /* 5077c478bd9Sstevel@tonic-gate * dt_node_xalloc() can be used to create new parse nodes from any libdtrace 5087c478bd9Sstevel@tonic-gate * caller. The caller is responsible for assigning dn_link appropriately. 5097c478bd9Sstevel@tonic-gate */ 5107c478bd9Sstevel@tonic-gate dt_node_t * 5117c478bd9Sstevel@tonic-gate dt_node_xalloc(dtrace_hdl_t *dtp, int kind) 5127c478bd9Sstevel@tonic-gate { 5137c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_alloc(dtp, sizeof (dt_node_t)); 5147c478bd9Sstevel@tonic-gate 5157c478bd9Sstevel@tonic-gate if (dnp == NULL) 5167c478bd9Sstevel@tonic-gate return (NULL); 5177c478bd9Sstevel@tonic-gate 5187c478bd9Sstevel@tonic-gate dnp->dn_ctfp = NULL; 5197c478bd9Sstevel@tonic-gate dnp->dn_type = CTF_ERR; 5207c478bd9Sstevel@tonic-gate dnp->dn_kind = (uchar_t)kind; 5217c478bd9Sstevel@tonic-gate dnp->dn_flags = 0; 5227c478bd9Sstevel@tonic-gate dnp->dn_op = 0; 5237c478bd9Sstevel@tonic-gate dnp->dn_line = -1; 5247c478bd9Sstevel@tonic-gate dnp->dn_reg = -1; 5257c478bd9Sstevel@tonic-gate dnp->dn_attr = _dtrace_defattr; 5267c478bd9Sstevel@tonic-gate dnp->dn_list = NULL; 5277c478bd9Sstevel@tonic-gate dnp->dn_link = NULL; 5287c478bd9Sstevel@tonic-gate bzero(&dnp->dn_u, sizeof (dnp->dn_u)); 5297c478bd9Sstevel@tonic-gate 5307c478bd9Sstevel@tonic-gate return (dnp); 5317c478bd9Sstevel@tonic-gate } 5327c478bd9Sstevel@tonic-gate 5337c478bd9Sstevel@tonic-gate /* 5347c478bd9Sstevel@tonic-gate * dt_node_alloc() is used to create new parse nodes from the parser. It 5357c478bd9Sstevel@tonic-gate * assigns the node location based on the current lexer line number and places 5367c478bd9Sstevel@tonic-gate * the new node on the default allocation list. If allocation fails, we 5377c478bd9Sstevel@tonic-gate * automatically longjmp the caller back to the enclosing compilation call. 5387c478bd9Sstevel@tonic-gate */ 5397c478bd9Sstevel@tonic-gate static dt_node_t * 5407c478bd9Sstevel@tonic-gate dt_node_alloc(int kind) 5417c478bd9Sstevel@tonic-gate { 5427c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_node_xalloc(yypcb->pcb_hdl, kind); 5437c478bd9Sstevel@tonic-gate 5447c478bd9Sstevel@tonic-gate if (dnp == NULL) 5457c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 5467c478bd9Sstevel@tonic-gate 5477c478bd9Sstevel@tonic-gate dnp->dn_line = yylineno; 5487c478bd9Sstevel@tonic-gate dnp->dn_link = yypcb->pcb_list; 5497c478bd9Sstevel@tonic-gate yypcb->pcb_list = dnp; 5507c478bd9Sstevel@tonic-gate 5517c478bd9Sstevel@tonic-gate return (dnp); 5527c478bd9Sstevel@tonic-gate } 5537c478bd9Sstevel@tonic-gate 5547c478bd9Sstevel@tonic-gate void 5557c478bd9Sstevel@tonic-gate dt_node_free(dt_node_t *dnp) 5567c478bd9Sstevel@tonic-gate { 5577c478bd9Sstevel@tonic-gate uchar_t kind = dnp->dn_kind; 5587c478bd9Sstevel@tonic-gate 5597c478bd9Sstevel@tonic-gate dnp->dn_kind = DT_NODE_FREE; 5607c478bd9Sstevel@tonic-gate 5617c478bd9Sstevel@tonic-gate switch (kind) { 5627c478bd9Sstevel@tonic-gate case DT_NODE_STRING: 5637c478bd9Sstevel@tonic-gate case DT_NODE_IDENT: 5647c478bd9Sstevel@tonic-gate case DT_NODE_TYPE: 5657c478bd9Sstevel@tonic-gate free(dnp->dn_string); 5667c478bd9Sstevel@tonic-gate dnp->dn_string = NULL; 5677c478bd9Sstevel@tonic-gate break; 5687c478bd9Sstevel@tonic-gate 5697c478bd9Sstevel@tonic-gate case DT_NODE_VAR: 5707c478bd9Sstevel@tonic-gate case DT_NODE_FUNC: 5717c478bd9Sstevel@tonic-gate case DT_NODE_PROBE: 5727c478bd9Sstevel@tonic-gate if (dnp->dn_ident != NULL) { 5737c478bd9Sstevel@tonic-gate if (dnp->dn_ident->di_flags & DT_IDFLG_ORPHAN) 5747c478bd9Sstevel@tonic-gate dt_ident_destroy(dnp->dn_ident); 5757c478bd9Sstevel@tonic-gate dnp->dn_ident = NULL; 5767c478bd9Sstevel@tonic-gate } 5777c478bd9Sstevel@tonic-gate dt_node_list_free(&dnp->dn_args); 5787c478bd9Sstevel@tonic-gate break; 5797c478bd9Sstevel@tonic-gate 5807c478bd9Sstevel@tonic-gate case DT_NODE_OP1: 5817c478bd9Sstevel@tonic-gate if (dnp->dn_child != NULL) { 5827c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_child); 5837c478bd9Sstevel@tonic-gate dnp->dn_child = NULL; 5847c478bd9Sstevel@tonic-gate } 5857c478bd9Sstevel@tonic-gate break; 5867c478bd9Sstevel@tonic-gate 5877c478bd9Sstevel@tonic-gate case DT_NODE_OP3: 5887c478bd9Sstevel@tonic-gate if (dnp->dn_expr != NULL) { 5897c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_expr); 5907c478bd9Sstevel@tonic-gate dnp->dn_expr = NULL; 5917c478bd9Sstevel@tonic-gate } 5927c478bd9Sstevel@tonic-gate /*FALLTHRU*/ 5937c478bd9Sstevel@tonic-gate case DT_NODE_OP2: 5947c478bd9Sstevel@tonic-gate if (dnp->dn_left != NULL) { 5957c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_left); 5967c478bd9Sstevel@tonic-gate dnp->dn_left = NULL; 5977c478bd9Sstevel@tonic-gate } 5987c478bd9Sstevel@tonic-gate if (dnp->dn_right != NULL) { 5997c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_right); 6007c478bd9Sstevel@tonic-gate dnp->dn_right = NULL; 6017c478bd9Sstevel@tonic-gate } 6027c478bd9Sstevel@tonic-gate break; 6037c478bd9Sstevel@tonic-gate 6047c478bd9Sstevel@tonic-gate case DT_NODE_DEXPR: 6057c478bd9Sstevel@tonic-gate case DT_NODE_DFUNC: 6067c478bd9Sstevel@tonic-gate if (dnp->dn_expr != NULL) { 6077c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_expr); 6087c478bd9Sstevel@tonic-gate dnp->dn_expr = NULL; 6097c478bd9Sstevel@tonic-gate } 6107c478bd9Sstevel@tonic-gate break; 6117c478bd9Sstevel@tonic-gate 6127c478bd9Sstevel@tonic-gate case DT_NODE_AGG: 6137c478bd9Sstevel@tonic-gate if (dnp->dn_aggfun != NULL) { 6147c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_aggfun); 6157c478bd9Sstevel@tonic-gate dnp->dn_aggfun = NULL; 6167c478bd9Sstevel@tonic-gate } 6177c478bd9Sstevel@tonic-gate dt_node_list_free(&dnp->dn_aggtup); 6187c478bd9Sstevel@tonic-gate break; 6197c478bd9Sstevel@tonic-gate 6207c478bd9Sstevel@tonic-gate case DT_NODE_PDESC: 6217c478bd9Sstevel@tonic-gate free(dnp->dn_spec); 6227c478bd9Sstevel@tonic-gate dnp->dn_spec = NULL; 6237c478bd9Sstevel@tonic-gate free(dnp->dn_desc); 6247c478bd9Sstevel@tonic-gate dnp->dn_desc = NULL; 6257c478bd9Sstevel@tonic-gate break; 6267c478bd9Sstevel@tonic-gate 6277c478bd9Sstevel@tonic-gate case DT_NODE_CLAUSE: 6287c478bd9Sstevel@tonic-gate if (dnp->dn_pred != NULL) 6297c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_pred); 6307c478bd9Sstevel@tonic-gate if (dnp->dn_locals != NULL) 6317c478bd9Sstevel@tonic-gate dt_idhash_destroy(dnp->dn_locals); 6327c478bd9Sstevel@tonic-gate dt_node_list_free(&dnp->dn_pdescs); 6337c478bd9Sstevel@tonic-gate dt_node_list_free(&dnp->dn_acts); 6347c478bd9Sstevel@tonic-gate break; 6357c478bd9Sstevel@tonic-gate 6367c478bd9Sstevel@tonic-gate case DT_NODE_MEMBER: 6377c478bd9Sstevel@tonic-gate free(dnp->dn_membname); 6387c478bd9Sstevel@tonic-gate dnp->dn_membname = NULL; 6397c478bd9Sstevel@tonic-gate if (dnp->dn_membexpr != NULL) { 6407c478bd9Sstevel@tonic-gate dt_node_free(dnp->dn_membexpr); 6417c478bd9Sstevel@tonic-gate dnp->dn_membexpr = NULL; 6427c478bd9Sstevel@tonic-gate } 6437c478bd9Sstevel@tonic-gate break; 6447c478bd9Sstevel@tonic-gate 6457c478bd9Sstevel@tonic-gate case DT_NODE_PROVIDER: 6467c478bd9Sstevel@tonic-gate dt_node_list_free(&dnp->dn_probes); 6477c478bd9Sstevel@tonic-gate free(dnp->dn_provname); 6487c478bd9Sstevel@tonic-gate dnp->dn_provname = NULL; 6497c478bd9Sstevel@tonic-gate break; 6507c478bd9Sstevel@tonic-gate 6517c478bd9Sstevel@tonic-gate case DT_NODE_PROG: 6527c478bd9Sstevel@tonic-gate dt_node_list_free(&dnp->dn_list); 6537c478bd9Sstevel@tonic-gate break; 6547c478bd9Sstevel@tonic-gate } 6557c478bd9Sstevel@tonic-gate } 6567c478bd9Sstevel@tonic-gate 6577c478bd9Sstevel@tonic-gate void 6587c478bd9Sstevel@tonic-gate dt_node_attr_assign(dt_node_t *dnp, dtrace_attribute_t attr) 6597c478bd9Sstevel@tonic-gate { 6607c478bd9Sstevel@tonic-gate if ((yypcb->pcb_cflags & DTRACE_C_EATTR) && 6617c478bd9Sstevel@tonic-gate (dt_attr_cmp(attr, yypcb->pcb_amin) < 0)) { 6627c478bd9Sstevel@tonic-gate char a[DTRACE_ATTR2STR_MAX]; 6637c478bd9Sstevel@tonic-gate char s[BUFSIZ]; 6647c478bd9Sstevel@tonic-gate 6657c478bd9Sstevel@tonic-gate dnerror(dnp, D_ATTR_MIN, "attributes for %s (%s) are less than " 6667c478bd9Sstevel@tonic-gate "predefined minimum\n", dt_node_name(dnp, s, sizeof (s)), 6677c478bd9Sstevel@tonic-gate dtrace_attr2str(attr, a, sizeof (a))); 6687c478bd9Sstevel@tonic-gate } 6697c478bd9Sstevel@tonic-gate 6707c478bd9Sstevel@tonic-gate dnp->dn_attr = attr; 6717c478bd9Sstevel@tonic-gate } 6727c478bd9Sstevel@tonic-gate 6737c478bd9Sstevel@tonic-gate void 674a386cc11SRobert Mustacchi dt_node_type_assign(dt_node_t *dnp, ctf_file_t *fp, ctf_id_t type, 675a386cc11SRobert Mustacchi boolean_t user) 6767c478bd9Sstevel@tonic-gate { 6777c478bd9Sstevel@tonic-gate ctf_id_t base = ctf_type_resolve(fp, type); 6787c478bd9Sstevel@tonic-gate uint_t kind = ctf_type_kind(fp, base); 6797c478bd9Sstevel@tonic-gate ctf_encoding_t e; 6807c478bd9Sstevel@tonic-gate 6817c478bd9Sstevel@tonic-gate dnp->dn_flags &= 6827c478bd9Sstevel@tonic-gate ~(DT_NF_SIGNED | DT_NF_REF | DT_NF_BITFIELD | DT_NF_USERLAND); 6837c478bd9Sstevel@tonic-gate 6847c478bd9Sstevel@tonic-gate if (kind == CTF_K_INTEGER && ctf_type_encoding(fp, base, &e) == 0) { 6857c478bd9Sstevel@tonic-gate size_t size = e.cte_bits / NBBY; 6867c478bd9Sstevel@tonic-gate 6877c478bd9Sstevel@tonic-gate if (size > 8 || (e.cte_bits % NBBY) != 0 || (size & (size - 1))) 6887c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_BITFIELD; 6897c478bd9Sstevel@tonic-gate 6907c478bd9Sstevel@tonic-gate if (e.cte_format & CTF_INT_SIGNED) 6917c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_SIGNED; 6927c478bd9Sstevel@tonic-gate } 6937c478bd9Sstevel@tonic-gate 6947c478bd9Sstevel@tonic-gate if (kind == CTF_K_FLOAT && ctf_type_encoding(fp, base, &e) == 0) { 6957c478bd9Sstevel@tonic-gate if (e.cte_bits / NBBY > sizeof (uint64_t)) 6967c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_REF; 6977c478bd9Sstevel@tonic-gate } 6987c478bd9Sstevel@tonic-gate 6997c478bd9Sstevel@tonic-gate if (kind == CTF_K_STRUCT || kind == CTF_K_UNION || 7007c478bd9Sstevel@tonic-gate kind == CTF_K_FORWARD || 7017c478bd9Sstevel@tonic-gate kind == CTF_K_ARRAY || kind == CTF_K_FUNCTION) 7027c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_REF; 7037c478bd9Sstevel@tonic-gate else if (yypcb != NULL && fp == DT_DYN_CTFP(yypcb->pcb_hdl) && 7047c478bd9Sstevel@tonic-gate type == DT_DYN_TYPE(yypcb->pcb_hdl)) 7057c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_REF; 7067c478bd9Sstevel@tonic-gate 707a386cc11SRobert Mustacchi if (user) 708a386cc11SRobert Mustacchi dnp->dn_flags |= DT_NF_USERLAND; 709a386cc11SRobert Mustacchi 7107c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_COOKED; 7117c478bd9Sstevel@tonic-gate dnp->dn_ctfp = fp; 7127c478bd9Sstevel@tonic-gate dnp->dn_type = type; 7137c478bd9Sstevel@tonic-gate } 7147c478bd9Sstevel@tonic-gate 7157c478bd9Sstevel@tonic-gate void 7167c478bd9Sstevel@tonic-gate dt_node_type_propagate(const dt_node_t *src, dt_node_t *dst) 7177c478bd9Sstevel@tonic-gate { 7187c478bd9Sstevel@tonic-gate assert(src->dn_flags & DT_NF_COOKED); 7197c478bd9Sstevel@tonic-gate dst->dn_flags = src->dn_flags & ~DT_NF_LVALUE; 7207c478bd9Sstevel@tonic-gate dst->dn_ctfp = src->dn_ctfp; 7217c478bd9Sstevel@tonic-gate dst->dn_type = src->dn_type; 7227c478bd9Sstevel@tonic-gate } 7237c478bd9Sstevel@tonic-gate 7247c478bd9Sstevel@tonic-gate const char * 7257c478bd9Sstevel@tonic-gate dt_node_type_name(const dt_node_t *dnp, char *buf, size_t len) 7267c478bd9Sstevel@tonic-gate { 7277c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(dnp) && dnp->dn_ident != NULL) { 7287c478bd9Sstevel@tonic-gate (void) snprintf(buf, len, "%s", 7297c478bd9Sstevel@tonic-gate dt_idkind_name(dt_ident_resolve(dnp->dn_ident)->di_kind)); 7307c478bd9Sstevel@tonic-gate return (buf); 7317c478bd9Sstevel@tonic-gate } 7327c478bd9Sstevel@tonic-gate 7337c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_USERLAND) { 7347c478bd9Sstevel@tonic-gate size_t n = snprintf(buf, len, "userland "); 7357c478bd9Sstevel@tonic-gate len = len > n ? len - n : 0; 7367c478bd9Sstevel@tonic-gate (void) dt_type_name(dnp->dn_ctfp, dnp->dn_type, buf + n, len); 7377c478bd9Sstevel@tonic-gate return (buf); 7387c478bd9Sstevel@tonic-gate } 7397c478bd9Sstevel@tonic-gate 7407c478bd9Sstevel@tonic-gate return (dt_type_name(dnp->dn_ctfp, dnp->dn_type, buf, len)); 7417c478bd9Sstevel@tonic-gate } 7427c478bd9Sstevel@tonic-gate 7437c478bd9Sstevel@tonic-gate size_t 7447c478bd9Sstevel@tonic-gate dt_node_type_size(const dt_node_t *dnp) 7457c478bd9Sstevel@tonic-gate { 746ec57c73dSBryan Cantrill ctf_id_t base; 747a386cc11SRobert Mustacchi dtrace_hdl_t *dtp = yypcb->pcb_hdl; 748ec57c73dSBryan Cantrill 7497c478bd9Sstevel@tonic-gate if (dnp->dn_kind == DT_NODE_STRING) 7507c478bd9Sstevel@tonic-gate return (strlen(dnp->dn_string) + 1); 7517c478bd9Sstevel@tonic-gate 7527c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(dnp) && dnp->dn_ident != NULL) 7537c478bd9Sstevel@tonic-gate return (dt_ident_size(dnp->dn_ident)); 7547c478bd9Sstevel@tonic-gate 755ec57c73dSBryan Cantrill base = ctf_type_resolve(dnp->dn_ctfp, dnp->dn_type); 756ec57c73dSBryan Cantrill 757ec57c73dSBryan Cantrill if (ctf_type_kind(dnp->dn_ctfp, base) == CTF_K_FORWARD) 758ec57c73dSBryan Cantrill return (0); 759ec57c73dSBryan Cantrill 760a386cc11SRobert Mustacchi /* 761a386cc11SRobert Mustacchi * Here we have a 32-bit user pointer that is being used with a 64-bit 762a386cc11SRobert Mustacchi * kernel. When we're using it and its tagged as a userland reference -- 763a386cc11SRobert Mustacchi * then we need to keep it as a 32-bit pointer. However, if we are 764a386cc11SRobert Mustacchi * referring to it as a kernel address, eg. being used after a copyin() 765a386cc11SRobert Mustacchi * then we need to make sure that we actually return the kernel's size 766a386cc11SRobert Mustacchi * of a pointer, 8 bytes. 767a386cc11SRobert Mustacchi */ 768a386cc11SRobert Mustacchi if (ctf_type_kind(dnp->dn_ctfp, base) == CTF_K_POINTER && 769a386cc11SRobert Mustacchi ctf_getmodel(dnp->dn_ctfp) == CTF_MODEL_ILP32 && 770a386cc11SRobert Mustacchi !(dnp->dn_flags & DT_NF_USERLAND) && 771a386cc11SRobert Mustacchi dtp->dt_conf.dtc_ctfmodel == CTF_MODEL_LP64) 772a386cc11SRobert Mustacchi return (8); 773a386cc11SRobert Mustacchi 7747c478bd9Sstevel@tonic-gate return (ctf_type_size(dnp->dn_ctfp, dnp->dn_type)); 7757c478bd9Sstevel@tonic-gate } 7767c478bd9Sstevel@tonic-gate 7777c478bd9Sstevel@tonic-gate /* 7787c478bd9Sstevel@tonic-gate * Determine if the specified parse tree node references an identifier of the 7797c478bd9Sstevel@tonic-gate * specified kind, and if so return a pointer to it; otherwise return NULL. 7807c478bd9Sstevel@tonic-gate * This function resolves the identifier itself, following through any inlines. 7817c478bd9Sstevel@tonic-gate */ 7827c478bd9Sstevel@tonic-gate dt_ident_t * 7837c478bd9Sstevel@tonic-gate dt_node_resolve(const dt_node_t *dnp, uint_t idkind) 7847c478bd9Sstevel@tonic-gate { 7857c478bd9Sstevel@tonic-gate dt_ident_t *idp; 7867c478bd9Sstevel@tonic-gate 7877c478bd9Sstevel@tonic-gate switch (dnp->dn_kind) { 7887c478bd9Sstevel@tonic-gate case DT_NODE_VAR: 7897c478bd9Sstevel@tonic-gate case DT_NODE_SYM: 7907c478bd9Sstevel@tonic-gate case DT_NODE_FUNC: 7917c478bd9Sstevel@tonic-gate case DT_NODE_AGG: 7927c478bd9Sstevel@tonic-gate case DT_NODE_INLINE: 7937c478bd9Sstevel@tonic-gate case DT_NODE_PROBE: 7947c478bd9Sstevel@tonic-gate idp = dt_ident_resolve(dnp->dn_ident); 7957c478bd9Sstevel@tonic-gate return (idp->di_kind == idkind ? idp : NULL); 7967c478bd9Sstevel@tonic-gate } 7977c478bd9Sstevel@tonic-gate 7987c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(dnp)) { 7997c478bd9Sstevel@tonic-gate idp = dt_ident_resolve(dnp->dn_ident); 8007c478bd9Sstevel@tonic-gate return (idp->di_kind == idkind ? idp : NULL); 8017c478bd9Sstevel@tonic-gate } 8027c478bd9Sstevel@tonic-gate 8037c478bd9Sstevel@tonic-gate return (NULL); 8047c478bd9Sstevel@tonic-gate } 8057c478bd9Sstevel@tonic-gate 8067c478bd9Sstevel@tonic-gate size_t 8077c478bd9Sstevel@tonic-gate dt_node_sizeof(const dt_node_t *dnp) 8087c478bd9Sstevel@tonic-gate { 8097c478bd9Sstevel@tonic-gate dtrace_syminfo_t *sip; 8107c478bd9Sstevel@tonic-gate GElf_Sym sym; 8117c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 8127c478bd9Sstevel@tonic-gate 8137c478bd9Sstevel@tonic-gate /* 8147c478bd9Sstevel@tonic-gate * The size of the node as used for the sizeof() operator depends on 8157c478bd9Sstevel@tonic-gate * the kind of the node. If the node is a SYM, the size is obtained 8167c478bd9Sstevel@tonic-gate * from the symbol table; if it is not a SYM, the size is determined 8177c478bd9Sstevel@tonic-gate * from the node's type. This is slightly different from C's sizeof() 8187c478bd9Sstevel@tonic-gate * operator in that (for example) when applied to a function, sizeof() 8197c478bd9Sstevel@tonic-gate * will evaluate to the length of the function rather than the size of 8207c478bd9Sstevel@tonic-gate * the function type. 8217c478bd9Sstevel@tonic-gate */ 8227c478bd9Sstevel@tonic-gate if (dnp->dn_kind != DT_NODE_SYM) 8237c478bd9Sstevel@tonic-gate return (dt_node_type_size(dnp)); 8247c478bd9Sstevel@tonic-gate 8257c478bd9Sstevel@tonic-gate sip = dnp->dn_ident->di_data; 8267c478bd9Sstevel@tonic-gate 8277c478bd9Sstevel@tonic-gate if (dtrace_lookup_by_name(dtp, sip->dts_object, 8287c478bd9Sstevel@tonic-gate sip->dts_name, &sym, NULL) == -1) 8297c478bd9Sstevel@tonic-gate return (0); 8307c478bd9Sstevel@tonic-gate 8317c478bd9Sstevel@tonic-gate return (sym.st_size); 8327c478bd9Sstevel@tonic-gate } 8337c478bd9Sstevel@tonic-gate 8347c478bd9Sstevel@tonic-gate int 8357c478bd9Sstevel@tonic-gate dt_node_is_integer(const dt_node_t *dnp) 8367c478bd9Sstevel@tonic-gate { 8377c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 8387c478bd9Sstevel@tonic-gate ctf_encoding_t e; 8397c478bd9Sstevel@tonic-gate ctf_id_t type; 8407c478bd9Sstevel@tonic-gate uint_t kind; 8417c478bd9Sstevel@tonic-gate 8427c478bd9Sstevel@tonic-gate assert(dnp->dn_flags & DT_NF_COOKED); 8437c478bd9Sstevel@tonic-gate 8447c478bd9Sstevel@tonic-gate type = ctf_type_resolve(fp, dnp->dn_type); 8457c478bd9Sstevel@tonic-gate kind = ctf_type_kind(fp, type); 8467c478bd9Sstevel@tonic-gate 8477c478bd9Sstevel@tonic-gate if (kind == CTF_K_INTEGER && 8487c478bd9Sstevel@tonic-gate ctf_type_encoding(fp, type, &e) == 0 && IS_VOID(e)) 8497c478bd9Sstevel@tonic-gate return (0); /* void integer */ 8507c478bd9Sstevel@tonic-gate 8517c478bd9Sstevel@tonic-gate return (kind == CTF_K_INTEGER || kind == CTF_K_ENUM); 8527c478bd9Sstevel@tonic-gate } 8537c478bd9Sstevel@tonic-gate 8547c478bd9Sstevel@tonic-gate int 8557c478bd9Sstevel@tonic-gate dt_node_is_float(const dt_node_t *dnp) 8567c478bd9Sstevel@tonic-gate { 8577c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 8587c478bd9Sstevel@tonic-gate ctf_encoding_t e; 8597c478bd9Sstevel@tonic-gate ctf_id_t type; 8607c478bd9Sstevel@tonic-gate uint_t kind; 8617c478bd9Sstevel@tonic-gate 8627c478bd9Sstevel@tonic-gate assert(dnp->dn_flags & DT_NF_COOKED); 8637c478bd9Sstevel@tonic-gate 8647c478bd9Sstevel@tonic-gate type = ctf_type_resolve(fp, dnp->dn_type); 8657c478bd9Sstevel@tonic-gate kind = ctf_type_kind(fp, type); 8667c478bd9Sstevel@tonic-gate 8677c478bd9Sstevel@tonic-gate return (kind == CTF_K_FLOAT && 8687c478bd9Sstevel@tonic-gate ctf_type_encoding(dnp->dn_ctfp, type, &e) == 0 && ( 8697c478bd9Sstevel@tonic-gate e.cte_format == CTF_FP_SINGLE || e.cte_format == CTF_FP_DOUBLE || 8707c478bd9Sstevel@tonic-gate e.cte_format == CTF_FP_LDOUBLE)); 8717c478bd9Sstevel@tonic-gate } 8727c478bd9Sstevel@tonic-gate 8737c478bd9Sstevel@tonic-gate int 8747c478bd9Sstevel@tonic-gate dt_node_is_scalar(const dt_node_t *dnp) 8757c478bd9Sstevel@tonic-gate { 8767c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 8777c478bd9Sstevel@tonic-gate ctf_encoding_t e; 8787c478bd9Sstevel@tonic-gate ctf_id_t type; 8797c478bd9Sstevel@tonic-gate uint_t kind; 8807c478bd9Sstevel@tonic-gate 8817c478bd9Sstevel@tonic-gate assert(dnp->dn_flags & DT_NF_COOKED); 8827c478bd9Sstevel@tonic-gate 8837c478bd9Sstevel@tonic-gate type = ctf_type_resolve(fp, dnp->dn_type); 8847c478bd9Sstevel@tonic-gate kind = ctf_type_kind(fp, type); 8857c478bd9Sstevel@tonic-gate 8867c478bd9Sstevel@tonic-gate if (kind == CTF_K_INTEGER && 8877c478bd9Sstevel@tonic-gate ctf_type_encoding(fp, type, &e) == 0 && IS_VOID(e)) 8887c478bd9Sstevel@tonic-gate return (0); /* void cannot be used as a scalar */ 8897c478bd9Sstevel@tonic-gate 8907c478bd9Sstevel@tonic-gate return (kind == CTF_K_INTEGER || kind == CTF_K_ENUM || 8917c478bd9Sstevel@tonic-gate kind == CTF_K_POINTER); 8927c478bd9Sstevel@tonic-gate } 8937c478bd9Sstevel@tonic-gate 8947c478bd9Sstevel@tonic-gate int 8957c478bd9Sstevel@tonic-gate dt_node_is_arith(const dt_node_t *dnp) 8967c478bd9Sstevel@tonic-gate { 8977c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 8987c478bd9Sstevel@tonic-gate ctf_encoding_t e; 8997c478bd9Sstevel@tonic-gate ctf_id_t type; 9007c478bd9Sstevel@tonic-gate uint_t kind; 9017c478bd9Sstevel@tonic-gate 9027c478bd9Sstevel@tonic-gate assert(dnp->dn_flags & DT_NF_COOKED); 9037c478bd9Sstevel@tonic-gate 9047c478bd9Sstevel@tonic-gate type = ctf_type_resolve(fp, dnp->dn_type); 9057c478bd9Sstevel@tonic-gate kind = ctf_type_kind(fp, type); 9067c478bd9Sstevel@tonic-gate 9077c478bd9Sstevel@tonic-gate if (kind == CTF_K_INTEGER) 9087c478bd9Sstevel@tonic-gate return (ctf_type_encoding(fp, type, &e) == 0 && !IS_VOID(e)); 9097c478bd9Sstevel@tonic-gate else 9107c478bd9Sstevel@tonic-gate return (kind == CTF_K_ENUM); 9117c478bd9Sstevel@tonic-gate } 9127c478bd9Sstevel@tonic-gate 9137c478bd9Sstevel@tonic-gate int 9147c478bd9Sstevel@tonic-gate dt_node_is_vfptr(const dt_node_t *dnp) 9157c478bd9Sstevel@tonic-gate { 9167c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 9177c478bd9Sstevel@tonic-gate ctf_encoding_t e; 9187c478bd9Sstevel@tonic-gate ctf_id_t type; 9197c478bd9Sstevel@tonic-gate uint_t kind; 9207c478bd9Sstevel@tonic-gate 9217c478bd9Sstevel@tonic-gate assert(dnp->dn_flags & DT_NF_COOKED); 9227c478bd9Sstevel@tonic-gate 9237c478bd9Sstevel@tonic-gate type = ctf_type_resolve(fp, dnp->dn_type); 9247c478bd9Sstevel@tonic-gate if (ctf_type_kind(fp, type) != CTF_K_POINTER) 9257c478bd9Sstevel@tonic-gate return (0); /* type is not a pointer */ 9267c478bd9Sstevel@tonic-gate 9277c478bd9Sstevel@tonic-gate type = ctf_type_resolve(fp, ctf_type_reference(fp, type)); 9287c478bd9Sstevel@tonic-gate kind = ctf_type_kind(fp, type); 9297c478bd9Sstevel@tonic-gate 9307c478bd9Sstevel@tonic-gate return (kind == CTF_K_FUNCTION || (kind == CTF_K_INTEGER && 9317c478bd9Sstevel@tonic-gate ctf_type_encoding(fp, type, &e) == 0 && IS_VOID(e))); 9327c478bd9Sstevel@tonic-gate } 9337c478bd9Sstevel@tonic-gate 9347c478bd9Sstevel@tonic-gate int 9357c478bd9Sstevel@tonic-gate dt_node_is_dynamic(const dt_node_t *dnp) 9367c478bd9Sstevel@tonic-gate { 9377c478bd9Sstevel@tonic-gate if (dnp->dn_kind == DT_NODE_VAR && 9387c478bd9Sstevel@tonic-gate (dnp->dn_ident->di_flags & DT_IDFLG_INLINE)) { 9397c478bd9Sstevel@tonic-gate const dt_idnode_t *inp = dnp->dn_ident->di_iarg; 9401a7c1b72Smws return (inp->din_root ? dt_node_is_dynamic(inp->din_root) : 0); 9417c478bd9Sstevel@tonic-gate } 9427c478bd9Sstevel@tonic-gate 9437c478bd9Sstevel@tonic-gate return (dnp->dn_ctfp == DT_DYN_CTFP(yypcb->pcb_hdl) && 9447c478bd9Sstevel@tonic-gate dnp->dn_type == DT_DYN_TYPE(yypcb->pcb_hdl)); 9457c478bd9Sstevel@tonic-gate } 9467c478bd9Sstevel@tonic-gate 9477c478bd9Sstevel@tonic-gate int 9487c478bd9Sstevel@tonic-gate dt_node_is_string(const dt_node_t *dnp) 9497c478bd9Sstevel@tonic-gate { 9507c478bd9Sstevel@tonic-gate return (dnp->dn_ctfp == DT_STR_CTFP(yypcb->pcb_hdl) && 9517c478bd9Sstevel@tonic-gate dnp->dn_type == DT_STR_TYPE(yypcb->pcb_hdl)); 9527c478bd9Sstevel@tonic-gate } 9537c478bd9Sstevel@tonic-gate 9547c478bd9Sstevel@tonic-gate int 9557c478bd9Sstevel@tonic-gate dt_node_is_stack(const dt_node_t *dnp) 9567c478bd9Sstevel@tonic-gate { 9577c478bd9Sstevel@tonic-gate return (dnp->dn_ctfp == DT_STACK_CTFP(yypcb->pcb_hdl) && 9587c478bd9Sstevel@tonic-gate dnp->dn_type == DT_STACK_TYPE(yypcb->pcb_hdl)); 9597c478bd9Sstevel@tonic-gate } 9607c478bd9Sstevel@tonic-gate 9617c478bd9Sstevel@tonic-gate int 962a1b5e537Sbmc dt_node_is_symaddr(const dt_node_t *dnp) 963a1b5e537Sbmc { 964a1b5e537Sbmc return (dnp->dn_ctfp == DT_SYMADDR_CTFP(yypcb->pcb_hdl) && 965a1b5e537Sbmc dnp->dn_type == DT_SYMADDR_TYPE(yypcb->pcb_hdl)); 966a1b5e537Sbmc } 967a1b5e537Sbmc 968a1b5e537Sbmc int 969a1b5e537Sbmc dt_node_is_usymaddr(const dt_node_t *dnp) 970a1b5e537Sbmc { 971a1b5e537Sbmc return (dnp->dn_ctfp == DT_USYMADDR_CTFP(yypcb->pcb_hdl) && 972a1b5e537Sbmc dnp->dn_type == DT_USYMADDR_TYPE(yypcb->pcb_hdl)); 973a1b5e537Sbmc } 974a1b5e537Sbmc 975a1b5e537Sbmc int 9767c478bd9Sstevel@tonic-gate dt_node_is_strcompat(const dt_node_t *dnp) 9777c478bd9Sstevel@tonic-gate { 9787c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 9797c478bd9Sstevel@tonic-gate ctf_encoding_t e; 9807c478bd9Sstevel@tonic-gate ctf_arinfo_t r; 9817c478bd9Sstevel@tonic-gate ctf_id_t base; 9827c478bd9Sstevel@tonic-gate uint_t kind; 9837c478bd9Sstevel@tonic-gate 9847c478bd9Sstevel@tonic-gate assert(dnp->dn_flags & DT_NF_COOKED); 9857c478bd9Sstevel@tonic-gate 9867c478bd9Sstevel@tonic-gate base = ctf_type_resolve(fp, dnp->dn_type); 9877c478bd9Sstevel@tonic-gate kind = ctf_type_kind(fp, base); 9887c478bd9Sstevel@tonic-gate 9897c478bd9Sstevel@tonic-gate if (kind == CTF_K_POINTER && 9907c478bd9Sstevel@tonic-gate (base = ctf_type_reference(fp, base)) != CTF_ERR && 9917c478bd9Sstevel@tonic-gate (base = ctf_type_resolve(fp, base)) != CTF_ERR && 9927c478bd9Sstevel@tonic-gate ctf_type_encoding(fp, base, &e) == 0 && IS_CHAR(e)) 9937c478bd9Sstevel@tonic-gate return (1); /* promote char pointer to string */ 9947c478bd9Sstevel@tonic-gate 9957c478bd9Sstevel@tonic-gate if (kind == CTF_K_ARRAY && ctf_array_info(fp, base, &r) == 0 && 9967c478bd9Sstevel@tonic-gate (base = ctf_type_resolve(fp, r.ctr_contents)) != CTF_ERR && 9977c478bd9Sstevel@tonic-gate ctf_type_encoding(fp, base, &e) == 0 && IS_CHAR(e)) 9987c478bd9Sstevel@tonic-gate return (1); /* promote char array to string */ 9997c478bd9Sstevel@tonic-gate 10007c478bd9Sstevel@tonic-gate return (0); 10017c478bd9Sstevel@tonic-gate } 10027c478bd9Sstevel@tonic-gate 10037c478bd9Sstevel@tonic-gate int 10047c478bd9Sstevel@tonic-gate dt_node_is_pointer(const dt_node_t *dnp) 10057c478bd9Sstevel@tonic-gate { 10067c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 10077c478bd9Sstevel@tonic-gate uint_t kind; 10087c478bd9Sstevel@tonic-gate 10097c478bd9Sstevel@tonic-gate assert(dnp->dn_flags & DT_NF_COOKED); 10107c478bd9Sstevel@tonic-gate 10117c478bd9Sstevel@tonic-gate if (dt_node_is_string(dnp)) 10127c478bd9Sstevel@tonic-gate return (0); /* string are pass-by-ref but act like structs */ 10137c478bd9Sstevel@tonic-gate 10147c478bd9Sstevel@tonic-gate kind = ctf_type_kind(fp, ctf_type_resolve(fp, dnp->dn_type)); 10157c478bd9Sstevel@tonic-gate return (kind == CTF_K_POINTER || kind == CTF_K_ARRAY); 10167c478bd9Sstevel@tonic-gate } 10177c478bd9Sstevel@tonic-gate 10187c478bd9Sstevel@tonic-gate int 10197c478bd9Sstevel@tonic-gate dt_node_is_void(const dt_node_t *dnp) 10207c478bd9Sstevel@tonic-gate { 10217c478bd9Sstevel@tonic-gate ctf_file_t *fp = dnp->dn_ctfp; 10227c478bd9Sstevel@tonic-gate ctf_encoding_t e; 10237c478bd9Sstevel@tonic-gate ctf_id_t type; 10247c478bd9Sstevel@tonic-gate 10257c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(dnp)) 10267c478bd9Sstevel@tonic-gate return (0); /* <DYN> is an alias for void but not the same */ 10277c478bd9Sstevel@tonic-gate 10287c478bd9Sstevel@tonic-gate if (dt_node_is_stack(dnp)) 10297c478bd9Sstevel@tonic-gate return (0); 10307c478bd9Sstevel@tonic-gate 1031a1b5e537Sbmc if (dt_node_is_symaddr(dnp) || dt_node_is_usymaddr(dnp)) 1032a1b5e537Sbmc return (0); 1033a1b5e537Sbmc 10347c478bd9Sstevel@tonic-gate type = ctf_type_resolve(fp, dnp->dn_type); 10357c478bd9Sstevel@tonic-gate 10367c478bd9Sstevel@tonic-gate return (ctf_type_kind(fp, type) == CTF_K_INTEGER && 10377c478bd9Sstevel@tonic-gate ctf_type_encoding(fp, type, &e) == 0 && IS_VOID(e)); 10387c478bd9Sstevel@tonic-gate } 10397c478bd9Sstevel@tonic-gate 10407c478bd9Sstevel@tonic-gate int 10417c478bd9Sstevel@tonic-gate dt_node_is_ptrcompat(const dt_node_t *lp, const dt_node_t *rp, 10427c478bd9Sstevel@tonic-gate ctf_file_t **fpp, ctf_id_t *tp) 10437c478bd9Sstevel@tonic-gate { 10447c478bd9Sstevel@tonic-gate ctf_file_t *lfp = lp->dn_ctfp; 10457c478bd9Sstevel@tonic-gate ctf_file_t *rfp = rp->dn_ctfp; 10467c478bd9Sstevel@tonic-gate 10477c478bd9Sstevel@tonic-gate ctf_id_t lbase = CTF_ERR, rbase = CTF_ERR; 10487c478bd9Sstevel@tonic-gate ctf_id_t lref = CTF_ERR, rref = CTF_ERR; 10497c478bd9Sstevel@tonic-gate 10507c478bd9Sstevel@tonic-gate int lp_is_void, rp_is_void, lp_is_int, rp_is_int, compat; 10517c478bd9Sstevel@tonic-gate uint_t lkind, rkind; 10527c478bd9Sstevel@tonic-gate ctf_encoding_t e; 10537c478bd9Sstevel@tonic-gate ctf_arinfo_t r; 10547c478bd9Sstevel@tonic-gate 10557c478bd9Sstevel@tonic-gate assert(lp->dn_flags & DT_NF_COOKED); 10567c478bd9Sstevel@tonic-gate assert(rp->dn_flags & DT_NF_COOKED); 10577c478bd9Sstevel@tonic-gate 10587c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(lp) || dt_node_is_dynamic(rp)) 10597c478bd9Sstevel@tonic-gate return (0); /* fail if either node is a dynamic variable */ 10607c478bd9Sstevel@tonic-gate 10617c478bd9Sstevel@tonic-gate lp_is_int = dt_node_is_integer(lp); 10627c478bd9Sstevel@tonic-gate rp_is_int = dt_node_is_integer(rp); 10637c478bd9Sstevel@tonic-gate 10647c478bd9Sstevel@tonic-gate if (lp_is_int && rp_is_int) 10657c478bd9Sstevel@tonic-gate return (0); /* fail if both nodes are integers */ 10667c478bd9Sstevel@tonic-gate 10677c478bd9Sstevel@tonic-gate if (lp_is_int && (lp->dn_kind != DT_NODE_INT || lp->dn_value != 0)) 10687c478bd9Sstevel@tonic-gate return (0); /* fail if lp is an integer that isn't 0 constant */ 10697c478bd9Sstevel@tonic-gate 10707c478bd9Sstevel@tonic-gate if (rp_is_int && (rp->dn_kind != DT_NODE_INT || rp->dn_value != 0)) 10717c478bd9Sstevel@tonic-gate return (0); /* fail if rp is an integer that isn't 0 constant */ 10727c478bd9Sstevel@tonic-gate 10737c478bd9Sstevel@tonic-gate if ((lp_is_int == 0 && rp_is_int == 0) && ( 10747c478bd9Sstevel@tonic-gate (lp->dn_flags & DT_NF_USERLAND) ^ (rp->dn_flags & DT_NF_USERLAND))) 10757c478bd9Sstevel@tonic-gate return (0); /* fail if only one pointer is a userland address */ 10767c478bd9Sstevel@tonic-gate 10777c478bd9Sstevel@tonic-gate /* 10787c478bd9Sstevel@tonic-gate * Resolve the left-hand and right-hand types to their base type, and 10797c478bd9Sstevel@tonic-gate * then resolve the referenced type as well (assuming the base type 10807c478bd9Sstevel@tonic-gate * is CTF_K_POINTER or CTF_K_ARRAY). Otherwise [lr]ref = CTF_ERR. 10817c478bd9Sstevel@tonic-gate */ 10827c478bd9Sstevel@tonic-gate if (!lp_is_int) { 10837c478bd9Sstevel@tonic-gate lbase = ctf_type_resolve(lfp, lp->dn_type); 10847c478bd9Sstevel@tonic-gate lkind = ctf_type_kind(lfp, lbase); 10857c478bd9Sstevel@tonic-gate 10867c478bd9Sstevel@tonic-gate if (lkind == CTF_K_POINTER) { 10877c478bd9Sstevel@tonic-gate lref = ctf_type_resolve(lfp, 10887c478bd9Sstevel@tonic-gate ctf_type_reference(lfp, lbase)); 10897c478bd9Sstevel@tonic-gate } else if (lkind == CTF_K_ARRAY && 10907c478bd9Sstevel@tonic-gate ctf_array_info(lfp, lbase, &r) == 0) { 10917c478bd9Sstevel@tonic-gate lref = ctf_type_resolve(lfp, r.ctr_contents); 10927c478bd9Sstevel@tonic-gate } 10937c478bd9Sstevel@tonic-gate } 10947c478bd9Sstevel@tonic-gate 10957c478bd9Sstevel@tonic-gate if (!rp_is_int) { 10967c478bd9Sstevel@tonic-gate rbase = ctf_type_resolve(rfp, rp->dn_type); 10977c478bd9Sstevel@tonic-gate rkind = ctf_type_kind(rfp, rbase); 10987c478bd9Sstevel@tonic-gate 10997c478bd9Sstevel@tonic-gate if (rkind == CTF_K_POINTER) { 11007c478bd9Sstevel@tonic-gate rref = ctf_type_resolve(rfp, 11017c478bd9Sstevel@tonic-gate ctf_type_reference(rfp, rbase)); 11027c478bd9Sstevel@tonic-gate } else if (rkind == CTF_K_ARRAY && 11037c478bd9Sstevel@tonic-gate ctf_array_info(rfp, rbase, &r) == 0) { 11047c478bd9Sstevel@tonic-gate rref = ctf_type_resolve(rfp, r.ctr_contents); 11057c478bd9Sstevel@tonic-gate } 11067c478bd9Sstevel@tonic-gate } 11077c478bd9Sstevel@tonic-gate 11087c478bd9Sstevel@tonic-gate /* 11097c478bd9Sstevel@tonic-gate * We know that one or the other type may still be a zero-valued 11107c478bd9Sstevel@tonic-gate * integer constant. To simplify the code below, set the integer 11117c478bd9Sstevel@tonic-gate * type variables equal to the non-integer types and proceed. 11127c478bd9Sstevel@tonic-gate */ 11137c478bd9Sstevel@tonic-gate if (lp_is_int) { 11147c478bd9Sstevel@tonic-gate lbase = rbase; 11157c478bd9Sstevel@tonic-gate lkind = rkind; 11167c478bd9Sstevel@tonic-gate lref = rref; 11177c478bd9Sstevel@tonic-gate lfp = rfp; 11187c478bd9Sstevel@tonic-gate } else if (rp_is_int) { 11197c478bd9Sstevel@tonic-gate rbase = lbase; 11207c478bd9Sstevel@tonic-gate rkind = lkind; 11217c478bd9Sstevel@tonic-gate rref = lref; 11227c478bd9Sstevel@tonic-gate rfp = lfp; 11237c478bd9Sstevel@tonic-gate } 11247c478bd9Sstevel@tonic-gate 11257c478bd9Sstevel@tonic-gate lp_is_void = ctf_type_encoding(lfp, lref, &e) == 0 && IS_VOID(e); 11267c478bd9Sstevel@tonic-gate rp_is_void = ctf_type_encoding(rfp, rref, &e) == 0 && IS_VOID(e); 11277c478bd9Sstevel@tonic-gate 11287c478bd9Sstevel@tonic-gate /* 11297c478bd9Sstevel@tonic-gate * The types are compatible if both are pointers to the same type, or 11307c478bd9Sstevel@tonic-gate * if either pointer is a void pointer. If they are compatible, set 11317c478bd9Sstevel@tonic-gate * tp to point to the more specific pointer type and return it. 11327c478bd9Sstevel@tonic-gate */ 11337c478bd9Sstevel@tonic-gate compat = (lkind == CTF_K_POINTER || lkind == CTF_K_ARRAY) && 11347c478bd9Sstevel@tonic-gate (rkind == CTF_K_POINTER || rkind == CTF_K_ARRAY) && 11357c478bd9Sstevel@tonic-gate (lp_is_void || rp_is_void || ctf_type_compat(lfp, lref, rfp, rref)); 11367c478bd9Sstevel@tonic-gate 11377c478bd9Sstevel@tonic-gate if (compat) { 11387c478bd9Sstevel@tonic-gate if (fpp != NULL) 11397c478bd9Sstevel@tonic-gate *fpp = rp_is_void ? lfp : rfp; 11407c478bd9Sstevel@tonic-gate if (tp != NULL) 11417c478bd9Sstevel@tonic-gate *tp = rp_is_void ? lbase : rbase; 11427c478bd9Sstevel@tonic-gate } 11437c478bd9Sstevel@tonic-gate 11447c478bd9Sstevel@tonic-gate return (compat); 11457c478bd9Sstevel@tonic-gate } 11467c478bd9Sstevel@tonic-gate 11477c478bd9Sstevel@tonic-gate /* 11487c478bd9Sstevel@tonic-gate * The rules for checking argument types against parameter types are described 11497c478bd9Sstevel@tonic-gate * in the ANSI-C spec (see K&R[A7.3.2] and K&R[A7.17]). We use the same rule 11507c478bd9Sstevel@tonic-gate * set to determine whether associative array arguments match the prototype. 11517c478bd9Sstevel@tonic-gate */ 11527c478bd9Sstevel@tonic-gate int 11537c478bd9Sstevel@tonic-gate dt_node_is_argcompat(const dt_node_t *lp, const dt_node_t *rp) 11547c478bd9Sstevel@tonic-gate { 11557c478bd9Sstevel@tonic-gate ctf_file_t *lfp = lp->dn_ctfp; 11567c478bd9Sstevel@tonic-gate ctf_file_t *rfp = rp->dn_ctfp; 11577c478bd9Sstevel@tonic-gate 11587c478bd9Sstevel@tonic-gate assert(lp->dn_flags & DT_NF_COOKED); 11597c478bd9Sstevel@tonic-gate assert(rp->dn_flags & DT_NF_COOKED); 11607c478bd9Sstevel@tonic-gate 11617c478bd9Sstevel@tonic-gate if (dt_node_is_integer(lp) && dt_node_is_integer(rp)) 11627c478bd9Sstevel@tonic-gate return (1); /* integer types are compatible */ 11637c478bd9Sstevel@tonic-gate 11647c478bd9Sstevel@tonic-gate if (dt_node_is_strcompat(lp) && dt_node_is_strcompat(rp)) 11657c478bd9Sstevel@tonic-gate return (1); /* string types are compatible */ 11667c478bd9Sstevel@tonic-gate 11677c478bd9Sstevel@tonic-gate if (dt_node_is_stack(lp) && dt_node_is_stack(rp)) 11687c478bd9Sstevel@tonic-gate return (1); /* stack types are compatible */ 11697c478bd9Sstevel@tonic-gate 1170a1b5e537Sbmc if (dt_node_is_symaddr(lp) && dt_node_is_symaddr(rp)) 1171a1b5e537Sbmc return (1); /* symaddr types are compatible */ 1172a1b5e537Sbmc 1173a1b5e537Sbmc if (dt_node_is_usymaddr(lp) && dt_node_is_usymaddr(rp)) 1174a1b5e537Sbmc return (1); /* usymaddr types are compatible */ 1175a1b5e537Sbmc 11767c478bd9Sstevel@tonic-gate switch (ctf_type_kind(lfp, ctf_type_resolve(lfp, lp->dn_type))) { 11777c478bd9Sstevel@tonic-gate case CTF_K_FUNCTION: 11787c478bd9Sstevel@tonic-gate case CTF_K_STRUCT: 11797c478bd9Sstevel@tonic-gate case CTF_K_UNION: 11807c478bd9Sstevel@tonic-gate return (ctf_type_compat(lfp, lp->dn_type, rfp, rp->dn_type)); 11817c478bd9Sstevel@tonic-gate default: 11827c478bd9Sstevel@tonic-gate return (dt_node_is_ptrcompat(lp, rp, NULL, NULL)); 11837c478bd9Sstevel@tonic-gate } 11847c478bd9Sstevel@tonic-gate } 11857c478bd9Sstevel@tonic-gate 11867c478bd9Sstevel@tonic-gate /* 11877c478bd9Sstevel@tonic-gate * We provide dt_node_is_posconst() as a convenience routine for callers who 11887c478bd9Sstevel@tonic-gate * wish to verify that an argument is a positive non-zero integer constant. 11897c478bd9Sstevel@tonic-gate */ 11907c478bd9Sstevel@tonic-gate int 11917c478bd9Sstevel@tonic-gate dt_node_is_posconst(const dt_node_t *dnp) 11927c478bd9Sstevel@tonic-gate { 11937c478bd9Sstevel@tonic-gate return (dnp->dn_kind == DT_NODE_INT && dnp->dn_value != 0 && ( 11947c478bd9Sstevel@tonic-gate (dnp->dn_flags & DT_NF_SIGNED) == 0 || (int64_t)dnp->dn_value > 0)); 11957c478bd9Sstevel@tonic-gate } 11967c478bd9Sstevel@tonic-gate 11977c478bd9Sstevel@tonic-gate int 11987c478bd9Sstevel@tonic-gate dt_node_is_actfunc(const dt_node_t *dnp) 11997c478bd9Sstevel@tonic-gate { 12007c478bd9Sstevel@tonic-gate return (dnp->dn_kind == DT_NODE_FUNC && 12017c478bd9Sstevel@tonic-gate dnp->dn_ident->di_kind == DT_IDENT_ACTFUNC); 12027c478bd9Sstevel@tonic-gate } 12037c478bd9Sstevel@tonic-gate 12047c478bd9Sstevel@tonic-gate /* 12057c478bd9Sstevel@tonic-gate * The original rules for integer constant typing are described in K&R[A2.5.1]. 12067c478bd9Sstevel@tonic-gate * However, since we support long long, we instead use the rules from ISO C99 12077c478bd9Sstevel@tonic-gate * clause 6.4.4.1 since that is where long longs are formally described. The 12087c478bd9Sstevel@tonic-gate * rules require us to know whether the constant was specified in decimal or 12097c478bd9Sstevel@tonic-gate * in octal or hex, which we do by looking at our lexer's 'yyintdecimal' flag. 12107c478bd9Sstevel@tonic-gate * The type of an integer constant is the first of the corresponding list in 12117c478bd9Sstevel@tonic-gate * which its value can be represented: 12127c478bd9Sstevel@tonic-gate * 12137c478bd9Sstevel@tonic-gate * unsuffixed decimal: int, long, long long 12147c478bd9Sstevel@tonic-gate * unsuffixed oct/hex: int, unsigned int, long, unsigned long, 12157c478bd9Sstevel@tonic-gate * long long, unsigned long long 12167c478bd9Sstevel@tonic-gate * suffix [uU]: unsigned int, unsigned long, unsigned long long 12177c478bd9Sstevel@tonic-gate * suffix [lL] decimal: long, long long 12187c478bd9Sstevel@tonic-gate * suffix [lL] oct/hex: long, unsigned long, long long, unsigned long long 12197c478bd9Sstevel@tonic-gate * suffix [uU][Ll]: unsigned long, unsigned long long 12207c478bd9Sstevel@tonic-gate * suffix ll/LL decimal: long long 12217c478bd9Sstevel@tonic-gate * suffix ll/LL oct/hex: long long, unsigned long long 12227c478bd9Sstevel@tonic-gate * suffix [uU][ll/LL]: unsigned long long 12237c478bd9Sstevel@tonic-gate * 12247c478bd9Sstevel@tonic-gate * Given that our lexer has already validated the suffixes by regexp matching, 12257c478bd9Sstevel@tonic-gate * there is an obvious way to concisely encode these rules: construct an array 12267c478bd9Sstevel@tonic-gate * of the types in the order int, unsigned int, long, unsigned long, long long, 12277c478bd9Sstevel@tonic-gate * unsigned long long. Compute an integer array starting index based on the 12287c478bd9Sstevel@tonic-gate * suffix (e.g. none = 0, u = 1, ull = 5), and compute an increment based on 12297c478bd9Sstevel@tonic-gate * the specifier (dec/oct/hex) and suffix (u). Then iterate from the starting 12307c478bd9Sstevel@tonic-gate * index to the end, advancing using the increment, and searching until we 12317c478bd9Sstevel@tonic-gate * find a limit that matches or we run out of choices (overflow). To make it 12327c478bd9Sstevel@tonic-gate * even faster, we precompute the table of type information in dtrace_open(). 12337c478bd9Sstevel@tonic-gate */ 12347c478bd9Sstevel@tonic-gate dt_node_t * 12357c478bd9Sstevel@tonic-gate dt_node_int(uintmax_t value) 12367c478bd9Sstevel@tonic-gate { 12377c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_node_alloc(DT_NODE_INT); 12387c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 12397c478bd9Sstevel@tonic-gate 12407c478bd9Sstevel@tonic-gate int n = (yyintdecimal | (yyintsuffix[0] == 'u')) + 1; 12417c478bd9Sstevel@tonic-gate int i = 0; 12427c478bd9Sstevel@tonic-gate 12437c478bd9Sstevel@tonic-gate const char *p; 12447c478bd9Sstevel@tonic-gate char c; 12457c478bd9Sstevel@tonic-gate 12467c478bd9Sstevel@tonic-gate dnp->dn_op = DT_TOK_INT; 12477c478bd9Sstevel@tonic-gate dnp->dn_value = value; 12487c478bd9Sstevel@tonic-gate 12497c478bd9Sstevel@tonic-gate for (p = yyintsuffix; (c = *p) != '\0'; p++) { 12507c478bd9Sstevel@tonic-gate if (c == 'U' || c == 'u') 12517c478bd9Sstevel@tonic-gate i += 1; 12527c478bd9Sstevel@tonic-gate else if (c == 'L' || c == 'l') 12537c478bd9Sstevel@tonic-gate i += 2; 12547c478bd9Sstevel@tonic-gate } 12557c478bd9Sstevel@tonic-gate 12567c478bd9Sstevel@tonic-gate for (; i < sizeof (dtp->dt_ints) / sizeof (dtp->dt_ints[0]); i += n) { 12577c478bd9Sstevel@tonic-gate if (value <= dtp->dt_ints[i].did_limit) { 12587c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 12597c478bd9Sstevel@tonic-gate dtp->dt_ints[i].did_ctfp, 1260a386cc11SRobert Mustacchi dtp->dt_ints[i].did_type, B_FALSE); 12617c478bd9Sstevel@tonic-gate 12627c478bd9Sstevel@tonic-gate /* 12637c478bd9Sstevel@tonic-gate * If a prefix character is present in macro text, add 12647c478bd9Sstevel@tonic-gate * in the corresponding operator node (see dt_lex.l). 12657c478bd9Sstevel@tonic-gate */ 12667c478bd9Sstevel@tonic-gate switch (yyintprefix) { 12677c478bd9Sstevel@tonic-gate case '+': 12687c478bd9Sstevel@tonic-gate return (dt_node_op1(DT_TOK_IPOS, dnp)); 12697c478bd9Sstevel@tonic-gate case '-': 12707c478bd9Sstevel@tonic-gate return (dt_node_op1(DT_TOK_INEG, dnp)); 12717c478bd9Sstevel@tonic-gate default: 12727c478bd9Sstevel@tonic-gate return (dnp); 12737c478bd9Sstevel@tonic-gate } 12747c478bd9Sstevel@tonic-gate } 12757c478bd9Sstevel@tonic-gate } 12767c478bd9Sstevel@tonic-gate 12777c478bd9Sstevel@tonic-gate xyerror(D_INT_OFLOW, "integer constant 0x%llx cannot be represented " 12787c478bd9Sstevel@tonic-gate "in any built-in integral type\n", (u_longlong_t)value); 12797c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 12807c478bd9Sstevel@tonic-gate return (NULL); /* keep gcc happy */ 12817c478bd9Sstevel@tonic-gate } 12827c478bd9Sstevel@tonic-gate 12837c478bd9Sstevel@tonic-gate dt_node_t * 12847c478bd9Sstevel@tonic-gate dt_node_string(char *string) 12857c478bd9Sstevel@tonic-gate { 12867c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 12877c478bd9Sstevel@tonic-gate dt_node_t *dnp; 12887c478bd9Sstevel@tonic-gate 12897c478bd9Sstevel@tonic-gate if (string == NULL) 12907c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 12917c478bd9Sstevel@tonic-gate 12927c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_STRING); 12937c478bd9Sstevel@tonic-gate dnp->dn_op = DT_TOK_STRING; 12947c478bd9Sstevel@tonic-gate dnp->dn_string = string; 1295a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_STR_CTFP(dtp), DT_STR_TYPE(dtp), B_FALSE); 12967c478bd9Sstevel@tonic-gate 12977c478bd9Sstevel@tonic-gate return (dnp); 12987c478bd9Sstevel@tonic-gate } 12997c478bd9Sstevel@tonic-gate 13007c478bd9Sstevel@tonic-gate dt_node_t * 13017c478bd9Sstevel@tonic-gate dt_node_ident(char *name) 13027c478bd9Sstevel@tonic-gate { 13037c478bd9Sstevel@tonic-gate dt_ident_t *idp; 13047c478bd9Sstevel@tonic-gate dt_node_t *dnp; 13057c478bd9Sstevel@tonic-gate 13067c478bd9Sstevel@tonic-gate if (name == NULL) 13077c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 13087c478bd9Sstevel@tonic-gate 13097c478bd9Sstevel@tonic-gate /* 13107c478bd9Sstevel@tonic-gate * If the identifier is an inlined integer constant, then create an INT 13117c478bd9Sstevel@tonic-gate * node that is a clone of the inline parse tree node and return that 13127c478bd9Sstevel@tonic-gate * immediately, allowing this inline to be used in parsing contexts 13137c478bd9Sstevel@tonic-gate * that require constant expressions (e.g. scalar array sizes). 13147c478bd9Sstevel@tonic-gate */ 13157c478bd9Sstevel@tonic-gate if ((idp = dt_idstack_lookup(&yypcb->pcb_globals, name)) != NULL && 13167c478bd9Sstevel@tonic-gate (idp->di_flags & DT_IDFLG_INLINE)) { 13177c478bd9Sstevel@tonic-gate dt_idnode_t *inp = idp->di_iarg; 13187c478bd9Sstevel@tonic-gate 13191a7c1b72Smws if (inp->din_root != NULL && 13201a7c1b72Smws inp->din_root->dn_kind == DT_NODE_INT) { 13217c478bd9Sstevel@tonic-gate free(name); 13227c478bd9Sstevel@tonic-gate 13237c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_INT); 13247c478bd9Sstevel@tonic-gate dnp->dn_op = DT_TOK_INT; 13257c478bd9Sstevel@tonic-gate dnp->dn_value = inp->din_root->dn_value; 13267c478bd9Sstevel@tonic-gate dt_node_type_propagate(inp->din_root, dnp); 13277c478bd9Sstevel@tonic-gate 13287c478bd9Sstevel@tonic-gate return (dnp); 13297c478bd9Sstevel@tonic-gate } 13307c478bd9Sstevel@tonic-gate } 13317c478bd9Sstevel@tonic-gate 13327c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_IDENT); 13337c478bd9Sstevel@tonic-gate dnp->dn_op = name[0] == '@' ? DT_TOK_AGG : DT_TOK_IDENT; 13347c478bd9Sstevel@tonic-gate dnp->dn_string = name; 13357c478bd9Sstevel@tonic-gate 13367c478bd9Sstevel@tonic-gate return (dnp); 13377c478bd9Sstevel@tonic-gate } 13387c478bd9Sstevel@tonic-gate 13397c478bd9Sstevel@tonic-gate /* 13407c478bd9Sstevel@tonic-gate * Create an empty node of type corresponding to the given declaration. 13417c478bd9Sstevel@tonic-gate * Explicit references to user types (C or D) are assigned the default 13427c478bd9Sstevel@tonic-gate * stability; references to other types are _dtrace_typattr (Private). 13437c478bd9Sstevel@tonic-gate */ 13447c478bd9Sstevel@tonic-gate dt_node_t * 13457c478bd9Sstevel@tonic-gate dt_node_type(dt_decl_t *ddp) 13467c478bd9Sstevel@tonic-gate { 13477c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 13487c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 13497c478bd9Sstevel@tonic-gate dt_node_t *dnp; 13507c478bd9Sstevel@tonic-gate char *name = NULL; 13517c478bd9Sstevel@tonic-gate int err; 13527c478bd9Sstevel@tonic-gate 13537c478bd9Sstevel@tonic-gate /* 13547c478bd9Sstevel@tonic-gate * If 'ddp' is NULL, we get a decl by popping the decl stack. This 13557c478bd9Sstevel@tonic-gate * form of dt_node_type() is used by parameter rules in dt_grammar.y. 13567c478bd9Sstevel@tonic-gate */ 13577c478bd9Sstevel@tonic-gate if (ddp == NULL) 13587c478bd9Sstevel@tonic-gate ddp = dt_decl_pop_param(&name); 13597c478bd9Sstevel@tonic-gate 13607c478bd9Sstevel@tonic-gate err = dt_decl_type(ddp, &dtt); 13617c478bd9Sstevel@tonic-gate dt_decl_free(ddp); 13627c478bd9Sstevel@tonic-gate 13637c478bd9Sstevel@tonic-gate if (err != 0) { 13647c478bd9Sstevel@tonic-gate free(name); 13657c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 13667c478bd9Sstevel@tonic-gate } 13677c478bd9Sstevel@tonic-gate 13687c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_TYPE); 13697c478bd9Sstevel@tonic-gate dnp->dn_op = DT_TOK_IDENT; 13707c478bd9Sstevel@tonic-gate dnp->dn_string = name; 1371a386cc11SRobert Mustacchi 1372a386cc11SRobert Mustacchi dt_node_type_assign(dnp, dtt.dtt_ctfp, dtt.dtt_type, dtt.dtt_flags); 13737c478bd9Sstevel@tonic-gate 13747c478bd9Sstevel@tonic-gate if (dtt.dtt_ctfp == dtp->dt_cdefs->dm_ctfp || 13757c478bd9Sstevel@tonic-gate dtt.dtt_ctfp == dtp->dt_ddefs->dm_ctfp) 13767c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, _dtrace_defattr); 13777c478bd9Sstevel@tonic-gate else 13787c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, _dtrace_typattr); 13797c478bd9Sstevel@tonic-gate 13807c478bd9Sstevel@tonic-gate return (dnp); 13817c478bd9Sstevel@tonic-gate } 13827c478bd9Sstevel@tonic-gate 13837c478bd9Sstevel@tonic-gate /* 13847c478bd9Sstevel@tonic-gate * Create a type node corresponding to a varargs (...) parameter by just 13857c478bd9Sstevel@tonic-gate * assigning it type CTF_ERR. The decl processing code will handle this. 13867c478bd9Sstevel@tonic-gate */ 13877c478bd9Sstevel@tonic-gate dt_node_t * 13887c478bd9Sstevel@tonic-gate dt_node_vatype(void) 13897c478bd9Sstevel@tonic-gate { 13907c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_node_alloc(DT_NODE_TYPE); 13917c478bd9Sstevel@tonic-gate 13927c478bd9Sstevel@tonic-gate dnp->dn_op = DT_TOK_IDENT; 13937c478bd9Sstevel@tonic-gate dnp->dn_ctfp = yypcb->pcb_hdl->dt_cdefs->dm_ctfp; 13947c478bd9Sstevel@tonic-gate dnp->dn_type = CTF_ERR; 13957c478bd9Sstevel@tonic-gate dnp->dn_attr = _dtrace_defattr; 13967c478bd9Sstevel@tonic-gate 13977c478bd9Sstevel@tonic-gate return (dnp); 13987c478bd9Sstevel@tonic-gate } 13997c478bd9Sstevel@tonic-gate 14007c478bd9Sstevel@tonic-gate /* 14017c478bd9Sstevel@tonic-gate * Instantiate a decl using the contents of the current declaration stack. As 14027c478bd9Sstevel@tonic-gate * we do not currently permit decls to be initialized, this function currently 14037c478bd9Sstevel@tonic-gate * returns NULL and no parse node is created. When this function is called, 14047c478bd9Sstevel@tonic-gate * the topmost scope's ds_ident pointer will be set to NULL (indicating no 14057c478bd9Sstevel@tonic-gate * init_declarator rule was matched) or will point to the identifier to use. 14067c478bd9Sstevel@tonic-gate */ 14077c478bd9Sstevel@tonic-gate dt_node_t * 14087c478bd9Sstevel@tonic-gate dt_node_decl(void) 14097c478bd9Sstevel@tonic-gate { 14107c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 14117c478bd9Sstevel@tonic-gate dt_scope_t *dsp = &yypcb->pcb_dstack; 14127c478bd9Sstevel@tonic-gate dt_dclass_t class = dsp->ds_class; 14137c478bd9Sstevel@tonic-gate dt_decl_t *ddp = dt_decl_top(); 14147c478bd9Sstevel@tonic-gate 14157c478bd9Sstevel@tonic-gate dt_module_t *dmp; 14167c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 14177c478bd9Sstevel@tonic-gate ctf_id_t type; 14187c478bd9Sstevel@tonic-gate 14197c478bd9Sstevel@tonic-gate char n1[DT_TYPE_NAMELEN]; 14207c478bd9Sstevel@tonic-gate char n2[DT_TYPE_NAMELEN]; 14217c478bd9Sstevel@tonic-gate 14227c478bd9Sstevel@tonic-gate if (dt_decl_type(ddp, &dtt) != 0) 14237c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 14247c478bd9Sstevel@tonic-gate 14257c478bd9Sstevel@tonic-gate /* 14267c478bd9Sstevel@tonic-gate * If we have no declaration identifier, then this is either a spurious 14277c478bd9Sstevel@tonic-gate * declaration of an intrinsic type (e.g. "extern int;") or declaration 14287c478bd9Sstevel@tonic-gate * or redeclaration of a struct, union, or enum type or tag. 14297c478bd9Sstevel@tonic-gate */ 14307c478bd9Sstevel@tonic-gate if (dsp->ds_ident == NULL) { 14317c478bd9Sstevel@tonic-gate if (ddp->dd_kind != CTF_K_STRUCT && 14327c478bd9Sstevel@tonic-gate ddp->dd_kind != CTF_K_UNION && ddp->dd_kind != CTF_K_ENUM) 14337c478bd9Sstevel@tonic-gate xyerror(D_DECL_USELESS, "useless declaration\n"); 14347c478bd9Sstevel@tonic-gate 14357c478bd9Sstevel@tonic-gate dt_dprintf("type %s added as id %ld\n", dt_type_name( 14367c478bd9Sstevel@tonic-gate ddp->dd_ctfp, ddp->dd_type, n1, sizeof (n1)), ddp->dd_type); 14377c478bd9Sstevel@tonic-gate 14387c478bd9Sstevel@tonic-gate return (NULL); 14397c478bd9Sstevel@tonic-gate } 14407c478bd9Sstevel@tonic-gate 14417c478bd9Sstevel@tonic-gate if (strchr(dsp->ds_ident, '`') != NULL) { 14427c478bd9Sstevel@tonic-gate xyerror(D_DECL_SCOPE, "D scoping operator may not be used in " 14437c478bd9Sstevel@tonic-gate "a declaration name (%s)\n", dsp->ds_ident); 14447c478bd9Sstevel@tonic-gate } 14457c478bd9Sstevel@tonic-gate 14467c478bd9Sstevel@tonic-gate /* 14477c478bd9Sstevel@tonic-gate * If we are nested inside of a C include file, add the declaration to 14487c478bd9Sstevel@tonic-gate * the C definition module; otherwise use the D definition module. 14497c478bd9Sstevel@tonic-gate */ 14507c478bd9Sstevel@tonic-gate if (yypcb->pcb_idepth != 0) 14517c478bd9Sstevel@tonic-gate dmp = dtp->dt_cdefs; 14527c478bd9Sstevel@tonic-gate else 14537c478bd9Sstevel@tonic-gate dmp = dtp->dt_ddefs; 14547c478bd9Sstevel@tonic-gate 14557c478bd9Sstevel@tonic-gate /* 14567c478bd9Sstevel@tonic-gate * If we see a global or static declaration of a function prototype, 14577c478bd9Sstevel@tonic-gate * treat this as equivalent to a D extern declaration. 14587c478bd9Sstevel@tonic-gate */ 14597c478bd9Sstevel@tonic-gate if (ctf_type_kind(dtt.dtt_ctfp, dtt.dtt_type) == CTF_K_FUNCTION && 14607c478bd9Sstevel@tonic-gate (class == DT_DC_DEFAULT || class == DT_DC_STATIC)) 14617c478bd9Sstevel@tonic-gate class = DT_DC_EXTERN; 14627c478bd9Sstevel@tonic-gate 14637c478bd9Sstevel@tonic-gate switch (class) { 14647c478bd9Sstevel@tonic-gate case DT_DC_AUTO: 14657c478bd9Sstevel@tonic-gate case DT_DC_REGISTER: 14667c478bd9Sstevel@tonic-gate case DT_DC_STATIC: 14677c478bd9Sstevel@tonic-gate xyerror(D_DECL_BADCLASS, "specified storage class not " 14687c478bd9Sstevel@tonic-gate "appropriate in D\n"); 14697c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 14707c478bd9Sstevel@tonic-gate 14717c478bd9Sstevel@tonic-gate case DT_DC_EXTERN: { 14727c478bd9Sstevel@tonic-gate dtrace_typeinfo_t ott; 14737c478bd9Sstevel@tonic-gate dtrace_syminfo_t dts; 14747c478bd9Sstevel@tonic-gate GElf_Sym sym; 14757c478bd9Sstevel@tonic-gate 14767c478bd9Sstevel@tonic-gate int exists = dtrace_lookup_by_name(dtp, 14777c478bd9Sstevel@tonic-gate dmp->dm_name, dsp->ds_ident, &sym, &dts) == 0; 14787c478bd9Sstevel@tonic-gate 14797c478bd9Sstevel@tonic-gate if (exists && (dtrace_symbol_type(dtp, &sym, &dts, &ott) != 0 || 14807c478bd9Sstevel@tonic-gate ctf_type_cmp(dtt.dtt_ctfp, dtt.dtt_type, 14817c478bd9Sstevel@tonic-gate ott.dtt_ctfp, ott.dtt_type) != 0)) { 14827c478bd9Sstevel@tonic-gate xyerror(D_DECL_IDRED, "identifier redeclared: %s`%s\n" 14837c478bd9Sstevel@tonic-gate "\t current: %s\n\tprevious: %s\n", 14847c478bd9Sstevel@tonic-gate dmp->dm_name, dsp->ds_ident, 14857c478bd9Sstevel@tonic-gate dt_type_name(dtt.dtt_ctfp, dtt.dtt_type, 14867c478bd9Sstevel@tonic-gate n1, sizeof (n1)), 14877c478bd9Sstevel@tonic-gate dt_type_name(ott.dtt_ctfp, ott.dtt_type, 14887c478bd9Sstevel@tonic-gate n2, sizeof (n2))); 14897c478bd9Sstevel@tonic-gate } else if (!exists && dt_module_extern(dtp, dmp, 14907c478bd9Sstevel@tonic-gate dsp->ds_ident, &dtt) == NULL) { 14917c478bd9Sstevel@tonic-gate xyerror(D_UNKNOWN, 14927c478bd9Sstevel@tonic-gate "failed to extern %s: %s\n", dsp->ds_ident, 14937c478bd9Sstevel@tonic-gate dtrace_errmsg(dtp, dtrace_errno(dtp))); 14947c478bd9Sstevel@tonic-gate } else { 14957c478bd9Sstevel@tonic-gate dt_dprintf("extern %s`%s type=<%s>\n", 14967c478bd9Sstevel@tonic-gate dmp->dm_name, dsp->ds_ident, 14977c478bd9Sstevel@tonic-gate dt_type_name(dtt.dtt_ctfp, dtt.dtt_type, 14987c478bd9Sstevel@tonic-gate n1, sizeof (n1))); 14997c478bd9Sstevel@tonic-gate } 15007c478bd9Sstevel@tonic-gate break; 15017c478bd9Sstevel@tonic-gate } 15027c478bd9Sstevel@tonic-gate 15037c478bd9Sstevel@tonic-gate case DT_DC_TYPEDEF: 1504e4586ebfSmws if (dt_idstack_lookup(&yypcb->pcb_globals, dsp->ds_ident)) { 1505e4586ebfSmws xyerror(D_DECL_IDRED, "global variable identifier " 1506e4586ebfSmws "redeclared: %s\n", dsp->ds_ident); 1507e4586ebfSmws } 1508e4586ebfSmws 1509e4586ebfSmws if (ctf_lookup_by_name(dmp->dm_ctfp, 1510e4586ebfSmws dsp->ds_ident) != CTF_ERR) { 1511e4586ebfSmws xyerror(D_DECL_IDRED, 1512e4586ebfSmws "typedef redeclared: %s\n", dsp->ds_ident); 1513e4586ebfSmws } 1514e4586ebfSmws 15157c478bd9Sstevel@tonic-gate /* 15167c478bd9Sstevel@tonic-gate * If the source type for the typedef is not defined in the 15177c478bd9Sstevel@tonic-gate * target container or its parent, copy the type to the target 15187c478bd9Sstevel@tonic-gate * container and reset dtt_ctfp and dtt_type to the copy. 15197c478bd9Sstevel@tonic-gate */ 15207c478bd9Sstevel@tonic-gate if (dtt.dtt_ctfp != dmp->dm_ctfp && 15217c478bd9Sstevel@tonic-gate dtt.dtt_ctfp != ctf_parent_file(dmp->dm_ctfp)) { 15227c478bd9Sstevel@tonic-gate 15237c478bd9Sstevel@tonic-gate dtt.dtt_type = ctf_add_type(dmp->dm_ctfp, 15247c478bd9Sstevel@tonic-gate dtt.dtt_ctfp, dtt.dtt_type); 15257c478bd9Sstevel@tonic-gate dtt.dtt_ctfp = dmp->dm_ctfp; 15267c478bd9Sstevel@tonic-gate 15277c478bd9Sstevel@tonic-gate if (dtt.dtt_type == CTF_ERR || 15287c478bd9Sstevel@tonic-gate ctf_update(dtt.dtt_ctfp) == CTF_ERR) { 15297c478bd9Sstevel@tonic-gate xyerror(D_UNKNOWN, "failed to copy typedef %s " 15307c478bd9Sstevel@tonic-gate "source type: %s\n", dsp->ds_ident, 15317c478bd9Sstevel@tonic-gate ctf_errmsg(ctf_errno(dtt.dtt_ctfp))); 15327c478bd9Sstevel@tonic-gate } 15337c478bd9Sstevel@tonic-gate } 15347c478bd9Sstevel@tonic-gate 15357c478bd9Sstevel@tonic-gate type = ctf_add_typedef(dmp->dm_ctfp, 15367c478bd9Sstevel@tonic-gate CTF_ADD_ROOT, dsp->ds_ident, dtt.dtt_type); 15377c478bd9Sstevel@tonic-gate 15387c478bd9Sstevel@tonic-gate if (type == CTF_ERR || ctf_update(dmp->dm_ctfp) == CTF_ERR) { 15397c478bd9Sstevel@tonic-gate xyerror(D_UNKNOWN, "failed to typedef %s: %s\n", 15407c478bd9Sstevel@tonic-gate dsp->ds_ident, ctf_errmsg(ctf_errno(dmp->dm_ctfp))); 15417c478bd9Sstevel@tonic-gate } 15427c478bd9Sstevel@tonic-gate 15437c478bd9Sstevel@tonic-gate dt_dprintf("typedef %s added as id %ld\n", dsp->ds_ident, type); 15447c478bd9Sstevel@tonic-gate break; 15457c478bd9Sstevel@tonic-gate 15467c478bd9Sstevel@tonic-gate default: { 15477c478bd9Sstevel@tonic-gate ctf_encoding_t cte; 15487c478bd9Sstevel@tonic-gate dt_idhash_t *dhp; 15497c478bd9Sstevel@tonic-gate dt_ident_t *idp; 15507c478bd9Sstevel@tonic-gate dt_node_t idn; 15517c478bd9Sstevel@tonic-gate int assc, idkind; 15527c478bd9Sstevel@tonic-gate uint_t id, kind; 15537c478bd9Sstevel@tonic-gate ushort_t idflags; 15547c478bd9Sstevel@tonic-gate 15557c478bd9Sstevel@tonic-gate switch (class) { 15567c478bd9Sstevel@tonic-gate case DT_DC_THIS: 15577c478bd9Sstevel@tonic-gate dhp = yypcb->pcb_locals; 15587c478bd9Sstevel@tonic-gate idflags = DT_IDFLG_LOCAL; 15597c478bd9Sstevel@tonic-gate idp = dt_idhash_lookup(dhp, dsp->ds_ident); 15607c478bd9Sstevel@tonic-gate break; 15617c478bd9Sstevel@tonic-gate case DT_DC_SELF: 15627c478bd9Sstevel@tonic-gate dhp = dtp->dt_tls; 15637c478bd9Sstevel@tonic-gate idflags = DT_IDFLG_TLS; 15647c478bd9Sstevel@tonic-gate idp = dt_idhash_lookup(dhp, dsp->ds_ident); 15657c478bd9Sstevel@tonic-gate break; 15667c478bd9Sstevel@tonic-gate default: 15677c478bd9Sstevel@tonic-gate dhp = dtp->dt_globals; 15687c478bd9Sstevel@tonic-gate idflags = 0; 15697c478bd9Sstevel@tonic-gate idp = dt_idstack_lookup( 15707c478bd9Sstevel@tonic-gate &yypcb->pcb_globals, dsp->ds_ident); 15717c478bd9Sstevel@tonic-gate break; 15727c478bd9Sstevel@tonic-gate } 15737c478bd9Sstevel@tonic-gate 15747c478bd9Sstevel@tonic-gate if (ddp->dd_kind == CTF_K_ARRAY && ddp->dd_node == NULL) { 15757c478bd9Sstevel@tonic-gate xyerror(D_DECL_ARRNULL, 15767c478bd9Sstevel@tonic-gate "array declaration requires array dimension or " 15777c478bd9Sstevel@tonic-gate "tuple signature: %s\n", dsp->ds_ident); 15787c478bd9Sstevel@tonic-gate } 15797c478bd9Sstevel@tonic-gate 15807c478bd9Sstevel@tonic-gate if (idp != NULL && idp->di_gen == 0) { 15817c478bd9Sstevel@tonic-gate xyerror(D_DECL_IDRED, "built-in identifier " 15827c478bd9Sstevel@tonic-gate "redeclared: %s\n", idp->di_name); 15837c478bd9Sstevel@tonic-gate } 15847c478bd9Sstevel@tonic-gate 1585e4586ebfSmws if (dtrace_lookup_by_type(dtp, DTRACE_OBJ_CDEFS, 1586e4586ebfSmws dsp->ds_ident, NULL) == 0 || 1587e4586ebfSmws dtrace_lookup_by_type(dtp, DTRACE_OBJ_DDEFS, 1588e4586ebfSmws dsp->ds_ident, NULL) == 0) { 1589e4586ebfSmws xyerror(D_DECL_IDRED, "typedef identifier " 1590e4586ebfSmws "redeclared: %s\n", dsp->ds_ident); 1591e4586ebfSmws } 1592e4586ebfSmws 15937c478bd9Sstevel@tonic-gate /* 15947c478bd9Sstevel@tonic-gate * Cache some attributes of the decl to make the rest of this 15957c478bd9Sstevel@tonic-gate * code simpler: if the decl is an array which is subscripted 15967c478bd9Sstevel@tonic-gate * by a type rather than an integer, then it's an associative 15977c478bd9Sstevel@tonic-gate * array (assc). We then expect to match either DT_IDENT_ARRAY 15987c478bd9Sstevel@tonic-gate * for associative arrays or DT_IDENT_SCALAR for anything else. 15997c478bd9Sstevel@tonic-gate */ 16007c478bd9Sstevel@tonic-gate assc = ddp->dd_kind == CTF_K_ARRAY && 16017c478bd9Sstevel@tonic-gate ddp->dd_node->dn_kind == DT_NODE_TYPE; 16027c478bd9Sstevel@tonic-gate 16037c478bd9Sstevel@tonic-gate idkind = assc ? DT_IDENT_ARRAY : DT_IDENT_SCALAR; 16047c478bd9Sstevel@tonic-gate 16057c478bd9Sstevel@tonic-gate /* 16067c478bd9Sstevel@tonic-gate * Create a fake dt_node_t on the stack so we can determine the 16077c478bd9Sstevel@tonic-gate * type of any matching identifier by assigning to this node. 16087c478bd9Sstevel@tonic-gate * If the pre-existing ident has its di_type set, propagate 16097c478bd9Sstevel@tonic-gate * the type by hand so as not to trigger a prototype check for 16107c478bd9Sstevel@tonic-gate * arrays (yet); otherwise we use dt_ident_cook() on the ident 16117c478bd9Sstevel@tonic-gate * to ensure it is fully initialized before looking at it. 16127c478bd9Sstevel@tonic-gate */ 16137c478bd9Sstevel@tonic-gate bzero(&idn, sizeof (dt_node_t)); 16147c478bd9Sstevel@tonic-gate 16157c478bd9Sstevel@tonic-gate if (idp != NULL && idp->di_type != CTF_ERR) 1616a386cc11SRobert Mustacchi dt_node_type_assign(&idn, idp->di_ctfp, idp->di_type, 1617a386cc11SRobert Mustacchi B_FALSE); 16187c478bd9Sstevel@tonic-gate else if (idp != NULL) 16197c478bd9Sstevel@tonic-gate (void) dt_ident_cook(&idn, idp, NULL); 16207c478bd9Sstevel@tonic-gate 16217c478bd9Sstevel@tonic-gate if (assc) { 16227c478bd9Sstevel@tonic-gate if (class == DT_DC_THIS) { 16237c478bd9Sstevel@tonic-gate xyerror(D_DECL_LOCASSC, "associative arrays " 16247c478bd9Sstevel@tonic-gate "may not be declared as local variables:" 16257c478bd9Sstevel@tonic-gate " %s\n", dsp->ds_ident); 16267c478bd9Sstevel@tonic-gate } 16277c478bd9Sstevel@tonic-gate 16287c478bd9Sstevel@tonic-gate if (dt_decl_type(ddp->dd_next, &dtt) != 0) 16297c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 16307c478bd9Sstevel@tonic-gate } 16317c478bd9Sstevel@tonic-gate 16327c478bd9Sstevel@tonic-gate if (idp != NULL && (idp->di_kind != idkind || 16337c478bd9Sstevel@tonic-gate ctf_type_cmp(dtt.dtt_ctfp, dtt.dtt_type, 16347c478bd9Sstevel@tonic-gate idn.dn_ctfp, idn.dn_type) != 0)) { 16357c478bd9Sstevel@tonic-gate xyerror(D_DECL_IDRED, "identifier redeclared: %s\n" 16367c478bd9Sstevel@tonic-gate "\t current: %s %s\n\tprevious: %s %s\n", 16377c478bd9Sstevel@tonic-gate dsp->ds_ident, dt_idkind_name(idkind), 16387c478bd9Sstevel@tonic-gate dt_type_name(dtt.dtt_ctfp, 16397c478bd9Sstevel@tonic-gate dtt.dtt_type, n1, sizeof (n1)), 16407c478bd9Sstevel@tonic-gate dt_idkind_name(idp->di_kind), 16417c478bd9Sstevel@tonic-gate dt_node_type_name(&idn, n2, sizeof (n2))); 16427c478bd9Sstevel@tonic-gate 16437c478bd9Sstevel@tonic-gate } else if (idp != NULL && assc) { 16447c478bd9Sstevel@tonic-gate const dt_idsig_t *isp = idp->di_data; 16457c478bd9Sstevel@tonic-gate dt_node_t *dnp = ddp->dd_node; 16467c478bd9Sstevel@tonic-gate int argc = 0; 16477c478bd9Sstevel@tonic-gate 16487c478bd9Sstevel@tonic-gate for (; dnp != NULL; dnp = dnp->dn_list, argc++) { 16497c478bd9Sstevel@tonic-gate const dt_node_t *pnp = &isp->dis_args[argc]; 16507c478bd9Sstevel@tonic-gate 16517c478bd9Sstevel@tonic-gate if (argc >= isp->dis_argc) 16527c478bd9Sstevel@tonic-gate continue; /* tuple length mismatch */ 16537c478bd9Sstevel@tonic-gate 16547c478bd9Sstevel@tonic-gate if (ctf_type_cmp(dnp->dn_ctfp, dnp->dn_type, 16557c478bd9Sstevel@tonic-gate pnp->dn_ctfp, pnp->dn_type) == 0) 16567c478bd9Sstevel@tonic-gate continue; 16577c478bd9Sstevel@tonic-gate 16587c478bd9Sstevel@tonic-gate xyerror(D_DECL_IDRED, 16597c478bd9Sstevel@tonic-gate "identifier redeclared: %s\n" 16607c478bd9Sstevel@tonic-gate "\t current: %s, key #%d of type %s\n" 16617c478bd9Sstevel@tonic-gate "\tprevious: %s, key #%d of type %s\n", 16627c478bd9Sstevel@tonic-gate dsp->ds_ident, 16637c478bd9Sstevel@tonic-gate dt_idkind_name(idkind), argc + 1, 16647c478bd9Sstevel@tonic-gate dt_node_type_name(dnp, n1, sizeof (n1)), 16657c478bd9Sstevel@tonic-gate dt_idkind_name(idp->di_kind), argc + 1, 16667c478bd9Sstevel@tonic-gate dt_node_type_name(pnp, n2, sizeof (n2))); 16677c478bd9Sstevel@tonic-gate } 16687c478bd9Sstevel@tonic-gate 16697c478bd9Sstevel@tonic-gate if (isp->dis_argc != argc) { 16707c478bd9Sstevel@tonic-gate xyerror(D_DECL_IDRED, 16717c478bd9Sstevel@tonic-gate "identifier redeclared: %s\n" 16727c478bd9Sstevel@tonic-gate "\t current: %s of %s, tuple length %d\n" 16737c478bd9Sstevel@tonic-gate "\tprevious: %s of %s, tuple length %d\n", 16747c478bd9Sstevel@tonic-gate dsp->ds_ident, dt_idkind_name(idkind), 16757c478bd9Sstevel@tonic-gate dt_type_name(dtt.dtt_ctfp, dtt.dtt_type, 16767c478bd9Sstevel@tonic-gate n1, sizeof (n1)), argc, 16777c478bd9Sstevel@tonic-gate dt_idkind_name(idp->di_kind), 16787c478bd9Sstevel@tonic-gate dt_node_type_name(&idn, n2, sizeof (n2)), 16797c478bd9Sstevel@tonic-gate isp->dis_argc); 16807c478bd9Sstevel@tonic-gate } 16817c478bd9Sstevel@tonic-gate 16827c478bd9Sstevel@tonic-gate } else if (idp == NULL) { 16837c478bd9Sstevel@tonic-gate type = ctf_type_resolve(dtt.dtt_ctfp, dtt.dtt_type); 16847c478bd9Sstevel@tonic-gate kind = ctf_type_kind(dtt.dtt_ctfp, type); 16857c478bd9Sstevel@tonic-gate 16867c478bd9Sstevel@tonic-gate switch (kind) { 16877c478bd9Sstevel@tonic-gate case CTF_K_INTEGER: 16887c478bd9Sstevel@tonic-gate if (ctf_type_encoding(dtt.dtt_ctfp, type, 16897c478bd9Sstevel@tonic-gate &cte) == 0 && IS_VOID(cte)) { 16907c478bd9Sstevel@tonic-gate xyerror(D_DECL_VOIDOBJ, "cannot have " 16917c478bd9Sstevel@tonic-gate "void object: %s\n", dsp->ds_ident); 16927c478bd9Sstevel@tonic-gate } 16937c478bd9Sstevel@tonic-gate break; 16947c478bd9Sstevel@tonic-gate case CTF_K_STRUCT: 16957c478bd9Sstevel@tonic-gate case CTF_K_UNION: 16967c478bd9Sstevel@tonic-gate if (ctf_type_size(dtt.dtt_ctfp, type) != 0) 16977c478bd9Sstevel@tonic-gate break; /* proceed to declaring */ 16987c478bd9Sstevel@tonic-gate /*FALLTHRU*/ 16997c478bd9Sstevel@tonic-gate case CTF_K_FORWARD: 17007c478bd9Sstevel@tonic-gate xyerror(D_DECL_INCOMPLETE, 17017c478bd9Sstevel@tonic-gate "incomplete struct/union/enum %s: %s\n", 17027c478bd9Sstevel@tonic-gate dt_type_name(dtt.dtt_ctfp, dtt.dtt_type, 17037c478bd9Sstevel@tonic-gate n1, sizeof (n1)), dsp->ds_ident); 17047c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 17057c478bd9Sstevel@tonic-gate } 17067c478bd9Sstevel@tonic-gate 17077c478bd9Sstevel@tonic-gate if (dt_idhash_nextid(dhp, &id) == -1) { 17087c478bd9Sstevel@tonic-gate xyerror(D_ID_OFLOW, "cannot create %s: limit " 17097c478bd9Sstevel@tonic-gate "on number of %s variables exceeded\n", 17107c478bd9Sstevel@tonic-gate dsp->ds_ident, dt_idhash_name(dhp)); 17117c478bd9Sstevel@tonic-gate } 17127c478bd9Sstevel@tonic-gate 17137c478bd9Sstevel@tonic-gate dt_dprintf("declare %s %s variable %s, id=%u\n", 17147c478bd9Sstevel@tonic-gate dt_idhash_name(dhp), dt_idkind_name(idkind), 17157c478bd9Sstevel@tonic-gate dsp->ds_ident, id); 17167c478bd9Sstevel@tonic-gate 17177c478bd9Sstevel@tonic-gate idp = dt_idhash_insert(dhp, dsp->ds_ident, idkind, 17187c478bd9Sstevel@tonic-gate idflags | DT_IDFLG_WRITE | DT_IDFLG_DECL, id, 17197c478bd9Sstevel@tonic-gate _dtrace_defattr, 0, assc ? &dt_idops_assc : 17207c478bd9Sstevel@tonic-gate &dt_idops_thaw, NULL, dtp->dt_gen); 17217c478bd9Sstevel@tonic-gate 17227c478bd9Sstevel@tonic-gate if (idp == NULL) 17237c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 17247c478bd9Sstevel@tonic-gate 17257c478bd9Sstevel@tonic-gate dt_ident_type_assign(idp, dtt.dtt_ctfp, dtt.dtt_type); 17267c478bd9Sstevel@tonic-gate 17277c478bd9Sstevel@tonic-gate /* 17287c478bd9Sstevel@tonic-gate * If we are declaring an associative array, use our 17297c478bd9Sstevel@tonic-gate * fake parse node to cook the new assoc identifier. 17307c478bd9Sstevel@tonic-gate * This will force the ident code to instantiate the 17317c478bd9Sstevel@tonic-gate * array type signature corresponding to the list of 17327c478bd9Sstevel@tonic-gate * types pointed to by ddp->dd_node. We also reset 17337c478bd9Sstevel@tonic-gate * the identifier's attributes based upon the result. 17347c478bd9Sstevel@tonic-gate */ 17357c478bd9Sstevel@tonic-gate if (assc) { 17367c478bd9Sstevel@tonic-gate idp->di_attr = 17377c478bd9Sstevel@tonic-gate dt_ident_cook(&idn, idp, &ddp->dd_node); 17387c478bd9Sstevel@tonic-gate } 17397c478bd9Sstevel@tonic-gate } 17407c478bd9Sstevel@tonic-gate } 17417c478bd9Sstevel@tonic-gate 17427c478bd9Sstevel@tonic-gate } /* end of switch */ 17437c478bd9Sstevel@tonic-gate 17447c478bd9Sstevel@tonic-gate free(dsp->ds_ident); 17457c478bd9Sstevel@tonic-gate dsp->ds_ident = NULL; 17467c478bd9Sstevel@tonic-gate 17477c478bd9Sstevel@tonic-gate return (NULL); 17487c478bd9Sstevel@tonic-gate } 17497c478bd9Sstevel@tonic-gate 17507c478bd9Sstevel@tonic-gate dt_node_t * 17517c478bd9Sstevel@tonic-gate dt_node_func(dt_node_t *dnp, dt_node_t *args) 17527c478bd9Sstevel@tonic-gate { 17537c478bd9Sstevel@tonic-gate dt_ident_t *idp; 17547c478bd9Sstevel@tonic-gate 17557c478bd9Sstevel@tonic-gate if (dnp->dn_kind != DT_NODE_IDENT) { 17567c478bd9Sstevel@tonic-gate xyerror(D_FUNC_IDENT, 17577c478bd9Sstevel@tonic-gate "function designator is not of function type\n"); 17587c478bd9Sstevel@tonic-gate } 17597c478bd9Sstevel@tonic-gate 17607c478bd9Sstevel@tonic-gate idp = dt_idstack_lookup(&yypcb->pcb_globals, dnp->dn_string); 17617c478bd9Sstevel@tonic-gate 17627c478bd9Sstevel@tonic-gate if (idp == NULL) { 17637c478bd9Sstevel@tonic-gate xyerror(D_FUNC_UNDEF, 17647c478bd9Sstevel@tonic-gate "undefined function name: %s\n", dnp->dn_string); 17657c478bd9Sstevel@tonic-gate } 17667c478bd9Sstevel@tonic-gate 17677c478bd9Sstevel@tonic-gate if (idp->di_kind != DT_IDENT_FUNC && 17687c478bd9Sstevel@tonic-gate idp->di_kind != DT_IDENT_AGGFUNC && 17697c478bd9Sstevel@tonic-gate idp->di_kind != DT_IDENT_ACTFUNC) { 17707c478bd9Sstevel@tonic-gate xyerror(D_FUNC_IDKIND, "%s '%s' may not be referenced as a " 17717c478bd9Sstevel@tonic-gate "function\n", dt_idkind_name(idp->di_kind), idp->di_name); 17727c478bd9Sstevel@tonic-gate } 17737c478bd9Sstevel@tonic-gate 17747c478bd9Sstevel@tonic-gate free(dnp->dn_string); 17757c478bd9Sstevel@tonic-gate dnp->dn_string = NULL; 17767c478bd9Sstevel@tonic-gate 17777c478bd9Sstevel@tonic-gate dnp->dn_kind = DT_NODE_FUNC; 17787c478bd9Sstevel@tonic-gate dnp->dn_flags &= ~DT_NF_COOKED; 17797c478bd9Sstevel@tonic-gate dnp->dn_ident = idp; 17807c478bd9Sstevel@tonic-gate dnp->dn_args = args; 17817c478bd9Sstevel@tonic-gate dnp->dn_list = NULL; 17827c478bd9Sstevel@tonic-gate 17837c478bd9Sstevel@tonic-gate return (dnp); 17847c478bd9Sstevel@tonic-gate } 17857c478bd9Sstevel@tonic-gate 17867c478bd9Sstevel@tonic-gate /* 17877c478bd9Sstevel@tonic-gate * The offsetof() function is special because it takes a type name as an 17887c478bd9Sstevel@tonic-gate * argument. It does not actually construct its own node; after looking up the 17897c478bd9Sstevel@tonic-gate * structure or union offset, we just return an integer node with the offset. 17907c478bd9Sstevel@tonic-gate */ 17917c478bd9Sstevel@tonic-gate dt_node_t * 17927c478bd9Sstevel@tonic-gate dt_node_offsetof(dt_decl_t *ddp, char *s) 17937c478bd9Sstevel@tonic-gate { 17947c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 17957c478bd9Sstevel@tonic-gate dt_node_t dn; 17967c478bd9Sstevel@tonic-gate char *name; 17977c478bd9Sstevel@tonic-gate int err; 17987c478bd9Sstevel@tonic-gate 17997c478bd9Sstevel@tonic-gate ctf_membinfo_t ctm; 18007c478bd9Sstevel@tonic-gate ctf_id_t type; 18017c478bd9Sstevel@tonic-gate uint_t kind; 18027c478bd9Sstevel@tonic-gate 180323a1cceaSRoger A. Faulkner name = strdupa(s); 18047c478bd9Sstevel@tonic-gate free(s); 18057c478bd9Sstevel@tonic-gate 18067c478bd9Sstevel@tonic-gate err = dt_decl_type(ddp, &dtt); 18077c478bd9Sstevel@tonic-gate dt_decl_free(ddp); 18087c478bd9Sstevel@tonic-gate 18097c478bd9Sstevel@tonic-gate if (err != 0) 18107c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 18117c478bd9Sstevel@tonic-gate 18127c478bd9Sstevel@tonic-gate type = ctf_type_resolve(dtt.dtt_ctfp, dtt.dtt_type); 18137c478bd9Sstevel@tonic-gate kind = ctf_type_kind(dtt.dtt_ctfp, type); 18147c478bd9Sstevel@tonic-gate 18157c478bd9Sstevel@tonic-gate if (kind != CTF_K_STRUCT && kind != CTF_K_UNION) { 18167c478bd9Sstevel@tonic-gate xyerror(D_OFFSETOF_TYPE, 18177c478bd9Sstevel@tonic-gate "offsetof operand must be a struct or union type\n"); 18187c478bd9Sstevel@tonic-gate } 18197c478bd9Sstevel@tonic-gate 18207c478bd9Sstevel@tonic-gate if (ctf_member_info(dtt.dtt_ctfp, type, name, &ctm) == CTF_ERR) { 18217c478bd9Sstevel@tonic-gate xyerror(D_UNKNOWN, "failed to determine offset of %s: %s\n", 18227c478bd9Sstevel@tonic-gate name, ctf_errmsg(ctf_errno(dtt.dtt_ctfp))); 18237c478bd9Sstevel@tonic-gate } 18247c478bd9Sstevel@tonic-gate 18257c478bd9Sstevel@tonic-gate bzero(&dn, sizeof (dn)); 1826a386cc11SRobert Mustacchi dt_node_type_assign(&dn, dtt.dtt_ctfp, ctm.ctm_type, B_FALSE); 18277c478bd9Sstevel@tonic-gate 18287c478bd9Sstevel@tonic-gate if (dn.dn_flags & DT_NF_BITFIELD) { 18297c478bd9Sstevel@tonic-gate xyerror(D_OFFSETOF_BITFIELD, 18307c478bd9Sstevel@tonic-gate "cannot take offset of a bit-field: %s\n", name); 18317c478bd9Sstevel@tonic-gate } 18327c478bd9Sstevel@tonic-gate 18337c478bd9Sstevel@tonic-gate return (dt_node_int(ctm.ctm_offset / NBBY)); 18347c478bd9Sstevel@tonic-gate } 18357c478bd9Sstevel@tonic-gate 18367c478bd9Sstevel@tonic-gate dt_node_t * 18377c478bd9Sstevel@tonic-gate dt_node_op1(int op, dt_node_t *cp) 18387c478bd9Sstevel@tonic-gate { 18397c478bd9Sstevel@tonic-gate dt_node_t *dnp; 18407c478bd9Sstevel@tonic-gate 18417c478bd9Sstevel@tonic-gate if (cp->dn_kind == DT_NODE_INT) { 18427c478bd9Sstevel@tonic-gate switch (op) { 18437c478bd9Sstevel@tonic-gate case DT_TOK_INEG: 18447c478bd9Sstevel@tonic-gate /* 18457c478bd9Sstevel@tonic-gate * If we're negating an unsigned integer, zero out any 18467c478bd9Sstevel@tonic-gate * extra top bits to truncate the value to the size of 18477c478bd9Sstevel@tonic-gate * the effective type determined by dt_node_int(). 18487c478bd9Sstevel@tonic-gate */ 18497c478bd9Sstevel@tonic-gate cp->dn_value = -cp->dn_value; 18507c478bd9Sstevel@tonic-gate if (!(cp->dn_flags & DT_NF_SIGNED)) { 18517c478bd9Sstevel@tonic-gate cp->dn_value &= ~0ULL >> 18527c478bd9Sstevel@tonic-gate (64 - dt_node_type_size(cp) * NBBY); 18537c478bd9Sstevel@tonic-gate } 18547c478bd9Sstevel@tonic-gate /*FALLTHRU*/ 18557c478bd9Sstevel@tonic-gate case DT_TOK_IPOS: 18567c478bd9Sstevel@tonic-gate return (cp); 18577c478bd9Sstevel@tonic-gate case DT_TOK_BNEG: 18587c478bd9Sstevel@tonic-gate cp->dn_value = ~cp->dn_value; 18597c478bd9Sstevel@tonic-gate return (cp); 18607c478bd9Sstevel@tonic-gate case DT_TOK_LNEG: 18617c478bd9Sstevel@tonic-gate cp->dn_value = !cp->dn_value; 18627c478bd9Sstevel@tonic-gate return (cp); 18637c478bd9Sstevel@tonic-gate } 18647c478bd9Sstevel@tonic-gate } 18657c478bd9Sstevel@tonic-gate 18667c478bd9Sstevel@tonic-gate /* 18677c478bd9Sstevel@tonic-gate * If sizeof is applied to a type_name or string constant, we can 18687c478bd9Sstevel@tonic-gate * transform 'cp' into an integer constant in the node construction 18697c478bd9Sstevel@tonic-gate * pass so that it can then be used for arithmetic in this pass. 18707c478bd9Sstevel@tonic-gate */ 18717c478bd9Sstevel@tonic-gate if (op == DT_TOK_SIZEOF && 18727c478bd9Sstevel@tonic-gate (cp->dn_kind == DT_NODE_STRING || cp->dn_kind == DT_NODE_TYPE)) { 18737c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 18747c478bd9Sstevel@tonic-gate size_t size = dt_node_type_size(cp); 18757c478bd9Sstevel@tonic-gate 18767c478bd9Sstevel@tonic-gate if (size == 0) { 18777c478bd9Sstevel@tonic-gate xyerror(D_SIZEOF_TYPE, "cannot apply sizeof to an " 18787c478bd9Sstevel@tonic-gate "operand of unknown size\n"); 18797c478bd9Sstevel@tonic-gate } 18807c478bd9Sstevel@tonic-gate 18817c478bd9Sstevel@tonic-gate dt_node_type_assign(cp, dtp->dt_ddefs->dm_ctfp, 1882a386cc11SRobert Mustacchi ctf_lookup_by_name(dtp->dt_ddefs->dm_ctfp, "size_t"), 1883a386cc11SRobert Mustacchi B_FALSE); 18847c478bd9Sstevel@tonic-gate 18857c478bd9Sstevel@tonic-gate cp->dn_kind = DT_NODE_INT; 18867c478bd9Sstevel@tonic-gate cp->dn_op = DT_TOK_INT; 18877c478bd9Sstevel@tonic-gate cp->dn_value = size; 18887c478bd9Sstevel@tonic-gate 18897c478bd9Sstevel@tonic-gate return (cp); 18907c478bd9Sstevel@tonic-gate } 18917c478bd9Sstevel@tonic-gate 18927c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_OP1); 18937c478bd9Sstevel@tonic-gate assert(op <= USHRT_MAX); 18947c478bd9Sstevel@tonic-gate dnp->dn_op = (ushort_t)op; 18957c478bd9Sstevel@tonic-gate dnp->dn_child = cp; 18967c478bd9Sstevel@tonic-gate 18977c478bd9Sstevel@tonic-gate return (dnp); 18987c478bd9Sstevel@tonic-gate } 18997c478bd9Sstevel@tonic-gate 1900e5803b76SAdam H. Leventhal /* 1901e5803b76SAdam H. Leventhal * If an integer constant is being cast to another integer type, we can 1902e5803b76SAdam H. Leventhal * perform the cast as part of integer constant folding in this pass. We must 1903e5803b76SAdam H. Leventhal * take action when the integer is being cast to a smaller type or if it is 1904e5803b76SAdam H. Leventhal * changing signed-ness. If so, we first shift rp's bits bits high (losing 1905e5803b76SAdam H. Leventhal * excess bits if narrowing) and then shift them down with either a logical 1906e5803b76SAdam H. Leventhal * shift (unsigned) or arithmetic shift (signed). 1907e5803b76SAdam H. Leventhal */ 1908e5803b76SAdam H. Leventhal static void 1909e5803b76SAdam H. Leventhal dt_cast(dt_node_t *lp, dt_node_t *rp) 1910e5803b76SAdam H. Leventhal { 1911e5803b76SAdam H. Leventhal size_t srcsize = dt_node_type_size(rp); 1912e5803b76SAdam H. Leventhal size_t dstsize = dt_node_type_size(lp); 1913e5803b76SAdam H. Leventhal 1914e5803b76SAdam H. Leventhal if (dstsize < srcsize) { 1915e5803b76SAdam H. Leventhal int n = (sizeof (uint64_t) - dstsize) * NBBY; 1916e5803b76SAdam H. Leventhal rp->dn_value <<= n; 1917e5803b76SAdam H. Leventhal rp->dn_value >>= n; 1918e5803b76SAdam H. Leventhal } else if (dstsize > srcsize) { 1919e5803b76SAdam H. Leventhal int n = (sizeof (uint64_t) - srcsize) * NBBY; 1920e5803b76SAdam H. Leventhal int s = (dstsize - srcsize) * NBBY; 1921e5803b76SAdam H. Leventhal 1922e5803b76SAdam H. Leventhal rp->dn_value <<= n; 1923e5803b76SAdam H. Leventhal if (rp->dn_flags & DT_NF_SIGNED) { 1924e5803b76SAdam H. Leventhal rp->dn_value = (intmax_t)rp->dn_value >> s; 1925e5803b76SAdam H. Leventhal rp->dn_value >>= n - s; 1926e5803b76SAdam H. Leventhal } else { 1927e5803b76SAdam H. Leventhal rp->dn_value >>= n; 1928e5803b76SAdam H. Leventhal } 1929e5803b76SAdam H. Leventhal } 1930e5803b76SAdam H. Leventhal } 1931e5803b76SAdam H. Leventhal 19327c478bd9Sstevel@tonic-gate dt_node_t * 19337c478bd9Sstevel@tonic-gate dt_node_op2(int op, dt_node_t *lp, dt_node_t *rp) 19347c478bd9Sstevel@tonic-gate { 19357c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 19367c478bd9Sstevel@tonic-gate dt_node_t *dnp; 19377c478bd9Sstevel@tonic-gate 19387c478bd9Sstevel@tonic-gate /* 19397c478bd9Sstevel@tonic-gate * First we check for operations that are illegal -- namely those that 19407c478bd9Sstevel@tonic-gate * might result in integer division by zero, and abort if one is found. 19417c478bd9Sstevel@tonic-gate */ 19427c478bd9Sstevel@tonic-gate if (rp->dn_kind == DT_NODE_INT && rp->dn_value == 0 && 19437c478bd9Sstevel@tonic-gate (op == DT_TOK_MOD || op == DT_TOK_DIV || 19447c478bd9Sstevel@tonic-gate op == DT_TOK_MOD_EQ || op == DT_TOK_DIV_EQ)) 19457c478bd9Sstevel@tonic-gate xyerror(D_DIV_ZERO, "expression contains division by zero\n"); 19467c478bd9Sstevel@tonic-gate 19477c478bd9Sstevel@tonic-gate /* 19487c478bd9Sstevel@tonic-gate * If both children are immediate values, we can just perform inline 19497c478bd9Sstevel@tonic-gate * calculation and return a new immediate node with the result. 19507c478bd9Sstevel@tonic-gate */ 19517c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_INT && rp->dn_kind == DT_NODE_INT) { 19527c478bd9Sstevel@tonic-gate uintmax_t l = lp->dn_value; 19537c478bd9Sstevel@tonic-gate uintmax_t r = rp->dn_value; 19547c478bd9Sstevel@tonic-gate 19557c478bd9Sstevel@tonic-gate dnp = dt_node_int(0); /* allocate new integer node for result */ 19567c478bd9Sstevel@tonic-gate 19577c478bd9Sstevel@tonic-gate switch (op) { 19587c478bd9Sstevel@tonic-gate case DT_TOK_LOR: 19597c478bd9Sstevel@tonic-gate dnp->dn_value = l || r; 19607c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 1961a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 19627c478bd9Sstevel@tonic-gate break; 19637c478bd9Sstevel@tonic-gate case DT_TOK_LXOR: 19647c478bd9Sstevel@tonic-gate dnp->dn_value = (l != 0) ^ (r != 0); 19657c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 1966a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 19677c478bd9Sstevel@tonic-gate break; 19687c478bd9Sstevel@tonic-gate case DT_TOK_LAND: 19697c478bd9Sstevel@tonic-gate dnp->dn_value = l && r; 19707c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 1971a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 19727c478bd9Sstevel@tonic-gate break; 19737c478bd9Sstevel@tonic-gate case DT_TOK_BOR: 19747c478bd9Sstevel@tonic-gate dnp->dn_value = l | r; 19757c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 19767c478bd9Sstevel@tonic-gate break; 19777c478bd9Sstevel@tonic-gate case DT_TOK_XOR: 19787c478bd9Sstevel@tonic-gate dnp->dn_value = l ^ r; 19797c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 19807c478bd9Sstevel@tonic-gate break; 19817c478bd9Sstevel@tonic-gate case DT_TOK_BAND: 19827c478bd9Sstevel@tonic-gate dnp->dn_value = l & r; 19837c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 19847c478bd9Sstevel@tonic-gate break; 19857c478bd9Sstevel@tonic-gate case DT_TOK_EQU: 19867c478bd9Sstevel@tonic-gate dnp->dn_value = l == r; 19877c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 1988a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 19897c478bd9Sstevel@tonic-gate break; 19907c478bd9Sstevel@tonic-gate case DT_TOK_NEQ: 19917c478bd9Sstevel@tonic-gate dnp->dn_value = l != r; 19927c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 1993a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 19947c478bd9Sstevel@tonic-gate break; 19957c478bd9Sstevel@tonic-gate case DT_TOK_LT: 19967c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 19977c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_SIGNED) 19987c478bd9Sstevel@tonic-gate dnp->dn_value = (intmax_t)l < (intmax_t)r; 19997c478bd9Sstevel@tonic-gate else 20007c478bd9Sstevel@tonic-gate dnp->dn_value = l < r; 20017c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 2002a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 20037c478bd9Sstevel@tonic-gate break; 20047c478bd9Sstevel@tonic-gate case DT_TOK_LE: 20057c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20067c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_SIGNED) 20077c478bd9Sstevel@tonic-gate dnp->dn_value = (intmax_t)l <= (intmax_t)r; 20087c478bd9Sstevel@tonic-gate else 20097c478bd9Sstevel@tonic-gate dnp->dn_value = l <= r; 20107c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 2011a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 20127c478bd9Sstevel@tonic-gate break; 20137c478bd9Sstevel@tonic-gate case DT_TOK_GT: 20147c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20157c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_SIGNED) 20167c478bd9Sstevel@tonic-gate dnp->dn_value = (intmax_t)l > (intmax_t)r; 20177c478bd9Sstevel@tonic-gate else 20187c478bd9Sstevel@tonic-gate dnp->dn_value = l > r; 20197c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 2020a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 20217c478bd9Sstevel@tonic-gate break; 20227c478bd9Sstevel@tonic-gate case DT_TOK_GE: 20237c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20247c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_SIGNED) 20257c478bd9Sstevel@tonic-gate dnp->dn_value = (intmax_t)l >= (intmax_t)r; 20267c478bd9Sstevel@tonic-gate else 20277c478bd9Sstevel@tonic-gate dnp->dn_value = l >= r; 20287c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 2029a386cc11SRobert Mustacchi DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), B_FALSE); 20307c478bd9Sstevel@tonic-gate break; 20317c478bd9Sstevel@tonic-gate case DT_TOK_LSH: 20327c478bd9Sstevel@tonic-gate dnp->dn_value = l << r; 20337c478bd9Sstevel@tonic-gate dt_node_type_propagate(lp, dnp); 20347c478bd9Sstevel@tonic-gate dt_node_attr_assign(rp, 20357c478bd9Sstevel@tonic-gate dt_attr_min(lp->dn_attr, rp->dn_attr)); 20367c478bd9Sstevel@tonic-gate break; 20377c478bd9Sstevel@tonic-gate case DT_TOK_RSH: 20387c478bd9Sstevel@tonic-gate dnp->dn_value = l >> r; 20397c478bd9Sstevel@tonic-gate dt_node_type_propagate(lp, dnp); 20407c478bd9Sstevel@tonic-gate dt_node_attr_assign(rp, 20417c478bd9Sstevel@tonic-gate dt_attr_min(lp->dn_attr, rp->dn_attr)); 20427c478bd9Sstevel@tonic-gate break; 20437c478bd9Sstevel@tonic-gate case DT_TOK_ADD: 20447c478bd9Sstevel@tonic-gate dnp->dn_value = l + r; 20457c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20467c478bd9Sstevel@tonic-gate break; 20477c478bd9Sstevel@tonic-gate case DT_TOK_SUB: 20487c478bd9Sstevel@tonic-gate dnp->dn_value = l - r; 20497c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20507c478bd9Sstevel@tonic-gate break; 20517c478bd9Sstevel@tonic-gate case DT_TOK_MUL: 20527c478bd9Sstevel@tonic-gate dnp->dn_value = l * r; 20537c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20547c478bd9Sstevel@tonic-gate break; 20557c478bd9Sstevel@tonic-gate case DT_TOK_DIV: 20567c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20577c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_SIGNED) 20587c478bd9Sstevel@tonic-gate dnp->dn_value = (intmax_t)l / (intmax_t)r; 20597c478bd9Sstevel@tonic-gate else 20607c478bd9Sstevel@tonic-gate dnp->dn_value = l / r; 20617c478bd9Sstevel@tonic-gate break; 20627c478bd9Sstevel@tonic-gate case DT_TOK_MOD: 20637c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); 20647c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_SIGNED) 20657c478bd9Sstevel@tonic-gate dnp->dn_value = (intmax_t)l % (intmax_t)r; 20667c478bd9Sstevel@tonic-gate else 20677c478bd9Sstevel@tonic-gate dnp->dn_value = l % r; 20687c478bd9Sstevel@tonic-gate break; 20697c478bd9Sstevel@tonic-gate default: 20707c478bd9Sstevel@tonic-gate dt_node_free(dnp); 20717c478bd9Sstevel@tonic-gate dnp = NULL; 20727c478bd9Sstevel@tonic-gate } 20737c478bd9Sstevel@tonic-gate 20747c478bd9Sstevel@tonic-gate if (dnp != NULL) { 20757c478bd9Sstevel@tonic-gate dt_node_free(lp); 20767c478bd9Sstevel@tonic-gate dt_node_free(rp); 20777c478bd9Sstevel@tonic-gate return (dnp); 20787c478bd9Sstevel@tonic-gate } 20797c478bd9Sstevel@tonic-gate } 20807c478bd9Sstevel@tonic-gate 20817c478bd9Sstevel@tonic-gate if (op == DT_TOK_LPAR && rp->dn_kind == DT_NODE_INT && 20827c478bd9Sstevel@tonic-gate dt_node_is_integer(lp)) { 2083e5803b76SAdam H. Leventhal dt_cast(lp, rp); 20847c478bd9Sstevel@tonic-gate dt_node_type_propagate(lp, rp); 20857c478bd9Sstevel@tonic-gate dt_node_attr_assign(rp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 20867c478bd9Sstevel@tonic-gate dt_node_free(lp); 20877c478bd9Sstevel@tonic-gate 20887c478bd9Sstevel@tonic-gate return (rp); 20897c478bd9Sstevel@tonic-gate } 20907c478bd9Sstevel@tonic-gate 20917c478bd9Sstevel@tonic-gate /* 20927c478bd9Sstevel@tonic-gate * If no immediate optimizations are available, create an new OP2 node 20937c478bd9Sstevel@tonic-gate * and glue the left and right children into place and return. 20947c478bd9Sstevel@tonic-gate */ 20957c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_OP2); 20967c478bd9Sstevel@tonic-gate assert(op <= USHRT_MAX); 20977c478bd9Sstevel@tonic-gate dnp->dn_op = (ushort_t)op; 20987c478bd9Sstevel@tonic-gate dnp->dn_left = lp; 20997c478bd9Sstevel@tonic-gate dnp->dn_right = rp; 21007c478bd9Sstevel@tonic-gate 21017c478bd9Sstevel@tonic-gate return (dnp); 21027c478bd9Sstevel@tonic-gate } 21037c478bd9Sstevel@tonic-gate 21047c478bd9Sstevel@tonic-gate dt_node_t * 21057c478bd9Sstevel@tonic-gate dt_node_op3(dt_node_t *expr, dt_node_t *lp, dt_node_t *rp) 21067c478bd9Sstevel@tonic-gate { 21077c478bd9Sstevel@tonic-gate dt_node_t *dnp; 21087c478bd9Sstevel@tonic-gate 21097c478bd9Sstevel@tonic-gate if (expr->dn_kind == DT_NODE_INT) 21107c478bd9Sstevel@tonic-gate return (expr->dn_value != 0 ? lp : rp); 21117c478bd9Sstevel@tonic-gate 21127c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_OP3); 21137c478bd9Sstevel@tonic-gate dnp->dn_op = DT_TOK_QUESTION; 21147c478bd9Sstevel@tonic-gate dnp->dn_expr = expr; 21157c478bd9Sstevel@tonic-gate dnp->dn_left = lp; 21167c478bd9Sstevel@tonic-gate dnp->dn_right = rp; 21177c478bd9Sstevel@tonic-gate 21187c478bd9Sstevel@tonic-gate return (dnp); 21197c478bd9Sstevel@tonic-gate } 21207c478bd9Sstevel@tonic-gate 21217c478bd9Sstevel@tonic-gate dt_node_t * 21227c478bd9Sstevel@tonic-gate dt_node_statement(dt_node_t *expr) 21237c478bd9Sstevel@tonic-gate { 21247c478bd9Sstevel@tonic-gate dt_node_t *dnp; 21257c478bd9Sstevel@tonic-gate 21267c478bd9Sstevel@tonic-gate if (expr->dn_kind == DT_NODE_AGG) 21277c478bd9Sstevel@tonic-gate return (expr); 21287c478bd9Sstevel@tonic-gate 21297c478bd9Sstevel@tonic-gate if (expr->dn_kind == DT_NODE_FUNC && 21307c478bd9Sstevel@tonic-gate expr->dn_ident->di_kind == DT_IDENT_ACTFUNC) 21317c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_DFUNC); 21327c478bd9Sstevel@tonic-gate else 21337c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_DEXPR); 21347c478bd9Sstevel@tonic-gate 21357c478bd9Sstevel@tonic-gate dnp->dn_expr = expr; 21367c478bd9Sstevel@tonic-gate return (dnp); 21377c478bd9Sstevel@tonic-gate } 21387c478bd9Sstevel@tonic-gate 21397c478bd9Sstevel@tonic-gate dt_node_t * 21400af8f00bSMatthew Ahrens dt_node_if(dt_node_t *pred, dt_node_t *acts, dt_node_t *else_acts) 21410af8f00bSMatthew Ahrens { 21420af8f00bSMatthew Ahrens dt_node_t *dnp = dt_node_alloc(DT_NODE_IF); 21430af8f00bSMatthew Ahrens dnp->dn_conditional = pred; 21440af8f00bSMatthew Ahrens dnp->dn_body = acts; 21450af8f00bSMatthew Ahrens dnp->dn_alternate_body = else_acts; 21460af8f00bSMatthew Ahrens 21470af8f00bSMatthew Ahrens return (dnp); 21480af8f00bSMatthew Ahrens } 21490af8f00bSMatthew Ahrens 21500af8f00bSMatthew Ahrens dt_node_t * 21517c478bd9Sstevel@tonic-gate dt_node_pdesc_by_name(char *spec) 21527c478bd9Sstevel@tonic-gate { 21537c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 21547c478bd9Sstevel@tonic-gate dt_node_t *dnp; 21557c478bd9Sstevel@tonic-gate 21567c478bd9Sstevel@tonic-gate if (spec == NULL) 21577c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 21587c478bd9Sstevel@tonic-gate 21597c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_PDESC); 21607c478bd9Sstevel@tonic-gate dnp->dn_spec = spec; 21617c478bd9Sstevel@tonic-gate dnp->dn_desc = malloc(sizeof (dtrace_probedesc_t)); 21627c478bd9Sstevel@tonic-gate 21637c478bd9Sstevel@tonic-gate if (dnp->dn_desc == NULL) 21647c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 21657c478bd9Sstevel@tonic-gate 21667c478bd9Sstevel@tonic-gate if (dtrace_xstr2desc(dtp, yypcb->pcb_pspec, dnp->dn_spec, 21677c478bd9Sstevel@tonic-gate yypcb->pcb_sargc, yypcb->pcb_sargv, dnp->dn_desc) != 0) { 21687c478bd9Sstevel@tonic-gate xyerror(D_PDESC_INVAL, "invalid probe description \"%s\": %s\n", 21697c478bd9Sstevel@tonic-gate dnp->dn_spec, dtrace_errmsg(dtp, dtrace_errno(dtp))); 21707c478bd9Sstevel@tonic-gate } 21717c478bd9Sstevel@tonic-gate 21727c478bd9Sstevel@tonic-gate free(dnp->dn_spec); 21737c478bd9Sstevel@tonic-gate dnp->dn_spec = NULL; 21747c478bd9Sstevel@tonic-gate 21757c478bd9Sstevel@tonic-gate return (dnp); 21767c478bd9Sstevel@tonic-gate } 21777c478bd9Sstevel@tonic-gate 21787c478bd9Sstevel@tonic-gate dt_node_t * 21797c478bd9Sstevel@tonic-gate dt_node_pdesc_by_id(uintmax_t id) 21807c478bd9Sstevel@tonic-gate { 21817c478bd9Sstevel@tonic-gate static const char *const names[] = { 21827c478bd9Sstevel@tonic-gate "providers", "modules", "functions" 21837c478bd9Sstevel@tonic-gate }; 21847c478bd9Sstevel@tonic-gate 21857c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 21867c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_node_alloc(DT_NODE_PDESC); 21877c478bd9Sstevel@tonic-gate 21887c478bd9Sstevel@tonic-gate if ((dnp->dn_desc = malloc(sizeof (dtrace_probedesc_t))) == NULL) 21897c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 21907c478bd9Sstevel@tonic-gate 21917c478bd9Sstevel@tonic-gate if (id > UINT_MAX) { 21927c478bd9Sstevel@tonic-gate xyerror(D_PDESC_INVAL, "identifier %llu exceeds maximum " 21937c478bd9Sstevel@tonic-gate "probe id\n", (u_longlong_t)id); 21947c478bd9Sstevel@tonic-gate } 21957c478bd9Sstevel@tonic-gate 21967c478bd9Sstevel@tonic-gate if (yypcb->pcb_pspec != DTRACE_PROBESPEC_NAME) { 21977c478bd9Sstevel@tonic-gate xyerror(D_PDESC_INVAL, "probe identifier %llu not permitted " 21987c478bd9Sstevel@tonic-gate "when specifying %s\n", (u_longlong_t)id, 21997c478bd9Sstevel@tonic-gate names[yypcb->pcb_pspec]); 22007c478bd9Sstevel@tonic-gate } 22017c478bd9Sstevel@tonic-gate 22027c478bd9Sstevel@tonic-gate if (dtrace_id2desc(dtp, (dtrace_id_t)id, dnp->dn_desc) != 0) { 22037c478bd9Sstevel@tonic-gate xyerror(D_PDESC_INVAL, "invalid probe identifier %llu: %s\n", 22047c478bd9Sstevel@tonic-gate (u_longlong_t)id, dtrace_errmsg(dtp, dtrace_errno(dtp))); 22057c478bd9Sstevel@tonic-gate } 22067c478bd9Sstevel@tonic-gate 22077c478bd9Sstevel@tonic-gate return (dnp); 22087c478bd9Sstevel@tonic-gate } 22097c478bd9Sstevel@tonic-gate 22107c478bd9Sstevel@tonic-gate dt_node_t * 22117c478bd9Sstevel@tonic-gate dt_node_clause(dt_node_t *pdescs, dt_node_t *pred, dt_node_t *acts) 22127c478bd9Sstevel@tonic-gate { 22137c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_node_alloc(DT_NODE_CLAUSE); 22147c478bd9Sstevel@tonic-gate 22157c478bd9Sstevel@tonic-gate dnp->dn_pdescs = pdescs; 22167c478bd9Sstevel@tonic-gate dnp->dn_pred = pred; 22177c478bd9Sstevel@tonic-gate dnp->dn_acts = acts; 22187c478bd9Sstevel@tonic-gate 22197c478bd9Sstevel@tonic-gate return (dnp); 22207c478bd9Sstevel@tonic-gate } 22217c478bd9Sstevel@tonic-gate 22227c478bd9Sstevel@tonic-gate dt_node_t * 22237c478bd9Sstevel@tonic-gate dt_node_inline(dt_node_t *expr) 22247c478bd9Sstevel@tonic-gate { 22257c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 22267c478bd9Sstevel@tonic-gate dt_scope_t *dsp = &yypcb->pcb_dstack; 22277c478bd9Sstevel@tonic-gate dt_decl_t *ddp = dt_decl_top(); 22287c478bd9Sstevel@tonic-gate 22297c478bd9Sstevel@tonic-gate char n[DT_TYPE_NAMELEN]; 22307c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 22317c478bd9Sstevel@tonic-gate 22327c478bd9Sstevel@tonic-gate dt_ident_t *idp, *rdp; 22337c478bd9Sstevel@tonic-gate dt_idnode_t *inp; 22347c478bd9Sstevel@tonic-gate dt_node_t *dnp; 22357c478bd9Sstevel@tonic-gate 22367c478bd9Sstevel@tonic-gate if (dt_decl_type(ddp, &dtt) != 0) 22377c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 22387c478bd9Sstevel@tonic-gate 22397c478bd9Sstevel@tonic-gate if (dsp->ds_class != DT_DC_DEFAULT) { 22407c478bd9Sstevel@tonic-gate xyerror(D_DECL_BADCLASS, "specified storage class not " 22417c478bd9Sstevel@tonic-gate "appropriate for inline declaration\n"); 22427c478bd9Sstevel@tonic-gate } 22437c478bd9Sstevel@tonic-gate 22447c478bd9Sstevel@tonic-gate if (dsp->ds_ident == NULL) 22457c478bd9Sstevel@tonic-gate xyerror(D_DECL_USELESS, "inline declaration requires a name\n"); 22467c478bd9Sstevel@tonic-gate 22477c478bd9Sstevel@tonic-gate if ((idp = dt_idstack_lookup( 22487c478bd9Sstevel@tonic-gate &yypcb->pcb_globals, dsp->ds_ident)) != NULL) { 22497c478bd9Sstevel@tonic-gate xyerror(D_DECL_IDRED, "identifier redefined: %s\n\t current: " 22507c478bd9Sstevel@tonic-gate "inline definition\n\tprevious: %s %s\n", 22517c478bd9Sstevel@tonic-gate idp->di_name, dt_idkind_name(idp->di_kind), 22527c478bd9Sstevel@tonic-gate (idp->di_flags & DT_IDFLG_INLINE) ? "inline" : ""); 22537c478bd9Sstevel@tonic-gate } 22547c478bd9Sstevel@tonic-gate 22557c478bd9Sstevel@tonic-gate /* 22567c478bd9Sstevel@tonic-gate * If we are declaring an inlined array, verify that we have a tuple 22577c478bd9Sstevel@tonic-gate * signature, and then recompute 'dtt' as the array's value type. 22587c478bd9Sstevel@tonic-gate */ 22597c478bd9Sstevel@tonic-gate if (ddp->dd_kind == CTF_K_ARRAY) { 22607c478bd9Sstevel@tonic-gate if (ddp->dd_node == NULL) { 22617c478bd9Sstevel@tonic-gate xyerror(D_DECL_ARRNULL, "inline declaration requires " 22627c478bd9Sstevel@tonic-gate "array tuple signature: %s\n", dsp->ds_ident); 22637c478bd9Sstevel@tonic-gate } 22647c478bd9Sstevel@tonic-gate 22657c478bd9Sstevel@tonic-gate if (ddp->dd_node->dn_kind != DT_NODE_TYPE) { 22667c478bd9Sstevel@tonic-gate xyerror(D_DECL_ARRNULL, "inline declaration cannot be " 22677c478bd9Sstevel@tonic-gate "of scalar array type: %s\n", dsp->ds_ident); 22687c478bd9Sstevel@tonic-gate } 22697c478bd9Sstevel@tonic-gate 22707c478bd9Sstevel@tonic-gate if (dt_decl_type(ddp->dd_next, &dtt) != 0) 22717c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 22727c478bd9Sstevel@tonic-gate } 22737c478bd9Sstevel@tonic-gate 22747c478bd9Sstevel@tonic-gate /* 22757c478bd9Sstevel@tonic-gate * If the inline identifier is not defined, then create it with the 22767c478bd9Sstevel@tonic-gate * orphan flag set. We do not insert the identifier into dt_globals 22777c478bd9Sstevel@tonic-gate * until we have successfully cooked the right-hand expression, below. 22787c478bd9Sstevel@tonic-gate */ 22797c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_INLINE); 2280a386cc11SRobert Mustacchi dt_node_type_assign(dnp, dtt.dtt_ctfp, dtt.dtt_type, B_FALSE); 22817c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, _dtrace_defattr); 22827c478bd9Sstevel@tonic-gate 22837c478bd9Sstevel@tonic-gate if (dt_node_is_void(dnp)) { 22847c478bd9Sstevel@tonic-gate xyerror(D_DECL_VOIDOBJ, 22857c478bd9Sstevel@tonic-gate "cannot declare void inline: %s\n", dsp->ds_ident); 22867c478bd9Sstevel@tonic-gate } 22877c478bd9Sstevel@tonic-gate 22887c478bd9Sstevel@tonic-gate if (ctf_type_kind(dnp->dn_ctfp, ctf_type_resolve( 22897c478bd9Sstevel@tonic-gate dnp->dn_ctfp, dnp->dn_type)) == CTF_K_FORWARD) { 22907c478bd9Sstevel@tonic-gate xyerror(D_DECL_INCOMPLETE, 22917c478bd9Sstevel@tonic-gate "incomplete struct/union/enum %s: %s\n", 22927c478bd9Sstevel@tonic-gate dt_node_type_name(dnp, n, sizeof (n)), dsp->ds_ident); 22937c478bd9Sstevel@tonic-gate } 22947c478bd9Sstevel@tonic-gate 22957c478bd9Sstevel@tonic-gate if ((inp = malloc(sizeof (dt_idnode_t))) == NULL) 22967c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 22977c478bd9Sstevel@tonic-gate 22987c478bd9Sstevel@tonic-gate bzero(inp, sizeof (dt_idnode_t)); 22997c478bd9Sstevel@tonic-gate 23007c478bd9Sstevel@tonic-gate idp = dnp->dn_ident = dt_ident_create(dsp->ds_ident, 23017c478bd9Sstevel@tonic-gate ddp->dd_kind == CTF_K_ARRAY ? DT_IDENT_ARRAY : DT_IDENT_SCALAR, 23027c478bd9Sstevel@tonic-gate DT_IDFLG_INLINE | DT_IDFLG_REF | DT_IDFLG_DECL | DT_IDFLG_ORPHAN, 0, 23037c478bd9Sstevel@tonic-gate _dtrace_defattr, 0, &dt_idops_inline, inp, dtp->dt_gen); 23047c478bd9Sstevel@tonic-gate 23057c478bd9Sstevel@tonic-gate if (idp == NULL) { 23067c478bd9Sstevel@tonic-gate free(inp); 23077c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 23087c478bd9Sstevel@tonic-gate } 23097c478bd9Sstevel@tonic-gate 23107c478bd9Sstevel@tonic-gate /* 23117c478bd9Sstevel@tonic-gate * If we're inlining an associative array, create a private identifier 23127c478bd9Sstevel@tonic-gate * hash containing the named parameters and store it in inp->din_hash. 23137c478bd9Sstevel@tonic-gate * We then push this hash on to the top of the pcb_globals stack. 23147c478bd9Sstevel@tonic-gate */ 23157c478bd9Sstevel@tonic-gate if (ddp->dd_kind == CTF_K_ARRAY) { 23167c478bd9Sstevel@tonic-gate dt_idnode_t *pinp; 23177c478bd9Sstevel@tonic-gate dt_ident_t *pidp; 23187c478bd9Sstevel@tonic-gate dt_node_t *pnp; 23197c478bd9Sstevel@tonic-gate uint_t i = 0; 23207c478bd9Sstevel@tonic-gate 23217c478bd9Sstevel@tonic-gate for (pnp = ddp->dd_node; pnp != NULL; pnp = pnp->dn_list) 23227c478bd9Sstevel@tonic-gate i++; /* count up parameters for din_argv[] */ 23237c478bd9Sstevel@tonic-gate 23247c478bd9Sstevel@tonic-gate inp->din_hash = dt_idhash_create("inline args", NULL, 0, 0); 23257c478bd9Sstevel@tonic-gate inp->din_argv = calloc(i, sizeof (dt_ident_t *)); 23267c478bd9Sstevel@tonic-gate 23277c478bd9Sstevel@tonic-gate if (inp->din_hash == NULL || inp->din_argv == NULL) 23287c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 23297c478bd9Sstevel@tonic-gate 23307c478bd9Sstevel@tonic-gate /* 23317c478bd9Sstevel@tonic-gate * Create an identifier for each parameter as a scalar inline, 23327c478bd9Sstevel@tonic-gate * and store it in din_hash and in position in din_argv[]. The 23337c478bd9Sstevel@tonic-gate * parameter identifiers also use dt_idops_inline, but we leave 23347c478bd9Sstevel@tonic-gate * the dt_idnode_t argument 'pinp' zeroed. This will be filled 23357c478bd9Sstevel@tonic-gate * in by the code generation pass with references to the args. 23367c478bd9Sstevel@tonic-gate */ 23377c478bd9Sstevel@tonic-gate for (i = 0, pnp = ddp->dd_node; 23387c478bd9Sstevel@tonic-gate pnp != NULL; pnp = pnp->dn_list, i++) { 23397c478bd9Sstevel@tonic-gate 23407c478bd9Sstevel@tonic-gate if (pnp->dn_string == NULL) 23417c478bd9Sstevel@tonic-gate continue; /* ignore anonymous parameters */ 23427c478bd9Sstevel@tonic-gate 23437c478bd9Sstevel@tonic-gate if ((pinp = malloc(sizeof (dt_idnode_t))) == NULL) 23447c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 23457c478bd9Sstevel@tonic-gate 23467c478bd9Sstevel@tonic-gate pidp = dt_idhash_insert(inp->din_hash, pnp->dn_string, 23477c478bd9Sstevel@tonic-gate DT_IDENT_SCALAR, DT_IDFLG_DECL | DT_IDFLG_INLINE, 0, 23487c478bd9Sstevel@tonic-gate _dtrace_defattr, 0, &dt_idops_inline, 23497c478bd9Sstevel@tonic-gate pinp, dtp->dt_gen); 23507c478bd9Sstevel@tonic-gate 23517c478bd9Sstevel@tonic-gate if (pidp == NULL) { 23527c478bd9Sstevel@tonic-gate free(pinp); 23537c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 23547c478bd9Sstevel@tonic-gate } 23557c478bd9Sstevel@tonic-gate 23567c478bd9Sstevel@tonic-gate inp->din_argv[i] = pidp; 23577c478bd9Sstevel@tonic-gate bzero(pinp, sizeof (dt_idnode_t)); 23587c478bd9Sstevel@tonic-gate dt_ident_type_assign(pidp, pnp->dn_ctfp, pnp->dn_type); 23597c478bd9Sstevel@tonic-gate } 23607c478bd9Sstevel@tonic-gate 23617c478bd9Sstevel@tonic-gate dt_idstack_push(&yypcb->pcb_globals, inp->din_hash); 23627c478bd9Sstevel@tonic-gate } 23637c478bd9Sstevel@tonic-gate 23647c478bd9Sstevel@tonic-gate /* 23657c478bd9Sstevel@tonic-gate * Unlike most constructors, we need to explicitly cook the right-hand 23667c478bd9Sstevel@tonic-gate * side of the inline definition immediately to prevent recursion. If 23677c478bd9Sstevel@tonic-gate * the right-hand side uses the inline itself, the cook will fail. 23687c478bd9Sstevel@tonic-gate */ 23697c478bd9Sstevel@tonic-gate expr = dt_node_cook(expr, DT_IDFLG_REF); 23707c478bd9Sstevel@tonic-gate 23717c478bd9Sstevel@tonic-gate if (ddp->dd_kind == CTF_K_ARRAY) 23727c478bd9Sstevel@tonic-gate dt_idstack_pop(&yypcb->pcb_globals, inp->din_hash); 23737c478bd9Sstevel@tonic-gate 23747c478bd9Sstevel@tonic-gate /* 23757c478bd9Sstevel@tonic-gate * Set the type, attributes, and flags for the inline. If the right- 23767c478bd9Sstevel@tonic-gate * hand expression has an identifier, propagate its flags. Then cook 23777c478bd9Sstevel@tonic-gate * the identifier to fully initialize it: if we're declaring an inline 23787c478bd9Sstevel@tonic-gate * associative array this will construct a type signature from 'ddp'. 23797c478bd9Sstevel@tonic-gate */ 23807c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(expr)) 23817c478bd9Sstevel@tonic-gate rdp = dt_ident_resolve(expr->dn_ident); 23827c478bd9Sstevel@tonic-gate else if (expr->dn_kind == DT_NODE_VAR || expr->dn_kind == DT_NODE_SYM) 23837c478bd9Sstevel@tonic-gate rdp = expr->dn_ident; 23847c478bd9Sstevel@tonic-gate else 23857c478bd9Sstevel@tonic-gate rdp = NULL; 23867c478bd9Sstevel@tonic-gate 23877c478bd9Sstevel@tonic-gate if (rdp != NULL) { 23887c478bd9Sstevel@tonic-gate idp->di_flags |= (rdp->di_flags & 23897c478bd9Sstevel@tonic-gate (DT_IDFLG_WRITE | DT_IDFLG_USER | DT_IDFLG_PRIM)); 23907c478bd9Sstevel@tonic-gate } 23917c478bd9Sstevel@tonic-gate 23927c478bd9Sstevel@tonic-gate idp->di_attr = dt_attr_min(_dtrace_defattr, expr->dn_attr); 23937c478bd9Sstevel@tonic-gate dt_ident_type_assign(idp, dtt.dtt_ctfp, dtt.dtt_type); 23947c478bd9Sstevel@tonic-gate (void) dt_ident_cook(dnp, idp, &ddp->dd_node); 23957c478bd9Sstevel@tonic-gate 23967c478bd9Sstevel@tonic-gate /* 23977c478bd9Sstevel@tonic-gate * Store the parse tree nodes for 'expr' inside of idp->di_data ('inp') 23987c478bd9Sstevel@tonic-gate * so that they will be preserved with this identifier. Then pop the 23997c478bd9Sstevel@tonic-gate * inline declaration from the declaration stack and restore the lexer. 24007c478bd9Sstevel@tonic-gate */ 24017c478bd9Sstevel@tonic-gate inp->din_list = yypcb->pcb_list; 24027c478bd9Sstevel@tonic-gate inp->din_root = expr; 24037c478bd9Sstevel@tonic-gate 24047c478bd9Sstevel@tonic-gate dt_decl_free(dt_decl_pop()); 24057c478bd9Sstevel@tonic-gate yybegin(YYS_CLAUSE); 24067c478bd9Sstevel@tonic-gate 24077c478bd9Sstevel@tonic-gate /* 24087c478bd9Sstevel@tonic-gate * Finally, insert the inline identifier into dt_globals to make it 24097c478bd9Sstevel@tonic-gate * visible, and then cook 'dnp' to check its type against 'expr'. 24107c478bd9Sstevel@tonic-gate */ 24117c478bd9Sstevel@tonic-gate dt_idhash_xinsert(dtp->dt_globals, idp); 24127c478bd9Sstevel@tonic-gate return (dt_node_cook(dnp, DT_IDFLG_REF)); 24137c478bd9Sstevel@tonic-gate } 24147c478bd9Sstevel@tonic-gate 24157c478bd9Sstevel@tonic-gate dt_node_t * 24167c478bd9Sstevel@tonic-gate dt_node_member(dt_decl_t *ddp, char *name, dt_node_t *expr) 24177c478bd9Sstevel@tonic-gate { 24187c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 24197c478bd9Sstevel@tonic-gate dt_node_t *dnp; 24207c478bd9Sstevel@tonic-gate int err; 24217c478bd9Sstevel@tonic-gate 24227c478bd9Sstevel@tonic-gate if (ddp != NULL) { 24237c478bd9Sstevel@tonic-gate err = dt_decl_type(ddp, &dtt); 24247c478bd9Sstevel@tonic-gate dt_decl_free(ddp); 24257c478bd9Sstevel@tonic-gate 24267c478bd9Sstevel@tonic-gate if (err != 0) 24277c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 24287c478bd9Sstevel@tonic-gate } 24297c478bd9Sstevel@tonic-gate 24307c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_MEMBER); 24317c478bd9Sstevel@tonic-gate dnp->dn_membname = name; 24327c478bd9Sstevel@tonic-gate dnp->dn_membexpr = expr; 24337c478bd9Sstevel@tonic-gate 24347c478bd9Sstevel@tonic-gate if (ddp != NULL) 2435a386cc11SRobert Mustacchi dt_node_type_assign(dnp, dtt.dtt_ctfp, dtt.dtt_type, 2436a386cc11SRobert Mustacchi dtt.dtt_flags); 24377c478bd9Sstevel@tonic-gate 24387c478bd9Sstevel@tonic-gate return (dnp); 24397c478bd9Sstevel@tonic-gate } 24407c478bd9Sstevel@tonic-gate 24417c478bd9Sstevel@tonic-gate dt_node_t * 24427c478bd9Sstevel@tonic-gate dt_node_xlator(dt_decl_t *ddp, dt_decl_t *sdp, char *name, dt_node_t *members) 24437c478bd9Sstevel@tonic-gate { 24447c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 24457c478bd9Sstevel@tonic-gate dtrace_typeinfo_t src, dst; 24467c478bd9Sstevel@tonic-gate dt_node_t sn, dn; 24477c478bd9Sstevel@tonic-gate dt_xlator_t *dxp; 24487c478bd9Sstevel@tonic-gate dt_node_t *dnp; 24497c478bd9Sstevel@tonic-gate int edst, esrc; 24501a7c1b72Smws uint_t kind; 24517c478bd9Sstevel@tonic-gate 24527c478bd9Sstevel@tonic-gate char n1[DT_TYPE_NAMELEN]; 24537c478bd9Sstevel@tonic-gate char n2[DT_TYPE_NAMELEN]; 24547c478bd9Sstevel@tonic-gate 24557c478bd9Sstevel@tonic-gate edst = dt_decl_type(ddp, &dst); 24567c478bd9Sstevel@tonic-gate dt_decl_free(ddp); 24577c478bd9Sstevel@tonic-gate 24587c478bd9Sstevel@tonic-gate esrc = dt_decl_type(sdp, &src); 24597c478bd9Sstevel@tonic-gate dt_decl_free(sdp); 24607c478bd9Sstevel@tonic-gate 24617c478bd9Sstevel@tonic-gate if (edst != 0 || esrc != 0) { 24627c478bd9Sstevel@tonic-gate free(name); 24637c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 24647c478bd9Sstevel@tonic-gate } 24657c478bd9Sstevel@tonic-gate 24667c478bd9Sstevel@tonic-gate bzero(&sn, sizeof (sn)); 2467a386cc11SRobert Mustacchi dt_node_type_assign(&sn, src.dtt_ctfp, src.dtt_type, B_FALSE); 24687c478bd9Sstevel@tonic-gate 24697c478bd9Sstevel@tonic-gate bzero(&dn, sizeof (dn)); 2470a386cc11SRobert Mustacchi dt_node_type_assign(&dn, dst.dtt_ctfp, dst.dtt_type, B_FALSE); 24717c478bd9Sstevel@tonic-gate 24727c478bd9Sstevel@tonic-gate if (dt_xlator_lookup(dtp, &sn, &dn, DT_XLATE_EXACT) != NULL) { 24737c478bd9Sstevel@tonic-gate xyerror(D_XLATE_REDECL, 24747c478bd9Sstevel@tonic-gate "translator from %s to %s has already been declared\n", 24757c478bd9Sstevel@tonic-gate dt_node_type_name(&sn, n1, sizeof (n1)), 24767c478bd9Sstevel@tonic-gate dt_node_type_name(&dn, n2, sizeof (n2))); 24777c478bd9Sstevel@tonic-gate } 24787c478bd9Sstevel@tonic-gate 24791a7c1b72Smws kind = ctf_type_kind(dst.dtt_ctfp, 24801a7c1b72Smws ctf_type_resolve(dst.dtt_ctfp, dst.dtt_type)); 24811a7c1b72Smws 24821a7c1b72Smws if (kind == CTF_K_FORWARD) { 24831a7c1b72Smws xyerror(D_XLATE_SOU, "incomplete struct/union/enum %s\n", 24841a7c1b72Smws dt_type_name(dst.dtt_ctfp, dst.dtt_type, n1, sizeof (n1))); 24851a7c1b72Smws } 24861a7c1b72Smws 24871a7c1b72Smws if (kind != CTF_K_STRUCT && kind != CTF_K_UNION) { 24881a7c1b72Smws xyerror(D_XLATE_SOU, 24891a7c1b72Smws "translator output type must be a struct or union\n"); 24901a7c1b72Smws } 24911a7c1b72Smws 24927c478bd9Sstevel@tonic-gate dxp = dt_xlator_create(dtp, &src, &dst, name, members, yypcb->pcb_list); 24937c478bd9Sstevel@tonic-gate yybegin(YYS_CLAUSE); 24947c478bd9Sstevel@tonic-gate free(name); 24957c478bd9Sstevel@tonic-gate 24967c478bd9Sstevel@tonic-gate if (dxp == NULL) 24977c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 24987c478bd9Sstevel@tonic-gate 24997c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_XLATOR); 25007c478bd9Sstevel@tonic-gate dnp->dn_xlator = dxp; 25017c478bd9Sstevel@tonic-gate dnp->dn_members = members; 25027c478bd9Sstevel@tonic-gate 25037c478bd9Sstevel@tonic-gate return (dt_node_cook(dnp, DT_IDFLG_REF)); 25047c478bd9Sstevel@tonic-gate } 25057c478bd9Sstevel@tonic-gate 25067c478bd9Sstevel@tonic-gate dt_node_t * 25071a7c1b72Smws dt_node_probe(char *s, int protoc, dt_node_t *nargs, dt_node_t *xargs) 25087c478bd9Sstevel@tonic-gate { 25097c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 25107c478bd9Sstevel@tonic-gate int nargc, xargc; 25117c478bd9Sstevel@tonic-gate dt_node_t *dnp; 25127c478bd9Sstevel@tonic-gate 25137c478bd9Sstevel@tonic-gate size_t len = strlen(s) + 3; /* +3 for :: and \0 */ 25147c478bd9Sstevel@tonic-gate char *name = alloca(len); 25157c478bd9Sstevel@tonic-gate 25167c478bd9Sstevel@tonic-gate (void) snprintf(name, len, "::%s", s); 25177c478bd9Sstevel@tonic-gate (void) strhyphenate(name); 25187c478bd9Sstevel@tonic-gate free(s); 25197c478bd9Sstevel@tonic-gate 25207c478bd9Sstevel@tonic-gate if (strchr(name, '`') != NULL) { 25217c478bd9Sstevel@tonic-gate xyerror(D_PROV_BADNAME, "probe name may not " 25227c478bd9Sstevel@tonic-gate "contain scoping operator: %s\n", name); 25237c478bd9Sstevel@tonic-gate } 25247c478bd9Sstevel@tonic-gate 25257c478bd9Sstevel@tonic-gate if (strlen(name) - 2 >= DTRACE_NAMELEN) { 25267c478bd9Sstevel@tonic-gate xyerror(D_PROV_BADNAME, "probe name may not exceed %d " 25277c478bd9Sstevel@tonic-gate "characters: %s\n", DTRACE_NAMELEN - 1, name); 25287c478bd9Sstevel@tonic-gate } 25297c478bd9Sstevel@tonic-gate 25307c478bd9Sstevel@tonic-gate dnp = dt_node_alloc(DT_NODE_PROBE); 25317c478bd9Sstevel@tonic-gate 25327c478bd9Sstevel@tonic-gate dnp->dn_ident = dt_ident_create(name, DT_IDENT_PROBE, 25337c478bd9Sstevel@tonic-gate DT_IDFLG_ORPHAN, DTRACE_IDNONE, _dtrace_defattr, 0, 25347c478bd9Sstevel@tonic-gate &dt_idops_probe, NULL, dtp->dt_gen); 25357c478bd9Sstevel@tonic-gate 25367c478bd9Sstevel@tonic-gate nargc = dt_decl_prototype(nargs, nargs, 25377c478bd9Sstevel@tonic-gate "probe input", DT_DP_VOID | DT_DP_ANON); 25387c478bd9Sstevel@tonic-gate 25397c478bd9Sstevel@tonic-gate xargc = dt_decl_prototype(xargs, nargs, 25407c478bd9Sstevel@tonic-gate "probe output", DT_DP_VOID); 25417c478bd9Sstevel@tonic-gate 25427c478bd9Sstevel@tonic-gate if (nargc > UINT8_MAX) { 25437c478bd9Sstevel@tonic-gate xyerror(D_PROV_PRARGLEN, "probe %s input prototype exceeds %u " 25447c478bd9Sstevel@tonic-gate "parameters: %d params used\n", name, UINT8_MAX, nargc); 25457c478bd9Sstevel@tonic-gate } 25467c478bd9Sstevel@tonic-gate 25477c478bd9Sstevel@tonic-gate if (xargc > UINT8_MAX) { 25487c478bd9Sstevel@tonic-gate xyerror(D_PROV_PRARGLEN, "probe %s output prototype exceeds %u " 25497c478bd9Sstevel@tonic-gate "parameters: %d params used\n", name, UINT8_MAX, xargc); 25507c478bd9Sstevel@tonic-gate } 25517c478bd9Sstevel@tonic-gate 25527c478bd9Sstevel@tonic-gate if (dnp->dn_ident == NULL || dt_probe_create(dtp, 25531a7c1b72Smws dnp->dn_ident, protoc, nargs, nargc, xargs, xargc) == NULL) 25547c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 25557c478bd9Sstevel@tonic-gate 25567c478bd9Sstevel@tonic-gate return (dnp); 25577c478bd9Sstevel@tonic-gate } 25587c478bd9Sstevel@tonic-gate 25597c478bd9Sstevel@tonic-gate dt_node_t * 25607c478bd9Sstevel@tonic-gate dt_node_provider(char *name, dt_node_t *probes) 25617c478bd9Sstevel@tonic-gate { 25627c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 25637c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_node_alloc(DT_NODE_PROVIDER); 25641a7c1b72Smws dt_node_t *lnp; 2565900524f3Sahl size_t len; 25667c478bd9Sstevel@tonic-gate 25677c478bd9Sstevel@tonic-gate dnp->dn_provname = name; 25687c478bd9Sstevel@tonic-gate dnp->dn_probes = probes; 25697c478bd9Sstevel@tonic-gate 25707c478bd9Sstevel@tonic-gate if (strchr(name, '`') != NULL) { 25717c478bd9Sstevel@tonic-gate dnerror(dnp, D_PROV_BADNAME, "provider name may not " 25727c478bd9Sstevel@tonic-gate "contain scoping operator: %s\n", name); 25737c478bd9Sstevel@tonic-gate } 25747c478bd9Sstevel@tonic-gate 2575900524f3Sahl if ((len = strlen(name)) >= DTRACE_PROVNAMELEN) { 25767c478bd9Sstevel@tonic-gate dnerror(dnp, D_PROV_BADNAME, "provider name may not exceed %d " 25777c478bd9Sstevel@tonic-gate "characters: %s\n", DTRACE_PROVNAMELEN - 1, name); 25787c478bd9Sstevel@tonic-gate } 25797c478bd9Sstevel@tonic-gate 2580900524f3Sahl if (isdigit(name[len - 1])) { 2581900524f3Sahl dnerror(dnp, D_PROV_BADNAME, "provider name may not " 2582900524f3Sahl "end with a digit: %s\n", name); 2583900524f3Sahl } 2584900524f3Sahl 25857c478bd9Sstevel@tonic-gate /* 25867c478bd9Sstevel@tonic-gate * Check to see if the provider is already defined or visible through 25877c478bd9Sstevel@tonic-gate * dtrace(7D). If so, set dn_provred to treat it as a re-declaration. 25887c478bd9Sstevel@tonic-gate * If not, create a new provider and set its interface-only flag. This 25897c478bd9Sstevel@tonic-gate * flag may be cleared later by calls made to dt_probe_declare(). 25907c478bd9Sstevel@tonic-gate */ 25917c478bd9Sstevel@tonic-gate if ((dnp->dn_provider = dt_provider_lookup(dtp, name)) != NULL) 25927c478bd9Sstevel@tonic-gate dnp->dn_provred = B_TRUE; 25937c478bd9Sstevel@tonic-gate else if ((dnp->dn_provider = dt_provider_create(dtp, name)) == NULL) 25947c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 25957c478bd9Sstevel@tonic-gate else 25967c478bd9Sstevel@tonic-gate dnp->dn_provider->pv_flags |= DT_PROVIDER_INTF; 25977c478bd9Sstevel@tonic-gate 25987c478bd9Sstevel@tonic-gate /* 25991a7c1b72Smws * Store all parse nodes created since we consumed the DT_KEY_PROVIDER 26007c478bd9Sstevel@tonic-gate * token with the provider and then restore our lexing state to CLAUSE. 26011a7c1b72Smws * Note that if dnp->dn_provred is true, we may end up storing dups of 26021a7c1b72Smws * a provider's interface and implementation: we eat this space because 26031a7c1b72Smws * the implementation will likely need to redeclare probe members, and 26041a7c1b72Smws * therefore may result in those member nodes becoming persistent. 26057c478bd9Sstevel@tonic-gate */ 26061a7c1b72Smws for (lnp = yypcb->pcb_list; lnp->dn_link != NULL; lnp = lnp->dn_link) 26071a7c1b72Smws continue; /* skip to end of allocation list */ 26081a7c1b72Smws 26091a7c1b72Smws lnp->dn_link = dnp->dn_provider->pv_nodes; 26107c478bd9Sstevel@tonic-gate dnp->dn_provider->pv_nodes = yypcb->pcb_list; 26117c478bd9Sstevel@tonic-gate 26127c478bd9Sstevel@tonic-gate yybegin(YYS_CLAUSE); 26137c478bd9Sstevel@tonic-gate return (dnp); 26147c478bd9Sstevel@tonic-gate } 26157c478bd9Sstevel@tonic-gate 26167c478bd9Sstevel@tonic-gate dt_node_t * 26177c478bd9Sstevel@tonic-gate dt_node_program(dt_node_t *lnp) 26187c478bd9Sstevel@tonic-gate { 26197c478bd9Sstevel@tonic-gate dt_node_t *dnp = dt_node_alloc(DT_NODE_PROG); 26207c478bd9Sstevel@tonic-gate dnp->dn_list = lnp; 26217c478bd9Sstevel@tonic-gate return (dnp); 26227c478bd9Sstevel@tonic-gate } 26237c478bd9Sstevel@tonic-gate 26247c478bd9Sstevel@tonic-gate /* 26257c478bd9Sstevel@tonic-gate * This function provides the underlying implementation of cooking an 26267c478bd9Sstevel@tonic-gate * identifier given its node, a hash of dynamic identifiers, an identifier 26277c478bd9Sstevel@tonic-gate * kind, and a boolean flag indicating whether we are allowed to instantiate 26287c478bd9Sstevel@tonic-gate * a new identifier if the string is not found. This function is either 26297c478bd9Sstevel@tonic-gate * called from dt_cook_ident(), below, or directly by the various cooking 26307c478bd9Sstevel@tonic-gate * routines that are allowed to instantiate identifiers (e.g. op2 TOK_ASGN). 26317c478bd9Sstevel@tonic-gate */ 26327c478bd9Sstevel@tonic-gate static void 26337c478bd9Sstevel@tonic-gate dt_xcook_ident(dt_node_t *dnp, dt_idhash_t *dhp, uint_t idkind, int create) 26347c478bd9Sstevel@tonic-gate { 26357c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 26367c478bd9Sstevel@tonic-gate const char *sname = dt_idhash_name(dhp); 26377c478bd9Sstevel@tonic-gate int uref = 0; 26387c478bd9Sstevel@tonic-gate 26397c478bd9Sstevel@tonic-gate dtrace_attribute_t attr = _dtrace_defattr; 26407c478bd9Sstevel@tonic-gate dt_ident_t *idp; 26417c478bd9Sstevel@tonic-gate dtrace_syminfo_t dts; 26427c478bd9Sstevel@tonic-gate GElf_Sym sym; 26437c478bd9Sstevel@tonic-gate 26447c478bd9Sstevel@tonic-gate const char *scope, *mark; 26457c478bd9Sstevel@tonic-gate uchar_t dnkind; 26467c478bd9Sstevel@tonic-gate char *name; 26477c478bd9Sstevel@tonic-gate 26487c478bd9Sstevel@tonic-gate /* 26497c478bd9Sstevel@tonic-gate * Look for scoping marks in the identifier. If one is found, set our 26507c478bd9Sstevel@tonic-gate * scope to either DTRACE_OBJ_KMODS or UMODS or to the first part of 26517c478bd9Sstevel@tonic-gate * the string that specifies the scope using an explicit module name. 26527c478bd9Sstevel@tonic-gate * If two marks in a row are found, set 'uref' (user symbol reference). 26537c478bd9Sstevel@tonic-gate * Otherwise we set scope to DTRACE_OBJ_EXEC, indicating that normal 26547c478bd9Sstevel@tonic-gate * scope is desired and we should search the specified idhash. 26557c478bd9Sstevel@tonic-gate */ 26567c478bd9Sstevel@tonic-gate if ((name = strrchr(dnp->dn_string, '`')) != NULL) { 26577c478bd9Sstevel@tonic-gate if (name > dnp->dn_string && name[-1] == '`') { 26587c478bd9Sstevel@tonic-gate uref++; 26597c478bd9Sstevel@tonic-gate name[-1] = '\0'; 26607c478bd9Sstevel@tonic-gate } 26617c478bd9Sstevel@tonic-gate 26627c478bd9Sstevel@tonic-gate if (name == dnp->dn_string + uref) 26637c478bd9Sstevel@tonic-gate scope = uref ? DTRACE_OBJ_UMODS : DTRACE_OBJ_KMODS; 26647c478bd9Sstevel@tonic-gate else 26657c478bd9Sstevel@tonic-gate scope = dnp->dn_string; 26667c478bd9Sstevel@tonic-gate 26677c478bd9Sstevel@tonic-gate *name++ = '\0'; /* leave name pointing after scoping mark */ 26687c478bd9Sstevel@tonic-gate dnkind = DT_NODE_VAR; 26697c478bd9Sstevel@tonic-gate 26707c478bd9Sstevel@tonic-gate } else if (idkind == DT_IDENT_AGG) { 26717c478bd9Sstevel@tonic-gate scope = DTRACE_OBJ_EXEC; 26727c478bd9Sstevel@tonic-gate name = dnp->dn_string + 1; 26737c478bd9Sstevel@tonic-gate dnkind = DT_NODE_AGG; 26747c478bd9Sstevel@tonic-gate } else { 26757c478bd9Sstevel@tonic-gate scope = DTRACE_OBJ_EXEC; 26767c478bd9Sstevel@tonic-gate name = dnp->dn_string; 26777c478bd9Sstevel@tonic-gate dnkind = DT_NODE_VAR; 26787c478bd9Sstevel@tonic-gate } 26797c478bd9Sstevel@tonic-gate 26807c478bd9Sstevel@tonic-gate /* 26817c478bd9Sstevel@tonic-gate * If create is set to false, and we fail our idhash lookup, preset 26827c478bd9Sstevel@tonic-gate * the errno code to EDT_NOVAR for our final error message below. 26837c478bd9Sstevel@tonic-gate * If we end up calling dtrace_lookup_by_name(), it will reset the 26847c478bd9Sstevel@tonic-gate * errno appropriately and that error will be reported instead. 26857c478bd9Sstevel@tonic-gate */ 26867c478bd9Sstevel@tonic-gate (void) dt_set_errno(dtp, EDT_NOVAR); 26877c478bd9Sstevel@tonic-gate mark = uref ? "``" : "`"; 26887c478bd9Sstevel@tonic-gate 26897c478bd9Sstevel@tonic-gate if (scope == DTRACE_OBJ_EXEC && ( 26907c478bd9Sstevel@tonic-gate (dhp != dtp->dt_globals && 26917c478bd9Sstevel@tonic-gate (idp = dt_idhash_lookup(dhp, name)) != NULL) || 26927c478bd9Sstevel@tonic-gate (dhp == dtp->dt_globals && 26937c478bd9Sstevel@tonic-gate (idp = dt_idstack_lookup(&yypcb->pcb_globals, name)) != NULL))) { 26947c478bd9Sstevel@tonic-gate /* 26957c478bd9Sstevel@tonic-gate * Check that we are referencing the ident in the manner that 26967c478bd9Sstevel@tonic-gate * matches its type if this is a global lookup. In the TLS or 26977c478bd9Sstevel@tonic-gate * local case, we don't know how the ident will be used until 26987c478bd9Sstevel@tonic-gate * the time operator -> is seen; more parsing is needed. 26997c478bd9Sstevel@tonic-gate */ 27007c478bd9Sstevel@tonic-gate if (idp->di_kind != idkind && dhp == dtp->dt_globals) { 27017c478bd9Sstevel@tonic-gate xyerror(D_IDENT_BADREF, "%s '%s' may not be referenced " 27027c478bd9Sstevel@tonic-gate "as %s\n", dt_idkind_name(idp->di_kind), 27037c478bd9Sstevel@tonic-gate idp->di_name, dt_idkind_name(idkind)); 27047c478bd9Sstevel@tonic-gate } 27057c478bd9Sstevel@tonic-gate 27067c478bd9Sstevel@tonic-gate /* 27077c478bd9Sstevel@tonic-gate * Arrays and aggregations are not cooked individually. They 27087c478bd9Sstevel@tonic-gate * have dynamic types and must be referenced using operator []. 27097c478bd9Sstevel@tonic-gate * This is handled explicitly by the code for DT_TOK_LBRAC. 27107c478bd9Sstevel@tonic-gate */ 27117c478bd9Sstevel@tonic-gate if (idp->di_kind != DT_IDENT_ARRAY && 27127c478bd9Sstevel@tonic-gate idp->di_kind != DT_IDENT_AGG) 27137c478bd9Sstevel@tonic-gate attr = dt_ident_cook(dnp, idp, NULL); 27147c478bd9Sstevel@tonic-gate else { 27157c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 2716a386cc11SRobert Mustacchi DT_DYN_CTFP(dtp), DT_DYN_TYPE(dtp), B_FALSE); 27177c478bd9Sstevel@tonic-gate attr = idp->di_attr; 27187c478bd9Sstevel@tonic-gate } 27197c478bd9Sstevel@tonic-gate 27207c478bd9Sstevel@tonic-gate free(dnp->dn_string); 27217c478bd9Sstevel@tonic-gate dnp->dn_string = NULL; 27227c478bd9Sstevel@tonic-gate dnp->dn_kind = dnkind; 27237c478bd9Sstevel@tonic-gate dnp->dn_ident = idp; 27247c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_LVALUE; 27257c478bd9Sstevel@tonic-gate 27267c478bd9Sstevel@tonic-gate if (idp->di_flags & DT_IDFLG_WRITE) 27277c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_WRITABLE; 27287c478bd9Sstevel@tonic-gate 27297c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, attr); 27307c478bd9Sstevel@tonic-gate 27317c478bd9Sstevel@tonic-gate } else if (dhp == dtp->dt_globals && scope != DTRACE_OBJ_EXEC && 27327c478bd9Sstevel@tonic-gate dtrace_lookup_by_name(dtp, scope, name, &sym, &dts) == 0) { 27337c478bd9Sstevel@tonic-gate 27347c478bd9Sstevel@tonic-gate dt_module_t *mp = dt_module_lookup_by_name(dtp, dts.dts_object); 27357c478bd9Sstevel@tonic-gate int umod = (mp->dm_flags & DT_DM_KERNEL) == 0; 27367c478bd9Sstevel@tonic-gate static const char *const kunames[] = { "kernel", "user" }; 27377c478bd9Sstevel@tonic-gate 27387c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 27397c478bd9Sstevel@tonic-gate dtrace_syminfo_t *sip; 27407c478bd9Sstevel@tonic-gate 27417c478bd9Sstevel@tonic-gate if (uref ^ umod) { 27427c478bd9Sstevel@tonic-gate xyerror(D_SYM_BADREF, "%s module '%s' symbol '%s' may " 27437c478bd9Sstevel@tonic-gate "not be referenced as a %s symbol\n", kunames[umod], 27447c478bd9Sstevel@tonic-gate dts.dts_object, dts.dts_name, kunames[uref]); 27457c478bd9Sstevel@tonic-gate } 27467c478bd9Sstevel@tonic-gate 27477c478bd9Sstevel@tonic-gate if (dtrace_symbol_type(dtp, &sym, &dts, &dtt) != 0) { 27487c478bd9Sstevel@tonic-gate /* 27497c478bd9Sstevel@tonic-gate * For now, we special-case EDT_DATAMODEL to clarify 27507c478bd9Sstevel@tonic-gate * that mixed data models are not currently supported. 27517c478bd9Sstevel@tonic-gate */ 27527c478bd9Sstevel@tonic-gate if (dtp->dt_errno == EDT_DATAMODEL) { 27537c478bd9Sstevel@tonic-gate xyerror(D_SYM_MODEL, "cannot use %s symbol " 27547c478bd9Sstevel@tonic-gate "%s%s%s in a %s D program\n", 27557c478bd9Sstevel@tonic-gate dt_module_modelname(mp), 27567c478bd9Sstevel@tonic-gate dts.dts_object, mark, dts.dts_name, 27577c478bd9Sstevel@tonic-gate dt_module_modelname(dtp->dt_ddefs)); 27587c478bd9Sstevel@tonic-gate } 27597c478bd9Sstevel@tonic-gate 27607c478bd9Sstevel@tonic-gate xyerror(D_SYM_NOTYPES, 27617c478bd9Sstevel@tonic-gate "no symbolic type information is available for " 27627c478bd9Sstevel@tonic-gate "%s%s%s: %s\n", dts.dts_object, mark, dts.dts_name, 27637c478bd9Sstevel@tonic-gate dtrace_errmsg(dtp, dtrace_errno(dtp))); 27647c478bd9Sstevel@tonic-gate } 27657c478bd9Sstevel@tonic-gate 27667c478bd9Sstevel@tonic-gate idp = dt_ident_create(name, DT_IDENT_SYMBOL, 0, 0, 27677c478bd9Sstevel@tonic-gate _dtrace_symattr, 0, &dt_idops_thaw, NULL, dtp->dt_gen); 27687c478bd9Sstevel@tonic-gate 27697c478bd9Sstevel@tonic-gate if (idp == NULL) 27707c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 27717c478bd9Sstevel@tonic-gate 27727c478bd9Sstevel@tonic-gate if (mp->dm_flags & DT_DM_PRIMARY) 27737c478bd9Sstevel@tonic-gate idp->di_flags |= DT_IDFLG_PRIM; 27747c478bd9Sstevel@tonic-gate 27757c478bd9Sstevel@tonic-gate idp->di_next = dtp->dt_externs; 27767c478bd9Sstevel@tonic-gate dtp->dt_externs = idp; 27777c478bd9Sstevel@tonic-gate 27787c478bd9Sstevel@tonic-gate if ((sip = malloc(sizeof (dtrace_syminfo_t))) == NULL) 27797c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 27807c478bd9Sstevel@tonic-gate 27817c478bd9Sstevel@tonic-gate bcopy(&dts, sip, sizeof (dtrace_syminfo_t)); 27827c478bd9Sstevel@tonic-gate idp->di_data = sip; 27837c478bd9Sstevel@tonic-gate idp->di_ctfp = dtt.dtt_ctfp; 27847c478bd9Sstevel@tonic-gate idp->di_type = dtt.dtt_type; 27857c478bd9Sstevel@tonic-gate 27867c478bd9Sstevel@tonic-gate free(dnp->dn_string); 27877c478bd9Sstevel@tonic-gate dnp->dn_string = NULL; 27887c478bd9Sstevel@tonic-gate dnp->dn_kind = DT_NODE_SYM; 27897c478bd9Sstevel@tonic-gate dnp->dn_ident = idp; 27907c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_LVALUE; 27917c478bd9Sstevel@tonic-gate 2792a386cc11SRobert Mustacchi dt_node_type_assign(dnp, dtt.dtt_ctfp, dtt.dtt_type, 2793a386cc11SRobert Mustacchi dtt.dtt_flags); 27947c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, _dtrace_symattr); 27957c478bd9Sstevel@tonic-gate 27967c478bd9Sstevel@tonic-gate if (uref) { 27977c478bd9Sstevel@tonic-gate idp->di_flags |= DT_IDFLG_USER; 27987c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_USERLAND; 27997c478bd9Sstevel@tonic-gate } 28007c478bd9Sstevel@tonic-gate 28017c478bd9Sstevel@tonic-gate } else if (scope == DTRACE_OBJ_EXEC && create == B_TRUE) { 28027c478bd9Sstevel@tonic-gate uint_t flags = DT_IDFLG_WRITE; 28037c478bd9Sstevel@tonic-gate uint_t id; 28047c478bd9Sstevel@tonic-gate 28057c478bd9Sstevel@tonic-gate if (dt_idhash_nextid(dhp, &id) == -1) { 28067c478bd9Sstevel@tonic-gate xyerror(D_ID_OFLOW, "cannot create %s: limit on number " 28077c478bd9Sstevel@tonic-gate "of %s variables exceeded\n", name, sname); 28087c478bd9Sstevel@tonic-gate } 28097c478bd9Sstevel@tonic-gate 28107c478bd9Sstevel@tonic-gate if (dhp == yypcb->pcb_locals) 28117c478bd9Sstevel@tonic-gate flags |= DT_IDFLG_LOCAL; 28127c478bd9Sstevel@tonic-gate else if (dhp == dtp->dt_tls) 28137c478bd9Sstevel@tonic-gate flags |= DT_IDFLG_TLS; 28147c478bd9Sstevel@tonic-gate 28157c478bd9Sstevel@tonic-gate dt_dprintf("create %s %s variable %s, id=%u\n", 28167c478bd9Sstevel@tonic-gate sname, dt_idkind_name(idkind), name, id); 28177c478bd9Sstevel@tonic-gate 28187c478bd9Sstevel@tonic-gate if (idkind == DT_IDENT_ARRAY || idkind == DT_IDENT_AGG) { 28197c478bd9Sstevel@tonic-gate idp = dt_idhash_insert(dhp, name, 28207c478bd9Sstevel@tonic-gate idkind, flags, id, _dtrace_defattr, 0, 28217c478bd9Sstevel@tonic-gate &dt_idops_assc, NULL, dtp->dt_gen); 28227c478bd9Sstevel@tonic-gate } else { 28237c478bd9Sstevel@tonic-gate idp = dt_idhash_insert(dhp, name, 28247c478bd9Sstevel@tonic-gate idkind, flags, id, _dtrace_defattr, 0, 28257c478bd9Sstevel@tonic-gate &dt_idops_thaw, NULL, dtp->dt_gen); 28267c478bd9Sstevel@tonic-gate } 28277c478bd9Sstevel@tonic-gate 28287c478bd9Sstevel@tonic-gate if (idp == NULL) 28297c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 28307c478bd9Sstevel@tonic-gate 28317c478bd9Sstevel@tonic-gate /* 28327c478bd9Sstevel@tonic-gate * Arrays and aggregations are not cooked individually. They 28337c478bd9Sstevel@tonic-gate * have dynamic types and must be referenced using operator []. 28347c478bd9Sstevel@tonic-gate * This is handled explicitly by the code for DT_TOK_LBRAC. 28357c478bd9Sstevel@tonic-gate */ 28367c478bd9Sstevel@tonic-gate if (idp->di_kind != DT_IDENT_ARRAY && 28377c478bd9Sstevel@tonic-gate idp->di_kind != DT_IDENT_AGG) 28387c478bd9Sstevel@tonic-gate attr = dt_ident_cook(dnp, idp, NULL); 28397c478bd9Sstevel@tonic-gate else { 28407c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 2841a386cc11SRobert Mustacchi DT_DYN_CTFP(dtp), DT_DYN_TYPE(dtp), B_FALSE); 28427c478bd9Sstevel@tonic-gate attr = idp->di_attr; 28437c478bd9Sstevel@tonic-gate } 28447c478bd9Sstevel@tonic-gate 28457c478bd9Sstevel@tonic-gate free(dnp->dn_string); 28467c478bd9Sstevel@tonic-gate dnp->dn_string = NULL; 28477c478bd9Sstevel@tonic-gate dnp->dn_kind = dnkind; 28487c478bd9Sstevel@tonic-gate dnp->dn_ident = idp; 28497c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_LVALUE | DT_NF_WRITABLE; 28507c478bd9Sstevel@tonic-gate 28517c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, attr); 28527c478bd9Sstevel@tonic-gate 28537c478bd9Sstevel@tonic-gate } else if (scope != DTRACE_OBJ_EXEC) { 28547c478bd9Sstevel@tonic-gate xyerror(D_IDENT_UNDEF, "failed to resolve %s%s%s: %s\n", 28557c478bd9Sstevel@tonic-gate dnp->dn_string, mark, name, 28567c478bd9Sstevel@tonic-gate dtrace_errmsg(dtp, dtrace_errno(dtp))); 28577c478bd9Sstevel@tonic-gate } else { 28587c478bd9Sstevel@tonic-gate xyerror(D_IDENT_UNDEF, "failed to resolve %s: %s\n", 28597c478bd9Sstevel@tonic-gate dnp->dn_string, dtrace_errmsg(dtp, dtrace_errno(dtp))); 28607c478bd9Sstevel@tonic-gate } 28617c478bd9Sstevel@tonic-gate } 28627c478bd9Sstevel@tonic-gate 28637c478bd9Sstevel@tonic-gate static dt_node_t * 28647c478bd9Sstevel@tonic-gate dt_cook_ident(dt_node_t *dnp, uint_t idflags) 28657c478bd9Sstevel@tonic-gate { 28667c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 28677c478bd9Sstevel@tonic-gate 28687c478bd9Sstevel@tonic-gate if (dnp->dn_op == DT_TOK_AGG) 28697c478bd9Sstevel@tonic-gate dt_xcook_ident(dnp, dtp->dt_aggs, DT_IDENT_AGG, B_FALSE); 28707c478bd9Sstevel@tonic-gate else 28717c478bd9Sstevel@tonic-gate dt_xcook_ident(dnp, dtp->dt_globals, DT_IDENT_SCALAR, B_FALSE); 28727c478bd9Sstevel@tonic-gate 28737c478bd9Sstevel@tonic-gate return (dt_node_cook(dnp, idflags)); 28747c478bd9Sstevel@tonic-gate } 28757c478bd9Sstevel@tonic-gate 28767c478bd9Sstevel@tonic-gate /* 28777c478bd9Sstevel@tonic-gate * Since operators [ and -> can instantiate new variables before we know 28787c478bd9Sstevel@tonic-gate * whether the reference is for a read or a write, we need to check read 28797c478bd9Sstevel@tonic-gate * references to determine if the identifier is currently dt_ident_unref(). 28807c478bd9Sstevel@tonic-gate * If so, we report that this first access was to an undefined variable. 28817c478bd9Sstevel@tonic-gate */ 28827c478bd9Sstevel@tonic-gate static dt_node_t * 28837c478bd9Sstevel@tonic-gate dt_cook_var(dt_node_t *dnp, uint_t idflags) 28847c478bd9Sstevel@tonic-gate { 28857c478bd9Sstevel@tonic-gate dt_ident_t *idp = dnp->dn_ident; 28867c478bd9Sstevel@tonic-gate 28877c478bd9Sstevel@tonic-gate if ((idflags & DT_IDFLG_REF) && dt_ident_unref(idp)) { 28887c478bd9Sstevel@tonic-gate dnerror(dnp, D_VAR_UNDEF, 28897c478bd9Sstevel@tonic-gate "%s%s has not yet been declared or assigned\n", 28907c478bd9Sstevel@tonic-gate (idp->di_flags & DT_IDFLG_LOCAL) ? "this->" : 28917c478bd9Sstevel@tonic-gate (idp->di_flags & DT_IDFLG_TLS) ? "self->" : "", 28927c478bd9Sstevel@tonic-gate idp->di_name); 28937c478bd9Sstevel@tonic-gate } 28947c478bd9Sstevel@tonic-gate 28957c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_ident_cook(dnp, idp, &dnp->dn_args)); 28967c478bd9Sstevel@tonic-gate return (dnp); 28977c478bd9Sstevel@tonic-gate } 28987c478bd9Sstevel@tonic-gate 28997c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 29007c478bd9Sstevel@tonic-gate static dt_node_t * 29017c478bd9Sstevel@tonic-gate dt_cook_func(dt_node_t *dnp, uint_t idflags) 29027c478bd9Sstevel@tonic-gate { 29037c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, 29047c478bd9Sstevel@tonic-gate dt_ident_cook(dnp, dnp->dn_ident, &dnp->dn_args)); 29057c478bd9Sstevel@tonic-gate 29067c478bd9Sstevel@tonic-gate return (dnp); 29077c478bd9Sstevel@tonic-gate } 29087c478bd9Sstevel@tonic-gate 29097c478bd9Sstevel@tonic-gate static dt_node_t * 29107c478bd9Sstevel@tonic-gate dt_cook_op1(dt_node_t *dnp, uint_t idflags) 29117c478bd9Sstevel@tonic-gate { 29127c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 29137c478bd9Sstevel@tonic-gate dt_node_t *cp = dnp->dn_child; 29147c478bd9Sstevel@tonic-gate 29157c478bd9Sstevel@tonic-gate char n[DT_TYPE_NAMELEN]; 29167c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 29177c478bd9Sstevel@tonic-gate dt_ident_t *idp; 29187c478bd9Sstevel@tonic-gate 29197c478bd9Sstevel@tonic-gate ctf_encoding_t e; 29207c478bd9Sstevel@tonic-gate ctf_arinfo_t r; 29217c478bd9Sstevel@tonic-gate ctf_id_t type, base; 29227c478bd9Sstevel@tonic-gate uint_t kind; 29237c478bd9Sstevel@tonic-gate 29247c478bd9Sstevel@tonic-gate if (dnp->dn_op == DT_TOK_PREINC || dnp->dn_op == DT_TOK_POSTINC || 29257c478bd9Sstevel@tonic-gate dnp->dn_op == DT_TOK_PREDEC || dnp->dn_op == DT_TOK_POSTDEC) 29267c478bd9Sstevel@tonic-gate idflags = DT_IDFLG_REF | DT_IDFLG_MOD; 29277c478bd9Sstevel@tonic-gate else 29287c478bd9Sstevel@tonic-gate idflags = DT_IDFLG_REF; 29297c478bd9Sstevel@tonic-gate 29307c478bd9Sstevel@tonic-gate /* 29317c478bd9Sstevel@tonic-gate * We allow the unary ++ and -- operators to instantiate new scalar 29327c478bd9Sstevel@tonic-gate * variables if applied to an identifier; otherwise just cook as usual. 29337c478bd9Sstevel@tonic-gate */ 29347c478bd9Sstevel@tonic-gate if (cp->dn_kind == DT_NODE_IDENT && (idflags & DT_IDFLG_MOD)) 29357c478bd9Sstevel@tonic-gate dt_xcook_ident(cp, dtp->dt_globals, DT_IDENT_SCALAR, B_TRUE); 29367c478bd9Sstevel@tonic-gate 29377c478bd9Sstevel@tonic-gate cp = dnp->dn_child = dt_node_cook(cp, 0); /* don't set idflags yet */ 29387c478bd9Sstevel@tonic-gate 29397c478bd9Sstevel@tonic-gate if (cp->dn_kind == DT_NODE_VAR && dt_ident_unref(cp->dn_ident)) { 29407c478bd9Sstevel@tonic-gate if (dt_type_lookup("int64_t", &dtt) != 0) 29417c478bd9Sstevel@tonic-gate xyerror(D_TYPE_ERR, "failed to lookup int64_t\n"); 29427c478bd9Sstevel@tonic-gate 29437c478bd9Sstevel@tonic-gate dt_ident_type_assign(cp->dn_ident, dtt.dtt_ctfp, dtt.dtt_type); 2944a386cc11SRobert Mustacchi dt_node_type_assign(cp, dtt.dtt_ctfp, dtt.dtt_type, 2945a386cc11SRobert Mustacchi dtt.dtt_flags); 29467c478bd9Sstevel@tonic-gate } 29477c478bd9Sstevel@tonic-gate 29487c478bd9Sstevel@tonic-gate if (cp->dn_kind == DT_NODE_VAR) 29497c478bd9Sstevel@tonic-gate cp->dn_ident->di_flags |= idflags; 29507c478bd9Sstevel@tonic-gate 29517c478bd9Sstevel@tonic-gate switch (dnp->dn_op) { 29527c478bd9Sstevel@tonic-gate case DT_TOK_DEREF: 29537c478bd9Sstevel@tonic-gate /* 29547c478bd9Sstevel@tonic-gate * If the deref operator is applied to a translated pointer, 2955e5803b76SAdam H. Leventhal * we set our output type to the output of the translation. 29567c478bd9Sstevel@tonic-gate */ 29577c478bd9Sstevel@tonic-gate if ((idp = dt_node_resolve(cp, DT_IDENT_XLPTR)) != NULL) { 29587c478bd9Sstevel@tonic-gate dt_xlator_t *dxp = idp->di_data; 29597c478bd9Sstevel@tonic-gate 29607c478bd9Sstevel@tonic-gate dnp->dn_ident = &dxp->dx_souid; 29617c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, 2962a386cc11SRobert Mustacchi dnp->dn_ident->di_ctfp, dnp->dn_ident->di_type, 2963a386cc11SRobert Mustacchi cp->dn_flags & DT_NF_USERLAND); 29647c478bd9Sstevel@tonic-gate break; 29657c478bd9Sstevel@tonic-gate } 29667c478bd9Sstevel@tonic-gate 29677c478bd9Sstevel@tonic-gate type = ctf_type_resolve(cp->dn_ctfp, cp->dn_type); 29687c478bd9Sstevel@tonic-gate kind = ctf_type_kind(cp->dn_ctfp, type); 29697c478bd9Sstevel@tonic-gate 29707c478bd9Sstevel@tonic-gate if (kind == CTF_K_ARRAY) { 29717c478bd9Sstevel@tonic-gate if (ctf_array_info(cp->dn_ctfp, type, &r) != 0) { 29727c478bd9Sstevel@tonic-gate dtp->dt_ctferr = ctf_errno(cp->dn_ctfp); 29737c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_CTF); 29747c478bd9Sstevel@tonic-gate } else 29757c478bd9Sstevel@tonic-gate type = r.ctr_contents; 29767c478bd9Sstevel@tonic-gate } else if (kind == CTF_K_POINTER) { 29777c478bd9Sstevel@tonic-gate type = ctf_type_reference(cp->dn_ctfp, type); 29787c478bd9Sstevel@tonic-gate } else { 29797c478bd9Sstevel@tonic-gate xyerror(D_DEREF_NONPTR, 29807c478bd9Sstevel@tonic-gate "cannot dereference non-pointer type\n"); 29817c478bd9Sstevel@tonic-gate } 29827c478bd9Sstevel@tonic-gate 2983a386cc11SRobert Mustacchi dt_node_type_assign(dnp, cp->dn_ctfp, type, 2984a386cc11SRobert Mustacchi cp->dn_flags & DT_NF_USERLAND); 29857c478bd9Sstevel@tonic-gate base = ctf_type_resolve(cp->dn_ctfp, type); 29867c478bd9Sstevel@tonic-gate kind = ctf_type_kind(cp->dn_ctfp, base); 29877c478bd9Sstevel@tonic-gate 29887c478bd9Sstevel@tonic-gate if (kind == CTF_K_INTEGER && ctf_type_encoding(cp->dn_ctfp, 29897c478bd9Sstevel@tonic-gate base, &e) == 0 && IS_VOID(e)) { 29907c478bd9Sstevel@tonic-gate xyerror(D_DEREF_VOID, 29917c478bd9Sstevel@tonic-gate "cannot dereference pointer to void\n"); 29927c478bd9Sstevel@tonic-gate } 29937c478bd9Sstevel@tonic-gate 29947c478bd9Sstevel@tonic-gate if (kind == CTF_K_FUNCTION) { 29957c478bd9Sstevel@tonic-gate xyerror(D_DEREF_FUNC, 29967c478bd9Sstevel@tonic-gate "cannot dereference pointer to function\n"); 29977c478bd9Sstevel@tonic-gate } 29987c478bd9Sstevel@tonic-gate 29997c478bd9Sstevel@tonic-gate if (kind != CTF_K_ARRAY || dt_node_is_string(dnp)) 30007c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_LVALUE; /* see K&R[A7.4.3] */ 30017c478bd9Sstevel@tonic-gate 30027c478bd9Sstevel@tonic-gate /* 30037c478bd9Sstevel@tonic-gate * If we propagated the l-value bit and the child operand was 30047c478bd9Sstevel@tonic-gate * a writable D variable or a binary operation of the form 30057c478bd9Sstevel@tonic-gate * a + b where a is writable, then propagate the writable bit. 30067c478bd9Sstevel@tonic-gate * This is necessary to permit assignments to scalar arrays, 30077c478bd9Sstevel@tonic-gate * which are converted to expressions of the form *(a + i). 30087c478bd9Sstevel@tonic-gate */ 30097c478bd9Sstevel@tonic-gate if ((cp->dn_flags & DT_NF_WRITABLE) || 30107c478bd9Sstevel@tonic-gate (cp->dn_kind == DT_NODE_OP2 && cp->dn_op == DT_TOK_ADD && 30117c478bd9Sstevel@tonic-gate (cp->dn_left->dn_flags & DT_NF_WRITABLE))) 30127c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_WRITABLE; 30137c478bd9Sstevel@tonic-gate 30147c478bd9Sstevel@tonic-gate if ((cp->dn_flags & DT_NF_USERLAND) && 30157c478bd9Sstevel@tonic-gate (kind == CTF_K_POINTER || (dnp->dn_flags & DT_NF_REF))) 30167c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_USERLAND; 30177c478bd9Sstevel@tonic-gate break; 30187c478bd9Sstevel@tonic-gate 30197c478bd9Sstevel@tonic-gate case DT_TOK_IPOS: 30207c478bd9Sstevel@tonic-gate case DT_TOK_INEG: 30217c478bd9Sstevel@tonic-gate if (!dt_node_is_arith(cp)) { 30227c478bd9Sstevel@tonic-gate xyerror(D_OP_ARITH, "operator %s requires an operand " 30237c478bd9Sstevel@tonic-gate "of arithmetic type\n", opstr(dnp->dn_op)); 30247c478bd9Sstevel@tonic-gate } 30257c478bd9Sstevel@tonic-gate dt_node_type_propagate(cp, dnp); /* see K&R[A7.4.4-6] */ 30267c478bd9Sstevel@tonic-gate break; 30277c478bd9Sstevel@tonic-gate 30287c478bd9Sstevel@tonic-gate case DT_TOK_BNEG: 30297c478bd9Sstevel@tonic-gate if (!dt_node_is_integer(cp)) { 30307c478bd9Sstevel@tonic-gate xyerror(D_OP_INT, "operator %s requires an operand of " 30317c478bd9Sstevel@tonic-gate "integral type\n", opstr(dnp->dn_op)); 30327c478bd9Sstevel@tonic-gate } 30337c478bd9Sstevel@tonic-gate dt_node_type_propagate(cp, dnp); /* see K&R[A7.4.4-6] */ 30347c478bd9Sstevel@tonic-gate break; 30357c478bd9Sstevel@tonic-gate 30367c478bd9Sstevel@tonic-gate case DT_TOK_LNEG: 30377c478bd9Sstevel@tonic-gate if (!dt_node_is_scalar(cp)) { 30387c478bd9Sstevel@tonic-gate xyerror(D_OP_SCALAR, "operator %s requires an operand " 30397c478bd9Sstevel@tonic-gate "of scalar type\n", opstr(dnp->dn_op)); 30407c478bd9Sstevel@tonic-gate } 3041a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), 3042a386cc11SRobert Mustacchi B_FALSE); 30437c478bd9Sstevel@tonic-gate break; 30447c478bd9Sstevel@tonic-gate 30457c478bd9Sstevel@tonic-gate case DT_TOK_ADDROF: 30467c478bd9Sstevel@tonic-gate if (cp->dn_kind == DT_NODE_VAR || cp->dn_kind == DT_NODE_AGG) { 30477c478bd9Sstevel@tonic-gate xyerror(D_ADDROF_VAR, 30487c478bd9Sstevel@tonic-gate "cannot take address of dynamic variable\n"); 30497c478bd9Sstevel@tonic-gate } 30507c478bd9Sstevel@tonic-gate 30517c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(cp)) { 30527c478bd9Sstevel@tonic-gate xyerror(D_ADDROF_VAR, 30537c478bd9Sstevel@tonic-gate "cannot take address of dynamic object\n"); 30547c478bd9Sstevel@tonic-gate } 30557c478bd9Sstevel@tonic-gate 30567c478bd9Sstevel@tonic-gate if (!(cp->dn_flags & DT_NF_LVALUE)) { 30577c478bd9Sstevel@tonic-gate xyerror(D_ADDROF_LVAL, /* see K&R[A7.4.2] */ 30587c478bd9Sstevel@tonic-gate "unacceptable operand for unary & operator\n"); 30597c478bd9Sstevel@tonic-gate } 30607c478bd9Sstevel@tonic-gate 30617c478bd9Sstevel@tonic-gate if (cp->dn_flags & DT_NF_BITFIELD) { 30627c478bd9Sstevel@tonic-gate xyerror(D_ADDROF_BITFIELD, 30637c478bd9Sstevel@tonic-gate "cannot take address of bit-field\n"); 30647c478bd9Sstevel@tonic-gate } 30657c478bd9Sstevel@tonic-gate 30667c478bd9Sstevel@tonic-gate dtt.dtt_object = NULL; 30677c478bd9Sstevel@tonic-gate dtt.dtt_ctfp = cp->dn_ctfp; 30687c478bd9Sstevel@tonic-gate dtt.dtt_type = cp->dn_type; 30697c478bd9Sstevel@tonic-gate 30707c478bd9Sstevel@tonic-gate if (dt_type_pointer(&dtt) == -1) { 30717c478bd9Sstevel@tonic-gate xyerror(D_TYPE_ERR, "cannot find type for \"&\": %s*\n", 30727c478bd9Sstevel@tonic-gate dt_node_type_name(cp, n, sizeof (n))); 30737c478bd9Sstevel@tonic-gate } 30747c478bd9Sstevel@tonic-gate 3075a386cc11SRobert Mustacchi dt_node_type_assign(dnp, dtt.dtt_ctfp, dtt.dtt_type, 3076a386cc11SRobert Mustacchi cp->dn_flags & DT_NF_USERLAND); 30777c478bd9Sstevel@tonic-gate break; 30787c478bd9Sstevel@tonic-gate 30797c478bd9Sstevel@tonic-gate case DT_TOK_SIZEOF: 30807c478bd9Sstevel@tonic-gate if (cp->dn_flags & DT_NF_BITFIELD) { 30817c478bd9Sstevel@tonic-gate xyerror(D_SIZEOF_BITFIELD, 30827c478bd9Sstevel@tonic-gate "cannot apply sizeof to a bit-field\n"); 30837c478bd9Sstevel@tonic-gate } 30847c478bd9Sstevel@tonic-gate 30857c478bd9Sstevel@tonic-gate if (dt_node_sizeof(cp) == 0) { 30867c478bd9Sstevel@tonic-gate xyerror(D_SIZEOF_TYPE, "cannot apply sizeof to an " 30877c478bd9Sstevel@tonic-gate "operand of unknown size\n"); 30887c478bd9Sstevel@tonic-gate } 30897c478bd9Sstevel@tonic-gate 30907c478bd9Sstevel@tonic-gate dt_node_type_assign(dnp, dtp->dt_ddefs->dm_ctfp, 3091a386cc11SRobert Mustacchi ctf_lookup_by_name(dtp->dt_ddefs->dm_ctfp, "size_t"), 3092a386cc11SRobert Mustacchi B_FALSE); 30937c478bd9Sstevel@tonic-gate break; 30947c478bd9Sstevel@tonic-gate 30957c478bd9Sstevel@tonic-gate case DT_TOK_STRINGOF: 30967c478bd9Sstevel@tonic-gate if (!dt_node_is_scalar(cp) && !dt_node_is_pointer(cp) && 30977c478bd9Sstevel@tonic-gate !dt_node_is_strcompat(cp)) { 30987c478bd9Sstevel@tonic-gate xyerror(D_STRINGOF_TYPE, 30997c478bd9Sstevel@tonic-gate "cannot apply stringof to a value of type %s\n", 31007c478bd9Sstevel@tonic-gate dt_node_type_name(cp, n, sizeof (n))); 31017c478bd9Sstevel@tonic-gate } 3102a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_STR_CTFP(dtp), DT_STR_TYPE(dtp), 3103a386cc11SRobert Mustacchi cp->dn_flags & DT_NF_USERLAND); 31047c478bd9Sstevel@tonic-gate break; 31057c478bd9Sstevel@tonic-gate 31067c478bd9Sstevel@tonic-gate case DT_TOK_PREINC: 31077c478bd9Sstevel@tonic-gate case DT_TOK_POSTINC: 31087c478bd9Sstevel@tonic-gate case DT_TOK_PREDEC: 31097c478bd9Sstevel@tonic-gate case DT_TOK_POSTDEC: 31107c478bd9Sstevel@tonic-gate if (dt_node_is_scalar(cp) == 0) { 31117c478bd9Sstevel@tonic-gate xyerror(D_OP_SCALAR, "operator %s requires operand of " 31127c478bd9Sstevel@tonic-gate "scalar type\n", opstr(dnp->dn_op)); 31137c478bd9Sstevel@tonic-gate } 31147c478bd9Sstevel@tonic-gate 31157c478bd9Sstevel@tonic-gate if (dt_node_is_vfptr(cp)) { 31167c478bd9Sstevel@tonic-gate xyerror(D_OP_VFPTR, "operator %s requires an operand " 31177c478bd9Sstevel@tonic-gate "of known size\n", opstr(dnp->dn_op)); 31187c478bd9Sstevel@tonic-gate } 31197c478bd9Sstevel@tonic-gate 31207c478bd9Sstevel@tonic-gate if (!(cp->dn_flags & DT_NF_LVALUE)) { 31217c478bd9Sstevel@tonic-gate xyerror(D_OP_LVAL, "operator %s requires modifiable " 31227c478bd9Sstevel@tonic-gate "lvalue as an operand\n", opstr(dnp->dn_op)); 31237c478bd9Sstevel@tonic-gate } 31247c478bd9Sstevel@tonic-gate 31257c478bd9Sstevel@tonic-gate if (!(cp->dn_flags & DT_NF_WRITABLE)) { 31267c478bd9Sstevel@tonic-gate xyerror(D_OP_WRITE, "operator %s can only be applied " 31277c478bd9Sstevel@tonic-gate "to a writable variable\n", opstr(dnp->dn_op)); 31287c478bd9Sstevel@tonic-gate } 31297c478bd9Sstevel@tonic-gate 31307c478bd9Sstevel@tonic-gate dt_node_type_propagate(cp, dnp); /* see K&R[A7.4.1] */ 31317c478bd9Sstevel@tonic-gate break; 31327c478bd9Sstevel@tonic-gate 31337c478bd9Sstevel@tonic-gate default: 31347c478bd9Sstevel@tonic-gate xyerror(D_UNKNOWN, "invalid unary op %s\n", opstr(dnp->dn_op)); 31357c478bd9Sstevel@tonic-gate } 31367c478bd9Sstevel@tonic-gate 31377c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, cp->dn_attr); 31387c478bd9Sstevel@tonic-gate return (dnp); 31397c478bd9Sstevel@tonic-gate } 31407c478bd9Sstevel@tonic-gate 3141e5803b76SAdam H. Leventhal static void 3142e5803b76SAdam H. Leventhal dt_assign_common(dt_node_t *dnp) 3143e5803b76SAdam H. Leventhal { 3144e5803b76SAdam H. Leventhal dt_node_t *lp = dnp->dn_left; 3145e5803b76SAdam H. Leventhal dt_node_t *rp = dnp->dn_right; 3146e5803b76SAdam H. Leventhal int op = dnp->dn_op; 3147e5803b76SAdam H. Leventhal 3148e5803b76SAdam H. Leventhal if (rp->dn_kind == DT_NODE_INT) 3149e5803b76SAdam H. Leventhal dt_cast(lp, rp); 3150e5803b76SAdam H. Leventhal 3151e5803b76SAdam H. Leventhal if (!(lp->dn_flags & DT_NF_LVALUE)) { 3152e5803b76SAdam H. Leventhal xyerror(D_OP_LVAL, "operator %s requires modifiable " 3153e5803b76SAdam H. Leventhal "lvalue as an operand\n", opstr(op)); 3154e5803b76SAdam H. Leventhal /* see K&R[A7.17] */ 3155e5803b76SAdam H. Leventhal } 3156e5803b76SAdam H. Leventhal 3157e5803b76SAdam H. Leventhal if (!(lp->dn_flags & DT_NF_WRITABLE)) { 3158e5803b76SAdam H. Leventhal xyerror(D_OP_WRITE, "operator %s can only be applied " 3159e5803b76SAdam H. Leventhal "to a writable variable\n", opstr(op)); 3160e5803b76SAdam H. Leventhal } 3161e5803b76SAdam H. Leventhal 3162e5803b76SAdam H. Leventhal dt_node_type_propagate(lp, dnp); /* see K&R[A7.17] */ 3163e5803b76SAdam H. Leventhal dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 3164e5803b76SAdam H. Leventhal } 3165e5803b76SAdam H. Leventhal 31667c478bd9Sstevel@tonic-gate static dt_node_t * 31677c478bd9Sstevel@tonic-gate dt_cook_op2(dt_node_t *dnp, uint_t idflags) 31687c478bd9Sstevel@tonic-gate { 31697c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 31707c478bd9Sstevel@tonic-gate dt_node_t *lp = dnp->dn_left; 31717c478bd9Sstevel@tonic-gate dt_node_t *rp = dnp->dn_right; 31727c478bd9Sstevel@tonic-gate int op = dnp->dn_op; 31737c478bd9Sstevel@tonic-gate 31747c478bd9Sstevel@tonic-gate ctf_membinfo_t m; 31757c478bd9Sstevel@tonic-gate ctf_file_t *ctfp; 31767c478bd9Sstevel@tonic-gate ctf_id_t type; 31777c478bd9Sstevel@tonic-gate int kind, val, uref; 31787c478bd9Sstevel@tonic-gate dt_ident_t *idp; 31797c478bd9Sstevel@tonic-gate 31807c478bd9Sstevel@tonic-gate char n1[DT_TYPE_NAMELEN]; 31817c478bd9Sstevel@tonic-gate char n2[DT_TYPE_NAMELEN]; 31827c478bd9Sstevel@tonic-gate 31837c478bd9Sstevel@tonic-gate /* 31847c478bd9Sstevel@tonic-gate * The expression E1[E2] is identical by definition to *((E1)+(E2)) so 31857c478bd9Sstevel@tonic-gate * we convert "[" to "+" and glue on "*" at the end (see K&R[A7.3.1]) 31867c478bd9Sstevel@tonic-gate * unless the left-hand side is an untyped D scalar, associative array, 31877c478bd9Sstevel@tonic-gate * or aggregation. In these cases, we proceed to case DT_TOK_LBRAC and 31887c478bd9Sstevel@tonic-gate * handle associative array and aggregation references there. 31897c478bd9Sstevel@tonic-gate */ 31907c478bd9Sstevel@tonic-gate if (op == DT_TOK_LBRAC) { 31917c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_IDENT) { 31927c478bd9Sstevel@tonic-gate dt_idhash_t *dhp; 31937c478bd9Sstevel@tonic-gate uint_t idkind; 31947c478bd9Sstevel@tonic-gate 31957c478bd9Sstevel@tonic-gate if (lp->dn_op == DT_TOK_AGG) { 31967c478bd9Sstevel@tonic-gate dhp = dtp->dt_aggs; 31977c478bd9Sstevel@tonic-gate idp = dt_idhash_lookup(dhp, lp->dn_string + 1); 31987c478bd9Sstevel@tonic-gate idkind = DT_IDENT_AGG; 31997c478bd9Sstevel@tonic-gate } else { 32007c478bd9Sstevel@tonic-gate dhp = dtp->dt_globals; 32017c478bd9Sstevel@tonic-gate idp = dt_idstack_lookup( 32027c478bd9Sstevel@tonic-gate &yypcb->pcb_globals, lp->dn_string); 32037c478bd9Sstevel@tonic-gate idkind = DT_IDENT_ARRAY; 32047c478bd9Sstevel@tonic-gate } 32057c478bd9Sstevel@tonic-gate 32067c478bd9Sstevel@tonic-gate if (idp == NULL || dt_ident_unref(idp)) 32077c478bd9Sstevel@tonic-gate dt_xcook_ident(lp, dhp, idkind, B_TRUE); 32087c478bd9Sstevel@tonic-gate else 32097c478bd9Sstevel@tonic-gate dt_xcook_ident(lp, dhp, idp->di_kind, B_FALSE); 32100af8f00bSMatthew Ahrens } else { 32117c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, 0); 32120af8f00bSMatthew Ahrens } 32137c478bd9Sstevel@tonic-gate 32147c478bd9Sstevel@tonic-gate /* 32157c478bd9Sstevel@tonic-gate * Switch op to '+' for *(E1 + E2) array mode in these cases: 32167c478bd9Sstevel@tonic-gate * (a) lp is a DT_IDENT_ARRAY variable that has already been 32177c478bd9Sstevel@tonic-gate * referenced using [] notation (dn_args != NULL). 32187c478bd9Sstevel@tonic-gate * (b) lp is a non-ARRAY variable that has already been given 32197c478bd9Sstevel@tonic-gate * a type by assignment or declaration (!dt_ident_unref()) 32207c478bd9Sstevel@tonic-gate * (c) lp is neither a variable nor an aggregation 32217c478bd9Sstevel@tonic-gate */ 32227c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_VAR) { 32237c478bd9Sstevel@tonic-gate if (lp->dn_ident->di_kind == DT_IDENT_ARRAY) { 32247c478bd9Sstevel@tonic-gate if (lp->dn_args != NULL) 32257c478bd9Sstevel@tonic-gate op = DT_TOK_ADD; 32260af8f00bSMatthew Ahrens } else if (!dt_ident_unref(lp->dn_ident)) { 32277c478bd9Sstevel@tonic-gate op = DT_TOK_ADD; 32280af8f00bSMatthew Ahrens } 32290af8f00bSMatthew Ahrens } else if (lp->dn_kind != DT_NODE_AGG) { 32307c478bd9Sstevel@tonic-gate op = DT_TOK_ADD; 32317c478bd9Sstevel@tonic-gate } 32320af8f00bSMatthew Ahrens } 32337c478bd9Sstevel@tonic-gate 32347c478bd9Sstevel@tonic-gate switch (op) { 32357c478bd9Sstevel@tonic-gate case DT_TOK_BAND: 32367c478bd9Sstevel@tonic-gate case DT_TOK_XOR: 32377c478bd9Sstevel@tonic-gate case DT_TOK_BOR: 32387c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 32397c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 32407c478bd9Sstevel@tonic-gate 32417c478bd9Sstevel@tonic-gate if (!dt_node_is_integer(lp) || !dt_node_is_integer(rp)) { 32427c478bd9Sstevel@tonic-gate xyerror(D_OP_INT, "operator %s requires operands of " 32437c478bd9Sstevel@tonic-gate "integral type\n", opstr(op)); 32447c478bd9Sstevel@tonic-gate } 32457c478bd9Sstevel@tonic-gate 32467c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); /* see K&R[A7.11-13] */ 32477c478bd9Sstevel@tonic-gate break; 32487c478bd9Sstevel@tonic-gate 32497c478bd9Sstevel@tonic-gate case DT_TOK_LSH: 32507c478bd9Sstevel@tonic-gate case DT_TOK_RSH: 32517c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 32527c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 32537c478bd9Sstevel@tonic-gate 32547c478bd9Sstevel@tonic-gate if (!dt_node_is_integer(lp) || !dt_node_is_integer(rp)) { 32557c478bd9Sstevel@tonic-gate xyerror(D_OP_INT, "operator %s requires operands of " 32567c478bd9Sstevel@tonic-gate "integral type\n", opstr(op)); 32577c478bd9Sstevel@tonic-gate } 32587c478bd9Sstevel@tonic-gate 32597c478bd9Sstevel@tonic-gate dt_node_type_propagate(lp, dnp); /* see K&R[A7.8] */ 32607c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 32617c478bd9Sstevel@tonic-gate break; 32627c478bd9Sstevel@tonic-gate 32637c478bd9Sstevel@tonic-gate case DT_TOK_MOD: 32647c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 32657c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 32667c478bd9Sstevel@tonic-gate 32677c478bd9Sstevel@tonic-gate if (!dt_node_is_integer(lp) || !dt_node_is_integer(rp)) { 32687c478bd9Sstevel@tonic-gate xyerror(D_OP_INT, "operator %s requires operands of " 32697c478bd9Sstevel@tonic-gate "integral type\n", opstr(op)); 32707c478bd9Sstevel@tonic-gate } 32717c478bd9Sstevel@tonic-gate 32727c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); /* see K&R[A7.6] */ 32737c478bd9Sstevel@tonic-gate break; 32747c478bd9Sstevel@tonic-gate 32757c478bd9Sstevel@tonic-gate case DT_TOK_MUL: 32767c478bd9Sstevel@tonic-gate case DT_TOK_DIV: 32777c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 32787c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 32797c478bd9Sstevel@tonic-gate 32807c478bd9Sstevel@tonic-gate if (!dt_node_is_arith(lp) || !dt_node_is_arith(rp)) { 32817c478bd9Sstevel@tonic-gate xyerror(D_OP_ARITH, "operator %s requires operands of " 32827c478bd9Sstevel@tonic-gate "arithmetic type\n", opstr(op)); 32837c478bd9Sstevel@tonic-gate } 32847c478bd9Sstevel@tonic-gate 32857c478bd9Sstevel@tonic-gate dt_node_promote(lp, rp, dnp); /* see K&R[A7.6] */ 32867c478bd9Sstevel@tonic-gate break; 32877c478bd9Sstevel@tonic-gate 32887c478bd9Sstevel@tonic-gate case DT_TOK_LAND: 32897c478bd9Sstevel@tonic-gate case DT_TOK_LXOR: 32907c478bd9Sstevel@tonic-gate case DT_TOK_LOR: 32917c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 32927c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 32937c478bd9Sstevel@tonic-gate 32947c478bd9Sstevel@tonic-gate if (!dt_node_is_scalar(lp) || !dt_node_is_scalar(rp)) { 32957c478bd9Sstevel@tonic-gate xyerror(D_OP_SCALAR, "operator %s requires operands " 32967c478bd9Sstevel@tonic-gate "of scalar type\n", opstr(op)); 32977c478bd9Sstevel@tonic-gate } 32987c478bd9Sstevel@tonic-gate 3299a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), 3300a386cc11SRobert Mustacchi B_FALSE); 33017c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 33027c478bd9Sstevel@tonic-gate break; 33037c478bd9Sstevel@tonic-gate 33047c478bd9Sstevel@tonic-gate case DT_TOK_LT: 33057c478bd9Sstevel@tonic-gate case DT_TOK_LE: 33067c478bd9Sstevel@tonic-gate case DT_TOK_GT: 33077c478bd9Sstevel@tonic-gate case DT_TOK_GE: 33087c478bd9Sstevel@tonic-gate case DT_TOK_EQU: 33097c478bd9Sstevel@tonic-gate case DT_TOK_NEQ: 33107c478bd9Sstevel@tonic-gate /* 33117c478bd9Sstevel@tonic-gate * The D comparison operators provide the ability to transform 33127c478bd9Sstevel@tonic-gate * a right-hand identifier into a corresponding enum tag value 33137c478bd9Sstevel@tonic-gate * if the left-hand side is an enum type. To do this, we cook 33147c478bd9Sstevel@tonic-gate * the left-hand side, and then see if the right-hand side is 33157c478bd9Sstevel@tonic-gate * an unscoped identifier defined in the enum. If so, we 33167c478bd9Sstevel@tonic-gate * convert into an integer constant node with the tag's value. 33177c478bd9Sstevel@tonic-gate */ 33187c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 33197c478bd9Sstevel@tonic-gate 33207c478bd9Sstevel@tonic-gate kind = ctf_type_kind(lp->dn_ctfp, 33217c478bd9Sstevel@tonic-gate ctf_type_resolve(lp->dn_ctfp, lp->dn_type)); 33227c478bd9Sstevel@tonic-gate 33237c478bd9Sstevel@tonic-gate if (kind == CTF_K_ENUM && rp->dn_kind == DT_NODE_IDENT && 33247c478bd9Sstevel@tonic-gate strchr(rp->dn_string, '`') == NULL && ctf_enum_value( 33257c478bd9Sstevel@tonic-gate lp->dn_ctfp, lp->dn_type, rp->dn_string, &val) == 0) { 33267c478bd9Sstevel@tonic-gate 33277c478bd9Sstevel@tonic-gate if ((idp = dt_idstack_lookup(&yypcb->pcb_globals, 33287c478bd9Sstevel@tonic-gate rp->dn_string)) != NULL) { 33297c478bd9Sstevel@tonic-gate xyerror(D_IDENT_AMBIG, 33307c478bd9Sstevel@tonic-gate "ambiguous use of operator %s: %s is " 33317c478bd9Sstevel@tonic-gate "both a %s enum tag and a global %s\n", 33327c478bd9Sstevel@tonic-gate opstr(op), rp->dn_string, 33337c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n1, sizeof (n1)), 33347c478bd9Sstevel@tonic-gate dt_idkind_name(idp->di_kind)); 33357c478bd9Sstevel@tonic-gate } 33367c478bd9Sstevel@tonic-gate 33377c478bd9Sstevel@tonic-gate free(rp->dn_string); 33387c478bd9Sstevel@tonic-gate rp->dn_string = NULL; 33397c478bd9Sstevel@tonic-gate rp->dn_kind = DT_NODE_INT; 33407c478bd9Sstevel@tonic-gate rp->dn_flags |= DT_NF_COOKED; 33417c478bd9Sstevel@tonic-gate rp->dn_op = DT_TOK_INT; 33427c478bd9Sstevel@tonic-gate rp->dn_value = (intmax_t)val; 33437c478bd9Sstevel@tonic-gate 3344a386cc11SRobert Mustacchi dt_node_type_assign(rp, lp->dn_ctfp, lp->dn_type, 3345a386cc11SRobert Mustacchi B_FALSE); 33467c478bd9Sstevel@tonic-gate dt_node_attr_assign(rp, _dtrace_symattr); 33477c478bd9Sstevel@tonic-gate } 33487c478bd9Sstevel@tonic-gate 33497c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 33507c478bd9Sstevel@tonic-gate 33517c478bd9Sstevel@tonic-gate /* 33527c478bd9Sstevel@tonic-gate * The rules for type checking for the relational operators are 33537c478bd9Sstevel@tonic-gate * described in the ANSI-C spec (see K&R[A7.9-10]). We perform 33547c478bd9Sstevel@tonic-gate * the various tests in order from least to most expensive. We 33557c478bd9Sstevel@tonic-gate * also allow derived strings to be compared as a first-class 33567c478bd9Sstevel@tonic-gate * type (resulting in a strcmp(3C)-style comparison), and we 33577c478bd9Sstevel@tonic-gate * slightly relax the A7.9 rules to permit void pointer 33587c478bd9Sstevel@tonic-gate * comparisons as in A7.10. Our users won't be confused by 33597c478bd9Sstevel@tonic-gate * this since they understand pointers are just numbers, and 33607c478bd9Sstevel@tonic-gate * relaxing this constraint simplifies the implementation. 33617c478bd9Sstevel@tonic-gate */ 33627c478bd9Sstevel@tonic-gate if (ctf_type_compat(lp->dn_ctfp, lp->dn_type, 33637c478bd9Sstevel@tonic-gate rp->dn_ctfp, rp->dn_type)) 33647c478bd9Sstevel@tonic-gate /*EMPTY*/; 33657c478bd9Sstevel@tonic-gate else if (dt_node_is_integer(lp) && dt_node_is_integer(rp)) 33667c478bd9Sstevel@tonic-gate /*EMPTY*/; 33677c478bd9Sstevel@tonic-gate else if (dt_node_is_strcompat(lp) && dt_node_is_strcompat(rp) && 33687c478bd9Sstevel@tonic-gate (dt_node_is_string(lp) || dt_node_is_string(rp))) 33697c478bd9Sstevel@tonic-gate /*EMPTY*/; 33707c478bd9Sstevel@tonic-gate else if (dt_node_is_ptrcompat(lp, rp, NULL, NULL) == 0) { 33717c478bd9Sstevel@tonic-gate xyerror(D_OP_INCOMPAT, "operands have " 33727c478bd9Sstevel@tonic-gate "incompatible types: \"%s\" %s \"%s\"\n", 33737c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n1, sizeof (n1)), opstr(op), 33747c478bd9Sstevel@tonic-gate dt_node_type_name(rp, n2, sizeof (n2))); 33757c478bd9Sstevel@tonic-gate } 33767c478bd9Sstevel@tonic-gate 3377a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_INT_CTFP(dtp), DT_INT_TYPE(dtp), 3378a386cc11SRobert Mustacchi B_FALSE); 33797c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 33807c478bd9Sstevel@tonic-gate break; 33817c478bd9Sstevel@tonic-gate 33827c478bd9Sstevel@tonic-gate case DT_TOK_ADD: 33837c478bd9Sstevel@tonic-gate case DT_TOK_SUB: { 33847c478bd9Sstevel@tonic-gate /* 33857c478bd9Sstevel@tonic-gate * The rules for type checking for the additive operators are 33867c478bd9Sstevel@tonic-gate * described in the ANSI-C spec (see K&R[A7.7]). Pointers and 3387e4586ebfSmws * integers may be manipulated according to specific rules. In 3388e4586ebfSmws * these cases D permits strings to be treated as pointers. 33897c478bd9Sstevel@tonic-gate */ 33907c478bd9Sstevel@tonic-gate int lp_is_ptr, lp_is_int, rp_is_ptr, rp_is_int; 33917c478bd9Sstevel@tonic-gate 33927c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 33937c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 33947c478bd9Sstevel@tonic-gate 3395e4586ebfSmws lp_is_ptr = dt_node_is_string(lp) || 3396e4586ebfSmws (dt_node_is_pointer(lp) && !dt_node_is_vfptr(lp)); 33977c478bd9Sstevel@tonic-gate lp_is_int = dt_node_is_integer(lp); 33987c478bd9Sstevel@tonic-gate 3399e4586ebfSmws rp_is_ptr = dt_node_is_string(rp) || 3400e4586ebfSmws (dt_node_is_pointer(rp) && !dt_node_is_vfptr(rp)); 34017c478bd9Sstevel@tonic-gate rp_is_int = dt_node_is_integer(rp); 34027c478bd9Sstevel@tonic-gate 34037c478bd9Sstevel@tonic-gate if (lp_is_int && rp_is_int) { 34047c478bd9Sstevel@tonic-gate dt_type_promote(lp, rp, &ctfp, &type); 34057c478bd9Sstevel@tonic-gate uref = 0; 34067c478bd9Sstevel@tonic-gate } else if (lp_is_ptr && rp_is_int) { 34077c478bd9Sstevel@tonic-gate ctfp = lp->dn_ctfp; 34087c478bd9Sstevel@tonic-gate type = lp->dn_type; 34097c478bd9Sstevel@tonic-gate uref = lp->dn_flags & DT_NF_USERLAND; 34107c478bd9Sstevel@tonic-gate } else if (lp_is_int && rp_is_ptr && op == DT_TOK_ADD) { 34117c478bd9Sstevel@tonic-gate ctfp = rp->dn_ctfp; 34127c478bd9Sstevel@tonic-gate type = rp->dn_type; 34137c478bd9Sstevel@tonic-gate uref = rp->dn_flags & DT_NF_USERLAND; 34147c478bd9Sstevel@tonic-gate } else if (lp_is_ptr && rp_is_ptr && op == DT_TOK_SUB && 34157c478bd9Sstevel@tonic-gate dt_node_is_ptrcompat(lp, rp, NULL, NULL)) { 34167c478bd9Sstevel@tonic-gate ctfp = dtp->dt_ddefs->dm_ctfp; 34177c478bd9Sstevel@tonic-gate type = ctf_lookup_by_name(ctfp, "ptrdiff_t"); 34187c478bd9Sstevel@tonic-gate uref = 0; 34197c478bd9Sstevel@tonic-gate } else { 34207c478bd9Sstevel@tonic-gate xyerror(D_OP_INCOMPAT, "operands have incompatible " 34217c478bd9Sstevel@tonic-gate "types: \"%s\" %s \"%s\"\n", 34227c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n1, sizeof (n1)), opstr(op), 34237c478bd9Sstevel@tonic-gate dt_node_type_name(rp, n2, sizeof (n2))); 34247c478bd9Sstevel@tonic-gate } 34257c478bd9Sstevel@tonic-gate 3426a386cc11SRobert Mustacchi dt_node_type_assign(dnp, ctfp, type, B_FALSE); 34277c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 34287c478bd9Sstevel@tonic-gate 34297c478bd9Sstevel@tonic-gate if (uref) 34307c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_USERLAND; 34317c478bd9Sstevel@tonic-gate break; 34327c478bd9Sstevel@tonic-gate } 34337c478bd9Sstevel@tonic-gate 34347c478bd9Sstevel@tonic-gate case DT_TOK_OR_EQ: 34357c478bd9Sstevel@tonic-gate case DT_TOK_XOR_EQ: 34367c478bd9Sstevel@tonic-gate case DT_TOK_AND_EQ: 34377c478bd9Sstevel@tonic-gate case DT_TOK_LSH_EQ: 34387c478bd9Sstevel@tonic-gate case DT_TOK_RSH_EQ: 34397c478bd9Sstevel@tonic-gate case DT_TOK_MOD_EQ: 34407c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_IDENT) { 34417c478bd9Sstevel@tonic-gate dt_xcook_ident(lp, dtp->dt_globals, 34427c478bd9Sstevel@tonic-gate DT_IDENT_SCALAR, B_TRUE); 34437c478bd9Sstevel@tonic-gate } 34447c478bd9Sstevel@tonic-gate 34457c478bd9Sstevel@tonic-gate lp = dnp->dn_left = 34467c478bd9Sstevel@tonic-gate dt_node_cook(lp, DT_IDFLG_REF | DT_IDFLG_MOD); 34477c478bd9Sstevel@tonic-gate 34487c478bd9Sstevel@tonic-gate rp = dnp->dn_right = 34497c478bd9Sstevel@tonic-gate dt_node_cook(rp, DT_IDFLG_REF | DT_IDFLG_MOD); 34507c478bd9Sstevel@tonic-gate 34517c478bd9Sstevel@tonic-gate if (!dt_node_is_integer(lp) || !dt_node_is_integer(rp)) { 34527c478bd9Sstevel@tonic-gate xyerror(D_OP_INT, "operator %s requires operands of " 34537c478bd9Sstevel@tonic-gate "integral type\n", opstr(op)); 34547c478bd9Sstevel@tonic-gate } 34557c478bd9Sstevel@tonic-gate goto asgn_common; 34567c478bd9Sstevel@tonic-gate 34577c478bd9Sstevel@tonic-gate case DT_TOK_MUL_EQ: 34587c478bd9Sstevel@tonic-gate case DT_TOK_DIV_EQ: 34597c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_IDENT) { 34607c478bd9Sstevel@tonic-gate dt_xcook_ident(lp, dtp->dt_globals, 34617c478bd9Sstevel@tonic-gate DT_IDENT_SCALAR, B_TRUE); 34627c478bd9Sstevel@tonic-gate } 34637c478bd9Sstevel@tonic-gate 34647c478bd9Sstevel@tonic-gate lp = dnp->dn_left = 34657c478bd9Sstevel@tonic-gate dt_node_cook(lp, DT_IDFLG_REF | DT_IDFLG_MOD); 34667c478bd9Sstevel@tonic-gate 34677c478bd9Sstevel@tonic-gate rp = dnp->dn_right = 34687c478bd9Sstevel@tonic-gate dt_node_cook(rp, DT_IDFLG_REF | DT_IDFLG_MOD); 34697c478bd9Sstevel@tonic-gate 34707c478bd9Sstevel@tonic-gate if (!dt_node_is_arith(lp) || !dt_node_is_arith(rp)) { 34717c478bd9Sstevel@tonic-gate xyerror(D_OP_ARITH, "operator %s requires operands of " 34727c478bd9Sstevel@tonic-gate "arithmetic type\n", opstr(op)); 34737c478bd9Sstevel@tonic-gate } 34747c478bd9Sstevel@tonic-gate goto asgn_common; 34757c478bd9Sstevel@tonic-gate 34767c478bd9Sstevel@tonic-gate case DT_TOK_ASGN: 34777c478bd9Sstevel@tonic-gate /* 34787c478bd9Sstevel@tonic-gate * If the left-hand side is an identifier, attempt to resolve 34797c478bd9Sstevel@tonic-gate * it as either an aggregation or scalar variable. We pass 34807c478bd9Sstevel@tonic-gate * B_TRUE to dt_xcook_ident to indicate that a new variable can 34817c478bd9Sstevel@tonic-gate * be created if no matching variable exists in the namespace. 34827c478bd9Sstevel@tonic-gate */ 34837c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_IDENT) { 34847c478bd9Sstevel@tonic-gate if (lp->dn_op == DT_TOK_AGG) { 34857c478bd9Sstevel@tonic-gate dt_xcook_ident(lp, dtp->dt_aggs, 34867c478bd9Sstevel@tonic-gate DT_IDENT_AGG, B_TRUE); 34877c478bd9Sstevel@tonic-gate } else { 34887c478bd9Sstevel@tonic-gate dt_xcook_ident(lp, dtp->dt_globals, 34897c478bd9Sstevel@tonic-gate DT_IDENT_SCALAR, B_TRUE); 34907c478bd9Sstevel@tonic-gate } 34917c478bd9Sstevel@tonic-gate } 34927c478bd9Sstevel@tonic-gate 34937c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, 0); /* don't set mod yet */ 34947c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 34957c478bd9Sstevel@tonic-gate 34967c478bd9Sstevel@tonic-gate /* 34977c478bd9Sstevel@tonic-gate * If the left-hand side is an aggregation, verify that we are 34987c478bd9Sstevel@tonic-gate * assigning it the result of an aggregating function. Once 34997c478bd9Sstevel@tonic-gate * we've done so, hide the func node in the aggregation and 35007c478bd9Sstevel@tonic-gate * return the aggregation itself up to the parse tree parent. 35017c478bd9Sstevel@tonic-gate * This transformation is legal since the assigned function 35027c478bd9Sstevel@tonic-gate * cannot change identity across disjoint cooking passes and 35037c478bd9Sstevel@tonic-gate * the argument list subtree is retained for later cooking. 35047c478bd9Sstevel@tonic-gate */ 35057c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_AGG) { 35067c478bd9Sstevel@tonic-gate const char *aname = lp->dn_ident->di_name; 35077c478bd9Sstevel@tonic-gate dt_ident_t *oid = lp->dn_ident->di_iarg; 35087c478bd9Sstevel@tonic-gate 35097c478bd9Sstevel@tonic-gate if (rp->dn_kind != DT_NODE_FUNC || 35107c478bd9Sstevel@tonic-gate rp->dn_ident->di_kind != DT_IDENT_AGGFUNC) { 35117c478bd9Sstevel@tonic-gate xyerror(D_AGG_FUNC, 35127c478bd9Sstevel@tonic-gate "@%s must be assigned the result of " 35137c478bd9Sstevel@tonic-gate "an aggregating function\n", aname); 35147c478bd9Sstevel@tonic-gate } 35157c478bd9Sstevel@tonic-gate 35167c478bd9Sstevel@tonic-gate if (oid != NULL && oid != rp->dn_ident) { 35177c478bd9Sstevel@tonic-gate xyerror(D_AGG_REDEF, 35187c478bd9Sstevel@tonic-gate "aggregation redefined: @%s\n\t " 35197c478bd9Sstevel@tonic-gate "current: @%s = %s( )\n\tprevious: @%s = " 35207c478bd9Sstevel@tonic-gate "%s( ) : line %d\n", aname, aname, 35217c478bd9Sstevel@tonic-gate rp->dn_ident->di_name, aname, oid->di_name, 35227c478bd9Sstevel@tonic-gate lp->dn_ident->di_lineno); 35237c478bd9Sstevel@tonic-gate } else if (oid == NULL) 35247c478bd9Sstevel@tonic-gate lp->dn_ident->di_iarg = rp->dn_ident; 35257c478bd9Sstevel@tonic-gate 35267c478bd9Sstevel@tonic-gate /* 35277c478bd9Sstevel@tonic-gate * Do not allow multiple aggregation assignments in a 35287c478bd9Sstevel@tonic-gate * single statement, e.g. (@a = count()) = count(); 35297c478bd9Sstevel@tonic-gate * We produce a message as if the result of aggregating 35307c478bd9Sstevel@tonic-gate * function does not propagate DT_NF_LVALUE. 35317c478bd9Sstevel@tonic-gate */ 35327c478bd9Sstevel@tonic-gate if (lp->dn_aggfun != NULL) { 35337c478bd9Sstevel@tonic-gate xyerror(D_OP_LVAL, "operator = requires " 35347c478bd9Sstevel@tonic-gate "modifiable lvalue as an operand\n"); 35357c478bd9Sstevel@tonic-gate } 35367c478bd9Sstevel@tonic-gate 35377c478bd9Sstevel@tonic-gate lp->dn_aggfun = rp; 35387c478bd9Sstevel@tonic-gate lp = dt_node_cook(lp, DT_IDFLG_MOD); 35397c478bd9Sstevel@tonic-gate 35407c478bd9Sstevel@tonic-gate dnp->dn_left = dnp->dn_right = NULL; 35417c478bd9Sstevel@tonic-gate dt_node_free(dnp); 35427c478bd9Sstevel@tonic-gate 35437c478bd9Sstevel@tonic-gate return (lp); 35447c478bd9Sstevel@tonic-gate } 35457c478bd9Sstevel@tonic-gate 35467c478bd9Sstevel@tonic-gate /* 35477c478bd9Sstevel@tonic-gate * If the right-hand side is a dynamic variable that is the 35487c478bd9Sstevel@tonic-gate * output of a translator, our result is the translated type. 35497c478bd9Sstevel@tonic-gate */ 35507c478bd9Sstevel@tonic-gate if ((idp = dt_node_resolve(rp, DT_IDENT_XLSOU)) != NULL) { 35517c478bd9Sstevel@tonic-gate ctfp = idp->di_ctfp; 35527c478bd9Sstevel@tonic-gate type = idp->di_type; 35537c478bd9Sstevel@tonic-gate uref = idp->di_flags & DT_IDFLG_USER; 35547c478bd9Sstevel@tonic-gate } else { 35557c478bd9Sstevel@tonic-gate ctfp = rp->dn_ctfp; 35567c478bd9Sstevel@tonic-gate type = rp->dn_type; 35577c478bd9Sstevel@tonic-gate uref = rp->dn_flags & DT_NF_USERLAND; 35587c478bd9Sstevel@tonic-gate } 35597c478bd9Sstevel@tonic-gate 35607c478bd9Sstevel@tonic-gate /* 35617c478bd9Sstevel@tonic-gate * If the left-hand side of an assignment statement is a virgin 35627c478bd9Sstevel@tonic-gate * variable created by this compilation pass, reset the type of 35637c478bd9Sstevel@tonic-gate * this variable to the type of the right-hand side. 35647c478bd9Sstevel@tonic-gate */ 35657c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_VAR && 35667c478bd9Sstevel@tonic-gate dt_ident_unref(lp->dn_ident)) { 3567a386cc11SRobert Mustacchi dt_node_type_assign(lp, ctfp, type, B_FALSE); 35687c478bd9Sstevel@tonic-gate dt_ident_type_assign(lp->dn_ident, ctfp, type); 35697c478bd9Sstevel@tonic-gate 35707c478bd9Sstevel@tonic-gate if (uref) { 35717c478bd9Sstevel@tonic-gate lp->dn_flags |= DT_NF_USERLAND; 35727c478bd9Sstevel@tonic-gate lp->dn_ident->di_flags |= DT_IDFLG_USER; 35737c478bd9Sstevel@tonic-gate } 35747c478bd9Sstevel@tonic-gate } 35757c478bd9Sstevel@tonic-gate 35767c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_VAR) 35777c478bd9Sstevel@tonic-gate lp->dn_ident->di_flags |= DT_IDFLG_MOD; 35787c478bd9Sstevel@tonic-gate 35797c478bd9Sstevel@tonic-gate /* 35807c478bd9Sstevel@tonic-gate * The rules for type checking for the assignment operators are 35817c478bd9Sstevel@tonic-gate * described in the ANSI-C spec (see K&R[A7.17]). We share 35827c478bd9Sstevel@tonic-gate * most of this code with the argument list checking code. 35837c478bd9Sstevel@tonic-gate */ 35847c478bd9Sstevel@tonic-gate if (!dt_node_is_string(lp)) { 35857c478bd9Sstevel@tonic-gate kind = ctf_type_kind(lp->dn_ctfp, 35867c478bd9Sstevel@tonic-gate ctf_type_resolve(lp->dn_ctfp, lp->dn_type)); 35877c478bd9Sstevel@tonic-gate 35887c478bd9Sstevel@tonic-gate if (kind == CTF_K_ARRAY || kind == CTF_K_FUNCTION) { 35897c478bd9Sstevel@tonic-gate xyerror(D_OP_ARRFUN, "operator %s may not be " 35907c478bd9Sstevel@tonic-gate "applied to operand of type \"%s\"\n", 35917c478bd9Sstevel@tonic-gate opstr(op), 35927c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n1, sizeof (n1))); 35937c478bd9Sstevel@tonic-gate } 35947c478bd9Sstevel@tonic-gate } 35957c478bd9Sstevel@tonic-gate 35967c478bd9Sstevel@tonic-gate if (idp != NULL && idp->di_kind == DT_IDENT_XLSOU && 35977c478bd9Sstevel@tonic-gate ctf_type_compat(lp->dn_ctfp, lp->dn_type, ctfp, type)) 35987c478bd9Sstevel@tonic-gate goto asgn_common; 35997c478bd9Sstevel@tonic-gate 36007c478bd9Sstevel@tonic-gate if (dt_node_is_argcompat(lp, rp)) 36017c478bd9Sstevel@tonic-gate goto asgn_common; 36027c478bd9Sstevel@tonic-gate 36037c478bd9Sstevel@tonic-gate xyerror(D_OP_INCOMPAT, 36047c478bd9Sstevel@tonic-gate "operands have incompatible types: \"%s\" %s \"%s\"\n", 36057c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n1, sizeof (n1)), opstr(op), 36067c478bd9Sstevel@tonic-gate dt_node_type_name(rp, n2, sizeof (n2))); 36077c478bd9Sstevel@tonic-gate /*NOTREACHED*/ 36087c478bd9Sstevel@tonic-gate 36097c478bd9Sstevel@tonic-gate case DT_TOK_ADD_EQ: 36107c478bd9Sstevel@tonic-gate case DT_TOK_SUB_EQ: 36117c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_IDENT) { 36127c478bd9Sstevel@tonic-gate dt_xcook_ident(lp, dtp->dt_globals, 36137c478bd9Sstevel@tonic-gate DT_IDENT_SCALAR, B_TRUE); 36147c478bd9Sstevel@tonic-gate } 36157c478bd9Sstevel@tonic-gate 36167c478bd9Sstevel@tonic-gate lp = dnp->dn_left = 36177c478bd9Sstevel@tonic-gate dt_node_cook(lp, DT_IDFLG_REF | DT_IDFLG_MOD); 36187c478bd9Sstevel@tonic-gate 36197c478bd9Sstevel@tonic-gate rp = dnp->dn_right = 36207c478bd9Sstevel@tonic-gate dt_node_cook(rp, DT_IDFLG_REF | DT_IDFLG_MOD); 36217c478bd9Sstevel@tonic-gate 36227c478bd9Sstevel@tonic-gate if (dt_node_is_string(lp) || dt_node_is_string(rp)) { 36237c478bd9Sstevel@tonic-gate xyerror(D_OP_INCOMPAT, "operands have " 36247c478bd9Sstevel@tonic-gate "incompatible types: \"%s\" %s \"%s\"\n", 36257c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n1, sizeof (n1)), opstr(op), 36267c478bd9Sstevel@tonic-gate dt_node_type_name(rp, n2, sizeof (n2))); 36277c478bd9Sstevel@tonic-gate } 36287c478bd9Sstevel@tonic-gate 36297c478bd9Sstevel@tonic-gate /* 36307c478bd9Sstevel@tonic-gate * The rules for type checking for the assignment operators are 36317c478bd9Sstevel@tonic-gate * described in the ANSI-C spec (see K&R[A7.17]). To these 36327c478bd9Sstevel@tonic-gate * rules we add that only writable D nodes can be modified. 36337c478bd9Sstevel@tonic-gate */ 36347c478bd9Sstevel@tonic-gate if (dt_node_is_integer(lp) == 0 || 36357c478bd9Sstevel@tonic-gate dt_node_is_integer(rp) == 0) { 36367c478bd9Sstevel@tonic-gate if (!dt_node_is_pointer(lp) || dt_node_is_vfptr(lp)) { 36377c478bd9Sstevel@tonic-gate xyerror(D_OP_VFPTR, 36387c478bd9Sstevel@tonic-gate "operator %s requires left-hand scalar " 36397c478bd9Sstevel@tonic-gate "operand of known size\n", opstr(op)); 36407c478bd9Sstevel@tonic-gate } else if (dt_node_is_integer(rp) == 0 && 36417c478bd9Sstevel@tonic-gate dt_node_is_ptrcompat(lp, rp, NULL, NULL) == 0) { 36427c478bd9Sstevel@tonic-gate xyerror(D_OP_INCOMPAT, "operands have " 36437c478bd9Sstevel@tonic-gate "incompatible types: \"%s\" %s \"%s\"\n", 36447c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n1, sizeof (n1)), 36457c478bd9Sstevel@tonic-gate opstr(op), 36467c478bd9Sstevel@tonic-gate dt_node_type_name(rp, n2, sizeof (n2))); 36477c478bd9Sstevel@tonic-gate } 36487c478bd9Sstevel@tonic-gate } 36497c478bd9Sstevel@tonic-gate asgn_common: 3650e5803b76SAdam H. Leventhal dt_assign_common(dnp); 36517c478bd9Sstevel@tonic-gate break; 36527c478bd9Sstevel@tonic-gate 36537c478bd9Sstevel@tonic-gate case DT_TOK_PTR: 36547c478bd9Sstevel@tonic-gate /* 36550af8f00bSMatthew Ahrens * If the left-hand side of operator -> is one of the scoping 36560af8f00bSMatthew Ahrens * keywords, permit a local or thread variable to be created or 36570af8f00bSMatthew Ahrens * referenced. 36587c478bd9Sstevel@tonic-gate */ 36590af8f00bSMatthew Ahrens if (lp->dn_kind == DT_NODE_IDENT) { 36600af8f00bSMatthew Ahrens dt_idhash_t *dhp = NULL; 36610af8f00bSMatthew Ahrens 36620af8f00bSMatthew Ahrens if (strcmp(lp->dn_string, "self") == 0) { 36630af8f00bSMatthew Ahrens dhp = dtp->dt_tls; 36640af8f00bSMatthew Ahrens } else if (strcmp(lp->dn_string, "this") == 0) { 36650af8f00bSMatthew Ahrens dhp = yypcb->pcb_locals; 36660af8f00bSMatthew Ahrens } 36670af8f00bSMatthew Ahrens if (dhp != NULL) { 36687c478bd9Sstevel@tonic-gate if (rp->dn_kind != DT_NODE_VAR) { 36690af8f00bSMatthew Ahrens dt_xcook_ident(rp, dhp, 36707c478bd9Sstevel@tonic-gate DT_IDENT_SCALAR, B_TRUE); 36717c478bd9Sstevel@tonic-gate } 36727c478bd9Sstevel@tonic-gate 36737c478bd9Sstevel@tonic-gate if (idflags != 0) 36747c478bd9Sstevel@tonic-gate rp = dt_node_cook(rp, idflags); 36757c478bd9Sstevel@tonic-gate 36760af8f00bSMatthew Ahrens /* avoid freeing rp */ 36770af8f00bSMatthew Ahrens dnp->dn_right = dnp->dn_left; 36787c478bd9Sstevel@tonic-gate dt_node_free(dnp); 36797c478bd9Sstevel@tonic-gate return (rp); 36807c478bd9Sstevel@tonic-gate } 36817c478bd9Sstevel@tonic-gate } 36827c478bd9Sstevel@tonic-gate /*FALLTHRU*/ 36837c478bd9Sstevel@tonic-gate case DT_TOK_DOT: 36847c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 36857c478bd9Sstevel@tonic-gate 36867c478bd9Sstevel@tonic-gate if (rp->dn_kind != DT_NODE_IDENT) { 36877c478bd9Sstevel@tonic-gate xyerror(D_OP_IDENT, "operator %s must be followed by " 36887c478bd9Sstevel@tonic-gate "an identifier\n", opstr(op)); 36897c478bd9Sstevel@tonic-gate } 36907c478bd9Sstevel@tonic-gate 36917c478bd9Sstevel@tonic-gate if ((idp = dt_node_resolve(lp, DT_IDENT_XLSOU)) != NULL || 36927c478bd9Sstevel@tonic-gate (idp = dt_node_resolve(lp, DT_IDENT_XLPTR)) != NULL) { 36937c478bd9Sstevel@tonic-gate /* 36947c478bd9Sstevel@tonic-gate * If the left-hand side is a translated struct or ptr, 36957c478bd9Sstevel@tonic-gate * the type of the left is the translation output type. 36967c478bd9Sstevel@tonic-gate */ 36977c478bd9Sstevel@tonic-gate dt_xlator_t *dxp = idp->di_data; 36987c478bd9Sstevel@tonic-gate 36997c478bd9Sstevel@tonic-gate if (dt_xlator_member(dxp, rp->dn_string) == NULL) { 37007c478bd9Sstevel@tonic-gate xyerror(D_XLATE_NOCONV, 37017c478bd9Sstevel@tonic-gate "translator does not define conversion " 37027c478bd9Sstevel@tonic-gate "for member: %s\n", rp->dn_string); 37037c478bd9Sstevel@tonic-gate } 37047c478bd9Sstevel@tonic-gate 37057c478bd9Sstevel@tonic-gate ctfp = idp->di_ctfp; 37067c478bd9Sstevel@tonic-gate type = ctf_type_resolve(ctfp, idp->di_type); 37077c478bd9Sstevel@tonic-gate uref = idp->di_flags & DT_IDFLG_USER; 37087c478bd9Sstevel@tonic-gate } else { 37097c478bd9Sstevel@tonic-gate ctfp = lp->dn_ctfp; 37107c478bd9Sstevel@tonic-gate type = ctf_type_resolve(ctfp, lp->dn_type); 37117c478bd9Sstevel@tonic-gate uref = lp->dn_flags & DT_NF_USERLAND; 37127c478bd9Sstevel@tonic-gate } 37137c478bd9Sstevel@tonic-gate 37147c478bd9Sstevel@tonic-gate kind = ctf_type_kind(ctfp, type); 37157c478bd9Sstevel@tonic-gate 37167c478bd9Sstevel@tonic-gate if (op == DT_TOK_PTR) { 37177c478bd9Sstevel@tonic-gate if (kind != CTF_K_POINTER) { 37187c478bd9Sstevel@tonic-gate xyerror(D_OP_PTR, "operator %s must be " 37197c478bd9Sstevel@tonic-gate "applied to a pointer\n", opstr(op)); 37207c478bd9Sstevel@tonic-gate } 37217c478bd9Sstevel@tonic-gate type = ctf_type_reference(ctfp, type); 37227c478bd9Sstevel@tonic-gate type = ctf_type_resolve(ctfp, type); 37237c478bd9Sstevel@tonic-gate kind = ctf_type_kind(ctfp, type); 37247c478bd9Sstevel@tonic-gate } 37257c478bd9Sstevel@tonic-gate 37267c478bd9Sstevel@tonic-gate /* 37277c478bd9Sstevel@tonic-gate * If we follow a reference to a forward declaration tag, 37287c478bd9Sstevel@tonic-gate * search the entire type space for the actual definition. 37297c478bd9Sstevel@tonic-gate */ 37307c478bd9Sstevel@tonic-gate while (kind == CTF_K_FORWARD) { 37317c478bd9Sstevel@tonic-gate char *tag = ctf_type_name(ctfp, type, n1, sizeof (n1)); 37327c478bd9Sstevel@tonic-gate dtrace_typeinfo_t dtt; 37337c478bd9Sstevel@tonic-gate 37347c478bd9Sstevel@tonic-gate if (tag != NULL && dt_type_lookup(tag, &dtt) == 0 && 37357c478bd9Sstevel@tonic-gate (dtt.dtt_ctfp != ctfp || dtt.dtt_type != type)) { 37367c478bd9Sstevel@tonic-gate ctfp = dtt.dtt_ctfp; 37377c478bd9Sstevel@tonic-gate type = ctf_type_resolve(ctfp, dtt.dtt_type); 37387c478bd9Sstevel@tonic-gate kind = ctf_type_kind(ctfp, type); 37397c478bd9Sstevel@tonic-gate } else { 37407c478bd9Sstevel@tonic-gate xyerror(D_OP_INCOMPLETE, 37417c478bd9Sstevel@tonic-gate "operator %s cannot be applied to a " 37427c478bd9Sstevel@tonic-gate "forward declaration: no %s definition " 37437c478bd9Sstevel@tonic-gate "is available\n", opstr(op), tag); 37447c478bd9Sstevel@tonic-gate } 37457c478bd9Sstevel@tonic-gate } 37467c478bd9Sstevel@tonic-gate 37477c478bd9Sstevel@tonic-gate if (kind != CTF_K_STRUCT && kind != CTF_K_UNION) { 37487c478bd9Sstevel@tonic-gate if (op == DT_TOK_PTR) { 37497c478bd9Sstevel@tonic-gate xyerror(D_OP_SOU, "operator -> cannot be " 37507c478bd9Sstevel@tonic-gate "applied to pointer to type \"%s\"; must " 37517c478bd9Sstevel@tonic-gate "be applied to a struct or union pointer\n", 37527c478bd9Sstevel@tonic-gate ctf_type_name(ctfp, type, n1, sizeof (n1))); 37537c478bd9Sstevel@tonic-gate } else { 37547c478bd9Sstevel@tonic-gate xyerror(D_OP_SOU, "operator %s cannot be " 37557c478bd9Sstevel@tonic-gate "applied to type \"%s\"; must be applied " 37567c478bd9Sstevel@tonic-gate "to a struct or union\n", opstr(op), 37577c478bd9Sstevel@tonic-gate ctf_type_name(ctfp, type, n1, sizeof (n1))); 37587c478bd9Sstevel@tonic-gate } 37597c478bd9Sstevel@tonic-gate } 37607c478bd9Sstevel@tonic-gate 37617c478bd9Sstevel@tonic-gate if (ctf_member_info(ctfp, type, rp->dn_string, &m) == CTF_ERR) { 37627c478bd9Sstevel@tonic-gate xyerror(D_TYPE_MEMBER, 37637c478bd9Sstevel@tonic-gate "%s is not a member of %s\n", rp->dn_string, 37647c478bd9Sstevel@tonic-gate ctf_type_name(ctfp, type, n1, sizeof (n1))); 37657c478bd9Sstevel@tonic-gate } 37667c478bd9Sstevel@tonic-gate 37677c478bd9Sstevel@tonic-gate type = ctf_type_resolve(ctfp, m.ctm_type); 37687c478bd9Sstevel@tonic-gate kind = ctf_type_kind(ctfp, type); 37697c478bd9Sstevel@tonic-gate 3770a386cc11SRobert Mustacchi dt_node_type_assign(dnp, ctfp, m.ctm_type, B_FALSE); 37717c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, lp->dn_attr); 37727c478bd9Sstevel@tonic-gate 37737c478bd9Sstevel@tonic-gate if (op == DT_TOK_PTR && (kind != CTF_K_ARRAY || 37747c478bd9Sstevel@tonic-gate dt_node_is_string(dnp))) 37757c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_LVALUE; /* see K&R[A7.3.3] */ 37767c478bd9Sstevel@tonic-gate 37777c478bd9Sstevel@tonic-gate if (op == DT_TOK_DOT && (lp->dn_flags & DT_NF_LVALUE) && 37787c478bd9Sstevel@tonic-gate (kind != CTF_K_ARRAY || dt_node_is_string(dnp))) 37797c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_LVALUE; /* see K&R[A7.3.3] */ 37807c478bd9Sstevel@tonic-gate 37817c478bd9Sstevel@tonic-gate if (lp->dn_flags & DT_NF_WRITABLE) 37827c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_WRITABLE; 37837c478bd9Sstevel@tonic-gate 37847c478bd9Sstevel@tonic-gate if (uref && (kind == CTF_K_POINTER || 37857c478bd9Sstevel@tonic-gate (dnp->dn_flags & DT_NF_REF))) 37867c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_USERLAND; 37877c478bd9Sstevel@tonic-gate break; 37887c478bd9Sstevel@tonic-gate 37897c478bd9Sstevel@tonic-gate case DT_TOK_LBRAC: { 37907c478bd9Sstevel@tonic-gate /* 37917c478bd9Sstevel@tonic-gate * If op is DT_TOK_LBRAC, we know from the special-case code at 37927c478bd9Sstevel@tonic-gate * the top that lp is either a D variable or an aggregation. 37937c478bd9Sstevel@tonic-gate */ 37947c478bd9Sstevel@tonic-gate dt_node_t *lnp; 37957c478bd9Sstevel@tonic-gate 37967c478bd9Sstevel@tonic-gate /* 37977c478bd9Sstevel@tonic-gate * If the left-hand side is an aggregation, just set dn_aggtup 37987c478bd9Sstevel@tonic-gate * to the right-hand side and return the cooked aggregation. 37997c478bd9Sstevel@tonic-gate * This transformation is legal since we are just collapsing 38007c478bd9Sstevel@tonic-gate * nodes to simplify later processing, and the entire aggtup 38017c478bd9Sstevel@tonic-gate * parse subtree is retained for subsequent cooking passes. 38027c478bd9Sstevel@tonic-gate */ 38037c478bd9Sstevel@tonic-gate if (lp->dn_kind == DT_NODE_AGG) { 38047c478bd9Sstevel@tonic-gate if (lp->dn_aggtup != NULL) { 38057c478bd9Sstevel@tonic-gate xyerror(D_AGG_MDIM, "improper attempt to " 38067c478bd9Sstevel@tonic-gate "reference @%s as a multi-dimensional " 38077c478bd9Sstevel@tonic-gate "array\n", lp->dn_ident->di_name); 38087c478bd9Sstevel@tonic-gate } 38097c478bd9Sstevel@tonic-gate 38107c478bd9Sstevel@tonic-gate lp->dn_aggtup = rp; 38117c478bd9Sstevel@tonic-gate lp = dt_node_cook(lp, 0); 38127c478bd9Sstevel@tonic-gate 38137c478bd9Sstevel@tonic-gate dnp->dn_left = dnp->dn_right = NULL; 38147c478bd9Sstevel@tonic-gate dt_node_free(dnp); 38157c478bd9Sstevel@tonic-gate 38167c478bd9Sstevel@tonic-gate return (lp); 38177c478bd9Sstevel@tonic-gate } 38187c478bd9Sstevel@tonic-gate 38197c478bd9Sstevel@tonic-gate assert(lp->dn_kind == DT_NODE_VAR); 38207c478bd9Sstevel@tonic-gate idp = lp->dn_ident; 38217c478bd9Sstevel@tonic-gate 38227c478bd9Sstevel@tonic-gate /* 38237c478bd9Sstevel@tonic-gate * If the left-hand side is a non-global scalar that hasn't yet 38247c478bd9Sstevel@tonic-gate * been referenced or modified, it was just created by self-> 38257c478bd9Sstevel@tonic-gate * or this-> and we can convert it from scalar to assoc array. 38267c478bd9Sstevel@tonic-gate */ 38277c478bd9Sstevel@tonic-gate if (idp->di_kind == DT_IDENT_SCALAR && dt_ident_unref(idp) && 38287c478bd9Sstevel@tonic-gate (idp->di_flags & (DT_IDFLG_LOCAL | DT_IDFLG_TLS)) != 0) { 38297c478bd9Sstevel@tonic-gate 38307c478bd9Sstevel@tonic-gate if (idp->di_flags & DT_IDFLG_LOCAL) { 38317c478bd9Sstevel@tonic-gate xyerror(D_ARR_LOCAL, 38327c478bd9Sstevel@tonic-gate "local variables may not be used as " 38337c478bd9Sstevel@tonic-gate "associative arrays: %s\n", idp->di_name); 38347c478bd9Sstevel@tonic-gate } 38357c478bd9Sstevel@tonic-gate 38367c478bd9Sstevel@tonic-gate dt_dprintf("morph variable %s (id %u) from scalar to " 38377c478bd9Sstevel@tonic-gate "array\n", idp->di_name, idp->di_id); 38387c478bd9Sstevel@tonic-gate 38397c478bd9Sstevel@tonic-gate dt_ident_morph(idp, DT_IDENT_ARRAY, 38407c478bd9Sstevel@tonic-gate &dt_idops_assc, NULL); 38417c478bd9Sstevel@tonic-gate } 38427c478bd9Sstevel@tonic-gate 38437c478bd9Sstevel@tonic-gate if (idp->di_kind != DT_IDENT_ARRAY) { 38447c478bd9Sstevel@tonic-gate xyerror(D_IDENT_BADREF, "%s '%s' may not be referenced " 38457c478bd9Sstevel@tonic-gate "as %s\n", dt_idkind_name(idp->di_kind), 38467c478bd9Sstevel@tonic-gate idp->di_name, dt_idkind_name(DT_IDENT_ARRAY)); 38477c478bd9Sstevel@tonic-gate } 38487c478bd9Sstevel@tonic-gate 38497c478bd9Sstevel@tonic-gate /* 38507c478bd9Sstevel@tonic-gate * Now that we've confirmed our left-hand side is a DT_NODE_VAR 38517c478bd9Sstevel@tonic-gate * of idkind DT_IDENT_ARRAY, we need to splice the [ node from 38527c478bd9Sstevel@tonic-gate * the parse tree and leave a cooked DT_NODE_VAR in its place 38537c478bd9Sstevel@tonic-gate * where dn_args for the VAR node is the right-hand 'rp' tree, 38547c478bd9Sstevel@tonic-gate * as shown in the parse tree diagram below: 38557c478bd9Sstevel@tonic-gate * 38567c478bd9Sstevel@tonic-gate * / / 38577c478bd9Sstevel@tonic-gate * [ OP2 "[" ]=dnp [ VAR ]=dnp 38587c478bd9Sstevel@tonic-gate * / \ => | 38597c478bd9Sstevel@tonic-gate * / \ +- dn_args -> [ ??? ]=rp 38607c478bd9Sstevel@tonic-gate * [ VAR ]=lp [ ??? ]=rp 38617c478bd9Sstevel@tonic-gate * 38627c478bd9Sstevel@tonic-gate * Since the final dt_node_cook(dnp) can fail using longjmp we 38637c478bd9Sstevel@tonic-gate * must perform the transformations as a group first by over- 38647c478bd9Sstevel@tonic-gate * writing 'dnp' to become the VAR node, so that the parse tree 38657c478bd9Sstevel@tonic-gate * is guaranteed to be in a consistent state if the cook fails. 38667c478bd9Sstevel@tonic-gate */ 38677c478bd9Sstevel@tonic-gate assert(lp->dn_kind == DT_NODE_VAR); 38687c478bd9Sstevel@tonic-gate assert(lp->dn_args == NULL); 38697c478bd9Sstevel@tonic-gate 38707c478bd9Sstevel@tonic-gate lnp = dnp->dn_link; 38717c478bd9Sstevel@tonic-gate bcopy(lp, dnp, sizeof (dt_node_t)); 38727c478bd9Sstevel@tonic-gate dnp->dn_link = lnp; 38737c478bd9Sstevel@tonic-gate 38747c478bd9Sstevel@tonic-gate dnp->dn_args = rp; 38757c478bd9Sstevel@tonic-gate dnp->dn_list = NULL; 38767c478bd9Sstevel@tonic-gate 38777c478bd9Sstevel@tonic-gate dt_node_free(lp); 38787c478bd9Sstevel@tonic-gate return (dt_node_cook(dnp, idflags)); 38797c478bd9Sstevel@tonic-gate } 38807c478bd9Sstevel@tonic-gate 38817c478bd9Sstevel@tonic-gate case DT_TOK_XLATE: { 38827c478bd9Sstevel@tonic-gate dt_xlator_t *dxp; 38837c478bd9Sstevel@tonic-gate 38847c478bd9Sstevel@tonic-gate assert(lp->dn_kind == DT_NODE_TYPE); 38857c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 38867c478bd9Sstevel@tonic-gate dxp = dt_xlator_lookup(dtp, rp, lp, DT_XLATE_FUZZY); 38877c478bd9Sstevel@tonic-gate 38887c478bd9Sstevel@tonic-gate if (dxp == NULL) { 38897c478bd9Sstevel@tonic-gate xyerror(D_XLATE_NONE, 38907c478bd9Sstevel@tonic-gate "cannot translate from \"%s\" to \"%s\"\n", 38917c478bd9Sstevel@tonic-gate dt_node_type_name(rp, n1, sizeof (n1)), 38927c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n2, sizeof (n2))); 38937c478bd9Sstevel@tonic-gate } 38947c478bd9Sstevel@tonic-gate 38957c478bd9Sstevel@tonic-gate dnp->dn_ident = dt_xlator_ident(dxp, lp->dn_ctfp, lp->dn_type); 3896a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_DYN_CTFP(dtp), DT_DYN_TYPE(dtp), 3897a386cc11SRobert Mustacchi B_FALSE); 38987c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, 38997c478bd9Sstevel@tonic-gate dt_attr_min(rp->dn_attr, dnp->dn_ident->di_attr)); 39007c478bd9Sstevel@tonic-gate break; 39017c478bd9Sstevel@tonic-gate } 39027c478bd9Sstevel@tonic-gate 39037c478bd9Sstevel@tonic-gate case DT_TOK_LPAR: { 39047c478bd9Sstevel@tonic-gate ctf_id_t ltype, rtype; 39057c478bd9Sstevel@tonic-gate uint_t lkind, rkind; 39067c478bd9Sstevel@tonic-gate 39077c478bd9Sstevel@tonic-gate assert(lp->dn_kind == DT_NODE_TYPE); 39087c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 39097c478bd9Sstevel@tonic-gate 39107c478bd9Sstevel@tonic-gate ltype = ctf_type_resolve(lp->dn_ctfp, lp->dn_type); 39117c478bd9Sstevel@tonic-gate lkind = ctf_type_kind(lp->dn_ctfp, ltype); 39127c478bd9Sstevel@tonic-gate 39137c478bd9Sstevel@tonic-gate rtype = ctf_type_resolve(rp->dn_ctfp, rp->dn_type); 39147c478bd9Sstevel@tonic-gate rkind = ctf_type_kind(rp->dn_ctfp, rtype); 39157c478bd9Sstevel@tonic-gate 39167c478bd9Sstevel@tonic-gate /* 39177c478bd9Sstevel@tonic-gate * The rules for casting are loosely explained in K&R[A7.5] 39187c478bd9Sstevel@tonic-gate * and K&R[A6]. Basically, we can cast to the same type or 39197c478bd9Sstevel@tonic-gate * same base type, between any kind of scalar values, from 39207c478bd9Sstevel@tonic-gate * arrays to pointers, and we can cast anything to void. 39217c478bd9Sstevel@tonic-gate * To these rules D adds casts from scalars to strings. 39227c478bd9Sstevel@tonic-gate */ 39237c478bd9Sstevel@tonic-gate if (ctf_type_compat(lp->dn_ctfp, lp->dn_type, 39247c478bd9Sstevel@tonic-gate rp->dn_ctfp, rp->dn_type)) 39257c478bd9Sstevel@tonic-gate /*EMPTY*/; 39267c478bd9Sstevel@tonic-gate else if (dt_node_is_scalar(lp) && 39277c478bd9Sstevel@tonic-gate (dt_node_is_scalar(rp) || rkind == CTF_K_FUNCTION)) 39287c478bd9Sstevel@tonic-gate /*EMPTY*/; 39297c478bd9Sstevel@tonic-gate else if (dt_node_is_void(lp)) 39307c478bd9Sstevel@tonic-gate /*EMPTY*/; 39317c478bd9Sstevel@tonic-gate else if (lkind == CTF_K_POINTER && dt_node_is_pointer(rp)) 39327c478bd9Sstevel@tonic-gate /*EMPTY*/; 39337c478bd9Sstevel@tonic-gate else if (dt_node_is_string(lp) && (dt_node_is_scalar(rp) || 39347c478bd9Sstevel@tonic-gate dt_node_is_pointer(rp) || dt_node_is_strcompat(rp))) 39357c478bd9Sstevel@tonic-gate /*EMPTY*/; 39367c478bd9Sstevel@tonic-gate else { 39377c478bd9Sstevel@tonic-gate xyerror(D_CAST_INVAL, 39387c478bd9Sstevel@tonic-gate "invalid cast expression: \"%s\" to \"%s\"\n", 39397c478bd9Sstevel@tonic-gate dt_node_type_name(rp, n1, sizeof (n1)), 39407c478bd9Sstevel@tonic-gate dt_node_type_name(lp, n2, sizeof (n2))); 39417c478bd9Sstevel@tonic-gate } 39427c478bd9Sstevel@tonic-gate 39437c478bd9Sstevel@tonic-gate dt_node_type_propagate(lp, dnp); /* see K&R[A7.5] */ 39447c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 3945e5803b76SAdam H. Leventhal 3946e5803b76SAdam H. Leventhal /* 3947e5803b76SAdam H. Leventhal * If it's a pointer then should be able to (attempt to) 3948e5803b76SAdam H. Leventhal * assign to it. 3949e5803b76SAdam H. Leventhal */ 3950e5803b76SAdam H. Leventhal if (lkind == CTF_K_POINTER) 3951e5803b76SAdam H. Leventhal dnp->dn_flags |= DT_NF_WRITABLE; 3952e5803b76SAdam H. Leventhal 39537c478bd9Sstevel@tonic-gate break; 39547c478bd9Sstevel@tonic-gate } 39557c478bd9Sstevel@tonic-gate 39567c478bd9Sstevel@tonic-gate case DT_TOK_COMMA: 39577c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(lp, DT_IDFLG_REF); 39587c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(rp, DT_IDFLG_REF); 39597c478bd9Sstevel@tonic-gate 39607c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(lp) || dt_node_is_dynamic(rp)) { 39617c478bd9Sstevel@tonic-gate xyerror(D_OP_DYN, "operator %s operands " 39627c478bd9Sstevel@tonic-gate "cannot be of dynamic type\n", opstr(op)); 39637c478bd9Sstevel@tonic-gate } 39647c478bd9Sstevel@tonic-gate 39657c478bd9Sstevel@tonic-gate if (dt_node_is_actfunc(lp) || dt_node_is_actfunc(rp)) { 39667c478bd9Sstevel@tonic-gate xyerror(D_OP_ACT, "operator %s operands " 39677c478bd9Sstevel@tonic-gate "cannot be actions\n", opstr(op)); 39687c478bd9Sstevel@tonic-gate } 39697c478bd9Sstevel@tonic-gate 39707c478bd9Sstevel@tonic-gate dt_node_type_propagate(rp, dnp); /* see K&R[A7.18] */ 39717c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(lp->dn_attr, rp->dn_attr)); 39727c478bd9Sstevel@tonic-gate break; 39737c478bd9Sstevel@tonic-gate 39747c478bd9Sstevel@tonic-gate default: 39757c478bd9Sstevel@tonic-gate xyerror(D_UNKNOWN, "invalid binary op %s\n", opstr(op)); 39767c478bd9Sstevel@tonic-gate } 39777c478bd9Sstevel@tonic-gate 39787c478bd9Sstevel@tonic-gate /* 39797c478bd9Sstevel@tonic-gate * Complete the conversion of E1[E2] to *((E1)+(E2)) that we started 39807c478bd9Sstevel@tonic-gate * at the top of our switch() above (see K&R[A7.3.1]). Since E2 is 39817c478bd9Sstevel@tonic-gate * parsed as an argument_expression_list by dt_grammar.y, we can 39827c478bd9Sstevel@tonic-gate * end up with a comma-separated list inside of a non-associative 39837c478bd9Sstevel@tonic-gate * array reference. We check for this and report an appropriate error. 39847c478bd9Sstevel@tonic-gate */ 39857c478bd9Sstevel@tonic-gate if (dnp->dn_op == DT_TOK_LBRAC && op == DT_TOK_ADD) { 39867c478bd9Sstevel@tonic-gate dt_node_t *pnp; 39877c478bd9Sstevel@tonic-gate 39887c478bd9Sstevel@tonic-gate if (rp->dn_list != NULL) { 39897c478bd9Sstevel@tonic-gate xyerror(D_ARR_BADREF, 39907c478bd9Sstevel@tonic-gate "cannot access %s as an associative array\n", 39917c478bd9Sstevel@tonic-gate dt_node_name(lp, n1, sizeof (n1))); 39927c478bd9Sstevel@tonic-gate } 39937c478bd9Sstevel@tonic-gate 39947c478bd9Sstevel@tonic-gate dnp->dn_op = DT_TOK_ADD; 39957c478bd9Sstevel@tonic-gate pnp = dt_node_op1(DT_TOK_DEREF, dnp); 39967c478bd9Sstevel@tonic-gate 39977c478bd9Sstevel@tonic-gate /* 39987c478bd9Sstevel@tonic-gate * Cook callbacks are not typically permitted to allocate nodes. 39997c478bd9Sstevel@tonic-gate * When we do, we must insert them in the middle of an existing 40007c478bd9Sstevel@tonic-gate * allocation list rather than having them appended to the pcb 40017c478bd9Sstevel@tonic-gate * list because the sub-expression may be part of a definition. 40027c478bd9Sstevel@tonic-gate */ 40037c478bd9Sstevel@tonic-gate assert(yypcb->pcb_list == pnp); 40047c478bd9Sstevel@tonic-gate yypcb->pcb_list = pnp->dn_link; 40057c478bd9Sstevel@tonic-gate 40067c478bd9Sstevel@tonic-gate pnp->dn_link = dnp->dn_link; 40077c478bd9Sstevel@tonic-gate dnp->dn_link = pnp; 40087c478bd9Sstevel@tonic-gate 40097c478bd9Sstevel@tonic-gate return (dt_node_cook(pnp, DT_IDFLG_REF)); 40107c478bd9Sstevel@tonic-gate } 40117c478bd9Sstevel@tonic-gate 40127c478bd9Sstevel@tonic-gate return (dnp); 40137c478bd9Sstevel@tonic-gate } 40147c478bd9Sstevel@tonic-gate 40157c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 40167c478bd9Sstevel@tonic-gate static dt_node_t * 40177c478bd9Sstevel@tonic-gate dt_cook_op3(dt_node_t *dnp, uint_t idflags) 40187c478bd9Sstevel@tonic-gate { 40197c478bd9Sstevel@tonic-gate dt_node_t *lp, *rp; 40207c478bd9Sstevel@tonic-gate ctf_file_t *ctfp; 40217c478bd9Sstevel@tonic-gate ctf_id_t type; 40227c478bd9Sstevel@tonic-gate 40237c478bd9Sstevel@tonic-gate dnp->dn_expr = dt_node_cook(dnp->dn_expr, DT_IDFLG_REF); 40247c478bd9Sstevel@tonic-gate lp = dnp->dn_left = dt_node_cook(dnp->dn_left, DT_IDFLG_REF); 40257c478bd9Sstevel@tonic-gate rp = dnp->dn_right = dt_node_cook(dnp->dn_right, DT_IDFLG_REF); 40267c478bd9Sstevel@tonic-gate 40277c478bd9Sstevel@tonic-gate if (!dt_node_is_scalar(dnp->dn_expr)) { 40287c478bd9Sstevel@tonic-gate xyerror(D_OP_SCALAR, 40297c478bd9Sstevel@tonic-gate "operator ?: expression must be of scalar type\n"); 40307c478bd9Sstevel@tonic-gate } 40317c478bd9Sstevel@tonic-gate 40327c478bd9Sstevel@tonic-gate if (dt_node_is_dynamic(lp) || dt_node_is_dynamic(rp)) { 40337c478bd9Sstevel@tonic-gate xyerror(D_OP_DYN, 40347c478bd9Sstevel@tonic-gate "operator ?: operands cannot be of dynamic type\n"); 40357c478bd9Sstevel@tonic-gate } 40367c478bd9Sstevel@tonic-gate 40377c478bd9Sstevel@tonic-gate /* 40387c478bd9Sstevel@tonic-gate * The rules for type checking for the ternary operator are complex and 40397c478bd9Sstevel@tonic-gate * are described in the ANSI-C spec (see K&R[A7.16]). We implement 40407c478bd9Sstevel@tonic-gate * the various tests in order from least to most expensive. 40417c478bd9Sstevel@tonic-gate */ 40427c478bd9Sstevel@tonic-gate if (ctf_type_compat(lp->dn_ctfp, lp->dn_type, 40437c478bd9Sstevel@tonic-gate rp->dn_ctfp, rp->dn_type)) { 40447c478bd9Sstevel@tonic-gate ctfp = lp->dn_ctfp; 40457c478bd9Sstevel@tonic-gate type = lp->dn_type; 40467c478bd9Sstevel@tonic-gate } else if (dt_node_is_integer(lp) && dt_node_is_integer(rp)) { 40477c478bd9Sstevel@tonic-gate dt_type_promote(lp, rp, &ctfp, &type); 40487c478bd9Sstevel@tonic-gate } else if (dt_node_is_strcompat(lp) && dt_node_is_strcompat(rp) && 40497c478bd9Sstevel@tonic-gate (dt_node_is_string(lp) || dt_node_is_string(rp))) { 40507c478bd9Sstevel@tonic-gate ctfp = DT_STR_CTFP(yypcb->pcb_hdl); 40517c478bd9Sstevel@tonic-gate type = DT_STR_TYPE(yypcb->pcb_hdl); 40527c478bd9Sstevel@tonic-gate } else if (dt_node_is_ptrcompat(lp, rp, &ctfp, &type) == 0) { 40537c478bd9Sstevel@tonic-gate xyerror(D_OP_INCOMPAT, 40547c478bd9Sstevel@tonic-gate "operator ?: operands must have compatible types\n"); 40557c478bd9Sstevel@tonic-gate } 40567c478bd9Sstevel@tonic-gate 40577c478bd9Sstevel@tonic-gate if (dt_node_is_actfunc(lp) || dt_node_is_actfunc(rp)) { 40587c478bd9Sstevel@tonic-gate xyerror(D_OP_ACT, "action cannot be " 40597c478bd9Sstevel@tonic-gate "used in a conditional context\n"); 40607c478bd9Sstevel@tonic-gate } 40617c478bd9Sstevel@tonic-gate 4062a386cc11SRobert Mustacchi dt_node_type_assign(dnp, ctfp, type, B_FALSE); 40637c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_attr_min(dnp->dn_expr->dn_attr, 40647c478bd9Sstevel@tonic-gate dt_attr_min(lp->dn_attr, rp->dn_attr))); 40657c478bd9Sstevel@tonic-gate 40667c478bd9Sstevel@tonic-gate return (dnp); 40677c478bd9Sstevel@tonic-gate } 40687c478bd9Sstevel@tonic-gate 40697c478bd9Sstevel@tonic-gate static dt_node_t * 40707c478bd9Sstevel@tonic-gate dt_cook_statement(dt_node_t *dnp, uint_t idflags) 40717c478bd9Sstevel@tonic-gate { 40727c478bd9Sstevel@tonic-gate dnp->dn_expr = dt_node_cook(dnp->dn_expr, idflags); 40737c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dnp->dn_expr->dn_attr); 40747c478bd9Sstevel@tonic-gate 40757c478bd9Sstevel@tonic-gate return (dnp); 40767c478bd9Sstevel@tonic-gate } 40777c478bd9Sstevel@tonic-gate 40787c478bd9Sstevel@tonic-gate /* 40797c478bd9Sstevel@tonic-gate * If dn_aggfun is set, this node is a collapsed aggregation assignment (see 40807c478bd9Sstevel@tonic-gate * the special case code for DT_TOK_ASGN in dt_cook_op2() above), in which 40817c478bd9Sstevel@tonic-gate * case we cook both the tuple and the function call. If dn_aggfun is NULL, 40827c478bd9Sstevel@tonic-gate * this node is just a reference to the aggregation's type and attributes. 40837c478bd9Sstevel@tonic-gate */ 40847c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 40857c478bd9Sstevel@tonic-gate static dt_node_t * 40867c478bd9Sstevel@tonic-gate dt_cook_aggregation(dt_node_t *dnp, uint_t idflags) 40877c478bd9Sstevel@tonic-gate { 40887c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 40897c478bd9Sstevel@tonic-gate 40907c478bd9Sstevel@tonic-gate if (dnp->dn_aggfun != NULL) { 40917c478bd9Sstevel@tonic-gate dnp->dn_aggfun = dt_node_cook(dnp->dn_aggfun, DT_IDFLG_REF); 40927c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dt_ident_cook(dnp, 40937c478bd9Sstevel@tonic-gate dnp->dn_ident, &dnp->dn_aggtup)); 40947c478bd9Sstevel@tonic-gate } else { 4095a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_DYN_CTFP(dtp), DT_DYN_TYPE(dtp), 4096a386cc11SRobert Mustacchi B_FALSE); 40977c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dnp->dn_ident->di_attr); 40987c478bd9Sstevel@tonic-gate } 40997c478bd9Sstevel@tonic-gate 41007c478bd9Sstevel@tonic-gate return (dnp); 41017c478bd9Sstevel@tonic-gate } 41027c478bd9Sstevel@tonic-gate 41037c478bd9Sstevel@tonic-gate /* 41047c478bd9Sstevel@tonic-gate * Since D permits new variable identifiers to be instantiated in any program 41057c478bd9Sstevel@tonic-gate * expression, we may need to cook a clause's predicate either before or after 41067c478bd9Sstevel@tonic-gate * the action list depending on the program code in question. Consider: 41077c478bd9Sstevel@tonic-gate * 41087c478bd9Sstevel@tonic-gate * probe-description-list probe-description-list 41097c478bd9Sstevel@tonic-gate * /x++/ /x == 0/ 41107c478bd9Sstevel@tonic-gate * { { 41117c478bd9Sstevel@tonic-gate * trace(x); trace(x++); 41127c478bd9Sstevel@tonic-gate * } } 41137c478bd9Sstevel@tonic-gate * 41147c478bd9Sstevel@tonic-gate * In the left-hand example, the predicate uses operator ++ to instantiate 'x' 41157c478bd9Sstevel@tonic-gate * as a variable of type int64_t. The predicate must be cooked first because 41167c478bd9Sstevel@tonic-gate * otherwise the statement trace(x) refers to an unknown identifier. In the 41177c478bd9Sstevel@tonic-gate * right-hand example, the action list uses ++ to instantiate 'x'; the action 41187c478bd9Sstevel@tonic-gate * list must be cooked first because otherwise the predicate x == 0 refers to 41197c478bd9Sstevel@tonic-gate * an unknown identifier. In order to simplify programming, we support both. 41207c478bd9Sstevel@tonic-gate * 41217c478bd9Sstevel@tonic-gate * When cooking a clause, we cook the action statements before the predicate by 41227c478bd9Sstevel@tonic-gate * default, since it seems more common to create or modify identifiers in the 41237c478bd9Sstevel@tonic-gate * action list. If cooking fails due to an unknown identifier, we attempt to 41247c478bd9Sstevel@tonic-gate * cook the predicate (i.e. do it first) and then go back and cook the actions. 41257c478bd9Sstevel@tonic-gate * If this, too, fails (or if we get an error other than D_IDENT_UNDEF) we give 41267c478bd9Sstevel@tonic-gate * up and report failure back to the user. There are five possible paths: 41277c478bd9Sstevel@tonic-gate * 41287c478bd9Sstevel@tonic-gate * cook actions = OK, cook predicate = OK -> OK 41297c478bd9Sstevel@tonic-gate * cook actions = OK, cook predicate = ERR -> ERR 41307c478bd9Sstevel@tonic-gate * cook actions = ERR, cook predicate = ERR -> ERR 41317c478bd9Sstevel@tonic-gate * cook actions = ERR, cook predicate = OK, cook actions = OK -> OK 41327c478bd9Sstevel@tonic-gate * cook actions = ERR, cook predicate = OK, cook actions = ERR -> ERR 41337c478bd9Sstevel@tonic-gate * 41347c478bd9Sstevel@tonic-gate * The programmer can still defeat our scheme by creating circular definition 41357c478bd9Sstevel@tonic-gate * dependencies between predicates and actions, as in this example clause: 41367c478bd9Sstevel@tonic-gate * 41377c478bd9Sstevel@tonic-gate * probe-description-list 41387c478bd9Sstevel@tonic-gate * /x++ && y == 0/ 41397c478bd9Sstevel@tonic-gate * { 41407c478bd9Sstevel@tonic-gate * trace(x + y++); 41417c478bd9Sstevel@tonic-gate * } 41427c478bd9Sstevel@tonic-gate * 41437c478bd9Sstevel@tonic-gate * but it doesn't seem worth the complexity to handle such rare cases. The 41447c478bd9Sstevel@tonic-gate * user can simply use the D variable declaration syntax to work around them. 41457c478bd9Sstevel@tonic-gate */ 41467c478bd9Sstevel@tonic-gate static dt_node_t * 41477c478bd9Sstevel@tonic-gate dt_cook_clause(dt_node_t *dnp, uint_t idflags) 41487c478bd9Sstevel@tonic-gate { 41497c478bd9Sstevel@tonic-gate volatile int err, tries; 41507c478bd9Sstevel@tonic-gate jmp_buf ojb; 41517c478bd9Sstevel@tonic-gate 41527c478bd9Sstevel@tonic-gate /* 41537c478bd9Sstevel@tonic-gate * Before assigning dn_ctxattr, temporarily assign the probe attribute 41547c478bd9Sstevel@tonic-gate * to 'dnp' itself to force an attribute check and minimum violation. 41557c478bd9Sstevel@tonic-gate */ 41567c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, yypcb->pcb_pinfo.dtp_attr); 41577c478bd9Sstevel@tonic-gate dnp->dn_ctxattr = yypcb->pcb_pinfo.dtp_attr; 41587c478bd9Sstevel@tonic-gate 41597c478bd9Sstevel@tonic-gate bcopy(yypcb->pcb_jmpbuf, ojb, sizeof (jmp_buf)); 41607c478bd9Sstevel@tonic-gate tries = 0; 41617c478bd9Sstevel@tonic-gate 41627c478bd9Sstevel@tonic-gate if (dnp->dn_pred != NULL && (err = setjmp(yypcb->pcb_jmpbuf)) != 0) { 41637c478bd9Sstevel@tonic-gate bcopy(ojb, yypcb->pcb_jmpbuf, sizeof (jmp_buf)); 41647c478bd9Sstevel@tonic-gate if (tries++ != 0 || err != EDT_COMPILER || ( 41657c478bd9Sstevel@tonic-gate yypcb->pcb_hdl->dt_errtag != dt_errtag(D_IDENT_UNDEF) && 41667c478bd9Sstevel@tonic-gate yypcb->pcb_hdl->dt_errtag != dt_errtag(D_VAR_UNDEF))) 41677c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, err); 41687c478bd9Sstevel@tonic-gate } 41697c478bd9Sstevel@tonic-gate 41707c478bd9Sstevel@tonic-gate if (tries == 0) { 41717c478bd9Sstevel@tonic-gate yylabel("action list"); 41727c478bd9Sstevel@tonic-gate 41737c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, 41747c478bd9Sstevel@tonic-gate dt_node_list_cook(&dnp->dn_acts, idflags)); 41757c478bd9Sstevel@tonic-gate 41767c478bd9Sstevel@tonic-gate bcopy(ojb, yypcb->pcb_jmpbuf, sizeof (jmp_buf)); 41777c478bd9Sstevel@tonic-gate yylabel(NULL); 41787c478bd9Sstevel@tonic-gate } 41797c478bd9Sstevel@tonic-gate 41807c478bd9Sstevel@tonic-gate if (dnp->dn_pred != NULL) { 41817c478bd9Sstevel@tonic-gate yylabel("predicate"); 41827c478bd9Sstevel@tonic-gate 41837c478bd9Sstevel@tonic-gate dnp->dn_pred = dt_node_cook(dnp->dn_pred, idflags); 41847c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, 41857c478bd9Sstevel@tonic-gate dt_attr_min(dnp->dn_attr, dnp->dn_pred->dn_attr)); 41867c478bd9Sstevel@tonic-gate 41877c478bd9Sstevel@tonic-gate if (!dt_node_is_scalar(dnp->dn_pred)) { 41887c478bd9Sstevel@tonic-gate xyerror(D_PRED_SCALAR, 41897c478bd9Sstevel@tonic-gate "predicate result must be of scalar type\n"); 41907c478bd9Sstevel@tonic-gate } 41917c478bd9Sstevel@tonic-gate 41927c478bd9Sstevel@tonic-gate yylabel(NULL); 41937c478bd9Sstevel@tonic-gate } 41947c478bd9Sstevel@tonic-gate 41957c478bd9Sstevel@tonic-gate if (tries != 0) { 41967c478bd9Sstevel@tonic-gate yylabel("action list"); 41977c478bd9Sstevel@tonic-gate 41987c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, 41997c478bd9Sstevel@tonic-gate dt_node_list_cook(&dnp->dn_acts, idflags)); 42007c478bd9Sstevel@tonic-gate 42017c478bd9Sstevel@tonic-gate yylabel(NULL); 42027c478bd9Sstevel@tonic-gate } 42037c478bd9Sstevel@tonic-gate 42047c478bd9Sstevel@tonic-gate return (dnp); 42057c478bd9Sstevel@tonic-gate } 42067c478bd9Sstevel@tonic-gate 42077c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 42087c478bd9Sstevel@tonic-gate static dt_node_t * 42097c478bd9Sstevel@tonic-gate dt_cook_inline(dt_node_t *dnp, uint_t idflags) 42107c478bd9Sstevel@tonic-gate { 42117c478bd9Sstevel@tonic-gate dt_idnode_t *inp = dnp->dn_ident->di_iarg; 42127c478bd9Sstevel@tonic-gate dt_ident_t *rdp; 42137c478bd9Sstevel@tonic-gate 42147c478bd9Sstevel@tonic-gate char n1[DT_TYPE_NAMELEN]; 42157c478bd9Sstevel@tonic-gate char n2[DT_TYPE_NAMELEN]; 42167c478bd9Sstevel@tonic-gate 42177c478bd9Sstevel@tonic-gate assert(dnp->dn_ident->di_flags & DT_IDFLG_INLINE); 42187c478bd9Sstevel@tonic-gate assert(inp->din_root->dn_flags & DT_NF_COOKED); 42197c478bd9Sstevel@tonic-gate 42207c478bd9Sstevel@tonic-gate /* 42217c478bd9Sstevel@tonic-gate * If we are inlining a translation, verify that the inline declaration 42227c478bd9Sstevel@tonic-gate * type exactly matches the type that is returned by the translation. 42237c478bd9Sstevel@tonic-gate * Otherwise just use dt_node_is_argcompat() to check the types. 42247c478bd9Sstevel@tonic-gate */ 42257c478bd9Sstevel@tonic-gate if ((rdp = dt_node_resolve(inp->din_root, DT_IDENT_XLSOU)) != NULL || 42267c478bd9Sstevel@tonic-gate (rdp = dt_node_resolve(inp->din_root, DT_IDENT_XLPTR)) != NULL) { 42277c478bd9Sstevel@tonic-gate 42287c478bd9Sstevel@tonic-gate ctf_file_t *lctfp = dnp->dn_ctfp; 42297c478bd9Sstevel@tonic-gate ctf_id_t ltype = ctf_type_resolve(lctfp, dnp->dn_type); 42307c478bd9Sstevel@tonic-gate 42317c478bd9Sstevel@tonic-gate dt_xlator_t *dxp = rdp->di_data; 42327c478bd9Sstevel@tonic-gate ctf_file_t *rctfp = dxp->dx_dst_ctfp; 42337c478bd9Sstevel@tonic-gate ctf_id_t rtype = dxp->dx_dst_base; 42347c478bd9Sstevel@tonic-gate 42357c478bd9Sstevel@tonic-gate if (ctf_type_kind(lctfp, ltype) == CTF_K_POINTER) { 42367c478bd9Sstevel@tonic-gate ltype = ctf_type_reference(lctfp, ltype); 42377c478bd9Sstevel@tonic-gate ltype = ctf_type_resolve(lctfp, ltype); 42387c478bd9Sstevel@tonic-gate } 42397c478bd9Sstevel@tonic-gate 42407c478bd9Sstevel@tonic-gate if (ctf_type_compat(lctfp, ltype, rctfp, rtype) == 0) { 42417c478bd9Sstevel@tonic-gate dnerror(dnp, D_OP_INCOMPAT, 42427c478bd9Sstevel@tonic-gate "inline %s definition uses incompatible types: " 42437c478bd9Sstevel@tonic-gate "\"%s\" = \"%s\"\n", dnp->dn_ident->di_name, 42447c478bd9Sstevel@tonic-gate dt_type_name(lctfp, ltype, n1, sizeof (n1)), 42457c478bd9Sstevel@tonic-gate dt_type_name(rctfp, rtype, n2, sizeof (n2))); 42467c478bd9Sstevel@tonic-gate } 42477c478bd9Sstevel@tonic-gate 42487c478bd9Sstevel@tonic-gate } else if (dt_node_is_argcompat(dnp, inp->din_root) == 0) { 42497c478bd9Sstevel@tonic-gate dnerror(dnp, D_OP_INCOMPAT, 42507c478bd9Sstevel@tonic-gate "inline %s definition uses incompatible types: " 42517c478bd9Sstevel@tonic-gate "\"%s\" = \"%s\"\n", dnp->dn_ident->di_name, 42527c478bd9Sstevel@tonic-gate dt_node_type_name(dnp, n1, sizeof (n1)), 42537c478bd9Sstevel@tonic-gate dt_node_type_name(inp->din_root, n2, sizeof (n2))); 42547c478bd9Sstevel@tonic-gate } 42557c478bd9Sstevel@tonic-gate 42567c478bd9Sstevel@tonic-gate return (dnp); 42577c478bd9Sstevel@tonic-gate } 42587c478bd9Sstevel@tonic-gate 42597c478bd9Sstevel@tonic-gate static dt_node_t * 42607c478bd9Sstevel@tonic-gate dt_cook_member(dt_node_t *dnp, uint_t idflags) 42617c478bd9Sstevel@tonic-gate { 42627c478bd9Sstevel@tonic-gate dnp->dn_membexpr = dt_node_cook(dnp->dn_membexpr, idflags); 42637c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, dnp->dn_membexpr->dn_attr); 42647c478bd9Sstevel@tonic-gate return (dnp); 42657c478bd9Sstevel@tonic-gate } 42667c478bd9Sstevel@tonic-gate 42677c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 42687c478bd9Sstevel@tonic-gate static dt_node_t * 42697c478bd9Sstevel@tonic-gate dt_cook_xlator(dt_node_t *dnp, uint_t idflags) 42707c478bd9Sstevel@tonic-gate { 42717c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 42727c478bd9Sstevel@tonic-gate dt_xlator_t *dxp = dnp->dn_xlator; 42737c478bd9Sstevel@tonic-gate dt_node_t *mnp; 42747c478bd9Sstevel@tonic-gate 42757c478bd9Sstevel@tonic-gate char n1[DT_TYPE_NAMELEN]; 42767c478bd9Sstevel@tonic-gate char n2[DT_TYPE_NAMELEN]; 42777c478bd9Sstevel@tonic-gate 42787c478bd9Sstevel@tonic-gate dtrace_attribute_t attr = _dtrace_maxattr; 42797c478bd9Sstevel@tonic-gate ctf_membinfo_t ctm; 42807c478bd9Sstevel@tonic-gate 42817c478bd9Sstevel@tonic-gate /* 42827c478bd9Sstevel@tonic-gate * Before cooking each translator member, we push a reference to the 42837c478bd9Sstevel@tonic-gate * hash containing translator-local identifiers on to pcb_globals to 42847c478bd9Sstevel@tonic-gate * temporarily interpose these identifiers in front of other globals. 42857c478bd9Sstevel@tonic-gate */ 42867c478bd9Sstevel@tonic-gate dt_idstack_push(&yypcb->pcb_globals, dxp->dx_locals); 42877c478bd9Sstevel@tonic-gate 42887c478bd9Sstevel@tonic-gate for (mnp = dnp->dn_members; mnp != NULL; mnp = mnp->dn_list) { 42897c478bd9Sstevel@tonic-gate if (ctf_member_info(dxp->dx_dst_ctfp, dxp->dx_dst_type, 42907c478bd9Sstevel@tonic-gate mnp->dn_membname, &ctm) == CTF_ERR) { 42917c478bd9Sstevel@tonic-gate xyerror(D_XLATE_MEMB, 42927c478bd9Sstevel@tonic-gate "translator member %s is not a member of %s\n", 42937c478bd9Sstevel@tonic-gate mnp->dn_membname, ctf_type_name(dxp->dx_dst_ctfp, 42947c478bd9Sstevel@tonic-gate dxp->dx_dst_type, n1, sizeof (n1))); 42957c478bd9Sstevel@tonic-gate } 42967c478bd9Sstevel@tonic-gate 42977c478bd9Sstevel@tonic-gate (void) dt_node_cook(mnp, DT_IDFLG_REF); 4298a386cc11SRobert Mustacchi dt_node_type_assign(mnp, dxp->dx_dst_ctfp, ctm.ctm_type, 4299a386cc11SRobert Mustacchi B_FALSE); 43007c478bd9Sstevel@tonic-gate attr = dt_attr_min(attr, mnp->dn_attr); 43017c478bd9Sstevel@tonic-gate 43027c478bd9Sstevel@tonic-gate if (dt_node_is_argcompat(mnp, mnp->dn_membexpr) == 0) { 43037c478bd9Sstevel@tonic-gate xyerror(D_XLATE_INCOMPAT, 43047c478bd9Sstevel@tonic-gate "translator member %s definition uses " 43057c478bd9Sstevel@tonic-gate "incompatible types: \"%s\" = \"%s\"\n", 43067c478bd9Sstevel@tonic-gate mnp->dn_membname, 43077c478bd9Sstevel@tonic-gate dt_node_type_name(mnp, n1, sizeof (n1)), 43087c478bd9Sstevel@tonic-gate dt_node_type_name(mnp->dn_membexpr, 43097c478bd9Sstevel@tonic-gate n2, sizeof (n2))); 43107c478bd9Sstevel@tonic-gate } 43117c478bd9Sstevel@tonic-gate } 43127c478bd9Sstevel@tonic-gate 43137c478bd9Sstevel@tonic-gate dt_idstack_pop(&yypcb->pcb_globals, dxp->dx_locals); 43147c478bd9Sstevel@tonic-gate 43157c478bd9Sstevel@tonic-gate dxp->dx_souid.di_attr = attr; 43167c478bd9Sstevel@tonic-gate dxp->dx_ptrid.di_attr = attr; 43177c478bd9Sstevel@tonic-gate 4318a386cc11SRobert Mustacchi dt_node_type_assign(dnp, DT_DYN_CTFP(dtp), DT_DYN_TYPE(dtp), B_FALSE); 43197c478bd9Sstevel@tonic-gate dt_node_attr_assign(dnp, _dtrace_defattr); 43207c478bd9Sstevel@tonic-gate 43217c478bd9Sstevel@tonic-gate return (dnp); 43227c478bd9Sstevel@tonic-gate } 43237c478bd9Sstevel@tonic-gate 43247c478bd9Sstevel@tonic-gate static void 43257c478bd9Sstevel@tonic-gate dt_node_provider_cmp_argv(dt_provider_t *pvp, dt_node_t *pnp, const char *kind, 43267c478bd9Sstevel@tonic-gate uint_t old_argc, dt_node_t *old_argv, uint_t new_argc, dt_node_t *new_argv) 43277c478bd9Sstevel@tonic-gate { 43287c478bd9Sstevel@tonic-gate dt_probe_t *prp = pnp->dn_ident->di_data; 43297c478bd9Sstevel@tonic-gate uint_t i; 43307c478bd9Sstevel@tonic-gate 43317c478bd9Sstevel@tonic-gate char n1[DT_TYPE_NAMELEN]; 43327c478bd9Sstevel@tonic-gate char n2[DT_TYPE_NAMELEN]; 43337c478bd9Sstevel@tonic-gate 43347c478bd9Sstevel@tonic-gate if (old_argc != new_argc) { 43357c478bd9Sstevel@tonic-gate dnerror(pnp, D_PROV_INCOMPAT, 43367c478bd9Sstevel@tonic-gate "probe %s:%s %s prototype mismatch:\n" 43377c478bd9Sstevel@tonic-gate "\t current: %u arg%s\n\tprevious: %u arg%s\n", 43387c478bd9Sstevel@tonic-gate pvp->pv_desc.dtvd_name, prp->pr_ident->di_name, kind, 43397c478bd9Sstevel@tonic-gate new_argc, new_argc != 1 ? "s" : "", 43407c478bd9Sstevel@tonic-gate old_argc, old_argc != 1 ? "s" : ""); 43417c478bd9Sstevel@tonic-gate } 43427c478bd9Sstevel@tonic-gate 43437c478bd9Sstevel@tonic-gate for (i = 0; i < old_argc; i++, 43447c478bd9Sstevel@tonic-gate old_argv = old_argv->dn_list, new_argv = new_argv->dn_list) { 43457c478bd9Sstevel@tonic-gate if (ctf_type_cmp(old_argv->dn_ctfp, old_argv->dn_type, 43467c478bd9Sstevel@tonic-gate new_argv->dn_ctfp, new_argv->dn_type) == 0) 43477c478bd9Sstevel@tonic-gate continue; 43487c478bd9Sstevel@tonic-gate 43497c478bd9Sstevel@tonic-gate dnerror(pnp, D_PROV_INCOMPAT, 43507c478bd9Sstevel@tonic-gate "probe %s:%s %s prototype argument #%u mismatch:\n" 43517c478bd9Sstevel@tonic-gate "\t current: %s\n\tprevious: %s\n", 43527c478bd9Sstevel@tonic-gate pvp->pv_desc.dtvd_name, prp->pr_ident->di_name, kind, i + 1, 43537c478bd9Sstevel@tonic-gate dt_node_type_name(new_argv, n1, sizeof (n1)), 43547c478bd9Sstevel@tonic-gate dt_node_type_name(old_argv, n2, sizeof (n2))); 43557c478bd9Sstevel@tonic-gate } 43567c478bd9Sstevel@tonic-gate } 43577c478bd9Sstevel@tonic-gate 43587c478bd9Sstevel@tonic-gate /* 43597c478bd9Sstevel@tonic-gate * Compare a new probe declaration with an existing probe definition (either 43601a7c1b72Smws * from a previous declaration or cached from the kernel). If the existing 43611a7c1b72Smws * definition and declaration both have an input and output parameter list, 43621a7c1b72Smws * compare both lists. Otherwise compare only the output parameter lists. 43637c478bd9Sstevel@tonic-gate */ 43647c478bd9Sstevel@tonic-gate static void 43657c478bd9Sstevel@tonic-gate dt_node_provider_cmp(dt_provider_t *pvp, dt_node_t *pnp, 43667c478bd9Sstevel@tonic-gate dt_probe_t *old, dt_probe_t *new) 43677c478bd9Sstevel@tonic-gate { 43687c478bd9Sstevel@tonic-gate dt_node_provider_cmp_argv(pvp, pnp, "output", 43697c478bd9Sstevel@tonic-gate old->pr_xargc, old->pr_xargs, new->pr_xargc, new->pr_xargs); 43707c478bd9Sstevel@tonic-gate 43711a7c1b72Smws if (old->pr_nargs != old->pr_xargs && new->pr_nargs != new->pr_xargs) { 43727c478bd9Sstevel@tonic-gate dt_node_provider_cmp_argv(pvp, pnp, "input", 43737c478bd9Sstevel@tonic-gate old->pr_nargc, old->pr_nargs, new->pr_nargc, new->pr_nargs); 43747c478bd9Sstevel@tonic-gate } 43751a7c1b72Smws 43761a7c1b72Smws if (old->pr_nargs == old->pr_xargs && new->pr_nargs != new->pr_xargs) { 43771a7c1b72Smws if (pvp->pv_flags & DT_PROVIDER_IMPL) { 43781a7c1b72Smws dnerror(pnp, D_PROV_INCOMPAT, 43791a7c1b72Smws "provider interface mismatch: %s\n" 43801a7c1b72Smws "\t current: probe %s:%s has an output prototype\n" 43811a7c1b72Smws "\tprevious: probe %s:%s has no output prototype\n", 43821a7c1b72Smws pvp->pv_desc.dtvd_name, pvp->pv_desc.dtvd_name, 43831a7c1b72Smws new->pr_ident->di_name, pvp->pv_desc.dtvd_name, 43841a7c1b72Smws old->pr_ident->di_name); 43851a7c1b72Smws } 43861a7c1b72Smws 43871a7c1b72Smws if (old->pr_ident->di_gen == yypcb->pcb_hdl->dt_gen) 43881a7c1b72Smws old->pr_ident->di_flags |= DT_IDFLG_ORPHAN; 43891a7c1b72Smws 43901a7c1b72Smws dt_idhash_delete(pvp->pv_probes, old->pr_ident); 43911a7c1b72Smws dt_probe_declare(pvp, new); 43921a7c1b72Smws } 43931a7c1b72Smws } 43941a7c1b72Smws 43951a7c1b72Smws static void 43961a7c1b72Smws dt_cook_probe(dt_node_t *dnp, dt_provider_t *pvp) 43971a7c1b72Smws { 43981a7c1b72Smws dtrace_hdl_t *dtp = yypcb->pcb_hdl; 43991a7c1b72Smws dt_probe_t *prp = dnp->dn_ident->di_data; 44001a7c1b72Smws 44011a7c1b72Smws dt_xlator_t *dxp; 44021a7c1b72Smws uint_t i; 44031a7c1b72Smws 44041a7c1b72Smws char n1[DT_TYPE_NAMELEN]; 44051a7c1b72Smws char n2[DT_TYPE_NAMELEN]; 44061a7c1b72Smws 44071a7c1b72Smws if (prp->pr_nargs == prp->pr_xargs) 44081a7c1b72Smws return; 44091a7c1b72Smws 44101a7c1b72Smws for (i = 0; i < prp->pr_xargc; i++) { 44111a7c1b72Smws dt_node_t *xnp = prp->pr_xargv[i]; 44121a7c1b72Smws dt_node_t *nnp = prp->pr_nargv[prp->pr_mapping[i]]; 44131a7c1b72Smws 44141a7c1b72Smws if ((dxp = dt_xlator_lookup(dtp, 44151a7c1b72Smws nnp, xnp, DT_XLATE_FUZZY)) != NULL) { 44161a7c1b72Smws if (dt_provider_xref(dtp, pvp, dxp->dx_id) != 0) 44171a7c1b72Smws longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 44181a7c1b72Smws continue; 44191a7c1b72Smws } 44201a7c1b72Smws 44211a7c1b72Smws if (dt_node_is_argcompat(nnp, xnp)) 44221a7c1b72Smws continue; /* no translator defined and none required */ 44231a7c1b72Smws 44241a7c1b72Smws dnerror(dnp, D_PROV_PRXLATOR, "translator for %s:%s output " 44251a7c1b72Smws "argument #%u from %s to %s is not defined\n", 44261a7c1b72Smws pvp->pv_desc.dtvd_name, dnp->dn_ident->di_name, i + 1, 44271a7c1b72Smws dt_node_type_name(nnp, n1, sizeof (n1)), 44281a7c1b72Smws dt_node_type_name(xnp, n2, sizeof (n2))); 44291a7c1b72Smws } 44307c478bd9Sstevel@tonic-gate } 44317c478bd9Sstevel@tonic-gate 44327c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 44337c478bd9Sstevel@tonic-gate static dt_node_t * 44347c478bd9Sstevel@tonic-gate dt_cook_provider(dt_node_t *dnp, uint_t idflags) 44357c478bd9Sstevel@tonic-gate { 44367c478bd9Sstevel@tonic-gate dt_provider_t *pvp = dnp->dn_provider; 44377c478bd9Sstevel@tonic-gate dt_node_t *pnp; 44387c478bd9Sstevel@tonic-gate 44397c478bd9Sstevel@tonic-gate /* 44407c478bd9Sstevel@tonic-gate * If we're declaring a provider for the first time and it is unknown 44417c478bd9Sstevel@tonic-gate * to dtrace(7D), insert the probe definitions into the provider's hash. 44427c478bd9Sstevel@tonic-gate * If we're redeclaring a known provider, verify the interface matches. 44437c478bd9Sstevel@tonic-gate */ 44447c478bd9Sstevel@tonic-gate for (pnp = dnp->dn_probes; pnp != NULL; pnp = pnp->dn_list) { 44457c478bd9Sstevel@tonic-gate const char *probename = pnp->dn_ident->di_name; 44467c478bd9Sstevel@tonic-gate dt_probe_t *prp = dt_probe_lookup(pvp, probename); 44477c478bd9Sstevel@tonic-gate 44487c478bd9Sstevel@tonic-gate assert(pnp->dn_kind == DT_NODE_PROBE); 44497c478bd9Sstevel@tonic-gate 44507c478bd9Sstevel@tonic-gate if (prp != NULL && dnp->dn_provred) { 44517c478bd9Sstevel@tonic-gate dt_node_provider_cmp(pvp, pnp, 44527c478bd9Sstevel@tonic-gate prp, pnp->dn_ident->di_data); 44537c478bd9Sstevel@tonic-gate } else if (prp == NULL && dnp->dn_provred) { 44547c478bd9Sstevel@tonic-gate dnerror(pnp, D_PROV_INCOMPAT, 44557c478bd9Sstevel@tonic-gate "provider interface mismatch: %s\n" 44567c478bd9Sstevel@tonic-gate "\t current: probe %s:%s defined\n" 44577c478bd9Sstevel@tonic-gate "\tprevious: probe %s:%s not defined\n", 44587c478bd9Sstevel@tonic-gate dnp->dn_provname, dnp->dn_provname, 44597c478bd9Sstevel@tonic-gate probename, dnp->dn_provname, probename); 44607c478bd9Sstevel@tonic-gate } else if (prp != NULL) { 44617c478bd9Sstevel@tonic-gate dnerror(pnp, D_PROV_PRDUP, "probe redeclared: %s:%s\n", 44627c478bd9Sstevel@tonic-gate dnp->dn_provname, probename); 44637c478bd9Sstevel@tonic-gate } else 44647c478bd9Sstevel@tonic-gate dt_probe_declare(pvp, pnp->dn_ident->di_data); 44651a7c1b72Smws 44661a7c1b72Smws dt_cook_probe(pnp, pvp); 44677c478bd9Sstevel@tonic-gate } 44687c478bd9Sstevel@tonic-gate 44697c478bd9Sstevel@tonic-gate return (dnp); 44707c478bd9Sstevel@tonic-gate } 44717c478bd9Sstevel@tonic-gate 44727c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 44737c478bd9Sstevel@tonic-gate static dt_node_t * 44747c478bd9Sstevel@tonic-gate dt_cook_none(dt_node_t *dnp, uint_t idflags) 44757c478bd9Sstevel@tonic-gate { 44767c478bd9Sstevel@tonic-gate return (dnp); 44777c478bd9Sstevel@tonic-gate } 44787c478bd9Sstevel@tonic-gate 44797c478bd9Sstevel@tonic-gate static dt_node_t *(*dt_cook_funcs[])(dt_node_t *, uint_t) = { 44807c478bd9Sstevel@tonic-gate dt_cook_none, /* DT_NODE_FREE */ 44817c478bd9Sstevel@tonic-gate dt_cook_none, /* DT_NODE_INT */ 44827c478bd9Sstevel@tonic-gate dt_cook_none, /* DT_NODE_STRING */ 44837c478bd9Sstevel@tonic-gate dt_cook_ident, /* DT_NODE_IDENT */ 44847c478bd9Sstevel@tonic-gate dt_cook_var, /* DT_NODE_VAR */ 44857c478bd9Sstevel@tonic-gate dt_cook_none, /* DT_NODE_SYM */ 44867c478bd9Sstevel@tonic-gate dt_cook_none, /* DT_NODE_TYPE */ 44877c478bd9Sstevel@tonic-gate dt_cook_func, /* DT_NODE_FUNC */ 44887c478bd9Sstevel@tonic-gate dt_cook_op1, /* DT_NODE_OP1 */ 44897c478bd9Sstevel@tonic-gate dt_cook_op2, /* DT_NODE_OP2 */ 44907c478bd9Sstevel@tonic-gate dt_cook_op3, /* DT_NODE_OP3 */ 44917c478bd9Sstevel@tonic-gate dt_cook_statement, /* DT_NODE_DEXPR */ 44927c478bd9Sstevel@tonic-gate dt_cook_statement, /* DT_NODE_DFUNC */ 44937c478bd9Sstevel@tonic-gate dt_cook_aggregation, /* DT_NODE_AGG */ 44947c478bd9Sstevel@tonic-gate dt_cook_none, /* DT_NODE_PDESC */ 44957c478bd9Sstevel@tonic-gate dt_cook_clause, /* DT_NODE_CLAUSE */ 44967c478bd9Sstevel@tonic-gate dt_cook_inline, /* DT_NODE_INLINE */ 44977c478bd9Sstevel@tonic-gate dt_cook_member, /* DT_NODE_MEMBER */ 44987c478bd9Sstevel@tonic-gate dt_cook_xlator, /* DT_NODE_XLATOR */ 44997c478bd9Sstevel@tonic-gate dt_cook_none, /* DT_NODE_PROBE */ 45007c478bd9Sstevel@tonic-gate dt_cook_provider, /* DT_NODE_PROVIDER */ 45010af8f00bSMatthew Ahrens dt_cook_none, /* DT_NODE_PROG */ 45020af8f00bSMatthew Ahrens dt_cook_none, /* DT_NODE_IF */ 45037c478bd9Sstevel@tonic-gate }; 45047c478bd9Sstevel@tonic-gate 45057c478bd9Sstevel@tonic-gate /* 45067c478bd9Sstevel@tonic-gate * Recursively cook the parse tree starting at the specified node. The idflags 45077c478bd9Sstevel@tonic-gate * parameter is used to indicate the type of reference (r/w) and is applied to 45087c478bd9Sstevel@tonic-gate * the resulting identifier if it is a D variable or D aggregation. 45097c478bd9Sstevel@tonic-gate */ 45107c478bd9Sstevel@tonic-gate dt_node_t * 45117c478bd9Sstevel@tonic-gate dt_node_cook(dt_node_t *dnp, uint_t idflags) 45127c478bd9Sstevel@tonic-gate { 45137c478bd9Sstevel@tonic-gate int oldlineno = yylineno; 45147c478bd9Sstevel@tonic-gate 45157c478bd9Sstevel@tonic-gate yylineno = dnp->dn_line; 45167c478bd9Sstevel@tonic-gate 45170af8f00bSMatthew Ahrens assert(dnp->dn_kind < 45180af8f00bSMatthew Ahrens sizeof (dt_cook_funcs) / sizeof (dt_cook_funcs[0])); 45197c478bd9Sstevel@tonic-gate dnp = dt_cook_funcs[dnp->dn_kind](dnp, idflags); 45207c478bd9Sstevel@tonic-gate dnp->dn_flags |= DT_NF_COOKED; 45217c478bd9Sstevel@tonic-gate 45227c478bd9Sstevel@tonic-gate if (dnp->dn_kind == DT_NODE_VAR || dnp->dn_kind == DT_NODE_AGG) 45237c478bd9Sstevel@tonic-gate dnp->dn_ident->di_flags |= idflags; 45247c478bd9Sstevel@tonic-gate 45257c478bd9Sstevel@tonic-gate yylineno = oldlineno; 45267c478bd9Sstevel@tonic-gate return (dnp); 45277c478bd9Sstevel@tonic-gate } 45287c478bd9Sstevel@tonic-gate 45297c478bd9Sstevel@tonic-gate dtrace_attribute_t 45307c478bd9Sstevel@tonic-gate dt_node_list_cook(dt_node_t **pnp, uint_t idflags) 45317c478bd9Sstevel@tonic-gate { 45327c478bd9Sstevel@tonic-gate dtrace_attribute_t attr = _dtrace_defattr; 45337c478bd9Sstevel@tonic-gate dt_node_t *dnp, *nnp; 45347c478bd9Sstevel@tonic-gate 45357c478bd9Sstevel@tonic-gate for (dnp = (pnp != NULL ? *pnp : NULL); dnp != NULL; dnp = nnp) { 45367c478bd9Sstevel@tonic-gate nnp = dnp->dn_list; 45377c478bd9Sstevel@tonic-gate dnp = *pnp = dt_node_cook(dnp, idflags); 45387c478bd9Sstevel@tonic-gate attr = dt_attr_min(attr, dnp->dn_attr); 45397c478bd9Sstevel@tonic-gate dnp->dn_list = nnp; 45407c478bd9Sstevel@tonic-gate pnp = &dnp->dn_list; 45417c478bd9Sstevel@tonic-gate } 45427c478bd9Sstevel@tonic-gate 45437c478bd9Sstevel@tonic-gate return (attr); 45447c478bd9Sstevel@tonic-gate } 45457c478bd9Sstevel@tonic-gate 45467c478bd9Sstevel@tonic-gate void 45477c478bd9Sstevel@tonic-gate dt_node_list_free(dt_node_t **pnp) 45487c478bd9Sstevel@tonic-gate { 45497c478bd9Sstevel@tonic-gate dt_node_t *dnp, *nnp; 45507c478bd9Sstevel@tonic-gate 45517c478bd9Sstevel@tonic-gate for (dnp = (pnp != NULL ? *pnp : NULL); dnp != NULL; dnp = nnp) { 45527c478bd9Sstevel@tonic-gate nnp = dnp->dn_list; 45537c478bd9Sstevel@tonic-gate dt_node_free(dnp); 45547c478bd9Sstevel@tonic-gate } 45557c478bd9Sstevel@tonic-gate 45567c478bd9Sstevel@tonic-gate if (pnp != NULL) 45577c478bd9Sstevel@tonic-gate *pnp = NULL; 45587c478bd9Sstevel@tonic-gate } 45597c478bd9Sstevel@tonic-gate 45607c478bd9Sstevel@tonic-gate void 45617c478bd9Sstevel@tonic-gate dt_node_link_free(dt_node_t **pnp) 45627c478bd9Sstevel@tonic-gate { 45637c478bd9Sstevel@tonic-gate dt_node_t *dnp, *nnp; 45647c478bd9Sstevel@tonic-gate 45657c478bd9Sstevel@tonic-gate for (dnp = (pnp != NULL ? *pnp : NULL); dnp != NULL; dnp = nnp) { 45667c478bd9Sstevel@tonic-gate nnp = dnp->dn_link; 45677c478bd9Sstevel@tonic-gate dt_node_free(dnp); 45687c478bd9Sstevel@tonic-gate } 45697c478bd9Sstevel@tonic-gate 45707c478bd9Sstevel@tonic-gate for (dnp = (pnp != NULL ? *pnp : NULL); dnp != NULL; dnp = nnp) { 45717c478bd9Sstevel@tonic-gate nnp = dnp->dn_link; 45727c478bd9Sstevel@tonic-gate free(dnp); 45737c478bd9Sstevel@tonic-gate } 45747c478bd9Sstevel@tonic-gate 45757c478bd9Sstevel@tonic-gate if (pnp != NULL) 45767c478bd9Sstevel@tonic-gate *pnp = NULL; 45777c478bd9Sstevel@tonic-gate } 45787c478bd9Sstevel@tonic-gate 45797c478bd9Sstevel@tonic-gate dt_node_t * 45807c478bd9Sstevel@tonic-gate dt_node_link(dt_node_t *lp, dt_node_t *rp) 45817c478bd9Sstevel@tonic-gate { 45827c478bd9Sstevel@tonic-gate dt_node_t *dnp; 45837c478bd9Sstevel@tonic-gate 45847c478bd9Sstevel@tonic-gate if (lp == NULL) 45857c478bd9Sstevel@tonic-gate return (rp); 45867c478bd9Sstevel@tonic-gate else if (rp == NULL) 45877c478bd9Sstevel@tonic-gate return (lp); 45887c478bd9Sstevel@tonic-gate 45897c478bd9Sstevel@tonic-gate for (dnp = lp; dnp->dn_list != NULL; dnp = dnp->dn_list) 45907c478bd9Sstevel@tonic-gate continue; 45917c478bd9Sstevel@tonic-gate 45927c478bd9Sstevel@tonic-gate dnp->dn_list = rp; 45937c478bd9Sstevel@tonic-gate return (lp); 45947c478bd9Sstevel@tonic-gate } 45957c478bd9Sstevel@tonic-gate 45961a7c1b72Smws /* 45971a7c1b72Smws * Compute the DOF dtrace_diftype_t representation of a node's type. This is 45981a7c1b72Smws * called from a variety of places in the library so it cannot assume yypcb 45991a7c1b72Smws * is valid: any references to handle-specific data must be made through 'dtp'. 46001a7c1b72Smws */ 46017c478bd9Sstevel@tonic-gate void 46021a7c1b72Smws dt_node_diftype(dtrace_hdl_t *dtp, const dt_node_t *dnp, dtrace_diftype_t *tp) 46037c478bd9Sstevel@tonic-gate { 46041a7c1b72Smws if (dnp->dn_ctfp == DT_STR_CTFP(dtp) && 46051a7c1b72Smws dnp->dn_type == DT_STR_TYPE(dtp)) { 46067c478bd9Sstevel@tonic-gate tp->dtdt_kind = DIF_TYPE_STRING; 46077c478bd9Sstevel@tonic-gate tp->dtdt_ckind = CTF_K_UNKNOWN; 46087c478bd9Sstevel@tonic-gate } else { 46097c478bd9Sstevel@tonic-gate tp->dtdt_kind = DIF_TYPE_CTF; 46107c478bd9Sstevel@tonic-gate tp->dtdt_ckind = ctf_type_kind(dnp->dn_ctfp, 46117c478bd9Sstevel@tonic-gate ctf_type_resolve(dnp->dn_ctfp, dnp->dn_type)); 46127c478bd9Sstevel@tonic-gate } 46137c478bd9Sstevel@tonic-gate 4614a386cc11SRobert Mustacchi tp->dtdt_flags = (dnp->dn_flags & DT_NF_REF) ? 4615a386cc11SRobert Mustacchi (dnp->dn_flags & DT_NF_USERLAND) ? DIF_TF_BYUREF : 4616a386cc11SRobert Mustacchi DIF_TF_BYREF : 0; 46177c478bd9Sstevel@tonic-gate tp->dtdt_pad = 0; 46187c478bd9Sstevel@tonic-gate tp->dtdt_size = ctf_type_size(dnp->dn_ctfp, dnp->dn_type); 46197c478bd9Sstevel@tonic-gate } 46207c478bd9Sstevel@tonic-gate 46210af8f00bSMatthew Ahrens /* 46220af8f00bSMatthew Ahrens * Output the parse tree as D. The "-xtree=8" argument will call this 46230af8f00bSMatthew Ahrens * function to print out the program after any syntactic sugar 46240af8f00bSMatthew Ahrens * transformations have been applied (e.g. to implement "if"). The 46250af8f00bSMatthew Ahrens * resulting output can be used to understand the transformations 46260af8f00bSMatthew Ahrens * applied by these features, or to run such a script on a system that 46270af8f00bSMatthew Ahrens * does not support these features 46280af8f00bSMatthew Ahrens * 46290af8f00bSMatthew Ahrens * Note that the output does not express precisely the same program as 46300af8f00bSMatthew Ahrens * the input. In particular: 46310af8f00bSMatthew Ahrens * - Only the clauses are output. #pragma options, variable 46320af8f00bSMatthew Ahrens * declarations, etc. are excluded. 46330af8f00bSMatthew Ahrens * - Command argument substitution has already been done, so the output 46340af8f00bSMatthew Ahrens * will not contain e.g. $$1, but rather the substituted string. 46350af8f00bSMatthew Ahrens */ 46360af8f00bSMatthew Ahrens void 46370af8f00bSMatthew Ahrens dt_printd(dt_node_t *dnp, FILE *fp, int depth) 46380af8f00bSMatthew Ahrens { 46390af8f00bSMatthew Ahrens dt_node_t *arg; 46400af8f00bSMatthew Ahrens 46410af8f00bSMatthew Ahrens switch (dnp->dn_kind) { 46420af8f00bSMatthew Ahrens case DT_NODE_INT: 46430af8f00bSMatthew Ahrens (void) fprintf(fp, "0x%llx", (u_longlong_t)dnp->dn_value); 46440af8f00bSMatthew Ahrens if (!(dnp->dn_flags & DT_NF_SIGNED)) 46450af8f00bSMatthew Ahrens (void) fprintf(fp, "u"); 46460af8f00bSMatthew Ahrens break; 46470af8f00bSMatthew Ahrens 46480af8f00bSMatthew Ahrens case DT_NODE_STRING: { 46490af8f00bSMatthew Ahrens char *escd = strchr2esc(dnp->dn_string, strlen(dnp->dn_string)); 46500af8f00bSMatthew Ahrens (void) fprintf(fp, "\"%s\"", escd); 46510af8f00bSMatthew Ahrens free(escd); 46520af8f00bSMatthew Ahrens break; 46530af8f00bSMatthew Ahrens } 46540af8f00bSMatthew Ahrens 46550af8f00bSMatthew Ahrens case DT_NODE_IDENT: 46560af8f00bSMatthew Ahrens (void) fprintf(fp, "%s", dnp->dn_string); 46570af8f00bSMatthew Ahrens break; 46580af8f00bSMatthew Ahrens 46590af8f00bSMatthew Ahrens case DT_NODE_VAR: 46600af8f00bSMatthew Ahrens (void) fprintf(fp, "%s%s", 46610af8f00bSMatthew Ahrens (dnp->dn_ident->di_flags & DT_IDFLG_LOCAL) ? "this->" : 46620af8f00bSMatthew Ahrens (dnp->dn_ident->di_flags & DT_IDFLG_TLS) ? "self->" : "", 46630af8f00bSMatthew Ahrens dnp->dn_ident->di_name); 46640af8f00bSMatthew Ahrens 46650af8f00bSMatthew Ahrens if (dnp->dn_args != NULL) { 46660af8f00bSMatthew Ahrens (void) fprintf(fp, "["); 46670af8f00bSMatthew Ahrens 46680af8f00bSMatthew Ahrens for (arg = dnp->dn_args; arg != NULL; 46690af8f00bSMatthew Ahrens arg = arg->dn_list) { 46700af8f00bSMatthew Ahrens dt_printd(arg, fp, 0); 46710af8f00bSMatthew Ahrens if (arg->dn_list != NULL) 46720af8f00bSMatthew Ahrens (void) fprintf(fp, ", "); 46730af8f00bSMatthew Ahrens } 46740af8f00bSMatthew Ahrens 46750af8f00bSMatthew Ahrens (void) fprintf(fp, "]"); 46760af8f00bSMatthew Ahrens } 46770af8f00bSMatthew Ahrens break; 46780af8f00bSMatthew Ahrens 46790af8f00bSMatthew Ahrens case DT_NODE_SYM: { 46800af8f00bSMatthew Ahrens const dtrace_syminfo_t *dts = dnp->dn_ident->di_data; 46810af8f00bSMatthew Ahrens (void) fprintf(fp, "%s`%s", dts->dts_object, dts->dts_name); 46820af8f00bSMatthew Ahrens break; 46830af8f00bSMatthew Ahrens } 46840af8f00bSMatthew Ahrens case DT_NODE_FUNC: 46850af8f00bSMatthew Ahrens (void) fprintf(fp, "%s(", dnp->dn_ident->di_name); 46860af8f00bSMatthew Ahrens 46870af8f00bSMatthew Ahrens for (arg = dnp->dn_args; arg != NULL; arg = arg->dn_list) { 46880af8f00bSMatthew Ahrens dt_printd(arg, fp, 0); 46890af8f00bSMatthew Ahrens if (arg->dn_list != NULL) 46900af8f00bSMatthew Ahrens (void) fprintf(fp, ", "); 46910af8f00bSMatthew Ahrens } 46920af8f00bSMatthew Ahrens (void) fprintf(fp, ")"); 46930af8f00bSMatthew Ahrens break; 46940af8f00bSMatthew Ahrens 46950af8f00bSMatthew Ahrens case DT_NODE_OP1: 46960af8f00bSMatthew Ahrens (void) fprintf(fp, "%s(", opstr(dnp->dn_op)); 46970af8f00bSMatthew Ahrens dt_printd(dnp->dn_child, fp, 0); 46980af8f00bSMatthew Ahrens (void) fprintf(fp, ")"); 46990af8f00bSMatthew Ahrens break; 47000af8f00bSMatthew Ahrens 47010af8f00bSMatthew Ahrens case DT_NODE_OP2: 47020af8f00bSMatthew Ahrens (void) fprintf(fp, "("); 47030af8f00bSMatthew Ahrens dt_printd(dnp->dn_left, fp, 0); 47040af8f00bSMatthew Ahrens if (dnp->dn_op == DT_TOK_LPAR) { 47050af8f00bSMatthew Ahrens (void) fprintf(fp, ")"); 47060af8f00bSMatthew Ahrens dt_printd(dnp->dn_right, fp, 0); 47070af8f00bSMatthew Ahrens break; 47080af8f00bSMatthew Ahrens } 47090af8f00bSMatthew Ahrens if (dnp->dn_op == DT_TOK_PTR || dnp->dn_op == DT_TOK_DOT || 47100af8f00bSMatthew Ahrens dnp->dn_op == DT_TOK_LBRAC) 47110af8f00bSMatthew Ahrens (void) fprintf(fp, "%s", opstr(dnp->dn_op)); 47120af8f00bSMatthew Ahrens else 47130af8f00bSMatthew Ahrens (void) fprintf(fp, " %s ", opstr(dnp->dn_op)); 47140af8f00bSMatthew Ahrens dt_printd(dnp->dn_right, fp, 0); 47150af8f00bSMatthew Ahrens if (dnp->dn_op == DT_TOK_LBRAC) { 47160af8f00bSMatthew Ahrens dt_node_t *ln = dnp->dn_right; 47170af8f00bSMatthew Ahrens while (ln->dn_list != NULL) { 47180af8f00bSMatthew Ahrens (void) fprintf(fp, ", "); 47190af8f00bSMatthew Ahrens dt_printd(ln->dn_list, fp, depth); 47200af8f00bSMatthew Ahrens ln = ln->dn_list; 47210af8f00bSMatthew Ahrens } 47220af8f00bSMatthew Ahrens (void) fprintf(fp, "]"); 47230af8f00bSMatthew Ahrens } 47240af8f00bSMatthew Ahrens (void) fprintf(fp, ")"); 47250af8f00bSMatthew Ahrens break; 47260af8f00bSMatthew Ahrens 47270af8f00bSMatthew Ahrens case DT_NODE_OP3: 47280af8f00bSMatthew Ahrens (void) fprintf(fp, "("); 47290af8f00bSMatthew Ahrens dt_printd(dnp->dn_expr, fp, 0); 47300af8f00bSMatthew Ahrens (void) fprintf(fp, " ? "); 47310af8f00bSMatthew Ahrens dt_printd(dnp->dn_left, fp, 0); 47320af8f00bSMatthew Ahrens (void) fprintf(fp, " : "); 47330af8f00bSMatthew Ahrens dt_printd(dnp->dn_right, fp, 0); 47340af8f00bSMatthew Ahrens (void) fprintf(fp, ")"); 47350af8f00bSMatthew Ahrens break; 47360af8f00bSMatthew Ahrens 47370af8f00bSMatthew Ahrens case DT_NODE_DEXPR: 47380af8f00bSMatthew Ahrens case DT_NODE_DFUNC: 47390af8f00bSMatthew Ahrens (void) fprintf(fp, "%*s", depth * 8, ""); 47400af8f00bSMatthew Ahrens dt_printd(dnp->dn_expr, fp, depth + 1); 47410af8f00bSMatthew Ahrens (void) fprintf(fp, ";\n"); 47420af8f00bSMatthew Ahrens break; 47430af8f00bSMatthew Ahrens 47440af8f00bSMatthew Ahrens case DT_NODE_PDESC: 47450af8f00bSMatthew Ahrens (void) fprintf(fp, "%s:%s:%s:%s", 47460af8f00bSMatthew Ahrens dnp->dn_desc->dtpd_provider, dnp->dn_desc->dtpd_mod, 47470af8f00bSMatthew Ahrens dnp->dn_desc->dtpd_func, dnp->dn_desc->dtpd_name); 47480af8f00bSMatthew Ahrens break; 47490af8f00bSMatthew Ahrens 47500af8f00bSMatthew Ahrens case DT_NODE_CLAUSE: 47510af8f00bSMatthew Ahrens for (arg = dnp->dn_pdescs; arg != NULL; arg = arg->dn_list) { 47520af8f00bSMatthew Ahrens dt_printd(arg, fp, 0); 47530af8f00bSMatthew Ahrens if (arg->dn_list != NULL) 47540af8f00bSMatthew Ahrens (void) fprintf(fp, ","); 47550af8f00bSMatthew Ahrens (void) fprintf(fp, "\n"); 47560af8f00bSMatthew Ahrens } 47570af8f00bSMatthew Ahrens 47580af8f00bSMatthew Ahrens if (dnp->dn_pred != NULL) { 47590af8f00bSMatthew Ahrens (void) fprintf(fp, "/"); 47600af8f00bSMatthew Ahrens dt_printd(dnp->dn_pred, fp, 0); 47610af8f00bSMatthew Ahrens (void) fprintf(fp, "/\n"); 47620af8f00bSMatthew Ahrens } 47630af8f00bSMatthew Ahrens (void) fprintf(fp, "{\n"); 47640af8f00bSMatthew Ahrens 47650af8f00bSMatthew Ahrens for (arg = dnp->dn_acts; arg != NULL; arg = arg->dn_list) 47660af8f00bSMatthew Ahrens dt_printd(arg, fp, depth + 1); 47670af8f00bSMatthew Ahrens (void) fprintf(fp, "}\n"); 47680af8f00bSMatthew Ahrens (void) fprintf(fp, "\n"); 47690af8f00bSMatthew Ahrens break; 47700af8f00bSMatthew Ahrens 47710af8f00bSMatthew Ahrens case DT_NODE_IF: 47720af8f00bSMatthew Ahrens (void) fprintf(fp, "%*sif (", depth * 8, ""); 47730af8f00bSMatthew Ahrens dt_printd(dnp->dn_conditional, fp, 0); 47740af8f00bSMatthew Ahrens (void) fprintf(fp, ") {\n"); 47750af8f00bSMatthew Ahrens 47760af8f00bSMatthew Ahrens for (arg = dnp->dn_body; arg != NULL; arg = arg->dn_list) 47770af8f00bSMatthew Ahrens dt_printd(arg, fp, depth + 1); 47780af8f00bSMatthew Ahrens if (dnp->dn_alternate_body == NULL) { 47790af8f00bSMatthew Ahrens (void) fprintf(fp, "%*s}\n", depth * 8, ""); 47800af8f00bSMatthew Ahrens } else { 47810af8f00bSMatthew Ahrens (void) fprintf(fp, "%*s} else {\n", depth * 8, ""); 47820af8f00bSMatthew Ahrens for (arg = dnp->dn_alternate_body; arg != NULL; 47830af8f00bSMatthew Ahrens arg = arg->dn_list) 47840af8f00bSMatthew Ahrens dt_printd(arg, fp, depth + 1); 47850af8f00bSMatthew Ahrens (void) fprintf(fp, "%*s}\n", depth * 8, ""); 47860af8f00bSMatthew Ahrens } 47870af8f00bSMatthew Ahrens 47880af8f00bSMatthew Ahrens break; 47890af8f00bSMatthew Ahrens 47900af8f00bSMatthew Ahrens default: 47910af8f00bSMatthew Ahrens (void) fprintf(fp, "/* bad node %p, kind %d */\n", 47920af8f00bSMatthew Ahrens (void *)dnp, dnp->dn_kind); 47930af8f00bSMatthew Ahrens } 47940af8f00bSMatthew Ahrens } 47950af8f00bSMatthew Ahrens 47967c478bd9Sstevel@tonic-gate void 47977c478bd9Sstevel@tonic-gate dt_node_printr(dt_node_t *dnp, FILE *fp, int depth) 47987c478bd9Sstevel@tonic-gate { 47997c478bd9Sstevel@tonic-gate char n[DT_TYPE_NAMELEN], buf[BUFSIZ], a[8]; 48007c478bd9Sstevel@tonic-gate const dtrace_syminfo_t *dts; 48017c478bd9Sstevel@tonic-gate const dt_idnode_t *inp; 48027c478bd9Sstevel@tonic-gate dt_node_t *arg; 48037c478bd9Sstevel@tonic-gate 48047c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s", depth * 2, ""); 48057c478bd9Sstevel@tonic-gate (void) dt_attr_str(dnp->dn_attr, a, sizeof (a)); 48067c478bd9Sstevel@tonic-gate 48077c478bd9Sstevel@tonic-gate if (dnp->dn_ctfp != NULL && dnp->dn_type != CTF_ERR && 48087c478bd9Sstevel@tonic-gate ctf_type_name(dnp->dn_ctfp, dnp->dn_type, n, sizeof (n)) != NULL) { 48097c478bd9Sstevel@tonic-gate (void) snprintf(buf, BUFSIZ, "type=<%s> attr=%s flags=", n, a); 48107c478bd9Sstevel@tonic-gate } else { 48117c478bd9Sstevel@tonic-gate (void) snprintf(buf, BUFSIZ, "type=<%ld> attr=%s flags=", 48127c478bd9Sstevel@tonic-gate dnp->dn_type, a); 48137c478bd9Sstevel@tonic-gate } 48147c478bd9Sstevel@tonic-gate 48157c478bd9Sstevel@tonic-gate if (dnp->dn_flags != 0) { 48167c478bd9Sstevel@tonic-gate n[0] = '\0'; 48177c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_SIGNED) 48187c478bd9Sstevel@tonic-gate (void) strcat(n, ",SIGN"); 48197c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_COOKED) 48207c478bd9Sstevel@tonic-gate (void) strcat(n, ",COOK"); 48217c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_REF) 48227c478bd9Sstevel@tonic-gate (void) strcat(n, ",REF"); 48237c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_LVALUE) 48247c478bd9Sstevel@tonic-gate (void) strcat(n, ",LVAL"); 48257c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_WRITABLE) 48267c478bd9Sstevel@tonic-gate (void) strcat(n, ",WRITE"); 48277c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_BITFIELD) 48287c478bd9Sstevel@tonic-gate (void) strcat(n, ",BITF"); 48297c478bd9Sstevel@tonic-gate if (dnp->dn_flags & DT_NF_USERLAND) 48307c478bd9Sstevel@tonic-gate (void) strcat(n, ",USER"); 48317c478bd9Sstevel@tonic-gate (void) strcat(buf, n + 1); 48327c478bd9Sstevel@tonic-gate } else 48337c478bd9Sstevel@tonic-gate (void) strcat(buf, "0"); 48347c478bd9Sstevel@tonic-gate 48357c478bd9Sstevel@tonic-gate switch (dnp->dn_kind) { 48367c478bd9Sstevel@tonic-gate case DT_NODE_FREE: 48377c478bd9Sstevel@tonic-gate (void) fprintf(fp, "FREE <node %p>\n", (void *)dnp); 48387c478bd9Sstevel@tonic-gate break; 48397c478bd9Sstevel@tonic-gate 48407c478bd9Sstevel@tonic-gate case DT_NODE_INT: 48417c478bd9Sstevel@tonic-gate (void) fprintf(fp, "INT 0x%llx (%s)\n", 48427c478bd9Sstevel@tonic-gate (u_longlong_t)dnp->dn_value, buf); 48437c478bd9Sstevel@tonic-gate break; 48447c478bd9Sstevel@tonic-gate 48457c478bd9Sstevel@tonic-gate case DT_NODE_STRING: 48467c478bd9Sstevel@tonic-gate (void) fprintf(fp, "STRING \"%s\" (%s)\n", dnp->dn_string, buf); 48477c478bd9Sstevel@tonic-gate break; 48487c478bd9Sstevel@tonic-gate 48497c478bd9Sstevel@tonic-gate case DT_NODE_IDENT: 48507c478bd9Sstevel@tonic-gate (void) fprintf(fp, "IDENT %s (%s)\n", dnp->dn_string, buf); 48517c478bd9Sstevel@tonic-gate break; 48527c478bd9Sstevel@tonic-gate 48537c478bd9Sstevel@tonic-gate case DT_NODE_VAR: 48547c478bd9Sstevel@tonic-gate (void) fprintf(fp, "VARIABLE %s%s (%s)\n", 48557c478bd9Sstevel@tonic-gate (dnp->dn_ident->di_flags & DT_IDFLG_LOCAL) ? "this->" : 48567c478bd9Sstevel@tonic-gate (dnp->dn_ident->di_flags & DT_IDFLG_TLS) ? "self->" : "", 48577c478bd9Sstevel@tonic-gate dnp->dn_ident->di_name, buf); 48587c478bd9Sstevel@tonic-gate 48597c478bd9Sstevel@tonic-gate if (dnp->dn_args != NULL) 48607c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s[\n", depth * 2, ""); 48617c478bd9Sstevel@tonic-gate 48627c478bd9Sstevel@tonic-gate for (arg = dnp->dn_args; arg != NULL; arg = arg->dn_list) { 48637c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 48647c478bd9Sstevel@tonic-gate if (arg->dn_list != NULL) 48657c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s,\n", depth * 2, ""); 48667c478bd9Sstevel@tonic-gate } 48677c478bd9Sstevel@tonic-gate 48687c478bd9Sstevel@tonic-gate if (dnp->dn_args != NULL) 48697c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s]\n", depth * 2, ""); 48707c478bd9Sstevel@tonic-gate break; 48717c478bd9Sstevel@tonic-gate 48727c478bd9Sstevel@tonic-gate case DT_NODE_SYM: 48737c478bd9Sstevel@tonic-gate dts = dnp->dn_ident->di_data; 48747c478bd9Sstevel@tonic-gate (void) fprintf(fp, "SYMBOL %s`%s (%s)\n", 48757c478bd9Sstevel@tonic-gate dts->dts_object, dts->dts_name, buf); 48767c478bd9Sstevel@tonic-gate break; 48777c478bd9Sstevel@tonic-gate 48787c478bd9Sstevel@tonic-gate case DT_NODE_TYPE: 48797c478bd9Sstevel@tonic-gate if (dnp->dn_string != NULL) { 48807c478bd9Sstevel@tonic-gate (void) fprintf(fp, "TYPE (%s) %s\n", 48817c478bd9Sstevel@tonic-gate buf, dnp->dn_string); 48827c478bd9Sstevel@tonic-gate } else 48837c478bd9Sstevel@tonic-gate (void) fprintf(fp, "TYPE (%s)\n", buf); 48847c478bd9Sstevel@tonic-gate break; 48857c478bd9Sstevel@tonic-gate 48867c478bd9Sstevel@tonic-gate case DT_NODE_FUNC: 48877c478bd9Sstevel@tonic-gate (void) fprintf(fp, "FUNC %s (%s)\n", 48887c478bd9Sstevel@tonic-gate dnp->dn_ident->di_name, buf); 48897c478bd9Sstevel@tonic-gate 48907c478bd9Sstevel@tonic-gate for (arg = dnp->dn_args; arg != NULL; arg = arg->dn_list) { 48917c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 48927c478bd9Sstevel@tonic-gate if (arg->dn_list != NULL) 48937c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s,\n", depth * 2, ""); 48947c478bd9Sstevel@tonic-gate } 48957c478bd9Sstevel@tonic-gate break; 48967c478bd9Sstevel@tonic-gate 48977c478bd9Sstevel@tonic-gate case DT_NODE_OP1: 48987c478bd9Sstevel@tonic-gate (void) fprintf(fp, "OP1 %s (%s)\n", opstr(dnp->dn_op), buf); 48997c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_child, fp, depth + 1); 49007c478bd9Sstevel@tonic-gate break; 49017c478bd9Sstevel@tonic-gate 49027c478bd9Sstevel@tonic-gate case DT_NODE_OP2: 49037c478bd9Sstevel@tonic-gate (void) fprintf(fp, "OP2 %s (%s)\n", opstr(dnp->dn_op), buf); 49047c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_left, fp, depth + 1); 49057c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_right, fp, depth + 1); 49060af8f00bSMatthew Ahrens if (dnp->dn_op == DT_TOK_LBRAC) { 49070af8f00bSMatthew Ahrens dt_node_t *ln = dnp->dn_right; 49080af8f00bSMatthew Ahrens while (ln->dn_list != NULL) { 49090af8f00bSMatthew Ahrens dt_node_printr(ln->dn_list, fp, depth + 1); 49100af8f00bSMatthew Ahrens ln = ln->dn_list; 49110af8f00bSMatthew Ahrens } 49120af8f00bSMatthew Ahrens } 49137c478bd9Sstevel@tonic-gate break; 49147c478bd9Sstevel@tonic-gate 49157c478bd9Sstevel@tonic-gate case DT_NODE_OP3: 49167c478bd9Sstevel@tonic-gate (void) fprintf(fp, "OP3 (%s)\n", buf); 49177c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_expr, fp, depth + 1); 49187c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s?\n", depth * 2, ""); 49197c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_left, fp, depth + 1); 49207c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s:\n", depth * 2, ""); 49217c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_right, fp, depth + 1); 49227c478bd9Sstevel@tonic-gate break; 49237c478bd9Sstevel@tonic-gate 49247c478bd9Sstevel@tonic-gate case DT_NODE_DEXPR: 49257c478bd9Sstevel@tonic-gate case DT_NODE_DFUNC: 49267c478bd9Sstevel@tonic-gate (void) fprintf(fp, "D EXPRESSION attr=%s\n", a); 49277c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_expr, fp, depth + 1); 49287c478bd9Sstevel@tonic-gate break; 49297c478bd9Sstevel@tonic-gate 49307c478bd9Sstevel@tonic-gate case DT_NODE_AGG: 49317c478bd9Sstevel@tonic-gate (void) fprintf(fp, "AGGREGATE @%s attr=%s [\n", 49327c478bd9Sstevel@tonic-gate dnp->dn_ident->di_name, a); 49337c478bd9Sstevel@tonic-gate 49347c478bd9Sstevel@tonic-gate for (arg = dnp->dn_aggtup; arg != NULL; arg = arg->dn_list) { 49357c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 49367c478bd9Sstevel@tonic-gate if (arg->dn_list != NULL) 49377c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s,\n", depth * 2, ""); 49387c478bd9Sstevel@tonic-gate } 49397c478bd9Sstevel@tonic-gate 49407c478bd9Sstevel@tonic-gate if (dnp->dn_aggfun) { 49417c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s] = ", depth * 2, ""); 49427c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_aggfun, fp, depth + 1); 49437c478bd9Sstevel@tonic-gate } else 49447c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s]\n", depth * 2, ""); 49457c478bd9Sstevel@tonic-gate 49467c478bd9Sstevel@tonic-gate if (dnp->dn_aggfun) 49477c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s)\n", depth * 2, ""); 49487c478bd9Sstevel@tonic-gate break; 49497c478bd9Sstevel@tonic-gate 49507c478bd9Sstevel@tonic-gate case DT_NODE_PDESC: 49517c478bd9Sstevel@tonic-gate (void) fprintf(fp, "PDESC %s:%s:%s:%s [%u]\n", 49527c478bd9Sstevel@tonic-gate dnp->dn_desc->dtpd_provider, dnp->dn_desc->dtpd_mod, 49537c478bd9Sstevel@tonic-gate dnp->dn_desc->dtpd_func, dnp->dn_desc->dtpd_name, 49547c478bd9Sstevel@tonic-gate dnp->dn_desc->dtpd_id); 49557c478bd9Sstevel@tonic-gate break; 49567c478bd9Sstevel@tonic-gate 49577c478bd9Sstevel@tonic-gate case DT_NODE_CLAUSE: 49587c478bd9Sstevel@tonic-gate (void) fprintf(fp, "CLAUSE attr=%s\n", a); 49597c478bd9Sstevel@tonic-gate 49607c478bd9Sstevel@tonic-gate for (arg = dnp->dn_pdescs; arg != NULL; arg = arg->dn_list) 49617c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 49627c478bd9Sstevel@tonic-gate 49637c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*sCTXATTR %s\n", depth * 2, "", 49647c478bd9Sstevel@tonic-gate dt_attr_str(dnp->dn_ctxattr, a, sizeof (a))); 49657c478bd9Sstevel@tonic-gate 49667c478bd9Sstevel@tonic-gate if (dnp->dn_pred != NULL) { 49677c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*sPREDICATE /\n", depth * 2, ""); 49687c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_pred, fp, depth + 1); 49697c478bd9Sstevel@tonic-gate (void) fprintf(fp, "%*s/\n", depth * 2, ""); 49707c478bd9Sstevel@tonic-gate } 49717c478bd9Sstevel@tonic-gate 49727c478bd9Sstevel@tonic-gate for (arg = dnp->dn_acts; arg != NULL; arg = arg->dn_list) 49737c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 49740af8f00bSMatthew Ahrens (void) fprintf(fp, "\n"); 49757c478bd9Sstevel@tonic-gate break; 49767c478bd9Sstevel@tonic-gate 49777c478bd9Sstevel@tonic-gate case DT_NODE_INLINE: 49787c478bd9Sstevel@tonic-gate inp = dnp->dn_ident->di_iarg; 49797c478bd9Sstevel@tonic-gate 49807c478bd9Sstevel@tonic-gate (void) fprintf(fp, "INLINE %s (%s)\n", 49817c478bd9Sstevel@tonic-gate dnp->dn_ident->di_name, buf); 49827c478bd9Sstevel@tonic-gate dt_node_printr(inp->din_root, fp, depth + 1); 49837c478bd9Sstevel@tonic-gate break; 49847c478bd9Sstevel@tonic-gate 49857c478bd9Sstevel@tonic-gate case DT_NODE_MEMBER: 49867c478bd9Sstevel@tonic-gate (void) fprintf(fp, "MEMBER %s (%s)\n", dnp->dn_membname, buf); 49877c478bd9Sstevel@tonic-gate if (dnp->dn_membexpr) 49887c478bd9Sstevel@tonic-gate dt_node_printr(dnp->dn_membexpr, fp, depth + 1); 49897c478bd9Sstevel@tonic-gate break; 49907c478bd9Sstevel@tonic-gate 49917c478bd9Sstevel@tonic-gate case DT_NODE_XLATOR: 49927c478bd9Sstevel@tonic-gate (void) fprintf(fp, "XLATOR (%s)", buf); 49937c478bd9Sstevel@tonic-gate 49947c478bd9Sstevel@tonic-gate if (ctf_type_name(dnp->dn_xlator->dx_src_ctfp, 49957c478bd9Sstevel@tonic-gate dnp->dn_xlator->dx_src_type, n, sizeof (n)) != NULL) 49967c478bd9Sstevel@tonic-gate (void) fprintf(fp, " from <%s>", n); 49977c478bd9Sstevel@tonic-gate 49987c478bd9Sstevel@tonic-gate if (ctf_type_name(dnp->dn_xlator->dx_dst_ctfp, 49997c478bd9Sstevel@tonic-gate dnp->dn_xlator->dx_dst_type, n, sizeof (n)) != NULL) 50007c478bd9Sstevel@tonic-gate (void) fprintf(fp, " to <%s>", n); 50017c478bd9Sstevel@tonic-gate 50027c478bd9Sstevel@tonic-gate (void) fprintf(fp, "\n"); 50037c478bd9Sstevel@tonic-gate 50047c478bd9Sstevel@tonic-gate for (arg = dnp->dn_members; arg != NULL; arg = arg->dn_list) 50057c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 50067c478bd9Sstevel@tonic-gate break; 50077c478bd9Sstevel@tonic-gate 50087c478bd9Sstevel@tonic-gate case DT_NODE_PROBE: 50097c478bd9Sstevel@tonic-gate (void) fprintf(fp, "PROBE %s\n", dnp->dn_ident->di_name); 50107c478bd9Sstevel@tonic-gate break; 50117c478bd9Sstevel@tonic-gate 50127c478bd9Sstevel@tonic-gate case DT_NODE_PROVIDER: 50137c478bd9Sstevel@tonic-gate (void) fprintf(fp, "PROVIDER %s (%s)\n", 50147c478bd9Sstevel@tonic-gate dnp->dn_provname, dnp->dn_provred ? "redecl" : "decl"); 50157c478bd9Sstevel@tonic-gate for (arg = dnp->dn_probes; arg != NULL; arg = arg->dn_list) 50167c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 50177c478bd9Sstevel@tonic-gate break; 50187c478bd9Sstevel@tonic-gate 50197c478bd9Sstevel@tonic-gate case DT_NODE_PROG: 50207c478bd9Sstevel@tonic-gate (void) fprintf(fp, "PROGRAM attr=%s\n", a); 50217c478bd9Sstevel@tonic-gate for (arg = dnp->dn_list; arg != NULL; arg = arg->dn_list) 50227c478bd9Sstevel@tonic-gate dt_node_printr(arg, fp, depth + 1); 50237c478bd9Sstevel@tonic-gate break; 50247c478bd9Sstevel@tonic-gate 50250af8f00bSMatthew Ahrens case DT_NODE_IF: 50260af8f00bSMatthew Ahrens (void) fprintf(fp, "IF attr=%s CONDITION:\n", a); 50270af8f00bSMatthew Ahrens 50280af8f00bSMatthew Ahrens dt_node_printr(dnp->dn_conditional, fp, depth + 1); 50290af8f00bSMatthew Ahrens 50300af8f00bSMatthew Ahrens (void) fprintf(fp, "%*sIF BODY: \n", depth * 2, ""); 50310af8f00bSMatthew Ahrens for (arg = dnp->dn_body; arg != NULL; arg = arg->dn_list) 50320af8f00bSMatthew Ahrens dt_node_printr(arg, fp, depth + 1); 50330af8f00bSMatthew Ahrens 50340af8f00bSMatthew Ahrens if (dnp->dn_alternate_body != NULL) { 50350af8f00bSMatthew Ahrens (void) fprintf(fp, "%*sIF ELSE: \n", depth * 2, ""); 50360af8f00bSMatthew Ahrens for (arg = dnp->dn_alternate_body; arg != NULL; 50370af8f00bSMatthew Ahrens arg = arg->dn_list) 50380af8f00bSMatthew Ahrens dt_node_printr(arg, fp, depth + 1); 50390af8f00bSMatthew Ahrens } 50400af8f00bSMatthew Ahrens 50410af8f00bSMatthew Ahrens break; 50420af8f00bSMatthew Ahrens 50437c478bd9Sstevel@tonic-gate default: 50447c478bd9Sstevel@tonic-gate (void) fprintf(fp, "<bad node %p, kind %d>\n", 50457c478bd9Sstevel@tonic-gate (void *)dnp, dnp->dn_kind); 50467c478bd9Sstevel@tonic-gate } 50477c478bd9Sstevel@tonic-gate } 50487c478bd9Sstevel@tonic-gate 50497c478bd9Sstevel@tonic-gate int 50507c478bd9Sstevel@tonic-gate dt_node_root(dt_node_t *dnp) 50517c478bd9Sstevel@tonic-gate { 50527c478bd9Sstevel@tonic-gate yypcb->pcb_root = dnp; 50537c478bd9Sstevel@tonic-gate return (0); 50547c478bd9Sstevel@tonic-gate } 50557c478bd9Sstevel@tonic-gate 50567c478bd9Sstevel@tonic-gate /*PRINTFLIKE3*/ 50577c478bd9Sstevel@tonic-gate void 50587c478bd9Sstevel@tonic-gate dnerror(const dt_node_t *dnp, dt_errtag_t tag, const char *format, ...) 50597c478bd9Sstevel@tonic-gate { 50607c478bd9Sstevel@tonic-gate int oldlineno = yylineno; 50617c478bd9Sstevel@tonic-gate va_list ap; 50627c478bd9Sstevel@tonic-gate 50637c478bd9Sstevel@tonic-gate yylineno = dnp->dn_line; 50647c478bd9Sstevel@tonic-gate 50657c478bd9Sstevel@tonic-gate va_start(ap, format); 50667c478bd9Sstevel@tonic-gate xyvwarn(tag, format, ap); 50677c478bd9Sstevel@tonic-gate va_end(ap); 50687c478bd9Sstevel@tonic-gate 50697c478bd9Sstevel@tonic-gate yylineno = oldlineno; 50707c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 50717c478bd9Sstevel@tonic-gate } 50727c478bd9Sstevel@tonic-gate 50737c478bd9Sstevel@tonic-gate /*PRINTFLIKE3*/ 50747c478bd9Sstevel@tonic-gate void 50757c478bd9Sstevel@tonic-gate dnwarn(const dt_node_t *dnp, dt_errtag_t tag, const char *format, ...) 50767c478bd9Sstevel@tonic-gate { 50777c478bd9Sstevel@tonic-gate int oldlineno = yylineno; 50787c478bd9Sstevel@tonic-gate va_list ap; 50797c478bd9Sstevel@tonic-gate 50807c478bd9Sstevel@tonic-gate yylineno = dnp->dn_line; 50817c478bd9Sstevel@tonic-gate 50827c478bd9Sstevel@tonic-gate va_start(ap, format); 50837c478bd9Sstevel@tonic-gate xyvwarn(tag, format, ap); 50847c478bd9Sstevel@tonic-gate va_end(ap); 50857c478bd9Sstevel@tonic-gate 50867c478bd9Sstevel@tonic-gate yylineno = oldlineno; 50877c478bd9Sstevel@tonic-gate } 50887c478bd9Sstevel@tonic-gate 50897c478bd9Sstevel@tonic-gate /*PRINTFLIKE2*/ 50907c478bd9Sstevel@tonic-gate void 50917c478bd9Sstevel@tonic-gate xyerror(dt_errtag_t tag, const char *format, ...) 50927c478bd9Sstevel@tonic-gate { 50937c478bd9Sstevel@tonic-gate va_list ap; 50947c478bd9Sstevel@tonic-gate 50957c478bd9Sstevel@tonic-gate va_start(ap, format); 50967c478bd9Sstevel@tonic-gate xyvwarn(tag, format, ap); 50977c478bd9Sstevel@tonic-gate va_end(ap); 50987c478bd9Sstevel@tonic-gate 50997c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 51007c478bd9Sstevel@tonic-gate } 51017c478bd9Sstevel@tonic-gate 51027c478bd9Sstevel@tonic-gate /*PRINTFLIKE2*/ 51037c478bd9Sstevel@tonic-gate void 51047c478bd9Sstevel@tonic-gate xywarn(dt_errtag_t tag, const char *format, ...) 51057c478bd9Sstevel@tonic-gate { 51067c478bd9Sstevel@tonic-gate va_list ap; 51077c478bd9Sstevel@tonic-gate 51087c478bd9Sstevel@tonic-gate va_start(ap, format); 51097c478bd9Sstevel@tonic-gate xyvwarn(tag, format, ap); 51107c478bd9Sstevel@tonic-gate va_end(ap); 51117c478bd9Sstevel@tonic-gate } 51127c478bd9Sstevel@tonic-gate 51137c478bd9Sstevel@tonic-gate void 51147c478bd9Sstevel@tonic-gate xyvwarn(dt_errtag_t tag, const char *format, va_list ap) 51157c478bd9Sstevel@tonic-gate { 51167c478bd9Sstevel@tonic-gate if (yypcb == NULL) 51177c478bd9Sstevel@tonic-gate return; /* compiler is not currently active: act as a no-op */ 51187c478bd9Sstevel@tonic-gate 51197c478bd9Sstevel@tonic-gate dt_set_errmsg(yypcb->pcb_hdl, dt_errtag(tag), yypcb->pcb_region, 51207c478bd9Sstevel@tonic-gate yypcb->pcb_filetag, yypcb->pcb_fileptr ? yylineno : 0, format, ap); 51217c478bd9Sstevel@tonic-gate } 51227c478bd9Sstevel@tonic-gate 51237c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/ 51247c478bd9Sstevel@tonic-gate void 51257c478bd9Sstevel@tonic-gate yyerror(const char *format, ...) 51267c478bd9Sstevel@tonic-gate { 51277c478bd9Sstevel@tonic-gate va_list ap; 51287c478bd9Sstevel@tonic-gate 51297c478bd9Sstevel@tonic-gate va_start(ap, format); 51307c478bd9Sstevel@tonic-gate yyvwarn(format, ap); 51317c478bd9Sstevel@tonic-gate va_end(ap); 51327c478bd9Sstevel@tonic-gate 51337c478bd9Sstevel@tonic-gate longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 51347c478bd9Sstevel@tonic-gate } 51357c478bd9Sstevel@tonic-gate 51367c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/ 51377c478bd9Sstevel@tonic-gate void 51387c478bd9Sstevel@tonic-gate yywarn(const char *format, ...) 51397c478bd9Sstevel@tonic-gate { 51407c478bd9Sstevel@tonic-gate va_list ap; 51417c478bd9Sstevel@tonic-gate 51427c478bd9Sstevel@tonic-gate va_start(ap, format); 51437c478bd9Sstevel@tonic-gate yyvwarn(format, ap); 51447c478bd9Sstevel@tonic-gate va_end(ap); 51457c478bd9Sstevel@tonic-gate } 51467c478bd9Sstevel@tonic-gate 51477c478bd9Sstevel@tonic-gate void 51487c478bd9Sstevel@tonic-gate yyvwarn(const char *format, va_list ap) 51497c478bd9Sstevel@tonic-gate { 51507c478bd9Sstevel@tonic-gate if (yypcb == NULL) 51517c478bd9Sstevel@tonic-gate return; /* compiler is not currently active: act as a no-op */ 51527c478bd9Sstevel@tonic-gate 51537c478bd9Sstevel@tonic-gate dt_set_errmsg(yypcb->pcb_hdl, dt_errtag(D_SYNTAX), yypcb->pcb_region, 51547c478bd9Sstevel@tonic-gate yypcb->pcb_filetag, yypcb->pcb_fileptr ? yylineno : 0, format, ap); 51557c478bd9Sstevel@tonic-gate 51567c478bd9Sstevel@tonic-gate if (strchr(format, '\n') == NULL) { 51577c478bd9Sstevel@tonic-gate dtrace_hdl_t *dtp = yypcb->pcb_hdl; 51587c478bd9Sstevel@tonic-gate size_t len = strlen(dtp->dt_errmsg); 51597c478bd9Sstevel@tonic-gate char *p, *s = dtp->dt_errmsg + len; 51607c478bd9Sstevel@tonic-gate size_t n = sizeof (dtp->dt_errmsg) - len; 51617c478bd9Sstevel@tonic-gate 51627c478bd9Sstevel@tonic-gate if (yytext[0] == '\0') 51637c478bd9Sstevel@tonic-gate (void) snprintf(s, n, " near end of input"); 51647c478bd9Sstevel@tonic-gate else if (yytext[0] == '\n') 51657c478bd9Sstevel@tonic-gate (void) snprintf(s, n, " near end of line"); 51667c478bd9Sstevel@tonic-gate else { 51677c478bd9Sstevel@tonic-gate if ((p = strchr(yytext, '\n')) != NULL) 51687c478bd9Sstevel@tonic-gate *p = '\0'; /* crop at newline */ 51697c478bd9Sstevel@tonic-gate (void) snprintf(s, n, " near \"%s\"", yytext); 51707c478bd9Sstevel@tonic-gate } 51717c478bd9Sstevel@tonic-gate } 51727c478bd9Sstevel@tonic-gate } 51737c478bd9Sstevel@tonic-gate 51747c478bd9Sstevel@tonic-gate void 51757c478bd9Sstevel@tonic-gate yylabel(const char *label) 51767c478bd9Sstevel@tonic-gate { 51777c478bd9Sstevel@tonic-gate dt_dprintf("set label to <%s>\n", label ? label : "NULL"); 51787c478bd9Sstevel@tonic-gate yypcb->pcb_region = label; 51797c478bd9Sstevel@tonic-gate } 51807c478bd9Sstevel@tonic-gate 51817c478bd9Sstevel@tonic-gate int 51827c478bd9Sstevel@tonic-gate yywrap(void) 51837c478bd9Sstevel@tonic-gate { 51847c478bd9Sstevel@tonic-gate return (1); /* indicate that lex should return a zero token for EOF */ 51857c478bd9Sstevel@tonic-gate } 5186