From: Dmitry Stogov Date: Thu, 14 May 2020 22:06:47 +0000 (+0300) Subject: Added HALT symbol X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5e25d635273b6d40909e74fa7ff5493a4a12ce9;p=php Added HALT symbol --- diff --git a/ext/opcache/jit/zend_jit_disasm_x86.c b/ext/opcache/jit/zend_jit_disasm_x86.c index a847716ace..44b23e1a19 100644 --- a/ext/opcache/jit/zend_jit_disasm_x86.c +++ b/ext/opcache/jit/zend_jit_disasm_x86.c @@ -514,6 +514,8 @@ static int zend_jit_disasm_init(void) opline.op1_type = IS_CV; zend_vm_set_opcode_handler(&opline); zend_jit_disasm_add_symbol("ZEND_RETURN_SPEC_CV_LABEL", (uint64_t)(uintptr_t)opline.handler, sizeof(void*)); + + zend_jit_disasm_add_symbol("ZEND_HYBRID_HALT_LABEL", (uint64_t)(uintptr_t)zend_jit_halt_op->handler, sizeof(void*)); } return 1;