Lines Matching defs:VR1
223 bool operator() (unsigned VR1, unsigned VR2) const {
224 return operator[](VR1) < operator[](VR2);
298 bool operator() (unsigned VR1, unsigned VR2) const;
316 bool operator() (unsigned VR1, unsigned VR2) const;
327 bool RegisterCellLexCompare::operator() (unsigned VR1, unsigned VR2) const {
337 if (VR1 == VR2)
340 const BitTracker::RegisterCell &RC1 = CM.lookup(VR1), &RC2 = CM.lookup(VR2);
351 return BitOrd.BaseOrd[VR1] < BitOrd.BaseOrd[VR2];
354 bool RegisterCellBitCompareSel::operator() (unsigned VR1, unsigned VR2) const {
355 if (VR1 == VR2)
357 const BitTracker::RegisterCell &RC1 = CM.lookup(VR1);
360 uint16_t Bit1 = (VR1 == SelR) ? SelB : BitN;
362 // If Bit1 exceeds the width of VR1, then:
369 // If Bit1 is within VR1, but Bit2 is not within VR2, return false.