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

  /external/llvm/lib/CodeGen/
TargetSchedule.cpp 26 cl::desc("Use TargetSchedModel for latency lookup"));
29 cl::desc("Use InstrItineraryData for latency lookup"));
92 // The machine model may explicitly specify an invalid latency, which
93 // effectively means infinite latency. Since users of the TargetSchedule API
94 // don't know how to handle this, we convert it to a very large latency that is
175 // No operand latency was found.
178 // Expected latency is the max of the stage latency and itinerary props.
179 // Rather than directly querying InstrItins stage latency, we call a TII
180 // hook to allow subtargets to specialize latency. This hook is onl
    [all...]
MachineScheduler.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCInstrItineraries.h 156 /// getStageLatency - Return the total stage latency of the given
157 /// class. The latency is the maximum completion time for any stage
168 unsigned Latency = 0, StartCycle = 0;
171 Latency = std::max(Latency, StartCycle + IS->getCycles());
174 return Latency;
215 /// getOperandLatency - Compute and return the use operand latency of a given
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 89 /// Latency - The time associated with this edge. Often this is just
90 /// the value of the Latency field of the predecessor, however advanced
92 unsigned Latency;
111 Latency = 0;
115 Latency = 1;
120 : Dep(S, Order), Contents(), Latency(0) {
124 /// Return true if the specified SDep is equivalent except for latency.
139 return overlaps(Other) && Latency == Other.Latency;
146 /// getLatency - Return the latency value for this edge, which roughl
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]

Completed in 2638 milliseconds