Searched refs:Indices (Results 101 - 114 of 114) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1266 ArrayRef<unsigned> Indices,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp1538 ArrayRef<unsigned> Indices = CE->getIndices(); local
1539 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
1540 Out << ", " << Indices[i]; local
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h1996 Constant *Indices[] = {Zero, Zero}; local
1998 Indices);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp3779 ArrayRef<unsigned> Indices; local
3781 Indices = IV->getIndices();
3783 Indices = cast<ConstantExpr>(&I)->getIndices();
3792 unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices);
3833 ArrayRef<unsigned> Indices; local
3835 Indices = EV->getIndices();
3837 Indices = cast<ConstantExpr>(&I)->getIndices();
3844 unsigned LinearIndex = ComputeLinearIndex(AggTy, Indices);
H A DDAGCombiner.cpp19802 SmallVector<int, 8> Indices;
19810 Indices.push_back(i + NumSubElts);
19829 Indices.push_back(i);
19831 Indices.push_back(i + NumSubElts);
19839 if (!TLI.isVectorClearMaskLegal(Indices, ClearVT))
19845 Zero, Indices));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp196 auto Indices = TII->getSerializableTargetIndices(); local
197 for (const auto &I : Indices)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp7089 SmallVector<uint32_t, 4> Indices;
7090 E->getEncodedElementAccess(Indices);
7091 if (Indices.size() == 1) {
7093 return DerivedSuccess(Val.getVectorElt(Indices[0]), E);
7097 for (unsigned I = 0; I < Indices.size(); ++I) {
7098 Elts.push_back(Val.getVectorElt(Indices[I]));
7100 APValue VecResult(Elts.data(), Indices.size());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp4034 static void inversePermutation(ArrayRef<unsigned> Indices,
4037 const unsigned E = Indices.size();
4040 Mask[Indices[I]] = I;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h2446 /// \p Indices is the corresponding indices for each shufflevector.
2450 ArrayRef<unsigned> Indices,
2448 lowerInterleavedLoad(LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles, ArrayRef<unsigned> Indices, unsigned Factor) const argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp1722 llvm::Value *Indices[] = { local
1729 Indices, /*InBounds=*/true,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2621 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
2622 V = ConstantExpr::getGetElementPtr(PointeeType, Elts[0], Indices,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp9132 ArrayRef<unsigned> Indices, unsigned Factor) const {
9136 assert(Shuffles.size() == Indices.size() &&
9205 unsigned Index = Indices[i];
9130 lowerInterleavedLoad( LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles, ArrayRef<unsigned> Indices, unsigned Factor) const argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp11065 ArrayRef<unsigned> Indices = ExtValue->getIndices(); local
11066 if (Indices.size() == 1 && Indices[0] == 1) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp17042 ArrayRef<unsigned> Indices, unsigned Factor) const {
17046 assert(Shuffles.size() == Indices.size() &&
17140 unsigned Index = Indices[i];
17040 lowerInterleavedLoad( LoadInst *LI, ArrayRef<ShuffleVectorInst *> Shuffles, ArrayRef<unsigned> Indices, unsigned Factor) const argument

Completed in 500 milliseconds

12345