[llvm] 0deedaa - [hwasan] Prevent reordering of tag checks.
Florian Mayer via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 17 02:21:37 PDT 2021
Author: Florian Mayer
Date: 2021-08-17T10:21:23+01:00
New Revision: 0deedaa23f71587d121a5ffab40571fd4a64599a
URL: https://github.com/llvm/llvm-project/commit/0deedaa23f71587d121a5ffab40571fd4a64599a
DIFF: https://github.com/llvm/llvm-project/commit/0deedaa23f71587d121a5ffab40571fd4a64599a.diff
LOG: [hwasan] Prevent reordering of tag checks.
They were previously unconstrained, which allowed them to be reordered
before the shadow memory write.
Reviewed By: eugenis
Differential Revision: https://reviews.llvm.org/D107901
Added:
llvm/test/Instrumentation/HWAddressSanitizer/memaccess-clobber.ll
Modified:
llvm/include/llvm/IR/Intrinsics.td
Removed:
################################################################################
diff --git a/llvm/include/llvm/IR/Intrinsics.td b/llvm/include/llvm/IR/Intrinsics.td
index 61165ab9e1369..b4ae7b1dd5866 100644
--- a/llvm/include/llvm/IR/Intrinsics.td
+++ b/llvm/include/llvm/IR/Intrinsics.td
@@ -1570,10 +1570,10 @@ def int_load_relative: DefaultAttrsIntrinsic<[llvm_ptr_ty], [llvm_ptr_ty, llvm_a
def int_hwasan_check_memaccess :
Intrinsic<[], [llvm_ptr_ty, llvm_ptr_ty, llvm_i32_ty],
- [IntrInaccessibleMemOnly, ImmArg<ArgIndex<2>>]>;
+ [ImmArg<ArgIndex<2>>]>;
def int_hwasan_check_memaccess_shortgranules :
Intrinsic<[], [llvm_ptr_ty, llvm_ptr_ty, llvm_i32_ty],
- [IntrInaccessibleMemOnly, ImmArg<ArgIndex<2>>]>;
+ [ImmArg<ArgIndex<2>>]>;
// Xray intrinsics
//===----------------------------------------------------------------------===//
diff --git a/llvm/test/Instrumentation/HWAddressSanitizer/memaccess-clobber.ll b/llvm/test/Instrumentation/HWAddressSanitizer/memaccess-clobber.ll
new file mode 100644
index 0000000000000..2a23079e532ce
--- /dev/null
+++ b/llvm/test/Instrumentation/HWAddressSanitizer/memaccess-clobber.ll
@@ -0,0 +1,20 @@
+; Make sure memaccess checks preceed the following reads.
+;
+; RUN: opt < %s -S -enable-new-pm=0 -hwasan -basic-aa -memdep -print-memdeps -analyze -mtriple aarch64-linux-android30 | FileCheck %s
+
+target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
+target triple = "aarch64--linux-android10000"
+
+declare void @use32(i32*)
+
+define i32 @test_alloca() sanitize_hwaddress {
+entry:
+ %x = alloca i32, align 4
+ call void @use32(i32* nonnull %x)
+ ; CHECK: Clobber from: call void @llvm.hwasan.check.memaccess.shortgranule
+ ; CHECK-NEXT: load i32, i32* %x.hwasan, align 4
+ %y = load i32, i32* %x
+ ; CHECK: Clobber from: %y = load i32, i32* %x.hwasan, align 4
+ ; CHECK-NEXT: call void @llvm.memset.p0i8.i64(i8* align 1 {{.*}}, i8 0, i64 1, i1 false)
+ ret i32 %y
+}
More information about the llvm-commits
mailing list