Home
last modified time | relevance | path

Searched refs:IndexTy (Results 1 – 11 of 11) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DParallel.h157 template <class IndexTy, class FuncTy>
158 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) { in parallel_for_each_n()
177 IndexTy I = Begin; in parallel_for_each_n()
180 for (IndexTy J = I, E = I + TaskSize; J != E; ++J) in parallel_for_each_n()
184 for (IndexTy J = I; J < End; ++J) in parallel_for_each_n()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h318 void constructSubrangeDIE(DIE &Buffer, const DISubrange *SR, DIE *IndexTy);
320 DIE *IndexTy);
H A DDwarfUnit.cpp1301 DIE *IndexTy) { in constructSubrangeDIE() argument
1303 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, *IndexTy); in constructSubrangeDIE()
1343 DIE *IndexTy) { in constructGenericSubrangeDIE() argument
1346 addDIEEntry(DwGenericSubrange, dwarf::DW_AT_type, *IndexTy); in constructGenericSubrangeDIE()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1239 Type *IndexTy = DL.getIndexType(PtrTy); in FindElementAtOffset() local
1254 NewIndices.push_back(ConstantInt::get(IndexTy, FirstIdx)); in FindElementAtOffset()
1276 NewIndices.push_back(ConstantInt::get(IndexTy,Offset/EltSize)); in FindElementAtOffset()
1898 Type *IndexTy = (*I)->getType(); in visitGetElementPtrInst() local
1900 IndexTy->isVectorTy() in visitGetElementPtrInst()
1902 cast<VectorType>(IndexTy)->getElementCount()) in visitGetElementPtrInst()
1914 if (IndexTy != NewIndexType) { in visitGetElementPtrInst()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroFrame.cpp961 *IndexTy = FrameTy->getElementType(IndexIndex); in buildFrameDebugInfo() local
977 (Layout.getTypeSizeInBits(IndexTy) < 8) in buildFrameDebugInfo()
979 : Layout.getTypeSizeInBits(IndexTy), in buildFrameDebugInfo()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjCGNU.cpp3555 llvm::Type *IndexTy = Int32Ty; in GenerateClass() local
3557 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 2 : 1), nullptr, in GenerateClass()
3558 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 3 : 2) }; in GenerateClass()
3564 offsetPointerIndexes[2] = llvm::ConstantInt::get(IndexTy, ivarIndex); in GenerateClass()
H A DTargetInfo.cpp7445 llvm::Type *IndexTy = CGF.Int64Ty; in EmitVAArg() local
7447 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity()); in EmitVAArg()
7489 llvm::Value *MaxRegsV = llvm::ConstantInt::get(IndexTy, MaxRegs); in EmitVAArg()
7505 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity() in EmitVAArg()
7520 llvm::Value *One = llvm::ConstantInt::get(IndexTy, 1); in EmitVAArg()
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantFold.cpp2314 template<typename IndexTy>
2315 static bool isInBoundsIndices(ArrayRef<IndexTy> Idxs) { in isInBoundsIndices()
H A DInstructions.cpp1737 template <typename IndexTy>
1738 static Type *getIndexedTypeInternal(Type *Ty, ArrayRef<IndexTy> IdxList) { in getIndexedTypeInternal()
1741 for (IndexTy V : IdxList.slice(1)) { in getIndexedTypeInternal()
H A DVerifier.cpp3650 Type *IndexTy = Idx->getType(); in visitGetElementPtrInst() local
3651 if (auto *IndexVTy = dyn_cast<VectorType>(IndexTy)) { in visitGetElementPtrInst()
3655 Assert(IndexTy->isIntOrIntVectorTy(), in visitGetElementPtrInst()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5560 auto *IndexTy = VectorType::get(ScalarIndexTy, NumElts); in optimizeGatherScatterInst() local
5561 NewAddr = Builder.CreateGEP(NewAddr, Constant::getNullValue(IndexTy)); in optimizeGatherScatterInst()
5590 auto *IndexTy = VectorType::get(ScalarIndexTy, NumElts); in optimizeGatherScatterInst() local
5591 NewAddr = Builder.CreateGEP(V, Constant::getNullValue(IndexTy)); in optimizeGatherScatterInst()