1. 17 Sep, 2001 10 commits
  2. 16 Sep, 2001 5 commits
    • basic-block.h (free_bb_for_insn): Declare. · 3c030e88
      	* basic-block.h (free_bb_for_insn): Declare.
      	* bb-reorder.c (label_for_bb): Use block_label.
      	(emit_jump_to_block_after): Remove.
      	(insert_intra_1): Do not update block_for_insn.
      	(insert_inter_bb_scope_notes): Likewise; update bb->end
      	* cfg.c (free_bb_for_insn): New.
      	(try_rediret_by_replacing_jump): Avoid set_block_for_new_insns call.
      	(force_nonfallthru_and_redirect): Likewise; do not update BB boundaries.
      	(commit_one_edge_insertion): Likewise.
      	(commit_one_edge_insertion): Do not update BB boundary.
      	(commit_edge_insertions): Do not call compute_bb_for_insn.
      	* cfgbuild.c (find_basic_blocks): Do not free basic_block_for_insn.
      	* cfgcleanup.c (merge_blocks_move_predecessor): Use reorder_insns_nobb.
      	(merge_blocks_move_successor_nojumps): Likewise.
      	(try_crossjump_to_edge): Do not update block_for_insn.
      	* combine.c (combine_instructions): Remove compute_bb_for_insn call.
      	* df.c (df_pattern_emit_later): Do not update BB boundary.
      	(df_jump_pattern_emit_after): Likewise.
      	(df_insn_move_before): Use emit_insn_before.
      	* emit-rtl.c (try_split): Emit after trial to get bb boundary updated
      	 properly.
      	(add_insn_after, add_insn_before, emit_insns_after): Update BB
      	boundaries and basic_block_for_insn.
      	(reorder_insns_nobb): Rename from reorder_insns.
      	(reorder_insns): New.
      	(emit_block_insn_before, emit_block_insn_after): Kill.
      	* flow.c (check_function_return_warnings): Do not call
      	compute_bb_for_insn; Do not free basic_block_for_insn.
      	(attempt_auto_inc): Do not update basic_block_for_insn.
      	* function.c (emit_return_into_block): Likewise;
      	do not update BB boundaries.
      	* gcse.c (handle_avail_expr): Do not update basic_block_for_insn.
      	(insert_insn_end_bb): Use emit_insn_before; Likewise.
      	(pre_insert_copy_insn): Likewise.
      	(update_ld_motion_notes): Likewise.
      	(insert_insn_start_bb): Likewise.
      	(replace_store_insn): Likewise.
      	* ifcvt.c (noce_process_if_block): Likewise.
      	(if_convert): Do not call compute_bb_for_insn.
      	* lcm.c (optimize_mode_switching): Do not update BB boundaries.
      	Use emit_insn_before and emit_insn_after.
      	* recog.c (split_all_insns): Do not update BB boundaries;
      	Do not call compute_bb_for_insn.
      	(peephole2_optimize): Do not update BB boundaries.
      	* reg-stack.c (emit_pop_insn): Use emit_insn_after and
      	emit_insn_before.
      	(emit_swap_insn): Likewise.
      	(convert_regs_1): Likewise.
      	* reload1.c (reload): Call compute_bb_for_insn.
      	* rtl.h (reorder_insns_nobb): Declare.
      	* ssa.c (rename_equivalent_regs): Use emit_insn_before.
      	* toplev.c (rest_of_compilation): Call free_bb_for_insn
      	at places CFG is invalidated; do not call compute_bb_for_insn.
      
      	* cfg.c (expunge_block): Invalidate BB structure.
      
      	* (merge_blocks_nomove): Update properly BLOCK_FOR_INSN
      	array.
      
      	* cfg.c (verify_flow_info): Verify the basic_block_for_insn array.
      
      From-SVN: r45647
      Jan Hubicka committed
    • cpphash.h (_cpp_lex_token): Update prototype. · 345894b4
      	* cpphash.h (_cpp_lex_token): Update prototype.
      	* cpplex.c (_cpp_lex_token): New prototype.
      	* cpplib.c (skip_rest_of_line, check_eol, _cpp_handle_directive,
      	lex_macro_node, read_flag, do_pragma_poison): Update.
      	* cppmacro.c (cpp_get_token, parse_params,
      	lex_expansion_token): Update.
      
      From-SVN: r45646
      Neil Booth committed
    • cppmain.c (scan_translation_unit): Don't worry about putting a space after hashes. · 18a9d8ff
      	* cppmain.c (scan_translation_unit): Don't worry about
      	putting a space after hashes.
      	* cpplib.c (directive_diagnostics): New.
      	(_cpp_handle_directive): Update to use directive_diagnostics.
      	(run_directive): Don't toggle prevent_expansion.
      	(do_line): Backup in case of the line extension.
      	* cpplib.h (cpp_lexer_pos): Remove.
      	* cppmacro.c (_cpp_create_definition): Precede a leading #
      	with whitespace.
      
      	* gcc.dg/cpp/line5.c: New testcase.
      
      From-SVN: r45645
      Neil Booth committed
    • Daily bump. · 27553bf3
      From-SVN: r45644
      GCC Administrator committed
  3. 15 Sep, 2001 17 commits
  4. 14 Sep, 2001 8 commits
    • java-tree.h (TYPE_IMPORT_LIST): New macro. · 653d5d95
      2001-09-13  Alexandre Petit-Bianco  <apbianco@redhat.com>
      
      	* java-tree.h (TYPE_IMPORT_LIST): New macro.
      	(TYPE_IMPORT_DEMAND_LIST): Likewise.
      	(struct lang_type): New fields import_list and import_demand_list.
      	* parse.y (java_complete_class): Initialize TYPE_IMPORT_LIST and
      	TYPE_IMPORT_DEMAND_LIST with ctxp counterparts.
      	(do_resolve_class): New local saved_enclosing_type, initialized,
      	passed as parameter to find_in_imports and find_in_imports_on_demand.
      	(find_in_imports): Added paramater enclosing_type, use its
      	TYPE_IMPORT_LIST when applicable.
      	(find_in_imports_on_demand): Added parameter enclosing_type, use
      	its TYPE_IMPORT_DEMAND_LIST when applicable. Reorganized locals
      	declaration and initialization.
      	(fold_constant_for_init): Switch/restore current_class to the
      	appropriate context.
      
      ( http://gcc.gnu.org/ml/gcc-patches/2001-09/msg00563.html )
      
      From-SVN: r45619
      Alexandre Petit-Bianco committed
    • * gcc.c-torture/execute/20010915-1.c: New test. · 846f0467
      From-SVN: r45618
      Hans-Peter Nilsson committed
    • rtl.h (FIND_REG_INC_NOTE): Call find_regno_note for REGs. · e75ecd26
      	* rtl.h (FIND_REG_INC_NOTE) [HAVE_PRE_INCREMENT
      	|| HAVE_PRE_DECREMENT || HAVE_POST_INCREMENT
      	|| HAVE_POST_DECREMENT]: Call find_regno_note for REGs.
      
      From-SVN: r45617
      Hans-Peter Nilsson committed
    • reorg.c (fill_slots_from_thread): After call to steal_delay_list_from_target... · 86c7007a
      	* reorg.c (fill_slots_from_thread): After call to
      	steal_delay_list_from_target, update own_thread as new_thread may
      	have branched.
      
      From-SVN: r45616
      Hans-Peter Nilsson committed
    • moneypunct_members_gnu.cc: Fix initialization of wchar_t members. · 9775a638
      
      2001-09-14  Benjamin Kosnik  <bkoz@redhat.com>
      
      	* config/locale/moneypunct_members_gnu.cc: Fix initialization of
      	wchar_t members.
      	* testsuite/22_locale/money_get_members_wchar_t.cc (test02): New file.
      	* testsuite/22_locale/money_put_members_wchar_t.cc (test02): Fix.
      
      From-SVN: r45615
      Benjamin Kosnik committed
    • moneypunct_members_gnu.cc: Fix initialization of wchar_t members. · 55dea7b1
      
      2001-09-14  Benjamin Kosnik  <bkoz@redhat.com>
      
      	* config/locale/moneypunct_members_gnu.cc: Fix initialization of
      	wchar_t members.
      	* testsuite/22_locale/money_get_members_wchar_t.cc (test02): New file.
      	* testsuite/22_locale/money_put_members_wchar_t.cc (test02): Fix.
      
      From-SVN: r45614
      Benjamin Kosnik committed
    • cpperror.c (print_location): Take line and column, for default positioning use… · 97293897
      cpperror.c (print_location): Take line and column, for default positioning use the previously lexed token.
      
      	* cpperror.c (print_location): Take line and column, for
      	default positioning use the previously lexed token.
      	(_cpp_begin_message): Take line and column.
      	(cpp_ice, cpp_fatal, cpp_error, cpp_error_with_line, cpp_warning,
      	cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line): Update.
      	* cpphash.h (_cpp_begin_message): Update prototype.
      	* cppinit.c (push_include): Don't set output line.
      	* cpplex.c (_cpp_lex_token): Callback for start of new output lines.
      	* cpplib.c (do_diagnostic, _cpp_pop_buffer): Update.
      	(do_pragma): Kludge for front ends.  Don't expand macros at all.
      	* cpplib.h (cpp_lookahead, cpp_token_with_pos, cpp_get_line): Remove.
      	(struct cpp_token): Remove output_line.
      	(struct cpp_callbacks): New member line_change.
      	* cppmacro.c (builtin_macro, paste_all_tokens, replace_args,
      	cpp_get_token): Preserve BOL flag.
      	(cpp_get_line): Remove.
      	(_cpp_backup_tokens): Remove useless abort().
      	* cppmain.c (cb_line_change): New.
      	(scan_translation_unit): Don't worry about starting new lines here.
      	* scan-decls.c (scan_decls): Update.
      	* c-lex.c (c_lex, init_c_lex): Update.
      	(cb_line_change, src_lineno): New.
      
      From-SVN: r45613
      Neil Booth committed
    • Run tests of gcov output. · 4fb1661f
      	* g77.dg/gcov: New directory.
      	* g77.dg/gcov/gcov.exp: New file.
      	* g77.dg/gcov/gcov-1.f: New test.
      	* g77.dg/gcov/gcov-1.x: New file.
      
      From-SVN: r45612
      Janis Johnson committed