Home | History | Annotate | Download | only in AMDGPU

Lines Matching refs:Counters

33 /// \brief One variable for each of the hardware counters
42 } Counters;
50 typedef Counters RegCounters[512];
62 static const Counters WaitCounts;
65 static const Counters ZeroCounts;
68 Counters WaitedOn;
71 Counters LastIssued;
88 Counters getHwCounts(MachineInstr &MI);
104 const Counters &Counts);
110 Counters handleOperands(MachineInstr &MI);
138 const Counters SIInsertWaits::WaitCounts = { { 15, 7, 7 } };
139 const Counters SIInsertWaits::ZeroCounts = { { 0, 0, 0 } };
145 Counters SIInsertWaits::getHwCounts(MachineInstr &MI) {
147 Counters Result = { { 0, 0, 0 } };
253 Counters Increment = getHwCounts(*I);
254 Counters Limit = ZeroCounts;
322 const Counters &Required) {
341 Counters Counts = WaitCounts;
385 static void increaseCounters(Counters &Dst, const Counters &Src) {
391 Counters SIInsertWaits::handleOperands(MachineInstr &MI) {
393 Counters Result = ZeroCounts;