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

/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h173 unsigned NumCycles, unsigned ExtraPredCycles,
183 unsigned NumCycles,
186 return NumCycles == 1;
182 isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, const BranchProbability &Probability) const argument
H A DARMBaseInstrInfo.cpp1493 unsigned NumCycles, unsigned ExtraPredCycles,
1495 if (!NumCycles)
1499 unsigned UnpredCost = Probability.getNumerator() * NumCycles;
1504 return (NumCycles + ExtraPredCycles) <= UnpredCost;
1492 isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, const BranchProbability &Probability) const argument
/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h312 /// instructions with accumulated instruction latency of "NumCycles"
317 bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, argument
345 isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp2271 unsigned NumCycles,
2270 isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles, const BranchProbability &Probability) const argument
/external/llvm/lib/CodeGen/
H A DIfConversion.cpp672 unsigned NumCycles = TII->getInstrLatency(InstrItins, &*I, local
674 if (NumCycles > 1)
675 BBI.ExtraCost += NumCycles-1;
1496 unsigned NumCycles = TII->getInstrLatency(InstrItins, &*I, &ExtraPredCost); local
1497 if (NumCycles > 1)
1498 ToBBI.ExtraCost += NumCycles-1;

Completed in 230 milliseconds