René's URL Explorer Experiment


Title: Ensuring good specialization while making progress in jitted code · Issue #145047 · python/cpython · GitHub

Open Graph Title: Ensuring good specialization while making progress in jitted code · Issue #145047 · python/cpython

X Title: Ensuring good specialization while making progress in jitted code · Issue #145047 · python/cpython

Description: The problem For obvious reasons, it is necessary that jitted code makes progress: it can't spin in an infinite loop making no progress. To ensure this happens, we require that any executor attached to an ENTER_EXECUTOR instruction execut...

Open Graph Description: The problem For obvious reasons, it is necessary that jitted code makes progress: it can't spin in an infinite loop making no progress. To ensure this happens, we require that any executor attached...

X Description: The problem For obvious reasons, it is necessary that jitted code makes progress: it can't spin in an infinite loop making no progress. To ensure this happens, we require that any executor atta...

Opengraph URL: https://github.com/python/cpython/issues/145047

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Ensuring good specialization while making progress in jitted code","articleBody":"### The problem\n\nFor obvious reasons, it is necessary that jitted code makes progress: it can't spin in an infinite loop making no progress.\nTo ensure this happens, we require that any executor attached to an `ENTER_EXECUTOR` instruction executes at least one instruction (opcode, not uop) before returning to the interpeter.\nThis means that the first instruction in a trace cannot exit, which prevents specialization.\nWorse, some unspecialized instructions, notably `CALL` and `SEND` cannot be jitted at all, due to complex control flow.\n\n#### Dropping the requirement for progress\n\nWe could drop the requirement for progress in exceutors and have `ENTER_EXECUTOR` handle it: if it appears that an executor has no made progress when returning to `ENTER_EXECUTOR` then do not dispatch normally to the next `ENTER_EXECUTOR` but dispatch to the underlying executor. @brandtbucher likes this approach.\n\nThere are a few issue with this approach, however:\n* It makes attaching traces to side exits more complicated, as we need to check that we aren't attaching a no-progress trace to a no-progress exit\n* It may prevent, or at least complicate, tail-calling from jitted code into the interpreter in future, as we will need to communicate that progress has been made\n* It complicates `ENTER_EXECUTOR`\n\n### A solution\n\nInstead of worrying about what happens when a trace starts with an instruction that needs to be specialized, or cannot be jitted, we can make sure that that situation never happens or, at least, happens very rarely.\n\nThere are three possible ways to start tracing, plus a fourth that we may add in the future\n1. At a backwards jump\n2. (In the future) at the start of a function\n3. After a guard failure; a side exit.\n4. At the end of another executor\n\nCases 1 and 2 are trivial, as they start with a non-specializable instruction, so progress is guaranteed.\nIf an executor makes progress, then we don't to make progress on side traces, so case 3 is not a problem either.\nIt is only case 4 that is causing trouble.\n\nIf we can only end traces at locations that aren't problematic, then we are guaranteed progress.\n\nTraces can end if we either run out of resources (trace too long, or too deep) or we hit an instruction that we can't handle in the JIT.\nWe can deal with the too long case by backing up to a known good ending point.\nWe can't do anything about hitting an instruction that can't be jitted, but we can reduce the number of such instructions so that we can jit through them and not end on specializable instructions.\n\n#### Instructions that cannot be handled in the JIT\n\nMany of these are monitoring and other rare instructions that we don't much care about.\nHowever there are the specializable instructions (families) that we do care about.\nFrom (old) stats it appears that `CALL` and `SEND` form the bulk of the cases where we stop tracing on a specializable instruction.\n\n### Tasks\n\n* Complete specialization for `CALL`, including adding \"generic specializations\"\n* Complete specialization for `SEND`, including adding \"generic specializations\"\n* Track last known good exit point during tracing/optimization and truncate overly long traces to that point\n\n#### Specializations for `CALL`\n\n1. Make sure that if more specific specializations for Python functions fail, we still specialize to `CALL_PY_GENERAL`\n2. Add `CALL___CALL___PY` for `__call__` implemented in Python, and `CALL___CALL___C` for `__call__` implemented in C as  the \"generic specializations\". We should still guard on the type, even though they are \"generic\".\n\n#### Specializations for `SEND`\n\nThe `SEND` instruction is used in `yield from` and `await`. \nWe already specialize for generators and coroutines in `yield from` and `await` respectively, but\nsequences like `list` and `tuple` are also common in `yield from`.\nAsync generators are also common, but that might just be our benchmarks.\n\nIt might be worth investigating the possibility of merging `FOR_ITER` and `SEND` to take advantage of the \nexisting specializations for sequences.\n\nAs a first step, however, we should add a non-generator, non-coroutine, \"generic specialization\" so that the JIT\ncan handle it.\n","author":{"url":"https://github.com/markshannon","@type":"Person","name":"markshannon"},"datePublished":"2026-02-20T17:42:37.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/145047/cpython/issues/145047"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:217b800d-aec7-4bed-32cd-f04d49bf57c5
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA616:51AE:2B1BB2:3A15AB:6A52E8BC
html-safe-noncec9147f4d73ca08ed7dd0337b3409e98d6c947f70d4555166ae29f9a849105e9c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNjE2OjUxQUU6MkIxQkIyOjNBMTVBQjo2QTUyRThCQyIsInZpc2l0b3JfaWQiOiIxOTQxNzM1OTQ3Mjk4MzM0OTA4IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac60d9c96432825c0a5cfd4896d03c8b78d749ea5b3050ab1c1e98ee1dc746d0fc
hovercard-subject-tagissue:3969650309
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python/cpython/145047/issue_layout
twitter:imagehttps://opengraph.githubassets.com/906ce45d61054e12b01b56977810cab348281a1f8c9f12b9c869726da696d19b/python/cpython/issues/145047
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/906ce45d61054e12b01b56977810cab348281a1f8c9f12b9c869726da696d19b/python/cpython/issues/145047
og:image:altThe problem For obvious reasons, it is necessary that jitted code makes progress: it can't spin in an infinite loop making no progress. To ensure this happens, we require that any executor attached...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemarkshannon
hostnamegithub.com
expected-hostnamegithub.com
Noneb9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb
turbo-cache-controlno-preview
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release07a982c1d40157c619b364352b704c3ce66bb332
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/issues/145047#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F145047
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fissues%2F145047
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/issues/145047
Reloadhttps://github.com/python/cpython/issues/145047
Reloadhttps://github.com/python/cpython/issues/145047
Please reload this pagehttps://github.com/python/cpython/issues/145047
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/issues/145047
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.8k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.3k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality 0 https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Ensuring good specialization while making progress in jitted codehttps://github.com/python/cpython/issues/145047#top
3.15pre-release feature fixes, bugs and security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.15%22
interpreter-core(Objects, Python, Grammar, and Parser dirs)https://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22interpreter-core%22
topic-JIThttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-JIT%22
type-featureA feature request or enhancementhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-feature%22
https://github.com/markshannon
markshannonhttps://github.com/markshannon
on Feb 20, 2026https://github.com/python/cpython/issues/145047#issue-3969650309
@brandtbucherhttps://github.com/brandtbucher
3.15pre-release feature fixes, bugs and security fixeshttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%223.15%22
interpreter-core(Objects, Python, Grammar, and Parser dirs)https://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22interpreter-core%22
topic-JIThttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22topic-JIT%22
type-featureA feature request or enhancementhttps://github.com/python/cpython/issues?q=state%3Aopen%20label%3A%22type-feature%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.