summaryrefslogtreecommitdiff
path: root/Zend/zend_vm_opcodes.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2007-11-22 09:03:11 +0000
committerDmitry Stogov <dmitry@php.net>2007-11-22 09:03:11 +0000
commit32ff00efce3f3b656bbf7ac6f4755756973942e6 (patch)
treeb91a4a07d404cde041fcfb3d04d0b85c22fa2024 /Zend/zend_vm_opcodes.h
parent193b11c78d502f608df1f727114f285ba5a6373f (diff)
downloadphp-git-32ff00efce3f3b656bbf7ac6f4755756973942e6.tar.gz
Speed-up of ZEND_DO_FCALL and ZEND_INIT_FCALL_BY_NAME by lowercasing and calculating hash values at compile time.
Diffstat (limited to 'Zend/zend_vm_opcodes.h')
-rw-r--r--Zend/zend_vm_opcodes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zend/zend_vm_opcodes.h b/Zend/zend_vm_opcodes.h
index b1d88da213..d48887b5a0 100644
--- a/Zend/zend_vm_opcodes.h
+++ b/Zend/zend_vm_opcodes.h
@@ -87,7 +87,7 @@
#define ZEND_SEND_VAR 66
#define ZEND_SEND_REF 67
#define ZEND_NEW 68
-#define ZEND_GOTO 69
+#define ZEND_INIT_NS_FCALL_BY_NAME 69
#define ZEND_FREE 70
#define ZEND_INIT_ARRAY 71
#define ZEND_ADD_ARRAY_ELEMENT 72
@@ -118,6 +118,7 @@
#define ZEND_FETCH_OBJ_UNSET 97
#define ZEND_FETCH_DIM_TMP_VAR 98
#define ZEND_FETCH_CONSTANT 99
+#define ZEND_GOTO 100
#define ZEND_EXT_STMT 101
#define ZEND_EXT_FCALL_BEGIN 102
#define ZEND_EXT_FCALL_END 103