diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-31 00:06:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-31 00:06:57 +0000 |
commit | 3baed416728ae1c818767cfc733c99e0dceaaeae (patch) | |
tree | 176fabb8523ea478f9653caf4794c85752f64b4e /tools/llvm-prof | |
parent | 367373053b4c50cf84ec54d2300ddab14c60063e (diff) |
Hrm, some of my counters are wrapping around 32 bits
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-prof')
-rw-r--r-- | tools/llvm-prof/llvm-prof.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/llvm-prof/llvm-prof.cpp b/tools/llvm-prof/llvm-prof.cpp index 5911918b16..a63137b284 100644 --- a/tools/llvm-prof/llvm-prof.cpp +++ b/tools/llvm-prof/llvm-prof.cpp @@ -104,7 +104,7 @@ int main(int argc, char **argv) { std::sort(FunctionCounts.begin(), FunctionCounts.end(), PairSecondSortReverse<Function*>()); - unsigned TotalExecutions = 0; + unsigned long long TotalExecutions = 0; for (unsigned i = 0, e = FunctionCounts.size(); i != e; ++i) TotalExecutions += FunctionCounts[i].second; @@ -131,7 +131,7 @@ int main(int argc, char **argv) { break; } - printf("%3d. %5d/%d %s\n", i+1, FunctionCounts[i].second, TotalExecutions, + printf("%3d. %5u/%llu %s\n", i+1, FunctionCounts[i].second, TotalExecutions, FunctionCounts[i].first->getName().c_str()); } @@ -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(" ## Frequency\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. %5d/%d %s() - %s\n", i+1, Counts[i].second, TotalExecutions, + printf("%3d. %5u/%llu\t%s() - %s\n", i+1, + Counts[i].second, TotalExecutions, F->getName().c_str(), Counts[i].first->getName().c_str()); FunctionsToPrint.insert(F); } |