Lines Matching refs:UserValue

290 class UserValue {  class
296 UserValue *leader; ///< Equivalence class leader.
297 UserValue *next = nullptr; ///< Next value in equivalence class, or null.
325 UserValue(const DILocalVariable *var, in UserValue() function in __anonef106bf80411::UserValue
332 UserValue *getLeader() { in getLeader()
333 UserValue *l = leader; in getLeader()
340 UserValue *getNext() const { return next; } in getNext()
343 static UserValue *merge(UserValue *L1, UserValue *L2) { in merge()
351 UserValue *End = L2; in merge()
574 SmallVector<std::unique_ptr<UserValue>, 8> userValues;
580 using VRMap = DenseMap<unsigned, UserValue *>;
584 using UVMap = DenseMap<DebugVariable, UserValue *>;
588 UserValue *getUserValue(const DILocalVariable *Var,
593 UserValue *lookupVirtReg(Register VirtReg);
661 void mapVirtReg(Register VirtReg, UserValue *EC);
725 void UserValue::print(raw_ostream &OS, const TargetRegisterInfo *TRI) { in print()
768 void UserValue::mapVirtRegs(LDVImpl *LDV) { in mapVirtRegs()
775 UserValue *LDVImpl::getUserValue(const DILocalVariable *Var, in getUserValue()
781 UserValue *&UV = userVarMap[ID]; in getUserValue()
784 std::make_unique<UserValue>(Var, Fragment, DL, allocator)); in getUserValue()
790 void LDVImpl::mapVirtReg(Register VirtReg, UserValue *EC) { in mapVirtReg()
792 UserValue *&Leader = virtRegToEqClass[VirtReg]; in mapVirtReg()
793 Leader = UserValue::merge(Leader, EC); in mapVirtReg()
796 UserValue *LDVImpl::lookupVirtReg(Register VirtReg) { in lookupVirtReg()
797 if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) in lookupVirtReg()
863 UserValue *UV = getUserValue(Var, Expr->getFragmentInfo(), MI.getDebugLoc()); in handleDebugValue()
961 void UserValue::extendDef( in extendDef()
1015 void UserValue::addDefsFromCopies( in addDefsFromCopies()
1105 void UserValue::computeIntervals(MachineRegisterInfo &MRI, in computeIntervals()
1344 UserValue::splitLocation(unsigned OldLocNo, ArrayRef<Register> NewRegs, in splitLocation()
1444 UserValue::splitRegister(Register OldReg, ArrayRef<Register> NewRegs, in splitRegister()
1504 for (UserValue *UV = lookupVirtReg(OldReg); UV; UV = UV->getNext()) in splitRegister()
1511 UserValue *UV = lookupVirtReg(OldReg); in splitRegister()
1522 void UserValue::rewriteLocations(VirtRegMap &VRM, const MachineFunction &MF, in rewriteLocations()
1673 void UserValue::insertDebugValue(MachineBasicBlock *MBB, SlotIndex StartIdx, in insertDebugValue()
1755 void UserValue::emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS, in emitDebugValues()