Skip to content

Commit 06fede0

Browse files
committedFeb 23, 2025
[ARM] Emit a warning when the hard-float ABI is enabled but can't be used.
Compiling for an eabihf target with a CPU lacking floating-point registers will silently use the soft-float ABI instead, even though the Arm attributes section still has Tag_ABI_VFP_args: VFP registers, which leads to silent ABI mismatches at link time. Fixes llvm#110383.
1 parent 8ff4d27 commit 06fede0

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed
 

‎llvm/lib/Target/ARM/ARMISelLowering.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,9 @@ ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM,
791791
setAllExpand(MVT::f32);
792792
if (!Subtarget->hasFP64())
793793
setAllExpand(MVT::f64);
794-
}
794+
} else if (TM.Options.FloatABIType == FloatABI::Hard)
795+
errs() << "The hard-float ABI can't be used for a target that "
796+
"doesn't support floating-point (ignoring float-abi)\n";
795797

796798
if (Subtarget->hasFullFP16()) {
797799
addRegisterClass(MVT::f16, &ARM::HPRRegClass);
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
; RUN: llc -asm-verbose=false --mtriple=armv7-none-eabihf --mattr=+vfp3 < %s | FileCheck %s --check-prefix=CHECK-VFP
2+
; RUN: llc -asm-verbose=false --mtriple=armv7-none-eabi --mattr=-fpregs < %s | FileCheck %s -check-prefix=CHECK-NOVFP
3+
; RUN: llc -asm-verbose=false --mtriple=armv7-none-eabihf --mattr=-fpregs < %s 2>&1 | FileCheck %s -check-prefix=CHECK-ERROR -check-prefix=CHECK-NOVFP
4+
5+
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-n32"
6+
7+
; CHECK-VFP: vadd.f32
8+
; CHECK-ERROR: The hard-float ABI can't be used for a target that doesn't support floating-point (ignoring float-abi)
9+
; CHECK-NOVFP: bl __aeabi_fadd
10+
define float @test_fadd(float %a, float %b) #0 {
11+
%r = fadd float %a, %b
12+
ret float %r
13+
}
14+
15+
attributes #0 = { nounwind }

0 commit comments

Comments
 (0)
Please sign in to comment.