Home | History | Annotate | Download | only in TableGen

Lines Matching refs:RC2

1860     CodeGenRegisterClass *RC2 = &*I;
1861 if (RC1 == RC2)
1864 // Compute the set intersection of RC1 and RC2.
1866 const CodeGenRegister::Vec &Memb2 = RC2->getMembers();
1876 // If RC1 and RC2 have different spill sizes or alignments, use the
1878 if (RC2->SpillSize > RC1->SpillSize ||
1879 (RC2->SpillSize == RC1->SpillSize &&
1880 RC2->SpillAlignment > RC1->SpillAlignment))
1881 std::swap(RC1, RC2);
1884 RC1->getName() + "_and_" + RC2->getName());