Home
last modified time | relevance | path

Searched refs:EltNo (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCVSXSwapRemoval.cpp838 unsigned EltNo; in handleSpecialSwappables() local
840 EltNo = MI->getOperand(2).getImm(); in handleSpecialSwappables()
842 EltNo = MI->getOperand(1).getImm(); in handleSpecialSwappables()
844 EltNo = (EltNo + NElts / 2) % NElts; in handleSpecialSwappables()
846 MI->getOperand(2).setImm(EltNo); in handleSpecialSwappables()
848 MI->getOperand(1).setImm(EltNo); in handleSpecialSwappables()
DPPCISelLowering.cpp9428 unsigned EltNo = 8; // Start out undef. in LowerVECTOR_SHUFFLE() local
9439 if (EltNo == 8) { in LowerVECTOR_SHUFFLE()
9440 EltNo = ByteSource/4; in LowerVECTOR_SHUFFLE()
9441 } else if (EltNo != ByteSource/4) { in LowerVECTOR_SHUFFLE()
9446 PFIndexes[i] = EltNo; in LowerVECTOR_SHUFFLE()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DVectorUtils.cpp262 Value *llvm::findScalarElement(Value *V, unsigned EltNo) { in findScalarElement() argument
266 if (EltNo >= Width) // Out of range access. in findScalarElement()
270 return C->getAggregateElement(EltNo); in findScalarElement()
280 if (EltNo == IIElt) in findScalarElement()
285 return findScalarElement(III->getOperand(0), EltNo); in findScalarElement()
290 int InEl = SVI->getMaskValue(EltNo); in findScalarElement()
302 if (Constant *Elt = C->getAggregateElement(EltNo)) in findScalarElement()
304 return findScalarElement(Val, EltNo); in findScalarElement()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DSmallVector.h474 size_t EltNo = I-this->begin(); in insert() local
476 I = this->begin()+EltNo; in insert()
504 size_t EltNo = I-this->begin(); in insert() local
506 I = this->begin()+EltNo; in insert()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DSmallVector.h477 size_t EltNo = I-this->begin(); in insert() local
479 I = this->begin()+EltNo; in insert()
507 size_t EltNo = I-this->begin(); in insert() local
509 I = this->begin()+EltNo; in insert()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DVectorUtils.h219 Value *findScalarElement(Value *V, unsigned EltNo);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600ISelLowering.cpp1890 SDValue EltNo = N->getOperand(2); in PerformDAGCombine() local
1903 if (!isa<ConstantSDNode>(EltNo)) in PerformDAGCombine()
1905 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); in PerformDAGCombine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp3247 SDValue EltNo = Op.getOperand(1); in computeKnownBits() local
3255 ConstantSDNode *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo); in computeKnownBits()
3272 SDValue EltNo = Op.getOperand(2); in computeKnownBits() local
3274 ConstantSDNode *CEltNo = dyn_cast<ConstantSDNode>(EltNo); in computeKnownBits()
3861 SDValue EltNo = Op.getOperand(2); in ComputeNumSignBits() local
3863 ConstantSDNode *CEltNo = dyn_cast<ConstantSDNode>(EltNo); in ComputeNumSignBits()
3897 SDValue EltNo = Op.getOperand(1); in ComputeNumSignBits() local
3912 ConstantSDNode *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo); in ComputeNumSignBits()
DDAGCombiner.cpp349 SDValue EltNo,
10788 SDValue EltNo = N0->getOperand(1); in visitTRUNCATE() local
10789 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) { in visitTRUNCATE()
10790 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue(); in visitTRUNCATE()
16852 SDValue EltNo = N->getOperand(2); in visitINSERT_VECTOR_ELT() local
16859 if (auto *IndexC = dyn_cast<ConstantSDNode>(EltNo)) in visitINSERT_VECTOR_ELT()
16866 InVec == InVal.getOperand(0) && EltNo == InVal.getOperand(1)) in visitINSERT_VECTOR_ELT()
16869 auto *IndexC = dyn_cast<ConstantSDNode>(EltNo); in visitINSERT_VECTOR_ELT()
16898 InVec.getOperand(0), InVal, EltNo); in visitINSERT_VECTOR_ELT()
16938 SDValue EltNo, in scalarizeExtractedVectorLoad() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp6592 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue(); in ReconstructShuffle() local
6593 Source->MinElt = std::min(Source->MinElt, EltNo); in ReconstructShuffle()
6594 Source->MaxElt = std::max(Source->MaxElt, EltNo); in ReconstructShuffle()
6706 int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue(); in ReconstructShuffle() local
6720 int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase; in ReconstructShuffle()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp7436 unsigned EltNo = cast<ConstantSDNode>(V.getOperand(1))->getZExtValue(); in ReconstructShuffle() local
7437 Source->MinElt = std::min(Source->MinElt, EltNo); in ReconstructShuffle()
7438 Source->MaxElt = std::max(Source->MaxElt, EltNo); in ReconstructShuffle()
7547 int EltNo = cast<ConstantSDNode>(Entry.getOperand(1))->getSExtValue(); in ReconstructShuffle() local
7561 int ExtractBase = EltNo * Src->WindowScale + Src->WindowBase; in ReconstructShuffle()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp7995 int EltNo = (Offset - StartOffset) >> 2; in LowerAsSplatVectorLoad() local
8002 SmallVector<int, 8> Mask(NumElems, EltNo); in LowerAsSplatVectorLoad()