| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Revert "gh-100288: Specialise LOAD_ATTR_METHOD for managed dictionaries ↵ | Ken Jin | 2022-12-23 | 1 | -10/+5 | |
| | | | | | | (GH-100289)" (#100468) This reverts commit c3c7848a48b74a321632202e4bdcf2f465fb1cc6. | |||||
| * | gh-100288: Specialise LOAD_ATTR_METHOD for managed dictionaries (GH-100289) | Ken Jin | 2022-12-23 | 1 | -5/+10 | |
| | | ||||||
| * | GH-100459: fix copy-paste errors in specialization stats (GH-100460) | Irit Katriel | 2022-12-23 | 1 | -5/+5 | |
| | | ||||||
| * | GH-99770: Make the correct call specialization fail kind show up in the ↵ | penguin_wwy | 2022-12-22 | 1 | -63/+84 | |
| | | | | | stats (GH-99771) | |||||
| * | gh-100188: Reduce misses in BINARY_SUBSCR_(LIST/TUPLE)_INT (#100189) | Dennis Sweeney | 2022-12-20 | 1 | -4/+12 | |
| | | | | Don't specialize if the index is negative. | |||||
| * | GH-90043: Handle NaNs in COMPARE_OP_FLOAT_JUMP (GH-100278) | Brandt Bucher | 2022-12-16 | 1 | -10/+11 | |
| | | ||||||
| * | Improve stats presentation for calls. (GH-100274) | Mark Shannon | 2022-12-16 | 1 | -37/+22 | |
| | | ||||||
| * | Better stats for `LOAD_ATTR` and `STORE_ATTR` (GH-100295) | Mark Shannon | 2022-12-16 | 1 | -12/+35 | |
| | | | | | | * Don't attempt to specialize for LOAD_ATTR on instance if class has attribute * Improvement to LOAD_ATTR and STORE_ATTR specialization stats. | |||||
| * | Move stats for the method cache into the `Py_STAT` machinery (GH-100255) | Mark Shannon | 2022-12-15 | 1 | -0/+5 | |
| | | ||||||
| * | GH-100222: fix typo _py_set_opocde -> _py_set_opcode (GH-100259) | Carl Meyer | 2022-12-15 | 1 | -65/+65 | |
| | | | | | | Typo introduced in #100223. Automerge-Triggered-By: GH:brandtbucher | |||||
| * | Assorted minor fixes for specialization stats. (GH-100219) | Mark Shannon | 2022-12-14 | 1 | -17/+34 | |
| | | ||||||
| * | GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code ↵ | Mark Shannon | 2022-12-14 | 1 | -71/+71 | |
| | | | | | unit. (GH-100223) | |||||
| * | GH-100143: Improve collecting pystats for parts of runs (GH-100144) | Michael Droettboom | 2022-12-12 | 1 | -5/+2 | |
| | | | | | | | | | * pystats off by default * Add -Xpystats flag * Always dump pystats, even if turned off | |||||
| * | GH-100110: Specialize FOR_ITER for tuples (GH-100109) | Ken Jin | 2022-12-09 | 1 | -0/+4 | |
| | | | | * Specialize FOR_ITER for tuples | |||||
| * | GH-99298: Clean up attribute specializations (GH-99398) | Brandt Bucher | 2022-11-17 | 1 | -34/+29 | |
| | | ||||||
| * | GH-98686: Get rid of BINARY_OP_GENERIC and COMPARE_OP_GENERIC (GH-99399) | Brandt Bucher | 2022-11-17 | 1 | -21/+1 | |
| | | ||||||
| * | GH-99257: Check the owner's type when specializing slots (GH-99258) | Brandt Bucher | 2022-11-10 | 1 | -0/+8 | |
| | | ||||||
| * | GH-98686: Get rid of "adaptive" and "quick" instructions (GH-99182) | Brandt Bucher | 2022-11-09 | 1 | -101/+56 | |
| | | ||||||
| * | GH-96793: Specialize FOR_ITER for generators. (GH-98772) | Mark Shannon | 2022-11-07 | 1 | -1/+6 | |
| | | ||||||
| * | GH-98686: Quicken everything (GH-98687) | Brandt Bucher | 2022-11-02 | 1 | -11/+2 | |
| | | ||||||
| * | GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801) | Mark Shannon | 2022-10-27 | 1 | -6/+2 | |
| | | | | | Change FOR_ITER to have the same stack effect regardless of whether it branches or not. Performance is unchanged as FOR_ITER (and specialized forms jump over the cleanup code). | |||||
| * | GH-91049: Introduce set vectorcall field API for PyFunctionObject (GH-92257) | adphrost | 2022-09-15 | 1 | -0/+5 | |
| | | | | | Co-authored-by: Andrew Frost <adfrost@fb.com> Co-authored-by: Itamar Ostricher <itamarost@gmail.com> | |||||
| * | GH-90230: Fix warnings and failures with --enable-pystats (GH-96622) | Brandt Bucher | 2022-09-09 | 1 | -0/+2 | |
| | | ||||||
| * | GH-93911: Fix `LOAD_ATTR_PROPERTY` caches (GH-96519) | Brandt Bucher | 2022-09-06 | 1 | -5/+5 | |
| | | ||||||
| * | gh-93554: Conditional jump opcodes only jump forward (GH-96318) | Irit Katriel | 2022-09-01 | 1 | -11/+4 | |
| | | ||||||
| * | Remove dead code in _PyDict_GetItemHint and rename to _PyDict_LookupIndex ↵ | Matthias Görgens | 2022-08-18 | 1 | -9/+6 | |
| | | | | | (GH-95948) | |||||
| * | GH-93911: Specialize `LOAD_ATTR` for custom `__getattribute__` (GH-93988) | Ken Jin | 2022-08-17 | 1 | -19/+103 | |
| | | ||||||
| * | GH-95245: Store object values and dict pointers in single tagged pointer. ↵ | Mark Shannon | 2022-08-01 | 1 | -6/+6 | |
| | | | | | (GH-95278) | |||||
| * | GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121) | Brandt Bucher | 2022-07-22 | 1 | -0/+3 | |
| | | ||||||
| * | GH-94822: Don't specialize when metaclasses are involved (GH-94892) | Brandt Bucher | 2022-07-18 | 1 | -6/+5 | |
| | | ||||||
| * | GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168) | Mark Shannon | 2022-06-27 | 1 | -1/+2 | |
| | | ||||||
| * | GH-93841: Allow stats to be turned on and off, cleared and dumped at ↵ | Mark Shannon | 2022-06-21 | 1 | -5/+19 | |
| | | | | | runtime. (GH-93843) | |||||
| * | GH-91432: Specialize FOR_ITER (GH-91713) | Dennis Sweeney | 2022-06-21 | 1 | -0/+31 | |
| | | | | | | * Adds FOR_ITER_LIST and FOR_ITER_RANGE specializations. * Adds _PyLong_AssignValue() internal function to avoid temporary boxing of ints. | |||||
| * | gh-94021: Address unreachable code warning in specialize code (GH-94022) | Christian Heimes | 2022-06-21 | 1 | -1/+2 | |
| | | ||||||
| * | gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912) | Ken Jin | 2022-06-17 | 1 | -6/+43 | |
| | | ||||||
| * | Fix BINARY_SUBSCR_GETITEM stats (GH-93903) | Ken Jin | 2022-06-16 | 1 | -1/+2 | |
| | | ||||||
| * | Rename 'LOAD_METHOD' specialization stat consts to 'ATTR'. (GH-93812) | Mark Shannon | 2022-06-14 | 1 | -17/+14 | |
| | | ||||||
| * | Remove LOAD_METHOD stats. (GH-93807) | Mark Shannon | 2022-06-14 | 1 | -1/+0 | |
| | | ||||||
| * | GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430) | Ken Jin | 2022-06-14 | 1 | -81/+55 | |
| | | ||||||
| * | Add more FOR_ITER specialization stats (GH-32151) | Dennis Sweeney | 2022-06-13 | 1 | -2/+26 | |
| | | ||||||
| * | Shrink the LOAD_METHOD cache by one codeunit. (#93537) | Mark Shannon | 2022-06-07 | 1 | -6/+3 | |
| | | ||||||
| * | GH-93354: Use exponential backoff to avoid excessive specialization ↵ | Mark Shannon | 2022-05-31 | 1 | -22/+21 | |
| | | | | | attempts. (GH-93355) | |||||
| * | GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` ↵ | Mark Shannon | 2022-05-27 | 1 | -1/+4 | |
| | | | | | (GH-93284) | |||||
| * | gh-92777: Add LOAD_METHOD_LAZY_DICT (GH-92778) | Ken Jin | 2022-05-25 | 1 | -6/+15 | |
| | | ||||||
| * | GH-90690: Remove `PRECALL` instruction (GH-92925) | Mark Shannon | 2022-05-19 | 1 | -78/+58 | |
| | | ||||||
| * | Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919) | Mark Shannon | 2022-05-18 | 1 | -0/+2 | |
| | | ||||||
| * | Improve object stats (#92845) | Mark Shannon | 2022-05-16 | 1 | -0/+2 | |
| | | | | | | * Add incref/decref stats * Show ratios for allocation in summary | |||||
| * | GH-92239: Make sure that PEP 523 is supported, even when specializing first. ↵ | Mark Shannon | 2022-05-04 | 1 | -0/+6 | |
| | | | | | (GH-92245) | |||||
| * | Add more stats for freelist use and allocations. (GH-92211) | Mark Shannon | 2022-05-03 | 1 | -0/+5 | |
| | | ||||||
| * | gh-91719: Add pycore_opcode.h internal header file (#91906) | Victor Stinner | 2022-04-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | Move the following API from Include/opcode.h (public C API) to a new Include/internal/pycore_opcode.h header file (internal C API): * EXTRA_CASES * _PyOpcode_Caches * _PyOpcode_Deopt * _PyOpcode_Jump * _PyOpcode_OpName * _PyOpcode_RelativeJump | |||||
