Searched refs:object_or_called_scope (Results 1 – 7 of 7) sorted by relevance
/php-src/Zend/ |
H A D | zend_vm_execute.skl | 45 void *object_or_called_scope; 52 object_or_called_scope = zend_get_this_object(EG(current_execute_data)); 53 if (EXPECTED(!object_or_called_scope)) { 54 object_or_called_scope = zend_get_called_scope(EG(current_execute_data)); 60 (zend_function*)op_array, 0, object_or_called_scope);
|
H A D | zend_execute.h | 260 …ta *call, uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_called_scope) in zend_vm_init_call_frame() argument 262 ZEND_ASSERT(!func->common.scope || object_or_called_scope); in zend_vm_init_call_frame() 264 Z_PTR(call->This) = object_or_called_scope; in zend_vm_init_call_frame() 269 …ed_stack, uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_called_scope) in zend_vm_stack_push_call_frame_ex() argument 278 …_vm_init_call_frame(call, call_info | ZEND_CALL_ALLOCATED, func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame_ex() 282 zend_vm_init_call_frame(call, call_info, func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame_ex() 297 …all_frame(uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_called_scope) in zend_vm_stack_push_call_frame() argument 302 func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame()
|
H A D | zend_execute.c | 4981 void *object_or_called_scope; in zend_init_dynamic_call_object() local 4989 object_or_called_scope = called_scope; in zend_init_dynamic_call_object() 4998 object_or_called_scope = object; in zend_init_dynamic_call_object() 5005 object_or_called_scope = object; in zend_init_dynamic_call_object() 5018 fbc, num_args, object_or_called_scope); in zend_init_dynamic_call_object() 5025 void *object_or_called_scope; in zend_init_dynamic_call_array() local 5077 object_or_called_scope = called_scope; in zend_init_dynamic_call_array() 5090 object_or_called_scope = object->ce; in zend_init_dynamic_call_array() 5094 object_or_called_scope = object; in zend_init_dynamic_call_array() 5107 fbc, num_args, object_or_called_scope); in zend_init_dynamic_call_array() [all …]
|
H A D | zend_execute_API.c | 806 void *object_or_called_scope; in zend_call_function() local 846 object_or_called_scope = fci_cache->called_scope; in zend_call_function() 849 object_or_called_scope = fci_cache->object; in zend_call_function() 854 func, fci->param_count, object_or_called_scope); in zend_call_function()
|
H A D | zend_vm_def.h | 3913 void *object_or_called_scope; variable 3922 object_or_called_scope = fcc.called_scope; 3931 object_or_called_scope = fcc.object; 3936 object_or_called_scope = fcc.object; 3961 func, opline->extended_value, object_or_called_scope);
|
H A D | zend_vm_execute.h | 7418 void *object_or_called_scope; in ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER() local 7436 object_or_called_scope = fcc.object; in ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER() 7441 object_or_called_scope = fcc.object; in ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER() 9982 void *object_or_called_scope; in ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER() local 10000 object_or_called_scope = fcc.object; in ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER() 10005 object_or_called_scope = fcc.object; in ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER() 12464 void *object_or_called_scope; in ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER() local 12482 object_or_called_scope = fcc.object; in ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER() 12487 object_or_called_scope = fcc.object; in ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER() 64193 void *object_or_called_scope; local [all …]
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_ir.c | 8563 ir_ref object_or_called_scope, call_info, call_info2, object, if_cond; local 8571 object_or_called_scope = ir_LOAD_A(ir_ADD_OFFSET(func_ref, offsetof(zend_closure, called_scope))); 8592 object_or_called_scope = ir_PHI_2(IR_ADDR, object, object_or_called_scope); 8599 ir_STORE(jit_CALL(rx, This.value.ptr), object_or_called_scope);
|
Completed in 268 milliseconds