aboutsummaryrefslogtreecommitdiff
path: root/gcc/target.h
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2004-06-29 14:50:35 +0000
committerPaul Brook <pbrook@gcc.gnu.org>2004-06-29 14:50:35 +0000
commit46e995e0e40e16ca159d6f5b116829700bbc269f (patch)
treef6a9a6cf28955476ec2789692fe97c33db01c297 /gcc/target.h
parent50a2de961ffa6022ac3084c94f76d1462be04845 (diff)
downloadgcc-46e995e0e40e16ca159d6f5b116829700bbc269f.zip
gcc-46e995e0e40e16ca159d6f5b116829700bbc269f.tar.gz
gcc-46e995e0e40e16ca159d6f5b116829700bbc269f.tar.bz2
target-def.h (TARGET_CXX_GET_COOKIE_SIZE, [...]): Define.
gcc/ * target-def.h (TARGET_CXX_GET_COOKIE_SIZE, TARGET_CXX_COOKIE_HAS_SIZE): Define. (TARGET_CXX): Use them. * target.h (struct gcc_target): Add cxx.get_cookie_size and cxx.cookie_has_size. * targhooks.c (default_cxx_get_cookie_size): New fucntion. * targhooks.h (default_cxx_get_cookie_size): Add prototype. * config/arm/arm.c (TARGET_CXX_GET_COOKIE_SIZE, TARGET_CXX_COOKIE_HAS_SIZE): Define. (arm_get_cookie_size, arm_cookie_has_size): New functions. * Make-lang.in (cp/init.o): Add dependency on $(TARGET_H). * doc/tm.texi: Document TARGET_CXX_GET_COOKIE_SIZE and TARGET_CXX_COOKIE_HAS_SIZE. gcc/cp/ * init.c: Include target.h. (get_cookie_size): Remove and replace with target hook. Update callers. (build_new_1): Store the element size in the cookie. libstdc++-v3/ * libsupc++/vec.cc (__cxa_vec_new2, __cxa_vec_new3): Store the element size in the cookie. testsuite/ * g++.old-deja/g++.abi/arraynew.C: Handle ARM EABI cookies. * g++.old-deja/g++.abi/cxa_vec.C: Allocate larger cookies for AEABI. From-SVN: r83854
Diffstat (limited to 'gcc/target.h')
-rw-r--r--gcc/target.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/target.h b/gcc/target.h
index 2c4b530..da37fcd 100644
--- a/gcc/target.h
+++ b/gcc/target.h
@@ -482,6 +482,11 @@ struct gcc_target
tree (*guard_type) (void);
/* Return true if only the low bit of the guard should be tested. */
bool (*guard_mask_bit) (void);
+ /* Returns the size of the array cookie for an array of type. */
+ tree (*get_cookie_size) (tree);
+ /* Returns true if the element size should be stored in the
+ array cookie. */
+ bool (*cookie_has_size) (void);
} cxx;
/* Leave the boolean fields at the end. */