Lines Matching refs:BitTracker

219     bool operator() (const BitTracker::BitValue &V1,
220 const BitTracker::BitValue &V2) const;
226 bool BitValueOrdering::operator() (const BitTracker::BitValue &V1, in operator ()()
227 const BitTracker::BitValue &V2) const { in operator ()()
252 CellMapShadow(const BitTracker &T) : BT(T) {} in CellMapShadow()
253 const BitTracker::RegisterCell &lookup(unsigned VR) { in lookup()
258 const BitTracker::RegisterCell *CP = CVect[RInd]; in lookup()
264 const BitTracker &BT;
267 typedef std::vector<const BitTracker::RegisterCell*> CellVectType;
318 const BitTracker::RegisterCell &RC1 = CM.lookup(VR1), &RC2 = CM.lookup(VR2); in operator ()()
321 const BitTracker::BitValue &V1 = RC1[i], &V2 = RC2[i]; in operator ()()
336 const BitTracker::RegisterCell &RC1 = CM.lookup(VR1); in operator ()()
337 const BitTracker::RegisterCell &RC2 = CM.lookup(VR2); in operator ()()
352 const BitTracker::BitValue &V1 = RC1[Bit1], V2 = RC2[Bit2]; in operator ()()
603 const BitTracker::RegisterCell &RC = CMS->lookup(VR); in isConstant()
606 const BitTracker::BitValue &BV = RC[i]; in isConstant()
616 const BitTracker::RegisterCell &RC = CMS->lookup(VR); in isSmallConstant()
622 const BitTracker::BitValue &BV = RC[i]; in isSmallConstant()
663 const BitTracker::RegisterCell &RC = CMS->lookup(VR); in findSelfReference()
665 const BitTracker::BitValue &V = RC[i]; in findSelfReference()
666 if (V.Type == BitTracker::BitValue::Ref && V.RefI.Reg == VR) in findSelfReference()
674 BitTracker::RegisterCell RC = CMS->lookup(VR); in findNonSelfReference()
676 const BitTracker::BitValue &V = RC[i]; in findNonSelfReference()
677 if (V.Type == BitTracker::BitValue::Ref && V.RefI.Reg != VR) in findNonSelfReference()
770 const BitTracker::RegisterCell &RC = CMS->lookup(VR); in findRecordInsertForms()
843 const BitTracker::RegisterCell &AC = CMS->lookup(SrcR); in findRecordInsertForms()
1501 BitTracker BTLoc(HE, MF); in runOnMachineFunction()