summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-45045: Optimize mapping patterns of structural pattern matching (GH-28043)Dong-hee Na2021-08-301-6/+17
* bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon2021-08-271-15/+114
* bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon2021-08-251-36/+40
* bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)Ken Jin2021-08-171-15/+127
* bpo-44900: Add five superinstructions. (GH-27741)Mark Shannon2021-08-161-9/+86
* bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)Irit Katriel2021-08-121-1/+1
* bpo-44878: Remove loop from interpreter. All dispatching is done by gotos. (G...Mark Shannon2021-08-121-14/+17
* bpo-44878: Remove the switch from the main interpreter loop when using comput...Mark Shannon2021-08-111-177/+206
* bpo-44878: _PyEval_EvalFrameDefault readability improvements (GH-27725)Mark Shannon2021-08-111-51/+49
* Add missing DISPATCH() (GH-27715)Mark Shannon2021-08-111-0/+2
* Fix stats for STORE_ATTR specialization. (GH-27708)Mark Shannon2021-08-101-0/+2
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-091-4/+121
* Add option to write specialization stats to files and script to summarize. (G...Mark Shannon2021-08-041-0/+2
* Minor fixes to specialization stats. (GH-27457)Mark Shannon2021-07-291-0/+3
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-208/+223
* bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216)Mark Shannon2021-07-191-1/+6
* Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...Pablo Galindo Salgado2021-07-161-6/+1
* bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)Mark Shannon2021-07-161-1/+6
* Remove sys._deactivate_opcache() now that is not needed (GH-27154)Pablo Galindo Salgado2021-07-151-13/+0
* bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)Irit Katriel2021-07-151-0/+116
* bpo-44570: Fix line tracing for forwards jumps to duplicated tails (GH-27068)Mark Shannon2021-07-081-4/+2
* bpo-44581: Don't execute quickened instructions if tracing is on (GH-27064)Mark Shannon2021-07-081-1/+9
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-071-3/+1
* bpo-12022: Change error type for bad objects in "with" and "async with" (GH-2...Serhiy Storchaka2021-06-291-18/+30
* bpo-44486: Make sure that modules always have a dictionary. (GH-26847)Mark Shannon2021-06-231-0/+1
* bpo-44472: Fix ltrace functionality when exceptions are raised (GH-26822)Pablo Galindo2021-06-211-0/+3
* bpo-44337: Improve LOAD_ATTR specialization (GH-26759)Mark Shannon2021-06-211-0/+2
* bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon2021-06-181-11/+12
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-151-20/+4
* Remove accidentally duplicated STAT_INC (GH-26718)Mark Shannon2021-06-141-1/+0
* bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638)Mark Shannon2021-06-141-231/+83
* bpo-44348: Move trace-info to thread-state (GH-26623)Mark Shannon2021-06-101-83/+63
* bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)Mark Shannon2021-06-101-184/+164
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-081-21/+28
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-081-28/+21
* bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...Eric Snow2021-06-071-21/+28
* bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)Eric Snow2021-06-071-46/+32
* bpo-44187: Quickening infrastructure (GH-26264)Mark Shannon2021-06-071-6/+22
* bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...Pablo Galindo2021-06-041-32/+46
* bpo-43693: Compute deref offsets in compiler (gh-25152)Mark Shannon2021-06-041-25/+13
* bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...Eric Snow2021-06-031-27/+25
* bpo-17792: more accurate error message for unbound variable access exceptions...Irit Katriel2021-06-021-3/+3
* bpo-43693: Clean up the PyCodeObject fields. (GH-26364)Eric Snow2021-05-261-9/+8
* bpo-44032: Move data stack to thread from FrameObject. (GH-26076)Mark Shannon2021-05-211-81/+114
* Remove unused function in ceval.c (GH-26246)Pablo Galindo2021-05-191-9/+0
* bpo-26110: Add ``CALL_METHOD_KW`` opcode to speedup method calls with keyword...Ken Jin2021-05-151-26/+42
* Remove PyTryblock struct (GH-26059)Mark Shannon2021-05-121-26/+17
* Prevent access outside buffer (GH-26012)Dennis Sweeney2021-05-101-3/+5
* bpo-40222: "Zero cost" exception handling (GH-25729)Mark Shannon2021-05-071-140/+231
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-021-0/+8