summaryrefslogtreecommitdiff
path: root/Zend/zend_vm_opcodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_vm_opcodes.c')
-rw-r--r--Zend/zend_vm_opcodes.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/Zend/zend_vm_opcodes.c b/Zend/zend_vm_opcodes.c
index 56a31aa19a..f25dc2e12d 100644
--- a/Zend/zend_vm_opcodes.c
+++ b/Zend/zend_vm_opcodes.c
@@ -22,7 +22,7 @@
#include <zend.h>
#include <zend_vm_opcodes.h>
-static const char *zend_vm_opcodes_names[200] = {
+static const char *zend_vm_opcodes_names[201] = {
"ZEND_NOP",
"ZEND_ADD",
"ZEND_SUB",
@@ -223,9 +223,10 @@ static const char *zend_vm_opcodes_names[200] = {
"ZEND_MATCH_ERROR",
"ZEND_JMP_NULL",
"ZEND_CHECK_UNDEF_ARGS",
+ "ZEND_FETCH_GLOBALS",
};
-static uint32_t zend_vm_opcodes_flags[200] = {
+static uint32_t zend_vm_opcodes_flags[201] = {
0x00000000,
0x00000b0b,
0x00000b0b,
@@ -367,8 +368,8 @@ static uint32_t zend_vm_opcodes_flags[200] = {
0x00047305,
0x00000000,
0x00000101,
- 0x00000000,
- 0x00040103,
+ 0x00001000,
+ 0x00001003,
0x00000303,
0x00000003,
0x00000303,
@@ -426,6 +427,7 @@ static uint32_t zend_vm_opcodes_flags[200] = {
0x0000010b,
0x0000200b,
0x00000101,
+ 0x00000101,
};
ZEND_API const char* ZEND_FASTCALL zend_get_opcode_name(zend_uchar opcode) {