summaryrefslogtreecommitdiffstats
path: root/Python/ceval_macros.h
Commit message (Expand)AuthorAgeFilesLines
* gh-107674: Improve performance of `sys.settrace` (GH-117133)Tian Gao2024-05-031-6/+10
* gh-117657: Fix small issues with instrumentation and TSAN (#118064)Dino Viehland2024-04-301-1/+1
* GH-118095: Add dynamic exit support and FOR_ITER_GEN support to tier 2 (GH-11...Mark Shannon2024-04-261-0/+1
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-0/+12
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-041-16/+15
* GH-117121: Add pystats to JIT builds (GH-117346)Michael Droettboom2024-03-281-0/+2
* GH-116422: Tier2 hot/cold splitting (GH-116813)Mark Shannon2024-03-261-0/+6
* gh-116098: Revert "gh-107674: Improve performance of `sys.settrace` (GH-11498...Tian Gao2024-03-011-10/+6
* gh-115999: Disable the specializing adaptive interpreter in free-threaded bui...Brett Simmers2024-03-011-0/+8
* GH-115802: JIT "small" code for Windows (GH-115964)Brandt Bucher2024-02-291-7/+0
* gh-107674: Improve performance of `sys.settrace` (GH-114986)Tian Gao2024-02-281-6/+10
* gh-115778: Add `tierN` annotation for instruction definitions (#115815)Kirill Podoprigora2024-02-231-6/+0
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-201-1/+1
* GH-112354: Initial implementation of warm up on exits and trace-stitching (GH...Mark Shannon2024-02-201-1/+30
* gh-115103: Implement delayed memory reclamation (QSBR) (#115180)Sam Gross2024-02-161-0/+7
* Delete unused macro (GH-114238)Mark Shannon2024-01-181-3/+0
* GH-112354: Treat _EXIT_TRACE like an unconditional side exit (GH-113104)Mark Shannon2023-12-141-2/+0
* gh-113010: Don't decrement deferred in pystats (#113032)Michael Droettboom2023-12-121-4/+0
* A smattering of cleanups in uop debug output and lltrace (#112980)Guido van Rossum2023-12-121-1/+1
* gh-112287: Speed up Tier 2 (uop) interpreter a little (#112286)Guido van Rossum2023-11-201-0/+4
* gh-111520: Integrate the Tier 2 interpreter in the Tier 1 interpreter (#111428)Guido van Rossum2023-11-011-23/+13
* GH-111485: Increment `next_instr` consistently at the start of the instructio...Mark Shannon2023-10-311-8/+4
* gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)Irit Katriel2023-10-261-7/+9
* GH-109214: Convert _SAVE_CURRENT_IP to _SET_IP in tier 2 trace creation. (GH-...Mark Shannon2023-10-121-0/+3
* GH-109369: Merge all eval-breaker flags and monitoring version into one word....Mark Shannon2023-10-041-1/+1
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-5/+0
* GH-108614: Add `RESUME_CHECK` instruction (GH-108630)Mark Shannon2023-09-071-0/+2
* gh-108753: Enhance pystats (#108754)Victor Stinner2023-09-061-1/+1
* GH-108614: Remove non-debug uses of `#if TIER_ONE` and `#if TIER_TWO` from `_...Mark Shannon2023-08-311-0/+36
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-171-0/+4
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-171-1/+1
* gh-106581: Split `CALL_PY_EXACT_ARGS` into uops (#107760)Guido van Rossum2023-08-161-0/+5
* GH-106701: Move _PyUopExecute to Python/executor.c (GH-106924)Brandt Bucher2023-07-201-1/+13
* gh-105481: Generate the opcode lists in dis from data extracted from bytecode...Irit Katriel2023-07-181-0/+1
* gh-106581: Add 10 new opcodes by allowing `assert(kwnames == NULL)` (#106707)Guido van Rossum2023-07-171-0/+2
* GH-104584: Fix ENTER_EXECUTOR (GH-106141)Mark Shannon2023-07-031-1/+3
* gh-104584: Change DEOPT_IF in uops executor (#106146)Guido van Rossum2023-06-271-2/+1
* gh-104584: Fix assert in DEOPT macro -- should fix buildbot (#106131)Guido van Rossum2023-06-271-1/+2
* gh-104584: Baby steps towards generating and executing traces (#105924)Guido van Rossum2023-06-271-1/+9
* gh-105481: add HAS_JUMP flag to opcode metadata (#105791)Irit Katriel2023-06-141-0/+6
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-141-5/+7
* gh-105481: add flags to each instr in the opcode metadata table, to replace o...Irit Katriel2023-06-131-0/+5
* GH-104610: Remove the use of `PREDICT` macros. (GH-104651)Mark Shannon2023-06-071-15/+0
* GH-104584: Plugin optimizer API (GH-105100)Mark Shannon2023-06-021-1/+0
* GH-104580: Don't cache eval breaker in interpreter (GH-104581)Mark Shannon2023-05-181-1/+1
* GH-104405: Add missing PEP 523 checks (GH-104406)Brandt Bucher2023-05-121-0/+1
* GH-103082: Filter LINE events in VM, to simplify tool implementation. (GH-104...Mark Shannon2023-05-121-3/+2
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-45/+16
* gh-101975: Fixed a potential SegFault on garbage collection (GH-102803)gaogaotiantian2023-03-181-0/+1
* GH-102300: Reuse objects with refcount == 1 in float specialized binary ops. ...Mark Shannon2023-03-131-0/+20