summaryrefslogtreecommitdiff
path: root/Zend/zend_vm_opcodes.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-07-17 14:11:50 +0300
committerDmitry Stogov <dmitry@zend.com>2017-07-17 14:11:50 +0300
commit1180d8c8019bf84c1803d65750f1735becbba2a7 (patch)
tree3557dfc0635ae64efb864391456369d0b5562d36 /Zend/zend_vm_opcodes.c
parentd9d3b2c20641b61b4d02258cd1363aa713de37b8 (diff)
downloadphp-git-1180d8c8019bf84c1803d65750f1735becbba2a7.tar.gz
Separate ISSET_ISEMPTY_CV/UNSET_CV from ISSET_ISEMPTY_VAR/UNSET_VAR
Diffstat (limited to 'Zend/zend_vm_opcodes.c')
-rw-r--r--Zend/zend_vm_opcodes.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/Zend/zend_vm_opcodes.c b/Zend/zend_vm_opcodes.c
index ed888e73c9..ecfe4645fa 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[196] = {
+static const char *zend_vm_opcodes_names[198] = {
"ZEND_NOP",
"ZEND_ADD",
"ZEND_SUB",
@@ -218,9 +218,11 @@ static const char *zend_vm_opcodes_names[196] = {
"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[196] = {
+static uint32_t zend_vm_opcodes_flags[198] = {
0x00000000,
0x00000707,
0x00000707,
@@ -295,7 +297,7 @@ static uint32_t zend_vm_opcodes_flags[196] = {
0x00186703,
0x00106703,
0x08000007,
- 0x00030107,
+ 0x00010107,
0x00000701,
0x00000751,
0x00002003,
@@ -417,6 +419,8 @@ static uint32_t zend_vm_opcodes_flags[196] = {
0x00000103,
0x00000101,
0x00000103,
+ 0x00000101,
+ 0x00020101,
};
ZEND_API const char* zend_get_opcode_name(zend_uchar opcode) {