summaryrefslogtreecommitdiff
path: root/gcc/builtins.c
diff options
context:
space:
mode:
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-20 09:05:04 +0000
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2013-12-20 09:05:04 +0000
commitec08f7b0e683045053277a9ba0f0f0864a2d4289 (patch)
tree1532e9443ebd8eec5317be98cd328850b93ce329 /gcc/builtins.c
parent433ee92e68029b15162b7c9a2f347d2a749317fb (diff)
downloadgcc-ec08f7b0e683045053277a9ba0f0f0864a2d4289.tar.gz
* ubsan.c: Include tree-ssanames.h, asan.h and gimplify-me.h.
(ubsan_type_descriptor): Handle BOOLEAN_TYPE and ENUMERAL_TYPE like INTEGER_TYPE. (instrument_bool_enum_load): New function. (ubsan_pass): Call it. (gate_ubsan): Also enable for SANITIZE_BOOL or SANITIZE_ENUM. * asan.c (create_cond_insert_point): No longer static. * asan.h (create_cond_insert_point): Declare. * sanitizer.def (BUILT_IN_UBSAN_HANDLE_LOAD_INVALID_VALUE): New built-in. * opts.c (common_handle_option): Handle -fsanitize=bool and -fsanitize=enum. * builtins.c (fold_builtin_memory_op): When sanitizing bool and enum loads, don't use enum or bool types for memcpy folding. * flag-types.h (SANITIZE_BOOL, SANITIZE_ENUM): New. (SANITIZE_UNDEFINED): Or these in. * c-c++-common/ubsan/load-bool-enum.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@206143 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r--gcc/builtins.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c
index 4f1c8180a5b..5b6d39a8b60 100644
--- a/gcc/builtins.c
+++ b/gcc/builtins.c
@@ -8912,6 +8912,29 @@ fold_builtin_memory_op (location_t loc, tree dest, tree src,
off0 = build_int_cst (build_pointer_type_for_mode (char_type_node,
ptr_mode, true), 0);
+ /* For -fsanitize={bool,enum} make sure the load isn't performed in
+ the bool or enum type. */
+ if (((flag_sanitize & SANITIZE_BOOL)
+ && TREE_CODE (desttype) == BOOLEAN_TYPE)
+ || ((flag_sanitize & SANITIZE_ENUM)
+ && TREE_CODE (desttype) == ENUMERAL_TYPE))
+ {
+ tree destitype
+ = lang_hooks.types.type_for_mode (TYPE_MODE (desttype),
+ TYPE_UNSIGNED (desttype));
+ desttype = build_aligned_type (destitype, TYPE_ALIGN (desttype));
+ }
+ if (((flag_sanitize & SANITIZE_BOOL)
+ && TREE_CODE (srctype) == BOOLEAN_TYPE)
+ || ((flag_sanitize & SANITIZE_ENUM)
+ && TREE_CODE (srctype) == ENUMERAL_TYPE))
+ {
+ tree srcitype
+ = lang_hooks.types.type_for_mode (TYPE_MODE (srctype),
+ TYPE_UNSIGNED (srctype));
+ srctype = build_aligned_type (srcitype, TYPE_ALIGN (srctype));
+ }
+
destvar = dest;
STRIP_NOPS (destvar);
if (TREE_CODE (destvar) == ADDR_EXPR