HomeSort by: relevance | last modified time | path
    Searched refs:IndexTy (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Parallel.h 157 template <class IndexTy, class FuncTy>
158 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) {
177 IndexTy I = Begin;
180 for (IndexTy J = I, E = I + TaskSize; J != E; ++J)
184 for (IndexTy J = I; J < End; ++J)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 318 void constructSubrangeDIE(DIE &Buffer, const DISubrange *SR, DIE *IndexTy);
320 DIE *IndexTy);
DwarfUnit.cpp 1301 DIE *IndexTy) {
1303 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, *IndexTy);
1343 DIE *IndexTy) {
1346 addDIEEntry(DwGenericSubrange, dwarf::DW_AT_type, *IndexTy);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 1239 Type *IndexTy = DL.getIndexType(PtrTy);
1254 NewIndices.push_back(ConstantInt::get(IndexTy, FirstIdx));
1276 NewIndices.push_back(ConstantInt::get(IndexTy,Offset/EltSize));
1898 Type *IndexTy = (*I)->getType();
1900 IndexTy->isVectorTy()
1902 cast<VectorType>(IndexTy)->getElementCount())
1914 if (IndexTy != NewIndexType) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroFrame.cpp 961 *IndexTy = FrameTy->getElementType(IndexIndex);
977 (Layout.getTypeSizeInBits(IndexTy) < 8)
979 : Layout.getTypeSizeInBits(IndexTy),
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 3555 llvm::Type *IndexTy = Int32Ty;
3557 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 2 : 1), nullptr,
3558 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 3 : 2) };
3564 offsetPointerIndexes[2] = llvm::ConstantInt::get(IndexTy, ivarIndex);
TargetInfo.cpp 7445 llvm::Type *IndexTy = CGF.Int64Ty;
7447 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity());
7489 llvm::Value *MaxRegsV = llvm::ConstantInt::get(IndexTy, MaxRegs);
7505 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity()
7520 llvm::Value *One = llvm::ConstantInt::get(IndexTy, 1);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instructions.cpp 1737 template <typename IndexTy>
1738 static Type *getIndexedTypeInternal(Type *Ty, ArrayRef<IndexTy> IdxList) {
1741 for (IndexTy V : IdxList.slice(1)) {
ConstantFold.cpp 2314 template<typename IndexTy>
2315 static bool isInBoundsIndices(ArrayRef<IndexTy> Idxs) {
Verifier.cpp 3650 Type *IndexTy = Idx->getType();
3651 if (auto *IndexVTy = dyn_cast<VectorType>(IndexTy)) {
3655 Assert(IndexTy->isIntOrIntVectorTy(),
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 5560 auto *IndexTy = VectorType::get(ScalarIndexTy, NumElts);
5561 NewAddr = Builder.CreateGEP(NewAddr, Constant::getNullValue(IndexTy));
5590 auto *IndexTy = VectorType::get(ScalarIndexTy, NumElts);
5591 NewAddr = Builder.CreateGEP(V, Constant::getNullValue(IndexTy));

Completed in 103 milliseconds