1 ; RUN: opt < %s -sancov -sanitizer-coverage-level=1 -sanitizer-coverage-inline-8bit-counters=1 -sanitizer-coverage-pc-table=1 -S | FileCheck %s
3 ; Make sure we use the right comdat groups for COFF to avoid relocations
4 ; against discarded sections. Internal linkage functions are also different from
5 ; ELF. We don't add a module unique identifier.
7 ; Test based on this source:
9 ; static int __attribute__((noinline)) bar(int x) {
20 ; Both new comdats should no duplicates on COFF.
22 ; CHECK: $foo = comdat noduplicates
23 ; CHECK: $bar = comdat noduplicates
25 ; Tables for 'foo' should be in the 'foo' comdat.
27 ; CHECK: @__sancov_gen_{{.*}} = private global [1 x i8] zeroinitializer, section ".SCOV$CM", comdat($foo), align 1
29 ; CHECK: @__sancov_gen_{{.*}} = private constant [2 x i64*]
30 ; CHECK-SAME: [i64* bitcast (i32 (i32)* @foo to i64*), i64* inttoptr (i64 1 to i64*)],
31 ; CHECK-SAME: section ".SCOVP$M", comdat($foo), align 8
33 ; Tables for 'bar' should be in the 'bar' comdat.
35 ; CHECK: @__sancov_gen_{{.*}} = private global [1 x i8] zeroinitializer, section ".SCOV$CM", comdat($bar), align 1
37 ; CHECK: @__sancov_gen_{{.*}} = private constant [2 x i64*]
38 ; CHECK-SAME: [i64* bitcast (i32 (i32)* @bar to i64*), i64* inttoptr (i64 1 to i64*)],
39 ; CHECK-SAME: section ".SCOVP$M", comdat($bar), align 8
41 ; 'foo' and 'bar' should be in their new comdat groups.
43 ; CHECK: define dso_local i32 @foo(i32 %x){{.*}} comdat {
44 ; CHECK: define internal fastcc i32 @bar(i32 %x){{.*}} comdat {
46 target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
47 target triple = "x86_64-pc-windows-msvc19.14.26433"
49 ; Function Attrs: nounwind uwtable
50 define dso_local i32 @foo(i32 %x) local_unnamed_addr #0 {
52 %call = tail call i32 @baz(i32 0) #3
53 %tobool = icmp eq i32 %call, 0
54 br i1 %tobool, label %if.end, label %if.then
56 if.then: ; preds = %entry
57 %call1 = tail call fastcc i32 @bar(i32 %x)
60 if.end: ; preds = %entry, %if.then
61 %x.addr.0 = phi i32 [ %call1, %if.then ], [ %x, %entry ]
65 declare dso_local i32 @baz(i32) local_unnamed_addr #1
67 ; Function Attrs: noinline nounwind uwtable
68 define internal fastcc i32 @bar(i32 %x) unnamed_addr #2 {
70 %tobool = icmp eq i32 %x, 0
71 br i1 %tobool, label %return, label %if.then
73 if.then: ; preds = %entry
74 %call = tail call i32 @baz(i32 %x) #3
77 return: ; preds = %entry, %if.then
78 %retval.0 = phi i32 [ %call, %if.then ], [ 0, %entry ]
82 attributes #0 = { nounwind uwtable }
83 attributes #1 = { "asdf" }
84 attributes #2 = { noinline nounwind uwtable }
85 attributes #3 = { nounwind }