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

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DGCOV.h27 class GCOVLines;
200 StringMap<GCOVLines *> Lines;
203 /// GCOVLines - A wrapper around a vector of int to keep track of line nos.
204 class GCOVLines { class in namespace:llvm
206 ~GCOVLines() { Lines.clear(); }
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DGCOV.cpp181 GCOVLines *&LinesForFile = Lines[Filename];
183 LinesForFile = new GCOVLines();
190 for (StringMap<GCOVLines *>::iterator I = Lines.begin(),
207 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(),
217 // GCOVLines implementation.
221 void GCOVLines::collectLineCounts(FileInfo &FI, StringRef Filename,
228 /// dump - Dump GCOVLines content on standard out for debugging purposes.
229 void GCOVLines::dump() {
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp168 class GCOVLines : public GCOVRecord { class in namespace:__anon10362
186 GCOVLines(StringRef F, raw_ostream *os) function in class:__anon10362::GCOVLines
201 GCOVLines &getFile(StringRef Filename) {
202 GCOVLines *&Lines = LinesByFile[Filename];
204 Lines = new GCOVLines(Filename, os);
215 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
223 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
243 StringMap<GCOVLines *> LinesByFile;
409 GCOVLines &Lines = Block.getFile(SP.getFilename());

Completed in 101 milliseconds