mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
GH-111485: Separate out parsing, analysis and code-gen phases of tier 1 code generator (GH-112299)
This commit is contained in:
parent
3d712a9f4c
commit
b449415b2f
15 changed files with 1675 additions and 526 deletions
6
Include/internal/pycore_opcode_metadata.h
generated
6
Include/internal/pycore_opcode_metadata.h
generated
|
@ -1285,11 +1285,11 @@ int _PyOpcode_num_pushed(int opcode, int oparg, bool jump) {
|
|||
case _INIT_CALL_PY_EXACT_ARGS:
|
||||
return 1;
|
||||
case _PUSH_FRAME:
|
||||
return 1;
|
||||
return 0;
|
||||
case CALL_BOUND_METHOD_EXACT_ARGS:
|
||||
return 1;
|
||||
return 0;
|
||||
case CALL_PY_EXACT_ARGS:
|
||||
return 1;
|
||||
return 0;
|
||||
case CALL_PY_WITH_DEFAULTS:
|
||||
return 1;
|
||||
case CALL_TYPE_1:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue