• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; ASan shouldn't instrument code added by UBSan.
2
3; RUN: opt < %s -asan -asan-module -S | FileCheck %s
4
5target 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"
6target triple = "x86_64-unknown-linux-gnu"
7
8%struct.A = type { i32 (...)** }
9declare void @__ubsan_handle_dynamic_type_cache_miss(i8*, i64, i64) uwtable
10@__ubsan_vptr_type_cache = external global [128 x i64]
11@.src = private unnamed_addr constant [19 x i8] c"tmp/ubsan/vptr.cpp\00", align 1
12@0 = private unnamed_addr constant { i16, i16, [4 x i8] } { i16 -1, i16 0, [4 x i8] c"'A'\00" }
13@_ZTI1A = external constant i8*
14@1 = private unnamed_addr global { { [19 x i8]*, i32, i32 }, { i16, i16, [4 x i8] }*, i8*, i8 } { { [19 x i8]*, i32, i32 } { [19 x i8]* @.src, i32 2, i32 18 }, { i16, i16, [4 x i8] }* @0, i8* bitcast (i8** @_ZTI1A to i8*), i8 4 }
15
16define void @_Z3BarP1A(%struct.A* %a) uwtable sanitize_address {
17; CHECK-LABEL: define void @_Z3BarP1A
18entry:
19  %0 = bitcast %struct.A* %a to void (%struct.A*)***
20  %vtable = load void (%struct.A*)**, void (%struct.A*)*** %0, align 8
21; CHECK: __asan_report_load8
22  %1 = load void (%struct.A*)*, void (%struct.A*)** %vtable, align 8
23; CHECK: __asan_report_load8
24  %2 = ptrtoint void (%struct.A*)** %vtable to i64
25  %3 = xor i64 %2, -303164226014115343, !nosanitize !0
26  %4 = mul i64 %3, -7070675565921424023, !nosanitize !0
27  %5 = lshr i64 %4, 47, !nosanitize !0
28  %6 = xor i64 %4, %2, !nosanitize !0
29  %7 = xor i64 %6, %5, !nosanitize !0
30  %8 = mul i64 %7, -7070675565921424023, !nosanitize !0
31  %9 = lshr i64 %8, 47, !nosanitize !0
32  %10 = xor i64 %9, %8, !nosanitize !0
33  %11 = mul i64 %10, -7070675565921424023, !nosanitize !0
34  %12 = and i64 %11, 127, !nosanitize !0
35  %13 = getelementptr inbounds [128 x i64], [128 x i64]* @__ubsan_vptr_type_cache, i64 0, i64 %12, !nosanitize !0
36; CHECK-NOT: __asan_report_load8
37  %14 = load i64, i64* %13, align 8, !nosanitize !0
38  %15 = icmp eq i64 %14, %11, !nosanitize !0
39  br i1 %15, label %cont, label %handler.dynamic_type_cache_miss, !nosanitize !0
40
41handler.dynamic_type_cache_miss:                  ; preds = %entry
42  %16 = ptrtoint %struct.A* %a to i64, !nosanitize !0
43  tail call void @__ubsan_handle_dynamic_type_cache_miss(i8* bitcast ({ { [19 x i8]*, i32, i32 }, { i16, i16, [4 x i8] }*, i8*, i8 }* @1 to i8*), i64 %16, i64 %11) #2, !nosanitize !0
44  br label %cont, !nosanitize !0
45
46cont:                                             ; preds = %handler.dynamic_type_cache_miss, %entry
47  tail call void %1(%struct.A* %a)
48; CHECK: ret void
49  ret void
50}
51
52!0 = !{}
53