summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)Mark Shannon2022-02-243-30/+102
* bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)Kumar Aditya2022-02-241-2/+4
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-242-5/+5
* bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...Dennis Sweeney2022-02-243-4/+88
* bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)Brandt Bucher2022-02-232-42/+33
* bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)Victor Stinner2022-02-233-12/+13
* bpo-45885: Don't un-adapt `COMPARE_OP` when collecting stats (GH-31516)Brandt Bucher2022-02-231-2/+8
* bpo-46329: Fix test failure when `Py_STATS` is enabled (GH-31511)Brandt Bucher2022-02-231-2/+1
* bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...Eric Snow2022-02-236-162/+42
* 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-223-149/+246
* bpo-46329: Streamline calling sequence a bit. (GH-31465)Mark Shannon2022-02-212-134/+158
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-184-58/+49
* bpo-46709: check eval breaker in specialized `CALL` opcodes (GH-31404)Nikita Sobolev2022-02-181-0/+9
* bpo-46072: Add detailed failure stats for BINARY_OP (GH-31289)Brandt Bucher2022-02-161-12/+103
* bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)Brandt Bucher2022-02-163-79/+132
* bpo-46724: Use `JUMP_ABSOLUTE` for all backward jumps. (GH-31326)Mark Shannon2022-02-151-0/+5
* bpo-46541: Discover the global strings. (gh-31346)Eric Snow2022-02-154-2/+13
* Remove unnecessary basic block from comprehensions (GH-31263)Brandt Bucher2022-02-141-6/+3
* Add pair counts to stats output and summary. (GH-31324)Mark Shannon2022-02-141-5/+11
* Include length in stats for UNPACK_SEQUENCE. (GH-31254)Mark Shannon2022-02-142-8/+30
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-1/+1
* bpo-45490: Rename static inline functions (GH-31217)Victor Stinner2022-02-111-1/+1
* bpo-45923: Add `RESUME_QUICK` (GH-31244)Brandt Bucher2022-02-103-13/+18
* Gather stats for PRECALL_METHOD. (GH-31259)Mark Shannon2022-02-102-2/+14
* 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-102-3/+34
* bpo-46528: Attempt SWAPs at compile-time (GH-30970)Brandt Bucher2022-02-091-0/+67
* bpo-46528: Check PyMem_Malloc for NULL (GH-30998)Brandt Bucher2022-02-091-8/+15
* bpo-46072: Output stats as markdown with collapsible sections. (GH-31228)Mark Shannon2022-02-091-189/+197
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-0815-599/+431
* 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-072-62/+19
* bpo-46670: Remove unused macros in the Python directory (GH-31192)Victor Stinner2022-02-074-29/+2
* bpo-46670: Remove unused macros in ceval.c (GH-31196)Victor Stinner2022-02-071-7/+2
* bpo-46072: Improve LOAD_METHOD stats (GH-31104)Mark Shannon2022-02-071-3/+17
* bpo-46670: Test if a macro is defined, not its value (GH-31178)Victor Stinner2022-02-071-1/+1
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-042-58/+41
* Add miss stats for specialized instructions. (GH-31108)Mark Shannon2022-02-042-27/+35
* Collect stats for UNPACK_SEQUENCE. (GH-31105)Mark Shannon2022-02-032-1/+22
* Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-033-25/+7
* bpo-45885: Add more stats for COMPARE_OP in specialize.c (GH-31040)Dennis Sweeney2022-02-031-2/+47
* bpo-45773: Remove invalid peephole optimizations (GH-31066)Brandt Bucher2022-02-031-2/+0
* Add specialization stats for FOR_ITER. (GH-31079)Mark Shannon2022-02-022-0/+73
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-024-1/+10
* bpo-46528: Simplify BUILD_TUPLE/UNPACK_SEQUENCE folding (GH-31039)Brandt Bucher2022-02-011-14/+7
* bpo-45953: Preserve backward compatibility on some PyThreadState field names....Eric Snow2022-02-011-4/+4
* bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon2022-02-011-0/+12
* fFx refleak in isinstance error path (GH-31005)Ken Jin2022-01-291-0/+1