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 279 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
284 void MachineRegisterInfo::replaceRegWith(unsigned FromReg, unsigned ToReg) {
285 assert(FromReg != ToReg && "Cannot replace a reg with itself");
290 for (reg_iterator I = reg_begin(FromReg), E = reg_end(); I != E; ) {
TwoAddressInstructionPass.cpp 106 bool isRevCopyChain(unsigned FromReg, unsigned ToReg, int Maxlen);
331 /// Check if there is a reversed copy chain from FromReg to ToReg:
333 /// %FromReg = copy %Tmp1;
334 /// %ToReg = add %FromReg ...
338 bool TwoAddressInstructionPass::isRevCopyChain(unsigned FromReg, unsigned ToReg,
340 unsigned TmpReg = FromReg;
767 unsigned FromReg = VirtRegPairs.back();
769 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second;
771 assert(DstRegMap[FromReg] == ToReg &&"Can't map to two dst registers!");
772 ToReg = FromReg;
    [all...]
MachineInstr.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h     [all...]
MachineRegisterInfo.h 527 /// replaceRegWith - Replace all instances of FromReg with ToReg in the
532 /// class to match the FromReg constraints using:
534 /// constrainRegClass(ToReg, getRegClass(FromReg))
542 void replaceRegWith(unsigned FromReg, unsigned ToReg);
    [all...]

Completed in 103 milliseconds