1 ; Test for the conservative assembly handling mode used by KMSAN.
2 ; RUN: opt < %s -msan-kernel=1 -msan-check-access-address=0 -msan-handle-asm-conservative=0 -S -passes=msan 2>&1 | FileCheck "-check-prefix=CHECK" %s
3 ; RUN: opt < %s -msan-kernel=1 -msan-check-access-address=0 -msan-handle-asm-conservative=1 -S -passes=msan 2>&1 | FileCheck "-check-prefixes=CHECK,CHECK-CONS" %s
5 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
6 target triple = "x86_64-unknown-linux-gnu"
8 ; The IR below was generated from the following source:
11 ; unsigned long value = 2;
13 ; unsigned long *addr = &value;
14 ; asm("btsq %2, %1; setc %0" : "=qm" (bit), "=m" (addr): "Ir" (nr));
21 ; In the regular instrumentation mode MSan is unable to understand that |bit|
22 ; is initialized by the asm() call, and therefore reports a false positive on
24 ; The conservative assembly handling mode initializes every memory location
25 ; passed by pointer into an asm() call. This prevents false positive reports,
26 ; but may introduce false negatives.
28 ; This test makes sure that the conservative mode unpoisons the shadow of |bit|
31 define dso_local i32 @main() sanitize_memory {
33 %retval = alloca i32, align 4
34 %bit = alloca i8, align 1
35 %value = alloca i64, align 8
36 %nr = alloca i64, align 8
37 %addr = alloca ptr, align 8
38 store i32 0, ptr %retval, align 4
39 store i64 2, ptr %value, align 8
40 store i64 0, ptr %nr, align 8
41 store ptr %value, ptr %addr, align 8
42 %0 = load i64, ptr %nr, align 8
43 call void asm "btsq $2, $1; setc $0", "=*qm,=*m,Ir,~{dirflag},~{fpsr},~{flags}"(ptr elementtype(i8) %bit, ptr elementtype(ptr) %addr, i64 %0)
44 %1 = load i8, ptr %bit, align 1
45 %tobool = trunc i8 %1 to i1
46 br i1 %tobool, label %if.then, label %if.else
48 if.then: ; preds = %entry
51 if.else: ; preds = %entry
55 ; %nr is first poisoned, then unpoisoned (written to). Need to optimize this in the future.
56 ; CHECK: call void @__msan_poison_alloca(ptr %nr{{.*}})
57 ; CHECK: call { ptr, ptr } @__msan_metadata_ptr_for_store_8(ptr %nr)
59 ; Hooks for inputs usually go before the assembly statement. But here we have none,
60 ; because %nr is passed by value. However we check %nr for being initialized.
61 ; CHECK-CONS: call { ptr, ptr } @__msan_metadata_ptr_for_load_8(ptr %nr)
63 ; In the conservative mode, call the store hooks for %bit and %addr:
64 ; CHECK-CONS: call void @__msan_instrument_asm_store(ptr %bit, i64 1)
65 ; CHECK-CONS: call void @__msan_instrument_asm_store(ptr %addr, i64 8)
67 ; Landing pad for the %nr check above.
68 ; CHECK-CONS: call void @__msan_warning
70 ; CHECK: call void asm "btsq $2, $1; setc $0"
72 ; CHECK: [[META:%.*]] = call {{.*}} @__msan_metadata_ptr_for_load_1(ptr %bit)
73 ; CHECK: [[SHADOW:%.*]] = extractvalue { ptr, ptr } [[META]], 0
75 ; Now load the shadow value for the boolean.
76 ; CHECK: [[MSLD:%.*]] = load {{.*}} [[SHADOW]]
77 ; CHECK: [[MSPROP:%.*]] = trunc i8 [[MSLD]] to i1
79 ; Is the shadow poisoned?
80 ; CHECK: br i1 [[MSPROP]], label %[[IFTRUE:.*]], label {{.*}}
82 ; If yes, raise a warning.
84 ; CHECK: call void @__msan_warning