From 84efe09e3d5dcda476f6baf53f24865e11ea78de Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 12 Nov 2001 20:13:14 +0000 Subject: Print percentages for profiling info better git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1274 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/Interpreter/Execution.cpp | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'lib/ExecutionEngine/Interpreter/Execution.cpp') diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index 5c763d79fb..692f8f425a 100644 --- a/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -603,7 +603,7 @@ static void PerformExitStuff() { #ifdef PROFILE_STRUCTURE_FIELDS // Print out structure field accounting information... if (!FieldAccessCounts.empty()) { - CW << "Field Access Profile Information:\n"; + CW << "Profile Field Access Counts:\n"; map >::iterator I = FieldAccessCounts.begin(), E = FieldAccessCounts.end(); for (; I != E; ++I) { @@ -622,6 +622,24 @@ static void PerformExitStuff() { CW << endl; } CW << endl; + + CW << "Profile Field Access Percentages:\n"; + cout.precision(3); + for (I = FieldAccessCounts.begin(); I != E; ++I) { + vector &OfC = I->second; + unsigned Sum = 0; + for (unsigned i = 0; i < OfC.size(); ++i) + Sum += OfC[i]; + + CW << " '" << (Value*)I->first << "'\t- "; + for (unsigned i = 0; i < OfC.size(); ++i) { + if (i) CW << ", "; + CW << double(OfC[i])/Sum; + } + CW << endl; + } + CW << endl; + FieldAccessCounts.clear(); } #endif -- cgit v1.2.3-18-g5258