1. 28 Feb, 2019 12 commits
  2. 27 Feb, 2019 24 commits
  3. 26 Feb, 2019 4 commits
    • PR libstdc++/89477 constrain deduction guides for maps and sets · 08abbdda
      The Compare, Hash, and Pred template parameters should be constrained in
      the C++17 deduction guides for associative and unordered containers.
      
      The deduction guides for stack, queue and priority_queue are already
      constrained, but this patch makes them use the _RequireNotAllocator
      helper instead of reproducing the logic each time.
      
      	PR libstdc++/89477
      	* include/bits/alloc_traits.h (_RequireNotAllocator): New helper for
      	container deduction guides.
      	* include/bits/hashtable.h (_RequireNotAllocatorOrIntegral): Likewise.
      	* include/bits/stl_map.h (map): Use _RequireNotAllocator to constrain
      	parameters in deduction guides.
      	* include/bits/stl_multimap.h (multimap): Likewise.
      	* include/bits/stl_multiset.h (multiset): Likewise.
      	* include/bits/stl_queue.h (queue, priority_queue): Likewise.
      	* include/bits/stl_set.h (set): Likewise.
      	* include/bits/stl_stack.h (stack): Likewise.
      	* include/bits/unordered_map.h (unordered_map, unordered_multimap):
      	use _RequireNotAllocator and _RequireNotAllocatorOrIntegral to
      	constrain parameters in deduction guides.
      	* include/bits/unordered_set.h (unordered_set, unordered_multiset):
      	Likewise.
      	* testsuite/23_containers/map/cons/deduction.cc: Test additional
      	deduction cases.
      	* testsuite/23_containers/multiset/cons/deduction.cc: Likewise.
      	* testsuite/23_containers/set/cons/deduction.cc: Likewise.
      	* testsuite/23_containers/unordered_map/cons/deduction.cc: Likewise.
      	* testsuite/23_containers/unordered_multimap/cons/deduction.cc:
      	Likewise.
      	* testsuite/23_containers/unordered_multiset/cons/deduction.cc:
      	Likewise.
      	* testsuite/23_containers/unordered_set/cons/deduction.cc: Likewise.
      
      From-SVN: r269234
      Jonathan Wakely committed
    • re PR c++/89507 (bogus "size of array exceeds maximum object size") · 87359037
      	PR c++/89507
      	* tree.c (valid_constant_size_p): Deal with size INTEGER_CSTs
      	with types other than sizetype/ssizetype.
      
      	* g++.dg/other/new2.C: New test.
      
      From-SVN: r269233
      Jakub Jelinek committed
    • sparc-opts.h (enum processor_type): Rename to... · 1405bf4c
      	* config/sparc/sparc-opts.h (enum processor_type): Rename to...
      	(enum sparc_processor_type): ...this.
      	(enum sparc_code_model_type): New enumeration type.
      	(enum sparc_memory_model_type): Tweak comments.
      	* config/sparc/sparc.opt (mcpu): Adjust to above renaming.
      	(mtune): Likewise.
      	(mcmodel): Use sparc_code_model enumeration and variable.
      	(sparc_code_model): New enumeration.
      	(mdebug): Add Undocumented marker.
      	* config/sparc/sparc.h (enum cmodel): Delete.
      	(sparc_cmodel): Likewise.
      	(TARGET_CM_MEDLOW): Adjust to above renaming.
      	(TARGET_CM_MEDMID): Likewise.
      	(TARGET_CM_MEDANY): Likewise.
      	(TARGET_CM_EMBMEDANY): Likewise.
      	* config/sparc/sparc.c (sparc_cmodel): Delete.
      	(sparc_option_override): Remove string/value mapping support for the
      	code model.  Move code and memory model support to after the handling
      	of target flags.  Do private machine setup last.
      	(sparc_emit_set_symbolic_const64): Use sparc_code_model.
      	(sparc_legitimize_reload_address): Likewise.
      	(sparc_output_mi_thunk): Likewise.
      	* config/sparc/sparc.md (cpu): Adjust comment to above renaming.
      
      From-SVN: r269232
      Eric Botcazou committed
    • re PR tree-optimization/89500 (ICE: tree check: expected integer_cst, have… · 9bc83f27
      re PR tree-optimization/89500 (ICE: tree check: expected integer_cst, have ssa_name in get_len, at tree.h:5653)
      
      	PR tree-optimization/89500
      	* tree-ssa-strlen.c (stridx_strlenloc): Adjust comment.
      	(handle_builtin_strlen): Remove noncst_bound variable.  Always
      	optimize strnlen (x, 0) to 0.  Optimize strnlen (x, cst) to
      	cst if the first cst bytes starting at x are known to be non-zero,
      	even if the string is not zero terminated.  Don't try to modify
      	*si for strnlen.  Update strlen_to_stridx only for strlen or if
      	we can prove strnlen returns the same value as strlen would.
      
      	* gcc.dg/pr89500.c: New test.
      	* gcc.dg/Wstringop-overflow-10.c: New test.
      	* gcc.dg/strlenopt-60.c: New test.
      
      From-SVN: r269230
      Jakub Jelinek committed