summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_code.h
Commit message (Expand)AuthorAgeFilesLines
...
* Add more stats for freelist use and allocations. (GH-92211)Mark Shannon2022-05-031-0/+8
* gh-89479: Export _Py_GetSpecializationStats() internal function (#92011)Victor Stinner2022-04-281-2/+3
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-211-14/+35
* Merge deoptimization blocks in interpreter (GH-32155)Mark Shannon2022-03-301-0/+2
* bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)Dennis Sweeney2022-03-251-1/+1
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-211-12/+5
* bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)Brandt Bucher2022-03-081-0/+6
* bpo-46841: Use inline caching for calls (GH-31709)Brandt Bucher2022-03-071-115/+26
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-041-0/+1
* bpo-46841: Use inline caching for attribute accesses (GH-31640)Brandt Bucher2022-03-031-25/+112
* bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)Mark Shannon2022-03-011-1/+10
* bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)Brandt Bucher2022-03-011-4/+12
* bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)Mark Shannon2022-02-281-9/+48
* bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)Brandt Bucher2022-02-281-1/+8
* Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)Kumar Aditya2022-02-261-1/+1
* bpo-45316: Move private PyCode C API to internal C API (GH-31576)Victor Stinner2022-02-251-18/+44
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-251-1/+8
* bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)Brandt Bucher2022-02-231-1/+1
* Move call specializations from CALL to PRECALL. (GH-31496)Mark Shannon2022-02-221-1/+3
* bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)Brandt Bucher2022-02-161-0/+2
* bpo-46430: Intern strings in deep-frozen modules (GH-30683)Kumar Aditya2022-02-091-0/+2
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-021-0/+2
* bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon2022-02-011-0/+12
* bpo-46072: Add simple stats for Python calls. (GH-30989)Mark Shannon2022-01-281-0/+8
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-281-2/+3
* bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)Christian Heimes2022-01-271-1/+1
* bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)Kumar Aditya2022-01-271-0/+2
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-171-8/+21
* bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon2021-12-151-15/+2
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-141-2/+2
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-031-0/+2
* bpo-45753: Interpreter internal tweaks (GH-29575)Mark Shannon2021-12-011-11/+12
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-191-0/+1
* bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...Mark Shannon2021-11-181-1/+2
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-111-2/+2
* bpo-45527: Don't count cache hits, just misses. (GH-29092)Mark Shannon2021-10-201-47/+0
* bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon2021-10-201-0/+7
* bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin2021-10-191-0/+1
* bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney2021-10-141-1/+2
* bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon2021-08-271-0/+1
* bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)Ken Jin2021-08-171-0/+7
* bpo-44890: Fix AMD build error (GH-27740)Irit Katriel2021-08-121-2/+7
* bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)Irit Katriel2021-08-121-5/+8
* Classify specialization failures. Provides more useful stats, with lower over...Mark Shannon2021-08-101-1/+3
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-091-2/+3
* Add option to write specialization stats to files and script to summarize. (G...Mark Shannon2021-08-041-0/+1
* Minor fixes to specialization stats. (GH-27457)Mark Shannon2021-07-291-0/+2
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-291-0/+3
* Remove legacy opcache structs (GH-27164)Ken Jin2021-07-161-23/+0
* bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)Irit Katriel2021-07-151-2/+3