Go to the source code of this file.
|
| | STATISTIC (numSerialPatternMatch,"CFGStructurizer number of serial pattern ""matched") |
| |
| | STATISTIC (numIfPatternMatch,"CFGStructurizer number of if pattern ""matched") |
| |
| | STATISTIC (numLoopcontPatternMatch,"CFGStructurizer number of loop-continue ""pattern matched") |
| |
| | STATISTIC (numClonedBlock,"CFGStructurizer cloned blocks") |
| |
| | STATISTIC (numClonedInstr,"CFGStructurizer cloned instructions") |
| |
| #define DEBUG_TYPE "structcfg" |
| #define DEFAULT_VEC_SLOTS 8 |
| #define SHOWBLK_DETAIL |
( |
|
b, |
|
|
|
msg |
|
) |
| |
Value:
dbgs() << msg <<
"BB" << b->getNumber() <<
"size " << b->size(); \
} \
);
raw_ostream & dbgs()
dbgs - Return a circular-buffered debug stream.
Definition at line 72 of file AMDILCFGStructurizer.cpp.
| #define SHOWNEWBLK |
( |
|
b, |
|
|
|
msg |
|
) |
| |
Value:
dbgs() << msg <<
"BB" << b->getNumber() <<
"size " << b->size();
\
);
raw_ostream & dbgs()
dbgs - Return a circular-buffered debug stream.
Definition at line 66 of file AMDILCFGStructurizer.cpp.
| #define SHOWNEWINSTR |
( |
|
i | ) |
DEBUG(dbgs() << "New instr: " << *i << "\n"); |
| STATISTIC |
( |
numSerialPatternMatch |
, |
|
|
"CFGStructurizer number of serial pattern ""matched" |
|
|
) |
| |
| STATISTIC |
( |
numIfPatternMatch |
, |
|
|
"CFGStructurizer number of if pattern ""matched" |
|
|
) |
| |
| STATISTIC |
( |
numLoopcontPatternMatch |
, |
|
|
"CFGStructurizer number of loop-continue ""pattern matched" |
|
|
) |
| |
| STATISTIC |
( |
numClonedBlock |
, |
|
|
"CFGStructurizer cloned blocks" |
|
|
) |
| |
| STATISTIC |
( |
numClonedInstr |
, |
|
|
"CFGStructurizer cloned instructions" |
|
|
) |
| |