diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-04 12:02:02 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-04 12:02:02 +0000 |
commit | 4b0c16ee1c6fd58b8c303521b7b867ca61961ad1 (patch) | |
tree | d7897ebb45f49ac182f124043b11088aa89ca781 /gcc/cpplex.c | |
parent | d048ef60051cdd4bc5b206742a76174d220f7805 (diff) | |
download | gcc-4b0c16ee1c6fd58b8c303521b7b867ca61961ad1.tar.gz |
* cppfiles.c (_cpp_execute_include): Don't make a null-terminated
copy of the filename. Don't use CPP_PREV_BUFFER. Don't call
strlen or strcpy; we already know the length.
(_cpp_compare_file_date): Similarly.
* cpphash.h (struct cpp_reader): Delete done_initialising.
(CPP_PREV_BUFFER): Delete.
* cppinit.c (cpp_start_read): Don't set done_initialising.
* cpplex.c (parse_string): Guarantee null-termination.
(_cpp_equiv_toklists): Remove.
* cpplib.c (glue_header_name): Null-terminate.
(do_line): Don't leak memory.
* cpplib.h (BT_WEAK): Delete.
* cppmain.c (cb_ident): Strings are now null-terminated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40233 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 58 |
1 files changed, 19 insertions, 39 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c index bd963038613..37a0c61e3a3 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -629,10 +629,11 @@ unescaped_terminator_p (pfile, dest) } /* Parses a string, character constant, or angle-bracketed header file - name. Handles embedded trigraphs and escaped newlines. + name. Handles embedded trigraphs and escaped newlines. The stored + string is guaranteed NUL-terminated, but it is not guaranteed that + this is the first NUL since embedded NULs are preserved. - Multi-line strings are allowed, but they are deprecated within - directives. */ + Multi-line strings are allowed, but they are deprecated. */ static void parse_string (pfile, token, terminator) cpp_reader *pfile; @@ -651,14 +652,21 @@ parse_string (pfile, token, terminator) for (;;) { if (buffer->cur == buffer->rlimit) + c = EOF; + else + c = *buffer->cur++; + + have_char: + /* We need space for the terminating NUL. */ + if (dest >= limit) + limit = _cpp_next_chunk (pool, 0, &dest); + + if (c == EOF) { - c = EOF; unterminated (pfile, terminator); break; } - c = *buffer->cur++; - have_char: /* Handle trigraphs, escaped newlines etc. */ if (c == '?' || c == '\\') c = skip_escaped_newlines (buffer, c); @@ -690,8 +698,9 @@ parse_string (pfile, token, terminator) if (pfile->mlstring_pos.line == 0) pfile->mlstring_pos = pfile->lexer_pos; - handle_newline (buffer, c); /* Stores to read_ahead. */ - c = '\n'; + c = handle_newline (buffer, c); + *dest++ = '\n'; + goto have_char; } else if (c == '\0') { @@ -699,25 +708,16 @@ parse_string (pfile, token, terminator) cpp_warning (pfile, "null character(s) preserved in literal"); } - /* No terminating null for strings - they could contain nulls. */ - if (dest >= limit) - limit = _cpp_next_chunk (pool, 0, &dest); *dest++ = c; - - /* If we had a new line, the next character is in read_ahead. */ - if (c != '\n') - continue; - c = buffer->read_ahead; - if (c != EOF) - goto have_char; } /* Remember the next character. */ buffer->read_ahead = c; + *dest = '\0'; token->val.str.text = POOL_FRONT (pool); token->val.str.len = dest - token->val.str.text; - POOL_COMMIT (pool, token->val.str.len); + POOL_COMMIT (pool, token->val.str.len + 1); } /* The stored comment includes the comment start and any terminator. */ @@ -1481,26 +1481,6 @@ _cpp_equiv_tokens (a, b) return 0; } -#if 0 -/* Compare two token lists. */ -int -_cpp_equiv_toklists (a, b) - const struct toklist *a, *b; -{ - unsigned int i, count; - - count = a->limit - a->first; - if (count != (b->limit - b->first)) - return 0; - - for (i = 0; i < count; i++) - if (! _cpp_equiv_tokens (&a->first[i], &b->first[i])) - return 0; - - return 1; -} -#endif - /* Determine whether two tokens can be pasted together, and if so, what the resulting token is. Returns CPP_EOF if the tokens cannot be pasted, or the appropriate type for the merged token if they |