Searched refs:CounterTy (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | InstrProfiling.cpp | 1667 auto *CounterTy = Type::getInt8Ty(Ctx); in createRegionCounters() local 1668 auto *CounterArrTy = ArrayType::get(CounterTy, NumCounters); in createRegionCounters() 1671 Constant::getAllOnesValue(CounterTy)); in createRegionCounters() 1677 auto *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters); in createRegionCounters() local 1678 GV = new GlobalVariable(M, CounterTy, false, Linkage, in createRegionCounters() 1679 Constant::getNullValue(CounterTy), Name); in createRegionCounters()
|
H A D | GCOVProfiling.cpp | 913 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/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 5643 QualType CounterTy = LIVDecl->getType(); in ActOnOpenMPCanonicalLoop() local 5693 if (CounterTy->isIntegerType()) { in ActOnOpenMPCanonicalLoop() 5694 unsigned BitWidth = Ctx.getIntWidth(CounterTy); in ActOnOpenMPCanonicalLoop()
|