Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp1327 auto *CounterTy = Type::getInt8Ty(Ctx); in createRegionCounters() local
1328 auto *CounterArrTy = ArrayType::get(CounterTy, NumCounters); in createRegionCounters()
1331 Constant::getAllOnesValue(CounterTy)); in createRegionCounters()
1337 auto *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters); in createRegionCounters() local
1338 GV = new GlobalVariable(M, CounterTy, false, Linkage, in createRegionCounters()
1339 Constant::getNullValue(CounterTy), Name); in createRegionCounters()
H A DGCOVProfiling.cpp913 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(*Ctx), Measured); in emitProfileNotes() local
915 *M, CounterTy, false, GlobalValue::InternalLinkage, in emitProfileNotes()
916 Constant::getNullValue(CounterTy), "__llvm_gcov_ctr"); in emitProfileNotes()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5869 QualType CounterTy = LIVDecl->getType(); in ActOnOpenMPCanonicalLoop() local
5919 if (CounterTy->isIntegerType()) { in ActOnOpenMPCanonicalLoop()
5920 unsigned BitWidth = Ctx.getIntWidth(CounterTy); in ActOnOpenMPCanonicalLoop()