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

  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 118 SmallVector<Value *, 2> Indices;
119 Indices.push_back(Constant::getNullValue(Type::getInt64Ty(Ctx)));
120 Indices.push_back(ThreadID);
121 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 354 // Skip SymbolCount to get to the indices table.
355 const char *Indices = Buf + sizeof(support::ulittle32_t);
360 *(reinterpret_cast<const support::ulittle16_t*>(Indices)
404 buf += 4 + (symbol_count * 2); // Skip indices.
  /external/llvm/lib/Analysis/
Lint.cpp 645 ArrayRef<unsigned> Indices = CE->getIndices();
646 if (Value *W = FindInsertedValue(CE->getOperand(0), Indices))
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 351 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
354 Value* Val = B.CreateGEP(BasePtr, Indices, Name);
364 Value *Indices[] = { ConstantInt::get(Type::getInt32Ty(Context), 0),
366 Value *Val = B.CreateGEP(BasePtr, Indices, Name);
  /external/llvm/lib/IR/
ConstantsContext.h 173 Indices(IdxList) {
177 /// Indices - These identify which value to extract.
178 const SmallVector<unsigned, 4> Indices;
199 Indices(IdxList) {
204 /// Indices - These identify the position for the insertion.
205 const SmallVector<unsigned, 4> Indices;
323 operands(ops.begin(), ops.end()), indices(inds.begin(), inds.end()) {}
328 SmallVector<unsigned, 4> indices; member in struct:llvm::ExprMapKeyType
334 this->indices == that.indices;
    [all...]
AsmWriter.cpp     [all...]
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 73 /// A vector used to hold the indices of a single GEP instruction
248 /// Checks if Indices, or a prefix of Indices, is in Set.
249 static bool PrefixIn(const ArgPromotion::IndicesVector &Indices,
252 Low = Set.upper_bound(Indices);
255 // Low is now the last element smaller than or equal to Indices. This means
256 // it points to a prefix of Indices (possibly Indices itself), if such
260 return Low != Set.end() && IsPrefix(*Low, Indices);
263 /// Mark the given indices (ToMark) as safe in the given set of indice
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
CGExprConstant.cpp 97 llvm::Value *Indices[] = {
102 llvm::ConstantExpr::getInBoundsGetElementPtr(VTable, Indices);
    [all...]
CGExpr.cpp 557 llvm::Value *Indices[] = { Builder.getInt32(0), Slot };
559 Builder.CreateLoad(Builder.CreateInBoundsGEP(Cache, Indices));
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 704 assert(Ty && "Invalid GetElementPtrInst indices for type!");
716 /// list of indices. The first ctor can optionally insert before an existing
780 /// Null is returned if the indices are invalid for the specified
837 /// hasAllZeroIndices - Return true if all of the indices of this GEP are
842 /// hasAllConstantIndices - Return true if all of the indices of this GEP are
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 759 /// or not there is a sequence of GEP indices into the type that will land us at
820 // If this GEP has only 0 indices, it is the same pointer as
822 // the indices.
    [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/llvm/lib/Transforms/Scalar/
SROA.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 659 /// 64 bit loop indices.
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 931 milliseconds