[ARM] Replace fp-only-sp and d16 with fp64 and d32.
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
2019-05-29 00:13:20 +08:00
|
|
|
; RUN: llc -mtriple=armv7-none-eabi -mattr=-neon,-vfp2d16sp %s -o - | FileCheck %s -check-prefixes=COMMON,NOVFP
|
2018-10-29 16:45:56 +08:00
|
|
|
; RUN: llc -mtriple=armv7-none-eabi -mattr=+neon %s -float-abi=hard -o - | FileCheck %s -check-prefixes=COMMON,VFP
|
2016-04-25 22:29:18 +08:00
|
|
|
|
2018-10-29 16:45:56 +08:00
|
|
|
; The intent here is to test "X", which says that any operand whatsoever is allowed.
|
|
|
|
; Using this mechanism, we want to test toggling allocating GPR or SPR registers
|
|
|
|
; depending on whether the float registers are available. Thus, the mnemonic is
|
|
|
|
; totally irrelevant here, which is why we use FOO and also comment it out using "@"
|
|
|
|
; to avoid assembler errors.
|
2016-04-25 22:29:18 +08:00
|
|
|
|
2018-10-29 16:45:56 +08:00
|
|
|
; Note that this kind of IR can be generated by a function such as:
|
|
|
|
; void f1(float f) {asm volatile ("@FOO $0, $0" : : "X" (f));}
|
2016-04-25 22:29:18 +08:00
|
|
|
|
2018-10-29 16:45:56 +08:00
|
|
|
define arm_aapcs_vfpcc void @func(float %f) {
|
|
|
|
; COMMON-LABEL: func
|
|
|
|
; NOVFP: FOO r0, r0
|
|
|
|
; VFP: FOO s0, s0
|
2016-04-25 22:29:18 +08:00
|
|
|
entry:
|
2018-10-29 16:45:56 +08:00
|
|
|
call void asm sideeffect "@FOO $0, $0", "X" (float %f) nounwind
|
2016-04-25 22:29:18 +08:00
|
|
|
ret void
|
|
|
|
}
|