diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2000-07-04 01:58:21 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-07-04 01:58:21 +0000 |
commit | 041c31944c94d5ee089bd569c4361fbc3d2acaea (patch) | |
tree | 1c91fa44eb386dd706e44d139ed980ea94f05cae /gcc/cppfiles.c | |
parent | 4f647814cefff8ee95ac918a8484d5da8c415825 (diff) | |
download | gcc-041c31944c94d5ee089bd569c4361fbc3d2acaea.zip gcc-041c31944c94d5ee089bd569c4361fbc3d2acaea.tar.gz gcc-041c31944c94d5ee089bd569c4361fbc3d2acaea.tar.bz2 |
top level:
2000-07-03 Zack Weinberg <zack@wolery.cumb.org>
* fix-header.c (struct partial_proto): Remove unnecessary fields.
(recognized_extern, recognized_function, read_scan_file):
Update for new scheme.
(check_protection): It's still a multiple include guard even
if it doesn't always trigger.
* scan-decls.c (skip_to_closing_brace, scan_decls): Update for
new scheme.
* scan.h: Declare struct cpp_token. Update prototypes.
2000-07-03 Neil Booth <neilb@earthling.net>
Zack Weinberg <zack@wolery.cumb.org>
Complete overhaul of the lexer and macro expander.
* cpphash.c (object_defn, funct_defn, push_macro_expansion,
arg, arglist, argdata, reflist, collect_objlike_expansion,
collect_funlike_expansion, collect_params,
warn_trad_stringify, trad_stringify, duplicate_arg_p, add_pat,
unsafe_chars, macarg, compare_defs, special_symbol,
scan_arguments, stringify, funlike_macroexpand,
_cpp_quote_string, monthnames): Delete.
(cpp_lookup, _cpp_free_definition, dump_funlike_macro,
_cpp_create_definition, _cpp_dump_definition,
dump_hash_helper): Adjust.
(find_param, count_params, parse_define, var_args_str,
check_macro_redefinition, save_expansion): New.
* cpplex.c (skip_block_comment, skip_line_comment, parse_name,
parse_string, output_line_command, trigraph_replace,
lex_line, cpp_push_buffer, cpp_pop_buffer, cpp_output_tokens,
cpp_scan_buffer_nooutput, cpp_scan_buffer, cpp_free_toklist,
cpp_idcmp, _cpp_get_directive_token, _cpp_init_input_buffer,
_cpp_skip_rest_of_line): Modify.
(maybe_macroexpand, skip_comment, copy_comment, skip_string,
find_position, null_warning, bump_column, expand_name_space,
pedantic_whitespace, _cpp_output_list, _cpp_slice_toklist,
_cpp_squeeze_toklist, _cpp_scan_until, _cpp_skip_hspace,
_cpp_parse_name, _cpp_lex_token, cpp_get_non_space_token,
_cpp_prescan): Delete.
(dump_param_spelling, process_directive, lex_next,
is_macro_disabled, stringify_arg, expand_context_stack,
output_token, make_string_token, alloc_number_token,
special_symbol, duplicate_token, maybe_paste_with_next,
can_paste, prevent_macro_expansion, restore_macro_expansion,
get_temp_token, release_temp_tokens, quote_string,
token_names, token_spellings, _cpp_expand_name_space,
_cpp_glue_header_name, _cpp_reserve_name_space,
digraph_spellings, trigraph_ok, skip_whitespace, save_comment,
placemarker_token, eof_token, cpp_context, macro_args,
get_raw_token, parse_arg, parse_args, save_token,
push_arg_context, push_macro_context, pop_context,
do_pop_context, free_macro_args, _cpp_get_line,
_cpp_run_directive): New.
* cpplib.c (validate_else, parse_include, push_conditional,
pass_thru_directive, read_line_number, parse_ifdef,
detect_if_not_defined, _cpp_check_directive, do_define,
do_undef, do_include, do_import, do_include_next, do_error,
do_warning, do_ident, do_pragma, pragma_dispatch, gcc_pragmas,
top_pragmas, do_pragma_gcc, do_pragma_implementation,
do_pragma_poison, do_pragma_system_header,
do_pragma_dependency, do_sccs, do_ifdef, do_ifndef, do_else,
dl_elif, do_endif, _cpp_unwind_if_stack, do_assert,
do_unassert, cpp_define, cpp_undef, cpp_assert, cpp_unassert,
cpp_defined): Update for new scheme.
(strtoul_for_line, get_define_node, dump_macro_name,
_cpp_check_linemarker, _cpp_parse_assertion): New.
(_cpp_handle_directive, do_pragma_default): Delete.
* cpphash.h (struct predicate): Now struct answer.
(enum spell_type, struct token_spelling, struct directive,
directive_handler): New.
Update prototypes. Remove unused macros.
* cpplib.h: Update prototypes. Remove unused macros,
structure definitions, and fields.
* cpperror.c (print_containing_files, v_message): Adjust.
* cppexp.c (parse_assertion, lex, parse_escape,
_cpp_parse_expr): Adjust.
* cppfiles.c (open_include_file, _cpp_execute_include,
_cpp_compare_file_date, cpp_read_file, read_include_file):
Adjust.
* cppinit.c (dump_special_to_buffer): Delete.
(append_include_chain, merge_include_chains, cpp_reader_init,
cpp_cleanup, initialize_builtins, builtin_array, cpp_start_read,
cpp_finish, handle_option, print_help): Adjust.
* cppmain.c (main): Adjust.
testsuite:
2000-07-03 Zack Weinberg <zack@wolery.cumb.org>
* testsuite/gcc.dg/cpp/19951025-1.c: Adjust regexps.
* testsuite/gcc.dg/cpp/19990703-1.c: Likewise.
* testsuite/gcc.dg/cpp/20000625-1.c: Likewise.
* testsuite/gcc.dg/cpp/20000625-2.c: Likewise.
* testsuite/gcc.dg/cpp/macro1.c,
testsuite/gcc.dg/cpp/paste1.c, testsuite/gcc.dg/cpp/paste2.c,
testsuite/gcc.dg/cpp/paste3.c, testsuite/gcc.dg/cpp/paste4.c,
testsuite/gcc.dg/cpp/strify1.c,
testsuite/gcc.dg/cpp/strify2.c: New tests.
From-SVN: r34859
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 68 |
1 files changed, 35 insertions, 33 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index 4def8ed..66fb7bc 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -180,7 +180,7 @@ open_include_file (pfile, filename) #ifdef EACCES if (errno == EACCES) { - cpp_error (pfile, "included file `%s' exists but is not readable", + cpp_error (pfile, "included file \"%s\" exists but is not readable", filename); } #endif @@ -360,16 +360,16 @@ cpp_make_system_header (pfile, pbuf, flag) #define PRINT_THIS_DEP(p, b) (CPP_PRINT_DEPS(p) > (b||p->system_include_depth)) void -_cpp_execute_include (pfile, f, len, no_reinclude, search_start) +_cpp_execute_include (pfile, f, len, no_reinclude, search_start, angle_brackets) cpp_reader *pfile; - U_CHAR *f; + const U_CHAR *f; unsigned int len; int no_reinclude; struct file_name_list *search_start; + int angle_brackets; { struct include_file *inc; - char *fname = (char *)f; - int angle_brackets = fname[0] == '<'; + char *fname; if (!search_start) { @@ -387,9 +387,8 @@ _cpp_execute_include (pfile, f, len, no_reinclude, search_start) return; } - /* Remove quote marks. */ - fname++; - len -= 2; + fname = alloca (len + 1); + memcpy (fname, f, len); fname[len] = '\0'; inc = find_include_file (pfile, fname, search_start); @@ -470,32 +469,27 @@ _cpp_execute_include (pfile, f, len, no_reinclude, search_start) if F cannot be located or dated, 1, if it is newer and 0 if older. */ int -_cpp_compare_file_date (pfile, f, len, search_start) +_cpp_compare_file_date (pfile, f, len, angle_brackets) cpp_reader *pfile; - U_CHAR *f; + const U_CHAR *f; unsigned int len; - struct file_name_list *search_start; + int angle_brackets; { - char *fname = (char *)f; - int angle_brackets = fname[0] == '<'; + char *fname; + struct file_name_list *search_start; struct include_file *inc; - struct include_file *current_include = cpp_file_buffer (pfile)->inc; + struct include_file *current_include = CPP_BUFFER (pfile)->inc; - if (!search_start) - { - if (angle_brackets) - search_start = CPP_OPTION (pfile, bracket_include); - else if (CPP_OPTION (pfile, ignore_srcdir)) - search_start = CPP_OPTION (pfile, quote_include); - else - search_start = CPP_BUFFER (pfile)->actual_dir; - } + if (angle_brackets) + search_start = CPP_OPTION (pfile, bracket_include); + else if (CPP_OPTION (pfile, ignore_srcdir)) + search_start = CPP_OPTION (pfile, quote_include); + else + search_start = CPP_BUFFER (pfile)->actual_dir; - /* Remove quote marks. */ - fname++; - len -= 2; + fname = alloca (len + 1); + memcpy (fname, f, len); fname[len] = '\0'; - inc = find_include_file (pfile, fname, search_start); if (!inc) @@ -534,6 +528,12 @@ cpp_read_file (pfile, fname) f = open_include_file (pfile, fname); + if (f == NULL) + { + cpp_error_from_errno (pfile, fname); + return 0; + } + return read_include_file (pfile, f); } @@ -550,12 +550,17 @@ read_include_file (pfile, inc) cpp_buffer *fp; int fd = inc->fd; + /* Ensures we dump our current line before entering an include file. */ + if (CPP_BUFFER (pfile) && pfile->printer) + cpp_output_tokens (pfile, pfile->printer, + CPP_BUF_LINE (CPP_BUFFER (pfile))); + fp = cpp_push_buffer (pfile, NULL, 0); if (fp == 0) goto push_fail; - if (fstat (fd, &st) < 0) + if (fd < 0 || fstat (fd, &st) < 0) goto perror_fail; inc->date = st.st_mtime; @@ -622,9 +627,6 @@ read_include_file (pfile, inc) if (length == 0) inc->cmacro = NEVER_REREAD; - else - /* Temporary - I hope. */ - length = _cpp_prescan (pfile, fp, length); fp->rlimit = fp->buf + length; fp->cur = fp->buf; @@ -637,13 +639,13 @@ read_include_file (pfile, inc) fp->actual_dir = actual_directory (pfile, inc->name); pfile->input_stack_listing_current = 0; - pfile->only_seen_white = 2; return 1; perror_fail: cpp_error_from_errno (pfile, inc->name); /* Do not try to read this file again. */ - close (fd); + if (fd != -1) + close (fd); inc->fd = -1; inc->cmacro = NEVER_REREAD; fail: |