Lines Matching refs:fast_call

3028 			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
3030 Z_OBJ_P(fast_call) = EG(exception); in zend_dispatch_try_catch_finally_helper_SPEC()
3032 Z_OPLINE_NUM_P(fast_call) = (uint32_t)-1; in zend_dispatch_try_catch_finally_helper_SPEC()
3036 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
3039 if (Z_OPLINE_NUM_P(fast_call) != (uint32_t)-1 in zend_dispatch_try_catch_finally_helper_SPEC()
3040 && (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()
3041 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()
3047 if (Z_OBJ_P(fast_call)) { in zend_dispatch_try_catch_finally_helper_SPEC()
3049 zend_exception_set_previous(ex, Z_OBJ_P(fast_call)); in zend_dispatch_try_catch_finally_helper_SPEC()
3051 ex = EG(exception) = Z_OBJ_P(fast_call); in zend_dispatch_try_catch_finally_helper_SPEC()
3190 zval *fast_call = EX_VAR(opline->op1.var); in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER() local
3194 if (Z_OPLINE_NUM_P(fast_call) != (uint32_t)-1 in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
3195 && (EX(func)->op_array.opcodes[Z_OPLINE_NUM_P(fast_call)].op2_type & (IS_TMP_VAR | IS_VAR))) { in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
3196 zval *return_value = EX_VAR(EX(func)->op_array.opcodes[Z_OPLINE_NUM_P(fast_call)].op2.var); in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
3202 if (Z_OBJ_P(fast_call) != NULL) { in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
3204 OBJ_RELEASE(Z_OBJ_P(fast_call)); in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
3205 Z_OBJ_P(fast_call) = NULL; in ZEND_DISCARD_EXCEPTION_SPEC_HANDLER()
3214 zval *fast_call = EX_VAR(opline->result.var); in ZEND_FAST_CALL_SPEC_HANDLER() local
3216 Z_OBJ_P(fast_call) = NULL; in ZEND_FAST_CALL_SPEC_HANDLER()
3218 Z_OPLINE_NUM_P(fast_call) = opline - EX(func)->op_array.opcodes; in ZEND_FAST_CALL_SPEC_HANDLER()
3225 zval *fast_call = EX_VAR(opline->op1.var); in ZEND_FAST_RET_SPEC_HANDLER() local
3228 if (Z_OPLINE_NUM_P(fast_call) != (uint32_t)-1) { in ZEND_FAST_RET_SPEC_HANDLER()
3229 const zend_op *fast_ret = EX(func)->op_array.opcodes + Z_OPLINE_NUM_P(fast_call); in ZEND_FAST_RET_SPEC_HANDLER()
3235 EG(exception) = Z_OBJ_P(fast_call); in ZEND_FAST_RET_SPEC_HANDLER()
3236 Z_OBJ_P(fast_call) = NULL; in ZEND_FAST_RET_SPEC_HANDLER()