mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
most of the inliner test cases. The inliner involves a bunch of interesting code and tends to be where most of the issues I've seen experimenting with the new PM lie. All of these test cases pass, but I'd like to keep some more thorough coverage here so doing a fairly blanket enabling. There are a handful of interesting tests I've not enabled yet because they're focused on the always inliner, or on functionality that doesn't (yet) exist in the inliner. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290592 91177308-0d34-0410-b5e6-96231b3b80d8
55 lines
889 B
LLVM
55 lines
889 B
LLVM
; RUN: opt < %s -inline -S | FileCheck %s
|
|
; RUN: opt < %s -passes='cgscc(inline)' -S | FileCheck %s
|
|
|
|
define internal i32 @callee1(i32 %A, i32 %B) {
|
|
; CHECK-NOT: @callee1
|
|
entry:
|
|
%cond = icmp eq i32 %A, 123
|
|
br i1 %cond, label %T, label %F
|
|
|
|
T:
|
|
%C = mul i32 %B, %B
|
|
ret i32 %C
|
|
|
|
F:
|
|
ret i32 0
|
|
}
|
|
|
|
define internal i32 @callee2(i32 %A, i32 %B) {
|
|
; CHECK-NOT: @callee2
|
|
entry:
|
|
switch i32 %A, label %T [
|
|
i32 10, label %F
|
|
i32 1234, label %G
|
|
]
|
|
|
|
dead:
|
|
%cond = icmp eq i32 %A, 123
|
|
br i1 %cond, label %T, label %F
|
|
|
|
T:
|
|
%C = mul i32 %B, %B
|
|
ret i32 %C
|
|
|
|
F:
|
|
ret i32 0
|
|
|
|
G:
|
|
%D = mul i32 %B, %B
|
|
%E = mul i32 %D, %B
|
|
ret i32 %E
|
|
}
|
|
|
|
define i32 @test(i32 %A) {
|
|
; CHECK-LABEL: define i32 @test(i32 %A)
|
|
entry:
|
|
%X = call i32 @callee1( i32 10, i32 %A )
|
|
%Y = call i32 @callee2( i32 10, i32 %A )
|
|
; CHECK-NOT: call
|
|
; CHECK-NOT: mul
|
|
|
|
%Z = add i32 %X, %Y
|
|
ret i32 %Z
|
|
}
|
|
|