Home | History | Annotate | Download | only in TableGen

Lines Matching defs:RC2

1754     CodeGenRegisterClass *RC2 = RegClasses[rci];
1755 if (RC1 == RC2)
1758 // Compute the set intersection of RC1 and RC2.
1760 const CodeGenRegister::Set &Memb2 = RC2->getMembers();
1771 // If RC1 and RC2 have different spill sizes or alignments, use the
1773 if (RC2->SpillSize > RC1->SpillSize ||
1774 (RC2->SpillSize == RC1->SpillSize &&
1775 RC2->SpillAlignment > RC1->SpillAlignment))
1776 std::swap(RC1, RC2);
1779 RC1->getName() + "_and_" + RC2->getName());