Searched refs:Cycles (Results 1 - 8 of 8) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DScheduleDAGILP.h29 unsigned Cycles; member in struct:llvm::ILPValue
31 ILPValue(): InstrCount(0), Cycles(0) {}
34 InstrCount(count), Cycles(cycles) {}
36 bool isValid() const { return Cycles > 0; }
40 return (uint64_t)InstrCount * RHS.Cycles
41 < (uint64_t)Cycles * RHS.InstrCount;
47 return (uint64_t)InstrCount * RHS.Cycles
48 <= (uint64_t)Cycles * RHS.InstrCount;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/MC/
H A DMCSchedule.h49 unsigned Cycles; member in struct:llvm::MCWriteProcResEntry
52 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
60 unsigned Cycles; member in struct:llvm::MCWriteLatencyEntry
64 return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID;
79 int Cycles; member in struct:llvm::MCReadAdvanceEntry
83 && Cycles == Other.Cycles;
H A DMCSubtargetInfo.h123 return I->Cycles;
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DMachineTraceMetrics.h255 return TE.Cycles.lookup(MI);
273 DenseMap<const MachineInstr*, InstrCycles> Cycles; member in class:llvm::MachineTraceMetrics::Ensemble
H A DTargetSchedule.cpp181 unsigned Latency = WLEntry->Cycles;
222 Latency = std::max(Latency, WLEntry->Cycles);
H A DMachineTraceMetrics.cpp480 Cycles.erase(I);
682 unsigned Len = LIR.Height + Cycles[DefMI].Depth;
746 unsigned DepCycle = Cycles.lookup(Dep.DefMI).Depth;
755 InstrCycles &MICycles = Cycles[UseMI];
949 unsigned Height = TBI.Succ ? Cycles.lookup(PHI).Height : 0;
988 InstrCycles &MICycles = Cycles[MI];
H A DScheduleDAGInstrs.cpp1012 OS << InstrCount << " / " << Cycles << " = "
1013 << format("%g", ((double)InstrCount / Cycles));
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DSubtargetEmitter.cpp305 int Cycles = Stage->getValueAsInt("Cycles"); local
306 ItinString += " { " + itostr(Cycles) + ", ";
857 WLEntry.Cycles = 0;
878 WLEntry.Cycles += WriteRes->getValueAsInt("Latency");
885 std::vector<int64_t> Cycles = local
892 if (Cycles.size() > PRIdx)
893 WPREntry.Cycles = Cycles[PRIdx];
895 WPREntry.Cycles
[all...]

Completed in 661 milliseconds