Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
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()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.h318 void constructSubrangeDIE(DIE &Buffer, const DISubrange *SR, DIE *IndexTy);
320 DIE *IndexTy);
DDwarfUnit.cpp1307 DIE *IndexTy) { in constructSubrangeDIE() argument
1309 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, *IndexTy); in constructSubrangeDIE()
1349 DIE *IndexTy) { in constructGenericSubrangeDIE() argument
1352 addDIEEntry(DwGenericSubrange, dwarf::DW_AT_type, *IndexTy); in constructGenericSubrangeDIE()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp1280 Type *IndexTy = DL.getIndexType(PtrTy); in FindElementAtOffset() local
1295 NewIndices.push_back(ConstantInt::get(IndexTy, FirstIdx)); in FindElementAtOffset()
1317 NewIndices.push_back(ConstantInt::get(IndexTy,Offset/EltSize)); in FindElementAtOffset()
1939 Type *IndexTy = (*I)->getType(); in visitGetElementPtrInst() local
1941 IndexTy->isVectorTy() in visitGetElementPtrInst()
1943 cast<VectorType>(IndexTy)->getElementCount()) in visitGetElementPtrInst()
1955 if (IndexTy != NewIndexType) { in visitGetElementPtrInst()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
DCoroFrame.cpp973 *IndexTy = FrameTy->getElementType(IndexIndex); in buildFrameDebugInfo() local
989 (Layout.getTypeSizeInBits(IndexTy) < 8) in buildFrameDebugInfo()
991 : Layout.getTypeSizeInBits(IndexTy), in buildFrameDebugInfo()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGObjCGNU.cpp3558 llvm::Type *IndexTy = Int32Ty; in GenerateClass() local
3560 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 2 : 1), nullptr, in GenerateClass()
3561 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 3 : 2) }; in GenerateClass()
3567 offsetPointerIndexes[2] = llvm::ConstantInt::get(IndexTy, ivarIndex); in GenerateClass()
DTargetInfo.cpp7462 llvm::Type *IndexTy = CGF.Int64Ty; in EmitVAArg() local
7464 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity()); in EmitVAArg()
7507 llvm::Value *MaxRegsV = llvm::ConstantInt::get(IndexTy, MaxRegs); in EmitVAArg()
7523 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity() in EmitVAArg()
7538 llvm::Value *One = llvm::ConstantInt::get(IndexTy, 1); in EmitVAArg()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DConstantFold.cpp2063 template<typename IndexTy>
2064 static bool isInBoundsIndices(ArrayRef<IndexTy> Idxs) { in isInBoundsIndices()
DInstructions.cpp1750 template <typename IndexTy>
1751 static Type *getIndexedTypeInternal(Type *Ty, ArrayRef<IndexTy> IdxList) { in getIndexedTypeInternal()
1754 for (IndexTy V : IdxList.slice(1)) { in getIndexedTypeInternal()
DVerifier.cpp3616 Type *IndexTy = Idx->getType(); in visitGetElementPtrInst() local
3617 if (auto *IndexVTy = dyn_cast<VectorType>(IndexTy)) { in visitGetElementPtrInst()
3621 Assert(IndexTy->isIntOrIntVectorTy(), in visitGetElementPtrInst()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DCodeGenPrepare.cpp5564 auto *IndexTy = VectorType::get(ScalarIndexTy, NumElts); in optimizeGatherScatterInst() local
5568 Builder.CreateGEP(SecondTy, NewAddr, Constant::getNullValue(IndexTy)); in optimizeGatherScatterInst()
5599 auto *IndexTy = VectorType::get(ScalarIndexTy, NumElts); in optimizeGatherScatterInst() local
5609 NewAddr = Builder.CreateGEP(ScalarTy, V, Constant::getNullValue(IndexTy)); in optimizeGatherScatterInst()