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

/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h842 /// first tied use operand index by reference if UseOpIdx is not null.
843 bool isRegTiedToUseOperand(unsigned DefOpIdx, unsigned *UseOpIdx = 0) const {
847 if (UseOpIdx)
848 *UseOpIdx = findTiedOperandIdx(DefOpIdx);
855 bool isRegTiedToDefOperand(unsigned UseOpIdx, unsigned *DefOpIdx = 0) const {
856 const MachineOperand &MO = getOperand(UseOpIdx);
860 *DefOpIdx = findTiedOperandIdx(UseOpIdx);
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp601 unsigned UseOpIdx; local
602 if (!DefMI->isRegTiedToUseOperand(DefIdx, &UseOpIdx))
607 if (Op1 == UseOpIdx)
609 else if (Op2 == UseOpIdx)

Completed in 455 milliseconds