summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2016-06-22 00:15:52 +0000
committerAnna Zaks <ganna@apple.com>2016-06-22 00:15:52 +0000
commit644d9d3a441fe115343a2ab498aa4210b6858ed6 (patch)
tree8dbf4e37363a43ced0d84d19462849fcb63ec9db
parent606c8d62fb807ef1b72f05e4341d3d1758665bbe (diff)
downloadbcm5719-llvm-644d9d3a441fe115343a2ab498aa4210b6858ed6.tar.gz
bcm5719-llvm-644d9d3a441fe115343a2ab498aa4210b6858ed6.zip
[asan] Do not instrument pointers with address space attributes
Do not instrument pointers with address space attributes since we cannot track them anyway. Instrumenting them results in false positives in ASan and a compiler crash in TSan. (The compiler should not crash in any case, but that's a different problem.) llvm-svn: 273339
-rw-r--r--llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp8
-rw-r--r--llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp9
-rw-r--r--llvm/test/Instrumentation/AddressSanitizer/asan_address_space_attr.ll32
-rw-r--r--llvm/test/Instrumentation/ThreadSanitizer/tsan_address_space_attr.ll33
4 files changed, 82 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index 79a36b313b4..396e23b88ce 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -952,6 +952,14 @@ Value *AddressSanitizer::isInterestingMemoryAccess(Instruction *I,
PtrOperand = XCHG->getPointerOperand();
}
+ // Do not instrument acesses from different address spaces; we cannot deal
+ // with them.
+ if (PtrOperand) {
+ Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType());
+ if (PtrTy->getPointerAddressSpace() != 0)
+ return nullptr;
+ }
+
// Treat memory accesses to promotable allocas as non-interesting since they
// will not cause memory violations. This greatly speeds up the instrumented
// executable at -O0.
diff --git a/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
index 22a26d49374..287d5bfa260 100644
--- a/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
@@ -276,6 +276,15 @@ static bool shouldInstrumentReadWriteFromAddress(Value *Addr) {
if (GV->getName() == "__llvm_gcov_ctr")
return false;
}
+
+ // Do not instrument acesses from different address spaces; we cannot deal
+ // with them.
+ if (Addr) {
+ Type *PtrTy = cast<PointerType>(Addr->getType()->getScalarType());
+ if (PtrTy->getPointerAddressSpace() != 0)
+ return false;
+ }
+
return true;
}
diff --git a/llvm/test/Instrumentation/AddressSanitizer/asan_address_space_attr.ll b/llvm/test/Instrumentation/AddressSanitizer/asan_address_space_attr.ll
new file mode 100644
index 00000000000..87d72bbe142
--- /dev/null
+++ b/llvm/test/Instrumentation/AddressSanitizer/asan_address_space_attr.ll
@@ -0,0 +1,32 @@
+; RUN: opt < %s -asan -S | FileCheck %s
+target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-apple-macosx10.11.0"
+
+; Checks that we do not instrument loads and stores comming from custom address space.
+; These result in invalid (false positive) reports.
+; int foo(int argc, const char * argv[]) {
+; void *__attribute__((address_space(256))) *gs_base = (((void * __attribute__((address_space(256))) *)0));
+; void *somevalue = gs_base[-1];
+; return somevalue;
+; }
+
+define i32 @foo(i32 %argc, i8** %argv) sanitize_address {
+entry:
+ %retval = alloca i32, align 4
+ %argc.addr = alloca i32, align 4
+ %argv.addr = alloca i8**, align 8
+ %gs_base = alloca i8* addrspace(256)*, align 8
+ %somevalue = alloca i8*, align 8
+ store i32 0, i32* %retval, align 4
+ store i32 %argc, i32* %argc.addr, align 4
+ store i8** %argv, i8*** %argv.addr, align 8
+ store i8* addrspace(256)* null, i8* addrspace(256)** %gs_base, align 8
+ %0 = load i8* addrspace(256)*, i8* addrspace(256)** %gs_base, align 8
+ %arrayidx = getelementptr inbounds i8*, i8* addrspace(256)* %0, i64 -1
+ %1 = load i8*, i8* addrspace(256)* %arrayidx, align 8
+ store i8* %1, i8** %somevalue, align 8
+ %2 = load i8*, i8** %somevalue, align 8
+ %3 = ptrtoint i8* %2 to i32
+ ret i32 %3
+}
+; CHECK-NOT: call void @__asan_report_load8
diff --git a/llvm/test/Instrumentation/ThreadSanitizer/tsan_address_space_attr.ll b/llvm/test/Instrumentation/ThreadSanitizer/tsan_address_space_attr.ll
new file mode 100644
index 00000000000..1495a989bc5
--- /dev/null
+++ b/llvm/test/Instrumentation/ThreadSanitizer/tsan_address_space_attr.ll
@@ -0,0 +1,33 @@
+; RUN: opt < %s -tsan -S | FileCheck %s
+target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
+target triple = "x86_64-apple-macosx10.11.0"
+
+; Checks that we do not instrument loads and stores comming from custom address space.
+; These result in crashing the compiler.
+; int foo(int argc, const char * argv[]) {
+; void *__attribute__((address_space(256))) *gs_base = (((void * __attribute__((address_space(256))) *)0));
+; void *somevalue = gs_base[-1];
+; return somevalue;
+; }
+
+define i32 @foo(i32 %argc, i8** %argv) sanitize_thread {
+entry:
+ %retval = alloca i32, align 4
+ %argc.addr = alloca i32, align 4
+ %argv.addr = alloca i8**, align 8
+ %gs_base = alloca i8* addrspace(256)*, align 8
+ %somevalue = alloca i8*, align 8
+ store i32 0, i32* %retval, align 4
+ store i32 %argc, i32* %argc.addr, align 4
+ store i8** %argv, i8*** %argv.addr, align 8
+ store i8* addrspace(256)* null, i8* addrspace(256)** %gs_base, align 8
+ %0 = load i8* addrspace(256)*, i8* addrspace(256)** %gs_base, align 8
+ %arrayidx = getelementptr inbounds i8*, i8* addrspace(256)* %0, i64 -1
+ %1 = load i8*, i8* addrspace(256)* %arrayidx, align 8
+ store i8* %1, i8** %somevalue, align 8
+ %2 = load i8*, i8** %somevalue, align 8
+ %3 = ptrtoint i8* %2 to i32
+ ret i32 %3
+}
+; CHECK-NOT: call void @__tsan_read
+; CHECK-NOT: addrspacecast
OpenPOWER on IntegriCloud