Ilya Enkovich - [PATCH, CHKP, PR target/65044] Restrict pointer bounds checker with Sani (original) (raw)
This is the mail archive of the gcc-patches@gcc.gnu.orgmailing list for the GCC 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] |
- From: Ilya Enkovich
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 16 Feb 2015 18:20:59 +0300
- Subject: [PATCH, CHKP, PR target/65044] Restrict pointer bounds checker with Sanitizer
- Authentication-results: sourceware.org; auth=none
Hi,
This patch restricts usage of Pointer Bounds Checker with Sanitizer. OK for trunk?
Thanks, Ilya
gcc/
2015-02-16 Ilya Enkovich ilya.enkovich@intel.com
PR target/65044
* toplev.c (process_options): Restrict Pointer Bounds Checker
usage with sanitizers.
gcc/testsuite/
2015-02-16 Ilya Enkovich ilya.enkovich@intel.com
PR target/65044
* gcc.target/i386/pr65044.c: New.
diff --git a/gcc/testsuite/gcc.target/i386/pr65044.c b/gcc/testsuite/gcc.target/i386/pr65044.c new file mode 100644 index 0000000..79ecb04 --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/pr65044.c @@ -0,0 +1,12 @@ +/* { dg-error "-fcheck-pointer-bounds is not supported with sanitizers" } / +/ { dg-do compile } / +/ { dg-require-effective-target mpx } / +/ { dg-options "-fcheck-pointer-bounds -mmpx -fsanitize=address" } */ + +extern int x[]; + +void +foo () +{
- x[0] = 0; +} diff --git a/gcc/toplev.c b/gcc/toplev.c index 99cf180..bf987c8 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1376,6 +1376,9 @@ process_options (void) { if (targetm.chkp_bound_mode () == VOIDmode) error ("-fcheck-pointer-bounds is not supported for this target");
if (flag_sanitize)
- error ("-fcheck-pointer-bounds is not supported with sanitizers"); } /* One region RA really helps to decrease the code size. */
- Follow-Ups:
- Re: [PATCH, CHKP, PR target/65044] Restrict pointer bounds checker with Sanitizer
* From: Jakub Jelinek
- Re: [PATCH, CHKP, PR target/65044] Restrict pointer bounds checker with Sanitizer
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |