diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2022-02-10 17:50:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 17:50:02 (GMT) |
commit | d7a5aca982def155a9255893cefcc1493c127c9c (patch) | |
tree | 853f98c7fe29a5fbb836640f64c8fe8442aa856f /Include/opcode.h | |
parent | 1a6411f5738895fa48d35a93435f7c7b6c17bdb9 (diff) | |
download | cpython-d7a5aca982def155a9255893cefcc1493c127c9c.zip cpython-d7a5aca982def155a9255893cefcc1493c127c9c.tar.gz cpython-d7a5aca982def155a9255893cefcc1493c127c9c.tar.bz2 |
bpo-45923: Add `RESUME_QUICK` (GH-31244)
Diffstat (limited to 'Include/opcode.h')
-rw-r--r-- | Include/opcode.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/Include/opcode.h b/Include/opcode.h index bce7010..58fc628 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -164,15 +164,16 @@ extern "C" { #define LOAD_METHOD_CLASS 76 #define LOAD_METHOD_MODULE 77 #define LOAD_METHOD_NO_DICT 78 -#define STORE_ATTR_ADAPTIVE 79 -#define STORE_ATTR_INSTANCE_VALUE 80 -#define STORE_ATTR_SLOT 81 -#define STORE_ATTR_WITH_HINT 131 -#define LOAD_FAST__LOAD_FAST 140 -#define STORE_FAST__LOAD_FAST 141 -#define LOAD_FAST__LOAD_CONST 143 -#define LOAD_CONST__LOAD_FAST 150 -#define STORE_FAST__STORE_FAST 153 +#define RESUME_QUICK 79 +#define STORE_ATTR_ADAPTIVE 80 +#define STORE_ATTR_INSTANCE_VALUE 81 +#define STORE_ATTR_SLOT 131 +#define STORE_ATTR_WITH_HINT 140 +#define LOAD_FAST__LOAD_FAST 141 +#define STORE_FAST__LOAD_FAST 143 +#define LOAD_FAST__LOAD_CONST 150 +#define LOAD_CONST__LOAD_FAST 153 +#define STORE_FAST__STORE_FAST 154 #define DO_TRACING 255 #ifdef NEED_OPCODE_JUMP_TABLES static uint32_t _PyOpcode_RelativeJump[8] = { |