Searched refs:RawBits (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FixupVectorConstants.cpp | 215 SmallVector<uint8_t> RawBits; in rebuildConstant() local 217 RawBits.push_back(Bits.extractBits(8, I).getZExtValue()); in rebuildConstant() 218 return ConstantDataVector::get(Ctx, RawBits); in rebuildConstant() 222 SmallVector<uint16_t> RawBits; in rebuildConstant() local 224 RawBits.push_back(Bits.extractBits(16, I).getZExtValue()); in rebuildConstant() 226 return ConstantDataVector::getFP(SclTy, RawBits); in rebuildConstant() 227 return ConstantDataVector::get(Ctx, RawBits); in rebuildConstant() 231 SmallVector<uint32_t> RawBits; in rebuildConstant() local 233 RawBits.push_back(Bits.extractBits(32, I).getZExtValue()); in rebuildConstant() 235 return ConstantDataVector::getFP(SclTy, RawBits); in rebuildConstant() [all …]
|
| H A D | X86ISelLowering.cpp | 5115 APInt RawBits = Cst->getValueAPF().bitcastToAPInt(); in getTargetConstantBitsFromNode() local 5116 SmallVector<APInt, 64> SrcEltBits(1, RawBits); in getTargetConstantBitsFromNode() 41487 SmallVector<APInt> RawBits; in combineX86ShufflesRecursively() local 41490 RawBits, in combineX86ShufflesRecursively()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ScaledNumber.cpp | 184 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 D | SelectionDAG.cpp | 7060 SmallVector<APInt> RawBits; in FoldConstantArithmetic() local 7066 RawBits.push_back(*Fold); in FoldConstantArithmetic() 7068 if (RawBits.size() == NumElts.getFixedValue()) { in FoldConstantArithmetic() 7083 DstBits, RawBits, DstUndefs, in FoldConstantArithmetic() 7084 BitVector(RawBits.size(), false)); in FoldConstantArithmetic() 7349 SmallVector<APInt> RawBits; in FoldConstantBuildVector() local 7351 if (!BV->getConstantRawBits(IsLE, DstBitSize, RawBits, UndefElements)) in FoldConstantBuildVector() 7355 for (unsigned I = 0, E = RawBits.size(); I != E; ++I) { in FoldConstantBuildVector() 7359 Ops.push_back(getConstant(RawBits[I], DL, DstEltVT)); in FoldConstantBuildVector()
|