Home | History | Annotate | Download | only in TableGen

Lines Matching defs:RC2

1655     CodeGenRegisterClass *RC2 = RegClasses[rci];
1656 if (RC1 == RC2)
1659 // Compute the set intersection of RC1 and RC2.
1661 const CodeGenRegister::Set &Memb2 = RC2->getMembers();
1672 // If RC1 and RC2 have different spill sizes or alignments, use the
1674 if (RC2->SpillSize > RC1->SpillSize ||
1675 (RC2->SpillSize == RC1->SpillSize &&
1676 RC2->SpillAlignment > RC1->SpillAlignment))
1677 std::swap(RC1, RC2);
1680 RC1->getName() + "_and_" + RC2->getName());