Lines Matching full:cycle
30 "Machine Cycle Info Analysis", true, true)
32 "Machine Cycle Info Analysis", true, true)
77 "Print Machine Cycle Info Analysis", true, true)
80 "Print Machine Cycle Info Analysis", true, true) in INITIALIZE_PASS_DEPENDENCY()
94 bool llvm::isCycleInvariant(const MachineCycle *Cycle, MachineInstr &I) { in isCycleInvariant() argument
101 // The instruction is cycle invariant if all of its operands are. in isCycleInvariant()
128 } else if (any_of(Cycle->getEntries(), in isCycleInvariant()
132 // If the reg is live into any header of the cycle we can't hoist an in isCycleInvariant()
143 // If the cycle contains the definition of an operand, then the instruction in isCycleInvariant()
144 // isn't cycle invariant. in isCycleInvariant()
145 if (Cycle->contains(MRI->getVRegDef(Reg)->getParent())) in isCycleInvariant()
149 // If we got this far, the instruction is cycle invariant! in isCycleInvariant()