[clang] [llvm] [HLSL] Implement the f16tof32() intrinsic (PR #165860)
Farzon Lotfi via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 4 08:16:59 PST 2025
================
@@ -3780,6 +3751,89 @@ bool SPIRVInstructionSelector::selectResourceNonUniformIndex(
return true;
}
+bool SPIRVInstructionSelector::selectF16ToF32(Register ResVReg,
+ const SPIRVType *ResType,
+ MachineInstr &I) const {
+ assert(I.getNumOperands() == 3);
+ assert(I.getOperand(0).isReg());
+ assert(I.getOperand(2).isReg());
+ Register SrcReg = I.getOperand(2).getReg();
+ const SPIRVType *SrcRegType = GR.getSPIRVTypeForVReg(SrcReg);
+ LLT SrcType = MRI->getType(SrcReg);
+ SPIRVType *SrcEltType = GR.getScalarOrVectorComponentType(SrcRegType);
+ SPIRVType *ResEltType = GR.getScalarOrVectorComponentType(ResType);
+ const TargetRegisterClass *SrcRegClass = GR.getRegClass(SrcEltType);
+ const TargetRegisterClass *ResRegClass = GR.getRegClass(ResEltType);
+ MachineIRBuilder MIRBuilder(I);
+ const SPIRVType *Vec2ResType =
+ GR.getOrCreateSPIRVVectorType(ResEltType, 2, MIRBuilder, false);
+ const TargetRegisterClass *Vec2RegClass = GR.getRegClass(Vec2ResType);
+
+ bool Result = true;
----------------
farzonl wrote:
Yes I like this much more. Not exactly what I was suggesting. My suggestion was more to do this in `clang/lib/Headers/hlsl/hlsl_intrinsic_helpers.h` to simplify the backend. But you managed to do that in llvm ir. I think the only thing you might miss out on is some optimization passes, but thats not a big deal.
https://github.com/llvm/llvm-project/pull/165860
More information about the llvm-commits
mailing list