mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-23 22:06:19 +00:00

Now that the call graph supports efficient replacement of a function and spurious reference edges, we can port ArgumentPromotion to the new pass manager very easily. The old PM-specific bits are sunk into callbacks that the new PM simply doesn't use. Unlike the old PM, the new PM simply does argument promotion and afterward does the update to LCG reflecting the promoted function. Differential Revision: https://reviews.llvm.org/D29580 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294667 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
713 B
LLVM
25 lines
713 B
LLVM
; RUN: opt < %s -argpromotion -S | FileCheck %s
|
|
; RUN: opt < %s -passes=argpromotion -S | FileCheck %s
|
|
|
|
; CHECK: load i32, i32* %A
|
|
target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"
|
|
|
|
define internal i32 @callee(i1 %C, i32* %P) {
|
|
br i1 %C, label %T, label %F
|
|
|
|
T: ; preds = %0
|
|
ret i32 17
|
|
|
|
F: ; preds = %0
|
|
%X = load i32, i32* %P ; <i32> [#uses=1]
|
|
ret i32 %X
|
|
}
|
|
|
|
define i32 @foo() {
|
|
%A = alloca i32 ; <i32*> [#uses=2]
|
|
store i32 17, i32* %A
|
|
%X = call i32 @callee( i1 false, i32* %A ) ; <i32> [#uses=1]
|
|
ret i32 %X
|
|
}
|
|
|