Home
last modified time | relevance | path

Searched refs:RawBits (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupVectorConstants.cpp208 SmallVector<uint8_t> RawBits; in rebuildConstant() local
210 RawBits.push_back(Bits.extractBits(8, I).getZExtValue()); in rebuildConstant()
211 return ConstantDataVector::get(Ctx, RawBits); in rebuildConstant()
215 SmallVector<uint16_t> RawBits; in rebuildConstant() local
217 RawBits.push_back(Bits.extractBits(16, I).getZExtValue()); in rebuildConstant()
219 return ConstantDataVector::getFP(SclTy, RawBits); in rebuildConstant()
220 return ConstantDataVector::get(Ctx, RawBits); in rebuildConstant()
224 SmallVector<uint32_t> RawBits; in rebuildConstant() local
226 RawBits.push_back(Bits.extractBits(32, I).getZExtValue()); in rebuildConstant()
228 return ConstantDataVector::getFP(SclTy, RawBits); in rebuildConstant()
[all …]
H A DX86ISelLowering.cpp4855 APInt RawBits = Cst->getValueAPF().bitcastToAPInt(); in getTargetConstantBitsFromNode() local
4856 SmallVector<APInt, 64> SrcEltBits(1, RawBits); in getTargetConstantBitsFromNode()
40018 SmallVector<APInt> RawBits; in combineX86ShufflesRecursively() local
40021 RawBits, in combineX86ShufflesRecursively()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DScaledNumber.cpp184 uint64_t RawBits[2] = {D, AdjustedE}; in toStringAPFloat() local
185 APFloat Float(APFloat::x87DoubleExtended(), APInt(80, RawBits)); in toStringAPFloat()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6609 SmallVector<APInt> RawBits; in FoldConstantArithmetic() local
6615 RawBits.push_back(*Fold); in FoldConstantArithmetic()
6617 if (RawBits.size() == NumElts.getFixedValue()) { in FoldConstantArithmetic()
6632 DstBits, RawBits, DstUndefs, in FoldConstantArithmetic()
6633 BitVector(RawBits.size(), false)); in FoldConstantArithmetic()
H A DDAGCombiner.cpp15829 SmallVector<APInt> RawBits; in ConstantFoldBITCASTofBUILD_VECTOR() local
15831 if (!BVN->getConstantRawBits(IsLE, DstBitSize, RawBits, UndefElements)) in ConstantFoldBITCASTofBUILD_VECTOR()
15836 for (unsigned I = 0, E = RawBits.size(); I != E; ++I) { in ConstantFoldBITCASTofBUILD_VECTOR()
15840 Ops.push_back(DAG.getConstant(RawBits[I], DL, DstEltVT)); in ConstantFoldBITCASTofBUILD_VECTOR()