New symbol_summary class introduced.
[platform/upstream/gcc.git] / gcc / ChangeLog
index d9a4bde..d5e2b7b 100644 (file)
@@ -1,3 +1,794 @@
+2014-12-22  Martin Liska  <mliska@suse.cz>
+
+       * cgraph.h (symbol_table::allocate_cgraph_symbol): Summary UID
+       is filled up.
+       * symbol-summary.h: New file.
+       * gengtype.c (open_base_files): Add symbol-summary.h.
+       * toplev.c (general_init): Call constructor of symbol_table.
+
+2014-12-17  Oleg Endo  <olegendo@gcc.gnu.org>
+
+       PR target/55212
+       * config/sh/sh.md (*addsi3_compact): Add parentheses around &&
+       condition.  Add comments.
+
+2014-12-20  Segher Boessenkool  <segher@kernel.crashing.org>
+
+       PR target/64358
+       * config/rs6000/rs6000.c (rs6000_split_logical_inner): Swap the
+       input operands if only the second is inverted.
+       * config/rs6000/rs6000.md (*boolc<mode>3_internal1 for BOOL_128):
+       Swap BOOL_REGS_OP1 and BOOL_REGS_OP2.  Correct arguments to
+       rs6000_split_logical.
+       (*boolc<mode>3_internal2 for TI2): Swap operands[1] and operands[2].
+
+2014-12-20  Martin Uecker <uecker@eecs.berkeley.edu>
+
+       * doc/invoke.texi: Document -Wdiscarded-array-qualifiers.
+       * doc/extend.texi: Document new behavior for pointers to arrays
+       with qualifiers.
+
+2014-12-19  Jan Hubicka  <hubicka@ucw.cz>
+
+       * hash-table.h (struct pointer_hash): Fix formating.
+       (hash_table_higher_prime_index): Declare pure.
+       (hash_table_mod2, hash_table_mod1, mul_mod): Move inline;
+       assume that uint64_t always exists.
+       (hash_table<Descriptor, Allocator, false>): Use gcc_checking_assert.
+       (hash_table<Descriptor, Allocator, false>::expand ()): Fix formating.
+       (hash_table<Descriptor, Allocator, false>::clear_slot (value_type **slot)):
+       Use checking assert.
+       * hash-table.c: Remove #if 0 code.
+       (hash_table_higher_prime_index): Use gcc_assert.
+       (mul_mod, hash-table_mod1, hash_table_mod2): move to hash-table.h
+
+2014-12-19  Matthew Fortune  <matthew.fortune@imgtec.com>
+
+       * config.gcc: Support mips*-img-linux* and mips*-img-elf*.
+       * config/mips/mti-linux.h: Support mips32r6 as being the default arch.
+       * config/mips/t-img-elf: New.
+       * config/mips/t-img-linux: New.
+
+2014-12-19  Matthew Fortune  <matthew.fortune@imgtec.com>
+
+       * config.gcc: Add mipsisa64r6 and mipsisa32r6 cpu support.
+       * config/mips/constraints.md (ZD): Add r6 restrictions.
+       * config/mips/gnu-user.h (DRIVER_SELF_SPECS): Add MIPS_ISA_LEVEL_SPEC.
+       * config/mips/loongson.md
+       (<u>div<mode>3, <u>mod<mode>3): Move to mips.md.
+       * config/mips/mips-cpus.def (mips32r6, mips64r6): Define.
+       * config/mips/mips-modes.def (CCF): New mode.
+       * config/mips/mips-protos.h
+       (mips_9bit_offset_address_p): New prototype.
+       * config/mips/mips-tables.opt: Regenerate.
+       * config/mips/mips.c (MIPS_JR): Use JALR $, <reg> for R6.
+       (mips_rtx_cost_data): Add pseudo-processors W32 and W64.
+       (mips_9bit_offset_address_p): New function.
+       (mips_rtx_costs): Account for R6 multiply and FMA instructions.
+       (mips_emit_compare): Implement R6 FPU comparisons.
+       (mips_expand_conditional_move): Implement R6 selects.
+       (mips_expand_conditional_trap): Account for removed trap immediate.
+       (mips_expand_block_move): Disable inline move when LWL/LWR are removed.
+       (mips_print_float_branch_condition): Update for R6 FPU branches.
+       (mips_print_operand): Handle CCF mode compares.
+       (mips_interrupt_extra_call_saved_reg_p): Do not attempt to callee-save
+       MD_REGS for R6.
+       (mips_hard_regno_mode_ok_p): Support CCF mode.
+       (mips_mode_ok_for_mov_fmt_p): Likewise.
+       (mips_secondary_reload_class): CCFmode can be loaded directly.
+       (mips_set_fast_mult_zero_zero_p): Account for R6 multiply instructions.
+       (mips_option_override): Ensure R6 is used with fp64.  Set default
+       mips_nan modes.  Check for mips_nan support.  Prevent DSP with R6.
+       (mips_conditional_register_usage): Disable MD_REGS for R6. Disable
+       FPSW for R6.
+       (mips_mulsidi3_gen_fn): Support R6 multiply instructions.
+       * config/mips/mips.h (ISA_MIPS32R6, ISA_MIPS64R6): Define.
+       (TARGET_CPU_CPP_BUILTINS): Rework for mips32/mips64.
+       (ISA_HAS_JR): New macro.
+       (ISA_HAS_HILO): New macro.
+       (ISA_HAS_R6MUL): Likewise.
+       (ISA_HAS_R6DMUL): Likewise.
+       (ISA_HAS_R6DIV): Likewise.
+       (ISA_HAS_R6DDIV): Likewise.
+       (ISA_HAS_CCF): Likewise.
+       (ISA_HAS_SEL): Likewise.
+       (ISA_HAS_COND_TRAPI): Likewise.
+       (ISA_HAS_FP_MADDF_MSUBF): Likewise.
+       (ISA_HAS_LWL_LWR): Likewise.
+       (ISA_HAS_IEEE_754_LEGACY): Likewise.
+       (ISA_HAS_IEEE_754_2008): Likewise.
+       (ISA_HAS_PREFETCH_9BIT): Likewise.
+       (MIPSR6_9BIT_OFFSET_P): New macro.
+       (BASE_DRIVER_SELF_SPECS): Use MIPS_ISA_DRIVER_SELF_SPECS.
+       (DRIVER_SELF_SPECS): Use MIPS_ISA_LEVEL_SPEC.
+       (MULTILIB_ISA_DEFAULT): Handle mips32r6 and mips64r6.
+       (MIPS_ISA_LEVEL_SPEC): Likewise.
+       (MIPS_ISA_SYNCI_SPEC): Likewise.
+       (ISA_HAS_64BIT_REGS): Likewise.
+       (ISA_HAS_BRANCHLIKELY): Likewise.
+       (ISA_HAS_MUL3): Likewise.
+       (ISA_HAS_DMULT): Likewise.
+       (ISA_HAS_DDIV): Likewise.
+       (ISA_HAS_DIV): Likewise.
+       (ISA_HAS_MULT): Likewise.
+       (ISA_HAS_FP_CONDMOVE): Likewise.
+       (ISA_HAS_8CC): Likewise.
+       (ISA_HAS_FP4): Likewise.
+       (ISA_HAS_PAIRED_SINGLE): Likewise.
+       (ISA_HAS_MADD_MSUB): Likewise.
+       (ISA_HAS_FP_RECIP_RSQRT): Likewise.
+       * config/mips/mips.md (processor): Add w32 and w64.
+       (FPCC): New mode iterator.
+       (reg): Add CCF mode.
+       (fpcmp): New mode attribute.
+       (fcond): Add ordered, ltgt and ne codes.
+       (fcond): Update code attribute.
+       (sel): New code attribute.
+       (selinv): Likewise.
+       (ctrap<mode>4): Update condition.
+       (*conditional_trap_reg<mode>): New define_insn.
+       (*conditional_trap<mode>): Update condition.
+       (mul<mode>3): Expand R6 multiply instructions.
+       (<su>mulsi3_highpart): Likewise.
+       (<su>muldi3_highpart): Likewise.
+       (mul<mode>3_mul3_loongson): Rename...
+       (mul<mode>3_mul3_hilo): To this.  Add R6 mul instruction.
+       (<u>mulsidi3_32bit_r6): New expander.
+       (<u>mulsidi3_32bit): Restrict to pre-r6 multiplies.
+       (<u>mulsidi3_32bit_r4000): Likewise.
+       (<u>mulsidi3_64bit): Likewise.
+       (<su>mulsi3_highpart_internal): Likewise.
+       (mulsidi3_64bit_r6dmul): New instruction.
+       (<su>mulsi3_highpart_r6): Likewise.
+       (<su>muldi3_highpart_r6): Likewise.
+       (fma<mode>4): Likewise.
+       (movccf): Likewise.
+       (*sel<code><GPR:mode>_using_<GPR2:mode>): Likewise.
+       (*sel<mode>): Likewise.
+       (<u>div<mode>3): Moved from loongson.md.  Add R6 instructions.
+       (<u>mod<mode>3): Likewise.
+       (extvmisalign<mode>): Require ISA_HAS_LWL_LWR.
+       (extzvmisalign<mode>): Likewise.
+       (insvmisalign<mode>): Likewise.
+       (mips_cache): Account for R6 displacement field sizes.
+       (*branch_fp): Rename...
+       (*branch_fp_<mode>): To this.  Add CCFmode support.
+       (*branch_fp_inverted): Rename...
+       (*branch_fp_inverted_<mode>): To this.  Add CCFmode support.
+       (s<code>_<mode>): Rename...
+       (s<code>_<SCALARF:mode>_using_<FPCC:mode>): To this.  Add FCCmode
+       condition support.
+       (s<code>_<mode> swapped): Rename...
+       (s<code>_<SCALARF:mode>_using_<FPCC:mode> swapped): To this. Add
+       CCFmode condition support.
+       (mov<mode>cc GPR): Expand R6 selects.
+       (mov<mode>cc FPR): Expand R6 selects.
+       (*tls_get_tp_<mode>_split): Do not .set push for >= mips32r2.
+       * config/mips/netbsd.h (TARGET_CPU_CPP_BUILTINS): Update similarly to
+       mips.h.
+       (ASM_SPEC): Add mips32r6, mips64r6.
+       * config/mips/t-isa3264 (MULTILIB_OPTIONS, MULTILIB_DIRNAMES): Update
+       for mips32r6/mips64r6.
+       * doc/invoke.texi: Document -mips32r6,-mips64r6.
+       * doc/md.texi: Update comment for ZD constraint.
+
+2014-12-19  Segher Boessenkool  <segher@kernel.crashing.org>
+
+       PR target/64268
+       * combine.c (try_combine): Immediately return if any of I0,I1,I2
+       are the same insn.
+
+2014-12-19  Alan Lawrence  <alan.lawrence@arm.com>
+
+       * config/aarch64/aarch64.c (<LOGICAL:optab>_one_cmpl<mode>3):
+       Reparameterize to...
+       (<NLOGICAL:optab>_one_cmpl<mode>3): with extra SIMD-register variant.
+       (xor_one_cmpl<mode>3): New define_insn_and_split.
+
+       * config/aarch64/iterators.md (NLOGICAL): New define_code_iterator.
+
+2014-12-19  Alan Lawrence  <alan.lawrence@arm.com>
+
+       * config/aarch64/aarch64.md (<optab><mode>3, one_cmpl<mode>2):
+       Add SIMD-register variant.
+       * config/aarch64/iterators.md (Vbtype): Add value for SI.
+
+2014-12-19  Alan Lawrence  <alan.lawrence@arm.com>
+
+       * config/aarch64/aarch64.md (subdi3, adddi3_aarch64): Don't penalize
+       SIMD reg variant.
+
+2014-12-19  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/63569
+       * ipa-icf-gimple.c (func_checker::compare_operand): Add missing
+       comparison for volatile flag.
+
+2014-12-19  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
+       * doc/invoke.texi (ARM options): Remove mention of Advanced RISC
+       Machines.
+
+2014-12-19  Xingxing Pan  <xxingpan@marvell.com>
+
+       * config/arm/cortex-a9-neon.md (cortex_a9_neon_vmov): Change
+       reservation to cortex_a9_neon_dp.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * config/sh/sh.c (prepare_move_operands): Split HI/QImode load/store
+       to two move insns via r0.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * config/sh/predicates.md (arith_or_int_operand): New predicate.
+       * config/sh/sh.md (addsi3): Use arith_or_int_operand for operand 2.
+       Return fail if operands[0] and operands[1] are overlap when
+       operands[2] is integer constant.
+       (*addsi3_compact): Make it define_insn_and_split which splits
+       reg0 := reg1 + constant to reg0 = constant and reg0 := reg0 + reg1.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * config/sh/sh-protos.h (sh_movsf_ie_ra_split_p): Declare.
+       * config/sh/sh.c (sh_movsf_ie_ra_split_p): New function.
+       * config/sh/sh.md (movsi_ie): Use "mr" constraint for the 8-th
+       altarnative of operand 0.
+       (movesf_ie): Use "X" constraint instead of "Bsc".
+       (movsf_ie_ra): New insn_and_split.
+       (movsf): Use movsfie_ra when lra_in_progress is true.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * config/sh/predicates.md (general_movsrc_operand): Allow only
+       valid plus address expressions.
+       (general_movdst_operand): Likewise.
+       (t_reg_operand): Allow (zero_extend (reg t)).
+       * config/sh/sh-protos.h (sh_hard_regno_caller_save_mode): Declare.
+       * config/sh/sh.c (sh_hard_regno_caller_save_mode): New function.
+       (sh_secondary_reload): Return NO_REGS instead of FPUL_REGS in one
+       case.
+       * config/sh/sh.h (HARD_REGNO_CALLER_SAVE_MODE): Define.
+       * config/sh/sh.md (untyped_call): Clobber function value
+       registers before call.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * config/sh/sh.c (sh_lra_p): New function.
+       (TARGET_LRA_P): Define.
+       (sh_legitimize_reload_address): Return false if sh_lra_p is true.
+       * config/sh/sh.opt (mlra): New option.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * lra-constraints.c (process_address_1): Try if target can split
+       displacement with targetm.legitimize_address_displacement.
+       * target.def (legitimize_address_displacement): New hook.
+       * targhooks.c (default_legitimize_address_displacement): New function.
+       * targhooks.h (default_legitimize_address_displacement): Declare.
+       * config/sh/sh.c (sh_legitimize_address_displacement): New function.
+       (TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT): Define.
+       * doc/tm.texi.in (TARGET_LEGITIMIZE_ADDRESS_DISPLACEMENT): New hook.
+       * doc/tm.texi: Regenerate.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * lra-constraints.c (get_equiv): Don't return memory equivalence
+       when targetm.cannot_substitute_mem_equiv_p is true.
+       * target.def (cannot_substitute_mem_equiv_p): New hook.
+       * config/sh/sh.c (sh_cannot_substitute_mem_equiv_p): New function.
+       (TARGET_CANNOT_SUBSTITUTE_MEM_EQUIV_P): Define.
+       * doc/tm.texi.in (TARGET_CANNOT_SUBSTITUTE_MEM_EQUIV_P): New hook.
+       * doc/tm.texi: Regenerate.
+
+2014-12-19  Kaz Kojima  <kkojima@gcc.gnu.org>
+
+       * lra-constraints.c (process_address_1): Swap base_term and
+       index_term if INDEX_REG_CLASS is assigned to base_term already
+       when INDEX_REG_CLASS is a single register class.
+
+2014-12-18  Vladimir Makarov  <vmakarov@redhat.com>
+
+       * lra-constraints.c (lra-constraints.c): Exchange places of sclass
+       and dclass.
+
+2014-12-18  Vladimir Makarov  <vmakarov@redhat.com>
+
+       PR rtl-optimization/64291
+       * lra-remat.c (bad_for_rematerialization_p): Add UNPSEC_VLOATILE.
+       (create_cands): Process only output reload insn with potential
+       cands.
+
+2014-12-18  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * config/i386/i386.c (ix86_expand_call): Skip setting up RAX
+       register for -mskip-rax-setup when there are no parameters
+       passed in vector registers.
+       * config/i386/i386.opt (mskip-rax-setup): New option.
+       * doc/invoke.texi: Document -mskip-rax-setup.
+
+2014-12-18  Alan Lawrence  <alan.lawrence@arm.com>
+
+       * config/aarch64/aarch64-simd.md (aarch64_lshr_simddi): Handle shift
+       by 64 by moving const0_rtx.
+       (aarch64_ushr_simddi): Delete.
+
+       * config/aarch64/aarch64.md (enum unspec): Delete UNSPEC_USHR64.
+
+2014-12-18  Alan Lawrence  <alan.lawrence@arm.com>
+
+       * config/aarch64/aarch64.md (enum "unspec"): Remove UNSPEC_SSHR64.
+
+       * config/aarch64/aarch64-simd.md (aarch64_ashr_simddi): Change shift
+       amount to 63 if was 64.
+       (aarch64_sshr_simddi): Remove.
+
+2014-12-18  Wilco Dijkstra  <wilco.dijkstra@arm.com>
+
+       * gcc/config/aarch64/aarch64.c (TARGET_MIN_DIVISIONS_FOR_RECIP_MUL):
+       Define.
+       (aarch64_min_divisions_for_recip_mul): New function.
+
+2014-12-18  Wilco Dijkstra  <wilco.dijkstra@arm.com>
+
+       * config/aarch64/aarch64-protos.h (tune-params): Add code alignment
+       tuning parameters.
+       * gcc/config/aarch64/aarch64.c (generic_tunings): Add code alignment
+       tuning parameters.
+       (cortexa53_tunings): Likewise.
+       (cortexa57_tunings): Likewise.
+       (thunderx_tunings): Likewise.
+       (aarch64_override_options): Use new alignment tunings.
+
+2014-12-18  Martin Liska  <mliska@suse.cz>
+
+       PR tree-optimization/64330
+       * ipa-icf.c (sem_variable::parse): Add checking
+       for externally visible symbols and do not introduce
+       an alias for an external declaration.
+
+2014-12-18  Jan Hubicka  <hubicka@ucw.cz>
+
+       PR bootstrap/63573
+       * tree-inline.c (remap_gimple_stmt): Handle gimple_call_from_thunk_p
+       predicate.
+
+2014-12-18  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/64146
+       * ipa-icf.c (sem_function::merge): Check for
+       decl_binds_to_current_def_p is newly added to merge operation.
+
+2014-12-18  Bin Cheng  <bin.cheng@arm.com>
+
+       PR tree-optimization/62178
+       * tree-ssa-loop-ivopts.c (cheaper_cost_with_cand): New function.
+       (iv_ca_replace): New function.
+       (try_improve_iv_set): New parameter try_replace_p.
+       Break local optimal fixed-point by calling iv_ca_replace.
+       (find_optimal_iv_set_1): Pass new argument to try_improve_iv_set.
+
+2014-12-17  Dehao Chen  <dehao@google.com>
+
+       * auto-profile.c (afdo_annotate_cfg): Invoke update_ssa in the right
+       place.
+       (auto_profile): Recompute inline summary after processing cgraph node.
+
+2014-12-17  Oleg Endo  <olegendo@gcc.gnu.org>
+
+       PR target/51244
+       * config/sh/sh_treg_combine.cc (is_conditional_insn): New function.
+       (cbranch_trace): Add member rtx* condition_rtx_in_insn, initialize it
+       accordingly in constructor.
+       (cbranch_trace::branch_condition_rtx_ref): New function.
+       (cbranch_trace::branch_condition_rtx): Use branch_condition_rtx_ref.
+       (sh_treg_combine::try_invert_branch_condition): Invert condition rtx
+       in insn using reversed_comparison_code and validate_change instead of
+       invert_jump_1.
+       (sh_treg_combine::execute): Look for conditional insns in basic blocks
+       in addition to conditional branches.
+       * config/sh/sh.md (*movsicc_div0s): Remove combine patterns.
+
+2014-12-17  Oleg Endo  <olegendo@gcc.gnu.org>
+
+       PR target/51244
+       * config/sh/sh_treg_combine.cc (sh_treg_combine::try_optimize_cbranch):
+       Combine ccreg inversion and cbranch into inverted cbranch.
+
+2014-12-17  Vladimir Makarov  <vmakarov@redhat.com>
+
+       * lra-constraints.c (process_alt_operands): Remove non
+       allocatable hard regs when considering
+       ira_prohibited_class_mode_regs.
+
+2014-12-17  Jan Hubicka  <hubicka@ucw.cz>
+
+       * sreal.h (sreal::normalize): Implement inline.
+       (sreal::normalize_up): New function.
+       (sreal::normalize_down): New function.
+       * sreal.c (sreal::normalize): Remove.
+
+2014-12-17  James Greenhalgh  <james.greenhalgh@arm.com>
+
+       * config/aarch64/aarch64.md (generic_sched): Delete it.
+
+2014-12-17  Jan-Benedict Glaw  <jbglaw@lug-owl.de>
+
+       * config/msp430/msp430.c (msp430_asm_output_addr_const_extra): Fix
+       unused argument warning.
+
+2014-12-17  Pierre-Marie de Rodat  <derodat@adacore.com>
+
+       * dwarf2out.h (struct array_descr_info): Remove the base_decl field.
+       * dwarf2out.c (enum dw_scalar_form): New.
+       (struct loc_descr_context): New.
+       (add_scalar_info): New.
+       (add_bound_info): Add a context parameter.  Use add_scalar_info.
+       (loc_list_from_tree): Add a context parameter.  Handle PLACEHOLDER_EXPR
+       nodes for type-related expressions.  Likewise for base declarations.
+       (loc_descriptor_from_tree): Add a context parameter.
+       (subrange_type_die): Update calls to add_bound_info.
+       (tls_mem_loc_descriptor): Likewise.
+       (loc_list_for_address_of_addr_expr_of_indirect_ref): Add a context
+       parameter.  Update calls to loc_list_from_tree.
+       (add_subscript_info): Update calls to add_bound_info.
+       (gen_array_type_die): Update calls to loc_list_from_tree and to
+       add_bound_info.
+       (descr_info_loc): Remove.
+       (add_descr_info_field): Remove.
+       (gen_descr_array_type_die): Switch add_descr_info_field calls into
+       add_scalar_info/add_bound_info ones.
+       (gen_subprogram_die): Update calls to loc_list_from_tree.
+       (gen_variable_die): Likewise.
+
+2014-12-17  Pierre-Marie de Rodat  <derodat@adacore.com>
+
+       * dwarf2out.c (print_loc_descr): New.
+       (print_dw_val): New.
+       (print_attribute): New.
+       (print_loc_descr): New.
+       (print_die): Use print_dw_val.
+       (debug_dwarf_loc_descr): New.
+       * dwarf2out.h (debug_dwarf_loc_descr): New declaration.
+
+2014-12-17  Pierre-Marie de Rodat  <derodat@adacore.com>
+
+       * dwarf2out.c (gen_type_die_with_usage): Enable the array lang-hook
+       even when (dwarf_version < 3 && dwarf_strict).
+       (gen_descr_array_die): Do not output DW_AT_data_locationn,
+       DW_AT_associated, DW_AT_allocated and DW_AT_byte_stride DWARF
+       attributes when (dwarf_version < 3 && dwarf_strict).
+
+2014-12-17  Pierre-Marie de Rodat  <derodat@adacore.com>
+
+       * dwarf2out.h (enum array_descr_ordering): New.
+       (array_descr_dimen): Add a bounds_type structure field.
+       (struct array_descr_info): Add a field to hold index type information
+       and another one to hold ordering information.
+       * dwarf2out.c (gen_type_die_with_usage): Get the main variant before
+       invoking the array descriptor language hook.  Initialize the
+       array_descr_info structure before calling the lang-hook.
+       (gen_descr_array_type_die): Use gen_type_die if not processing the main
+       type variant.  Replace Fortran-specific code with generic one using
+       this new field.  Add a GNAT descriptive type, if any.  Output type
+       information for the array bound subrange, if any.
+
+2014-12-17  H.J. Lu  <hongjiu.lu@intel.com>
+           Jakub Jelinek  <jakub@redhat.com>
+           Uros Bizjak  <ubizjak@gmail.com>
+
+       PR target/61296
+       * config/i386/i386-opts.h (ix86_align_data): New enum.
+       * config/i386/i386.c (ix86_data_alignment): Return the ABI
+       alignment value for -malign-data=abi, the cachine line size
+       for -malign-data=cacheline and the older GCC compatible
+       alignment value for for -malign-data=compat.
+       * config/i386/i386.opt (malign-data=): New.
+       * doc/invoke.texi: Document -malign-data=.
+
+2014-12-17  Marek Polacek  <polacek@redhat.com>
+
+       PR middle-end/63568
+       * match.pd: Add (x & ~m) | (y & m) -> ((x ^ y) & m) ^ x pattern.
+
+2014-12-17  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/64322
+       * tree-vrp.c (extract_range_from_binary_expr_1): Attempt to derive
+       range for RSHIFT_EXPR even if vr0 range is not VR_RANGE or is symbolic.
+
+2014-12-17  Tobias Burnus  <burnus@net-b.de>
+
+       PR fortran/54687
+       * flag-types.h (gfc_init_local_real, gfc_fcoarray,
+       gfc_convert): New enums; moved from fortran/.
+
+2014-12-16  Jan Hubicka  <hubicka@ucw.cz>
+
+       * fibonacci_heap.h (min): Return m_data instead of non-existing data.
+
+2014-12-16  Jan Hubicka  <hubicka@ucw.cz>
+
+       * ipa-inline-analysis.c (will_be_nonconstant_predicate): Consider
+       return values of const calls as constants.
+       (estimate_function_body_sizes): Expect calls to have false predicates.
+
+2014-12-16  Jan Hubicka  <hubicka@ucw.cz>
+
+       * hwint.c (abs_hwi, absu_hwi): Move to ...
+       * hwint.h (abs_hwi, absu_hwi): ... here; make inline.
+
+2014-12-16  Marek Polacek  <polacek@redhat.com>
+
+       PR middle-end/64309
+       * match.pd: Add ((1 << A) & 1) != 0 -> A == 0 and
+       ((1 << A) & 1) == 0 -> A != 0.
+
+2014-12-16  Richard Biener  <rguenther@suse.de>
+
+       * genmatch.c (parser::parser): Initialize capture_ids.
+       (parser::parse_pattern): Properly allocate capture_ids before
+       using them.  Set capture_ids to zero when its lifetime is
+       supposed to finish.
+       (parser::parse_simplify): Allocate capture_ids only if
+       required.
+
+2014-12-16  Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>
+
+       * sreal.c: Include math.h later.
+
+2014-12-16  Felix Yang  <felix.yang@huawei.com>
+
+       PR rtl-optimization/64240
+       * ddg.c (mark_mem_use): Check *iter instead of *x.
+
+2014-12-16  Martin Liska  <mliska@suse.cz>
+
+       PR ipa/64278
+       * sreal.c (sreal::operator*): Replace std::abs with absu_hwi.
+
+2014-12-16  Igor Zamyatin  <igor.zamyatin@intel.com>
+
+       * config/i386/i386.c (ix86_address_cost): Add explicit restriction
+       to RTL level for the check for PIC register.
+
+2014-12-16  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/i386/gnu-user.h (TARGET_CAN_SPLIT_STACK): Move from here ...
+       * config/i386/gnu-user64.h (TARGET_CAN_SPLIT_STACK): ... and here ...
+       * config/i386/gnu-user-common.h (TARGET_CAN_SPLIT_STACK): ... to here.
+
+2014-12-16  Chung-Ju Wu  <jasonwucj@gmail.com>
+
+       PR target/64217
+       * config/nds32/nds32.md (casesi_internal): Add '=r' for clobber
+       register constraint.
+
+2014-12-15  DJ Delorie  <dj@redhat.com>
+
+       * config/rl78/rl78.h: Remove SHORT_IMMEDIATES_SIGN_EXTEND.
+
+2014-12-15  Jan Hubicka  <hubicka@ucw.cz>
+
+       PR lto/64043
+       * tree-streamer.c (preload_common_nodes): Skip preloading
+       of main_identifier_node, pid_type and optimization/option nodes.
+
+2014-12-15  Vladimir Makarov  <vmakarov@redhat.com>
+
+       PR rtl-optimization/63397
+       * ira-int.h (ira_overall_cost, ira_reg_cost, ira_mem_cost): Use
+       int64_t.
+       (ira_load_cost, ira_store_cost, ira_shuffle_cost): Ditto.
+       * ira.c (ira_overall_cost, ira_overall_cost_before): Ditto.
+       (ira_reg_cost, ira_mem_cost): Ditto.
+       (ira_load_cost, ira_store_cost, ira_shuffle_cost): Ditto.
+       (calculate_allocation_cost, do_reload): Use the right
+       format for int64_t values.
+
+2014-12-15  Jan Hubicka  <hubicka@ucw.cz>
+
+       * sreal.h (to_double): New method.
+       (shift): Do not ICE on 0.
+       * sreal.c: Include math.h
+       (sreal::to_double): New.
+
+2014-12-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/64316
+       * simplify-rtx.c (simplify_relational_operation_1): For
+       (eq/ne (and x y) x) and (eq/ne (and x y) y) optimizations use
+       CONST0_RTX instead of const0_rtx.
+
+2014-12-15  Vladimir Makarov  <vmakarov@redhat.com>
+
+       PR target/62642
+       * ira.c (rtx_moveable_p): Prevent UNSPEC_VOLATILE moves.
+
+2014-12-15  Vladimir Makarov  <vmakarov@redhat.com>
+
+       * ira-int.h (ira_prohibited_class_mode_regs): Remove.
+       (struct target_ira_int): Move x_ira_prohibited_class_mode_regs to
+       ...
+       * ira.h (struct target_ira): ... here.
+       (ira_prohibited_class_mode_regs): Define.
+       * lra-constraints.c (process_alt_operands): Add one more condition
+       to refuse alternative when reload pseudo of given class can not
+       hold value of given mode.
+
+2014-12-15  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/64312
+       * tree-ssa-sccvn.c (vn_reference_lookup_pieces): Use
+       vuse_ssa_val as callback to walk_non_aliased_vuses.
+       (vn_reference_lookup): Likewise.
+
+2014-12-15  Segher Boessenkool  <segher@kernel.crashing.org>
+
+       * gcc/config/rs6000/rs6000.md (*add>mode>3_imm_dot,
+       *add<mode>3_imm_dot2): Change the constraint for the second
+       alternative for operand 1 from "r" to "b".
+
+2014-12-15  Richard Biener  <rguenther@suse.de>
+
+       * vec.h (vec::safe_grow): Guard against a grow to zero size.
+
+2014-12-15  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/64295
+       * match.pd (X / CST -> X * (1 / CST): Use const_binop instead of
+       fold_binary to compute the constant to multiply with.
+
+2014-12-15  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/64246
+       * cfgloop.c (mark_loop_for_removal): Make safe against multiple
+       invocations on the same loop.
+
+2014-12-15  Marek Polacek  <polacek@redhat.com>
+
+       PR middle-end/64292
+       * fold-const.c (negate_expr_p): Add INTEGRAL_TYPE_P check.
+
+2014-12-15  Renlin Li  <renlin.li@arm.com>
+
+       * config/aarch64/aarch64.h (CLZ_DEFINED_VALUE_AT_ZERO): Return 2.
+       (CTZ_DEFINED_VALUE_AT_ZERO): Update to support more modes.
+
+2014-12-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR sanitizer/64265
+       * tsan.c (instrument_func_entry): Insert __tsan_func_entry
+       call on edge from entry block to single succ instead
+       of after labels of single succ of entry block.
+
+2014-12-15  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/64284
+       * tree-ssa-threadupdate.c (duplicate_seme_region): Mark
+       the loop for removal if we copied the loop header.
+
+2014-12-14  Jan Hubicka  <hubicka@ucw.cz>
+
+       PR ipa/61602
+       * cgraph.h (ipa_discover_readonly_nonaddressable_vars): Return bool.
+       * ipa.c (set_writeonly_bit): Track if reference was removed.
+       (ipa_discover_readonly_nonaddressable_vars): Return true if any
+       references was removed.
+       * ipa-reference.c (propagate): Return TODO_remove_functions if
+       reference was removed.
+
+2014-12-14  Jan Hubicka  <hubicka@ucw.cz>
+
+       * ipa.c (process_references): Fix conditoinal on flag_optimize
+
+2014-12-14  Jan Hubicka  <hubicka@ucw.cz>
+
+       PR ipa/61558
+       * symtab.c (symbol_table::insert_to_assembler_name_hash
+       symbol_table::unlink_from_assembler_name_hash): Do not ICE when
+       DECL_ASSEMBLER_NAME is NULL.
+
+2014-12-14  Jan Hubicka  <hubicka@ucw.cz>
+
+       * cgraphunit.c (analyze_functions): Always analyze targets of aliases.
+
+2014-12-14  Jan Hubicka  <hubicka@ucw.cz>
+
+       PR lto/64043
+       * tree.c (virtual_method_call_p): Return false when OTR type has
+       no BINFO.
+
+2014-12-14  Jan Hubicka  <hubicka@ucw.cz>
+
+       * cgraphunit.c (analyze_functions): Do not analyze extern inline
+       funtions when not optimizing; skip comdat locals.
+
+2014-12-14  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR rtl-optimization/64037
+       * combine.c (setup_incoming_promotions): Pass the argument
+       before any promotions happen to promote_function_mode.
+
+2014-12-12  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * config/nvptx/nvptx.h (ASM_OUTPUT_ALIGN): Define as a C statment.
+
+2014-12-12  Vladimir Makarov  <vmakarov@redhat.com>
+
+       PR target/64110
+       * lra-constraints.c (process_alt_operands): Refuse alternative
+       when reload pseudo of given class can not hold value of given
+       mode.
+
+2014-12-12  Thomas Schwinge  <thomas@codesourcery.com>
+
+       * gimple-walk.c (walk_gimple_op) <GIMPLE_OMP_FOR>: Also check
+       intermediate walk_tree results for for_incr.
+       <GIMPLE_OMP_TARGET>: Walk child_fn and data_arg, too.
+       <GIMPLE_OMP_CRITICAL, GIMPLE_OMP_ATOMIC_STORE>: Pretty printing.
+
+2014-12-12  Richard Sandiford  <richard.sandiford@arm.com>
+
+       PR middle-end/64182
+       * wide-int.h (wi::div_round, wi::mod_round): Fix rounding of tied
+       cases.
+       * double-int.c (div_and_round_double): Fix handling of unsigned
+       cases.  Use same rounding approach as wide-int.h.
+
+2014-12-12  Marek Polacek  <polacek@redhat.com>
+
+       PR middle-end/64274
+       * fold-const.c (fold_binary_loc): Add ANY_INTEGRAL_TYPE_P check.
+
+2014-12-12  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/64269
+       * tree-ssa-forwprop.c (simplify_builtin_call): Bail out if
+       len2 or diff are too large.
+
+2014-12-12  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/64280
+       * tree-cfg.c (replace_uses_by): Guard assert properly.
+
+2014-12-12  Anthony Green  <green@moxielogic.com>
+
+       * config/moxie/moxie.md: Add use of zex instruction.
+
+2014-12-12  Marc Glisse  <marc.glisse@inria.fr>
+
+       * real.h (HONOR_SNANS, HONOR_INFINITIES, HONOR_SIGNED_ZEROS,
+       HONOR_SIGN_DEPENDENT_ROUNDING): Replace macros with 3 overloaded
+       declarations.
+       * real.c (HONOR_NANS): Fix indentation.
+       (HONOR_SNANS, HONOR_INFINITIES, HONOR_SIGNED_ZEROS,
+       HONOR_SIGN_DEPENDENT_ROUNDING): Define three overloads.
+       * builtins.c (fold_builtin_cproj, fold_builtin_signbit,
+       fold_builtin_fmin_fmax, fold_builtin_classify): Simplify argument
+       of HONOR_*.
+       * fold-const.c (operand_equal_p, fold_comparison, fold_binary_loc):
+       Likewise.
+       * gimple-fold.c (gimple_val_nonnegative_real_p): Likewise.
+       * ifcvt.c (noce_try_move, noce_try_minmax, noce_try_abs): Likewise.
+       * omp-low.c (omp_reduction_init): Likewise.
+       * rtlanal.c (may_trap_p_1): Likewise.
+       * simplify-rtx.c (simplify_const_relational_operation): Likewise.
+       * tree-ssa-dom.c (record_equality, record_edge_info): Likewise.
+       * tree-ssa-phiopt.c (value_replacement, abs_replacement): Likewise.
+       * tree-ssa-reassoc.c (eliminate_using_constants): Likewise.
+       * tree-ssa-uncprop.c (associate_equivalences_with_edges): Likewise.
+
+2014-12-12  Jan Hubicka  <hubicka@ucw.cz>
+
+       * ipa-inline.c (ipa_inline): Fix condition on when
+       TODO_remove_unreachable_functions is needed.
+
+2014-12-12  Jan Hubicka  <hubicka@ucw.cz>
+
+       * ipa-devirt.c (possible_polymorphic_call_targets): Return early
+       if otr_type has no BINFO.
+
 2014-12-12  Zhenqiang Chen  <zhenqiang.chen@arm.com>
 
        PR rtl-optimization/63917
 
 2014-12-10  Richard Biener  <rguenther@suse.de>
 
-        * tree-ssa-loop-im.c
-        (move_computations_dom_walker::before_dom_children): Clear
-        SSA_NAME_RANGE_INFO on moved stmts.
+       * tree-ssa-loop-im.c
+       (move_computations_dom_walker::before_dom_children): Clear
+       SSA_NAME_RANGE_INFO on moved stmts.
 
 2014-12-10  Martin Liska  <mliska@suse.cz>
 
        (cortexa57_tunings): Likewise.
        (thunderx_tunings): Likewise.
 
-2014-12-09  Andrew Pinski  apinski@cavium.com
-            Kyrylo Tkachov  kyrylo.tkachov@arm.com
+2014-12-09  Andrew Pinski  <apinski@cavium.com>
+           Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
 
        * config/aarch64/aarch64.c (AARCH64_FUSE_CMP_BRANCH): New define.
        (thunderx_tunings): Add AARCH64_FUSE_CMP_BRANCH to fuseable_ops.
 
 2014-11-15  David Wohlferd <dw@LimeGreenSocks.com>
 
-        PR target/61692
+       PR target/61692
        * cfgexpand.c (expand_asm_operands): Count all inline asm params.
 
 2014-12-08  David Malcolm  <dmalcolm@redhat.com>
 2014-12-05  Ilya Enkovich  <ilya.enkovich@intel.com>
 
        PR target/64056
-       * doc/sourcebuild.texi: Add mempcpy and stpcpy for Effective-Target Keywords.
+       * doc/sourcebuild.texi: Add mempcpy and stpcpy for Effective-Target
+       Keywords.
 
 2014-12-05  Manuel López-Ibáñez  <manu@gcc.gnu.org>
 
        (aarch64_simd_vec_set<mode>,vashr<mode>3, vlshr<mode>3, vec_set<mode>,
        aarch64_mla<mode>, aarch64_mls<mode>, <su><maxmin><mode>3,
        aarch64_<sur>h<addsub><mode>): Change VQ_S to VDQ_BHSI.
-       
+
        (*aarch64_<su>mlal<mode>, *aarch64_<su>mlsl<mode>,
        aarch64_<ANY_EXTEND:su><ADDSUB:optab>l<mode>,
        aarch64_<ANY_EXTEND:su><ADDSUB:optab>w<mode>, aarch64_<sur>shll_n<mode>):
 
 2014-11-21  Andrew Bennett  <andrew.bennett@imgtec.com>
 
-       * config/mips/mips.c (mips_process_sync_loop): Place a 
+       * config/mips/mips.c (mips_process_sync_loop): Place a
        nop in the delay slot of the branch likely instruction.
-       (mips_output_sync_loop): Ensure mips_branch_likely is 
+       (mips_output_sync_loop): Ensure mips_branch_likely is
        set before calling mips_output_sync_loop.
        (mips_sync_loop_insns): Likewise.
 
        * config/rs6000/predicates.md: Likewise.
        * config/rs6000/rs6000.c (num_insns_constant_wide): Likewise.
        (includes_rldic_lshift_p): Likewise.
-       (includes_rldicr_lshift_p): Likewise. 
+       (includes_rldicr_lshift_p): Likewise.
        * emit-rtl.c (const_wide_int_htab_hash): Likewise.
        * loop-iv.c (determine_max_iter): Likewise.
        (iv_number_of_iterations): Likewise.
 2014-11-19  Jan Hubicka  <hubicka@ucw.cz>
 
        PR bootstrap/63963
-       * tree-streamer-out.c (write_ts_function_decl_tree_pointers): Stream out
-       DECL_FUNCTION_SPECIFIC_TARGET
-       * tree-streamer-in.c (lto_input_ts_function_decl_tree_pointers): Stream in
-       DECL_FUNCTION_SPECIFIC_TARGET.
+       * tree-streamer-out.c (write_ts_function_decl_tree_pointers): Stream
+       out DECL_FUNCTION_SPECIFIC_TARGET
+       * tree-streamer-in.c (lto_input_ts_function_decl_tree_pointers): Stream
+       in DECL_FUNCTION_SPECIFIC_TARGET.
 
 2014-11-19  David Malcolm  <dmalcolm@redhat.com>
 
 
 2014-11-19  Renlin Li  <renlin.li@arm.com>
 
-    * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define __ARM_FP_FAST,
-       __ARM_FEATURE_FMA, __ARM_FP, __ARM_FEATURE_NUMERIC_MAXMIN, __ARM_NEON_FP.
+       * config/aarch64/aarch64.h (TARGET_CPU_CPP_BUILTINS): Define
+       __ARM_FP_FAST, __ARM_FEATURE_FMA, __ARM_FP,
+       __ARM_FEATURE_NUMERIC_MAXMIN, __ARM_NEON_FP.
 
 2014-11-19  Marek Polacek  <polacek@redhat.com>
 
 
 2014-11-18  Marat Zakirov  <m.zakirov@samsung.com>
 
-       * opts.c (finish_options): Disable aggressive opts for sanitizer.  
-       (common_handle_option): Move code to finish_options.  
+       * opts.c (finish_options): Disable aggressive opts for sanitizer.
+       (common_handle_option): Move code to finish_options.
 
 2014-11-18  Yury Gribov  <y.gribov@samsung.com>
 
 
 2014-11-17  Jan Hubicka  <hubicka@ucw.cz>
 
-       * tree.c (free_lang_data_in_decl): Set DECL_FUNCTION_SPECIFIC_OPTIMIZATION
-       to optimization_default_node.
+       * tree.c (free_lang_data_in_decl): Set
+       DECL_FUNCTION_SPECIFIC_OPTIMIZATION to optimization_default_node.
 
 2014-11-17  Jan Hubicka  <hubicka@ucw.cz>
 
        * ipa-polymorphic-call.c
        (ipa_polymorphic_call_context::speculation_consistent_p): Constify.
        (ipa_polymorphic_call_context::meet_speculation_with): New function.
-       (ipa_polymorphic_call_context::combine_with): Handle types in construction
-       better.
+       (ipa_polymorphic_call_context::combine_with): Handle types in
+       construction better.
        (ipa_polymorphic_call_context::equal_to): Do not bother about useless
        speculation.
        (ipa_polymorphic_call_context::meet_with): New function.
        * cgraph.h (class ipa_polymorphic_call_context): Add
        meet_width, meet_speculation_with; constify speculation_consistent_p.
-       * ipa-cp.c (ipa_context_from_jfunc): Handle speculation; combine with incomming
-       context.
+       * ipa-cp.c (ipa_context_from_jfunc): Handle speculation; combine
+       with incomming context.
        (propagate_context_accross_jump_function): Likewise; be more cureful.
        about set_contains_variable.
        (ipa_get_indirect_edge_target_1): Fix handling of dynamic type changes.
        (expand_thunk): Use get_untransformed_body.
        (cgraph_node::expand): Likewise.
        * tree-ssa-structalias.c (ipa_pta_execute): Skip inline clones.
-       * cgraph.c (release_function_body): Do not push cfun when CFG is not there.
+       * cgraph.c (release_function_body): Do not push cfun when CFG
+       is not there.
        (cgraph_node::get_untransformed_body): Break out from ...
        (cgraph_node::get_body): ... here; add code to apply all transforms.
        * cgraph.h (cgraph_node): Add get_untransformed_body.
 2014-11-15  Jan Hubicka <hubicka@ucw.cz>
 
        * lto-streamer-out.c (hash_tree): Use cl_optimization_hash.
-       * lto-streamer.h (cl_optimization_stream_out, cl_optimization_stream_in): Declare.
-       * optc-save-gen.awk: Generate cl_optimization LTO streaming and hashing routines.
+       * lto-streamer.h (cl_optimization_stream_out,
+       cl_optimization_stream_in): Declare.
+       * optc-save-gen.awk: Generate cl_optimization LTO streaming
+       and hashing routines.
        * opth-gen.awk: Add prototype of cl_optimization_hash.
        * tree-streamer-in.c (unpack_ts_optimization): Remove.
        (streamer_unpack_tree_bitfields): Use cl_optimization_stream_in.
        * config/pa/pa.md (trap): New insn.  Add "trap" to attribute type.
        Don't allow trap insn in in_branch_delay, in_nullified_branch_delay
        or in_call_delay.
-       
+
 2014-11-06  Steve Ellcey  <sellcey@imgtec.com>
 
        * config.gcc (mips*-mti-linux*): Remove gnu_ld and gas assignments.
        * sanopt.c: ...here.  New file.
 
 2014-11-04  Jiong Wang  <jiong.wang@arm.com>
-2014-11-04  Wilco Dijkstra  <wilco.dijkstra@arm.com>
+           Wilco Dijkstra  <wilco.dijkstra@arm.com>
 
        PR target/63293
        * config/aarch64/aarch64.c (aarch64_expand_epiloue): Add barriers before
 2014-10-31  Max Ostapenko  <m.ostapenko@partner.samsung.com>
 
        PR ipa/63696
-       * ipa-icf.c (sem_function::~sem_function): Change free to delete to avoid
-       alloc-dealloc mismatch with new, called in ipa_icf::sem_function::init.
+       * ipa-icf.c (sem_function::~sem_function): Change free to delete
+       to avoid alloc-dealloc mismatch with new, called in
+       ipa_icf::sem_function::init.
 
 2014-10-30  Felix Yang  <felix.yang@huawei.com>
 
        (enum asan_check_flags): Remove ASAN_CHECK_START_INSTRUMENTED and
        ASAN_CHECK_END_INSTRUMENTED.  Change ASAN_CHECK_LAST.
        (asan_expand_check_ifn): Remove start_instrumented and end_instrumented.
-       * builtins.c (expand_builtin): Include asan.h.  Don't expand string/memory
-       builtin functions that have interceptors if ASan is enabled.
+       * builtins.c (expand_builtin): Include asan.h.  Don't expand
+       string/memory builtin functions that have interceptors if ASan is
+       enabled.
 
 2014-10-28  Richard Biener  <rguenther@suse.de>
 
        (lds_fpscr, sts_fpscr): New insns.
        (toggle_sz, toggle_pr): Use SImode for FPSCR_REG instead of PSImode.
 
->>>>>>> .r217525
 2014-10-17  Eric Botcazou  <ebotcazou@adacore.com>
 
        * ipa-inline-transform.c (master_clone_with_noninline_clones_p): New.
 2014-10-17  Tom de Vries  <tom@codesourcery.com>
 
        PR rtl-optimization/61605
-       * regcprop.c (copyprop_hardreg_forward_1): Add copy_p and noop_p.  Don't
-       notice stores for noops.  Don't regard noops as copies.
+       * regcprop.c (copyprop_hardreg_forward_1): Add copy_p and noop_p.
+       Don't notice stores for noops.  Don't regard noops as copies.
 
 2014-10-17  Uros Bizjak  <ubizjak@gmail.com>
 
        PR lto/62026
        * cgraphclones.c (duplicate_thunk_for_node): Get body to have args
        to duplicate.
-       * lto-streamer-out.c (lto_output): Handle correctly thunks that was born
-       at WPA time.
+       * lto-streamer-out.c (lto_output): Handle correctly thunks that was
+       born at WPA time.
 
 2014-10-15  Vladimir Makarov  <vmakarov@redhat.com>
 
 
 2014-10-14  Jan Hubicka  <hubicka@ucw.cz>
 
-       * loop-unroll.c: (decide_unrolling_and_peeling): Rename to
+       * loop-unroll.c (decide_unrolling_and_peeling): Rename to
        (decide_unrolling): ... this one.
        (peel_loops_completely): Remove.
        (decide_peel_simple): Remove.
        (peel_loop_completely): Remove.
        (unroll_and_peel_loops): Rename to ...
        (unroll_loops): ... this one; handle only unrolling.
-       * cfgloop.h (lpt_dec): Remove LPT_PEEL_COMPLETELY and
-       LPT_PEEL_SIMPLE.
+       * cfgloop.h (lpt_dec): Remove LPT_PEEL_COMPLETELY and LPT_PEEL_SIMPLE.
        (UAP_PEEL): Remove.
        (unroll_and_peel_loops): Remove.
        (unroll_loops): New.
-       * passes.def: Replace
-       pass_rtl_unroll_and_peel_loops by pass_rtl_unroll_loops.
+       * passes.def: Replace pass_rtl_unroll_and_peel_loops
+       by pass_rtl_unroll_loops.
        * loop-init.c (gate_rtl_unroll_and_peel_loops,
        rtl_unroll_and_peel_loops): Rename to ...
        (gate_rtl_unroll_loops, rtl_unroll_loops): ... these; update.
        (pass_rtl_unroll_loops): ... this one.
        * tree-pass.h (make_pass_rtl_unroll_and_peel_loops): Remove.
        (make_pass_rtl_unroll_loops): New.
-       * tree-ssa-loop-ivcanon.c: (estimated_peeled_sequence_size, try_peel_loop): New.
+       * tree-ssa-loop-ivcanon.c (estimated_peeled_sequence_size,
+       try_peel_loop): New.
        (canonicalize_loop_induction_variables): Update.
 
 2014-10-14  Max Filippov  <jcmvbkbc@gmail.com>
 
        * config/msp430/msp430-modes.def (PSI): Add.
 
-       * config/msp430/msp430-protos.h (msp430_hard_regno_nregs_has_padding): New.
+       * config/msp430/msp430-protos.h (msp430_hard_regno_nregs_has_padding):
+       New.
        (msp430_hard_regno_nregs_with_padding): New.
        * config/msp430/msp430.c (msp430_scalar_mode_supported_p): New.
        (msp430_hard_regno_nregs_has_padding): New.
        (int_n_data): New.
        * tree.c (int_n_enabled_p): New.
        (int_n_trees): New.
-       (make_or_reuse_type): Check for all __intN types, not just
-       __int128.
+       (make_or_reuse_type): Check for all __intN types, not just __int128.
        (build_common_tree_nodes): Likewise.  Also fill in integer_typs[]
        entries.
        * tree.h (int128_integer_type_node): Remove.
        (int_n_enabled_p): New.
        (int_n_trees): New.
        * toplev.c (standard_type_bitsize): New.
-       (do_compile): Check which __intN types are enabled for the current
-       run.
+       (do_compile): Check which __intN types are enabled for the current run.
        * builtin-types.def (BT_INT128): Remove.
        (BT_UINT128): Remove.
        * machmode.def: Add macro to create __int128 for all targets.
        (blank_mode): Likewise.
        (INT_N): New.
        (make_int_n): New.
-       (emit_insn_modes_h): Count __intN entries and define
-       NUM_INT_N_ENTS.
+       (emit_insn_modes_h): Count __intN entries and define NUM_INT_N_ENTS.
        (emit_mode_int_n): New.
        (emit_insn_modes_c): Call it.
        * gimple.c (gimple_signed_or_unsigned_type): Check for all __intN
 2014-09-26  Jan Hubicka  <hubicka@ucw.cz>
 
        PR ipa/60665
-       * ipa-devirt.c (possible_polymorphic_call_targets): Silence clang warning.
+       * ipa-devirt.c (possible_polymorphic_call_targets): Silence
+       clang warning.
 
 2014-09-26  Jan Hubicka  <hubicka@ucw.cz>
 
        PR ipa/62121
-       * ipa-polymorphic-call.c (ipa_polymorphic_call_context::restrict_to_inner_class):
-       fix pasto in checking array size.
+       * ipa-polymorphic-call.c
+       (ipa_polymorphic_call_context::restrict_to_inner_class): Fix pasto
+       in checking array size.
 
 2014-09-26  Jan Hubicka  <hubicka@ucw.cz>
 
        * cgraph.c (cgraph_node::release_body): New argument keep_arguments
        introduced.
        * cgraph.h: Likewise.
-       * cgraphunit.c (cgraph_node::create_wrapper): Usage of new argument introduced.
-       * ipa-utils.h (polymorphic_type_binfo_p): Safe check for binfos created by Java.
-       * tree-ssa-alias.c (ao_ref_base_alias_set): Static function transformed to global.
+       * cgraphunit.c (cgraph_node::create_wrapper): Usage of new
+       argument introduced.
+       * ipa-utils.h (polymorphic_type_binfo_p): Safe check for binfos
+       created by Java.
+       * tree-ssa-alias.c (ao_ref_base_alias_set): Static function
+       transformed to global.
        * tree-ssa-alias.h: Likewise.
 
 2014-09-26  Jakub Jelinek  <jakub@redhat.com>
 
 2014-09-25  Jan Hubicka  <hubicka@ucw.cz>
 
-       * ipa-utils.h (subbinfo_with_vtable_at_offset, type_all_derivations_known_p,
-       type_known_to_have_no_deriavations_p, types_must_be_same_for_odr,
-       types_odr_comparable): Declare.
+       * ipa-utils.h (subbinfo_with_vtable_at_offset,
+       type_all_derivations_known_p, type_known_to_have_no_deriavations_p,
+       types_must_be_same_for_odr, types_odr_comparable): Declare.
        (polymorphic_type_binfo_p): Move here from ipa-devirt.c
        * ipa-polymorphic-call.c: New file.
        (contains_polymorphic_type_p, possible_placement_new,
        speculative and non-speculative answers, do just one at a time.
        Replace NONSPECULATIVE_TARGETSP parameter with SPECULATIVE flag.
        (dump_targets): Break out from ...
-       (dump_possible_polymorphic_call_targets): ... here; dump both speculative
-       and non-speculative lists.
+       (dump_possible_polymorphic_call_targets): ... here; dump both
+       speculative and non-speculative lists.
        (ipa_devirt): Update for new possible_polymorphic_call_targets API.
        * ipa-utils.h (possible_polymorphic_call_targets): Update.
 
        (ipa_polymorphic_call_context::set_by_decl): Cleanup comment.
        (ipa_polymorphic_call_context::set_by_invariant): Simplify.
        (ipa_polymorphic_call_context::ipa_polymorphic_call_context): Simplify.
-       (possible_polymorphic_call_targets): Trust context.restrict_to_inner_class
-       to suceed on all valid cases; remove confused sanity check.
+       (possible_polymorphic_call_targets): Trust
+       context.restrict_to_inner_class to suceed on all valid cases;
+       remove confused sanity check.
        (dump_possible_polymorphic_call_targets): Simplify.
 
 2014-09-24  Aldy Hernandez  <aldyh@redhat.com>
 
 2014-09-23  Jiong Wang  <jiong.wang@arm.com>
 
-       * shrink-wrap.c (try_shrink_wrapping): Check PIC_OFFSET_TABLE_REGNUM not
-       be INVALID_REGNUM.
+       * shrink-wrap.c (try_shrink_wrapping): Check PIC_OFFSET_TABLE_REGNUM
+       not be INVALID_REGNUM.
 
 2014-09-23  Thomas Schwinge  <thomas@codesourcery.com>
 
 
 2014-09-19  Jan Hubicka  <hubicka@ucw.cz>
 
-       * ipa-utils.h (ipa_polymorphic_call_context): Turn into class; add ctors.
-       (possible_polymorphic_call_targets, dump_possible_polymorphic_call_targets,
-       possible_polymorphic_call_target_p, possible_polymorphic_call_target_p): Simplify.
+       * ipa-utils.h (ipa_polymorphic_call_context): Turn into class;
+       add ctors.
+       (possible_polymorphic_call_targets,
+       dump_possible_polymorphic_call_targets,
+       possible_polymorphic_call_target_p,
+       possible_polymorphic_call_target_p): Simplify.
        (get_dynamic_type): Remove.
        * ipa-devirt.c (ipa_dummy_polymorphic_call_context): Remove.
        (clear_speculation): Bring to ipa-deivrt.h
        field refuse_visibility_changes.
        (symtab_node::get_create): New method.
        * fold-const.c (tree_single_nonzero_warnv_p): Use get_create.
-       * varasm.c (mark_weak): Verify that visibility change is
-       possible.
+       * varasm.c (mark_weak): Verify that visibility change is possible.
 
 2014-09-19  Michael Meissner  <meissner@linux.vnet.ibm.com>
 
        Strengthen param "insn" from rtx to rtx_insn *.
        * config/nds32/nds32.c (nds32_target_alignment): Likewise for
        local "insn".
-       * config/pa/pa-protos.h (pa_insn_refs_are_delayed): Likewise for
-       param.
+       * config/pa/pa-protos.h (pa_insn_refs_are_delayed): Likewise for param.
        * config/pa/pa.c (pa_output_function_epilogue): Likewise for local
        "insn".  Use method of rtx_sequence for typesafety.
        (branch_to_delay_slot_p): Strengthen param "insn" from rtx to
        (loop_align_max_skip): Likewise.
        (label_align_max_skip): Likewise.
        (jump_align_max_skip): Likewise.
-       * targhooks.h (default_label_align_after_barrier_max_skip):
-       Likewise.
+       * targhooks.h (default_label_align_after_barrier_max_skip): Likewise.
        (default_loop_align_max_skip): Likewise.
        (default_label_align_max_skip): Likewise.
        (default_jump_align_max_skip): Likewise.
        * config/ia64/vms.h (IA64_NO_LIBGCC_XFMODE)
        (IA64_NO_LIBGCC_TFMODE): Define.
        * config/msp430/msp430.h (LIBGCC2_HAS_DF_MODE): Remove.
-       * config/pdp11/pdp11.c (TARGET_SCALAR_MODE_SUPPORTED_P): New
-       macro.
+       * config/pdp11/pdp11.c (TARGET_SCALAR_MODE_SUPPORTED_P): New macro.
        (pdp11_scalar_mode_supported_p): New function.
        * config/rl78/rl78.h (LIBGCC2_HAS_DF_MODE): Remove.
        * config/rx/rx.h (LIBGCC2_HAS_DF_MODE): Remove.
        (arm_init_neon_builtins): Support NEON_COPYSIGNF.
        (arm_builtin_vectorized_function): Likewise.
        * config/arm/arm_neon_builtins.def: New macro for copysignf.
-       * config/arm/neon.md (neon_copysignf<mode>): New pattern for vector copysignf.
+       * config/arm/neon.md (neon_copysignf<mode>): New pattern for
+       vector copysignf.
 
 2014-09-09  Richard Sandiford  <richard.sandiford@arm.com>
 
        * hash-map.h (hash_map::hash_entry::ggc_mx): Likewise.
        (hash_map::hash_entry::pch_nx): Likewise.
        (hash_map::hash_entry::pch_nx_helper): Likewise.
-(hash_map::hash_map): Adjust.
-(hash_map::create_ggc): New function.
-(gt_ggc_mx): Likewise.
-(gt_pch_nx): Likewise.
+       (hash_map::hash_map): Adjust.
+       (hash_map::create_ggc): New function.
+       (gt_ggc_mx): Likewise.
+       (gt_pch_nx): Likewise.
        * hash-set.h (default_hashset_traits::ggc_mx): Likewise.
-(default_hashset_traits::pch_nx): Likewise.
-(hash_set::hash_entry::ggc_mx): Likewise.
-(hash_set::hash_entry::pch_nx): Likewise.
-(hash_set::hash_entry::pch_nx_helper): Likewise.
-(hash_set::hash_set): Adjust.
-(hash_set::create_ggc): New function.
-(hash_set::elements): Likewise.
-(gt_ggc_mx): Likewise.
-(gt_pch_nx): Likewise.
+       (default_hashset_traits::pch_nx): Likewise.
+       (hash_set::hash_entry::ggc_mx): Likewise.
+       (hash_set::hash_entry::pch_nx): Likewise.
+       (hash_set::hash_entry::pch_nx_helper): Likewise.
+       (hash_set::hash_set): Adjust.
+       (hash_set::create_ggc): New function.
+       (hash_set::elements): Likewise.
+       (gt_ggc_mx): Likewise.
+       (gt_pch_nx): Likewise.
        * hash-table.h (hash_table::hash_table): Adjust.
-(hash_table::m_ggc): New member.
+       (hash_table::m_ggc): New member.
        (hash_table::~hash_table): Adjust.
        (hash_table::expand): Likewise.
        (hash_table::empty): Likewise.
-(gt_ggc_mx): New function.
+       (gt_ggc_mx): New function.
        (hashtab_entry_note_pointers): Likewise.
-(gt_pch_nx): Likewise.
+       (gt_pch_nx): Likewise.
 
 2014-09-02  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
 
        (define_insn "vec_interleave_lowv4si<mask_name>"): Ditto.
        (define_insn "vec_interleave_highv16qi<mask_name>"): New.
        (define_insn "avx512bw_interleave_highv32hi<mask_name>"): Ditto.
-       (define_insn "<mask_codefor>avx512bw_interleave_lowv32hi<mask_name>"): Ditto.
+       (define_insn "<mask_codefor>avx512bw_interleave_lowv32hi<mask_name>"):
+       Ditto.
 
 2014-08-28  Alexander Ivchenko  <alexander.ivchenko@intel.com>
            Maxim Kuznetsov  <maxim.kuznetsov@intel.com>
        * cgraph.h (symtab_node):
        (bool needed_p (void)): created from decide_is_symbol_needed
        (bool referred_to_p (void)): created from referred_to_p
-       (static cgraph_node *get_for_asmname (tree asmname)): created from symtab_node_for_asm
+       (static cgraph_node *get_for_asmname (tree asmname)):
+       created from symtab_node_for_asm
        * cgraph.h (cgraph_node):
-       (void assemble_thunks_and_aliases (void)): created from assemble_thunks_and_aliases
+       (void assemble_thunks_and_aliases (void)):
+       created from assemble_thunks_and_aliases
        (void expand (void)): created from expand_function
-       (static void finalize_function (tree, bool)): created from cgraph_finalize_function
-       (static cgraph_local_info *local_info (tree decl)): created from cgraph_local_info
-       (static cgraph_global_info *global_info (tree)): created from cgraph_global_info
+       (static void finalize_function (tree, bool)):
+       created from cgraph_finalize_function
+       (static cgraph_local_info *local_info (tree decl)):
+       created from cgraph_local_info
+       (static cgraph_global_info *global_info (tree)):
+       created from cgraph_global_info
        (static cgraph_rtl_info *rtl_info (tree)): created from cgraph_rtl_info
        * cgraph.h (varpool_node):
        (static void add (tree decl): created from varpool_add_new_variable
        (void remove_caller (void)): created from cgraph_edge_remove_caller
        (void remove_callee (void)): created from cgraph_edge_remove_callee
        (void set_call_stmt (gimple new_stmt, bool update_speculative = true)):
-         created from cgraph_set_call_stmt
-       (void redirect_callee (cgraph_node *n)): created from cgraph_redirect_edge_callee
-       (cgraph_edge *make_direct (cgraph_node *callee)): created from cgraph_make_edge_direct
+       created from cgraph_set_call_stmt
+       (void redirect_callee (cgraph_node *n)): created from
+       cgraph_redirect_edge_callee
+       (cgraph_edge *make_direct (cgraph_node *callee)): created from
+       cgraph_make_edge_direct
        (cgraph_edge *make_speculative (cgraph_node *n2, gcov_type direct_count,
-         gimple redirect_call_stmt_to_callee (void)): created from cgraph_turn_edge_to_speculative
-       (void speculative_call_info (cgraph_edge *&direct, cgraph_edge *&indirect, ipa_ref *&reference)):
-         created from cgraph_speculative_call_info
-       (cgraph_edge * clone (cgraph_node *n, gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
-         int freq_scale, bool update_original)): created from cgraph_clone_edge
-       (cgraph_edge *resolve_speculation (tree callee_decl)): created from cgraph_resolve_speculation
-       (bool cannot_lead_to_return_p (void)): created from cannot_lead_to_return_p
+       gimple redirect_call_stmt_to_callee (void)): created from
+       cgraph_turn_edge_to_speculative
+       (void speculative_call_info (cgraph_edge *&direct,
+       cgraph_edge *&indirect, ipa_ref *&reference)): created from
+       cgraph_speculative_call_info
+       (cgraph_edge * clone (cgraph_node *n, gimple call_stmt,
+       unsigned stmt_uid, gcov_type count_scale,
+       int freq_scale, bool update_original)): created from cgraph_clone_edge
+       (cgraph_edge *resolve_speculation (tree callee_decl)):
+       created from cgraph_resolve_speculation
+       (bool cannot_lead_to_return_p (void)): created from
+       cannot_lead_to_return_p
        (bool recursive_p (void)): created from cgraph_edge_recursive_p
        (bool maybe_hot_p (void)): created from cgraph_maybe_hot_edge_p
-       (static unsigned int rebuild_edges (void)): created from rebuild_cgraph_edges
-       (static void rebuild_references (void)): created from cgraph_rebuild_references
+       (static unsigned int rebuild_edges (void)): created from
+       rebuild_cgraph_edges
+       (static void rebuild_references (void)): created from
+       cgraph_rebuild_references
        * cgraph.h (symbol_table):
        (create_reference): renamed from add_reference
        (maybe_create_reference): renamed from maybe_add_reference
        (varpool_node *first_variable (void)):new function
        (varpool_node *next_variable (varpool_node *node)):new function
        (varpool_node *first_static_initializer (void)):new function
-       (varpool_node *next_static_initializer (varpool_node *node)):new function
+       (varpool_node *next_static_initializer (varpool_node *node)):new
+       function
        (varpool_node *first_defined_variable (void)):new function
        (varpool_node *next_defined_variable (varpool_node *node)):new function
        (cgraph_node *first_defined_function (void)):new function
        (cgraph_node *first_function (void)):new function
        (cgraph_node *next_function (cgraph_node *node)):new function
        (cgraph_node *first_function_with_gimple_body (void)):new function
-       (asm_node *finalize_toplevel_asm (tree asm_str)): created from add_asm_node
+       (asm_node *finalize_toplevel_asm (tree asm_str)): created from
+       add_asm_node
        (bool remove_unreachable_nodes (bool before_inlining_p, FILE *file)):
-         created from symtab_remove_unreachable_nodes
-       (void remove_unreferenced_decls (void)): created from varpool_remove_unreferenced_decls
-       (void process_new_functions (void)): created from cgraph_process_new_functions
-       (void process_same_body_aliases (void)): created from cgraph_process_same_body_aliases
-       (bool output_variables (void)): created from varpool_node::output_variables
+       created from symtab_remove_unreachable_nodes
+       (void remove_unreferenced_decls (void)): created from
+       varpool_remove_unreferenced_decls
+       (void process_new_functions (void)): created from
+       cgraph_process_new_functions
+       (void process_same_body_aliases (void)): created from
+       cgraph_process_same_body_aliases
+       (bool output_variables (void)): created from
+       varpool_node::output_variables
        (void output_asm_statements (void)): created from output_asm_statements
-       (void finalize_compilation_unit (void)): created from finalize_compilation_unit
+       (void finalize_compilation_unit (void)): created from
+       finalize_compilation_unit
        (void compile (void)): created from compile
        (void output_weakrefs (void)): created from output_weakrefs
-       (cgraph_node *create_empty (void)): created from cgraph_node::create_empty
-       (cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee, gimple call_stmt,
-         gcov_type count, int freq, bool indir_unknown_callee)): created from cgraph_node::create_edge
+       (cgraph_node *create_empty (void)): created from
+       cgraph_node::create_empty
+       (cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee,
+       gimple call_stmt, gcov_type count, int freq,
+       bool indir_unknown_callee)): created from cgraph_node::create_edge
        (void free_edge (cgraph_edge *e)): created from cgraph_free_edge
        (cgraph_node *next_function_with_gimple_body (cgraph_node *node)):
-         created from cgraph_next_function_with_gimple_body
+       created from cgraph_next_function_with_gimple_body
        (void remove_edge_removal_hook (cgraph_edge_hook_list *)):
-         created from cgraph_remove_edge_removal_hook
-       (cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook, void *)):
-         created from cgraph_add_node_removal_hook
+       created from cgraph_remove_edge_removal_hook
+       (cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook,
+       void *)): created from cgraph_add_node_removal_hook
        (void remove_cgraph_removal_hook (cgraph_node_hook_list *)):
-         created from cgraph_remove_node_removal_hook
-       (varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook, void *)):
-         created from varpool_add_node_removal_hook
+       created from cgraph_remove_node_removal_hook
+       (varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook,
+       void *)): created from varpool_add_node_removal_hook
        (void remove_varpool_removal_hook (varpool_node_hook_list *)):
-         created from varpool_remove_node_removal_hook
-       (cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook, void *)):
-         created from cgraph_add_function_insertion_hook
+       created from varpool_remove_node_removal_hook
+       (cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook,
+       void *)): created from cgraph_add_function_insertion_hook
        (void remove_cgraph_insertion_hook (cgraph_node_hook_list *)):
-         created from cgraph_remove_function_insertion_hook
-       (varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook, void *)):
-         created from varpool_add_variable_insertion_hook
+       created from cgraph_remove_function_insertion_hook
+       (varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook,
+       void *)): created from varpool_add_variable_insertion_hook
        (void remove_varpool_insertion_hook (varpool_node_hook_list *)):
          created from varpool_remove_variable_insertion_hook
-       (cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook, void *)):
-         created from cgraph_add_edge_duplication_hook
+       (cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook,
+       void *)): created from cgraph_add_edge_duplication_hook
        (void remove_edge_duplication_hook (cgraph_2edge_hook_list *)):
-         created from cgraph_remove_edge_duplication_hook
-       (cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook, void *)):
-         created from cgraph_add_node_duplication_hook
+       created from cgraph_remove_edge_duplication_hook
+       (cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook,
+       void *)): created from cgraph_add_node_duplication_hook
        (void remove_cgraph_duplication_hook (cgraph_2node_hook_list *)):
-         created from cgraph_remove_node_duplication_hook
+       created from cgraph_remove_node_duplication_hook
        (void call_edge_removal_hooks (cgraph_edge *e)):
-         created from cgraph_call_edge_removal_hooks
+       created from cgraph_call_edge_removal_hooks
        (void call_cgraph_insertion_hooks (cgraph_node *node)):
-         created from call_function_insertion_hooks
+       created from call_function_insertion_hooks
        (void call_cgraph_removal_hooks (cgraph_node *node)):
-         created from cgraph_call_node_removal_hooks
-       (void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2)):
-         created from cgraph_node::call_duplication_hooks
+       created from cgraph_call_node_removal_hooks
+       (void call_cgraph_duplication_hooks (cgraph_node *node,
+       cgraph_node *node2)): created from cgraph_node::call_duplication_hooks
        (void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2)):
-         created from cgraph_call_edge_duplication_hooks
+       created from cgraph_call_edge_duplication_hooks
        (void call_varpool_removal_hooks (varpool_node *node)):
-         created from varpool_call_node_removal_hooks
+       created from varpool_call_node_removal_hooks
        (void call_varpool_insertion_hooks (varpool_node *node)):
-         created from varpool_call_variable_insertion_hooks
-       (void insert_to_assembler_name_hash (symtab_node *node, bool with_clones)):
-         created from insert_to_assembler_name_hash
-       (void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones)):
-         created from unlink_from_assembler_name_hash
+       created from varpool_call_variable_insertion_hooks
+       (void insert_to_assembler_name_hash (symtab_node *node,
+       bool with_clones)): created from insert_to_assembler_name_hash
+       (void unlink_from_assembler_name_hash (symtab_node *node,
+       bool with_clones)): created from unlink_from_assembler_name_hash
        (void symtab_prevail_in_asm_name_hash (symtab_node *node)):
-         created from symtab_prevail_in_asm_name_hash
+       created from symtab_prevail_in_asm_name_hash
        (void symtab_initialize_asm_name_hash (void)):
-         created from symtab_initialize_asm_name_hash
+       created from symtab_initialize_asm_name_hash
        (void change_decl_assembler_name (tree decl, tree name)):
-         created from change_decl_assembler_name
-       (void materialize_all_clones (void)): created from cgraph_materialize_all_clones
+       created from change_decl_assembler_name
+       (void materialize_all_clones (void)): created from
+       cgraph_materialize_all_clones
        (static hashval_t decl_assembler_name_hash (const_tree asmname)):
-         created from decl_assembler_name_hash
+       created from decl_assembler_name_hash
        (static bool decl_assembler_name_equal (tree decl, const_tree asmname)):
-         created from decl_assembler_name_equal
+       created from decl_assembler_name_equal
        (static hashval_t hash_node_by_assembler_name (const void *p)):
-         created from hash_node_by_assembler_name
+       created from hash_node_by_assembler_name
        (static int eq_assembler_name (const void *p1, const void *p2)):
-         created from eq_assembler_name
+       created from eq_assembler_name
 
 2014-08-25  Marek Polacek  <polacek@redhat.com>
 
 
 2014-08-18  Jan Hubicka  <hubicka@ucw.cz>
 
-       * ipa-visibility.c (update_visibility_by_resolution_info): Do no turn UNDEF
-       comdats as extern.
+       * ipa-visibility.c (update_visibility_by_resolution_info): Do no
+       turn UNDEF comdats as extern.
 
 2014-08-18  Jan Hubicka  <hubicka@ucw.cz>
 
            Kirill Yukhin  <kirill.yukhin@intel.com>
            Michael Zolotukhin  <michael.v.zolotukhin@intel.com>
 
-       * config/i386/i386.c: Rename ufloatv8siv8df_mask to ufloatv8siv8df2_mask.
+       * config/i386/i386.c: Rename ufloatv8siv8df_mask to
+       ufloatv8siv8df2_mask.
        * config/i386/i386.md
        (define_code_iterator any_float): New.
        (define_code_attr floatsuffix): New.
        * config/i386/sse.md
        (define_mode_iterator VF1_128_256VL): New.
        (define_mode_iterator VF2_512_256VL): New.
-       (define_insn "float<si2dfmodelower><mode>2<mask_name>"): Remove unnecessary
-       TARGET check.
+       (define_insn "float<si2dfmodelower><mode>2<mask_name>"): Remove
+       unnecessary TARGET check.
        (define_insn "ufloatv8siv8df<mask_name>"): Delete.
        (define_insn "<floatsuffix>float<sseintvecmodelower><mode>2<mask_name><round_name>"):
        New.
        * config/i386/i386.c (ix86_macro_fusion_pair_p): Reject 2nd
        arguments that are not conditional jumps.
 
-2014-08-04 Ganesh Gopalasubramanian  <Ganesh.Gopalasubramanian@amd.com>
+2014-08-04  Ganesh Gopalasubramanian  <Ganesh.Gopalasubramanian@amd.com>
 
-       * config/i386/driver-i386.c (host_detect_local_cpu): Handle AMD's extended
-       family information. Handle BTVER2 cpu with cpuid family value.
+       * config/i386/driver-i386.c (host_detect_local_cpu): Handle AMD's
+       extended family information. Handle BTVER2 cpu with cpuid family value.
 
 2014-08-04  Tom de Vries  <tom@codesourcery.com>
 
 
 2014-07-29  Jan Hubicka  <hubicka@ucw.cz>
 
-       * ipa-devirt.c (polymorphic_call_target_d): Rename nonconstruction_targets
-       to speculative_targets
+       * ipa-devirt.c (polymorphic_call_target_d): Rename
+       nonconstruction_targets to speculative_targets
        (get_class_context): Fix handling of contextes without outer type;
        avoid matching non-polymorphic types in LTO.
        (possible_polymorphic_call_targets): Trun nonconstruction_targetsp