mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-22 03:35:35 -04:00
e2a16fdce2
Summary: Implements fastLowerArguments() to avoid the need to fall back on SelectionDAG for 0-4 argument functions that don't do tricky things like passing double in a pair of i32's. This allows us to move all except one test to -fast-isel-abort=3. The remaining one has function prototypes of the form 'i32 (i32, double, double)' which requires floats to be passed in GPR's. The previous commit had an uninitialized variable that caused the incoming argument region to have undefined size. This has been fixed. Reviewers: sdardis Subscribers: dsanders, llvm-commits, sdardis Differential Revision: https://reviews.llvm.org/D22680 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@277136 91177308-0d34-0410-b5e6-96231b3b80d8
86 lines
2.3 KiB
LLVM
86 lines
2.3 KiB
LLVM
; ModuleID = 'loadstore2.c'
|
|
target datalayout = "E-m:m-p:32:32-i8:8:32-i16:16:32-i64:64-n32-S64"
|
|
target triple = "mips--linux-gnu"
|
|
|
|
@c2 = common global i8 0, align 1
|
|
@c1 = common global i8 0, align 1
|
|
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32r2 \
|
|
; RUN: < %s | FileCheck %s
|
|
; RUN: llc -march=mipsel -relocation-model=pic -O0 -fast-isel-abort=3 -mcpu=mips32 \
|
|
; RUN: < %s | FileCheck %s
|
|
|
|
@s2 = common global i16 0, align 2
|
|
@s1 = common global i16 0, align 2
|
|
@i2 = common global i32 0, align 4
|
|
@i1 = common global i32 0, align 4
|
|
@f2 = common global float 0.000000e+00, align 4
|
|
@f1 = common global float 0.000000e+00, align 4
|
|
@d2 = common global double 0.000000e+00, align 8
|
|
@d1 = common global double 0.000000e+00, align 8
|
|
|
|
; Function Attrs: nounwind
|
|
define void @cfoo() #0 {
|
|
entry:
|
|
%0 = load i8, i8* @c2, align 1
|
|
store i8 %0, i8* @c1, align 1
|
|
; CHECK-LABEL: cfoo:
|
|
; CHECK: lbu $[[REGc:[0-9]+]], 0(${{[0-9]+}})
|
|
; CHECK: sb $[[REGc]], 0(${{[0-9]+}})
|
|
|
|
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define void @sfoo() #0 {
|
|
entry:
|
|
%0 = load i16, i16* @s2, align 2
|
|
store i16 %0, i16* @s1, align 2
|
|
; CHECK-LABEL: sfoo:
|
|
; CHECK: lhu $[[REGs:[0-9]+]], 0(${{[0-9]+}})
|
|
; CHECK: sh $[[REGs]], 0(${{[0-9]+}})
|
|
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define void @ifoo() #0 {
|
|
entry:
|
|
%0 = load i32, i32* @i2, align 4
|
|
store i32 %0, i32* @i1, align 4
|
|
; CHECK-LABEL: ifoo:
|
|
; CHECK: lw $[[REGi:[0-9]+]], 0(${{[0-9]+}})
|
|
; CHECK: sw $[[REGi]], 0(${{[0-9]+}})
|
|
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define void @ffoo() #0 {
|
|
entry:
|
|
%0 = load float, float* @f2, align 4
|
|
store float %0, float* @f1, align 4
|
|
; CHECK-LABEL: ffoo:
|
|
; CHECK: lwc1 $f[[REGf:[0-9]+]], 0(${{[0-9]+}})
|
|
; CHECK: swc1 $f[[REGf]], 0(${{[0-9]+}})
|
|
|
|
|
|
ret void
|
|
}
|
|
|
|
; Function Attrs: nounwind
|
|
define void @dfoo() #0 {
|
|
entry:
|
|
%0 = load double, double* @d2, align 8
|
|
store double %0, double* @d1, align 8
|
|
; CHECK-LABEL: dfoo:
|
|
; CHECK: ldc1 $f[[REGd:[0-9]+]], 0(${{[0-9]+}})
|
|
; CHECK: sdc1 $f[[REGd]], 0(${{[0-9]+}})
|
|
; CHECK: .end dfoo
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
|
|
|
|