字节码的执行过程,
本文主要介绍Python字节码以及程序执行过程的详细说明。有需要的朋友可以借鉴一下,希望能有所帮助。祝大家进步很大,早日升职加薪。
00-1010问题:1。执行过程2。字节码3。源代码编译4。PyCodeObject5。反编译6。力兴
目录
每天都要写一些Python程序,要么是处理一些文本,要么是做一些系统管理工作。编写完程序后,您只需要点击python命令来启动程序并开始执行:
$ python some-program.py
那么,一个文本形式的. py文件是如何一步步转化成CPU可以执行的机器指令的呢?此外,pyc文件可能在程序执行期间生成。这些文件的作用是什么?
问题:
虽然Python在行为上更像是Shell script之类的解释性语言,但实际上Python程序执行的原理本质上和Java或者C#是一样的,可以概括为虚拟机和字节码。Python分两步执行一个程序:先把程序代码编译成字节码,然后启动虚拟机执行字节码:
虽然Python命令也被称为Python解释器,但它们与其他脚本语言解释器有着本质的不同。其实Python解释器包括编译器和虚拟机。Python解释器启动时,主要执行以下两个步骤:
在编译器中编译Python源代码。py文件转换成字节码。虚拟机逐行执行编译器生成的字节码。
因此,中的Python语句。py文件不是直接转换成机器指令,而是转换成Python字节码。
1. 执行过程
Python程序的编译结果是字节码,其中包含了大量关于Python运行的相关内容。因此,无论是对于更深入的理解Python虚拟机运行机制,还是对于调优Python程序运行效率,字节码都是关键内容。
那么,Python字节码到底是什么样子的呢?怎样才能得到一个Python程序的字节码?——Python提供了一个内置函数compile,用于实时编译源代码。我们只需要用要编译的源代码作为参数调用编译函数,就可以得到源代码的编译结果。
2. 字节码
接下来,我们通过编译函数编译一个程序:
源代码保存在demo.py文件中:
圆周率=3.14
定义圆_面积(r):
返回PI * r ** 2
类人(对象):
def __init__(self,name):
self.name=name
def say(self):
打印(“我是”,self.name)
在编译之前,您需要从文件中读取源代码:
text=open( d : \ MySpace \ code \ python code \ mix \ demo . py )。阅读()
打印(文本)
圆周率=3.14
定义圆_面积(r):
返回PI * r ** 2
类人(对象):
def __init__(self,name):
self.name=name
def say(self):
打印(“我是”,self.name)
然后调用编译函数编译源代码:
result=compile(text, d : \ MySpace \ code \ python code \ mix \ demo . py , exec )
编译函数需要三个参数:
源代码:要编译的源代码
Filename:源代码所在的文件名。
模式:编译模式,exec的意思是把源代码编译成一个模块。
三种编译模式:
Exec:用于编译模块源代码。
Single:用于编译单个Python语句(在交互模式下)
Eval:用于编译eval表达式。
ss="maodian">
4. PyCodeObject
通过compile函数,我们获得了最后的源码编译结果result:
>>> result<code object <module> at 0x000001DEC2FCF680, file "D:\myspace\code\pythonCode\mix\demo.py", line 1>
>>> result.__class__
<class code>
最终我们得到了一个code类型的对象,它对应的底层结构体是PyCodeObject
PyCodeObject源码如下:
/* Bytecode object */struct PyCodeObject {
PyObject_HEAD
int co_argcount; /* #arguments, except *args */
int co_posonlyargcount; /* #positional only arguments */
int co_kwonlyargcount; /* #keyword only arguments */
int co_nlocals; /* #local variables */
int co_stacksize; /* #entries needed for evaluation stack */
int co_flags; /* CO_..., see below */
int co_firstlineno; /* first source line number */
PyObject *co_code; /* instruction opcodes */
PyObject *co_consts; /* list (constants used) */
PyObject *co_names; /* list of strings (names used) */
PyObject *co_varnames; /* tuple of strings (local variable names) */
PyObject *co_freevars; /* tuple of strings (free variable names) */
PyObject *co_cellvars; /* tuple of strings (cell variable names) */
/* The rest arent used in either hash or comparisons, except for co_name,
used in both. This is done to preserve the name and line number
for tracebacks and debuggers; otherwise, constant de-duplication
would collapse identical functions/lambdas defined on different lines.
*/
Py_ssize_t *co_cell2arg; /* Maps cell vars which are arguments. */
PyObject *co_filename; /* unicode (where it was loaded from) */
PyObject *co_name; /* unicode (name, for reference) */
PyObject *co_linetable; /* string (encoding addr<->lineno mapping) See
Objects/lnotab_notes.txt for details. */
void *co_zombieframe; /* for optimization only (see frameobject.c) */
PyObject *co_weakreflist; /* to support weakrefs to code objects */
/* Scratch space for extra data relating to the code object.
Type is a void* to keep the format private in codeobject.c to force
people to go through the proper APIs. */
void *co_extra;
/* Per opcodes just-in-time cache
*
* To reduce cache size, we use indirect mapping from opcode index to
* cache object:
* cache = co_opcache[co_opcache_map[next_instr - first_instr] - 1]
*/
// co_opcache_map is indexed by (next_instr - first_instr).
// * 0 means there is no cache for this opcode.
// * n > 0 means there is cache in co_opcache[n-1].
unsigned char *co_opcache_map;
_PyOpcache *co_opcache;
int co_opcache_flag; // used to determine when create a cache.
unsigned char co_opcache_size; // length of co_opcache.
};
代码对象PyCodeObject用于存储编译结果,包括字节码以及代码涉及的常量、名字等等。关键字段包括:
字段 用途
下面打印看一下这些字段对应的数据:
通过co_code字段获得字节码:
>>> result.co_codebd\x00Z\x00d\x01d\x02\x84\x00Z\x01G\x00d\x03d\x04\x84\x00d\x04e\x02\x83\x03Z\x03d\x05S\x00
通过co_names字段获得代码对象涉及的所有名字:
>>> result.co_names(PI, circle_area, object, Person)
通过co_consts字段获得代码对象涉及的所有常量:
>>> result.co_consts(3.14, <code object circle_area at 0x0000023D04D3F310, file "D:\myspace\code\pythonCode\mix\demo.py", line 3>, circle_area, <code object Person at 0x0000023D04D3F5D0, file "D:\myspace\code\pythonCode\mix\demo.py", line 6>, Person, None)
可以看到,常量列表中还有两个代码对象,其中一个是circle_area函数体,另一个是Person类定义体。对应Python中作用域的划分方式,可以自然联想到:每个作用域对应一个代码对象。如果这个假设成立,那么Person代码对象的常量列表中应该还包括两个代码对象:init函数体和say函数体。下面取出Person类代码对象来看一下:
>>> person_code = result.co_consts[3]>>> person_code
<code object Person at 0x0000023D04D3F5D0, file "D:\myspace\code\pythonCode\mix\demo.py", line 6>
>>> person_code.co_consts
(Person, <code object __init__ at 0x0000023D04D3F470, file "D:\myspace\code\pythonCode\mix\demo.py", line 7>, Person.__init__, <code object say at 0x0000023D04D3F520, file "D:\myspace\code\pythonCode\mix\demo.py", line 10>, Person.say, None)
因此,我们得出结论:Python源码编译后,每个作用域都对应着一个代码对象,子作用域代码对象位于父作用域代码对象的常量列表里,层级一一对应。
至此,我们对Python源码的编译结果——代码对象PyCodeObject有了最基本的认识,后续会在虚拟机、函数机制、类机制中进一步学习。
5. 反编译
字节码是一串不可读的字节序列,跟二进制机器码一样。如果想读懂机器码,可以将其反汇编,那么字节码可以反编译吗?
通过dis模块可以将字节码反编译:
>>> import dis>>> dis.dis(result.co_code)
0 LOAD_CONST 0 (0)
2 STORE_NAME 0 (0)
4 LOAD_CONST 1 (1)
6 LOAD_CONST 2 (2)
8 MAKE_FUNCTION 0
10 STORE_NAME 1 (1)
12 LOAD_BUILD_CLASS
14 LOAD_CONST 3 (3)
16 LOAD_CONST 4 (4)
18 MAKE_FUNCTION 0
20 LOAD_CONST 4 (4)
22 LOAD_NAME 2 (2)
24 CALL_FUNCTION 3
26 STORE_NAME 3 (3)
28 LOAD_CONST 5 (5)
30 RETURN_VALUE
字节码反编译后的结果和汇编语言很类似。其中,第一列是字节码的偏移量,第二列是指令,第三列是操作数。以第一条字节码为例,LOAD_CONST指令将常量加载进栈,常量下标由操作数给出,而下标为0的常量是:
>>> result.co_consts[0]3.14
这样,第一条字节码的意义就明确了:将常量3.14加载到栈。
由于代码对象保存了字节码、常量、名字等上下文信息,因此直接对代码对象进行反编译可以得到更清晰的结果:
>>>dis.dis(result)1 0 LOAD_CONST 0 (3.14)
2 STORE_NAME 0 (PI)
3 4 LOAD_CONST 1 (<code object circle_area at 0x0000023D04D3F310, file "D:\myspace\code\pythonCode\mix\demo.py", line 3>)
6 LOAD_CONST 2 (circle_area)
8 MAKE_FUNCTION 0
10 STORE_NAME 1 (circle_area)
6 12 LOAD_BUILD_CLASS
14 LOAD_CONST 3 (<code object Person at 0x0000023D04D3F5D0, file "D:\myspace\code\pythonCode\mix\demo.py", line 6>)
16 LOAD_CONST 4 (Person)
18 MAKE_FUNCTION 0
20 LOAD_CONST 4 (Person)
22 LOAD_NAME 2 (object)
24 CALL_FUNCTION 3
26 STORE_NAME 3 (Person)
28 LOAD_CONST 5 (None)
30 RETURN_VALUE
Disassembly of <code object circle_area at 0x0000023D04D3F310, file "D:\myspace\code\pythonCode\mix\demo.py", line 3>:
4 0 LOAD_GLOBAL 0 (PI)
2 LOAD_FAST 0 (r)
4 LOAD_CONST 1 (2)
6 BINARY_POWER
8 BINARY_MULTIPLY
10 RETURN_VALUE
Disassembly of <code object Person at 0x0000023D04D3F5D0, file "D:\myspace\code\pythonCode\mix\demo.py", line 6>:
6 0 LOAD_NAME 0 (__name__)
2 STORE_NAME 1 (__module__)
4 LOAD_CONST 0 (Person)
6 STORE_NAME 2 (__qualname__)
7 8 LOAD_CONST 1 (<code object __init__ at 0x0000023D04D3F470, file "D:\myspace\code\pythonCode\mix\demo.py", line 7>)
10 LOAD_CONST 2 (Person.__init__)
12 MAKE_FUNCTION 0
14 STORE_NAME 3 (__init__)
10 16 LOAD_CONST 3 (<code object say at 0x0000023D04D3F520, file "D:\myspace\code\pythonCode\mix\demo.py", line 10>)
18 LOAD_CONST 4 (Person.say)
20 MAKE_FUNCTION 0
22 STORE_NAME 4 (say)
24 LOAD_CONST 5 (None)
26 RETURN_VALUE
Disassembly of <code object __init__ at 0x0000023D04D3F470, file "D:\myspace\code\pythonCode\mix\demo.py", line 7>:
8 0 LOAD_FAST 1 (name)
2 LOAD_FAST 0 (self)
4 STORE_ATTR 0 (name)
6 LOAD_CONST 0 (None)
8 RETURN_VALUE
Disassembly of <code object say at 0x0000023D04D3F520, file "D:\myspace\code\pythonCode\mix\demo.py", line 10>:
11 0 LOAD_GLOBAL 0 (print)
2 LOAD_CONST 1 (i am)
4 LOAD_FAST 0 (self)
6 LOAD_ATTR 1 (name)
8 CALL_FUNCTION 2
10 POP_TOP
12 LOAD_CONST 0 (None)
14 RETURN_VALUE
操作数指定的常量或名字的实际值在旁边的括号内列出,此外,字节码以语句为单位进行了分组,中间以空行隔开,语句的行号在字节码前面给出。例如PI = 3.14这个语句就被会变成了两条字节码:
1 0 LOAD_CONST 0 (3.14)2 STORE_NAME 0 (PI)
6. pyc
如果将demo作为模块导入,Python将在demo.py文件所在目录下生成.pyc文件:
>>> import demo
pyc文件会保存经过序列化处理的代码对象PyCodeObject。这样一来,Python后续导入demo模块时,直接读取pyc文件并反序列化即可得到代码对象,避免了重复编译导致的开销。只有demo.py有新修改(时间戳比.pyc文件新),Python才会重新编译。
因此,对比Java而言:Python中的.py文件可以类比Java中的.java文件,都是源码文件;而.pyc文件可以类比.class文件,都是编译结果。只不过Java程序需要先用编译器javac命令来编译,再用虚拟机java命令来执行;而Python解释器把这两个过程都完成了。
以上就是Python字节码与程序执行过程详解的详细内容,更多关于Python程序执行字节码的资料请关注盛行IT软件开发工作室其它相关文章!
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。