|
20 | 20 |
|
21 | 21 | #define ZEND_INTENSIVE_DEBUGGING 0
|
22 | 22 |
|
| 23 | +#include <stdio.h> |
| 24 | +#include <signal.h> |
| 25 | + |
| 26 | +#include "zend.h" |
| 27 | +#include "zend_compile.h" |
23 | 28 | #include "zend_execute.h"
|
24 | | -#include "zend_API.h"// for ZEND_FUNCTION() |
25 | | -#include "zend_arena.h" |
| 29 | +#include "zend_API.h" |
| 30 | +#include "zend_ptr_stack.h" |
26 | 31 | #include "zend_constants.h"
|
27 | 32 | #include "zend_extensions.h"
|
28 | 33 | #include "zend_ini.h"
|
29 | 34 | #include "zend_exceptions.h"
|
| 35 | +#include "zend_interfaces.h" |
30 | 36 | #include "zend_closures.h"
|
31 | | -#include "zend_generators.h" // for zend_ce_generator |
32 | | -#include "zend_inheritance.h" // for zend_do_link_class() |
| 37 | +#include "zend_generators.h" |
| 38 | +#include "zend_vm.h" |
| 39 | +#include "zend_dtrace.h" |
| 40 | +#include "zend_inheritance.h" |
| 41 | +#include "zend_type_info.h" |
33 | 42 | #include "zend_smart_str.h"
|
34 | 43 | #include "zend_observer.h"
|
| 44 | +#include "zend_system_id.h" |
| 45 | +#include "zend_call_stack.h" |
| 46 | +#include "Optimizer/zend_func_info.h" |
35 | 47 |
|
36 | 48 | /* Virtual current working directory support */
|
37 | 49 | #include "zend_virtual_cwd.h"
|
38 | 50 |
|
39 | | -#include <stdio.h> |
40 | | -#include <signal.h> |
41 | | - |
42 | 51 | #ifdef HAVE_GCC_GLOBAL_REGS
|
43 | 52 | # if defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(i386)
|
44 | 53 | # define ZEND_VM_FP_GLOBAL_REG "%esi"
|
@@ -5339,9 +5348,6 @@ static zend_always_inline zend_execute_data *_zend_vm_stack_push_call_frame(uint
|
5339 | 5348 | /* This callback disables optimization of "vm_stack_data" variable in VM */
|
5340 | 5349 | ZEND_API void (ZEND_FASTCALL *zend_touch_vm_stack_data)(void *vm_stack_data) = NULL;
|
5341 | 5350 |
|
5342 | | -#include "zend_fibers.h" // needed by zend_vm_execute.h |
5343 | | -#include "zend_interfaces.h" // needed by zend_vm_execute.h |
5344 | | -#include "zend_objects.h" // needed by zend_vm_execute.h |
5345 | 5351 | #include "zend_vm_execute.h"
|
5346 | 5352 |
|
5347 | 5353 | ZEND_API zend_result zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler)
|
|
0 commit comments