Skip to content
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

[WIP] bpo-35859: Solution B #12289

Closed
wants to merge 15 commits into from
Closed

[WIP] bpo-35859: Solution B #12289

wants to merge 15 commits into from

Conversation

ghost
Copy link

@ghost ghost commented Mar 12, 2019

animalize added 7 commits March 12, 2019 23:09
other JUMPs use this code:
ctx->in_repeat = (state->repeat != NULL)
if (ctx->in_repeat)

here use:
if (state->repeat)

this is OK, because JUMP_ASSERT_NOT can't cross a repeat body.
reduce the size of match_context struct:
On 32 bit platform, 36 bytes -> 32 bytes.
On 64 bit platform, 72 bytes -> 64 bytes.

adjust the order of fields, make it cache friendly.
1,073,741,823 groups should enough for most users.

the size of match_context struct:
On 32 bit platform: 32 bytes, no change.
On 64 bit platform: 64 bytes -> 56 bytes.
* remove SRE_ERROR_RECURSION_LIMIT, this code has not been used for a long time.
* return SRE_ERROR_MEMORY when allocate fail, rather than set a MemoryError and return a match failure.
could not find a test-case to prove that this is necessary.
@ghost
Copy link
Author

ghost commented Mar 19, 2019

See PR 12427

@ghost ghost closed this Mar 19, 2019
@ghost ghost deleted the Solution_B branch March 29, 2022 15:18
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants