Lines Matching refs:num_args
254 …d_execute_data *call, uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_… in zend_vm_init_call_frame() argument
260 ZEND_CALL_NUM_ARGS(call) = num_args; in zend_vm_init_call_frame()
263 …(uint32_t used_stack, uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_… in zend_vm_stack_push_call_frame_ex() argument
272 …zend_vm_init_call_frame(call, call_info | ZEND_CALL_ALLOCATED, func, num_args, object_or_called_sc… in zend_vm_stack_push_call_frame_ex()
276 zend_vm_init_call_frame(call, call_info, func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame_ex()
281 static zend_always_inline uint32_t zend_vm_calc_used_stack(uint32_t num_args, zend_function *func) in zend_vm_calc_used_stack() argument
283 uint32_t used_stack = ZEND_CALL_FRAME_SLOT + num_args + func->common.T; in zend_vm_calc_used_stack()
286 used_stack += func->op_array.last_var - MIN(func->op_array.num_args, num_args); in zend_vm_calc_used_stack()
291 …stack_push_call_frame(uint32_t call_info, zend_function *func, uint32_t num_args, void *object_or_… in zend_vm_stack_push_call_frame() argument
293 uint32_t used_stack = zend_vm_calc_used_stack(num_args, func); in zend_vm_stack_push_call_frame()
296 func, num_args, object_or_called_scope); in zend_vm_stack_push_call_frame()
302 uint32_t count = ZEND_CALL_NUM_ARGS(call) - call->func->op_array.num_args; in zend_vm_stack_free_extra_args_ex()
318 uint32_t num_args = ZEND_CALL_NUM_ARGS(call); in zend_vm_stack_free_args() local
320 if (EXPECTED(num_args > 0)) { in zend_vm_stack_free_args()
326 } while (--num_args); in zend_vm_stack_free_args()