Home
last modified time | relevance | path

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

/external/llvm/lib/VMCore/
DGCOV.cpp179 GCOVLines *&LinesForFile = Lines[Filename]; in addLine()
181 LinesForFile = new GCOVLines(); in addLine()
188 for (StringMap<GCOVLines *>::iterator I = Lines.begin(), in collectLineCounts()
205 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(), in dump()
219 void GCOVLines::collectLineCounts(FileInfo &FI, StringRef Filename, in collectLineCounts()
227 void GCOVLines::dump() { in dump()
/external/llvm/include/llvm/Support/
DGCOV.h27 class GCOVLines; variable
198 StringMap<GCOVLines *> Lines;
202 class GCOVLines {
204 ~GCOVLines() { Lines.clear(); } in ~GCOVLines()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp167 class GCOVLines : public GCOVRecord { class
185 GCOVLines(StringRef F, raw_ostream *os) in GCOVLines() function in __anone44600900211::GCOVLines
200 GCOVLines &getFile(StringRef Filename) { in getFile()
201 GCOVLines *&Lines = LinesByFile[Filename]; in getFile()
203 Lines = new GCOVLines(Filename, os); in getFile()
214 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(), in writeOut()
222 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(), in writeOut()
242 StringMap<GCOVLines *> LinesByFile;
408 GCOVLines &Lines = Block.getFile(SP.getFilename()); in emitGCNO()