Home
last modified time | relevance | path

Searched refs:bitcastToAPInt (Results 1 – 25 of 105) sorted by relevance

12345

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h674 return getFP16Imm(FPImm.bitcastToAPInt()); in getFP16Imm()
686 return getFP32FP16Imm(FPImm.bitcastToAPInt()); in getFP32FP16Imm()
714 return getFP32Imm(FPImm.bitcastToAPInt()); in getFP32Imm()
742 return getFP64Imm(FPImm.bitcastToAPInt()); in getFP64Imm()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp3670 APInt IEEEFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::IEEEFloat
3727 APInt api = bitcastToAPInt(); in convertToFloat()
3734 APInt api = bitcastToAPInt(); in convertToDouble()
3742 APInt api = bitcastToAPInt(); in convertToQuad()
4974 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in divide()
4976 Tmp.divide(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt()), RM); in divide()
4977 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in divide()
4983 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in remainder()
4985 Tmp.remainder(APFloat(semPPCDoubleDoubleLegacy, RHS.bitcastToAPInt())); in remainder()
4986 *this = DoubleAPFloat(semPPCDoubleDouble, Tmp.bitcastToAPInt()); in remainder()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXMCExpr.cpp54 APInt API = APF.bitcastToAPInt(); in printImpl()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp703 GV.IntVal = apf.bitcastToAPInt(); in getConstantValue()
718 GV.IntVal = apf.bitcastToAPInt(); in getConstantValue()
856 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
861 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
866 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
871 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
875 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
911 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt(); in getConstantValue()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DFloating.h70 return APSInt(F.bitcastToAPInt());
148 llvm::APInt API = F.bitcastToAPInt(); in serialize()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AddressingModes.h387 return getFP16Imm(FPImm.bitcastToAPInt()); in getFP16Imm()
415 return getFP32Imm(FPImm.bitcastToAPInt()); in getFP32Imm()
443 return getFP64Imm(FPImm.bitcastToAPInt()); in getFP64Imm()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYInstrInfoF1.td51 (N->getValueAPF().bitcastToAPInt().getZExtValue() >> 16) & 0xFFFF,
57 N->getValueAPF().bitcastToAPInt().getZExtValue() & 0xFFFF,
62 "return CurDAG->getTargetConstant(N->getValueAPF().bitcastToAPInt().lshr("#shift#").getLoBits("#width#"), SDLoc(N), MVT::i32);">;
65 "return CurDAG->getTargetConstant(N->getValueAPF().bitcastToAPInt().lshr("#shift#").getLoBits("#width#"), SDLoc(N), MVT::i16);">;
68 "return isShiftedUInt<"#width#", "#shift#">(N->getValueAPF().bitcastToAPInt().getZExtValue());">;
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRVRegNamerUtils.cpp78 MO.getFPImm()->getValueAPF().bitcastToAPInt().getZExtValue()); in getInstructionOpcodeHash()
H A DMachineStableHash.cpp79 : MO.getFPImm()->getValueAPF().bitcastToAPInt(); in stableHashValue()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp146 MCConstantExpr::create(*Val.bitcastToAPInt().getRawData(), in HexagonLowerToMC()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVBaseInfo.cpp182 APInt Imm = FPImm.bitcastToAPInt(); in getLoadFPImm()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h375 APInt bitcastToAPInt() const;
765 APInt bitcastToAPInt() const;
1260 APInt bitcastToAPInt() const { in bitcastToAPInt() function
1261 APFLOAT_DISPATCH_ON_SEMANTICS(bitcastToAPInt()); in bitcastToAPInt()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp114 return CFP->getValueAPF().bitcastToAPInt().isAllOnes(); in isAllOnesValue()
131 return CFP->getValueAPF().bitcastToAPInt().isOne(); in isOneValue()
148 return !CFP->getValueAPF().bitcastToAPInt().isOne(); in isNotOneValue()
176 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue(); in isMinSignedValue()
193 return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue(); in isNotMinSignedValue()
1237 Elts.push_back(CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getFPSequenceIfElementsMatch()
3039 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
3044 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
3049 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
3054 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/
H A DXtensaAsmPrinter.cpp121 CFP->getValueAPF().bitcastToAPInt().getSExtValue(), OutContext); in emitMachineConstantPoolEntry()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp578 profileIntValue(ID, getFloat().bitcastToAPInt()); in Profile()
586 profileIntValue(ID, getComplexFloatReal().bitcastToAPInt()); in Profile()
587 profileIntValue(ID, getComplexFloatImag().bitcastToAPInt()); in Profile()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp241 Imm->getValueAPF().bitcastToAPInt().getZExtValue(); in lower()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp127 store(m_float.bitcastToAPInt()); in GetBytes()
139 return (m_float.bitcastToAPInt().getBitWidth() + 7) / 8; in GetByteSize()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupVectorConstants.cpp95 return CFP->getValue().bitcastToAPInt(); in extractConstantBits()
131 Bits.insertBits(CDS->getElementAsAPFloat(I).bitcastToAPInt(), in extractConstantBits()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp273 APInt AI = FP.bitcastToAPInt(); in toString()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td280 let Read = [{ node.getFloat().bitcastToAPInt() }];
319 let Read = [{ node.getComplexFloatReal().bitcastToAPInt() }];
322 let Read = [{ node.getComplexFloatImag().bitcastToAPInt() }];
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.h41 Out = C->getValueAPF().bitcastToAPInt().getSExtValue(); in getConstantValue()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp103 return cmpAPInts(L.bitcastToAPInt(), R.bitcastToAPInt()); in cmpAPFloats()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp226 APInt API = APF.bitcastToAPInt(); in addConstantFP()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.cpp441 MI.getOperand(1).getFPImm()->getValueAPF().bitcastToAPInt(); in legalizeCustom()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp128 registerValue.SetUInt64(value.bitcastToAPInt().getZExtValue()); in WriteAPFloat()
1253 rs2.bitcastToAPInt().getZExtValue(); in F_Store()
1382 auto bits = rs1.bitcastToAPInt().getZExtValue(); in FMV_f2i()

12345