[llvm] [AArch64][GISel] Fix lowering of fp16 intrinsics (PR #130156)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 8 14:38:35 PST 2025
================
@@ -1082,24 +1112,39 @@ AArch64RegisterBankInfo::getInstrMapping(const MachineInstr &MI) const {
break;
case TargetOpcode::G_INTRINSIC:
case TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS: {
- // Check if we know that the intrinsic has any constraints on its register
- // banks. If it does, then update the mapping accordingly.
- unsigned Idx = 0;
- if (onlyDefinesFP(MI, MRI, TRI))
- for (const auto &Op : MI.defs()) {
- if (Op.isReg())
- OpRegBankIdx[Idx] = PMI_FirstFPR;
- ++Idx;
- }
- else
- Idx += MI.getNumExplicitDefs();
-
- if (onlyUsesFP(MI, MRI, TRI))
- for (const auto &Op : MI.explicit_uses()) {
- if (Op.isReg())
- OpRegBankIdx[Idx] = PMI_FirstFPR;
- ++Idx;
- }
+ switch (cast<GIntrinsic>(MI).getIntrinsicID()) {
+ case Intrinsic::aarch64_neon_vcvtfxs2fp:
+ case Intrinsic::aarch64_neon_vcvtfxu2fp:
+ case Intrinsic::aarch64_neon_vcvtfp2fxs:
+ case Intrinsic::aarch64_neon_vcvtfp2fxu:
+ // Override these two intrinsics, because they would have a partial
+ // mapping. This is needed for 'half' types, which otherwise don't
+ // get legalised correctly.
+ OpRegBankIdx[0] = PMI_FirstFPR;
----------------
davemgreen wrote:
Is it worth adding a comment that [1] is the IntrinsicID and [3] is GPR?
https://github.com/llvm/llvm-project/pull/130156
More information about the llvm-commits
mailing list