mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (GH-30177)" (GH-30363)
This reverts commit e9898bf153
temporarily as we want to confirm if this commit is the cause of a slowdown at startup time.
This commit is contained in:
parent
c960b191b8
commit
9d35dedc5e
5 changed files with 3197 additions and 4602 deletions
|
@ -37,8 +37,6 @@ EXTENSION_PREFIX = """\
|
|||
# define D(x)
|
||||
#endif
|
||||
|
||||
# define MAXSTACK 6000
|
||||
|
||||
"""
|
||||
|
||||
|
||||
|
@ -366,14 +364,10 @@ class CParserGenerator(ParserGenerator, GrammarVisitor):
|
|||
self.skip_actions = skip_actions
|
||||
|
||||
def add_level(self) -> None:
|
||||
self.print("if (p->level++ == MAXSTACK) {")
|
||||
with self.indent():
|
||||
self.print("p->error_indicator = 1;")
|
||||
self.print("PyErr_NoMemory();")
|
||||
self.print("}")
|
||||
self.print("D(p->level++);")
|
||||
|
||||
def remove_level(self) -> None:
|
||||
self.print("p->level--;")
|
||||
self.print("D(p->level--);")
|
||||
|
||||
def add_return(self, ret_val: str) -> None:
|
||||
self.remove_level()
|
||||
|
@ -550,10 +544,9 @@ class CParserGenerator(ParserGenerator, GrammarVisitor):
|
|||
self.print("p->in_raw_rule++;")
|
||||
self.print(f"void *_raw = {node.name}_raw(p);")
|
||||
self.print("p->in_raw_rule--;")
|
||||
self.print("if (p->error_indicator) {")
|
||||
self.print("if (p->error_indicator)")
|
||||
with self.indent():
|
||||
self.add_return("NULL")
|
||||
self.print("}")
|
||||
self.print("return NULL;")
|
||||
self.print("if (_raw == NULL || p->mark <= _resmark)")
|
||||
with self.indent():
|
||||
self.print("break;")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue