Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp1664 auto *CounterTy = Type::getInt8Ty(Ctx); in createRegionCounters() local
1665 auto *CounterArrTy = ArrayType::get(CounterTy, NumCounters); in createRegionCounters()
1668 Constant::getAllOnesValue(CounterTy)); in createRegionCounters()
1674 auto *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters); in createRegionCounters() local
1675 GV = new GlobalVariable(M, CounterTy, false, Linkage, in createRegionCounters()
1676 Constant::getNullValue(CounterTy), Name); in createRegionCounters()
H A DGCOVProfiling.cpp891 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(*Ctx), Measured); in emitProfileNotes() local
893 *M, CounterTy, false, GlobalValue::InternalLinkage, in emitProfileNotes()
894 Constant::getNullValue(CounterTy), "__llvm_gcov_ctr"); in emitProfileNotes()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5647 QualType CounterTy = LIVDecl->getType(); in ActOnOpenMPCanonicalLoop() local
5697 if (CounterTy->isIntegerType()) { in ActOnOpenMPCanonicalLoop()
5698 unsigned BitWidth = Ctx.getIntWidth(CounterTy); in ActOnOpenMPCanonicalLoop()