mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)
Adds four new instructions: * LOAD_METHOD_ADAPTIVE * LOAD_METHOD_CACHED * LOAD_METHOD_MODULE * LOAD_METHOD_CLASS
This commit is contained in:
parent
fcd651d16f
commit
96346cb6d0
7 changed files with 351 additions and 46 deletions
|
@ -233,6 +233,10 @@ _specialized_instructions = [
|
|||
"LOAD_GLOBAL_ADAPTIVE",
|
||||
"LOAD_GLOBAL_MODULE",
|
||||
"LOAD_GLOBAL_BUILTIN",
|
||||
"LOAD_METHOD_ADAPTIVE",
|
||||
"LOAD_METHOD_CACHED",
|
||||
"LOAD_METHOD_CLASS",
|
||||
"LOAD_METHOD_MODULE",
|
||||
"STORE_ATTR_ADAPTIVE",
|
||||
"STORE_ATTR_SPLIT_KEYS",
|
||||
"STORE_ATTR_SLOT",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue