HomeSort by relevance Sort by last modified time
    Searched refs:FromReg (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/MC/
MCRegisterInfo.cpp 67 if (I == M+Size || I->FromReg != RegNum)
78 assert(I != M+Size && I->FromReg == RegNum && "Invalid RegNum");
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 142 unsigned FromReg;
145 bool operator<(DwarfLLVMRegPair RHS) const { return FromReg < RHS.FromReg; }
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 283 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
286 void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) {
287 assert(FromReg != ToReg && "Cannot replace a reg with itself");
290 for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
TwoAddressInstructionPass.cpp 692 unsigned FromReg = VirtRegPairs.back();
694 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
696 assert(DstRegMap[FromReg] == ToReg &&"Can't map to two dst registers!");
697 ToReg = FromReg;
    [all...]
MachineInstr.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h     [all...]
MachineRegisterInfo.h 507 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
512 /// class to match the FromReg constraints using:
514 /// constrainRegClass(ToReg, getRegClass(FromReg))
518 void replaceRegWith(unsigned FromReg, unsigned ToReg);
    [all...]

Completed in 189 milliseconds