summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_code.h
Commit message (Expand)AuthorAgeFilesLines
* gh-111652: Fix --enable-pystats build (GH-111653)Michael Droettboom2023-11-031-0/+2
* gh-109329: Count tier2 opcode misses (#110561)Michael Droettboom2023-10-311-2/+2
* GH-109329: Add tier 2 stats (GH-109913)Michael Droettboom2023-10-041-0/+15
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-1/+1
* GH-108716: Turn off deep-freezing of code objects. (GH-108722)Mark Shannon2023-09-081-2/+0
* gh-107265: Remove all ENTER_EXECUTOR when execute _Py_Instrument (gh-108539)Dong-hee Na2023-09-071-0/+3
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-9/+9
* gh-108220: Internal header files require Py_BUILD_CORE to be defined (#108221)Victor Stinner2023-08-211-0/+4
* Add some GC stats to Py_STATS (GH-107581)Mark Shannon2023-08-041-0/+2
* gh-105481: the ENABLE_SPECIALIZATION flag does not need to be generated by th...Irit Katriel2023-08-011-0/+2
* gh-107211: No longer export internal functions (4) (#107217)Victor Stinner2023-07-251-2/+1
* gh-107211: No longer export internal functions (1) (#107213)Victor Stinner2023-07-251-3/+3
* GH-104909: Break LOAD_GLOBAL specializations in micro-ops. (GH-106677)Mark Shannon2023-07-121-1/+1
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-291-0/+8
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-141-13/+0
* GH-104584: Plugin optimizer API (GH-105100)Mark Shannon2023-06-021-0/+1
* gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization (#104270)Carl Meyer2023-05-111-5/+2
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-091-0/+1
* gh-103978: avoid using 'class' as an identifier (#103979)Carl Meyer2023-04-281-1/+1
* gh-87729: specialize LOAD_SUPER_ATTR_METHOD (#103809)Carl Meyer2023-04-251-0/+11
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-26/+4
* GH-88691: Shrink the CALL caches (GH-103230)Brandt Bucher2023-04-051-1/+0
* GH-89987: Shrink the BINARY_SUBSCR caches (GH-103022)Brandt Bucher2023-03-291-2/+0
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-231-1/+1
* GH-90997: Shrink the LOAD_GLOBAL caches (#102569)Brandt Bucher2023-03-111-1/+1
* GH-87849: Simplify stack effect of SEND and specialize it for generators and ...Mark Shannon2023-02-131-0/+7
* GH-100982: Add `COMPARE_AND_BRANCH` instruction (GH-100983)Mark Shannon2023-01-161-1/+1
* GH-100923: Embed jump mask in `COMPARE_OP` oparg (GH-100924)Mark Shannon2023-01-111-1/+21
* GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...Mark Shannon2022-12-141-24/+24
* GH-98522: Add version number to code objects. (GH-98525)Mark Shannon2022-12-091-0/+2
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+2
* GH-98831: Add `macro` and `op` and their implementation to DSL (#99495)Guido van Rossum2022-11-231-0/+6
* GH-99298: Clean up attribute specializations (GH-99398)Brandt Bucher2022-11-171-3/+3
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-101-0/+10
* GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182)Brandt Bucher2022-11-091-12/+33
* GH-96793: Specialize FOR_ITER for generators. (GH-98772)Mark Shannon2022-11-071-1/+1
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-26/+6
* GH-90997: Improve inline cache performance for MSVC (GH-96781)Brandt Bucher2022-09-151-74/+19
* GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988)Ken Jin2022-08-171-0/+1
* GH-94739: Mark stacks of exception handling blocks for setting frame.f_lineno...Mark Shannon2022-07-181-0/+13
* GH-93841: Allow stats to be turned on and off, cleared and dumped at runtime....Mark Shannon2022-06-211-8/+8
* GH-91432: Specialize FOR_ITER (GH-91713)Dennis Sweeney2022-06-211-0/+7
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-201-5/+5
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-201-0/+29
* GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)Ken Jin2022-06-141-7/+5
* Shrink the LOAD_METHOD cache by one codeunit. (#93537)Mark Shannon2022-06-071-1/+0
* GH-93354: Use exponential backoff to avoid excessive specialization attempts....Mark Shannon2022-05-311-3/+44
* GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...Mark Shannon2022-05-271-0/+5
* GH-90690: Remove `PRECALL` instruction (GH-92925)Mark Shannon2022-05-191-8/+0
* Improve object stats (#92845)Mark Shannon2022-05-161-49/+0