Searched defs:Latency (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCInstrItineraries.h173 unsigned Latency = 0, StartCycle = 0; local
176 Latency = std::max(Latency, StartCycle + IS->getCycles());
180 return Latency;
/external/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp242 unsigned DataLatency = SU->Latency;
277 unsigned Latency = local
280 dep.setLatency(Latency);
365 unsigned Latency = SU->Latency; local
367 Latency += SpecialAddressLatency;
371 Latency -= std::min(Latency, Count);
373 ExitSU.addPred(SDep(SU, SDep::Order, Latency,
475 SDep dep(DefSU, SDep::Data, DefSU->Latency, Re
480 unsigned Latency = local
670 unsigned Latency = ((*I)->getInstr()->mayLoad()) ? LatencyToLoad : 0; local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h84 /// Latency - The time associated with this edge. Often this is just
85 /// the value of the Latency field of the predecessor, however advanced
87 unsigned Latency; member in class:llvm::SDep
88 /// Record MinLatency seperately from "expected" Latency.
101 : Dep(S, kind), Contents(), Latency(latency), MinLatency(latency) {
141 && Latency == Other.Latency && MinLatency == Other.MinLatency;
153 return Latency;
158 Latency = Lat;
273 unsigned short Latency; // Nod member in class:llvm::SUnit
[all...]
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp2960 unsigned Latency = getInstrLatency(ItinData, DefMI); local
2966 if (Latency > 0 && Subtarget.isThumb2()) {
2969 --Latency;
2971 return Latency;
2983 int Latency = getOperandLatency(ItinData, *DefMCID, DefIdx, DefAlign, local
2986 if (Latency < 0)
2987 return Latency;
2994 if (Adj >= 0 || (int)Latency > -Adj) {
2995 return Latency + Adj;
2998 return Latency;
3017 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx); local
3031 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign, local
3210 unsigned Latency = 0; local
3238 unsigned Latency = ItinData->getStageLatency(Class); local
3281 int Latency = computeOperandLatency(ItinData, DefMI, DefIdx, UseMI, UseIdx, local
[all...]

Completed in 49 milliseconds