Searched refs:NumCycles (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfo.h | 119 virtual bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, 140 isProfitableToDupForIfCvt(MachineBasicBlock &MBB,unsigned NumCycles,
|
D | HexagonInstrInfo.cpp | 1858 unsigned NumCycles, in isProfitableToIfCvt() argument
|
/external/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.h | 173 unsigned NumCycles, unsigned ExtraPredCycles, 183 unsigned NumCycles, in isProfitableToDupForIfCvt() argument 186 return NumCycles == 1; in isProfitableToDupForIfCvt()
|
D | ARMScheduleA9.td | 2002 foreach NumCycles = 2-8 in { 2003 def A9WriteCycle#NumCycles : WriteSequence<[A9WriteCycle1], NumCycles>; 2004 } // foreach NumCycles
|
D | ARMBaseInstrInfo.cpp | 1524 unsigned NumCycles, unsigned ExtraPredCycles, in isProfitableToIfCvt() argument 1526 if (!NumCycles) in isProfitableToIfCvt() 1530 unsigned UnpredCost = Probability.getNumerator() * NumCycles; in isProfitableToIfCvt() 1535 return (NumCycles + ExtraPredCycles) <= UnpredCost; in isProfitableToIfCvt()
|
/external/llvm/include/llvm/Target/ |
D | TargetInstrInfo.h | 313 bool isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, in isProfitableToIfCvt() argument 341 isProfitableToDupForIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, in isProfitableToDupForIfCvt() argument
|
/external/llvm/lib/CodeGen/ |
D | IfConversion.cpp | 673 unsigned NumCycles = TII->getInstrLatency(InstrItins, &*I, in ScanInstructions() local 675 if (NumCycles > 1) in ScanInstructions() 676 BBI.ExtraCost += NumCycles-1; in ScanInstructions() 1496 unsigned NumCycles = TII->getInstrLatency(InstrItins, &*I, &ExtraPredCost); in CopyAndPredicateBlock() local 1497 if (NumCycles > 1) in CopyAndPredicateBlock() 1498 ToBBI.ExtraCost += NumCycles-1; in CopyAndPredicateBlock()
|