]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-optimization/111736 - avoid address sanitizing of __seg_gs
authorRichard Biener <rguenther@suse.de>
Thu, 21 Mar 2024 07:30:39 +0000 (08:30 +0100)
committerUros Bizjak <ubizjak@gmail.com>
Tue, 23 Apr 2024 14:26:12 +0000 (16:26 +0200)
The following more thoroughly avoids address sanitizing accesses
to non-generic address-spaces.

PR tree-optimization/111736
* asan.cc (instrument_derefs): Do not instrument accesses
to non-generic address-spaces.

* gcc.target/i386/pr111736.c: New testcase.

(cherry picked from commit 134ef2a8cac1a5cc718739bd7d3b3472947c80d6)

gcc/asan.cc
gcc/testsuite/gcc.target/i386/pr111736.c [new file with mode: 0644]

index 0c5afa36cb85a2cd29b48f9c0ab58fcb3b0dbfa7..24cf2b8376bab17ae91fd89142a297090deb587c 100644 (file)
@@ -2712,6 +2712,10 @@ instrument_derefs (gimple_stmt_iterator *iter, tree t,
   if (VAR_P (inner) && DECL_HARD_REGISTER (inner))
     return;
 
+  /* Accesses to non-generic address-spaces should not be instrumented.  */
+  if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (TREE_TYPE (inner))))
+    return;
+
   poly_int64 decl_size;
   if ((VAR_P (inner) || TREE_CODE (inner) == RESULT_DECL)
       && offset == NULL_TREE
diff --git a/gcc/testsuite/gcc.target/i386/pr111736.c b/gcc/testsuite/gcc.target/i386/pr111736.c
new file mode 100644 (file)
index 0000000..231fdd0
--- /dev/null
@@ -0,0 +1,23 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -fsanitize=address" } */
+
+int __seg_gs m;
+
+int foo (void)
+{
+  return m;
+}
+
+extern int  __seg_gs n;
+
+int bar (void)
+{
+  return n;
+}
+
+int baz (int __seg_gs *o)
+{
+  return *o;
+}
+
+/* { dg-final { scan-assembler-not "asan_report_load" } } */