Home | History | Annotate | Download | only in TableGen

Lines Matching defs:SubRC

861       CodeGenRegisterClass &SubRC = *I2;
862 if (RC.SubClasses.test(SubRC.EnumValue))
864 if (!testSubClass(&RC, &SubRC))
866 // SubRC is a sub-class. Grap all its sub-classes so we won't have to
868 RC.SubClasses |= SubRC.SubClasses;
1938 CodeGenRegisterClass *SubRC =
1941 RC->setSubClassWithSubReg(&SubIdx, SubRC);
1983 CodeGenRegisterClass &SubRC = *I;
1984 // Topological shortcut: SubRC members have the wrong shape.
1985 if (!TopoSigs.anyCommon(SubRC.getTopoSigs()))
1987 // Compute the subset of RC that maps into SubRC.
1990 if (SubRC.contains(SSPairs[i].second))
1996 // RC injects completely into SubRC.
1999 SubRC.addSuperRegClass(&SubIdx, RC);
2003 // Only a subset of RC maps into SubRC. Make sure it is represented by a
2007 SubRC.getName());
2044 // inferMatchingSuperRegClass has checked SuperRC = [0..rci] with SubRC =
2045 // [0..FirstNewRC). We need to cover SubRC = [FirstNewRC..rci].