Searched refs:FromReg (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.1-release/contrib/llvm/lib/MC/
H A DMCRegisterInfo.cpp67 if (I == M+Size || I->FromReg != RegNum)
78 assert(I != M+Size && I->FromReg == RegNum && "Invalid RegNum");
/freebsd-10.1-release/contrib/llvm/include/llvm/MC/
H A DMCRegisterInfo.h142 unsigned FromReg; member in struct:llvm::MCRegisterInfo::DwarfLLVMRegPair
145 bool operator<(DwarfLLVMRegPair RHS) const { return FromReg < RHS.FromReg; }
/freebsd-10.1-release/contrib/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp290 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
293 void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) { argument
294 assert(FromReg != ToReg && "Cannot replace a reg with itself");
297 for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
H A DTwoAddressInstructionPass.cpp693 unsigned FromReg = VirtRegPairs.back(); local
695 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
697 assert(DstRegMap[FromReg] == ToReg &&"Can't map to two dst registers!");
698 ToReg = FromReg;
H A DMachineInstr.cpp1202 void MachineInstr::substituteRegister(unsigned FromReg, argument
1211 if (!MO.isReg() || MO.getReg() != FromReg)
1218 if (!MO.isReg() || MO.getReg() != FromReg)
/freebsd-10.1-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h293 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
298 /// class to match the FromReg constraints using:
300 /// constrainRegClass(ToReg, getRegClass(FromReg))
304 void replaceRegWith(unsigned FromReg, unsigned ToReg);
H A DMachineInstr.h875 /// substituteRegister - Replace all occurrences of FromReg with ToReg:SubIdx,
877 void substituteRegister(unsigned FromReg, unsigned ToReg, unsigned SubIdx,

Completed in 221 milliseconds