Searched refs:CounterTy (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 1664 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 D | GCOVProfiling.cpp | 891 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 D | SemaOpenMP.cpp | 5647 QualType CounterTy = LIVDecl->getType(); in ActOnOpenMPCanonicalLoop() local 5697 if (CounterTy->isIntegerType()) { in ActOnOpenMPCanonicalLoop() 5698 unsigned BitWidth = Ctx.getIntWidth(CounterTy); in ActOnOpenMPCanonicalLoop()
|