reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
66 SS << "\n\nDynamic Dispatch Stall Cycles:\n"; 67 SS << "RAT - Register unavailable: "; 68 printStalls(SS, HWStalls[HWStallEvent::RegisterFileStall], NumCycles); 69 SS << "\nRCU - Retire tokens unavailable: "; 70 printStalls(SS, HWStalls[HWStallEvent::RetireControlUnitStall], NumCycles); 71 SS << "\nSCHEDQ - Scheduler full: "; 72 printStalls(SS, HWStalls[HWStallEvent::SchedulerQueueFull], NumCycles); 73 SS << "\nLQ - Load queue full: "; 74 printStalls(SS, HWStalls[HWStallEvent::LoadQueueFull], NumCycles); 75 SS << "\nSQ - Store queue full: "; 76 printStalls(SS, HWStalls[HWStallEvent::StoreQueueFull], NumCycles); 77 SS << "\nGROUP - Static restrictions on the dispatch group: "; 78 printStalls(SS, HWStalls[HWStallEvent::DispatchGroupStall], NumCycles); 79 SS << '\n'; 80 SS.flush();