Lines Matching refs:code2
3 #define code2(c1,c2) code(c1); code(c2) macro
31 | list asgn '\n' { code2(xpop, STOP); return 1; }
33 | list expr '\n' { code2(printtop, STOP); return 1; }
83 expr: NUMBER { $$ = code2(constpush, (Inst)$1); }
88 | READ '(' VAR ')' { $$ = code2(varread, (Inst)$3); }
89 | BLTIN '(' expr ')' { $$=$3; code2(bltin, (Inst)$1->u.ptr); }
107 | INC VAR { $$ = code2(preinc,(Inst)$2); }
108 | DEC VAR { $$ = code2(predec,(Inst)$2); }
109 | VAR INC { $$ = code2(postinc,(Inst)$1); }
110 | VAR DEC { $$ = code2(postdec,(Inst)$1); }
113 | STRING { $$ = code2(prstr, (Inst)$1); }
115 | prlist ',' STRING { code2(prstr, (Inst)$3); }