mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
6655b5e078
Summary: A number of optimizations are inhibited by single-use TokenFactors not being merged into the TokenFactor using it. This makes we consider if we can do the merge immediately. Most tests changes here are due to the change in visitation causing minor reorderings and associated reassociation of paired memory operations. CodeGen tests with non-reordering changes: X86/aligned-variadic.ll -- memory-based add folded into stored leaq value. X86/constant-combiners.ll -- Optimizes out overlap between stores. X86/pr40631_deadstore_elision -- folds constant byte store into preceding quad word constant store. Reviewers: RKSimon, craig.topper, spatel, efriedma, courbet Reviewed By: courbet Subscribers: dylanmckay, sdardis, nemanjai, jvesely, nhaehnle, javed.absar, eraman, hiraditya, kbarton, jrtc27, atanasyan, jsji, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D59260 llvm-svn: 356068
77 lines
2.1 KiB
LLVM
77 lines
2.1 KiB
LLVM
; RUN: llc < %s -mtriple=aarch64-linux-gnu | FileCheck %s
|
|
|
|
define win64cc void @pass_va(i32 %count, ...) nounwind {
|
|
entry:
|
|
; CHECK: str x30, [sp, #-80]!
|
|
; CHECK: add x8, sp, #24
|
|
; CHECK: add x0, sp, #24
|
|
; CHECK: stp x1, x2, [sp, #24]
|
|
; CHECK: stp x3, x4, [sp, #40]
|
|
; CHECK: stp x5, x6, [sp, #56]
|
|
; CHECK: str x7, [sp, #72]
|
|
; CHECK: str x8, [sp, #8]
|
|
; CHECK: bl other_func
|
|
; CHECK: ldr x30, [sp], #80
|
|
; CHECK: ret
|
|
%ap = alloca i8*, align 8
|
|
%ap1 = bitcast i8** %ap to i8*
|
|
call void @llvm.va_start(i8* %ap1)
|
|
%ap2 = load i8*, i8** %ap, align 8
|
|
call void @other_func(i8* %ap2)
|
|
ret void
|
|
}
|
|
|
|
declare void @other_func(i8*) local_unnamed_addr
|
|
|
|
declare void @llvm.va_start(i8*) nounwind
|
|
declare void @llvm.va_copy(i8*, i8*) nounwind
|
|
|
|
; CHECK-LABEL: f9:
|
|
; CHECK: sub sp, sp, #16
|
|
; CHECK: add x8, sp, #24
|
|
; CHECK: add x0, sp, #24
|
|
; CHECK: str x8, [sp, #8]
|
|
; CHECK: add sp, sp, #16
|
|
; CHECK: ret
|
|
define win64cc i8* @f9(i64 %a0, i64 %a1, i64 %a2, i64 %a3, i64 %a4, i64 %a5, i64 %a6, i64 %a7, i64 %a8, ...) nounwind {
|
|
entry:
|
|
%ap = alloca i8*, align 8
|
|
%ap1 = bitcast i8** %ap to i8*
|
|
call void @llvm.va_start(i8* %ap1)
|
|
%ap2 = load i8*, i8** %ap, align 8
|
|
ret i8* %ap2
|
|
}
|
|
|
|
; CHECK-LABEL: f8:
|
|
; CHECK: sub sp, sp, #16
|
|
; CHECK: add x8, sp, #16
|
|
; CHECK: add x0, sp, #16
|
|
; CHECK: str x8, [sp, #8]
|
|
; CHECK: add sp, sp, #16
|
|
; CHECK: ret
|
|
define win64cc i8* @f8(i64 %a0, i64 %a1, i64 %a2, i64 %a3, i64 %a4, i64 %a5, i64 %a6, i64 %a7, ...) nounwind {
|
|
entry:
|
|
%ap = alloca i8*, align 8
|
|
%ap1 = bitcast i8** %ap to i8*
|
|
call void @llvm.va_start(i8* %ap1)
|
|
%ap2 = load i8*, i8** %ap, align 8
|
|
ret i8* %ap2
|
|
}
|
|
|
|
; CHECK-LABEL: f7:
|
|
; CHECK: sub sp, sp, #32
|
|
; CHECK: add x8, sp, #24
|
|
; CHECK: str x7, [sp, #24]
|
|
; CHECK: add x0, sp, #24
|
|
; CHECK: str x8, [sp, #8]
|
|
; CHECK: add sp, sp, #32
|
|
; CHECK: ret
|
|
define win64cc i8* @f7(i64 %a0, i64 %a1, i64 %a2, i64 %a3, i64 %a4, i64 %a5, i64 %a6, ...) nounwind {
|
|
entry:
|
|
%ap = alloca i8*, align 8
|
|
%ap1 = bitcast i8** %ap to i8*
|
|
call void @llvm.va_start(i8* %ap1)
|
|
%ap2 = load i8*, i8** %ap, align 8
|
|
ret i8* %ap2
|
|
}
|