summaryrefslogtreecommitdiffstats
path: root/Python/optimizer_cases.c.h
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-119258: Backport optimizer frame fixes in GH-119365 (GH-120699)Ken Jin2024-06-201-9/+3
* [3.13] gh-120437: Fix `_CHECK_STACK_SPACE` optimization problems introduced ...Nadeshiko Manju2024-06-191-1/+0
* [3.13] gh-119821: Support non-dict globals in LOAD_FROM_DICT_OR_GLOBALS (#119...Jelle Zijlstra2024-06-011-7/+1
* GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 s...Mark Shannon2024-05-041-3/+53
* GH-113464: Remove the extra jump via `_SIDE_EXIT` in `_EXIT_TRACE` (GH-118545)Mark Shannon2024-05-041-4/+0
* GH-117442: Check eval-breaker at start (rather than end) of tier 2 loops (GH-...Mark Shannon2024-05-021-4/+0
* GH-118095: Add tier 2 support for YIELD_VALUE (GH-118380)Mark Shannon2024-04-301-5/+9
* GH-118095: Allow a variant of RESUME_CHECK in tier 2 (GH-118286)Mark Shannon2024-04-291-0/+8
* GH-118095: Add dynamic exit support and FOR_ITER_GEN support to tier 2 (GH-11...Mark Shannon2024-04-261-1/+12
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-0/+23
* GH-115480: Reduce guard strength for binary ops when type of one operand is k...Mark Shannon2024-04-221-8/+60
* GH-115419: Tidy up tier 2 optimizer. Merge peephole pass into main pass (GH-1...Mark Shannon2024-04-181-3/+52
* gh-116168: Remove extra `_CHECK_STACK_SPACE` uops (#117242)Peter Lazorchak2024-04-031-0/+4
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-021-1/+1
* GH-116422: Tier2 hot/cold splitting (GH-116813)Mark Shannon2024-03-261-40/+17
* gh-117176: Fix compiler warning in Python/optimizer_bytecodes.c (GH-117199)Kirill Podoprigora2024-03-241-1/+1
* gh-117045: Add code object to function version cache (#117028)Guido van Rossum2024-03-211-7/+18
* GH-117066: Tier 2 optimizer: Don't throw away good traces if we can't optimiz...Mark Shannon2024-03-201-1/+3
* Cleanup tier2 debug output (#116920)Guido van Rossum2024-03-181-0/+1
* GH-116422: Factor out eval breaker checks at end of calls into its own micro-...Mark Shannon2024-03-141-0/+4
* gh-115419: Change default sym to not_null (GH-116562)Ken Jin2024-03-131-89/+92
* GH-116468: Use constants instead of `oparg` in stack effects when `oparg` is ...Mark Shannon2024-03-111-13/+15
* gh-116381: Remove bad specializations, add fail stats (GH-116464)Ken Jin2024-03-071-27/+0
* gh-116420: Fix unused var compilation warnings (GH-116466)Ken Jin2024-03-071-0/+12
* gh-116381: Specialize CONTAINS_OP (GH-116385)Ken Jin2024-03-061-0/+45
* GH-113710: Tier 2 optimizer: check the function instead of checking globals. ...Mark Shannon2024-03-061-5/+1
* GH-115687: Most comparisons create Booleans, so propagate that information (G...Mark Shannon2024-03-061-16/+39
* GH-115685: Split `_TO_BOOL_ALWAYS_TRUE` into micro-ops (GH-116352)Mark Shannon2024-03-051-1/+1
* GH-115819: Eliminate Boolean guards when value is known (GH-116355)Mark Shannon2024-03-051-0/+36
* GH-115685: Optimize `TO_BOOL` and variants based on truthiness of input. (GH-...Mark Shannon2024-03-051-27/+38
* gh-115480: Type propagate _BINARY_OP_ADD_UNICODE (GH-115710)Ken Jin2024-03-011-2/+17
* gh-115685: Type/values propagate for TO_BOOL in tier 2 (GH-115686)Ken Jin2024-02-291-10/+63
* gh-116088: Insert bottom checks after all sym_set_...() calls (#116089)Guido van Rossum2024-02-291-9/+27
* gh-115816: Generate calls to sym_new_const() etc. without _Py_uop prefix (#11...Guido van Rossum2024-02-291-98/+98
* gh-115859: Re-enable T2 optimizer pass by default (#116062)Guido van Rossum2024-02-281-9/+33
* GH-115816: Assorted naming and formatting changes to improve maintainability....Mark Shannon2024-02-271-269/+269
* GH-115816: Make tier2 optimizer symbols testable, and add a few tests. (GH-11...Mark Shannon2024-02-271-183/+183
* Rename tier 2 redundancy eliminator to optimizer (#115888)Guido van Rossum2024-02-261-0/+1802