FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
History for Python/optimizer.c - Ginkss/cpython · GitHub
Ginkss
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Commits
Breadcrumbs
History for
cpython
Python
optimizer.c
on
threading.Timer-context-manager
User selector
Datepicker
Commit history
Commits on Oct 2, 2024
GH-118093: Don't lose confidence when tracing through 100% biased branches (GH-124813)
brandtbucher
authored
6810928
View commit details
Copy full SHA for 6810928
View code at this point
Browse repository at this point
Commits on Sep 27, 2024
GH-123516: Improve JIT memory consumption by invalidating cold executors (GH-124443)
Show description for 65f1237
savannahostrowski
and
picnixz
authored
65f1237
View commit details
Copy full SHA for 65f1237
View code at this point
Browse repository at this point
Commits on Sep 24, 2024
gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)
Show description for f4997bb
colesbury
authored
f4997bb
View commit details
Copy full SHA for f4997bb
View code at this point
Browse repository at this point
Commits on Aug 16, 2024
GH-118093: Specialize `CALL_KW` (GH-123006)
markshannon
authored
c13e7d9
View commit details
Copy full SHA for c13e7d9
View code at this point
Browse repository at this point
Commits on Aug 13, 2024
GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)
markshannon
authored
7a65439
View commit details
Copy full SHA for 7a65439
View code at this point
Browse repository at this point
Commits on Aug 12, 2024
GH-118093: Handle some polymorphism before requiring progress in tier two (GH-122843)
brandtbucher
authored
9621a7d
View commit details
Copy full SHA for 9621a7d
View code at this point
Browse repository at this point
Commits on Aug 1, 2024
GH-118095: Add tier two support for BINARY_SUBSCR_GETITEM (GH-120793)
markshannon
authored
df13a18
View commit details
Copy full SHA for df13a18
View code at this point
Browse repository at this point
Replace PyObject_Del with PyObject_Free (#122453)
Show description for fda6bd8
vstinner
authored
fda6bd8
View commit details
Copy full SHA for fda6bd8
View code at this point
Browse repository at this point
Commits on Jul 29, 2024
GH-118093: Improve handling of short and mid-loop traces (GH-122252)
brandtbucher
authored
7797182
View commit details
Copy full SHA for 7797182
View code at this point
Browse repository at this point
Commits on Jul 26, 2024
GH-122294: Burn in the addresses of side exits (GH-122295)
brandtbucher
authored
64857d8
View commit details
Copy full SHA for 64857d8
View code at this point
Browse repository at this point
Commits on Jul 25, 2024
GH-118093: Add tier two support for BINARY_OP_INPLACE_ADD_UNICODE (GH-122253)
brandtbucher
authored
d9efa45
View commit details
Copy full SHA for d9efa45
View code at this point
Browse repository at this point
GH-118093: Add tier two support for LOAD_ATTR_PROPERTY (GH-122283)
brandtbucher
authored
5f60011
View commit details
Copy full SHA for 5f60011
View code at this point
Browse repository at this point
Commits on Jul 24, 2024
GH-118093: Remove invalidated executors from side exits (GH-121885)
brandtbucher
authored
794546f
View commit details
Copy full SHA for 794546f
View code at this point
Browse repository at this point
Commits on Jul 18, 2024
GH-118093: Add tier two support to several instructions (GH-121884)
brandtbucher
authored
7b36b67
View commit details
Copy full SHA for 7b36b67
View code at this point
Browse repository at this point
Commits on Jul 1, 2024
GH-116017: Get rid of _COLD_EXITs (GH-120960)
brandtbucher
authored
33903c5
View commit details
Copy full SHA for 33903c5
View code at this point
Browse repository at this point
Commits on Jun 26, 2024
gh-117139: Convert the evaluation stack to stack refs (#118450)
Show description for 22b0de2
Fidget-Spinner
and
markshannon
authored
22b0de2
View commit details
Copy full SHA for 22b0de2
View code at this point
Browse repository at this point
gh-120642: Move private PyCode APIs to the internal C API (#120643)
Show description for 9e4a81f
vstinner
authored
9e4a81f
View commit details
Copy full SHA for 9e4a81f
View code at this point
Browse repository at this point
Commits on Jun 24, 2024
GH-117062: Make _JUMP_TO_TOP a general absolute jump (GH-120854)
brandtbucher
authored
a47abdb
View commit details
Copy full SHA for a47abdb
View code at this point
Browse repository at this point
Commits on Jun 17, 2024
GH-120619: Clean up `RETURN_VALUE` instruction (GH-120624)
Show description for 274f844
markshannon
authored
274f844
View commit details
Copy full SHA for 274f844
View code at this point
Browse repository at this point
Commits on Jun 4, 2024
Fix typos in documentation and comments (#119763)
xyb
authored
9e05261
View commit details
Copy full SHA for 9e05261
View code at this point
Browse repository at this point
Commits on May 21, 2024
gh-111389: Add PyHASH_MULTIPLIER constant (#119214)
vstinner
authored
f6da790
View commit details
Copy full SHA for f6da790
View code at this point
Browse repository at this point
Commits on May 10, 2024
gh-118771: Ensure names defined in optimizer.h start with Py/_Py (GH-118825)
encukou
authored
941eea0
View commit details
Copy full SHA for 941eea0
View code at this point
Browse repository at this point
Commits on May 4, 2024
GH-118095: Use broader specializations of CALL in tier 1, for better tier 2 support of calls. (GH-118322)
Show description for 1ab6356
markshannon
authored
1ab6356
View commit details
Copy full SHA for 1ab6356
View code at this point
Browse repository at this point
GH-113464: Remove the extra jump via `_SIDE_EXIT` in `_EXIT_TRACE` (GH-118545)
markshannon
authored
da2cfc4
View commit details
Copy full SHA for da2cfc4
View code at this point
Browse repository at this point
Commits on May 2, 2024
GH-118095: Unify the behavior of tier 2 FOR_ITER branch micro-ops (GH-118420)
Show description for 72867c9
markshannon
authored
72867c9
View commit details
Copy full SHA for 72867c9
View code at this point
Browse repository at this point
GH-117442: Check eval-breaker at start (rather than end) of tier 2 loops (GH-118482)
markshannon
authored
67bba9d
View commit details
Copy full SHA for 67bba9d
View code at this point
Browse repository at this point
Commits on May 1, 2024
GH-115802: Use the GHC calling convention in JIT code (GH-118287)
brandtbucher
authored
49baa65
View commit details
Copy full SHA for 49baa65
View code at this point
Browse repository at this point
gh-117958: Expose JIT code via method in UOpExecutor (#117959)
tonybaloney
authored
beb653c
View commit details
Copy full SHA for beb653c
View code at this point
Browse repository at this point
GH-118095: Make invalidating and clearing executors memory safe (GH-118459)
markshannon
authored
f6fab21
View commit details
Copy full SHA for f6fab21
View code at this point
Browse repository at this point
gh-118335: Configure Tier 2 interpreter at build time (#118339)
Show description for 7d83f7b
gvanrossum
authored
7d83f7b
View commit details
Copy full SHA for 7d83f7b
View code at this point
Browse repository at this point
Commits on Apr 30, 2024
GH-118095: Add tier 2 support for YIELD_VALUE (GH-118380)
markshannon
authored
5b05d45
View commit details
Copy full SHA for 5b05d45
View code at this point
Browse repository at this point
Commits on Apr 29, 2024
GH-118095: Allow a variant of RESUME_CHECK in tier 2 (GH-118286)
markshannon
authored
ab6eda0
View commit details
Copy full SHA for ab6eda0
View code at this point
Browse repository at this point
Commits on Apr 26, 2024
GH-118095: Add dynamic exit support and FOR_ITER_GEN support to tier 2 (GH-118279)
markshannon
authored
3e06c7f
View commit details
Copy full SHA for 3e06c7f
View code at this point
Browse repository at this point
Commits on Apr 25, 2024
GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)
markshannon
authored
f180b31
View commit details
Copy full SHA for f180b31
View code at this point
Browse repository at this point
Commits on Apr 24, 2024
GH-115419: Move setting the instruction pointer to error exit stubs (GH-118088)
markshannon
authored
83235f7
View commit details
Copy full SHA for 83235f7
View code at this point
Browse repository at this point
Previous
Next
Back
|
FazBrowse Home
|
New Git URL