Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / Transforms / LowerTypeTests / function-disjoint.ll
blob2f5c3c557a9d646bdd2899c6b8936c7c2ceac405
1 ; RUN: opt -S -lowertypetests -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck --check-prefix=X64 %s
2 ; RUN: opt -S -lowertypetests -mtriple=wasm32-unknown-unknown < %s | FileCheck --check-prefix=WASM32 %s
4 ; Tests that we correctly handle bitsets with disjoint call target sets.
6 target datalayout = "e-p:64:64"
8 ; X64: @f = alias void (), void ()* @[[JT0:.*]]
9 ; X64: @g = alias void (), void ()* @[[JT1:.*]]
11 ; WASM32: private constant [0 x i8] zeroinitializer
12 @0 = private unnamed_addr constant [2 x void ()*] [void ()* @f, void ()* @g], align 16
14 ; X64: define hidden void @f.cfi()
15 ; WASM32: define void @f() !type !{{[0-9]+}} !wasm.index ![[I0:[0-9]+]]
16 define void @f() !type !0 {
17   ret void
20 ; X64: define hidden void @g.cfi()
21 ; WASM32: define void @g() !type !{{[0-9]+}} !wasm.index ![[I1:[0-9]+]]
22 define void @g() !type !1 {
23   ret void
26 !0 = !{i32 0, !"typeid1"}
27 !1 = !{i32 0, !"typeid2"}
29 declare i1 @llvm.type.test(i8* %ptr, metadata %bitset) nounwind readnone
31 define i1 @foo(i8* %p) {
32   ; X64: icmp eq i64 {{.*}}, ptrtoint (void ()* @[[JT0]] to i64)
33   ; WASM32: icmp eq i64 {{.*}}, ptrtoint (i8* getelementptr (i8, i8* null, i64 1) to i64)
34   %x = call i1 @llvm.type.test(i8* %p, metadata !"typeid1")
35   ; X64: icmp eq i64 {{.*}}, ptrtoint (void ()* @[[JT1]] to i64)
36   ; WASM32: icmp eq i64 {{.*}}, mul (i64 ptrtoint (i8* getelementptr (i8, i8* null, i32 1) to i64), i64 2)
37   %y = call i1 @llvm.type.test(i8* %p, metadata !"typeid2")
38   %z = add i1 %x, %y
39   ret i1 %z
42 ; X64: define private void @[[JT0]]() #{{.*}} align 8 {
43 ; X64:   call void asm sideeffect "jmp ${0:c}@plt\0Aint3\0Aint3\0Aint3\0A", "s"(void ()* @f.cfi)
45 ; X64: define private void @[[JT1]]() #{{.*}} align 8 {
46 ; X64:   call void asm sideeffect "jmp ${0:c}@plt\0Aint3\0Aint3\0Aint3\0A", "s"(void ()* @g.cfi)
48 ; WASM32: ![[I0]] = !{i64 1}
49 ; WASM32: ![[I1]] = !{i64 2}