| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix debug output for optimized executor (#116337) | Guido van Rossum | 2024-03-05 | 1 | -3/+4 |
|
|
* | GH-115685: Split `_TO_BOOL_ALWAYS_TRUE` into micro-ops (GH-116352) | Mark Shannon | 2024-03-05 | 5 | -21/+27 |
|
|
* | GH-115819: Eliminate Boolean guards when value is known (GH-116355) | Mark Shannon | 2024-03-05 | 4 | -0/+97 |
|
|
* | gh-116326: Handler errors correctly in `getwindowsversion` in `sysmodule` (#1... | Nikita Sobolev | 2024-03-05 | 1 | -20/+32 |
|
|
* | GH-115685: Optimize `TO_BOOL` and variants based on truthiness of input. (GH-... | Mark Shannon | 2024-03-05 | 4 | -55/+149 |
|
|
* | gh-115320: Refactor `get_hash_info` in `sysmodule.c` not to swallow errors (#... | Nikita Sobolev | 2024-03-04 | 1 | -23/+25 |
|
|
* | GH-116134: JIT aarch64-pc-windows-msvc (GH-116130) | Brandt Bucher | 2024-03-04 | 1 | -0/+7 |
|
|
* | gh-115832: Fix instrumentation version mismatch during interpreter shutdown (... | Brett Simmers | 2024-03-04 | 2 | -1/+12 |
|
|
* | gh-115103: Update refleak checker to trigger _PyMem_ProcessDelayed (gh-116238) | Donghee Na | 2024-03-02 | 1 | -0/+18 |
|
|
* | gh-114271: Make `_thread.ThreadHandle` thread-safe in free-threaded builds (G... | mpage | 2024-03-01 | 1 | -0/+31 |
|
|
* | gh-115480: Type propagate _BINARY_OP_ADD_UNICODE (GH-115710) | Ken Jin | 2024-03-01 | 2 | -2/+33 |
|
|
* | gh-116098: Revert "gh-107674: Improve performance of `sys.settrace` (GH-11498... | Tian Gao | 2024-03-01 | 6 | -63/+53 |
|
|
* | gh-115999: Disable the specializing adaptive interpreter in free-threaded bui... | Brett Simmers | 2024-03-01 | 2 | -0/+63 |
|
|
* | gh-115685: Type/values propagate for TO_BOOL in tier 2 (GH-115686) | Ken Jin | 2024-02-29 | 4 | -10/+140 |
|
|
* | gh-116088: Insert bottom checks after all sym_set_...() calls (#116089) | Guido van Rossum | 2024-02-29 | 4 | -32/+85 |
|
|
* | GH-115802: JIT "small" code for Windows (GH-115964) | Brandt Bucher | 2024-02-29 | 6 | -30/+33 |
|
|
* | gh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefix (#11... | Guido van Rossum | 2024-02-29 | 1 | -98/+98 |
|
|
* | gh-115859: Re-enable T2 optimizer pass by default (#116062) | Guido van Rossum | 2024-02-28 | 5 | -27/+74 |
|
|
* | gh-112529: Simplify PyObject_GC_IsTracked and PyObject_GC_IsFinalized (#114732) | Sam Gross | 2024-02-28 | 1 | -8/+2 |
|
|
* | gh-115816: Improve internal symbols API in optimizer (#116028) | Guido van Rossum | 2024-02-28 | 3 | -62/+184 |
|
|
* | gh-107674: Improve performance of `sys.settrace` (GH-114986) | Tian Gao | 2024-02-28 | 6 | -53/+63 |
|
|
* | gh-116012: Preserve GetLastError() across calls to TlsGetValue on Windows (GH... | Steve Dower | 2024-02-28 | 2 | -10/+6 |
|
|
* | gh-105858: Improve AST node constructors (#105880) | Jelle Zijlstra | 2024-02-28 | 1 | -7/+4326 |
|
|
* | GH-115816: Assorted naming and formatting changes to improve maintainability.... | Mark Shannon | 2024-02-27 | 4 | -428/+453 |
|
|
* | GH-115816: Make tier2 optimizer symbols testable, and add a few tests. (GH-11... | Mark Shannon | 2024-02-27 | 4 | -599/+612 |
|
|
* | gh-115168: Add pystats counter for invalidated executors (GH-115169) | Michael Droettboom | 2024-02-26 | 7 | -10/+17 |
|
|
* | Rename tier 2 redundancy eliminator to optimizer (#115888) | Guido van Rossum | 2024-02-26 | 3 | -6/+6 |
|
|
* | GH-115802: JIT "small" code for macOS and Linux (GH-115826) | Brandt Bucher | 2024-02-26 | 1 | -16/+103 |
|
|
* | gh-115914: minor cleanup: simplify filename_obj assignment in PyRun_AnyFileE... | Sergii K | 2024-02-25 | 1 | -4/+1 |
|
|
* | gh-115859: Disable the tier 2 redundancy eliminator by default (GH-115860) | Ken Jin | 2024-02-23 | 1 | -3/+6 |
|
|
* | gh-115778: Add `tierN` annotation for instruction definitions (#115815) | Kirill Podoprigora | 2024-02-23 | 4 | -137/+35 |
|
|
* | gh-114058: Improve method information in redundancy eliminator (GH-115848) | Ken Jin | 2024-02-23 | 2 | -6/+14 |
|
|
* | gh-111789: Use PyDict_GetItemRef() in Python/compile.c (GH-112083) | Serhiy Storchaka | 2024-02-23 | 1 | -5/+4 |
|
|
* | gh-90300: Reformat the Python CLI help output (GH-93415) | Serhiy Storchaka | 2024-02-23 | 1 | -108/+106 |
|
|
* | gh-114058: More robust method handling in redundancy eliminator (GH-115779) | Ken Jin | 2024-02-23 | 3 | -16/+41 |
|
|
* | gh-115727: Reduce confidence even on 100% predicted jumps (#115748) | Guido van Rossum | 2024-02-22 | 1 | -7/+13 |
|
|
* | GH-115651: Convert `LOAD_MODULE_ATTR` into `LOAD_INLINE_CONST` when the modul... | Mark Shannon | 2024-02-22 | 6 | -95/+182 |
|
|
* | gh-115796: fix exception table construction in _testinternalcapi.assemble_cod... | Irit Katriel | 2024-02-22 | 1 | -6/+11 |
|
|
* | gh-110850: Cleanup PyTime API: PyTime_t are nanoseconds (#115753) | Victor Stinner | 2024-02-21 | 4 | -59/+26 |
|
|
* | gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751) | Victor Stinner | 2024-02-21 | 1 | -2/+2 |
|
|
* | Delete unused sym_clear_flag function. (#115744) | Benjamin Peterson | 2024-02-21 | 1 | -6/+0 |
|
|
* | gh-110850: Use public PyTime functions (#115746) | Victor Stinner | 2024-02-20 | 2 | -2/+2 |
|
|
* | gh-110850: Rename internal PyTime C API functions (#115734) | Victor Stinner | 2024-02-20 | 8 | -32/+30 |
|
|
* | Tier 2 cleanups and tweaks (#115534) | Guido van Rossum | 2024-02-20 | 4 | -44/+109 |
|
|
* | gh-115733: Fix crash involving exhausted list iterator (#115740) | Sam Gross | 2024-02-20 | 3 | -2/+4 |
|
|
* | gh-115735: Fix current executor NULL before _START_EXECUTOR (#115736) | Ken Jin | 2024-02-20 | 1 | -2/+2 |
|
|
* | gh-115103: Implement delayed free mechanism for free-threaded builds (#115367) | Sam Gross | 2024-02-20 | 2 | -0/+9 |
|
|
* | gh-110850: Cleanup pycore_time.h includes (#115724) | Victor Stinner | 2024-02-20 | 7 | -8/+15 |
|
|
* | gh-115491: Keep some fields valid across allocations (free-threading) (#115573) | Sam Gross | 2024-02-20 | 1 | -0/+15 |
|
|
* | gh-110850: Replace _PyTime_t with PyTime_t (#115719) | Victor Stinner | 2024-02-20 | 10 | -182/+182 |
|
|