diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-16 05:53:24 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-16 05:53:24 +0000 |
commit | 672f38da96cd5a76fda656ba4948edb2ab74fae6 (patch) | |
tree | 9c92465466bc6540fc41e7c24db7796904c385b9 /gcc/cppmacro.c | |
parent | bfd811a412d037dc3a8eba3e74e6375e02d5e805 (diff) | |
download | ppe42-gcc-672f38da96cd5a76fda656ba4948edb2ab74fae6.tar.gz ppe42-gcc-672f38da96cd5a76fda656ba4948edb2ab74fae6.zip |
* cpphash.h (cpp_macro): Move here, and make expansion a union.
* cppmacro.c (cpp_macro): Remove.
(enter_macro_context, replace_args, warn_of_redefinition,
_cpp_create_definition, cpp_macro_definition): Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53509 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppmacro.c')
-rw-r--r-- | gcc/cppmacro.c | 42 |
1 files changed, 15 insertions, 27 deletions
diff --git a/gcc/cppmacro.c b/gcc/cppmacro.c index b9859954656..f9c935fd805 100644 --- a/gcc/cppmacro.c +++ b/gcc/cppmacro.c @@ -28,18 +28,6 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "cpplib.h" #include "cpphash.h" -struct cpp_macro -{ - cpp_hashnode **params; /* Parameters, if any. */ - cpp_token *expansion; /* First token of replacement list. */ - unsigned int line; /* Starting line number. */ - unsigned int count; /* Number of tokens in expansion. */ - unsigned short paramc; /* Number of parameters. */ - unsigned int fun_like : 1; /* If a function-like macro. */ - unsigned int variadic : 1; /* If a variadic macro. */ - unsigned int syshdr : 1; /* If macro defined in system header. */ -}; - typedef struct macro_arg macro_arg; struct macro_arg { @@ -695,7 +683,7 @@ enter_macro_context (pfile, node) node->flags |= NODE_DISABLED; if (macro->paramc == 0) - push_token_context (pfile, node, macro->expansion, macro->count); + push_token_context (pfile, node, macro->exp.tokens, macro->count); return 1; } @@ -726,9 +714,9 @@ replace_args (pfile, node, macro, args) statements below is subtle; we must handle stringification before pasting. */ total = macro->count; - limit = macro->expansion + macro->count; + limit = macro->exp.tokens + macro->count; - for (src = macro->expansion; src < limit; src++) + for (src = macro->exp.tokens; src < limit; src++) if (src->type == CPP_MACRO_ARG) { /* Leading and trailing padding tokens. */ @@ -744,7 +732,7 @@ replace_args (pfile, node, macro, args) arg->stringified = stringify_arg (pfile, arg); } else if ((src->flags & PASTE_LEFT) - || (src > macro->expansion && (src[-1].flags & PASTE_LEFT))) + || (src > macro->exp.tokens && (src[-1].flags & PASTE_LEFT))) total += arg->count - 1; else { @@ -760,7 +748,7 @@ replace_args (pfile, node, macro, args) first = (const cpp_token **) buff->base; dest = first; - for (src = macro->expansion; src < limit; src++) + for (src = macro->exp.tokens; src < limit; src++) { unsigned int count; const cpp_token **from, **paste_flag; @@ -777,7 +765,7 @@ replace_args (pfile, node, macro, args) count = 1, from = &arg->stringified; else if (src->flags & PASTE_LEFT) count = arg->count, from = arg->first; - else if (src != macro->expansion && (src[-1].flags & PASTE_LEFT)) + else if (src != macro->exp.tokens && (src[-1].flags & PASTE_LEFT)) { count = arg->count, from = arg->first; if (dest != first) @@ -805,7 +793,7 @@ replace_args (pfile, node, macro, args) /* Padding on the left of an argument (unless RHS of ##). */ if (!pfile->state.in_directive - && src != macro->expansion && !(src[-1].flags & PASTE_LEFT)) + && src != macro->exp.tokens && !(src[-1].flags & PASTE_LEFT)) *dest++ = padding_token (pfile, src); if (count) @@ -1149,7 +1137,7 @@ warn_of_redefinition (node, macro2) /* Check each token. */ for (i = 0; i < macro1->count; i++) - if (! _cpp_equiv_tokens (¯o1->expansion[i], ¯o2->expansion[i])) + if (! _cpp_equiv_tokens (¯o1->exp.tokens[i], ¯o2->exp.tokens[i])) return 1; /* Check parameter spellings. */ @@ -1410,22 +1398,22 @@ _cpp_create_definition (pfile, node) token = lex_expansion_token (pfile, macro); } - macro->expansion = (cpp_token *) BUFF_FRONT (pfile->a_buff); + macro->exp.tokens = (cpp_token *) BUFF_FRONT (pfile->a_buff); /* Don't count the CPP_EOF. */ macro->count--; /* Clear whitespace on first token for warn_of_redefinition(). */ if (macro->count) - macro->expansion[0].flags &= ~PREV_WHITE; + macro->exp.tokens[0].flags &= ~PREV_WHITE; /* Commit the memory. */ - BUFF_FRONT (pfile->a_buff) = (uchar *) ¯o->expansion[macro->count]; + BUFF_FRONT (pfile->a_buff) = (uchar *) ¯o->exp.tokens[macro->count]; /* Implement the macro-defined-to-itself optimisation. */ if (macro->count == 1 && !macro->fun_like - && macro->expansion[0].type == CPP_NAME - && macro->expansion[0].val.node == node) + && macro->exp.tokens[0].type == CPP_NAME + && macro->exp.tokens[0].val.node == node) node->flags |= NODE_DISABLED; /* To suppress some diagnostics. */ @@ -1545,7 +1533,7 @@ cpp_macro_definition (pfile, node) for (i = 0; i < macro->count; i++) { - cpp_token *token = ¯o->expansion[i]; + cpp_token *token = ¯o->exp.tokens[i]; if (token->type == CPP_MACRO_ARG) len += NODE_LEN (macro->params[token->val.arg_no - 1]); @@ -1602,7 +1590,7 @@ cpp_macro_definition (pfile, node) { for (i = 0; i < macro->count; i++) { - cpp_token *token = ¯o->expansion[i]; + cpp_token *token = ¯o->exp.tokens[i]; if (token->flags & PREV_WHITE) *buffer++ = ' '; |