summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-061-30/+11
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-031-0/+122
* bpo-45753: Interpreter internal tweaks (GH-29575)Mark Shannon2021-12-011-139/+194
* bpo-45711: Change exc_info related APIs to derive type and traceback from the...Irit Katriel2021-11-301-6/+3
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-291-7/+5
* bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...Irit Katriel2021-11-251-4/+14
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-231-46/+66
* bpo-45871: Refactor except matcher validation into a separate function so tha...Irit Katriel2021-11-221-23/+33
* bpo-45709: Fix tracing when exception is handled. (GH-29638)Mark Shannon2021-11-191-4/+1
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-191-5/+80
* bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...Mark Shannon2021-11-181-23/+38
* bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)Dong-hee Na2021-11-181-0/+35
* bpo-45636: Simplify BINARY_OP (GH-29565)Brandt Bucher2021-11-161-83/+34
* bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon2021-11-161-17/+24
* bpo-45636: Remove the old %-formatting fast-path (GH-29532)Brandt Bucher2021-11-151-8/+0
* bpo-45711: assert that the type of exc_info is redundant (GH-29518)Irit Katriel2021-11-121-0/+25
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-111-453/+151
* bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)Irit Katriel2021-11-101-4/+1
* bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon2021-10-281-57/+84
* bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)Ken Jin2021-10-281-0/+6
* bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon2021-10-281-23/+24
* Don't make a call at the C level when calling bound-methods from Python code....Mark Shannon2021-10-271-1/+14
* bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)Brandt Bucher2021-10-271-44/+24
* bpo-45527: Don't count cache hits, just misses. (GH-29092)Mark Shannon2021-10-201-46/+7
* bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon2021-10-201-3/+42
* bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin2021-10-191-0/+147
* Record cache hits for BINARY_SUBSCR specializations (GH-29060)Ken Jin2021-10-191-0/+3
* bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)Victor Stinner2021-10-181-7/+7
* bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)Mark Shannon2021-10-181-153/+97
* bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner2021-10-151-10/+7
* bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney2021-10-141-1/+61
* Ensure that instruction cases are self-contained (GH-28938)Brandt Bucher2021-10-131-6/+6
* bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)Pablo Galindo Salgado2021-10-131-10/+24
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-131-36/+36
* pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner2021-10-131-1/+1
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-121-2/+2
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-5/+5
* Restore PEP 523 functionality. (GH-28871)Mark Shannon2021-10-111-4/+2
* bpo-45256: Small cleanups for the code that inlines Python-to-Python calls in...Pablo Galindo Salgado2021-10-091-11/+22
* bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)Pablo Galindo Salgado2021-10-091-29/+120
* bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon2021-10-061-5/+6
* Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)Mark Shannon2021-10-061-12/+12
* bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch...Mark Shannon2021-10-051-213/+240
* Fix compiler warning in ceval.c regarding signed comparison (GH-28716)Pablo Galindo Salgado2021-10-041-1/+1
* bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...Serhiy Storchaka2021-10-031-9/+9
* Fix a couple of compiler warnings. (GH-28677)Mark Shannon2021-10-011-2/+2
* bpo-45107: Make LOAD_METHOD_CLASS safer and faster, clean up comments (GH-28177)Ken Jin2021-09-171-7/+2
* 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