Lines Matching defs:out

66 printSorted(ostream& out, int num_of_sequencers, const AddressMap &record_map,
83 out << "Total_entries_" << description << ": " << record_map.size()
86 out << "Total_Instructions_" << description << ": " << misses << endl;
88 out << "Total_data_misses_" << description << ": " << misses << endl;
90 out << "total | load store atomic | user supervisor | sharing | touched-by"
113 out << description << " | " << percent << " % " << *record << endl;
130 out << endl;
131 out << "all_records_" << description << ": "
170 AddressProfiler::printStats(ostream& out) const
173 out << endl;
174 out << "AddressProfiler Stats" << endl;
175 out << "---------------------" << endl;
177 out << endl;
178 out << "sharing_misses: " << m_sharing_miss_counter << endl;
179 out << "getx_sharing_histogram: " << m_getx_sharing_histogram << endl;
180 out << "gets_sharing_histogram: " << m_gets_sharing_histogram << endl;
182 out << endl;
183 out << "Hot Data Blocks" << endl;
184 out << "---------------" << endl;
185 out << endl;
186 printSorted(out, m_num_of_sequencers, m_dataAccessTrace,
189 out << endl;
190 out << "Hot MacroData Blocks" << endl;
191 out << "--------------------" << endl;
192 out << endl;
193 printSorted(out, m_num_of_sequencers, m_macroBlockAccessTrace,
196 out << "Hot Instructions" << endl;
197 out << "----------------" << endl;
198 out << endl;
199 printSorted(out, m_num_of_sequencers, m_programCounterAccessTrace,
204 out << endl;
205 out << "All Instructions Profile:" << endl;
206 out << "-------------------------" << endl;
207 out << endl;
208 printSorted(out, m_num_of_sequencers, m_programCounterAccessTrace,
210 out << endl;
214 out << "Retry Profile" << endl;
215 out << "-------------" << endl;
216 out << endl;
217 out << "retry_histogram_absolute: " << m_retryProfileHisto << endl;
218 out << "retry_histogram_write: " << m_retryProfileHistoWrite << endl;
219 out << "retry_histogram_read: " << m_retryProfileHistoRead << endl;
221 out << "retry_histogram_percent: ";
222 m_retryProfileHisto.printPercent(out);
223 out << endl;
225 printSorted(out, m_num_of_sequencers, m_retryProfileMap,
227 out << endl;