summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-01-16 10:44:15 +0300
committerDmitry Stogov <dmitry@zend.com>2018-01-16 10:44:15 +0300
commitb279aea2bf5262f4bca600dd69202ba32e47fd81 (patch)
tree7a8d567b51afa84bc4ebb8ed4e8adcc190f0755f
parentd7f3b9b4e9dfab3bff8bece4fa38ff6a20877df2 (diff)
downloadphp-git-b279aea2bf5262f4bca600dd69202ba32e47fd81.tar.gz
Removed reference to the obsolete zend_vm_use_old_executor()
-rw-r--r--Zend/README.ZEND_VM6
-rw-r--r--Zend/zend_vm.h1
2 files changed, 0 insertions, 7 deletions
diff --git a/Zend/README.ZEND_VM b/Zend/README.ZEND_VM
index de66110d64..2cd5dfc520 100644
--- a/Zend/README.ZEND_VM
+++ b/Zend/README.ZEND_VM
@@ -100,9 +100,3 @@ zend_vm_execute.h. Debugging with original file requires --with-lines
option. By default ZE2 uses the following command to generate executor:
$ php zend_vm_gen.php --with-vm-kind=CALL
-
-Zend Engine II currently includes two executors during the build process, one
-is the specialized version and the other is the old one non-specialized with
-function handlers. By default Zend Engine II uses the specialized one but you
-can switch to the old executor at runtime by calling zend_vm_use_old_executor().
-
diff --git a/Zend/zend_vm.h b/Zend/zend_vm.h
index ce0304e910..34751c7249 100644
--- a/Zend/zend_vm.h
+++ b/Zend/zend_vm.h
@@ -23,7 +23,6 @@
BEGIN_EXTERN_C()
-ZEND_API void zend_vm_use_old_executor(void);
ZEND_API void ZEND_FASTCALL zend_vm_set_opcode_handler(zend_op* opcode);
ZEND_API void ZEND_FASTCALL zend_vm_set_opcode_handler_ex(zend_op* opcode, uint32_t op1_info, uint32_t op2_info, uint32_t res_info);
ZEND_API void ZEND_FASTCALL zend_serialize_opcode_handler(zend_op *op);