Home
last modified time | relevance | path

Searched refs:CounterTy (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp838 auto *CounterTy = Type::getInt8Ty(Ctx); in createRegionCounters() local
839 auto *CounterArrTy = ArrayType::get(CounterTy, NumCounters); in createRegionCounters()
842 Constant::getAllOnesValue(CounterTy)); in createRegionCounters()
848 auto *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters); in createRegionCounters() local
849 GV = new GlobalVariable(*M, CounterTy, false, Linkage, in createRegionCounters()
850 Constant::getNullValue(CounterTy), Name); in createRegionCounters()
H A DGCOVProfiling.cpp905 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(*Ctx), Measured); in emitProfileNotes() local
907 *M, CounterTy, false, GlobalValue::InternalLinkage, in emitProfileNotes()
908 Constant::getNullValue(CounterTy), "__llvm_gcov_ctr"); in emitProfileNotes()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp5767 QualType CounterTy = LIVDecl->getType(); in ActOnOpenMPCanonicalLoop() local
5817 if (CounterTy->isIntegerType()) { in ActOnOpenMPCanonicalLoop()
5818 unsigned BitWidth = Ctx.getIntWidth(CounterTy); in ActOnOpenMPCanonicalLoop()