HomeSort by relevance Sort by last modified time
    Searched defs:MinLatency (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/MC/
MCSchedule.h 137 // MinLatency is the minimum latency between a register write
142 // hazard. MinLatency can always be overridden by the number of
146 // Use InstrItinerary OperandCycles as MinLatency.
157 int MinLatency;
162 // If MinLatency >= 0, this may be overriden for individual load opcodes by
171 // If MinLatency >= 0, this may be overriden by InstrItinData OperandCycles.
206 MinLatency(DefaultMinLatency),
223 IssueWidth(iw), MinLatency(ml), LoadLatency(ll), HighLatency(hl),
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 226 unsigned MinLatency = I->getMinLatency();
228 Top.MaxMinLatency = std::max(MinLatency, Top.MaxMinLatency);
230 if (SU->TopReadyCycle < PredReadyCycle + MinLatency)
231 SU->TopReadyCycle = PredReadyCycle + MinLatency;
245 unsigned MinLatency = I->getMinLatency();
247 Bot.MaxMinLatency = std::max(MinLatency, Bot.MaxMinLatency);
249 if (SU->BotReadyCycle < SuccReadyCycle + MinLatency)
250 SU->BotReadyCycle = SuccReadyCycle + MinLatency;
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 93 /// Record MinLatency seperately from "expected" Latency.
97 unsigned MinLatency;
123 MinLatency = Latency;
126 : Dep(S, Order), Contents(), Latency(0), MinLatency(0) {
146 && Latency == Other.Latency && MinLatency == Other.MinLatency;
170 return MinLatency;
175 MinLatency = Lat;
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 342 /// FIXME: Adjust SuccSU height based on MinLatency.
376 /// FIXME: Adjust PredSU height based on MinLatency.
    [all...]

Completed in 52 milliseconds