Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp66 std::vector<std::vector<const GCOVFunction *>> startLineToFunctions;
80 void printFunctionDetails(const GCOVFunction &f, raw_ostream &os) const;
85 void collectFunction(GCOVFunction &f, Summary &summary);
115 GCOVFunction *fn = nullptr; in readGCNO()
121 functions.push_back(std::make_unique<GCOVFunction>(*this)); in readGCNO()
232 GCOVFunction *fn = nullptr; in readGCDA()
308 for (const GCOVFunction &f : *this) in print()
335 StringRef GCOVFunction::getName(bool demangle) const { in getName()
353 StringRef GCOVFunction::getFilename() const { return file.filenames[srcIdx]; } in getFilename()
357 uint64_t GCOVFunction::getEntryCount() const { in getEntryCount()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h38 class GCOVFunction; variable
210 SmallVector<std::unique_ptr<GCOVFunction>, 16> functions;
211 std::map<uint32_t, GCOVFunction *> identToFunction;
216 SmallVectorImpl<std::unique_ptr<GCOVFunction>>::const_iterator>;
237 class GCOVFunction {
242 GCOVFunction(GCOVFile &file) : file(file) {} in GCOVFunction() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp91 class GCOVFunction;
164 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
239 class GCOVFunction;
317 friend class GCOVFunction;
328 class GCOVFunction : public GCOVRecord { class
330 GCOVFunction(GCOVProfiler *P, Function *F, const DISubprogram *SP, in GCOVFunction() function in __anon09913f2a0311::GCOVFunction
729 static void dumpEdges(CFGMST<Edge, BBInfo> &MST, GCOVFunction &GF) { in dumpEdges()
816 Funcs.push_back(std::make_unique<GCOVFunction>(this, &F, SP, EndLine, in emitProfileNotes()
818 GCOVFunction &Func = *Funcs.back(); in emitProfileNotes()