Lines Matching refs:shiftlist
10 zend_uint *shiftlist; in nop_removal() local
13 shiftlist = (zend_uint *)DO_ALLOCA(sizeof(zend_uint) * op_array->last); in nop_removal()
23 FREE_ALLOCA(shiftlist); in nop_removal()
42 shiftlist[i++] = shift; in nop_removal()
67 ZEND_OP1(opline).opline_num -= shiftlist[ZEND_OP1(opline).opline_num]; in nop_removal()
82 ZEND_OP2(opline).opline_num -= shiftlist[ZEND_OP2(opline).opline_num]; in nop_removal()
85 ZEND_OP2(opline).opline_num -= shiftlist[ZEND_OP2(opline).opline_num]; in nop_removal()
86 opline->extended_value -= shiftlist[opline->extended_value]; in nop_removal()
89 opline->extended_value -= shiftlist[opline->extended_value]; in nop_removal()
96 op_array->brk_cont_array[j].brk -= shiftlist[op_array->brk_cont_array[j].brk]; in nop_removal()
97 op_array->brk_cont_array[j].cont -= shiftlist[op_array->brk_cont_array[j].cont]; in nop_removal()
98 op_array->brk_cont_array[j].start -= shiftlist[op_array->brk_cont_array[j].start]; in nop_removal()
103 op_array->try_catch_array[j].try_op -= shiftlist[op_array->try_catch_array[j].try_op]; in nop_removal()
104 op_array->try_catch_array[j].catch_op -= shiftlist[op_array->try_catch_array[j].catch_op]; in nop_removal()
107 op_array->try_catch_array[j].finally_op -= shiftlist[op_array->try_catch_array[j].finally_op]; in nop_removal()
108 op_array->try_catch_array[j].finally_end -= shiftlist[op_array->try_catch_array[j].finally_end]; in nop_removal()
119 *opline_num -= shiftlist[*opline_num]; in nop_removal()
125 FREE_ALLOCA(shiftlist); in nop_removal()