Searched refs:CounterTy (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 845 auto *CounterTy = Type::getInt8Ty(Ctx); in createRegionCounters() local 846 auto *CounterArrTy = ArrayType::get(CounterTy, NumCounters); in createRegionCounters() 849 Constant::getAllOnesValue(CounterTy)); in createRegionCounters() 855 auto *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters); in createRegionCounters() local 856 GV = new GlobalVariable(*M, CounterTy, false, Linkage, in createRegionCounters() 857 Constant::getNullValue(CounterTy), Name); in createRegionCounters()
|
| H A D | GCOVProfiling.cpp | 911 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(*Ctx), Measured); in emitProfileNotes() local 913 *M, CounterTy, false, GlobalValue::InternalLinkage, in emitProfileNotes() 914 Constant::getNullValue(CounterTy), "__llvm_gcov_ctr"); in emitProfileNotes()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 5838 QualType CounterTy = LIVDecl->getType(); in ActOnOpenMPCanonicalLoop() local 5888 if (CounterTy->isIntegerType()) { in ActOnOpenMPCanonicalLoop() 5889 unsigned BitWidth = Ctx.getIntWidth(CounterTy); in ActOnOpenMPCanonicalLoop()
|