Home
last modified time | relevance | path

Searched refs:OP1 (Results 1 – 1 of 1) sorted by relevance

/titanic_50/usr/src/lib/libdtrace/common/
H A Ddt_grammar.y34 #define OP1(op, c) dt_node_op1(op, c) macro
425 $$ = OP1(DT_TOK_POSTINC, $1);
428 $$ = OP1(DT_TOK_POSTDEC, $1);
446 | DT_TOK_ADDADD unary_expression { $$ = OP1(DT_TOK_PREINC, $2); }
447 | DT_TOK_SUBSUB unary_expression { $$ = OP1(DT_TOK_PREDEC, $2); }
448 | unary_operator cast_expression { $$ = OP1($1, $2); }
449 | DT_TOK_SIZEOF unary_expression { $$ = OP1(DT_TOK_SIZEOF, $2); }
451 $$ = OP1(DT_TOK_SIZEOF, dt_node_type($3));
454 $$ = OP1(DT_TOK_STRINGOF, $2);