Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Indices

557     llvm::Value *Indices[] = { Builder.getInt32(0), Slot };
559 Builder.CreateLoad(Builder.CreateInBoundsGEP(Cache, Indices));
1532 // FIXME: since we're shuffling with undef, can we just use the indices
2376 // Encode the element access list into a vector of unsigned indices.
2377 SmallVector<unsigned, 4> Indices;
2378 E->getEncodedElementAccess(Indices);
2381 llvm::Constant *CV = GenerateConstantVector(Builder, Indices);
2390 for (unsigned i = 0, e = Indices.size(); i != e; ++i)
2391 CElts.push_back(BaseElts->getAggregateElement(Indices[i]));