mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
a1d7f2fdc1
Those two subtarget features were awkward because their semantics are reversed: each one indicates the _lack_ of support for something in the architecture, rather than the presence. As a consequence, you don't get the behavior you want if you combine two sets of feature bits. Each SubtargetFeature for an FP architecture version now comes in four versions, one for each combination of those options. So you can still say (for example) '+vfp2' in a feature string and it will mean what it's always meant, but there's a new string '+vfp2d16sp' meaning the version without those extra options. A lot of this change is just mechanically replacing positive checks for the old features with negative checks for the new ones. But one more interesting change is that I've rearranged getFPUFeatures() so that the main FPU feature is appended to the output list *before* rather than after the features derived from the Restriction field, so that -fp64 and -d32 can override defaults added by the main feature. Reviewers: dmgreen, samparker, SjoerdMeijer Subscribers: srhines, javed.absar, eraman, kristof.beyls, hiraditya, zzheng, Petar.Avramovic, cfe-commits, llvm-commits Tags: #clang, #llvm Differential Revision: https://reviews.llvm.org/D60691 llvm-svn: 361845
49 lines
1.6 KiB
LLVM
49 lines
1.6 KiB
LLVM
; RUN: llc < %s -mtriple=thumbv7-none-eabi -mcpu=cortex-m4 -mattr=-vfp2 | FileCheck %s -check-prefix=CHECK -check-prefix=SOFT
|
|
; RUN: llc < %s -mtriple=thumbv7-none-eabihf -mcpu=cortex-m4 -mattr=+vfp4,-fp64 | FileCheck %s -check-prefix=CHECK -check-prefix=HARD -check-prefix=SP
|
|
; RUN: llc < %s -mtriple=thumbv7-none-eabihf -mcpu=cortex-a8 -mattr=+vfp3 | FileCheck %s -check-prefix=CHECK -check-prefix=HARD -check-prefix=DP
|
|
|
|
define float @float_in_reg(float %a, float %b) {
|
|
entry:
|
|
; CHECK-LABEL: float_in_reg:
|
|
; SOFT: mov r0, r1
|
|
; HARD: vmov.f32 s0, s1
|
|
; CHECK-NEXT: bx lr
|
|
ret float %b
|
|
}
|
|
|
|
define double @double_in_reg(double %a, double %b) {
|
|
entry:
|
|
; CHECK-LABEL: double_in_reg:
|
|
; SOFT: mov r1, r3
|
|
; SOFT: mov r0, r2
|
|
; SP: vmov.f32 s0, s2
|
|
; SP: vmov.f32 s1, s3
|
|
; DP: vmov.f64 d0, d1
|
|
; CHECK-NEXT: bx lr
|
|
ret double %b
|
|
}
|
|
|
|
define float @float_on_stack(double %a, double %b, double %c, double %d, double %e, double %f, double %g, double %h, float %i) {
|
|
; CHECK-LABEL: float_on_stack:
|
|
; SOFT: ldr r0, [sp, #48]
|
|
; HARD: vldr s0, [sp]
|
|
; CHECK-NEXT: bx lr
|
|
ret float %i
|
|
}
|
|
|
|
define double @double_on_stack(double %a, double %b, double %c, double %d, double %e, double %f, double %g, double %h, double %i) {
|
|
; CHECK-LABEL: double_on_stack:
|
|
; SOFT: ldrd r0, r1, [sp, #48]
|
|
; HARD: vldr d0, [sp]
|
|
; CHECK-NEXT: bx lr
|
|
ret double %i
|
|
}
|
|
|
|
define double @double_not_split(double %a, double %b, double %c, double %d, double %e, double %f, double %g, float %h, double %i) {
|
|
; CHECK-LABEL: double_not_split:
|
|
; SOFT: ldrd r0, r1, [sp, #48]
|
|
; HARD: vldr d0, [sp]
|
|
; CHECK-NEXT: bx lr
|
|
ret double %i
|
|
}
|