Home
last modified time | relevance | path

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

1234

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp3336 APInt IEEEFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::IEEEFloat
3363 APInt api = bitcastToAPInt(); in convertToFloat()
3370 APInt api = bitcastToAPInt(); in convertToDouble()
4514 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in divide()
4523 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in remainder()
4532 APFloat Tmp(semPPCDoubleDoubleLegacy, bitcastToAPInt()); in mod()
4647 APInt DoubleAPFloat::bitcastToAPInt() const { in bitcastToAPInt() function in llvm::detail::DoubleAPFloat
4650 Floats[0].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
4651 Floats[1].bitcastToAPInt().getRawData()[0], in bitcastToAPInt()
4756 APFloat(semPPCDoubleDoubleLegacy, bitcastToAPInt()) in toString()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h687 return getFP16Imm(FPImm.bitcastToAPInt()); in getFP16Imm()
699 return getFP32FP16Imm(FPImm.bitcastToAPInt()); in getFP32FP16Imm()
727 return getFP32Imm(FPImm.bitcastToAPInt()); in getFP32Imm()
755 return getFP64Imm(FPImm.bitcastToAPInt()); in getFP64Imm()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXMCExpr.cpp49 APInt API = APF.bitcastToAPInt(); in printImpl()
H A DNVPTXAsmPrinter.cpp1696 APInt API = APF.bitcastToAPInt(); in printFPConstant()
1854 APInt API = CFP->getValueAPF().bitcastToAPInt(); in bufferLEByte()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp691 GV.IntVal = apf.bitcastToAPInt(); in getConstantValue()
706 GV.IntVal = apf.bitcastToAPInt(); in getConstantValue()
844 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
849 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
854 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
859 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
863 GV.IntVal = apfLHS.bitcastToAPInt(); in getConstantValue()
893 Result.IntVal = cast <ConstantFP>(C)->getValueAPF().bitcastToAPInt(); in getConstantValue()
/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRVRegNamerUtils.cpp78 MO.getFPImm()->getValueAPF().bitcastToAPInt().getZExtValue()); in getInstructionOpcodeHash()
H A DMachineStableHash.cpp78 : MO.getFPImm()->getValueAPF().bitcastToAPInt(); in stableHashValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp134 MCConstantExpr::create(*Val.bitcastToAPInt().getRawData(), in HexagonLowerToMC()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h309 APInt bitcastToAPInt() const;
663 APInt bitcastToAPInt() const;
1132 APInt bitcastToAPInt() const { in bitcastToAPInt() function
1133 APFLOAT_DISPATCH_ON_SEMANTICS(bitcastToAPInt()); in bitcastToAPInt()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp576 profileIntValue(ID, getFloat().bitcastToAPInt()); in Profile()
584 profileIntValue(ID, getComplexFloatReal().bitcastToAPInt()); in Profile()
585 profileIntValue(ID, getComplexFloatImag().bitcastToAPInt()); in Profile()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp98 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue(); in isAllOnesValue()
115 return CFP->getValueAPF().bitcastToAPInt().isOneValue(); in isOneValue()
132 return !CFP->getValueAPF().bitcastToAPInt().isOneValue(); in isNotOneValue()
160 return CFP->getValueAPF().bitcastToAPInt().isMinSignedValue(); in isMinSignedValue()
177 return !CFP->getValueAPF().bitcastToAPInt().isMinSignedValue(); in isNotMinSignedValue()
1209 Elts.push_back(CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getFPSequenceIfElementsMatch()
3157 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
3162 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
3167 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
3172 NumElts, CFP->getValueAPF().bitcastToAPInt().getLimitedValue()); in getSplat()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp126 store(m_float.bitcastToAPInt()); in GetBytes()
138 return m_float.bitcastToAPInt().getBitWidth() / 8; in GetByteSize()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PreLegalizerCombiner.cpp57 MIB.buildConstant(MI.getOperand(0).getReg(), ImmValAPF.bitcastToAPInt()); in applyFConstantToConstant()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp273 APInt AI = FP.bitcastToAPInt(); in toString()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp265 Imm->getValueAPF().bitcastToAPInt().getZExtValue(); in lower()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelDAGToDAG.cpp107 const APInt &Imm = N->getValueAPF().bitcastToAPInt(); in getFpImmVal()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td273 let Read = [{ node.getFloat().bitcastToAPInt() }];
312 let Read = [{ node.getComplexFloatReal().bitcastToAPInt() }];
315 let Read = [{ node.getComplexFloatImag().bitcastToAPInt() }];
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp95 return cmpAPInts(L.bitcastToAPInt(), R.bitcastToAPInt()); in cmpAPFloats()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp69 Out = C->getValueAPF().bitcastToAPInt().getSExtValue(); in getConstantValue()
601 return TII->isInlineConstant(-C->getValueAPF().bitcastToAPInt()); in isInlineImmediate()
608 return TII->isInlineConstant(C->getValueAPF().bitcastToAPInt()); in isInlineImmediate()
873 Imm = FP->getValueAPF().bitcastToAPInt().getZExtValue(); in Select()
2911 .bitcastToAPInt().getZExtValue(); in SelectVOP3PMods()
3006 C->getValueAPF().bitcastToAPInt().getZExtValue() << 16, SL, MVT::i32); in getHi16Elt()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp225 APInt API = APF.bitcastToAPInt(); in addConstantFP()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp235 uint64_t words[2] = { CN->getValueAPF().bitcastToAPInt().getRawData()[1], in SoftenFloatRes_ConstantFP()
236 CN->getValueAPF().bitcastToAPInt().getRawData()[0] }; in SoftenFloatRes_ConstantFP()
242 return DAG.getConstant(CN->getValueAPF().bitcastToAPInt(), SDLoc(CN), in SoftenFloatRes_ConstantFP()
1268 APInt C = cast<ConstantFPSDNode>(N)->getValueAPF().bitcastToAPInt(); in ExpandFloatRes_ConstantFP()
2316 SDValue C = DAG.getConstant(CFPNode->getValueAPF().bitcastToAPInt(), DL, in PromoteFloatRes_ConstantFP()
2664 return DAG.getConstant(CN->getValueAPF().bitcastToAPInt(), SDLoc(CN), in SoftPromoteHalfRes_ConstantFP()
H A DSelectionDAG.cpp150 SplatVal = Op0->getValueAPF().bitcastToAPInt().truncOrSelf(EltSize); in isConstantSplatVector()
206 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize) in isConstantSplatVectorAllOnes()
250 if (CFPN->getValueAPF().bitcastToAPInt().countTrailingZeros() < EltSize) in isConstantSplatVectorAllZeros()
2768 return KnownBits::makeConstant(C->getValueAPF().bitcastToAPInt()); in computeKnownBits()
3221 APInt Value = CFP->getValueAPF().bitcastToAPInt(); in computeKnownBits()
3236 KnownBits::makeConstant(CFP->getValueAPF().bitcastToAPInt()); in computeKnownBits()
4204 APInt Value = CFP->getValueAPF().bitcastToAPInt(); in ComputeNumSignBits()
4783 return getConstant((uint16_t)V.bitcastToAPInt().getZExtValue(), DL, VT); in getNode()
4789 return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT); in getNode()
4797 return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT); in getNode()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.cpp466 MI.getOperand(1).getFPImm()->getValueAPF().bitcastToAPInt(); in legalizeCustom()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp313 return CstVal.getFPImm()->getValueAPF().bitcastToAPInt(); in getConstantVRegValWithLookThrough()

1234