Lines Matching refs:fast_call

2547 			zval *fast_call = EX_VAR(EX(func)->op_array.opcodes[try_catch->finally_end].op1.var);  in zend_dispatch_try_catch_finally_helper_SPEC()  local
2549 Z_OBJ_P(fast_call) = EG(exception); in zend_dispatch_try_catch_finally_helper_SPEC()
2551 Z_OPLINE_NUM_P(fast_call) = (uint32_t)-1; in zend_dispatch_try_catch_finally_helper_SPEC()
2555 zval *fast_call = EX_VAR(EX(func)->op_array.opcodes[try_catch->finally_end].op1.var); in zend_dispatch_try_catch_finally_helper_SPEC() local
2558 if (Z_OPLINE_NUM_P(fast_call) != (uint32_t)-1 in zend_dispatch_try_catch_finally_helper_SPEC()
2559 && (EX(func)->op_array.opcodes[Z_OPLINE_NUM_P(fast_call)].op2_type & (IS_TMP_VAR | IS_VAR))) { in zend_dispatch_try_catch_finally_helper_SPEC()
2560 zval *return_value = EX_VAR(EX(func)->op_array.opcodes[Z_OPLINE_NUM_P(fast_call)].op2.var); in zend_dispatch_try_catch_finally_helper_SPEC()
2566 if (Z_OBJ_P(fast_call)) { in zend_dispatch_try_catch_finally_helper_SPEC()
2568 zend_exception_set_previous(ex, Z_OBJ_P(fast_call)); in zend_dispatch_try_catch_finally_helper_SPEC()
2570 EG(exception) = Z_OBJ_P(fast_call); in zend_dispatch_try_catch_finally_helper_SPEC()
2572 ex = Z_OBJ_P(fast_call); in zend_dispatch_try_catch_finally_helper_SPEC()
2691 zval *fast_call = EX_VAR(opline->op1.var); in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER() local
2695 if (Z_OPLINE_NUM_P(fast_call) != (uint32_t)-1 in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
2696 && (EX(func)->op_array.opcodes[Z_OPLINE_NUM_P(fast_call)].op2_type & (IS_TMP_VAR | IS_VAR))) { in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
2697 zval *return_value = EX_VAR(EX(func)->op_array.opcodes[Z_OPLINE_NUM_P(fast_call)].op2.var); in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
2703 if (Z_OBJ_P(fast_call) != NULL) { in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
2705 OBJ_RELEASE(Z_OBJ_P(fast_call)); in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
2706 Z_OBJ_P(fast_call) = NULL; in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
2715 zval *fast_call = EX_VAR(opline->result.var); in ZEND_FAST_CALL_SPEC_HANDLER() local
2717 Z_OBJ_P(fast_call) = NULL; in ZEND_FAST_CALL_SPEC_HANDLER()
2719 Z_OPLINE_NUM_P(fast_call) = opline - EX(func)->op_array.opcodes; in ZEND_FAST_CALL_SPEC_HANDLER()
2726 zval *fast_call = EX_VAR(opline->op1.var); in ZEND_FAST_RET_SPEC_HANDLER() local
2729 if (Z_OPLINE_NUM_P(fast_call) != (uint32_t)-1) { in ZEND_FAST_RET_SPEC_HANDLER()
2730 const zend_op *fast_ret = EX(func)->op_array.opcodes + Z_OPLINE_NUM_P(fast_call); in ZEND_FAST_RET_SPEC_HANDLER()
2736 EG(exception) = Z_OBJ_P(fast_call); in ZEND_FAST_RET_SPEC_HANDLER()
2737 Z_OBJ_P(fast_call) = NULL; in ZEND_FAST_RET_SPEC_HANDLER()