8000 GH-135904: Optimize the JIT's assembly control flow by brandtbucher · Pull Request #135905 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-135904: Optimize the JIT's assembly control flow #135905

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 20 commits into from
Jun 27, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
formatting
  • Loading branch information
brandtbucher committed Jun 23, 2025
commit a987be7a4eceef97434556f6d5d49d875eeeff2a
2 changes: 0 additions & 2 deletions Tools/jit/_optimizers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import typing

_RE_NEVER_MATCH = re.compile(r"(?!)") # Same as saying "not string.startswith('')".

_X86_BRANCHES = {
"ja": "jna",
"jae": "jnae",
Expand Down Expand Up @@ -51,7 +50,6 @@ def resolve(self) -> typing.Self:

@dataclasses.dataclass
class Optimizer:

path: pathlib.Path
_: dataclasses.KW_ONLY
prefix: str = ""
Expand Down
0