This is the mail archive of the libstdc++-cvs@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

r240056 - in /trunk: gcc/c-family/ChangeLog gcc...


Author: jason
Date: Fri Sep  9 21:22:15 2016
New Revision: 240056

URL: https://gcc.gnu.org/viewcvs?rev=240056&root=gcc&view=rev
Log:
	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.

Added:
    trunk/libstdc++-v3/libsupc++/del_opa.cc
    trunk/libstdc++-v3/libsupc++/del_opant.cc
    trunk/libstdc++-v3/libsupc++/del_opsa.cc
    trunk/libstdc++-v3/libsupc++/del_opva.cc
    trunk/libstdc++-v3/libsupc++/del_opvant.cc
    trunk/libstdc++-v3/libsupc++/del_opvsa.cc
    trunk/libstdc++-v3/libsupc++/new_opa.cc
    trunk/libstdc++-v3/libsupc++/new_opant.cc
    trunk/libstdc++-v3/libsupc++/new_opva.cc
    trunk/libstdc++-v3/libsupc++/new_opvant.cc
Modified:
    trunk/libstdc++-v3/ChangeLog
    trunk/libstdc++-v3/config.h.in
    trunk/libstdc++-v3/config/abi/pre/gnu.ver
    trunk/libstdc++-v3/configure
    trunk/libstdc++-v3/configure.ac
    trunk/libstdc++-v3/libsupc++/Makefile.am
    trunk/libstdc++-v3/libsupc++/Makefile.in
    trunk/libstdc++-v3/libsupc++/new

Changes in other areas also in this revision:
Added:
    trunk/gcc/testsuite/g++.dg/cpp1z/aligned-new1.C
    trunk/gcc/testsuite/g++.dg/cpp1z/aligned-new2.C
    trunk/gcc/testsuite/g++.dg/cpp1z/aligned-new3.C
    trunk/gcc/testsuite/g++.dg/cpp1z/aligned-new4.C
    trunk/gcc/testsuite/g++.dg/cpp1z/aligned-new4a.C
    trunk/gcc/testsuite/g++.dg/cpp1z/aligned-new5.C
Modified:
    trunk/gcc/c-family/ChangeLog
    trunk/gcc/c-family/c-common.c
    trunk/gcc/c-family/c-common.h
    trunk/gcc/c-family/c-cppbuiltin.c
    trunk/gcc/c-family/c.opt
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/call.c
    trunk/gcc/cp/cp-tree.h
    trunk/gcc/cp/decl.c
    trunk/gcc/cp/decl2.c
    trunk/gcc/cp/init.c
    trunk/gcc/cp/tree.c
    trunk/gcc/doc/invoke.texi
    trunk/gcc/testsuite/g++.dg/cpp0x/Wattributes1.C
    trunk/gcc/testsuite/g++.dg/cpp1z/feat-cxx1z.C


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]