diff options
Diffstat (limited to 'Zend/zend_vm_opcodes.c')
| -rw-r--r-- | Zend/zend_vm_opcodes.c | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/Zend/zend_vm_opcodes.c b/Zend/zend_vm_opcodes.c index df2f92dc17..61ce8ce072 100644 --- a/Zend/zend_vm_opcodes.c +++ b/Zend/zend_vm_opcodes.c @@ -21,7 +21,7 @@ #include <stdio.h> #include <zend.h> -static const char *zend_vm_opcodes_names[187] = { +static const char *zend_vm_opcodes_names[198] = { "ZEND_NOP", "ZEND_ADD", "ZEND_SUB", @@ -209,9 +209,20 @@ static const char *zend_vm_opcodes_names[187] = { "ZEND_FETCH_THIS", NULL, "ZEND_ISSET_ISEMPTY_THIS", + "ZEND_SWITCH_LONG", + "ZEND_SWITCH_STRING", + "ZEND_IN_ARRAY", + "ZEND_COUNT", + "ZEND_GET_CLASS", + "ZEND_GET_CALLED_CLASS", + "ZEND_GET_TYPE", + "ZEND_FUNC_NUM_ARGS", + "ZEND_FUNC_GET_ARGS", + "ZEND_UNSET_CV", + "ZEND_ISSET_ISEMPTY_CV", }; -static uint32_t zend_vm_opcodes_flags[187] = { +static uint32_t zend_vm_opcodes_flags[198] = { 0x00000000, 0x00000707, 0x00000707, @@ -286,7 +297,7 @@ static uint32_t zend_vm_opcodes_flags[187] = { 0x00186703, 0x00106703, 0x08000007, - 0x00030107, + 0x00010107, 0x00000701, 0x00000751, 0x00002003, @@ -331,7 +342,7 @@ static uint32_t zend_vm_opcodes_flags[187] = { 0x00001003, 0x00001001, 0x01000703, - 0x00000000, + 0x01000000, 0x00001003, 0x00000007, 0x00000003, @@ -399,6 +410,17 @@ static uint32_t zend_vm_opcodes_flags[187] = { 0x00000101, 0x00000000, 0x00000101, + 0x03000307, + 0x03000307, + 0x01000303, + 0x00000103, + 0x00000103, + 0x00000101, + 0x00000103, + 0x00000101, + 0x00000103, + 0x00000101, + 0x00020101, }; ZEND_API const char* zend_get_opcode_name(zend_uchar opcode) { |
