summaryrefslogtreecommitdiff
path: root/gcc/c-parse.in
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-04-25 22:35:13 -0700
committerRichard Henderson <rth@gcc.gnu.org>2002-04-25 22:35:13 -0700
commit6052bef039abf0676722cd1df243c1cf5ab99431 (patch)
tree8cb83d3dda7305192e25c976afb951b1ed9e5357 /gcc/c-parse.in
parent5c5b22838958187f83bf60d0394cc06942796646 (diff)
downloadgcc-6052bef039abf0676722cd1df243c1cf5ab99431.tar.gz
c-parse.in (yyoverflow): New.
* c-parse.in (yyoverflow): New. * cp/parse.y (yyoverflow): New. * g++.dg/parse/stack1.C: New. * gcc.dg/20020425-1.c: New. From-SVN: r52779
Diffstat (limited to 'gcc/c-parse.in')
-rw-r--r--gcc/c-parse.in35
1 files changed, 35 insertions, 0 deletions
diff --git a/gcc/c-parse.in b/gcc/c-parse.in
index 5835fe14e13..f3a3da8f999 100644
--- a/gcc/c-parse.in
+++ b/gcc/c-parse.in
@@ -61,6 +61,41 @@ end ifobjc
/* Like YYERROR but do call yyerror. */
#define YYERROR1 { yyerror ("syntax error"); YYERROR; }
+
+/* Like the default stack expander, except (1) use realloc when possible,
+ and (2) impose no hard maxiumum on stack size. */
+#define yyoverflow(MSG, SS, SSSIZE, VS, VSSIZE, YYSSZ) \
+do { \
+ size_t newsize; \
+ short *newss; \
+ YYSTYPE *newvs; \
+ newsize = *(YYSSZ) *= 2; \
+ if (yyfree_stacks) \
+ { \
+ newss = (short *) \
+ really_call_realloc (*(SS), newsize * sizeof (short)); \
+ newvs = (YYSTYPE *) \
+ really_call_realloc (*(VS), newsize * sizeof (YYSTYPE)); \
+ } \
+ else \
+ { \
+ newss = (short *) really_call_malloc (newsize * sizeof (short)); \
+ if (newss) \
+ memcpy (newss, *(SS), (SSSIZE)); \
+ newvs = (YYSTYPE *) really_call_malloc (newsize * sizeof (YYSTYPE)); \
+ if (newvs) \
+ memcpy (newvs, *(VS), (VSSIZE)); \
+ } \
+ if (!newss || !newvs) \
+ { \
+ yyerror (MSG); \
+ return 2; \
+ } \
+ yyfree_stacks = 1; \
+ *(SS) = newss; \
+ *(VS) = newvs; \
+} while (0)
+
%}
%start program