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

  /external/llvm/lib/CodeGen/
TargetSchedule.cpp 25 cl::desc("Use TargetSchedModel for latency lookup"));
28 cl::desc("Use InstrItineraryData for latency lookup"));
91 // The machine model may explicitly specify an invalid latency, which
92 // effectively means infinite latency. Since users of the TargetSchedule API
93 // don't know how to handle this, we convert it to a very large latency that is
174 // No operand latency was found.
177 // Expected latency is the max of the stage latency and itinerary props.
178 // Rather than directly querying InstrItins stage latency, we call a TII
179 // hook to allow subtargets to specialize latency. This hook is onl
    [all...]
MachineScheduler.cpp     [all...]
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 151 /// \brief Gets latency information for \p Inst from the itinerary
153 /// \return The maximum expected latency over all the operands or -1
169 int Latency = 0;
172 Latency = std::max(Latency, IID.getOperandCycle(SCClass, OpIdx));
174 return Latency;
177 /// \brief Gets latency information for \p Inst, based on \p DC information.
178 /// \return The maximum expected latency over all the definitions or -1
201 // Compute output latency.
202 int Latency = 0
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrItineraries.h 148 /// \brief Return the total stage latency of the given class. The latency is
158 unsigned Latency = 0, StartCycle = 0;
161 Latency = std::max(Latency, StartCycle + IS->getCycles());
164 return Latency;
204 /// \brief Compute and return the use operand latency of a given itinerary
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
qos.h 36 ULONG Latency;
poclass.h 245 ULONG Latency;
  /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/PowerPC/
PPCInstrInfo.cpp 61 UseOldLatencyCalc("ppc-old-latency-calc", cl::Hidden,
62 cl::desc("Use the old (incorrect) instruction latency calculation"));
123 unsigned Latency = 1;
134 Latency = std::max(Latency, (unsigned) Cycle);
137 return Latency;
144 int Latency = PPCGenInstrInfo::getOperandLatency(ItinData, DefMI, DefIdx,
148 return Latency;
165 if (Latency < 0)
166 Latency = getInstrLatency(ItinData, DefMI)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp 55 "enable-timing-class-latency", cl::Hidden, cl::init(false),
56 cl::desc("Enable timing class latency"));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wmidata.h     [all...]

Completed in 740 milliseconds