mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-25 14:56:01 +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
30 lines
971 B
LLVM
30 lines
971 B
LLVM
; RUN: opt < %s -argpromotion -S | FileCheck %s
|
|
; RUN: opt < %s -passes=argpromotion -S | FileCheck %s
|
|
|
|
target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-pc-windows-msvc"
|
|
|
|
; CHECK: define internal void @add(i32 %[[THIS1:.*]], i32 %[[THIS2:.*]], i32* noalias %[[SR:.*]])
|
|
define internal void @add({i32, i32}* %this, i32* sret %r) {
|
|
%ap = getelementptr {i32, i32}, {i32, i32}* %this, i32 0, i32 0
|
|
%bp = getelementptr {i32, i32}, {i32, i32}* %this, i32 0, i32 1
|
|
%a = load i32, i32* %ap
|
|
%b = load i32, i32* %bp
|
|
; CHECK: %[[AB:.*]] = add i32 %[[THIS1]], %[[THIS2]]
|
|
%ab = add i32 %a, %b
|
|
; CHECK: store i32 %[[AB]], i32* %[[SR]]
|
|
store i32 %ab, i32* %r
|
|
ret void
|
|
}
|
|
|
|
; CHECK: define void @f()
|
|
define void @f() {
|
|
; CHECK: %[[R:.*]] = alloca i32
|
|
%r = alloca i32
|
|
%pair = alloca {i32, i32}
|
|
|
|
; CHECK: call void @add(i32 %{{.*}}, i32 %{{.*}}, i32* noalias %[[R]])
|
|
call void @add({i32, i32}* %pair, i32* sret %r)
|
|
ret void
|
|
}
|