名称和函数体如何存储在 CPython 代码对象中?

How are names and function bodies stored in CPython Code Objects?

我有一个 python 脚本。

def hello(self):
    return 6
print hello()

在 CPython 中编译后反汇编我得到

>>> c = compile(open('hello.py').read(), 'hello.py', 'exec')
>>> import dis
>>> dis.dis(c)
  1           0 LOAD_CONST               0 (<code object hello at 0x1006c9230, file "hello.py", line 1>)
              3 MAKE_FUNCTION            0
              6 STORE_NAME               0 (hello)

  3           9 LOAD_NAME                0 (hello)
             12 CALL_FUNCTION            0
             15 PRINT_ITEM
             16 PRINT_NEWLINE
             17 LOAD_CONST               1 (None)
             20 RETURN_VALUE

我很好奇 <code object hello at 0x1006c9230 ...> 是如何存储在 CPython 代码对象中的。有 co_code 函数,但它只打印出字节码指令。如果我序列化 CPython 代码对象,我得到

>>> import marshal
>>> marshal.dumps(c)
'c\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00@\x00\x00\x00s\x15\x00\x00\x00d\x00\x00\x84\x00\x00Z\x00\x00e\x00\x00\x83\x00\x00GHd\x01\x00S(\x02\x00\x00\x00c\x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00C\x00\x00\x00s\n\x00\x00\x00d\x01\x00}\x01\x00|\x01\x00S(\x02\x00\x00\x00Ni\x06\x00\x00\x00(\x00\x00\x00\x00(\x02\x00\x00\x00t\x04\x00\x00\x00selft\x01\x00\x00\x00x(\x00\x00\x00\x00(\x00\x00\x00\x00s\x08\x00\x00\x00hello.pyt\x05\x00\x00\x00hello\x01\x00\x00\x00s\x04\x00\x00\x00\x00\x01\x06\x01N(\x01\x00\x00\x00R\x02\x00\x00\x00(\x00\x00\x00\x00(\x00\x00\x00\x00(\x00\x00\x00\x00s\x08\x00\x00\x00hello.pyt\x08\x00\x00\x00<module>\x01\x00\x00\x00s\x02\x00\x00\x00\t\x03'

我知道

def hello(self):
    return 6

存储在转储中的某个位置,因为如果我将其更改为 return 5,转储中的一个字节会从 6 切换到 5。

1) 有没有办法可以从 CPython 代码对象访问函数体。我能得到的最接近的 c.names 但这只会打印出一个字符串。我假设在幕后它是一个被序列化为字符串的 PyObject。我还想确认函数体确实存储在 c.names.

2) marshal dump 将函数存储为字节码指令还是未编译的文字?当我搜索操作码 \x83 (RETURN_VALUE) 时,我倾向于未编译的文字,它只在转储中出现一次。我相信这意味着只有一个 return 语句,而应该有两个:一次退出函数 hello,一次到 return None 退出脚本。

版本

Python 2.7.13+ (heads/2.7:96f5020597, May 26 2017, 15:26:13)
[GCC 4.2.1 Compatible Apple LLVM 7.3.0 (clang-703.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

我们来分解一下。

首先,让我澄清一下 CPython 究竟是如何存储函数的。解析函数时,CPython 将函数的数据存储在 代码对象 中。 CPython 使用代码对象来存储函数、类 和模块。然后将表示函数的代码对象 序列化 为特定的字节代码格式。

函数的代码对象存储在它们的__code__属性中:

>>> def foo():
    pass

>>> 
>>> foo.__code__
<code object foo at 0x7f8bd86ce5d0, file "<pyshell#14>", line 1>
>>> 

这些代码对象包含与函数相关的各种数据,例如函数参数、引用的常量(例如1"Hello")和名称。函数的 bytecode 存储在 .co_code 属性中。这是 CPython 运行函数时实际执行的内容:

>>> def foo():
    pass

>>> foo.__code__.co_code
b'd\x00\x00S' # bytecode for foo
>>> 

现在您了解了 CPython 的基本功能,我们可以解决您的具体问题。

Is there a way I can access the function body from the CPython code object. The closest I can get it c.names but that only prints out a string. I'm assuming there behind the scenes it is a PyObject that is being serialized as a string. I would also like a confirmation that the function body is indeed stored in c.names.

函数体没有存储在代码对象的co_name属性中。如上所述,它存储在 .co_code 属性中。您的其他假设也有点偏离。从技术上讲,由于 Python 中的所有对象都“继承”自 PyObject,所以说函数体被序列化为 PyObject 序列化为字符串是正确的。但是,最好说它被序列化为 PyStringObject ,这是表示字符串的特定类型。

Does marshal dump store the function as bytecode instructions or as a uncompiled literal? I'm leaning toward uncompiled literal as I searched for the opcode \x83 (RETURN_VALUE) and it only appears once in the dump. I believe this implies that there is only one return statement when there should be two: once to exit out of the function hello and once to return None for exiting the script.

两者都没有。 marhsal.dumps() 接受一个代码对象,将整个代码对象序列化为 CPython 特定格式,returns 一个表示序列化代码对象的字节对象。但是,您的第二个陈述是正确的。在每个 Python 脚本的末尾,返回隐式 None。这可以通过将空参数传递给 dis.dis():

来观察
>>> import dis
>>> dis.dis("")
  1           0 LOAD_CONST               0 (None)
              3 RETURN_VALUE
>>> 

I know for a fact that <code object hello at 0x1006c9230 ...> is not stored in the co_code attribute of the original c. This is because no matter how I change the inside of def hello() the same disassembler output is given. To be clear this is a function inside a function/script not just a function as you gave in your example.

在您的具体示例中,变量 c 是一个代码对象,代表 模块 - 而不是函数 - “hello.py” .你的权利,函数 hello()的代码对象不在co_code中。它存储在模块的代码对象的 co_consts 属性中:

>>> co = compile(open('hello.py').read(), 'hello.py', 'exec')
>>> co.co_consts
(<code object hello at 0x7fedcbd3dc00, file "hello.py", line 1>, 'hello', None)
>>> 

这是因为 Python 执行您的代码的方式。常量不直接存储在代码对象的字节码中。相反,它们存储在自己单独的元组中。每当在函数代码中引用常量时,实际常量存储在 co_consts 中,并且 index 对应于所述常量在 co_consts 中的位置在字节码中。

hello() 的代码对象的反汇编程序输出从未改变的原因是因为 dis.dis() 所做的只是显示 字符串表示 hello() 代码对象。当您更改代码时,hello() 的代码对象 会发生变化,但该变化由 dis 显示。它不显示 hello()s 代码对象的实际 changed 属性。