Commit 9ca0032c by Marat Zakirov Committed by Marat Zakirov

opts.c (finish_options): Disable aggressive opts for sanitizer.

gcc

2014-11-18  Marat Zakirov  <m.zakirov@samsung.com>

	* opts.c (finish_options): Disable aggressive opts for sanitizer.  
	(common_handle_option): Move code to finish_options.  

gcc/testsuite

2014-11-18  Marat Zakirov  <m.zakirov@samsung.com>

	* c-c++-common/asan/aggressive-opts.c: New test.

From-SVN: r217690
parent 24ebfddf
2014-11-18 Marat Zakirov <m.zakirov@samsung.com>
* opts.c (finish_options): Disable aggressive opts for sanitizer.
(common_handle_option): Move code to finish_options.
2014-11-18 Yury Gribov <y.gribov@samsung.com> 2014-11-18 Yury Gribov <y.gribov@samsung.com>
PR sanitizer/63802 PR sanitizer/63802
...@@ -904,6 +904,19 @@ finish_options (struct gcc_options *opts, struct gcc_options *opts_set, ...@@ -904,6 +904,19 @@ finish_options (struct gcc_options *opts, struct gcc_options *opts_set,
if (opts->x_flag_sanitize_recover & SANITIZE_LEAK) if (opts->x_flag_sanitize_recover & SANITIZE_LEAK)
error_at (loc, "-fsanitize-recover=leak is not supported"); error_at (loc, "-fsanitize-recover=leak is not supported");
/* When instrumenting the pointers, we don't want to remove
the null pointer checks. */
if (opts->x_flag_sanitize & (SANITIZE_NULL | SANITIZE_NONNULL_ATTRIBUTE
| SANITIZE_RETURNS_NONNULL_ATTRIBUTE))
opts->x_flag_delete_null_pointer_checks = 0;
/* Aggressive compiler optimizations may cause false negatives. */
if (opts->x_flag_sanitize)
{
opts->x_flag_aggressive_loop_optimizations = 0;
opts->x_flag_strict_overflow = 0;
}
} }
#define LEFT_COLUMN 27 #define LEFT_COLUMN 27
...@@ -1622,12 +1635,6 @@ common_handle_option (struct gcc_options *opts, ...@@ -1622,12 +1635,6 @@ common_handle_option (struct gcc_options *opts,
if (code != OPT_fsanitize_) if (code != OPT_fsanitize_)
break; break;
/* When instrumenting the pointers, we don't want to remove
the null pointer checks. */
if (opts->x_flag_sanitize & (SANITIZE_NULL | SANITIZE_NONNULL_ATTRIBUTE
| SANITIZE_RETURNS_NONNULL_ATTRIBUTE))
opts->x_flag_delete_null_pointer_checks = 0;
/* Kernel ASan implies normal ASan but does not yet support /* Kernel ASan implies normal ASan but does not yet support
all features. */ all features. */
if (opts->x_flag_sanitize & SANITIZE_KERNEL_ADDRESS) if (opts->x_flag_sanitize & SANITIZE_KERNEL_ADDRESS)
......
2014-11-18 Marat Zakirov <m.zakirov@samsung.com>
* c-c++-common/asan/aggressive-opts.c: New test.
2014-11-18 Yury Gribov <y.gribov@samsung.com> 2014-11-18 Yury Gribov <y.gribov@samsung.com>
PR sanitizer/63802 PR sanitizer/63802
......
/* { dg-options "-fdump-tree-asan" } */
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "*" } { "-O3" } } */
int ext;
int
Perl_do_sv_dump()
{
int freq[10];
int i;
int max = 0;
if (max < ext)
max = ext;
for (i = 0; i <= max; i++)
if (freq[i])
ext = 0;
if (i > 20)
return freq[i];
else
return 0;
}
/* { dg-final { scan-tree-dump-times "ASAN_CHECK" 2 "asan1" } } */
/* { dg-final { cleanup-tree-dump "asan1" } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment