Searched refs:extractBits (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ShuffleDecodeConstantPool.cpp | 97 APInt EltUndef = UndefBits.extractBits(MaskEltSizeInBits, BitOffset); in extractConstantMask() 107 APInt EltBits = MaskBits.extractBits(MaskEltSizeInBits, BitOffset); in extractConstantMask()
|
D | X86ISelLowering.cpp | 6183 APInt UndefEltBits = UndefBits.extractBits(EltSizeInBits, BitOffset); in getTargetConstantBitsFromNode() 6198 EltBits[i] = MaskBits.extractBits(EltSizeInBits, BitOffset); in getTargetConstantBitsFromNode() 6414 UndefElts = UndefElts.extractBits(NumSubElts, BaseIdx); in getTargetConstantBitsFromNode() 6956 Val = Val.extractBits(ScalarSizeInBits, (M % Scale) * ScalarSizeInBits); in computeZeroableShuffleElements() 6961 Val = Val.extractBits(ScalarSizeInBits, (M % Scale) * ScalarSizeInBits); in computeZeroableShuffleElements() 7187 unsigned LHS = Known0.Zero.extractBits(8, i * 8).getZExtValue(); in getFauxShuffleMask() 7188 unsigned RHS = Known1.Zero.extractBits(8, i * 8).getZExtValue(); in getFauxShuffleMask() 8231 if (UndefMask.extractBits(HalfNumElems, HalfNumElems).isAllOnesValue()) { in EltsFromConsecutiveLoads() 8345 APInt Val = SplatValue.extractBits(ScalarSize, ScalarSize * i); in getConstantVector()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 649 APInt Sub = DemandedBits.extractBits(NumSrcEltBits, Offset); in SimplifyMultipleUseDemandedBits() 935 SubElts = DemandedElts.extractBits(NumSubElts, SubIdx); in SimplifyDemandedBits() 983 DemandedElts.extractBits(NumSubElts, i * NumSubElts); in SimplifyDemandedBits() 1932 APInt Sub = DemandedBits.extractBits(NumSrcEltBits, Offset); in SimplifyDemandedBits() 2270 if (SrcZero.extractBits(Scale, i * Scale).isAllOnesValue()) in SimplifyDemandedVectorElts() 2272 if (SrcUndef.extractBits(Scale, i * Scale).isAllOnesValue()) in SimplifyDemandedVectorElts() 2315 APInt SubElts = DemandedElts.extractBits(NumSubElts, i * NumSubElts); in SimplifyDemandedVectorElts() 2336 APInt SubElts = DemandedElts.extractBits(NumSubElts, SubIdx); in SimplifyDemandedVectorElts() 2371 KnownUndef = SrcUndef.extractBits(NumElts, Idx); in SimplifyDemandedVectorElts() 2372 KnownZero = SrcZero.extractBits(NumElts, Idx); in SimplifyDemandedVectorElts()
|
D | SelectionDAG.cpp | 2341 UndefElts = UndefSrcElts.extractBits(NumElts, Idx); in isSplatValue() 2638 APInt DemandedSubElts = DemandedElts.extractBits(NumSubElts, Idx); in computeKnownBits() 3961 APInt DemandedSubElts = DemandedElts.extractBits(NumSubElts, Idx); in ComputeNumSignBits()
|
D | DAGCombiner.cpp | 5286 Constant &= SplatValue.extractBits(EltBitWidth, i * EltBitWidth); in visitAND() 19819 Bits = Bits.extractBits(NumSubBits, (Split - SubIdx - 1) * NumSubBits); in XformToShuffleWithZero() 19821 Bits = Bits.extractBits(NumSubBits, SubIdx * NumSubBits); in XformToShuffleWithZero()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 1558 APInt extractBits(unsigned numBits, unsigned bitPosition) const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 431 APInt APInt::extractBits(unsigned numBits, unsigned bitPosition) const { in extractBits() function in APInt
|