Home
last modified time | relevance | path

Searched refs:BitsToFloat (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DR600InstPrinter.cpp100 O << Imm << '(' << BitsToFloat(Imm) << ')'; in printLiteral()
/openbsd-src/gnu/llvm/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp77 Obj.Float = BitsToFloat(endian::read<uint32_t, Endianness>(Current)); in read()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DMathExtras.h439 inline float BitsToFloat(uint32_t Bits) { in BitsToFloat() function
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp2281 K0 = B.buildFConstant(S32, BitsToFloat(UINT32_C(/*2^-32*/ 0x2f800000))); in legalizeFPTOI()
2282 K1 = B.buildFConstant(S32, BitsToFloat(UINT32_C(/*-2^32*/ 0xcf800000))); in legalizeFPTOI()
3435 auto Scale = B.buildFConstant(S32, BitsToFloat(0x4f7ffffe)); in legalizeUnsignedDIV_REM32Impl()
3486 B.buildFConstant(S32, BitsToFloat(0x4f800000)), CvtLo); in emitReciprocalU64()
3490 B.buildFMul(S32, Rcp, B.buildFConstant(S32, BitsToFloat(0x5f7ffffc))); in emitReciprocalU64()
3494 B.buildFMul(S32, Mul1, B.buildFConstant(S32, BitsToFloat(0x2f800000))); in emitReciprocalU64()
3499 B.buildFConstant(S32, BitsToFloat(0xcf800000)), Mul1); in emitReciprocalU64()
H A DAMDGPUCodeGenPrepare.cpp1150 Constant *Scale = ConstantFP::get(F32Ty, BitsToFloat(0x4F7FFFFE)); in expandDivRem32()
H A DAMDGPUISelLowering.cpp2678 K0 = DAG.getConstantFP(BitsToFloat(UINT32_C(/*2^-32*/ 0x2f800000)), SL, in LowerFP_TO_INT64()
2680 K1 = DAG.getConstantFP(BitsToFloat(UINT32_C(/*-2^32*/ 0xcf800000)), SL, in LowerFP_TO_INT64()
H A DSIISelLowering.cpp9026 const APFloat K0Val(BitsToFloat(0x6f800000)); in lowerFDIV_FAST()
9029 const APFloat K1Val(BitsToFloat(0x2f800000)); in lowerFDIV_FAST()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h1676 return BitsToFloat(static_cast<uint32_t>(getWord(0))); in bitsToFloat()