]> git.ipfire.org Git - thirdparty/gcc.git/commit - libstdc++-v3/libsupc++/new_opvant.cc
Implement P0035R4, C++17 new of over-aligned types.
authorJason Merrill <jason@redhat.com>
Fri, 9 Sep 2016 21:22:15 +0000 (17:22 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 9 Sep 2016 21:22:15 +0000 (17:22 -0400)
commitaf63ba4b309ea3ff8946be59e8dba7333594f4ff
tree9648be877d043d0cd4ebb37ef5b0e82da08fd4f0
parent51389084ec8de8c5a1055c77a2df5a84c5597af6
Implement P0035R4, C++17 new of over-aligned types.

gcc/cp/
* cp-tree.h (enum cp_tree_index): Add CPTI_ALIGN_TYPE.
(align_type_node): New macro.
* call.c (build_operator_new_call): Handle C++17 aligned new.
(second_parm_is_size_t, build_op_delete_call): Likewise.
(non_placement_deallocation_fn_p): Likewise. Rename to
usual_deallocation_fn_p.
(aligned_allocation_fn_p, aligned_deallocation_fn_p): New.
* decl.c (cxx_init_decl_processing): Add aligned new support.
* init.c (type_has_new_extended_alignment): New.
(build_new_1): Handle aligned new.
* tree.c (vec_copy_and_insert): New.
gcc/c-family/
* c.opt: Add -faligned-new and -Waligned-new.
* c-common.c (max_align_t_align): Split out from...
(cxx_fundamental_alignment_p): ...here.
* c-common.h: Declare it.
* c-cppbuiltin.c (c_cpp_builtins): Handle aligned new.
libstdc++-v3/
* libsupc++/new: Declare aligned new/delete operators.
* config/abi/pre/gnu.ver: Export them.
* configure.ac: Check for aligned_alloc, posix_memalign, memalign,
_aligned_malloc.
* libsupc++/new_opa.cc: New.
* libsupc++/new_opant.cc: New.
* libsupc++/new_opva.cc: New.
* libsupc++/new_opva.cc: New.
* libsupc++/del_opa.cc: New.
* libsupc++/del_opant.cc: New.
* libsupc++/del_opsa.cc: New.
* libsupc++/del_opva.cc: New.
* libsupc++/del_opvant.cc: New.
* libsupc++/del_opvsa.cc: New.
* libsupc++/Makefile.am: Build them.

From-SVN: r240056
39 files changed:
gcc/c-family/ChangeLog
gcc/c-family/c-common.c
gcc/c-family/c-common.h
gcc/c-family/c-cppbuiltin.c
gcc/c-family/c.opt
gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/cp-tree.h
gcc/cp/decl.c
gcc/cp/decl2.c
gcc/cp/init.c
gcc/cp/tree.c
gcc/doc/invoke.texi
gcc/testsuite/g++.dg/cpp0x/Wattributes1.C
gcc/testsuite/g++.dg/cpp1z/aligned-new1.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1z/aligned-new2.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1z/aligned-new3.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1z/aligned-new4.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1z/aligned-new4a.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1z/aligned-new5.C [new file with mode: 0644]
gcc/testsuite/g++.dg/cpp1z/feat-cxx1z.C
libstdc++-v3/ChangeLog
libstdc++-v3/config.h.in
libstdc++-v3/config/abi/pre/gnu.ver
libstdc++-v3/configure
libstdc++-v3/configure.ac
libstdc++-v3/libsupc++/Makefile.am
libstdc++-v3/libsupc++/Makefile.in
libstdc++-v3/libsupc++/del_opa.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/del_opant.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/del_opsa.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/del_opva.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/del_opvant.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/del_opvsa.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/new
libstdc++-v3/libsupc++/new_opa.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/new_opant.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/new_opva.cc [new file with mode: 0644]
libstdc++-v3/libsupc++/new_opvant.cc [new file with mode: 0644]