Searched defs:NumCycles (Results 1 - 6 of 6) sorted by relevance

/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h358 /// instructions with accumulated instruction latency of "NumCycles"
363 bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, argument
391 isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, argument
/external/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp516 unsigned NumCycles, unsigned ExtraPredCycles,
519 return NumCycles == 1;
515 isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, const BranchProbability &Probability) const argument
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp687 unsigned NumCycles = SchedModel.computeInstrLatency(&*I, false); local
688 if (NumCycles > 1)
689 BBI.ExtraCost += NumCycles-1;
1585 unsigned NumCycles = SchedModel.computeInstrLatency(&*I, false); local
1586 if (NumCycles > 1)
1587 ToBBI.ExtraCost += NumCycles-1;
/external/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp957 unsigned NumCycles,
956 isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, const BranchProbability &Probability) const argument
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp889 UInt32 NumCycles; member in struct:CCrcInfo
902 p->Res = CrcBig(p->Data, p->Size, p->NumCycles, p->Crc);
997 info.NumCycles = numCycles;
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp1584 unsigned NumCycles, unsigned ExtraPredCycles,
1586 if (!NumCycles)
1590 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1595 return (NumCycles + ExtraPredCycles) <= UnpredCost;
1583 isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, const BranchProbability &Probability) const argument

Completed in 189 milliseconds