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

  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 134 unsigned FromReg;
137 bool operator<(DwarfLLVMRegPair RHS) const { return FromReg < RHS.FromReg; }
319 if (I == M+Size || I->FromReg != RegNum)
332 assert(I != M+Size && I->FromReg == RegNum && "Invalid RegNum");
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 144 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
147 void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) {
148 assert(FromReg != ToReg && "Cannot replace a reg with itself");
151 for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
TwoAddressInstructionPass.cpp 762 unsigned FromReg = VirtRegPairs.back();
764 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
766 assert(DstRegMap[FromReg] == ToReg &&"Can't map to two dst registers!");
767 ToReg = FromReg;
    [all...]
MachineInstr.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineRegisterInfo.h 208 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
213 /// class to match the FromReg constraints using:
215 /// constrainRegClass(ToReg, getRegClass(FromReg))
219 void replaceRegWith(unsigned FromReg, unsigned ToReg);
MachineInstr.h 777 /// substituteRegister - Replace all occurrences of FromReg with ToReg:SubIdx,
779 void substituteRegister(unsigned FromReg, unsigned ToReg, unsigned SubIdx,
    [all...]

Completed in 245 milliseconds