Searched refs:IndexTy (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DParallel.h141 template <class IndexTy, class FuncTy>
142 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) {
148 IndexTy I = Begin;
151 for (IndexTy J = I, E = I + TaskSize; J != E; ++J)
155 for (IndexTy J = I; J < End; ++J)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.h311 void constructSubrangeDIE(DIE &Buffer, const DISubrange *SR, DIE *IndexTy);
H A DDwarfUnit.cpp1344 DIE *IndexTy) {
1346 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, *IndexTy);
1343 constructSubrangeDIE(DIE &Buffer, const DISubrange *SR, DIE *IndexTy) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1150 Type *IndexTy = DL.getIndexType(PtrTy);
1165 NewIndices.push_back(ConstantInt::get(IndexTy, FirstIdx));
1187 NewIndices.push_back(ConstantInt::get(IndexTy,Offset/EltSize));
1807 Type *IndexTy = (*I)->getType(); local
1809 IndexTy->isVectorTy()
1811 cast<VectorType>(IndexTy)->getElementCount())
1823 if (IndexTy != NewIndexType) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp3547 llvm::Type *IndexTy = Int32Ty; local
3549 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 2 : 1), nullptr,
3550 llvm::ConstantInt::get(IndexTy, ClassABIVersion > 1 ? 3 : 2) };
3556 offsetPointerIndexes[2] = llvm::ConstantInt::get(IndexTy, ivarIndex);
H A DTargetInfo.cpp7317 llvm::Type *IndexTy = CGF.Int64Ty;
7319 llvm::ConstantInt::get(IndexTy, PaddedSize.getQuantity());
7361 llvm::Value *MaxRegsV = llvm::ConstantInt::get(IndexTy, MaxRegs);
7377 llvm::ConstantInt::get(IndexTy, RegSaveIndex * PaddedSize.getQuantity()
7392 llvm::Value *One = llvm::ConstantInt::get(IndexTy, 1);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp1699 template <typename IndexTy>
1700 static Type *getIndexedTypeInternal(Type *Ty, ArrayRef<IndexTy> IdxList) {
1703 for (IndexTy V : IdxList.slice(1)) {
H A DConstantFold.cpp2224 template<typename IndexTy>
2225 static bool isInBoundsIndices(ArrayRef<IndexTy> Idxs) {
H A DVerifier.cpp3444 Type *IndexTy = Idx->getType(); local
3445 if (auto *IndexVTy = dyn_cast<VectorType>(IndexTy)) {
3449 Assert(IndexTy->isIntOrIntVectorTy(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5344 auto *IndexTy = FixedVectorType::get(ScalarIndexTy, NumElts); local
5345 NewAddr = Builder.CreateGEP(NewAddr, Constant::getNullValue(IndexTy));

Completed in 315 milliseconds