mirror of
https://github.com/python/cpython.git
synced 2025-08-28 12:45:07 +00:00
bpo-44900: Add five superinstructions. (GH-27741)
* LOAD_FAST LOAD_FAST * STORE_FAST LOAD_FAST * LOAD_FAST LOAD_CONST * LOAD_CONST LOAD_FAST * STORE_FAST STORE_FAST
This commit is contained in:
parent
1a511dc92d
commit
4f51fa9e2d
6 changed files with 133 additions and 20 deletions
|
@ -237,8 +237,13 @@ _specialized_instructions = [
|
|||
"STORE_ATTR_SPLIT_KEYS",
|
||||
"STORE_ATTR_SLOT",
|
||||
"STORE_ATTR_WITH_HINT",
|
||||
# Super instructions
|
||||
"LOAD_FAST__LOAD_FAST",
|
||||
"STORE_FAST__LOAD_FAST",
|
||||
"LOAD_FAST__LOAD_CONST",
|
||||
"LOAD_CONST__LOAD_FAST",
|
||||
"STORE_FAST__STORE_FAST",
|
||||
]
|
||||
|
||||
_specialization_stats = [
|
||||
"specialization_success",
|
||||
"specialization_failure",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue