summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-251-41/+41
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-251-6/+34
* bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)Mark Shannon2022-02-241-2/+34
* bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...Dennis Sweeney2022-02-241-3/+77
* bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)Brandt Bucher2022-02-231-23/+16
* Fix reporting of specialization stats. (GH-31503)Mark Shannon2022-02-221-0/+2
* Move call specializations from CALL to PRECALL. (GH-31496)Mark Shannon2022-02-221-75/+132
* bpo-46329: Streamline calling sequence a bit. (GH-31465)Mark Shannon2022-02-211-118/+151
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-181-21/+11
* bpo-46709: check eval breaker in specialized `CALL` opcodes (GH-31404)Nikita Sobolev2022-02-181-0/+9
* bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)Brandt Bucher2022-02-161-33/+66
* Include length in stats for UNPACK_SEQUENCE. (GH-31254)Mark Shannon2022-02-141-2/+2
* bpo-45923: Add `RESUME_QUICK` (GH-31244)Brandt Bucher2022-02-101-7/+9
* Gather stats for PRECALL_METHOD. (GH-31259)Mark Shannon2022-02-101-2/+13
* bpo-46532: Reduce number of memory writes to update call_shape.kwnames. (GH-3...Mark Shannon2022-02-101-7/+15
* Fix sys.getdxp() when configured with --enable-pystats. (GH-31251)Mark Shannon2022-02-101-1/+17
* Add stats for PRECALL_FUNCTION. (GH-31250)Mark Shannon2022-02-101-0/+5
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-56/+34
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-081-3/+2
* bpo-46072: Merge dxpairs into py_stats. (GH-31197)Mark Shannon2022-02-071-60/+17
* bpo-46670: Remove unused macros in ceval.c (GH-31196)Victor Stinner2022-02-071-7/+2
* Add miss stats for specialized instructions. (GH-31108)Mark Shannon2022-02-041-0/+1
* Collect stats for UNPACK_SEQUENCE. (GH-31105)Mark Shannon2022-02-031-0/+6
* Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-031-5/+5
* Add specialization stats for FOR_ITER. (GH-31079)Mark Shannon2022-02-021-0/+5
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-021-1/+4
* fFx refleak in isinstance error path (GH-31005)Ken Jin2022-01-291-0/+1
* bpo-46072: Add simple stats for Python calls. (GH-30989)Mark Shannon2022-01-281-0/+4
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-281-190/+325
* bpo-46528: Simplify the VM's stack manipulations (GH-30902)Brandt Bucher2022-01-261-59/+9
* Use existing unbound_local_error label in DELETE_FAST opcode (GH-30882)Kumar Aditya2022-01-261-6/+1
* bpo-46420: Use NOTRACE_DISPATCH() in specialized opcodes (GH-30652)Dennis Sweeney2022-01-251-26/+43
* bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)Mark Shannon2022-01-241-21/+14
* bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon2022-01-201-107/+88
* bpo-45953: Statically initialize all the non-object PyInterpreterState fields...Eric Snow2022-01-141-2/+0
* bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)Eric Snow2022-01-141-4/+0
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-121-1/+1
* bpo-46347: Yet another fix in the erorr path of PyEval_EvalCodeEx (#30554)Yury Selivanov2022-01-121-1/+0
* bpo-46347: Fix PyEval_EvalCodeEx to correctly cleanup in error paths (#30551)Yury Selivanov2022-01-111-13/+9
* bpo-46347: Fix memory leak in PyEval_EvalCodeEx. (#30546)Yury Selivanov2022-01-111-7/+0
* bpo-45923: Handle call events in bytecode (GH-30364)Mark Shannon2022-01-061-44/+73
* bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy2022-01-061-0/+24
* bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)Brandt Bucher2022-01-051-8/+5
* bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher2022-01-041-8/+0
* bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel2022-01-041-25/+0
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-021-132/+1
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-171-23/+8
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-158/+54
* bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon2021-12-151-2/+2
* bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...Mark Shannon2021-12-151-0/+35