brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · 956188b Raw
29 lines · plain
1; Test kernel inline hwasan instrumentation.2 3; RUN: opt < %s -passes=asan -asan-kernel=1 -asan-recover=1 -asan-instrumentation-with-call-threshold=10000 -S | FileCheck --check-prefixes=CHECK-INLINE %s4; RUN: opt < %s -passes=asan -asan-kernel=1 -asan-recover=1 -asan-instrumentation-with-call-threshold=0 -S | FileCheck --check-prefixes=CHECK-CALLBACK %s5 6target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"7target triple = "x86_64-unknown-linux-gnu"8 9define void @test_load(ptr %a, ptr %b, ptr %c, ptr %d) sanitize_address {10entry:11  %tmp1 = load i32, ptr %a, align 412  %tmp2 = load i64, ptr %b, align 813  %tmp3 = load i512, ptr %c, align 3214  %tmp4 = load i80, ptr %d, align 815  ret void16}17; CHECK-INLINE: call void @__asan_report_load4_noabort18; CHECK-INLINE: call void @__asan_report_load8_noabort19; CHECK-INLINE: call void @__asan_report_load_n_noabort20; CHECK-INLINE-NOT: call void @__asan_load4_noabort21; CHECK-INLINE-NOT: call void @__asan_load8_noabort22; CHECK-INLINE-NOT: call void @__asan_loadN_noabort23; CHECK-CALLBACK: call void @__asan_load4_noabort24; CHECK-CALLBACK: call void @__asan_load8_noabort25; CHECK-CALLBACK: call void @__asan_loadN_noabort26; CHECK-CALLBACK-NOT: call void @__asan_report_load4_noabort27; CHECK-CALLBACK-NOT: call void @__asan_report_load8_noabort28; CHECK-CALLBACK-NOT: call void @__asan_report_load_n_noabort29