Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ProfileData/
H A DGCOV.cpp84 void collectFunction(GCOVFunction &f, Summary &summary);
114 GCOVFunction *fn = nullptr; in readGCNO()
120 functions.push_back(std::make_unique<GCOVFunction>(*this)); in readGCNO()
234 GCOVFunction *fn = nullptr; in readGCDA()
319 for (const GCOVFunction &f : *this) in print()
333 StringRef GCOVFunction::getName(bool demangle) const { in getName()
357 uint64_t GCOVFunction::getEntryCount() const { in getEntryCount()
361 GCOVBlock &GCOVFunction::getExitBlock() const { in getExitBlock()
389 void GCOVFunction::print(raw_ostream &OS) const { in print()
805 for (const GCOVFunction *f : fs) in printSourceToIntermediate()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/
H A DGCOV.h36 class GCOVFunction; variable
208 SmallVector<std::unique_ptr<GCOVFunction>, 16> functions;
209 std::map<uint32_t, GCOVFunction *> identToFunction;
214 SmallVectorImpl<std::unique_ptr<GCOVFunction>>::const_iterator>;
232 class GCOVFunction {
237 GCOVFunction(GCOVFile &file) : file(file) {} in GCOVFunction() function
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp91 class GCOVFunction;
159 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
234 class GCOVFunction;
314 friend class GCOVFunction;
325 class GCOVFunction : public GCOVRecord { class
327 GCOVFunction(GCOVProfiler *P, Function *F, const DISubprogram *SP, in GCOVFunction() function in __anon434f465a0311::GCOVFunction
747 static void dumpEdges(CFGMST<Edge, BBInfo> &MST, GCOVFunction &GF) { in dumpEdges()
827 Funcs.push_back(std::make_unique<GCOVFunction>(this, &F, SP, EndLine, in emitProfileNotes()
829 GCOVFunction &Func = *Funcs.back(); in emitProfileNotes()