mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
Add percentage info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9624 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3baed41672
commit
e1ccadf58c
@ -155,12 +155,13 @@ int main(int argc, char **argv) {
|
||||
std::cout << "Top 20 most frequently executed basic blocks:\n\n";
|
||||
|
||||
// Print out the function frequencies...
|
||||
printf(" ## \tFrequency\n");
|
||||
printf(" ## %%%% \tFrequency\n");
|
||||
unsigned BlocksToPrint = Counts.size();
|
||||
if (BlocksToPrint > 20) BlocksToPrint = 20;
|
||||
for (unsigned i = 0; i != BlocksToPrint; ++i) {
|
||||
Function *F = Counts[i].first->getParent();
|
||||
printf("%3d. %5u/%llu\t%s() - %s\n", i+1,
|
||||
printf("%3d. %5.2f%% %5u/%llu\t%s() - %s\n", i+1,
|
||||
Counts[i].second/(double)TotalExecutions*100,
|
||||
Counts[i].second, TotalExecutions,
|
||||
F->getName().c_str(), Counts[i].first->getName().c_str());
|
||||
FunctionsToPrint.insert(F);
|
||||
|
Loading…
Reference in New Issue
Block a user