diff options
author | Kostya Serebryany <kcc@google.com> | 2013-02-19 11:29:21 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2013-02-19 11:29:21 +0000 |
commit | 3ece9beaf195950480281f131056232a66c3349a (patch) | |
tree | 5e0013448aa1187977367463b6e1c2dffe01088c /llvm/test | |
parent | 8b6a4de64a13a57c8c3233b4fc6f74d892c6b2b1 (diff) | |
download | bcm5719-llvm-3ece9beaf195950480281f131056232a66c3349a.tar.gz bcm5719-llvm-3ece9beaf195950480281f131056232a66c3349a.zip |
[asan] instrument memory accesses with unusual sizes
This patch makes asan instrument memory accesses with unusual sizes (e.g. 5 bytes or 10 bytes), e.g. long double or
packed structures.
Instrumentation is done with two 1-byte checks
(first and last bytes) and if the error is found
__asan_report_load_n(addr, real_size) or
__asan_report_store_n(addr, real_size)
is called.
Also, call these two new functions in memset/memcpy
instrumentation.
asan-rt part will follow.
llvm-svn: 175507
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/Instrumentation/AddressSanitizer/basic.ll | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/llvm/test/Instrumentation/AddressSanitizer/basic.ll b/llvm/test/Instrumentation/AddressSanitizer/basic.ll index c1b27a59023..2f1b79e5041 100644 --- a/llvm/test/Instrumentation/AddressSanitizer/basic.ll +++ b/llvm/test/Instrumentation/AddressSanitizer/basic.ll @@ -96,5 +96,35 @@ entry: } ; CHECK: LongDoubleTest -; CHECK-NOT: __asan_report_store16 +; CHECK: __asan_report_store_n +; CHECK: __asan_report_store_n +; CHECK: ret void + + +define void @i40test(i40* %a, i40* %b) nounwind uwtable address_safety { + entry: + %t = load i40* %a + store i40 %t, i40* %b, align 8 + ret void +} + +; CHECK: i40test +; CHECK: __asan_report_load_n{{.*}}, i64 5) +; CHECK: __asan_report_load_n{{.*}}, i64 5) +; CHECK: __asan_report_store_n{{.*}}, i64 5) +; CHECK: __asan_report_store_n{{.*}}, i64 5) +; CHECK: ret void + +define void @i80test(i80* %a, i80* %b) nounwind uwtable address_safety { + entry: + %t = load i80* %a + store i80 %t, i80* %b, align 8 + ret void +} + +; CHECK: i80test +; CHECK: __asan_report_load_n{{.*}}, i64 10) +; CHECK: __asan_report_load_n{{.*}}, i64 10) +; CHECK: __asan_report_store_n{{.*}}, i64 10) +; CHECK: __asan_report_store_n{{.*}}, i64 10) ; CHECK: ret void |