Skip to content

[WIP] bpo-35859: Solution A#12288

Closed
ghost wants to merge 14 commits into
masterfrom
unknown repository
Closed

[WIP] bpo-35859: Solution A#12288
ghost wants to merge 14 commits into
masterfrom
unknown repository

Conversation

@ghost
Copy link
Copy Markdown

@ghost ghost commented Mar 12, 2019

wjssz added 6 commits March 12, 2019 23:11
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.
@ghost
Copy link
Copy Markdown
Author

ghost commented Mar 19, 2019

See PR 12427

@ghost ghost closed this Mar 19, 2019
@ghost ghost deleted the minimal_change branch April 4, 2022 06:52
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.

3 participants