mirror of
https://github.com/python/cpython.git
synced 2025-12-22 16:39:14 +00:00
GH-136410: Faster side exits by using a cold exit stub (GH-136411)
Some checks failed
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / Ubuntu SSL tests with AWS-LC (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / Cross build Linux (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
mypy / Run mypy on Lib/test/libregrtest (push) Waiting to run
Lint / lint (push) Waiting to run
mypy / Run mypy on Lib/_pyrepl (push) Waiting to run
mypy / Run mypy on Lib/tomllib (push) Waiting to run
mypy / Run mypy on Tools/build (push) Waiting to run
mypy / Run mypy on Tools/cases_generator (push) Waiting to run
mypy / Run mypy on Tools/clinic (push) Waiting to run
mypy / Run mypy on Tools/jit (push) Waiting to run
mypy / Run mypy on Tools/peg_generator (push) Waiting to run
JIT / Interpreter (Debug) (push) Has been cancelled
Tail calling interpreter / aarch64-apple-darwin/clang (push) Has been cancelled
Tail calling interpreter / aarch64-unknown-linux-gnu/gcc (push) Has been cancelled
Tail calling interpreter / x86_64-pc-windows-msvc/msvc (push) Has been cancelled
Tail calling interpreter / x86_64-apple-darwin/clang (push) Has been cancelled
Tail calling interpreter / free-threading (push) Has been cancelled
Tail calling interpreter / x86_64-unknown-linux-gnu/gcc (push) Has been cancelled
JIT / aarch64-pc-windows-msvc/msvc (Release) (push) Has been cancelled
JIT / aarch64-pc-windows-msvc/msvc (Debug) (push) Has been cancelled
JIT / i686-pc-windows-msvc/msvc (Release) (push) Has been cancelled
JIT / i686-pc-windows-msvc/msvc (Debug) (push) Has been cancelled
JIT / aarch64-apple-darwin/clang (Release) (push) Has been cancelled
JIT / aarch64-unknown-linux-gnu/gcc (Release) (push) Has been cancelled
JIT / aarch64-apple-darwin/clang (Debug) (push) Has been cancelled
JIT / aarch64-unknown-linux-gnu/gcc (Debug) (push) Has been cancelled
JIT / x86_64-pc-windows-msvc/msvc (Release) (push) Has been cancelled
JIT / x86_64-pc-windows-msvc/msvc (Debug) (push) Has been cancelled
JIT / x86_64-apple-darwin/clang (Release) (push) Has been cancelled
JIT / x86_64-unknown-linux-gnu/gcc (Release) (push) Has been cancelled
JIT / x86_64-apple-darwin/clang (Debug) (push) Has been cancelled
JIT / x86_64-unknown-linux-gnu/gcc (Debug) (push) Has been cancelled
Some checks failed
Tests / Windows MSI (push) Blocked by required conditions
Tests / Change detection (push) Waiting to run
Tests / Docs (push) Blocked by required conditions
Tests / Check if Autoconf files are up to date (push) Blocked by required conditions
Tests / Check if generated files are up to date (push) Blocked by required conditions
Tests / (push) Blocked by required conditions
Tests / Ubuntu SSL tests with OpenSSL (push) Blocked by required conditions
Tests / Ubuntu SSL tests with AWS-LC (push) Blocked by required conditions
Tests / WASI (push) Blocked by required conditions
Tests / Hypothesis tests on Ubuntu (push) Blocked by required conditions
Tests / Address sanitizer (push) Blocked by required conditions
Tests / Sanitizers (push) Blocked by required conditions
Tests / Cross build Linux (push) Blocked by required conditions
Tests / CIFuzz (push) Blocked by required conditions
Tests / All required checks pass (push) Blocked by required conditions
mypy / Run mypy on Lib/test/libregrtest (push) Waiting to run
Lint / lint (push) Waiting to run
mypy / Run mypy on Lib/_pyrepl (push) Waiting to run
mypy / Run mypy on Lib/tomllib (push) Waiting to run
mypy / Run mypy on Tools/build (push) Waiting to run
mypy / Run mypy on Tools/cases_generator (push) Waiting to run
mypy / Run mypy on Tools/clinic (push) Waiting to run
mypy / Run mypy on Tools/jit (push) Waiting to run
mypy / Run mypy on Tools/peg_generator (push) Waiting to run
JIT / Interpreter (Debug) (push) Has been cancelled
Tail calling interpreter / aarch64-apple-darwin/clang (push) Has been cancelled
Tail calling interpreter / aarch64-unknown-linux-gnu/gcc (push) Has been cancelled
Tail calling interpreter / x86_64-pc-windows-msvc/msvc (push) Has been cancelled
Tail calling interpreter / x86_64-apple-darwin/clang (push) Has been cancelled
Tail calling interpreter / free-threading (push) Has been cancelled
Tail calling interpreter / x86_64-unknown-linux-gnu/gcc (push) Has been cancelled
JIT / aarch64-pc-windows-msvc/msvc (Release) (push) Has been cancelled
JIT / aarch64-pc-windows-msvc/msvc (Debug) (push) Has been cancelled
JIT / i686-pc-windows-msvc/msvc (Release) (push) Has been cancelled
JIT / i686-pc-windows-msvc/msvc (Debug) (push) Has been cancelled
JIT / aarch64-apple-darwin/clang (Release) (push) Has been cancelled
JIT / aarch64-unknown-linux-gnu/gcc (Release) (push) Has been cancelled
JIT / aarch64-apple-darwin/clang (Debug) (push) Has been cancelled
JIT / aarch64-unknown-linux-gnu/gcc (Debug) (push) Has been cancelled
JIT / x86_64-pc-windows-msvc/msvc (Release) (push) Has been cancelled
JIT / x86_64-pc-windows-msvc/msvc (Debug) (push) Has been cancelled
JIT / x86_64-apple-darwin/clang (Release) (push) Has been cancelled
JIT / x86_64-unknown-linux-gnu/gcc (Release) (push) Has been cancelled
JIT / x86_64-apple-darwin/clang (Debug) (push) Has been cancelled
JIT / x86_64-unknown-linux-gnu/gcc (Debug) (push) Has been cancelled
This commit is contained in:
parent
718e0c89ba
commit
e7b55f564d
15 changed files with 387 additions and 267 deletions
379
Include/internal/pycore_uop_ids.h
generated
379
Include/internal/pycore_uop_ids.h
generated
|
|
@ -81,99 +81,100 @@ extern "C" {
|
|||
#define _CHECK_STACK_SPACE 357
|
||||
#define _CHECK_STACK_SPACE_OPERAND 358
|
||||
#define _CHECK_VALIDITY 359
|
||||
#define _COMPARE_OP 360
|
||||
#define _COMPARE_OP_FLOAT 361
|
||||
#define _COMPARE_OP_INT 362
|
||||
#define _COMPARE_OP_STR 363
|
||||
#define _CONTAINS_OP 364
|
||||
#define _CONTAINS_OP_DICT 365
|
||||
#define _CONTAINS_OP_SET 366
|
||||
#define _COLD_EXIT 360
|
||||
#define _COMPARE_OP 361
|
||||
#define _COMPARE_OP_FLOAT 362
|
||||
#define _COMPARE_OP_INT 363
|
||||
#define _COMPARE_OP_STR 364
|
||||
#define _CONTAINS_OP 365
|
||||
#define _CONTAINS_OP_DICT 366
|
||||
#define _CONTAINS_OP_SET 367
|
||||
#define _CONVERT_VALUE CONVERT_VALUE
|
||||
#define _COPY 367
|
||||
#define _COPY_1 368
|
||||
#define _COPY_2 369
|
||||
#define _COPY_3 370
|
||||
#define _COPY 368
|
||||
#define _COPY_1 369
|
||||
#define _COPY_2 370
|
||||
#define _COPY_3 371
|
||||
#define _COPY_FREE_VARS COPY_FREE_VARS
|
||||
#define _CREATE_INIT_FRAME 371
|
||||
#define _CREATE_INIT_FRAME 372
|
||||
#define _DELETE_ATTR DELETE_ATTR
|
||||
#define _DELETE_DEREF DELETE_DEREF
|
||||
#define _DELETE_FAST DELETE_FAST
|
||||
#define _DELETE_GLOBAL DELETE_GLOBAL
|
||||
#define _DELETE_NAME DELETE_NAME
|
||||
#define _DELETE_SUBSCR DELETE_SUBSCR
|
||||
#define _DEOPT 372
|
||||
#define _DEOPT 373
|
||||
#define _DICT_MERGE DICT_MERGE
|
||||
#define _DICT_UPDATE DICT_UPDATE
|
||||
#define _DO_CALL 373
|
||||
#define _DO_CALL_FUNCTION_EX 374
|
||||
#define _DO_CALL_KW 375
|
||||
#define _DO_CALL 374
|
||||
#define _DO_CALL_FUNCTION_EX 375
|
||||
#define _DO_CALL_KW 376
|
||||
#define _END_FOR END_FOR
|
||||
#define _END_SEND END_SEND
|
||||
#define _ERROR_POP_N 376
|
||||
#define _ERROR_POP_N 377
|
||||
#define _EXIT_INIT_CHECK EXIT_INIT_CHECK
|
||||
#define _EXPAND_METHOD 377
|
||||
#define _EXPAND_METHOD_KW 378
|
||||
#define _FATAL_ERROR 379
|
||||
#define _EXPAND_METHOD 378
|
||||
#define _EXPAND_METHOD_KW 379
|
||||
#define _FATAL_ERROR 380
|
||||
#define _FORMAT_SIMPLE FORMAT_SIMPLE
|
||||
#define _FORMAT_WITH_SPEC FORMAT_WITH_SPEC
|
||||
#define _FOR_ITER 380
|
||||
#define _FOR_ITER_GEN_FRAME 381
|
||||
#define _FOR_ITER_TIER_TWO 382
|
||||
#define _FOR_ITER 381
|
||||
#define _FOR_ITER_GEN_FRAME 382
|
||||
#define _FOR_ITER_TIER_TWO 383
|
||||
#define _GET_AITER GET_AITER
|
||||
#define _GET_ANEXT GET_ANEXT
|
||||
#define _GET_AWAITABLE GET_AWAITABLE
|
||||
#define _GET_ITER GET_ITER
|
||||
#define _GET_LEN GET_LEN
|
||||
#define _GET_YIELD_FROM_ITER GET_YIELD_FROM_ITER
|
||||
#define _GUARD_BINARY_OP_EXTEND 383
|
||||
#define _GUARD_CALLABLE_ISINSTANCE 384
|
||||
#define _GUARD_CALLABLE_LEN 385
|
||||
#define _GUARD_CALLABLE_LIST_APPEND 386
|
||||
#define _GUARD_CALLABLE_STR_1 387
|
||||
#define _GUARD_CALLABLE_TUPLE_1 388
|
||||
#define _GUARD_CALLABLE_TYPE_1 389
|
||||
#define _GUARD_DORV_NO_DICT 390
|
||||
#define _GUARD_DORV_VALUES_INST_ATTR_FROM_DICT 391
|
||||
#define _GUARD_GLOBALS_VERSION 392
|
||||
#define _GUARD_IS_FALSE_POP 393
|
||||
#define _GUARD_IS_NONE_POP 394
|
||||
#define _GUARD_IS_NOT_NONE_POP 395
|
||||
#define _GUARD_IS_TRUE_POP 396
|
||||
#define _GUARD_KEYS_VERSION 397
|
||||
#define _GUARD_NOS_DICT 398
|
||||
#define _GUARD_NOS_FLOAT 399
|
||||
#define _GUARD_NOS_INT 400
|
||||
#define _GUARD_NOS_LIST 401
|
||||
#define _GUARD_NOS_NOT_NULL 402
|
||||
#define _GUARD_NOS_NULL 403
|
||||
#define _GUARD_NOS_OVERFLOWED 404
|
||||
#define _GUARD_NOS_TUPLE 405
|
||||
#define _GUARD_NOS_UNICODE 406
|
||||
#define _GUARD_NOT_EXHAUSTED_LIST 407
|
||||
#define _GUARD_NOT_EXHAUSTED_RANGE 408
|
||||
#define _GUARD_NOT_EXHAUSTED_TUPLE 409
|
||||
#define _GUARD_THIRD_NULL 410
|
||||
#define _GUARD_TOS_ANY_SET 411
|
||||
#define _GUARD_TOS_DICT 412
|
||||
#define _GUARD_TOS_FLOAT 413
|
||||
#define _GUARD_TOS_INT 414
|
||||
#define _GUARD_TOS_LIST 415
|
||||
#define _GUARD_TOS_OVERFLOWED 416
|
||||
#define _GUARD_TOS_SLICE 417
|
||||
#define _GUARD_TOS_TUPLE 418
|
||||
#define _GUARD_TOS_UNICODE 419
|
||||
#define _GUARD_TYPE_VERSION 420
|
||||
#define _GUARD_TYPE_VERSION_AND_LOCK 421
|
||||
#define _GUARD_BINARY_OP_EXTEND 384
|
||||
#define _GUARD_CALLABLE_ISINSTANCE 385
|
||||
#define _GUARD_CALLABLE_LEN 386
|
||||
#define _GUARD_CALLABLE_LIST_APPEND 387
|
||||
#define _GUARD_CALLABLE_STR_1 388
|
||||
#define _GUARD_CALLABLE_TUPLE_1 389
|
||||
#define _GUARD_CALLABLE_TYPE_1 390
|
||||
#define _GUARD_DORV_NO_DICT 391
|
||||
#define _GUARD_DORV_VALUES_INST_ATTR_FROM_DICT 392
|
||||
#define _GUARD_GLOBALS_VERSION 393
|
||||
#define _GUARD_IS_FALSE_POP 394
|
||||
#define _GUARD_IS_NONE_POP 395
|
||||
#define _GUARD_IS_NOT_NONE_POP 396
|
||||
#define _GUARD_IS_TRUE_POP 397
|
||||
#define _GUARD_KEYS_VERSION 398
|
||||
#define _GUARD_NOS_DICT 399
|
||||
#define _GUARD_NOS_FLOAT 400
|
||||
#define _GUARD_NOS_INT 401
|
||||
#define _GUARD_NOS_LIST 402
|
||||
#define _GUARD_NOS_NOT_NULL 403
|
||||
#define _GUARD_NOS_NULL 404
|
||||
#define _GUARD_NOS_OVERFLOWED 405
|
||||
#define _GUARD_NOS_TUPLE 406
|
||||
#define _GUARD_NOS_UNICODE 407
|
||||
#define _GUARD_NOT_EXHAUSTED_LIST 408
|
||||
#define _GUARD_NOT_EXHAUSTED_RANGE 409
|
||||
#define _GUARD_NOT_EXHAUSTED_TUPLE 410
|
||||
#define _GUARD_THIRD_NULL 411
|
||||
#define _GUARD_TOS_ANY_SET 412
|
||||
#define _GUARD_TOS_DICT 413
|
||||
#define _GUARD_TOS_FLOAT 414
|
||||
#define _GUARD_TOS_INT 415
|
||||
#define _GUARD_TOS_LIST 416
|
||||
#define _GUARD_TOS_OVERFLOWED 417
|
||||
#define _GUARD_TOS_SLICE 418
|
||||
#define _GUARD_TOS_TUPLE 419
|
||||
#define _GUARD_TOS_UNICODE 420
|
||||
#define _GUARD_TYPE_VERSION 421
|
||||
#define _GUARD_TYPE_VERSION_AND_LOCK 422
|
||||
#define _IMPORT_FROM IMPORT_FROM
|
||||
#define _IMPORT_NAME IMPORT_NAME
|
||||
#define _INIT_CALL_BOUND_METHOD_EXACT_ARGS 422
|
||||
#define _INIT_CALL_PY_EXACT_ARGS 423
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_0 424
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_1 425
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_2 426
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_3 427
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_4 428
|
||||
#define _INSERT_NULL 429
|
||||
#define _INIT_CALL_BOUND_METHOD_EXACT_ARGS 423
|
||||
#define _INIT_CALL_PY_EXACT_ARGS 424
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_0 425
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_1 426
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_2 427
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_3 428
|
||||
#define _INIT_CALL_PY_EXACT_ARGS_4 429
|
||||
#define _INSERT_NULL 430
|
||||
#define _INSTRUMENTED_FOR_ITER INSTRUMENTED_FOR_ITER
|
||||
#define _INSTRUMENTED_INSTRUCTION INSTRUMENTED_INSTRUCTION
|
||||
#define _INSTRUMENTED_JUMP_FORWARD INSTRUMENTED_JUMP_FORWARD
|
||||
|
|
@ -183,177 +184,177 @@ extern "C" {
|
|||
#define _INSTRUMENTED_POP_JUMP_IF_NONE INSTRUMENTED_POP_JUMP_IF_NONE
|
||||
#define _INSTRUMENTED_POP_JUMP_IF_NOT_NONE INSTRUMENTED_POP_JUMP_IF_NOT_NONE
|
||||
#define _INSTRUMENTED_POP_JUMP_IF_TRUE INSTRUMENTED_POP_JUMP_IF_TRUE
|
||||
#define _IS_NONE 430
|
||||
#define _IS_NONE 431
|
||||
#define _IS_OP IS_OP
|
||||
#define _ITER_CHECK_LIST 431
|
||||
#define _ITER_CHECK_RANGE 432
|
||||
#define _ITER_CHECK_TUPLE 433
|
||||
#define _ITER_JUMP_LIST 434
|
||||
#define _ITER_JUMP_RANGE 435
|
||||
#define _ITER_JUMP_TUPLE 436
|
||||
#define _ITER_NEXT_LIST 437
|
||||
#define _ITER_NEXT_LIST_TIER_TWO 438
|
||||
#define _ITER_NEXT_RANGE 439
|
||||
#define _ITER_NEXT_TUPLE 440
|
||||
#define _JUMP_TO_TOP 441
|
||||
#define _ITER_CHECK_LIST 432
|
||||
#define _ITER_CHECK_RANGE 433
|
||||
#define _ITER_CHECK_TUPLE 434
|
||||
#define _ITER_JUMP_LIST 435
|
||||
#define _ITER_JUMP_RANGE 436
|
||||
#define _ITER_JUMP_TUPLE 437
|
||||
#define _ITER_NEXT_LIST 438
|
||||
#define _ITER_NEXT_LIST_TIER_TWO 439
|
||||
#define _ITER_NEXT_RANGE 440
|
||||
#define _ITER_NEXT_TUPLE 441
|
||||
#define _JUMP_TO_TOP 442
|
||||
#define _LIST_APPEND LIST_APPEND
|
||||
#define _LIST_EXTEND LIST_EXTEND
|
||||
#define _LOAD_ATTR 442
|
||||
#define _LOAD_ATTR_CLASS 443
|
||||
#define _LOAD_ATTR 443
|
||||
#define _LOAD_ATTR_CLASS 444
|
||||
#define _LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN
|
||||
#define _LOAD_ATTR_INSTANCE_VALUE 444
|
||||
#define _LOAD_ATTR_METHOD_LAZY_DICT 445
|
||||
#define _LOAD_ATTR_METHOD_NO_DICT 446
|
||||
#define _LOAD_ATTR_METHOD_WITH_VALUES 447
|
||||
#define _LOAD_ATTR_MODULE 448
|
||||
#define _LOAD_ATTR_NONDESCRIPTOR_NO_DICT 449
|
||||
#define _LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES 450
|
||||
#define _LOAD_ATTR_PROPERTY_FRAME 451
|
||||
#define _LOAD_ATTR_SLOT 452
|
||||
#define _LOAD_ATTR_WITH_HINT 453
|
||||
#define _LOAD_ATTR_INSTANCE_VALUE 445
|
||||
#define _LOAD_ATTR_METHOD_LAZY_DICT 446
|
||||
#define _LOAD_ATTR_METHOD_NO_DICT 447
|
||||
#define _LOAD_ATTR_METHOD_WITH_VALUES 448
|
||||
#define _LOAD_ATTR_MODULE 449
|
||||
#define _LOAD_ATTR_NONDESCRIPTOR_NO_DICT 450
|
||||
#define _LOAD_ATTR_NONDESCRIPTOR_WITH_VALUES 451
|
||||
#define _LOAD_ATTR_PROPERTY_FRAME 452
|
||||
#define _LOAD_ATTR_SLOT 453
|
||||
#define _LOAD_ATTR_WITH_HINT 454
|
||||
#define _LOAD_BUILD_CLASS LOAD_BUILD_CLASS
|
||||
#define _LOAD_BYTECODE 454
|
||||
#define _LOAD_BYTECODE 455
|
||||
#define _LOAD_COMMON_CONSTANT LOAD_COMMON_CONSTANT
|
||||
#define _LOAD_CONST LOAD_CONST
|
||||
#define _LOAD_CONST_INLINE 455
|
||||
#define _LOAD_CONST_INLINE_BORROW 456
|
||||
#define _LOAD_CONST_UNDER_INLINE 457
|
||||
#define _LOAD_CONST_UNDER_INLINE_BORROW 458
|
||||
#define _LOAD_CONST_INLINE 456
|
||||
#define _LOAD_CONST_INLINE_BORROW 457
|
||||
#define _LOAD_CONST_UNDER_INLINE 458
|
||||
#define _LOAD_CONST_UNDER_INLINE_BORROW 459
|
||||
#define _LOAD_DEREF LOAD_DEREF
|
||||
#define _LOAD_FAST 459
|
||||
#define _LOAD_FAST_0 460
|
||||
#define _LOAD_FAST_1 461
|
||||
#define _LOAD_FAST_2 462
|
||||
#define _LOAD_FAST_3 463
|
||||
#define _LOAD_FAST_4 464
|
||||
#define _LOAD_FAST_5 465
|
||||
#define _LOAD_FAST_6 466
|
||||
#define _LOAD_FAST_7 467
|
||||
#define _LOAD_FAST 460
|
||||
#define _LOAD_FAST_0 461
|
||||
#define _LOAD_FAST_1 462
|
||||
#define _LOAD_FAST_2 463
|
||||
#define _LOAD_FAST_3 464
|
||||
#define _LOAD_FAST_4 465
|
||||
#define _LOAD_FAST_5 466
|
||||
#define _LOAD_FAST_6 467
|
||||
#define _LOAD_FAST_7 468
|
||||
#define _LOAD_FAST_AND_CLEAR LOAD_FAST_AND_CLEAR
|
||||
#define _LOAD_FAST_BORROW 468
|
||||
#define _LOAD_FAST_BORROW_0 469
|
||||
#define _LOAD_FAST_BORROW_1 470
|
||||
#define _LOAD_FAST_BORROW_2 471
|
||||
#define _LOAD_FAST_BORROW_3 472
|
||||
#define _LOAD_FAST_BORROW_4 473
|
||||
#define _LOAD_FAST_BORROW_5 474
|
||||
#define _LOAD_FAST_BORROW_6 475
|
||||
#define _LOAD_FAST_BORROW_7 476
|
||||
#define _LOAD_FAST_BORROW 469
|
||||
#define _LOAD_FAST_BORROW_0 470
|
||||
#define _LOAD_FAST_BORROW_1 471
|
||||
#define _LOAD_FAST_BORROW_2 472
|
||||
#define _LOAD_FAST_BORROW_3 473
|
||||
#define _LOAD_FAST_BORROW_4 474
|
||||
#define _LOAD_FAST_BORROW_5 475
|
||||
#define _LOAD_FAST_BORROW_6 476
|
||||
#define _LOAD_FAST_BORROW_7 477
|
||||
#define _LOAD_FAST_BORROW_LOAD_FAST_BORROW LOAD_FAST_BORROW_LOAD_FAST_BORROW
|
||||
#define _LOAD_FAST_CHECK LOAD_FAST_CHECK
|
||||
#define _LOAD_FAST_LOAD_FAST LOAD_FAST_LOAD_FAST
|
||||
#define _LOAD_FROM_DICT_OR_DEREF LOAD_FROM_DICT_OR_DEREF
|
||||
#define _LOAD_FROM_DICT_OR_GLOBALS LOAD_FROM_DICT_OR_GLOBALS
|
||||
#define _LOAD_GLOBAL 477
|
||||
#define _LOAD_GLOBAL_BUILTINS 478
|
||||
#define _LOAD_GLOBAL_MODULE 479
|
||||
#define _LOAD_GLOBAL 478
|
||||
#define _LOAD_GLOBAL_BUILTINS 479
|
||||
#define _LOAD_GLOBAL_MODULE 480
|
||||
#define _LOAD_LOCALS LOAD_LOCALS
|
||||
#define _LOAD_NAME LOAD_NAME
|
||||
#define _LOAD_SMALL_INT 480
|
||||
#define _LOAD_SMALL_INT_0 481
|
||||
#define _LOAD_SMALL_INT_1 482
|
||||
#define _LOAD_SMALL_INT_2 483
|
||||
#define _LOAD_SMALL_INT_3 484
|
||||
#define _LOAD_SPECIAL 485
|
||||
#define _LOAD_SMALL_INT 481
|
||||
#define _LOAD_SMALL_INT_0 482
|
||||
#define _LOAD_SMALL_INT_1 483
|
||||
#define _LOAD_SMALL_INT_2 484
|
||||
#define _LOAD_SMALL_INT_3 485
|
||||
#define _LOAD_SPECIAL 486
|
||||
#define _LOAD_SUPER_ATTR_ATTR LOAD_SUPER_ATTR_ATTR
|
||||
#define _LOAD_SUPER_ATTR_METHOD LOAD_SUPER_ATTR_METHOD
|
||||
#define _MAKE_CALLARGS_A_TUPLE 486
|
||||
#define _MAKE_CALLARGS_A_TUPLE 487
|
||||
#define _MAKE_CELL MAKE_CELL
|
||||
#define _MAKE_FUNCTION MAKE_FUNCTION
|
||||
#define _MAKE_WARM 487
|
||||
#define _MAKE_WARM 488
|
||||
#define _MAP_ADD MAP_ADD
|
||||
#define _MATCH_CLASS MATCH_CLASS
|
||||
#define _MATCH_KEYS MATCH_KEYS
|
||||
#define _MATCH_MAPPING MATCH_MAPPING
|
||||
#define _MATCH_SEQUENCE MATCH_SEQUENCE
|
||||
#define _MAYBE_EXPAND_METHOD 488
|
||||
#define _MAYBE_EXPAND_METHOD_KW 489
|
||||
#define _MONITOR_CALL 490
|
||||
#define _MONITOR_CALL_KW 491
|
||||
#define _MONITOR_JUMP_BACKWARD 492
|
||||
#define _MONITOR_RESUME 493
|
||||
#define _MAYBE_EXPAND_METHOD 489
|
||||
#define _MAYBE_EXPAND_METHOD_KW 490
|
||||
#define _MONITOR_CALL 491
|
||||
#define _MONITOR_CALL_KW 492
|
||||
#define _MONITOR_JUMP_BACKWARD 493
|
||||
#define _MONITOR_RESUME 494
|
||||
#define _NOP NOP
|
||||
#define _POP_CALL 494
|
||||
#define _POP_CALL_LOAD_CONST_INLINE_BORROW 495
|
||||
#define _POP_CALL_ONE 496
|
||||
#define _POP_CALL_ONE_LOAD_CONST_INLINE_BORROW 497
|
||||
#define _POP_CALL_TWO 498
|
||||
#define _POP_CALL_TWO_LOAD_CONST_INLINE_BORROW 499
|
||||
#define _POP_CALL 495
|
||||
#define _POP_CALL_LOAD_CONST_INLINE_BORROW 496
|
||||
#define _POP_CALL_ONE 497
|
||||
#define _POP_CALL_ONE_LOAD_CONST_INLINE_BORROW 498
|
||||
#define _POP_CALL_TWO 499
|
||||
#define _POP_CALL_TWO_LOAD_CONST_INLINE_BORROW 500
|
||||
#define _POP_EXCEPT POP_EXCEPT
|
||||
#define _POP_ITER POP_ITER
|
||||
#define _POP_JUMP_IF_FALSE 500
|
||||
#define _POP_JUMP_IF_TRUE 501
|
||||
#define _POP_JUMP_IF_FALSE 501
|
||||
#define _POP_JUMP_IF_TRUE 502
|
||||
#define _POP_TOP POP_TOP
|
||||
#define _POP_TOP_FLOAT 502
|
||||
#define _POP_TOP_INT 503
|
||||
#define _POP_TOP_LOAD_CONST_INLINE 504
|
||||
#define _POP_TOP_LOAD_CONST_INLINE_BORROW 505
|
||||
#define _POP_TOP_NOP 506
|
||||
#define _POP_TOP_UNICODE 507
|
||||
#define _POP_TWO 508
|
||||
#define _POP_TWO_LOAD_CONST_INLINE_BORROW 509
|
||||
#define _POP_TOP_FLOAT 503
|
||||
#define _POP_TOP_INT 504
|
||||
#define _POP_TOP_LOAD_CONST_INLINE 505
|
||||
#define _POP_TOP_LOAD_CONST_INLINE_BORROW 506
|
||||
#define _POP_TOP_NOP 507
|
||||
#define _POP_TOP_UNICODE 508
|
||||
#define _POP_TWO 509
|
||||
#define _POP_TWO_LOAD_CONST_INLINE_BORROW 510
|
||||
#define _PUSH_EXC_INFO PUSH_EXC_INFO
|
||||
#define _PUSH_FRAME 510
|
||||
#define _PUSH_FRAME 511
|
||||
#define _PUSH_NULL PUSH_NULL
|
||||
#define _PUSH_NULL_CONDITIONAL 511
|
||||
#define _PY_FRAME_GENERAL 512
|
||||
#define _PY_FRAME_KW 513
|
||||
#define _QUICKEN_RESUME 514
|
||||
#define _REPLACE_WITH_TRUE 515
|
||||
#define _PUSH_NULL_CONDITIONAL 512
|
||||
#define _PY_FRAME_GENERAL 513
|
||||
#define _PY_FRAME_KW 514
|
||||
#define _QUICKEN_RESUME 515
|
||||
#define _REPLACE_WITH_TRUE 516
|
||||
#define _RESUME_CHECK RESUME_CHECK
|
||||
#define _RETURN_GENERATOR RETURN_GENERATOR
|
||||
#define _RETURN_VALUE RETURN_VALUE
|
||||
#define _SAVE_RETURN_OFFSET 516
|
||||
#define _SEND 517
|
||||
#define _SEND_GEN_FRAME 518
|
||||
#define _SAVE_RETURN_OFFSET 517
|
||||
#define _SEND 518
|
||||
#define _SEND_GEN_FRAME 519
|
||||
#define _SETUP_ANNOTATIONS SETUP_ANNOTATIONS
|
||||
#define _SET_ADD SET_ADD
|
||||
#define _SET_FUNCTION_ATTRIBUTE SET_FUNCTION_ATTRIBUTE
|
||||
#define _SET_UPDATE SET_UPDATE
|
||||
#define _START_EXECUTOR 519
|
||||
#define _STORE_ATTR 520
|
||||
#define _STORE_ATTR_INSTANCE_VALUE 521
|
||||
#define _STORE_ATTR_SLOT 522
|
||||
#define _STORE_ATTR_WITH_HINT 523
|
||||
#define _START_EXECUTOR 520
|
||||
#define _STORE_ATTR 521
|
||||
#define _STORE_ATTR_INSTANCE_VALUE 522
|
||||
#define _STORE_ATTR_SLOT 523
|
||||
#define _STORE_ATTR_WITH_HINT 524
|
||||
#define _STORE_DEREF STORE_DEREF
|
||||
#define _STORE_FAST 524
|
||||
#define _STORE_FAST_0 525
|
||||
#define _STORE_FAST_1 526
|
||||
#define _STORE_FAST_2 527
|
||||
#define _STORE_FAST_3 528
|
||||
#define _STORE_FAST_4 529
|
||||
#define _STORE_FAST_5 530
|
||||
#define _STORE_FAST_6 531
|
||||
#define _STORE_FAST_7 532
|
||||
#define _STORE_FAST 525
|
||||
#define _STORE_FAST_0 526
|
||||
#define _STORE_FAST_1 527
|
||||
#define _STORE_FAST_2 528
|
||||
#define _STORE_FAST_3 529
|
||||
#define _STORE_FAST_4 530
|
||||
#define _STORE_FAST_5 531
|
||||
#define _STORE_FAST_6 532
|
||||
#define _STORE_FAST_7 533
|
||||
#define _STORE_FAST_LOAD_FAST STORE_FAST_LOAD_FAST
|
||||
#define _STORE_FAST_STORE_FAST STORE_FAST_STORE_FAST
|
||||
#define _STORE_GLOBAL STORE_GLOBAL
|
||||
#define _STORE_NAME STORE_NAME
|
||||
#define _STORE_SLICE 533
|
||||
#define _STORE_SUBSCR 534
|
||||
#define _STORE_SUBSCR_DICT 535
|
||||
#define _STORE_SUBSCR_LIST_INT 536
|
||||
#define _SWAP 537
|
||||
#define _SWAP_2 538
|
||||
#define _SWAP_3 539
|
||||
#define _TIER2_RESUME_CHECK 540
|
||||
#define _TO_BOOL 541
|
||||
#define _STORE_SLICE 534
|
||||
#define _STORE_SUBSCR 535
|
||||
#define _STORE_SUBSCR_DICT 536
|
||||
#define _STORE_SUBSCR_LIST_INT 537
|
||||
#define _SWAP 538
|
||||
#define _SWAP_2 539
|
||||
#define _SWAP_3 540
|
||||
#define _TIER2_RESUME_CHECK 541
|
||||
#define _TO_BOOL 542
|
||||
#define _TO_BOOL_BOOL TO_BOOL_BOOL
|
||||
#define _TO_BOOL_INT TO_BOOL_INT
|
||||
#define _TO_BOOL_LIST 542
|
||||
#define _TO_BOOL_LIST 543
|
||||
#define _TO_BOOL_NONE TO_BOOL_NONE
|
||||
#define _TO_BOOL_STR 543
|
||||
#define _TO_BOOL_STR 544
|
||||
#define _UNARY_INVERT UNARY_INVERT
|
||||
#define _UNARY_NEGATIVE UNARY_NEGATIVE
|
||||
#define _UNARY_NOT UNARY_NOT
|
||||
#define _UNPACK_EX UNPACK_EX
|
||||
#define _UNPACK_SEQUENCE 544
|
||||
#define _UNPACK_SEQUENCE_LIST 545
|
||||
#define _UNPACK_SEQUENCE_TUPLE 546
|
||||
#define _UNPACK_SEQUENCE_TWO_TUPLE 547
|
||||
#define _UNPACK_SEQUENCE 545
|
||||
#define _UNPACK_SEQUENCE_LIST 546
|
||||
#define _UNPACK_SEQUENCE_TUPLE 547
|
||||
#define _UNPACK_SEQUENCE_TWO_TUPLE 548
|
||||
#define _WITH_EXCEPT_START WITH_EXCEPT_START
|
||||
#define _YIELD_VALUE YIELD_VALUE
|
||||
#define MAX_UOP_ID 547
|
||||
#define MAX_UOP_ID 548
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue