OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GCOVBlock
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Support/
GCOV.h
26
class
GCOVBlock
;
183
SmallVector<
GCOVBlock
*, 16> Blocks;
186
///
GCOVBlock
- Collects block information.
187
class
GCOVBlock
{
189
GCOVBlock
(uint32_t N) : Number(N), Counter(0) {}
190
~
GCOVBlock
();
/external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp
191
class
GCOVBlock
;
193
// Constructed only by requesting it from a
GCOVBlock
, this object stores a
227
class
GCOVBlock
: public GCOVRecord {
237
void addEdge(
GCOVBlock
&Successor) {
258
~
GCOVBlock
() {
265
GCOVBlock
(uint32_t Number, raw_ostream *os)
272
SmallVector<
GCOVBlock
*, 4> OutEdges;
288
Blocks[BB] = new
GCOVBlock
(i++, os);
290
ReturnBlock = new
GCOVBlock
(i++, os);
312
GCOVBlock
&getBlock(BasicBlock *BB)
[
all
...]
Completed in 1009 milliseconds