Home
last modified time | relevance | path

Searched refs:WLEntry (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSchedule.cpp48 const MCWriteLatencyEntry *WLEntry = in computeInstrLatency() local
51 if (WLEntry->Cycles < 0) in computeInstrLatency()
52 return WLEntry->Cycles; in computeInstrLatency()
53 Latency = std::max(Latency, static_cast<int>(WLEntry->Cycles)); in computeInstrLatency()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSchedule.cpp205 const MCWriteLatencyEntry *WLEntry = in computeOperandLatency() local
207 unsigned WriteID = WLEntry->WriteResourceID; in computeOperandLatency()
208 unsigned Latency = capLatency(WLEntry->Cycles); in computeOperandLatency()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp221 const MCWriteLatencyEntry *WLEntry = STI->getWriteLatencyEntry(SCDesc, in getLatency()
223 Latency = std::max(Latency, WLEntry->Cycles); in getLatency()
220 const MCWriteLatencyEntry *WLEntry = STI->getWriteLatencyEntry(SCDesc, getLatency() local
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp1140 MCWriteLatencyEntry WLEntry; in GenSchedClassTables() local
1141 WLEntry.Cycles = 0; in GenSchedClassTables()
1148 WLEntry.WriteResourceID = WriteID; in GenSchedClassTables()
1160 WLEntry.Cycles += WriteRes->getValueAsInt("Latency"); in GenSchedClassTables()
1262 WriteLatencies.push_back(WLEntry); in GenSchedClassTables()
1382 MCWriteLatencyEntry &WLEntry = SchedTables.WriteLatencies[WLIdx]; in EmitSchedClassTables() local
1383 OS << " {" << format("%2d", WLEntry.Cycles) << ", " in EmitSchedClassTables()
1384 << format("%2d", WLEntry.WriteResourceID) << "}"; in EmitSchedClassTables()