Lines Matching defs:cxstack_ix
331 #define PUSHBLOCK(cx,t,sp) CXINC, cx = &cxstack[cxstack_ix], \
341 (long)cxstack_ix, PL_block_type[CxTYPE(cx)]); )
344 #define POPBLOCK(cx,pm) cx = &cxstack[cxstack_ix--], \
354 (long)cxstack_ix+1,PL_block_type[CxTYPE(cx)]); )
357 #define TOPBLOCK(cx) cx = &cxstack[cxstack_ix], \
397 #define PUSHSUBST(cx) CXINC, cx = &cxstack[cxstack_ix], \
415 #define POPSUBST(cx) cx = &cxstack[cxstack_ix--]; \
454 #define CXINC (cxstack_ix < cxstack_max ? ++cxstack_ix : (cxstack_ix = cxinc()))
540 #define cxstack_ix (PL_curstackinfo->si_cxix)