Searched refs:UseOpIdx (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DMachineInstr.h813 /// first tied use operand index by reference if UseOpIdx is not null.
814 bool isRegTiedToUseOperand(unsigned DefOpIdx, unsigned *UseOpIdx = 0) const {
818 if (UseOpIdx)
819 *UseOpIdx = findTiedOperandIdx(DefOpIdx);
826 bool isRegTiedToDefOperand(unsigned UseOpIdx, unsigned *DefOpIdx = 0) const {
827 const MachineOperand &MO = getOperand(UseOpIdx);
831 *DefOpIdx = findTiedOperandIdx(UseOpIdx);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DRegisterCoalescer.cpp582 unsigned UseOpIdx; local
583 if (!DefMI->isRegTiedToUseOperand(DefIdx, &UseOpIdx))
588 if (Op1 == UseOpIdx)
590 else if (Op2 == UseOpIdx)

Completed in 141 milliseconds