gcc/gcc
Michael Matz 355a767352 coretypes.h (gimple_seq, [...]): Typedef as gimple.
* coretypes.h (gimple_seq, const_gimple_seq): Typedef as gimple.
	* gimple.h (struct gimple_seq_node_d, struct gimple_seq_d): Remove.
	(const_gimple_seq_node): Remove.
	(gimple_seq_node): Typedef as gimple.
	(struct gimple_statement_base): Add next and prev members,
	adjust all WORD markers in using structs.
	(union gimple_statement_d): Link via gsbase.next field for GC and PCH.
	(gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
	gimple_seq_last_stmt): Adjust as gimple_seq, gimple_seq_node and
	gimple are the same.
	(gimple_seq_set_last, gimple_seq_set_first): Don't allocate
	gimple_seq, adjust.
	(gimple_init_singleton): New function.
	(gsi_start_1, gsi_last_1, gsi_end_p, gsi_one_before_end_p): Adjust.
	(gsi_next, gsi_prev): Adjust, handle prev cyclic list correctly.
	(gsi_stmt): Adjust.
	(gsi_stmt_ptr): Remove.
	(enum gimple_alloc_kind): Remove gimple_alloc_kind_seq member.

	* gimple-iterator.c (update_bb_for_stmts): Take last parameter
	again, adjust for above changes.
	(update_call_edge_frequencies): Adjust for above changes.
	(gsi_insert_seq_nodes_before): Rewrite for new data structure.
	(gsi_insert_seq_nodes_after): Ditto.
	(gsi_split_seq_after): Ditto.
	(gsi_set_stmt): Ditto.
	(gsi_split_seq_before): Ditto.
	(gsi_remove): Ditto.
	(gsi_insert_seq_before_without_update): Don't free sequence.
	(gsi_insert_seq_after_without_update): Ditto.
	(gsi_replace): Assert some more invariants.
	(gsi_insert_before_without_update, gsi_insert_after_without_update):
	Tidy.
	(gsi_for_stmt): Don't search for stmt.
	(gsi_insert_on_edge_immediate): Tidy.

	* gimple.c (gimple_alloc_k): Remove "sequences".
	(gimple_seq_cache): Remove.
	(gimple_alloc_stat): Make stmt a singleton sequence.
	(gimple_seq_alloc, gimple_seq_free): Remove.
	(gimple_assign_set_rhs_with_ops_1): Ensure new stmt is a singleton.
	(gimple_copy): Ditto.
	* gimplify.c (gimplify_cleanup_point_expr): Use gsi_set_stmt,
	create iterator from correct sequence.
	* tree-phinodes.c (make_phi_node): Make stmt a singleton.


	* gimple.h (gimple_stmt_iterator <seq>): Make it be pointer to
	gimple_seq.
	(gimple_seq_set_last, gimple_seq_set_first): Take pointer to
	sequence, lazily allocate it.
	(bb_seq_addr): New function.
	(gsi_start_1): Rename from gsi_start, but take pointer to sequence.
	(gsi_start): Macro to wrap gsi_start_1 taking pointer of argument.
	(gsi_none): New function.
	(gsi_start_bb): Adjust.
	(gsi_last_1): Rename from gsi_last, but take pointer to sequence.
	(gsi_last): Macro to wrap gsi_last_1 taking pointer of argument.
	(gsi_last_bb): Adjust.
	(gsi_seq): Adjust.
	* tree-flow-inline.h (phi_nodes_ptr): New function.

	* gimple-iterator.c (gsi_insert_seq_nodes_before): Adjust to 
	datastructure and interface change.
	(gsi_insert_seq_before_without_update): Ditto.
	(gsi_insert_seq_nodes_after): Ditto.
	(gsi_insert_seq_after_without_update): Ditto.
	(gsi_split_seq_after): Ditto, don't use gimple_seq_alloc.
	(gsi_split_seq_before): Ditto.
	(gsi_start_phis): Adjust.
	* tree-vect-loop.c (vect_determine_vectorization_factor): Use
	gsi_none.
	(vect_transform_loop): Ditto.
	* gimple.c (gimple_seq_add_stmt, gimple_seq_add_seq,
	gimple_seq_copy): Don't use gimple_seq_alloc.
	* gimplify.c (gimple_seq_add_stmt_without_update): Ditto.
	(gimplify_seq_add_seq): Ditto.
	* lto-streamer-in.c (make_new_block): Ditto.
	* tree-cfg.c (create_bb): Ditto.
	* tree-sra.c (initialize_parameter_reductions): Ditto.


	* gimple.h (gimple_seq_first, gimple_seq_first_stmt, gimple_seq_last,
	gimple_seq_last_stmt, gimple_seq_set_last, gimple_seq_set_first,
	gimple_seq_empty_p, gimple_seq_alloc_with_stmt, bb_seq,
	set_bb_seq): Move down to after gimple_statement_d definition.


	* gimple-fold.c (gimplify_and_update_call_from_tree): Use
	gsi_replace_with_seq, instead of inserting itself.
	* gimple-iterator.c (gsi_replace_with_seq): New function.
	* tree-ssa-forwprop.c (forward_propagate_comparison): Take
	iterator instead of statement, advance it.
	(ssa_forward_propagate_and_combine): Adjust call to above.


	* tree-phinodes.c (add_phi_node_to_bb): Tidy, don't use
	gimple_seq_alloc.
	* omp-low.c (finalize_task_copyfn): Don't use gimple_seq_alloc.
	* tree-nested.c (walk_gimple_omp_for): Ditto.
	* trans-mem.c (lower_transaction): Ditto.
	* tree-eh.c (do_return_redirection): Ditto.
	(do_goto_redirection): Ditto.
	(lower_try_finally_switch): Ditto.
	* gimplify.c (gimplify_stmt): Ditto.
	(gimplify_scan_omp_clauses): Ditto.
	(gimplify_omp_for): Ditto.
	(gimplify_function_tree): Ditto.
	* gimple-fold.c (gimplify_and_update_call_from_tree): Ditto.
	* tree-mudflap.c (mf_decl_cache_locals): Ditto.
	(mf_build_check_statement_for): Ditto.
	(mx_register_decls): Ditto.
	* graphite-sese-to-poly.c (remove_invariant_phi): Ditto,
	and don't use itertors to append.
	(insert_stmts): Ditto.
	(insert_out_of_ssa_copy): Ditto.
	(insert_out_of_ssa_copy_on_edge): Ditto.


	* gimple.h (gimple_bind_body_ptr): New function.
	(gimple_bind_body): Use it.
	(gimple_catch_handler): Use gimple_catch_handler_ptr.
	(gimple_eh_filter_failure_ptr): New function.
	(gimple_eh_filter_failure): Use it.
	(gimple_eh_else_n_body_ptr): New function.
	(gimple_eh_else_n_body): Use it.
	(gimple_eh_else_e_body_ptr): New function.
	(gimple_eh_else_e_body): Use it.
	(gimple_try_eval_ptr): New function.
	(gimple_try_eval): Use it.
	(gimple_try_cleanup_ptr): New function.
	(gimple_try_cleanup): Use it.
	(gimple_wce_cleanup_ptr): New function.
	(gimple_wce_cleanup): Use it.
	(gimple_omp_body_ptr): New function.
	(gimple_omp_body): Use it.
	(gimple_omp_for_pre_body_ptr): New function.
	(gimple_omp_for_pre_body): Use it.
	(gimple_transaction_body_ptr): New function.
	(gimple_transaction_body): Use it.
	(gsi_split_seq_before): Adjust to return nothing and take pointer
	to sequence.
	(gsi_set_stmt): Declare.
	(gsi_replace_with_seq): Declare.
	(walk_gimple_seq_mod): Declare.
	* function.h (struct function <gimple_body>): Use typedef gimple_seq.

	* gimple-iterator.c (gsi_set_stmt): New function.
	(gsi_split_seq_before): Return new sequence via pointer argument.
	(gsi_replace): Use gsi_set_stmt.

	* tree-ssa-loop-im.c (move_computations_stmt): First remove
	then insert stmt.
	* tree-complex.c (update_complex_components_on_edge): Don't
	copy gsi.
	* tree-phinodes.c (resize_phi_node): Don't resize stmt in-place,
	return new stmt.
	(reserve_phi_args_for_new_edge): Change call to above,
	use gsi_set_stmt.

	* omp-low.c (lower_omp): Change prototype to take pointer to
	sequence.
	(lower_rec_input_clauses): Use gimple_seq_add_seq instead of
	iterators.  Adjust call to lower_omp.
	(lower_lastprivate_clauses): Adjust call to lower_omp.
	(lower_reduction_clauses): Ditto.
	(expand_omp_taskreg): Nullify non-cfg body of child_fn.
	(lower_omp_sections): Don't explicitely count sequence length,
	nullify lowered bodies earlier, ensure stmts are part of only
	one sequence, adjust call to lower_omp.
	(lower_omp_single): Ensure stmts are part of only one sequence,
	adjust call to lower_omp.
	(lower_omp_master): Ditto.
	(lower_omp_ordered): Ditto.
	(lower_omp_critical): Ditto.
	(lower_omp_for): Ditto.
	(lower_omp_taskreg): Ditto, tidy.
	(lower_omp_1): Adjust calls to lower_omp.
	(execute_lower_omp): Ditto.
	(lower_omp): Adjust to take pointer to sequence.
	(diagnose_sb_2): Use walk_gimple_seq_mod.
	(diagnose_omp_structured_block_errors): Ditto and set possibly
	changed function body.
	* gimple-low.c (lower_function_body): Set function body after
	it stabilizes.
	(lower_sequence): Adjust to take pointer to sequence.
	(lower_omp_directive): Ensure stmt isn't put twice into the
	sequence, adjust call to lower_sequence.
	(lower_stmt): Adjust calls to lower_sequence.
	(lower_gimple_bind): Ditto.
	(gimple_try_catch_may_fallthru): Call gsi_start with lvalue.
	* tree-nested.c (walk_body): Take pointer to sequence, use
	walk_gimple_seq_mod.
	(walk_function): Adjust call to walk_body, set possibly changed
	body.
	(walk_gimple_omp_for): Adjust calls to walk_body.
	(convert_nonlocal_omp_clauses): Ditto.
	(convert_nonlocal_reference_stmt): Ditto.
	(convert_local_omp_clauses): Ditto.
	(convert_local_reference_stmt): Ditto.
	(convert_tramp_reference_stmt): Ditto.
	(convert_gimple_call): Ditto.
	(convert_nl_goto_reference): Use local iterator copy.
	* gimple.c (walk_gimple_seq_mod): Renamed from walk_gimple_seq,
	but taking pointer to sequence, ensure gsi_start is called with
	callers lvalue.
	(walk_gimple_seq): New wrapper around walk_gimple_seq_mod,
	asserting that the sequence head didn't change.
	(walk_gimple_stmt): Replace all calls to walk_gimple_seq with
	walk_gimple_seq_mod.
	* trans-mem.c (lower_transaction): Use walk_gimple_seq_mod.
	(execute_lower_tm): Ditto, and set possibly changed body.
	* tree-eh.c (lower_eh_constructs_1): Take pointer to sequence,
	call gsi_start with that lvalue.
	(replace_goto_queue_stmt_list): Ditto.
	(replace_goto_queue_1): Adjust calls to replace_goto_queue_stmt_list.
	(replace_goto_queue): Ditto.
	(lower_try_finally_nofallthru): Adjust calls to lower_eh_constructs_1.
	(lower_try_finally_onedest): Ditto.
	(lower_try_finally_copy): Ditto.
	(lower_try_finally_switch): Ditto.
	(lower_try_finally): Ditto.
	(lower_eh_filter): Ditto.
	(lower_eh_must_not_throw): Ditto.
	(lower_cleanup): Ditto.
	(lower_eh_constructs_2): Ditto.
	(lower_catch): Ditto, and ensure gsi_start is called with lvalue.
	(lower_eh_constructs): Adjust calls to lower_eh_constructs_1, and
	set possibly changed body.
	(optimize_double_finally): Call gsi_start with lvalue.

	* tree-cfg.c (make_blocks): Adjust call to gsi_split_seq_before.
	(gimple_split_block): Ditto.
	(gimple_merge_blocks): Use gsi_start_phis.
	(move_stmt_r): Use walk_gimple_seq_mod.
	* tree-ssa-dse.c (dse_enter_block): Use gsi_last_bb.
	* cgraphbuild.c (build_cgraph_edges): Use gsi_start_phis.
	(rebuild_cgraph_edges): Ditto.
	(cgraph_rebuild_references): Ditto.
	* ipa-prop.c (ipa_analyze_params_uses): Ditto.
	* tree-inline.c (copy_phis_for_bb): Ditto.
	* tree-ssa-dce.c: Ditto.

	* cgraphunit.c (cgraph_analyze_function): Use gimple_has_body_p.

From-SVN: r187053
2012-05-02 16:41:48 +00:00
..
ada Revert 2012-02-24 Dave Korn <dave.korn.cygwin@gmail.com> 2012-05-02 14:56:11 +02:00
c-family cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
common ChangeLog entry: 2012-03-12 09:59:25 +00:00
config ChangeLog entry: 2012-05-02 15:32:01 +00:00
cp tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
doc ChangeLog entry: 2012-05-02 15:32:01 +00:00
fortran cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
ginclude Remove obsolete IRIX 6.5 support 2012-03-14 16:33:37 +00:00
go cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
java lto-symtab.c (lto_varpool_replace_node): Do not merge needed flags. 2012-04-22 21:28:07 +00:00
lto cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
objc lto-symtab.c (lto_cgraph_replace_node): Merge needed instead of force flags. 2012-04-20 14:09:11 +00:00
objcp In gcc/: 2011-10-14 Nicola Pero <nicola.pero@meta-innovation.com> 2011-10-14 10:19:01 +00:00
po * sv.po: Update. 2012-04-24 23:14:54 +01:00
testsuite ChangeLog entry: 2012-05-02 15:32:01 +00:00
ABOUT-GCC-NLS
BASE-VER BASE-VER: Set to 4.8.0. 2012-03-02 11:09:25 +00:00
COPYING
COPYING.LIB
COPYING3
COPYING3.LIB
ChangeLog coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
ChangeLog-1997
ChangeLog-1998
ChangeLog-1999
ChangeLog-2000
ChangeLog-2001
ChangeLog-2002
ChangeLog-2003
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008
ChangeLog-2009
ChangeLog-2010
ChangeLog-2011 Fix ChangeLog record for 171649: 2012-03-05 15:01:48 +00:00
ChangeLog.dataflow
ChangeLog.graphite
ChangeLog.lib
ChangeLog.ptr
ChangeLog.tree-ssa
ChangeLog.tuples
DATESTAMP Daily bump. 2012-05-02 00:18:21 +00:00
DEV-PHASE
FSFChangeLog
FSFChangeLog.10
FSFChangeLog.11
LANGUAGES
Makefile.in Makefile.in (lower-subreg.o, [...]): Depend on lower-subreg.h. 2012-05-01 14:45:24 +00:00
ONEWS
README.Portability
acinclude.m4 mmap.m4: Use *vms* instead of vms*. 2012-04-03 12:07:28 +00:00
aclocal.m4 mmap.m4: Use *vms* instead of vms*. 2012-04-03 12:07:28 +00:00
addresses.h tm.texi.in (MODE_CODE_BASE_REG_CLASS): Add address space argument. 2011-11-08 17:36:45 +00:00
alias.c re PR bootstrap/53021 (bootstrap failure on Linux/ia32) 2012-04-21 18:55:18 +00:00
alias.h re PR bootstrap/53021 (bootstrap failure on Linux/ia32) 2012-04-21 18:55:18 +00:00
alloc-pool.c
alloc-pool.h
attribs.c Merge from transactional-memory branch. 2011-11-08 11:13:41 +00:00
auto-inc-dec.c
basic-block.h cgraph.h (cgraph_materialize_all_clones): Remove. 2012-03-29 13:54:16 +00:00
bb-reorder.c cgraph.h (cgraph_materialize_all_clones): Remove. 2012-03-29 13:54:16 +00:00
bb-reorder.h function.c (bb_active_p): Delete. 2011-11-09 11:50:14 +10:30
bitmap.c
bitmap.h
bt-load.c
builtin-attrs.def Mark transaction begin as returns-twice. 2012-01-05 23:48:30 +00:00
builtin-types.def re PR target/52624 (missing __builtin_bswap16) 2012-04-11 11:13:39 +00:00
builtins.c ChangeLog entry: 2012-05-02 15:32:01 +00:00
builtins.def re PR target/52624 (missing __builtin_bswap16) 2012-04-11 11:13:39 +00:00
builtins.h
c-aux-info.c
c-config-lang.in
c-convert.c
c-decl.c tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
c-errors.c
c-lang.c
c-lang.h
c-objc-common.c
c-objc-common.h
c-parser.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
c-tree.h c-tree.h (c_default_pointer_mode): New variable. 2012-03-09 11:49:50 +00:00
c-typeck.c re PR c++/51033 (generic vector subscript and shuffle support was not added to C++) 2012-04-30 13:23:28 -04:00
caller-save.c tm.texi.in (MODE_CODE_BASE_REG_CLASS): Add address space argument. 2011-11-08 17:36:45 +00:00
calls.c toplev.c (check_global_declaration_1): Do not call assemble_external. 2012-03-26 16:39:11 +00:00
cfg.c cfg.c (disconnect_src): Do df_mark_solutions_dirty in the right place. 2012-04-27 11:12:52 +00:00
cfganal.c loop-init.c (loop_optimizer_init): If loops are preserved perform incremental initialization of required loop features. 2012-03-28 12:14:26 +00:00
cfgbuild.c Merge from transactional-memory branch. 2011-11-08 11:13:41 +00:00
cfgcleanup.c cfgcleanup.c (try_optimize_cfg): Replace call to delete_insn_chain by call to delete_insn. 2012-04-14 12:17:41 +00:00
cfgexpand.c tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
cfghooks.c re PR bootstrap/52808 (LTO bootstrap failed with bootstrap-profiled) 2012-04-03 11:38:04 +00:00
cfghooks.h
cfglayout.c cfgcleanup.c (try_optimize_cfg): Replace call to delete_insn_chain by call to delete_insn. 2012-04-14 12:17:41 +00:00
cfglayout.h
cfgloop.c loop-init.c (loop_optimizer_init): If loops are preserved perform incremental initialization of required loop features. 2012-03-28 12:14:26 +00:00
cfgloop.h re PR tree-optimization/44688 (Excessive code-size growth at -O3) 2012-04-18 11:33:51 +00:00
cfgloopanal.c
cfgloopmanip.c loop-init.c (loop_optimizer_init): If loops are preserved perform incremental initialization of required loop features. 2012-03-28 12:14:26 +00:00
cfgrtl.c cfgcleanup.c (try_optimize_cfg): Replace call to delete_insn_chain by call to delete_insn. 2012-04-14 12:17:41 +00:00
cgraph.c re PR middle-end/53136 (Use after free in ipa_make_edge_direct_to_target, cxx_printable_name_internal problem) 2012-04-30 23:34:35 +02:00
cgraph.h cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
cgraphbuild.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
cgraphunit.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
cif-code.def
collect2-aix.c
collect2-aix.h
collect2.c Remove obsolete IRIX 6.5 support 2012-03-14 16:33:37 +00:00
collect2.h
combine-stack-adj.c re PR debug/52727 (internal compiler error at dwarf2cfi.c2:685) 2012-03-30 11:00:37 -07:00
combine.c Partially revert: 2012-04-02 12:04:10 +02:00
common.opt Add -fno-sync-libcalls. 2012-05-01 08:48:10 -07:00
compare-elim.c compare-elim.c (try_eliminate_compare): Also handle operands with implicit extensions. 2012-04-25 08:05:26 +02:00
conditions.h
config.build xm-vms.h (HOST_LONG_FORMAT, [...]): Define when long pointers are used. 2012-01-04 15:45:29 +00:00
config.gcc config.gcc (mips64*-*-linux*): Append mips/linux-common.h to tm_file. 2012-04-24 18:23:12 +00:00
config.host 2012-03-16 Tristan Gingold <gingold@adacore.com> 2012-03-16 09:18:57 +00:00
config.in ChangeLog entry: 2012-05-02 15:32:01 +00:00
configure ChangeLog entry: 2012-05-02 15:32:01 +00:00
configure.ac ChangeLog entry: 2012-05-02 15:32:01 +00:00
convert.c Fix #52283 error: case label does not reduce to an integer constant 2012-04-19 11:06:53 +02:00
convert.h
coretypes.h coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
coverage.c coverage.c (get_gcov_type): Use type_for_mode. 2012-03-07 14:31:40 +00:00
coverage.h gcov-io.h (struct gcov_info): Replace trailing array with pointer to array. 2011-12-04 18:27:19 +00:00
cppbuiltin.c Check in patch/merge from cxx-mem-model Branch 2011-11-06 14:55:48 +00:00
cppbuiltin.h
cppdefault.c Translate built-in include paths for sysroot. 2012-01-06 00:14:32 +00:00
cppdefault.h
cppspec.c
cprop.c re PR middle-end/52800 (eglibc build broken with internal compiler error in cfgloop .) 2012-04-02 12:00:30 +00:00
cse.c lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
cselib.c re PR debug/52001 (Huge compile-time regression with var-tracking) 2012-03-01 16:58:11 +00:00
cselib.h re PR debug/52001 (Huge compile-time regression with var-tracking) 2012-03-01 16:58:11 +00:00
cstamp-h.in
data-streamer-in.c
data-streamer-out.c
data-streamer.c
data-streamer.h
dbgcnt.c
dbgcnt.def dbgcnt.def (ira_move): New counter. 2012-04-12 12:53:17 +00:00
dbgcnt.h
dbxout.c lto-symtab.c (lto_cgraph_replace_node): Do not call mark_reahcable_node. 2012-04-23 11:13:46 +00:00
dbxout.h
dce.c re PR debug/48866 (gcc hangs when -g is set) 2012-04-13 15:56:21 +00:00
dce.h
ddg.c SMS: Prevent the creation of reg-moves for definitions with MODE_CC 2012-01-02 10:54:00 +00:00
ddg.h
debug.c
debug.h
defaults.h tree.h (enum size_type_kind): Add stk_ prefix to constants, convert in lowercase. 2012-03-20 08:47:27 +00:00
df-core.c
df-problems.c re PR debug/48866 (gcc hangs when -g is set) 2012-04-13 15:56:21 +00:00
df-scan.c re PR bootstrap/52397 (comparison failure with Ada enabled) 2012-02-29 09:12:04 +01:00
df.h re PR debug/48866 (gcc hangs when -g is set) 2012-04-13 15:56:21 +00:00
dfp.c
dfp.h
diagnostic-core.h
diagnostic.c Make expand_location resolve to locus in main source file 2012-04-30 13:42:00 +02:00
diagnostic.def
diagnostic.h re PR c++/24985 (caret diagnostics) 2012-04-11 09:26:48 +00:00
dojump.c coverage.c (get_gcov_type): Use type_for_mode. 2012-03-07 14:31:40 +00:00
dominance.c
domwalk.c
domwalk.h
double-int.c re PR tree-optimization/53058 (Another ice in remove_range_assertions) 2012-04-25 13:35:38 +02:00
double-int.h re PR tree-optimization/53058 (Another ice in remove_range_assertions) 2012-04-25 13:35:38 +02:00
dse.c re PR bootstrap/53021 (bootstrap failure on Linux/ia32) 2012-04-21 18:55:18 +00:00
dwarf2asm.c final.c, output.h (fprint_whex, [...]): New functions serving as fast replacements for fprintf() integer to string... 2011-11-10 23:00:39 -05:00
dwarf2asm.h
dwarf2cfi.c dwarf2out.c (dwarf_stack_op_name): Use get_DW_OP_name. 2012-04-27 14:14:14 +00:00
dwarf2out.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
dwarf2out.h
ebitmap.c
ebitmap.h
emit-rtl.c Check for incompatible pointer sign extension 2012-04-11 12:31:45 -07:00
emit-rtl.h
errors.c
errors.h
et-forest.c
et-forest.h
except.c lto-symtab.c (lto_varpool_replace_node): Do not merge needed flags. 2012-04-22 21:28:07 +00:00
except.h tree-pass.h (pass_rtl_eh): Remove. 2012-03-20 09:52:02 +00:00
exec-tool.in
explow.c rtl.texi (const_double): Document as sign-extending. 2012-04-04 20:27:17 +00:00
expmed.c re PR tree-optimization/52979 (likely wrong code bug w/packed bitfields) 2012-04-25 16:27:08 +02:00
expmed.h
expr.c re PR middle-end/52940 (conversion from MODE_PARTIAL_INT uses sign extension for unsigned types) 2012-04-26 14:20:39 +00:00
expr.h expr.h (move_by_pieces_ninsns): Declare. 2012-01-02 13:56:36 +00:00
final.c final.c (final_scan_insn): Guard the call to begin_epilogue debug hook. 2011-12-13 13:41:12 +00:00
fixed-value.c
fixed-value.h
flag-types.h common.opt (fsched-pressure-algorithm=): New option. 2012-04-26 15:49:13 +00:00
flags.h shift flag_next/gnu_runtime to modern opts system. 2011-11-30 10:42:58 +00:00
fold-const.c tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
fp-test.c
function.c Makefile.in (cfgexpand.o): Add $(REGS_H) and $(INTEGRATE_H) dependencies. 2012-03-21 08:02:21 +00:00
function.h coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
fwprop.c fwprop.c (propagate_rtx): Also set PR_CAN_APPEAR for subregs. 2012-04-10 13:50:43 +00:00
gcc-ar.c gcc-ar: Do not include stdio.h. 2011-10-31 10:04:50 -04:00
gcc-plugin.h
gcc.c Remove obsolete IRIX 6.5 support 2012-03-14 16:33:37 +00:00
gcc.h
gccspec.c shift flag_next/gnu_runtime to modern opts system. 2011-11-30 10:42:58 +00:00
gcov-dump.c gcc.c (process_command): Update copyright notice dates. 2012-01-01 20:09:46 +01:00
gcov-io.c
gcov-io.h gcov-io.h (struct gcov_info): Replace trailing array with pointer to array. 2011-12-04 18:27:19 +00:00
gcov-iov.c
gcov.c gcov.c (STRING_SIZE): Remove. 2012-01-11 18:58:30 +00:00
gcse.c recog.c (insn_invalid_p): Add IN_GROUP parameter and use validate_change to add clobbers if... 2012-04-24 07:01:52 +00:00
gcse.h
gdbinit.in
genattr-common.c
genattr.c
genattrtab.c genattrtab: avoid NULL-deref on error 2012-04-24 12:07:30 +00:00
genautomata.c genautomata.c (parse_automata_opt): New static function. 2012-03-05 15:38:06 +00:00
gencheck.c
genchecksum.c
gencodes.c
genconditions.c
genconfig.c
genconstants.c
genemit.c genemit.c (gen_exp): Remove ADDRESS handling. 2012-04-16 18:52:05 +00:00
genenums.c
genextract.c
genflags.c
gengenrtl.c
gengtype-lex.l
gengtype-parse.c
gengtype-state.c
gengtype.c Fix PCH crash on GTYed pointer-to-scalar field of a struct 2012-04-30 13:41:34 +02:00
gengtype.h
genhooks.c
genmddeps.c
genmodes.c re PR middle-end/52940 (conversion from MODE_PARTIAL_INT uses sign extension for unsigned types) 2012-04-26 14:20:39 +00:00
genmultilib
genopinit.c Delete VEC_EXTRACT_EVEN/ODD_EXPR. 2011-12-23 14:07:16 -08:00
genoutput.c genemit.c (gen_exp): Remove ADDRESS handling. 2012-04-16 18:52:05 +00:00
genpeep.c genemit.c (gen_exp): Remove ADDRESS handling. 2012-04-16 18:52:05 +00:00
genpreds.c
genrecog.c genemit.c (gen_exp): Remove ADDRESS handling. 2012-04-16 18:52:05 +00:00
gensupport.c
gensupport.h
ggc-common.c
ggc-internal.h
ggc-none.c Reduce memory waste due to non-power-of-2 allocs 2011-10-17 12:00:07 +02:00
ggc-page.c 2012-04-02 Tristan Gingold <gingold@adacore.com> 2012-04-02 07:53:58 +00:00
ggc-zone.c Fix building ggc-zone.c 2011-10-20 17:22:17 +02:00
ggc.h Reduce memory waste due to non-power-of-2 allocs 2011-10-17 12:00:07 +02:00
gimple-fold.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
gimple-fold.h
gimple-iterator.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
gimple-low.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
gimple-pretty-print.c gimple-pretty-print.c (dump_gimple_phi): Avoid excessive newline in -alias dumps. 2012-02-07 12:10:11 +00:00
gimple-pretty-print.h
gimple-streamer-in.c re PR bootstrap/51572 (LTO bootstrap failed with bootstrap-profiled) 2011-12-19 13:37:06 +00:00
gimple-streamer-out.c opts.c (finish_options): Do not fail for -fgnu-tm. 2011-11-22 18:37:16 +00:00
gimple-streamer.h
gimple.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
gimple.def Merge from transactional-memory branch. 2011-11-08 11:13:41 +00:00
gimple.h coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
gimplify.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
glimits.h
godump.c godump.c (go_output_typedef): Dump size of structs. 2012-04-22 18:51:44 +00:00
graph.c
graph.h
graphds.c
graphds.h
graphite-blocking.c
graphite-clast-to-gimple.c cfgloop.c (verify_loop_structure): Verify dominators before using them. 2012-03-05 15:39:39 +00:00
graphite-clast-to-gimple.h
graphite-cloog-compat.h
graphite-cloog-util.c
graphite-cloog-util.h
graphite-dependences.c
graphite-dependences.h
graphite-interchange.c
graphite-poly.c invoke.texi (floop-flatten): Declare obsolete. 2012-03-02 20:32:20 +00:00
graphite-poly.h
graphite-ppl.c
graphite-ppl.h
graphite-scop-detection.c cfgloop.c (verify_loop_structure): Verify dominators before using them. 2012-03-05 15:39:39 +00:00
graphite-scop-detection.h
graphite-sese-to-poly.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
graphite-sese-to-poly.h
graphite.c
gsstruct.def Merge from transactional-memory branch. 2011-11-08 11:13:41 +00:00
gstab.h
gsyms.h
gsyslimits.h
gtm-builtins.def re PR lto/51698 ([trans-mem] TM runtime and application with LTO) 2012-01-25 20:32:57 +00:00
haifa-sched.c sched-int.h (_haifa_insn_data): Move priority_status. 2012-04-26 15:49:30 +00:00
hard-reg-set.h re PR target/51872 (Shrink-wrapping with -mminimal-toc causes bootstrap failure) 2012-01-17 17:21:49 +01:00
highlev-plugin-common.h
hooks.c
hooks.h
host-default.c
hosthooks-def.h
hosthooks.h
hw-doloop.c
hw-doloop.h
hwint.c
hwint.h
ifcvt.c re PR middle-end/52881 (ICE due to null pointer deref in cfgloop.c) 2012-04-11 08:13:37 +00:00
incpath.c gcc.c (add_sysrooted_prefix): Remove trailing dir separator from system root. 2012-01-26 23:34:58 +00:00
incpath.h incpath.c (get_added_cpp_dirs): New function. 2011-11-15 10:25:36 +00:00
init-regs.c
input.c Make conversion warnings work on NULL with -ftrack-macro-expansion 2012-04-30 13:42:38 +02:00
input.h Make conversion warnings work on NULL with -ftrack-macro-expansion 2012-04-30 13:42:38 +02:00
insn-addr.h
insn-notes.def re PR tree-optimization/50693 (Loop optimization restricted by GOTOs) 2011-11-05 20:58:37 +01:00
integrate.c Makefile.in (cfgexpand.o): Add $(REGS_H) and $(INTEGRATE_H) dependencies. 2012-03-21 08:02:21 +00:00
integrate.h
internal-fn.c
internal-fn.def
internal-fn.h
intl.c
intl.h
ipa-cp.c re PR middle-end/53136 (Use after free in ipa_make_edge_direct_to_target, cxx_printable_name_internal problem) 2012-04-30 23:34:35 +02:00
ipa-inline-analysis.c cgraph.h (FOR_EACH_VARIABLE, [...]): New macros. 2012-04-16 12:04:17 +00:00
ipa-inline-transform.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
ipa-inline.c re PR middle-end/53136 (Use after free in ipa_make_edge_direct_to_target, cxx_printable_name_internal problem) 2012-04-30 23:34:35 +02:00
ipa-inline.h lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
ipa-prop.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
ipa-prop.h ipa-cp.c (ipa_value_from_jfunc): Make global. 2011-11-15 03:46:08 +00:00
ipa-pure-const.c cgraph.h (FOR_EACH_VARIABLE, [...]): New macros. 2012-04-16 12:04:17 +00:00
ipa-ref-inline.h lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
ipa-ref.c lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
ipa-ref.h lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
ipa-reference.c lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
ipa-reference.h
ipa-split.c cgraph.h: Update copyrights; 2012-04-14 10:24:59 +00:00
ipa-utils.c lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
ipa-utils.h
ipa.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
ira-build.c re PR rtl-optimization/40761 (IRA memory hog for insanely nested loops) 2012-01-19 20:46:31 +00:00
ira-color.c ira-color.c (setup_left_conflict_sizes_p): Process all conflicting objects. 2012-03-29 17:23:39 +00:00
ira-conflicts.c re PR rtl-optimization/40761 (IRA memory hog for insanely nested loops) 2012-01-19 20:46:31 +00:00
ira-costs.c dbgcnt.def (ira_move): New counter. 2012-04-12 12:53:17 +00:00
ira-emit.c dbgcnt.def (ira_move): New counter. 2012-04-12 12:53:17 +00:00
ira-int.h ira-int.h (ira_allocno_object_iter_cond): Avoid out-of-bound array access. 2012-04-19 12:44:07 +00:00
ira-lives.c re PR rtl-optimization/40761 (IRA memory hog for insanely nested loops) 2012-01-19 20:46:31 +00:00
ira.c ira.c (allocated_reg_info_size): New static variable. 2012-05-01 16:34:26 +00:00
ira.h
jump.c lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
langhooks-def.h cgraphunit.c: Update toplevel comment. 2012-04-25 16:31:42 +00:00
langhooks.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
langhooks.h cgraphunit.c: Update toplevel comment. 2012-04-25 16:31:42 +00:00
lcm.c
libfuncs.h
limitx.h
limity.h
lists.c reg-notes.def (DEP_CONTROL): New. 2011-10-21 13:35:44 +00:00
loop-doloop.c cfgloop.c (verify_loop_structure): Verify dominators before using them. 2012-03-05 15:39:39 +00:00
loop-init.c re PR rtl-optimization/52803 (ICE: in ira, at ira.c:3616 with -fno-move-loop-invariants on almost any code) 2012-04-02 11:59:47 +00:00
loop-invariant.c
loop-iv.c re PR tree-optimization/44688 (Excessive code-size growth at -O3) 2012-04-19 08:51:50 +00:00
loop-unroll.c re PR tree-optimization/44688 (Excessive code-size growth at -O3) 2012-04-19 08:51:50 +00:00
loop-unswitch.c cfgloop.c (verify_loop_structure): Verify dominators before using them. 2012-03-05 15:39:39 +00:00
lower-subreg.c Makefile.in (lower-subreg.o, [...]): Depend on lower-subreg.h. 2012-05-01 14:45:24 +00:00
lower-subreg.h Makefile.in (lower-subreg.o, [...]): Depend on lower-subreg.h. 2012-05-01 14:45:24 +00:00
lto-cgraph.c lto-symtab.c (lto_varpool_replace_node): Do not merge needed flags. 2012-04-22 21:28:07 +00:00
lto-compress.c
lto-compress.h
lto-opts.c re PR regression/50999 (g++.dg/lto/20081109 execute -O2 -flto -flto-partition=1to1 -fno-use-linker-plugin) 2011-11-08 13:41:57 +00:00
lto-section-in.c lto-streamer-out.c (write_symbol): Use proper 64-bit host type. 2011-12-13 21:59:39 +00:00
lto-section-out.c
lto-streamer-in.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
lto-streamer-out.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
lto-streamer.c
lto-streamer.h re PR lto/51573 (ICE (segfault) in lto_varpool_encoder_encode_initializer_p) 2011-12-19 15:57:02 +00:00
lto-symtab.c re PR middle-end/53136 (Use after free in ipa_make_edge_direct_to_target, cxx_printable_name_internal problem) 2012-04-30 23:34:35 +02:00
lto-wrapper.c re PR lto/51916 (FAIL: gcc.dg/lto/trans-mem-3 c_lto_trans-mem-3_0.o-c_lto_trans-mem-3_1.o link, -flto (internal compiler error)) 2012-01-23 14:07:41 +00:00
machmode.def
machmode.h re PR middle-end/52940 (conversion from MODE_PARTIAL_INT uses sign extension for unsigned types) 2012-04-26 14:20:39 +00:00
main.c
matrix-reorg.c cgraph.c (cgraph_node_name): Remove. 2012-04-18 06:54:33 +00:00
mcf.c
mkconfig.sh Move libgcc_tm_file to toplevel libgcc 2011-11-02 15:26:35 +00:00
mode-classes.def
mode-switching.c
modulo-sched.c re PR rtl-optimization/52095 (ICE compiling gcc.dg/sms-7.c: SEGV in fprintf) 2012-02-04 17:51:31 +01:00
omega.c
omega.h
omp-builtins.def
omp-low.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
opt-functions.awk
opt-gather.awk
opt-include.awk
opt-read.awk
optabs.c Add -fno-sync-libcalls. 2012-05-01 08:48:10 -07:00
optabs.h re PR middle-end/52353 (-ftrapv -fnon-call-exceptions does not work) 2012-03-05 13:08:55 +00:00
optc-gen.awk
optc-save-gen.awk
opth-gen.awk Check if MASK_/TARGET_ macros defined for extra_masks 2012-04-23 16:32:54 -07:00
opts-common.c opts-common.c (generate_canonical_option): Free opt_text it it has been allocated here and not stored anywhere. 2011-11-11 09:15:56 +01:00
opts-diagnostic.h
opts-global.c re PR lto/44965 (lto option code breaks file format with each added option) 2011-11-03 14:46:26 +00:00
opts.c opts.c (finish_options): Do not handle -Wmissing-noreturn here. 2012-04-29 09:15:30 +00:00
opts.h re PR lto/44965 (lto option code breaks file format with each added option) 2011-11-03 14:46:26 +00:00
output.h re PR other/52545 (output.h: SECTION_EXCLUDE flag clobbers SECTION_MACH_DEP) 2012-03-12 18:22:01 +00:00
params.c
params.def invoke.texi: Update copyright years. 2012-01-27 18:08:03 +04:00
params.h Check in patch/merge from cxx-mem-model Branch 2011-11-06 14:55:48 +00:00
passes.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
plugin.c [multiple changes] 2011-10-19 13:20:22 +00:00
plugin.def
plugin.h
pointer-set.c
pointer-set.h
postreload-gcse.c rtl.h (true_dependence, [...]): Remove varies parameter. 2012-01-24 19:03:33 +00:00
postreload.c postreload.c (reload_combine): Mark reg_state as invalid at volatile insns if there has been a use already. 2011-11-22 19:52:34 +00:00
predict.c cfgloop.h (estimated_loop_iterations_int): Ditch 'conservative' parameter. 2012-04-12 08:35:01 +00:00
predict.def
predict.h
prefix.c
prefix.h
pretty-print.c
pretty-print.h re PR c++/24985 (caret diagnostics) 2012-04-11 09:26:48 +00:00
print-rtl.c re PR tree-optimization/50693 (Loop optimization restricted by GOTOs) 2011-11-05 20:58:37 +01:00
print-tree.c tree.h (TREE_VECTOR_CST_ELTS): Remove. 2012-03-16 09:47:09 +00:00
profile.c re PR middle-end/44777 (ICE: SIGSEGV with -fprofile-use in gcc.c-torture/execute/comp-goto-2.c) 2012-01-05 20:54:16 +01:00
profile.h
read-md.c
read-md.h
read-rtl.c
real.c
real.h
realmpfr.c
realmpfr.h
recog.c recog.c (insn_invalid_p): Add IN_GROUP parameter and use validate_change to add clobbers if... 2012-04-24 07:01:52 +00:00
recog.h recog.c (insn_invalid_p): Add IN_GROUP parameter and use validate_change to add clobbers if... 2012-04-24 07:01:52 +00:00
ree.c re PR rtl-optimization/53160 (likely wrong code bug) 2012-05-02 09:13:49 +02:00
reg-notes.def Merge from transactional-memory branch. 2011-11-08 11:13:41 +00:00
reg-stack.c re PR debug/52132 (ICE in loc_descriptor) 2012-02-11 09:27:30 +01:00
regcprop.c tm.texi.in (MODE_CODE_BASE_REG_CLASS): Add address space argument. 2011-11-08 17:36:45 +00:00
reginfo.c Check for incompatible pointer sign extension 2012-04-11 12:31:45 -07:00
regmove.c regmove.c (fixup_match_2): Only access call_used_regs with hard regs. 2011-12-13 20:22:59 +00:00
regrename.c tm.texi.in (MODE_CODE_BASE_REG_CLASS): Add address space argument. 2011-11-08 17:36:45 +00:00
regrename.h regrename.h: New file. 2011-10-19 17:26:26 +00:00
regs.h
regset.h regset.h (fixed_reg_set_regset): Declare. 2011-11-06 22:58:54 +00:00
regstat.c
reload.c reload.c (find_reloads): Change the loop nesting when trying an alternative with swapped operands. 2012-04-26 08:15:45 +00:00
reload.h
reload1.c re PR rtl-optimization/52629 (out-of-bounds access in reload1.c) 2012-03-26 08:41:02 +00:00
reorg.c re PR rtl-optimization/52175 (ICE in maybe_record_trace_start after invalid dbr_schedule transformation) 2012-02-11 09:00:42 +00:00
resource.c resource.c (init_resource_info): Only consider EXIT_IGNORE_STACK if there is in epilogue. 2011-12-05 19:32:16 +00:00
resource.h
rtl-error.c
rtl-error.h
rtl.c re PR bootstrap/53021 (bootstrap failure on Linux/ia32) 2012-04-21 18:55:18 +00:00
rtl.def re PR bootstrap/53021 (bootstrap failure on Linux/ia32) 2012-04-21 18:55:18 +00:00
rtl.h Makefile.in (lower-subreg.o, [...]): Depend on lower-subreg.h. 2012-05-01 14:45:24 +00:00
rtlanal.c lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
rtlhooks-def.h
rtlhooks.c
sbitmap.c
sbitmap.h
sched-deps.c sched-deps.c (fixup_sched_groups): Rename to... 2012-04-26 15:49:44 +00:00
sched-ebb.c re PR rtl-optimization/48721 (ICE: verify_flow_info failed: missing barrier after block 6 with -foptimize-sibling-calls -fsched2-use-superblocks) 2011-11-30 19:53:46 +01:00
sched-int.h sched-int.h (_haifa_insn_data): Move priority_status. 2012-04-26 15:49:30 +00:00
sched-rgn.c common.opt (fsched-pressure-algorithm=): New option. 2012-04-26 15:49:13 +00:00
sched-vis.c sched-vis.c (print_value): Handle STRICT_LOW_PART. 2011-11-03 21:49:36 +01:00
sdbout.c Remove MIPS_DEBUGGING_INFO support 2012-03-14 18:01:06 +00:00
sdbout.h
sel-sched-dump.c
sel-sched-dump.h
sel-sched-ir.c re PR rtl-optimization/52250 (ICE: in sel_remove_bb, at sel-sched-ir.c:5213 with -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops -fselective-scheduling2 and other flags) 2012-03-06 11:31:43 +04:00
sel-sched-ir.h invoke.texi: Update copyright years. 2012-01-27 18:08:03 +04:00
sel-sched.c sel-sched.c (sel_global_init): Revert previous change. 2012-04-17 13:40:01 +00:00
sel-sched.h
sese.c
sese.h
simplify-rtx.c lto-symtab.c (lto_cgraph_replace_node): Update. 2012-04-18 09:57:53 +00:00
sparseset.c
sparseset.h
sreal.c
sreal.h
ssaexpand.h
stab.def
stack-ptr-mod.c
statistics.c
statistics.h
stmt.c targhooks.c (default_case_values_threshold): Fix code style nit. 2012-04-18 18:27:51 +00:00
stor-layout.c tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
store-motion.c re PR bootstrap/53021 (bootstrap failure on Linux/ia32) 2012-04-21 18:55:18 +00:00
streamer-hooks.c
streamer-hooks.h re PR lto/51573 (ICE (segfault) in lto_varpool_encoder_encode_initializer_p) 2011-12-19 15:57:02 +00:00
stringpool.c
symtab.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
sync-builtins.def re PR middle-end/51038 (29_atomics/atomic_flag/clear/1.cc test_and_set/explicit.cc implicit.cc) 2011-11-10 20:38:33 +00:00
system.h Remove MIPS_DEBUGGING_INFO support 2012-03-14 18:01:06 +00:00
target-def.h
target-globals.c Makefile.in (lower-subreg.o, [...]): Depend on lower-subreg.h. 2012-05-01 14:45:24 +00:00
target-globals.h Makefile.in (lower-subreg.o, [...]): Depend on lower-subreg.h. 2012-05-01 14:45:24 +00:00
target-hooks-macros.h
target.def ChangeLog entry: 2012-05-02 15:32:01 +00:00
target.h re PR tree-optimization/50031 (Sphinx3 has a 10% regression going from GCC 4.5 to GCC 4.6 on powerpc) 2012-02-10 16:38:37 +00:00
targhooks.c targhooks.c (default_case_values_threshold): Fix code style nit. 2012-04-18 18:27:51 +00:00
targhooks.h Merge from transactional-memory branch. 2011-11-08 11:13:41 +00:00
timevar.c
timevar.def re PR target/50038 (redundant zero extensions) 2011-12-21 11:52:27 +00:00
timevar.h
tlink.c re PR c++/51910 (-frepo linking failure) 2012-02-11 03:50:23 -05:00
toplev.c Makefile.in (lower-subreg.o, [...]): Depend on lower-subreg.h. 2012-05-01 14:45:24 +00:00
toplev.h toplev.h (tree_rest_of_compilation): Remove. 2012-04-10 11:56:05 +00:00
tracer.c re PR bootstrap/52808 (LTO bootstrap failed with bootstrap-profiled) 2012-04-04 12:12:00 +00:00
trans-mem.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
trans-mem.h Merge from transactional-memory branch. 2011-11-08 11:13:41 +00:00
tree-affine.c tree-affine.h (print_aff): Remove. 2012-03-30 08:52:32 +00:00
tree-affine.h tree-affine.h (print_aff): Remove. 2012-03-30 08:52:32 +00:00
tree-browser.c
tree-browser.def
tree-call-cdce.c
tree-cfg.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-cfgcleanup.c loop-init.c (loop_optimizer_init): If loops are preserved perform incremental initialization of required loop features. 2012-03-28 12:14:26 +00:00
tree-chrec.c re PR middle-end/52621 (ICE with -O3 -march=opteron in initialize_matrix_A, at tree-data-ref.c:1964) 2012-04-11 14:04:00 +00:00
tree-chrec.h re PR tree-optimization/52943 (likely wrong code bug caused by predictive commoning) 2012-04-12 11:38:47 +00:00
tree-complex.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-data-ref.c re PR tree-optimization/52943 (likely wrong code bug caused by predictive commoning) 2012-04-12 11:38:47 +00:00
tree-data-ref.h tree-affine.h (print_aff): Remove. 2012-03-30 08:52:32 +00:00
tree-dfa.c
tree-diagnostic.c Strip "<built-in>" loc from displayed expansion context 2012-04-30 13:42:12 +02:00
tree-diagnostic.h tree-pretty-print.h (default_tree_printer): Do not declare. 2012-04-24 19:21:21 +00:00
tree-dump.c tree-dump.c (dequeue_and_dump): Dump the three child nodes. 2012-04-20 10:56:29 +02:00
tree-dump.h
tree-eh.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-emutls.c lto-symtab.c (lto_cgraph_replace_node): Do not call mark_reahcable_node. 2012-04-23 11:13:46 +00:00
tree-flow-inline.h coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-flow.h tree-flow.h (is_hidden_global_store): Remove. 2012-04-27 11:58:20 +00:00
tree-if-conv.c tree-if-conv.c (main_tree_if_conversion): Move bb under ENABLE_CHECKING. 2012-04-24 14:18:40 +00:00
tree-inline.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-inline.h ipa-cp.c (ipa_value_from_jfunc): Make global. 2011-11-15 03:46:08 +00:00
tree-into-ssa.c tree-into-ssa (update_ssa): Avoid trailing whitespace in dump_file. 2012-02-24 10:39:38 +01:00
tree-iterator.c tree-iterator.c (append_to_statement_list_1): Handle case that *list_p is not a STMT_LIST. 2012-04-17 18:28:34 +00:00
tree-iterator.h
tree-loop-distribution.c cfgloop.c (verify_loop_structure): Verify dominators before using them. 2012-03-05 15:39:39 +00:00
tree-mudflap.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-mudflap.h
tree-nested.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-nomudflap.c re PR middle-end/51764 (mudflap does not work with LTO) 2012-01-05 15:08:42 +00:00
tree-nrv.c tree-nrv.c (tree_nrv): Release VDEFs. 2012-04-05 09:45:18 +00:00
tree-object-size.c builtins.def (BUILT_IN_STPNCPY_CHK): New definition. 2011-12-15 18:26:10 +01:00
tree-optimize.c Makefile.in (cgraphunit.o): Add $(EXCEPT_H) dependency. 2012-04-12 15:11:17 +00:00
tree-outof-ssa.c re PR lto/41159 ([LTO] ICE in insert_value_copy_on_edge, at tree-outof-ssa.c:225) 2011-12-21 09:22:58 +00:00
tree-parloops.c Correcting transform_to_exit_first_loop + fix to PR tree-optimization/46886 2012-04-22 10:36:13 +00:00
tree-pass.h cgraph.c (cgraph_node_name): Remove. 2012-04-18 06:54:33 +00:00
tree-phinodes.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-predcom.c invoke.texi: Update copyright years. 2012-01-27 18:08:03 +04:00
tree-pretty-print.c tree.h (TREE_VECTOR_CST_ELTS): Remove. 2012-03-16 09:47:09 +00:00
tree-pretty-print.h tree-pretty-print.h (default_tree_printer): Do not declare. 2012-04-24 19:21:21 +00:00
tree-profile.c lto-symtab.c (lto_varpool_replace_node): Do not merge needed flags. 2012-04-22 21:28:07 +00:00
tree-scalar-evolution.c re PR tree-optimization/52943 (likely wrong code bug caused by predictive commoning) 2012-04-12 11:38:47 +00:00
tree-scalar-evolution.h
tree-sra.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-ssa-address.c
tree-ssa-alias.c tree-flow.h (is_hidden_global_store): Remove. 2012-04-27 11:58:20 +00:00
tree-ssa-alias.h tree-flow.h (is_hidden_global_store): Remove. 2012-04-27 11:58:20 +00:00
tree-ssa-ccp.c tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
tree-ssa-coalesce.c re PR debug/51517 (Wrong debug information for pointers with negative strides.) 2011-12-15 12:05:37 +01:00
tree-ssa-copy.c tree-ssa-copy.c (propagate_tree_value_into_stmt): Use update_call_from_tree when propagating into a call. 2012-04-20 11:56:33 +00:00
tree-ssa-copyrename.c
tree-ssa-dce.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-ssa-dom.c tree-nrv.c (tree_nrv): Release VDEFs. 2012-04-05 09:45:18 +00:00
tree-ssa-dse.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-ssa-forwprop.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-ssa-ifcombine.c
tree-ssa-live.c re PR debug/50317 (missing DW_OP_GNU_implicit_pointer) 2011-12-03 17:39:56 +01:00
tree-ssa-live.h
tree-ssa-loop-ch.c re PR tree-optimization/46886 (wrong code with -ftree-parallelize-loops -fno-tree-ch) 2012-02-08 15:28:01 +00:00
tree-ssa-loop-im.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-ssa-loop-ivcanon.c
tree-ssa-loop-ivopts.c * tree-ssa-loop-ivopts.c (expr_invariant_in_loop_p): Bail out at NULL tree refs. 2012-04-23 10:04:48 +00:00
tree-ssa-loop-manip.c cfgloop.c (verify_loop_structure): Verify dominators before using them. 2012-03-05 15:39:39 +00:00
tree-ssa-loop-niter.c re PR tree-optimization/44688 (Excessive code-size growth at -O3) 2012-04-18 11:33:51 +00:00
tree-ssa-loop-prefetch.c tree-parloops.c (parallelize_loops): Also consult the upper bound for the number of iterations. 2012-04-12 10:13:22 +00:00
tree-ssa-loop-unswitch.c
tree-ssa-loop.c cfgloop.h (estimate_numbers_of_iterations_loop): Remove use_undefined_p parameter. 2012-04-18 08:55:41 +00:00
tree-ssa-math-opts.c tree-nrv.c (tree_nrv): Release VDEFs. 2012-04-05 09:45:18 +00:00
tree-ssa-operands.c gimple-iterator.c (gsi_remove): Return whether EH edges need to be cleanup. 2012-04-05 09:43:48 +00:00
tree-ssa-operands.h tree-ssa.c (verify_ssa): Verify SSA names in the loop over all SSA names. 2011-12-05 11:05:24 +00:00
tree-ssa-phiopt.c re PR tree-optimization/53163 (crash due to null ptr deref) 2012-05-02 11:55:32 +02:00
tree-ssa-phiprop.c
tree-ssa-pre.c re PR tree-optimization/38785 (huge performance regression on EEMBC bitmnp01) 2012-04-28 01:56:54 +00:00
tree-ssa-propagate.c re PR tree-optimization/51683 (__builtin_memcpy etc. with constant first argument optimized away by ccp) 2012-01-01 00:53:57 +01:00
tree-ssa-propagate.h
tree-ssa-reassoc.c re PR tree-optimization/52976 (Revision 186384 breaks the polyhedron tests aermod.f90 and doduc.f90 at -O3 -ffast-math) 2012-04-18 12:29:23 +00:00
tree-ssa-sccvn.c re PR tree-optimization/51879 (Missed tail merging with non-const/pure calls) 2012-04-27 06:12:49 +00:00
tree-ssa-sccvn.h re PR tree-optimization/51879 (Missed tail merging with non-const/pure calls) 2012-04-27 06:12:49 +00:00
tree-ssa-sink.c tree-flow.h (is_hidden_global_store): Remove. 2012-04-27 11:58:20 +00:00
tree-ssa-strlen.c tree-ssa-strlen.c: Include expr.h. 2011-10-27 21:04:43 +02:00
tree-ssa-structalias.c lto-symtab.c (lto_cgraph_replace_node): Merge needed instead of force flags. 2012-04-20 14:09:11 +00:00
tree-ssa-tail-merge.c tree-ssa-tail-merge.c (stmt_local_def): New function, factored out of same_succ_hash, with local_def inlined. 2012-04-14 05:49:15 +00:00
tree-ssa-ter.c
tree-ssa-threadedge.c
tree-ssa-threadupdate.c re PR tree-optimization/52912 (ICE: verify_ssa failed) 2012-04-11 08:12:33 +00:00
tree-ssa-uncprop.c
tree-ssa-uninit.c
tree-ssa.c Fix -Wuninitialized for -ftrack-macro-expansion 2012-04-30 13:42:25 +02:00
tree-ssanames.c tree-ssanames.c (release_dead_ssa_names): Compact the SSA version namespace as we release the freelist. 2012-04-05 11:30:52 +00:00
tree-stdarg.c re PR tree-optimization/51091 (FAIL: gcc.dg/tree-ssa/stdarg-2.c scan-tree-dump stdarg) 2011-11-11 20:57:23 +01:00
tree-stdarg.h
tree-streamer-in.c re PR c/52977 (internal compiler error: Segmentation fault with `-x c-header' or `-x cxx-header' option) 2012-04-16 13:21:30 +00:00
tree-streamer-out.c tree.h (TREE_VECTOR_CST_ELTS): Remove. 2012-03-16 09:47:09 +00:00
tree-streamer.c tree.h (enum size_type_kind): Add stk_ prefix to constants, convert in lowercase. 2012-03-20 08:47:27 +00:00
tree-streamer.h
tree-switch-conversion.c tree-switch-conversion.c (struct switch_conv_info): Add range_max, reorganize some fields and update comments. 2012-04-27 11:11:45 +00:00
tree-tailcall.c re PR middle-end/52285 (libgcrypt _gcry_burn_stack slowdown) 2012-02-16 23:20:27 +01:00
tree-vect-data-refs.c re PR tree-optimization/18437 (vectorizer failed for matrix multiplication) 2012-04-17 13:54:26 +00:00
tree-vect-generic.c Update Copyright year. 2012-03-28 16:45:21 +02:00
tree-vect-loop-manip.c tree-vectorizer.h (vect_loop_versioning): Adjust prototype. 2012-04-25 11:19:08 +00:00
tree-vect-loop.c coretypes.h (gimple_seq, [...]): Typedef as gimple. 2012-05-02 16:41:48 +00:00
tree-vect-patterns.c re PR tree-optimization/52891 (ICE in adjust_bool_pattern) 2012-04-23 12:13:39 +02:00
tree-vect-slp.c tree-vectorizer.h (_loop_vec_info.strided_stores): Rename to grouped_stores. 2012-04-10 16:09:03 +00:00
tree-vect-stmts.c re PR tree-optimization/18437 (vectorizer failed for matrix multiplication) 2012-04-17 13:54:26 +00:00
tree-vectorizer.c cgraph.h (FOR_EACH_VARIABLE, [...]): New macros. 2012-04-16 12:04:17 +00:00
tree-vectorizer.h tree-vectorizer.h (vect_loop_versioning): Adjust prototype. 2012-04-25 11:19:08 +00:00
tree-vrp.c re PR tree-optimization/53058 (Another ice in remove_range_assertions) 2012-04-25 13:35:38 +02:00
tree.c tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
tree.def tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands. 2012-04-18 18:10:17 +00:00
tree.h tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
treestruct.def
tsystem.h
typeclass.h
value-prof.c cgraph.h (FOR_EACH_VARIABLE, [...]): New macros. 2012-04-16 12:04:17 +00:00
value-prof.h
var-tracking.c re PR debug/51570 (FAIL: gcc.dg/guality/pr45003-[23].c) 2012-04-13 15:55:52 +00:00
varasm.c tree.c (valid_constant_size_p): New function. 2012-05-02 11:22:31 +00:00
varpool.c cgraph.c (ld_plugin_symbol_resolution_names): Move to symtab.c 2012-04-30 17:55:29 +00:00
vec.c re PR c++/14179 (out of memory while parsing array with many initializers) 2012-01-16 11:40:26 -05:00
vec.h vec.h (VEC_BASE): If base is at offset 0 in the structure, use &(P)->base even if P is NULL. 2011-11-10 16:40:34 +01:00
vecir.h
vecprim.h
version.c
version.h
vmsdbg.h
vmsdbgout.c vmsdbgout.c (vmsdbgout_write_source_line): New function. 2011-12-13 13:30:18 +00:00
web.c
xcoff.h
xcoffout.c
xcoffout.h

README.Portability

Copyright (C) 2000, 2003 Free Software Foundation, Inc.

This file is intended to contain a few notes about writing C code
within GCC so that it compiles without error on the full range of
compilers GCC needs to be able to compile on.

The problem is that many ISO-standard constructs are not accepted by
either old or buggy compilers, and we keep getting bitten by them.
This knowledge until know has been sparsely spread around, so I
thought I'd collect it in one useful place.  Please add and correct
any problems as you come across them.

I'm going to start from a base of the ISO C90 standard, since that is
probably what most people code to naturally.  Obviously using
constructs introduced after that is not a good idea.

For the complete coding style conventions used in GCC, please read
http://gcc.gnu.org/codingconventions.html


String literals
---------------

Irix6 "cc -n32" and OSF4 "cc" have problems with constant string
initializers with parens around it, e.g.

const char string[] = ("A string");

This is unfortunate since this is what the GNU gettext macro N_
produces.  You need to find a different way to code it.

Some compilers like MSVC++ have fairly low limits on the maximum
length of a string literal; 509 is the lowest we've come across.  You
may need to break up a long printf statement into many smaller ones.


Empty macro arguments
---------------------

ISO C (6.8.3 in the 1990 standard) specifies the following:

If (before argument substitution) any argument consists of no
preprocessing tokens, the behavior is undefined.

This was relaxed by ISO C99, but some older compilers emit an error,
so code like

#define foo(x, y) x y
foo (bar, )

needs to be coded in some other way.


Avoid unnecessary test before free
----------------------------------

Since SunOS 4 stopped being a reasonable portability target,
(which happened around 2007) there has been no need to guard
against "free (NULL)".  Thus, any guard like the following
constitutes a redundant test:

  if (P)
    free (P);

It is better to avoid the test.[*]
Instead, simply free P, regardless of whether it is NULL.

[*] However, if your profiling exposes a test like this in a
performance-critical loop, say where P is nearly always NULL, and
the cost of calling free on a NULL pointer would be prohibitively
high, consider using __builtin_expect, e.g., like this:

  if (__builtin_expect (ptr != NULL, 0))
    free (ptr);



Trigraphs
---------

You weren't going to use them anyway, but some otherwise ISO C
compliant compilers do not accept trigraphs.


Suffixes on Integer Constants
-----------------------------

You should never use a 'l' suffix on integer constants ('L' is fine),
since it can easily be confused with the number '1'.


			Common Coding Pitfalls
			======================

errno
-----

errno might be declared as a macro.


Implicit int
------------

In C, the 'int' keyword can often be omitted from type declarations.
For instance, you can write

  unsigned variable;

as shorthand for

  unsigned int variable;

There are several places where this can cause trouble.  First, suppose
'variable' is a long; then you might think

  (unsigned) variable

would convert it to unsigned long.  It does not.  It converts to
unsigned int.  This mostly causes problems on 64-bit platforms, where
long and int are not the same size.

Second, if you write a function definition with no return type at
all:

  operate (int a, int b)
  {
    ...
  }

that function is expected to return int, *not* void.  GCC will warn
about this.

Implicit function declarations always have return type int.  So if you
correct the above definition to

  void
  operate (int a, int b)
  ...

but operate() is called above its definition, you will get an error
about a "type mismatch with previous implicit declaration".  The cure
is to prototype all functions at the top of the file, or in an
appropriate header.

Char vs unsigned char vs int
----------------------------

In C, unqualified 'char' may be either signed or unsigned; it is the
implementation's choice.  When you are processing 7-bit ASCII, it does
not matter.  But when your program must handle arbitrary binary data,
or fully 8-bit character sets, you have a problem.  The most obvious
issue is if you have a look-up table indexed by characters.

For instance, the character '\341' in ISO Latin 1 is SMALL LETTER A
WITH ACUTE ACCENT.  In the proper locale, isalpha('\341') will be
true.  But if you read '\341' from a file and store it in a plain
char, isalpha(c) may look up character 225, or it may look up
character -31.  And the ctype table has no entry at offset -31, so
your program will crash.  (If you're lucky.)

It is wise to use unsigned char everywhere you possibly can.  This
avoids all these problems.  Unfortunately, the routines in <string.h>
take plain char arguments, so you have to remember to cast them back
and forth - or avoid the use of strxxx() functions, which is probably
a good idea anyway.

Another common mistake is to use either char or unsigned char to
receive the result of getc() or related stdio functions.  They may
return EOF, which is outside the range of values representable by
char.  If you use char, some legal character value may be confused
with EOF, such as '\377' (SMALL LETTER Y WITH UMLAUT, in Latin-1).
The correct choice is int.

A more subtle version of the same mistake might look like this:

  unsigned char pushback[NPUSHBACK];
  int pbidx;
  #define unget(c) (assert(pbidx < NPUSHBACK), pushback[pbidx++] = (c))
  #define get(c) (pbidx ? pushback[--pbidx] : getchar())
  ...
  unget(EOF);

which will mysteriously turn a pushed-back EOF into a SMALL LETTER Y
WITH UMLAUT.


Other common pitfalls
---------------------

o Expecting 'plain' char to be either sign or unsigned extending.

o Shifting an item by a negative amount or by greater than or equal to
  the number of bits in a type (expecting shifts by 32 to be sensible
  has caused quite a number of bugs at least in the early days).

o Expecting ints shifted right to be sign extended.

o Modifying the same value twice within one sequence point.

o Host vs. target floating point representation, including emitting NaNs
  and Infinities in a form that the assembler handles.

o qsort being an unstable sort function (unstable in the sense that
  multiple items that sort the same may be sorted in different orders
  by different qsort functions).

o Passing incorrect types to fprintf and friends.

o Adding a function declaration for a module declared in another file to
  a .c file instead of to a .h file.