什么是EXT_NOP和EXT_STMT,PHP操作码

时间:2016-03-16 09:28:20

标签: php xdebug opcode php-opcode

我试图通过对我的实现执行本机php函数来理解更深入和PHP内部。

但是在每个操作码转储中,我都会看到以下两个操作码:

EXT_NOPhttp://php.net/manual/tr/internals2.opcodes.ext-nop.php

EXT_STMThttp://php.net/manual/tr/internals2.opcodes.ext-stmt.php

正如您在文档中看到的那样,没有详细解释。

即使在以下doc中给出的示例中,我的转储与文档的转换不同。我真的想知道为什么这两个站在每个转储?它们的功能是什么?

<?php
/*
 * no operation
 * opcode number: 0
 */
function A(){}; 
?>

Env Spesification:

LXC
Linux web 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt11-1+deb8u5 (2015-10-09) x86_64 GNU/Linux  
PHP 5.6.15-1~dotdeb+7.1 (cli) (built: Nov  3 2015 16:29:58) 
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies
    with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies
    with Xdebug v2.3.3, Copyright (c) 2002-2015, by Derick Rethans

OpCode转储:

➜  php -d vld.active=1 -d vld.execute=0 -f nop.php
Finding entry points
Branch analysis from position: 0
Jump found. Position 1 = -2
filename:       /root/web/www/optest/nop.php
function name:  (null)
number of ops:  5
compiled vars:  none
line     #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   2     0  E >   EXT_STMT                                                 
         1        NOP                                                      
         2        NOP                                                      
   4     3        EXT_STMT                                                 
         4      > RETURN                                                   1

branch: #  0; line:     2-    4; sop:     0; eop:     4; out1:  -2
path #1: 0, 
Function a:
Finding entry points
Branch analysis from position: 0
Jump found. Position 1 = -2
filename:       /root/web/www/optest/nop.php
function name:  A
number of ops:  3
compiled vars:  none
line     #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   2     0  E >   EXT_NOP                                                  
         1        EXT_STMT                                                 
         2      > RETURN                                                   null

branch: #  0; line:     2-    2; sop:     0; eop:     2; out1:  -2
path #1: 0, 
End of function a

1 个答案:

答案 0 :(得分:4)

EXT_NOP用于之前有事情要做的事情(即函数声明),但引擎已经在内部已经处理过这个问题,并用EXT_NOP替换了原始操作码。 NOP代表&#34;无操作&#34;。 NOPEXT_NOP略有不同,因为它在不同时间生成,但它做同样的事情:没有。

在语句之间创建

EXT_STMT,并允许调试器(例如Xdebug)停在安全位置。 Xdebug使用&#34;语句处理程序&#34; (https://github.com/derickr/xdebug/blob/master/xdebug.c#L2534)挂钩到Zend引擎。 Zend引擎为它遇到的每个EXT_STMT操作码调用此处理程序。