1. 20 Jun, 2013 5 commits
  2. 19 Jun, 2013 24 commits
  3. 18 Jun, 2013 11 commits
    • compiler, runtime: Use function descriptors. · fdbc38a6
      This changes the representation of a Go value of function type
      from being a pointer to function code (like a C function
      pointer) to being a pointer to a struct.  The first field of
      the struct points to the function code.  The remaining fields,
      if any, are the addresses of variables referenced in enclosing
      functions.  For each call to a function, the address of the
      function descriptor is passed as the last argument.
      
      This lets us avoid generating trampolines, and removes the use
      of writable/executable sections of the heap.
      
      From-SVN: r200181
      Ian Lance Taylor committed
    • re PR libstdc++/57641 (std::timed_mutex.try_lock_until() is broken) · 25e00ab6
      	PR libstdc++/57641
      	* include/std/mutex (timed_mutex, recursive_timed_mutex): Move common
      	functionality to new __timed_mutex_impl mixin. Overload try_lock_until
      	to handle conversion between different clocks. Replace constrained
      	__try_lock_for_impl overloads with conditional increment.
      	* include/std/shared_mutex (shared_mutex::_Mutex): Use the new mixin.
      	* testsuite/30_threads/timed_mutex/try_lock_until/57641.cc: New.
      
      From-SVN: r200180
      Jonathan Wakely committed
    • Emit errors when always_inline functions cannot be inlined in -O0 mode. · bef8491a
      	* tree-inline.c (expand_call_inline): Allow the error to be flagged
      	in early inline pass.
      	* ipa-inline.c (inline_always_inline_functions): Pretend always_inline
      	functions are inlined during failures to flag an error.
      	* gcc.target/i386/inline_error.c: New test.
      	* gcc.c-torture/compile/pr44043.c: Fix test to expect an error.
      	* gcc.c-torture/compile/pr43791.c: Fix test to expect an error.
      
      From-SVN: r200179
      Sriraman Tallam committed
    • re PR c++/53211 (range-based 'for' expression of type 'const int []' has incomplete type) · 3dd55b2f
      /cp
      2013-06-18  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/53211
      	* pt.c (type_dependent_expression_p): Handle an array of unknown
      	bound depending on a variadic parameter.
      	* parser.c (cp_parser_range_for): Revert PR56794 changes.
      
      /testsuite
      2013-06-18  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/53211
      	* g++.dg/cpp0x/decltype55.C: New.
      
      From-SVN: r200178
      Paolo Carlini committed
    • Correct ChangeLog: · 299a5f6a
              PR rtl-optimization/57425
              PR rtl-optimization/57569
      -       * alias.c (write_dependence_p): Add new parameters mem_size,
      +       * alias.c (write_dependence_p): Add new parameters mem_mode,
      
      From-SVN: r200177
      Joern Rennecke committed
    • Fix a typo in comments in config/i386/i386.c · c21b257d
      	* config/i386/i386.c (initial_ix86_tune_features): Fix a typo
      	in comments.
      
      From-SVN: r200174
      H.J. Lu committed
    • arm.c (neon_vector_mem_operand): Add strict argument. · 33255ae3
      	* config/arm/arm.c (neon_vector_mem_operand): Add strict argument.
      	Permit virtual register pre-reload if !strict.
      	(coproc_secondary_reload_class): Adjust for neon_vector_mem_operand
      	change.
      	* config/arm/arm-protos.h (neon_vector_mem_operand): Adjust
      	prototype.
      	* config/arm/neon.md (movmisalign<mode>): Use
      	neon_perm_struct_or_reg_operand instead of
      	neon_struct_or_register_operand.
      	(*movmisalign<mode>_neon_load, *movmisalign<mode>_neon_store): Use
      	neon_permissive_struct_operand instead of neon_struct_operand.
      	* config/arm/constraints.md (Un, Um, Us): Adjust calls to
      	neon_vector_mem_operand.
      	* config/arm/predicates.md (neon_struct_operand): Adjust call to
      	neon_vector_mem_operand.
      	(neon_permissive_struct_operand): New.
      	(neon_struct_or_register_operand): Rename to...
      	(neon_perm_struct_or_reg_operand): This. Adjust call to
      	neon_vector_mem_operand.
      
      From-SVN: r200172
      Julian Brown committed
    • Makefile.in (LTO_STREAMER_H): Add pointer-set.h dependency. · d579fcda
      2013-06-18  Richard Biener  <rguenther@suse.de>
      
      	* Makefile.in (LTO_STREAMER_H): Add pointer-set.h dependency.
      	* lto-streamer.h: Include pointer-set.h.
      	(struct lto_decl_slot): Remove.
      	(struct lto_tree_ref_encoder): Make tree_hash_table a pointer-map.
      	Remove next_index entry.
      	(lto_hash_decl_slot_node, lto_eq_decl_slot_node,
      	lto_hash_type_slot_node, lto_eq_type_slot_node): Remove.
      	(lto_init_tree_ref_encoder): Adjust.
      	(lto_destroy_tree_ref_encoder): Likewise.
      	* lto-section-out.c (lto_hash_decl_slot_node, lto_eq_decl_slot_node,
      	lto_hash_type_slot_node, lto_eq_type_slot_node): Remove.
      	(lto_output_decl_index): Adjust.
      	(lto_new_out_decl_state): Likewise.
      	(lto_record_function_out_decl_state): Likewise.
      	* lto-streamer-out.c (copy_function): Likewise.
      
      From-SVN: r200171
      Richard Biener committed
    • Makefile.in (cgraphunit.o): Add $(CFGLOOP_H) dependency. · 31ee20ba
      2013-06-18  Richard Biener  <rguenther@suse.de>
      
      	* Makefile.in (cgraphunit.o): Add $(CFGLOOP_H) dependency.
      	* cgraphunit.c: Include cfgloop.h.
      	(init_lowered_empty_function): Initialize the loop tree.
      	(assemble_thunk): Insert new BBs into loops.
      
      From-SVN: r200169
      Richard Biener committed
    • tree-streamer.h (streamer_tree_cache_create): Adjust prototype. · ac0511f2
      2013-06-18  Richard Biener  <rguenther@suse.de>
      
      	* tree-streamer.h (streamer_tree_cache_create): Adjust prototype.
      	* tree-streamer.c (streamer_tree_cache_create): Make maintaining
      	the map from cache entry to cache index optional.
      	(streamer_tree_cache_replace_tree): Adjust accordingly.
      	(streamer_tree_cache_append): Likewise.
      	(streamer_tree_cache_delete): Likewise.
      	* lto-streamer-in.c (lto_data_in_create): Do not maintain the
      	streamer cache map from cache entry to cache index.
      	* lto-streamer-out.c (create_output_block): Adjust.
      
      	lto/
      	* lto.c (lto_register_var_decl_in_symtab): Pass in cache index
      	and use it.
      	(lto_register_function_decl_in_symtab): Likewise.
      	(cmp_tree): New function.
      	(unify_scc): Instead of using the streamer cache map from entry
      	to cache index match up the two maps we have by sorting them.
      	Adjust calls to lto_register_var_decl_in_symtab and
      	lto_register_function_decl_in_symtab.
      
      From-SVN: r200168
      Richard Biener committed
    • arm.md (attribute "insn"): Move multiplication and division attributes to... · 09485a08
      	* config/arm/arm.md (attribute "insn"): Move multiplication and division
      	attributes to...
      	(attribute "type"): ... here.  Remove mult.
      	(attribute "mul32"): New attribute.
      	(attribute "mul64"): Add umaal.
      	(*arm_mulsi3): Update attributes.
      	(*arm_mulsi3_v6): Likewise.
      	(*thumb_mulsi3): Likewise.
      	(*thumb_mulsi3_v6): Likewise.
      	(*mulsi3_compare0): Likewise.
      	(*mulsi3_compare0_v6): Likewise.
      	(*mulsi_compare0_scratch): Likewise.
      	(*mulsi_compare0_scratch_v6): Likewise.
      	(*mulsi3addsi): Likewise.
      	(*mulsi3addsi_v6): Likewise.
      	(*mulsi3addsi_compare0): Likewise.
      	(*mulsi3addsi_compare0_v6): Likewise.
      	(*mulsi3addsi_compare0_scratch): Likewise.
      	(*mulsi3addsi_compare0_scratch_v6): Likewise.
      	(*mulsi3subsi): Likewise.
      	(*mulsidi3adddi): Likewise.
      	(*mulsi3addsi_v6): Likewise.
      	(*mulsidi3adddi_v6): Likewise.
      	(*mulsidi3_nov6): Likewise.
      	(*mulsidi3_v6): Likewise.
      	(*umulsidi3_nov6): Likewise.
      	(*umulsidi3_v6): Likewise.
      	(*umulsidi3adddi): Likewise.
      	(*umulsidi3adddi_v6): Likewise.
      	(*smulsi3_highpart_nov6): Likewise.
      	(*smulsi3_highpart_v6): Likewise.
      	(*umulsi3_highpart_nov6): Likewise.
      	(*umulsi3_highpart_v6): Likewise.
      	(mulhisi3): Likewise.
      	(*mulhisi3tb): Likewise.
      	(*mulhisi3bt): Likewise.
      	(*mulhisi3tt): Likewise.
      	(maddhisi4): Likewise.
      	(*maddhisi4tb): Likewise.
      	(*maddhisi4tt): Likewise.
      	(maddhidi4): Likewise.
      	(*maddhidi4tb): Likewise.
      	(*maddhidi4tt): Likewise.
      	(divsi3): Likewise.
      	(udivsi3): Likewise.
      	* config/arm/thumb2.md (thumb2_mulsi_short): Update attributes.
      	(thumb2_mulsi_short_compare0): Likewise.
      	(thumb2_mulsi_short_compare0_scratch): Likewise.
      	* config/arm/arm1020e.md (1020mult1): Update attribute change.
      	(1020mult2): Likewise.
      	(1020mult3): Likewise.
      	(1020mult4): Likewise.
      	(1020mult5): Likewise.
      	(1020mult6): Likewise.
      	* config/arm/cortex-a15.md (cortex_a15_mult32): Update attribute change.
      	(cortex_a15_mult64): Likewise.
      	(cortex_a15_sdiv): Likewise.
      	(cortex_a15_udiv): Likewise.
      	* config/arm/arm1026ejs.md (mult1): Update attribute change.
      	(mult2): Likewise.
      	(mult3): Likewise.
      	(mult4): Likewise.
      	(mult5): Likewise.
      	(mult6): Likewise.
      	* config/arm/marvell-pj4.md (pj4_ir_mul): Update attribute change.
      	(pj4_ir_div): Likewise.
      	* config/arm/arm1136jfs.md (11_mult1): Update attribute change.
      	(11_mult2): Likewise.
      	(11_mult3): Likewise.
      	(11_mult4): Likewise.
      	(11_mult5): Likewise.
      	(11_mult6): Likewise.
      	(11_mult7): Likewise.
      	* config/arm/cortex-a8.md (cortex_a8_mul): Update attribute change.
      	(cortex_a8_mla): Likewise.
      	(cortex_a8_mull): Likewise.
      	(cortex_a8_smulwy): Likewise.
      	(cortex_a8_smlald): Likewise.
      	* config/arm/cortex-m4.md (cortex_m4_alu): Update attribute change.
      	* config/arm/cortex-r4.md (cortex_r4_mul_4): Update attribute change.
      	(cortex_r4_mul_3): Likewise.
      	(cortex_r4_mla_4): Likewise.
      	(cortex_r4_mla_3): Likewise.
      	(cortex_r4_smlald): Likewise.
      	(cortex_r4_mull): Likewise.
      	(cortex_r4_sdiv): Likewise.
      	(cortex_r4_udiv): Likewise.
      	* config/arm/cortex-a7.md (cortex_a7_mul): Update attribute change.
      	(cortex_a7_idiv): Likewise.
      	* config/arm/arm926ejs.md (9_mult1): Update attribute change.
      	(9_mult2): Likewise.
      	(9_mult3): Likewise.
      	(9_mult4): Likewise.
      	(9_mult5): Likewise.
      	(9_mult6): Likewise.
      	* config/arm/cortex-a53.md (cortex_a53_mul): Update attribute change.
      	(cortex_a53_sdiv): Likewise.
      	(cortex_a53_udiv): Likewise.
      	* config/arm/fa726te.md (726te_mult_op): Update attribute change.
      	* config/arm/fmp626.md (mp626_mult1): Update attribute change.
      	(mp626_mult2): Likewise.
      	(mp626_mult3): Likewise.
      	(mp626_mult4): Likewise.
      	* config/arm/fa526.md (526_mult1): Update attribute change.
      	(526_mult2): Likewise.
      	* config/arm/arm-generic.md (mult): Update attribute change.
      	(mult_ldsched_strongarm): Likewise.
      	(mult_ldsched): Likewise.
      	(multi_cycle): Likewise.
      	* config/arm/cortex-a5.md (cortex_a5_mul): Update attribute change.
      	* config/arm/fa606te.md (606te_mult1): Update attribute change.
      	(606te_mult2): Likewise.
      	(606te_mult3): Likewise.
      	(606te_mult4): Likewise.
      	* config/arm/cortex-a9.md (cortex_a9_mult16): Update attribute change.
      	(cortex_a9_mac16): Likewise.
      	(cortex_a9_multiply): Likewise.
      	(cortex_a9_mac): Likewise.
      	(cortex_a9_multiply_long): Likewise.
      	* config/arm/fa626te.md (626te_mult1): Update attribute change.
      	(626te_mult2): Likewise.
      	(626te_mult3): Likewise.
      	(626te_mult4): Likewise.
      
      From-SVN: r200167
      Sofiane Naci committed