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.cpp49 const MCWriteLatencyEntry *WLEntry = in computeInstrLatency() local
52 if (WLEntry->Cycles < 0) in computeInstrLatency()
53 return WLEntry->Cycles; in computeInstrLatency()
54 Latency = std::max(Latency, static_cast<int>(WLEntry->Cycles)); in computeInstrLatency()
195 const MCWriteLatencyEntry *WLEntry = in getBypassDelayCycles() local
199 if (WLEntry->Cycles > 0) in getBypassDelayCycles()
200 Cycles = (unsigned)WLEntry->Cycles; in getBypassDelayCycles()
203 WriteResourceID = WLEntry->WriteResourceID; in getBypassDelayCycles()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSchedule.cpp202 const MCWriteLatencyEntry *WLEntry = in computeOperandLatency() local
204 unsigned WriteID = WLEntry->WriteResourceID; in computeOperandLatency()
205 unsigned Latency = capLatency(WLEntry->Cycles); in computeOperandLatency()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp1113 MCWriteLatencyEntry WLEntry; in genSchedClassTables() local
1114 WLEntry.Cycles = 0; in genSchedClassTables()
1121 WLEntry.WriteResourceID = WriteID; in genSchedClassTables()
1132 WLEntry.Cycles += WriteRes->getValueAsInt("Latency"); in genSchedClassTables()
1234 WriteLatencies.push_back(WLEntry); in genSchedClassTables()
1359 MCWriteLatencyEntry &WLEntry = SchedTables.WriteLatencies[WLIdx]; in emitSchedClassTables() local
1360 OS << " {" << format("%2d", WLEntry.Cycles) << ", " in emitSchedClassTables()
1361 << format("%2d", WLEntry.WriteResourceID) << "}"; in emitSchedClassTables()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLatencyMutations.cpp730 const MCWriteLatencyEntry *WLEntry = in computeBypassStage() local
732 unsigned Latency = WLEntry->Cycles >= 0 ? WLEntry->Cycles : 1000; in computeBypassStage()