HomeSort by relevance Sort by last modified time
    Searched defs:Indices (Results 1 - 22 of 22) sorted by null

  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 212 SmallVector<Value *, 2> Indices;
213 Indices.push_back(Constant::getNullValue(Type::getInt64Ty(Ctx)));
214 Indices.push_back(ThreadID);
215 Value *Addr = Builder.CreateInBoundsGEP(NewGV, Indices);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 149 namespace Indices {
153 template<unsigned I, unsigned N, int ...Indices>
154 struct build_indices_impl<I, N, int_tuple<Indices...> >
155 : build_indices_impl<I+1, N, int_tuple<Indices..., I> > {
158 template<unsigned N, int ...Indices>
159 struct build_indices_impl<N, N, int_tuple<Indices...> > {
160 typedef int_tuple<Indices...> type;
  /external/llvm/lib/Object/
Archive.cpp 362 // Skip SymbolCount to get to the indices table.
363 const char *Indices = Buf + sizeof(support::ulittle32_t);
368 *(reinterpret_cast<const support::ulittle16_t*>(Indices)
460 buf += 4 + (symbol_count * 2); // Skip indices.
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 314 std::vector<Value*> Indices;
315 Indices.push_back(Constant::getNullValue(Type::getInt32Ty(Mod->getContext())));
316 Indices.push_back(TID);
318 Value *Offset = Builder.CreateGEP(GV, Indices);
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 352 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
355 Value* Val = B.CreateGEP(BasePtr, Indices, Name);
365 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
367 Value *Val = B.CreateGEP(BasePtr, Indices, Name);
  /external/llvm/lib/IR/
ConstantsContext.h 176 Indices(IdxList) {
180 /// Indices - These identify which value to extract.
181 const SmallVector<unsigned, 4> Indices;
202 Indices(IdxList) {
207 /// Indices - These identify the position for the insertion.
208 const SmallVector<unsigned, 4> Indices;
326 operands(ops.begin(), ops.end()), indices(inds.begin(), inds.end()) {}
331 SmallVector<unsigned, 4> indices; member in struct:llvm::ExprMapKeyType
337 this->indices == that.indices;
    [all...]
AsmWriter.cpp     [all...]
Constants.cpp     [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 672 ArrayRef<unsigned> Indices = CE->getIndices();
673 if (Value *W = FindInsertedValue(CE->getOperand(0), Indices))
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 76 /// A vector used to hold the indices of a single GEP instruction
257 /// Checks if Indices, or a prefix of Indices, is in Set.
258 static bool PrefixIn(const ArgPromotion::IndicesVector &Indices,
261 Low = Set.upper_bound(Indices);
264 // Low is now the last element smaller than or equal to Indices. This means
265 // it points to a prefix of Indices (possibly Indices itself), if such
269 return Low != Set.end() && IsPrefix(*Low, Indices);
272 /// Mark the given indices (ToMark) as safe in the given set of indice
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 217 // for all uncached indices.
444 SmallVector<Value *, 8> Indices;
445 Indices.resize(NumIndices);
447 Indices[J] = Ops[J][I];
448 Res[I] = Builder.CreateGEP(Base[I], Indices,
SROA.cpp 424 // For array or vector indices, scale the index by the size of the type.
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 93 // The lane mask is simply the union of all sub-indices.
257 // Expand any composed subreg indices.
259 // qsub_1 subreg, add a dsub_2 subreg. Keep growing Indices and process
260 // expanded subreg indices recursively.
261 SmallVector<CodeGenSubRegIndex*, 8> Indices = ExplicitSubRegIndices;
262 for (unsigned i = 0; i != Indices.size(); ++i) {
263 CodeGenSubRegIndex *Idx = Indices[i];
281 Indices.push_back(I->second);
287 // Work backwards in the Indices vector in order to compose subregs bottom-up.
301 while (!Indices.empty() && !Orphans.empty())
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 322 CRecordVector<UInt32> Indices;
835 groups[GetGroupIndex(method.PasswordIsDefined, filteredGroup)].Indices.Add(i);
1012 int numFiles = group.Indices.Size();
1019 refItems.Add(CRefItem(group.Indices[i], updateItems[group.Indices[i]], sortByType));
1022 CRecordVector<UInt32> indices; local
1023 indices.Reserve(numFiles);
1028 indices.Add(index);
1050 const CUpdateItem &ui = updateItems[indices[i + numSubFiles]];
1069 inStreamSpec->Init(updateCallback, &indices[i], numSubFiles);
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp     [all...]
CGBuiltin.cpp     [all...]
CGExpr.cpp 567 llvm::Value *Indices[] = { Builder.getInt32(0), Slot };
569 Builder.CreateLoad(Builder.CreateInBoundsGEP(Cache, Indices));
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 768 assert(Ty && "Invalid GetElementPtrInst indices for type!");
780 /// list of indices. The first ctor can optionally insert before an existing
844 /// Null is returned if the indices are invalid for the specified
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 290 milliseconds