12754fe60SDimitry Andric //===- LiveDebugVariables.cpp - Tracking debug info variables -------------===// 22754fe60SDimitry Andric // 32754fe60SDimitry Andric // The LLVM Compiler Infrastructure 42754fe60SDimitry Andric // 52754fe60SDimitry Andric // This file is distributed under the University of Illinois Open Source 62754fe60SDimitry Andric // License. See LICENSE.TXT for details. 72754fe60SDimitry Andric // 82754fe60SDimitry Andric //===----------------------------------------------------------------------===// 92754fe60SDimitry Andric // 102754fe60SDimitry Andric // This file implements the LiveDebugVariables analysis. 112754fe60SDimitry Andric // 122754fe60SDimitry Andric // Remove all DBG_VALUE instructions referencing virtual registers and replace 132754fe60SDimitry Andric // them with a data structure tracking where live user variables are kept - in a 142754fe60SDimitry Andric // virtual register or in a stack slot. 152754fe60SDimitry Andric // 162754fe60SDimitry Andric // Allow the data structure to be updated during register allocation when values 172754fe60SDimitry Andric // are moved between registers and stack slots. Finally emit new DBG_VALUE 182754fe60SDimitry Andric // instructions after register allocation is complete. 192754fe60SDimitry Andric // 202754fe60SDimitry Andric //===----------------------------------------------------------------------===// 212754fe60SDimitry Andric 222754fe60SDimitry Andric #define DEBUG_TYPE "livedebug" 232754fe60SDimitry Andric #include "LiveDebugVariables.h" 242754fe60SDimitry Andric #include "VirtRegMap.h" 252754fe60SDimitry Andric #include "llvm/Constants.h" 262754fe60SDimitry Andric #include "llvm/Metadata.h" 272754fe60SDimitry Andric #include "llvm/Value.h" 286122f3e6SDimitry Andric #include "llvm/Analysis/DebugInfo.h" 292754fe60SDimitry Andric #include "llvm/ADT/IntervalMap.h" 306122f3e6SDimitry Andric #include "llvm/ADT/Statistic.h" 316122f3e6SDimitry Andric #include "llvm/CodeGen/LexicalScopes.h" 322754fe60SDimitry Andric #include "llvm/CodeGen/LiveIntervalAnalysis.h" 332754fe60SDimitry Andric #include "llvm/CodeGen/MachineDominators.h" 342754fe60SDimitry Andric #include "llvm/CodeGen/MachineFunction.h" 352754fe60SDimitry Andric #include "llvm/CodeGen/MachineInstrBuilder.h" 363b0f4066SDimitry Andric #include "llvm/CodeGen/MachineRegisterInfo.h" 372754fe60SDimitry Andric #include "llvm/CodeGen/Passes.h" 382754fe60SDimitry Andric #include "llvm/Support/CommandLine.h" 392754fe60SDimitry Andric #include "llvm/Support/Debug.h" 402754fe60SDimitry Andric #include "llvm/Target/TargetInstrInfo.h" 412754fe60SDimitry Andric #include "llvm/Target/TargetMachine.h" 422754fe60SDimitry Andric #include "llvm/Target/TargetRegisterInfo.h" 432754fe60SDimitry Andric 442754fe60SDimitry Andric using namespace llvm; 452754fe60SDimitry Andric 462754fe60SDimitry Andric static cl::opt<bool> 472754fe60SDimitry Andric EnableLDV("live-debug-variables", cl::init(true), 482754fe60SDimitry Andric cl::desc("Enable the live debug variables pass"), cl::Hidden); 492754fe60SDimitry Andric 506122f3e6SDimitry Andric STATISTIC(NumInsertedDebugValues, "Number of DBG_VALUEs inserted"); 512754fe60SDimitry Andric char LiveDebugVariables::ID = 0; 522754fe60SDimitry Andric 532754fe60SDimitry Andric INITIALIZE_PASS_BEGIN(LiveDebugVariables, "livedebugvars", 542754fe60SDimitry Andric "Debug Variable Analysis", false, false) 552754fe60SDimitry Andric INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree) 562754fe60SDimitry Andric INITIALIZE_PASS_DEPENDENCY(LiveIntervals) 572754fe60SDimitry Andric INITIALIZE_PASS_END(LiveDebugVariables, "livedebugvars", 582754fe60SDimitry Andric "Debug Variable Analysis", false, false) 592754fe60SDimitry Andric 602754fe60SDimitry Andric void LiveDebugVariables::getAnalysisUsage(AnalysisUsage &AU) const { 612754fe60SDimitry Andric AU.addRequired<MachineDominatorTree>(); 622754fe60SDimitry Andric AU.addRequiredTransitive<LiveIntervals>(); 632754fe60SDimitry Andric AU.setPreservesAll(); 642754fe60SDimitry Andric MachineFunctionPass::getAnalysisUsage(AU); 652754fe60SDimitry Andric } 662754fe60SDimitry Andric 672754fe60SDimitry Andric LiveDebugVariables::LiveDebugVariables() : MachineFunctionPass(ID), pImpl(0) { 682754fe60SDimitry Andric initializeLiveDebugVariablesPass(*PassRegistry::getPassRegistry()); 692754fe60SDimitry Andric } 702754fe60SDimitry Andric 712754fe60SDimitry Andric /// LocMap - Map of where a user value is live, and its location. 722754fe60SDimitry Andric typedef IntervalMap<SlotIndex, unsigned, 4> LocMap; 732754fe60SDimitry Andric 746122f3e6SDimitry Andric namespace { 756122f3e6SDimitry Andric /// UserValueScopes - Keeps track of lexical scopes associated with an 766122f3e6SDimitry Andric /// user value's source location. 776122f3e6SDimitry Andric class UserValueScopes { 786122f3e6SDimitry Andric DebugLoc DL; 796122f3e6SDimitry Andric LexicalScopes &LS; 806122f3e6SDimitry Andric SmallPtrSet<const MachineBasicBlock *, 4> LBlocks; 816122f3e6SDimitry Andric 826122f3e6SDimitry Andric public: 836122f3e6SDimitry Andric UserValueScopes(DebugLoc D, LexicalScopes &L) : DL(D), LS(L) {} 846122f3e6SDimitry Andric 856122f3e6SDimitry Andric /// dominates - Return true if current scope dominates at least one machine 866122f3e6SDimitry Andric /// instruction in a given machine basic block. 876122f3e6SDimitry Andric bool dominates(MachineBasicBlock *MBB) { 886122f3e6SDimitry Andric if (LBlocks.empty()) 896122f3e6SDimitry Andric LS.getMachineBasicBlocks(DL, LBlocks); 906122f3e6SDimitry Andric if (LBlocks.count(MBB) != 0 || LS.dominates(DL, MBB)) 916122f3e6SDimitry Andric return true; 926122f3e6SDimitry Andric return false; 936122f3e6SDimitry Andric } 946122f3e6SDimitry Andric }; 956122f3e6SDimitry Andric } // end anonymous namespace 966122f3e6SDimitry Andric 972754fe60SDimitry Andric /// UserValue - A user value is a part of a debug info user variable. 982754fe60SDimitry Andric /// 992754fe60SDimitry Andric /// A DBG_VALUE instruction notes that (a sub-register of) a virtual register 1002754fe60SDimitry Andric /// holds part of a user variable. The part is identified by a byte offset. 1012754fe60SDimitry Andric /// 1022754fe60SDimitry Andric /// UserValues are grouped into equivalence classes for easier searching. Two 1032754fe60SDimitry Andric /// user values are related if they refer to the same variable, or if they are 1042754fe60SDimitry Andric /// held by the same virtual register. The equivalence class is the transitive 1052754fe60SDimitry Andric /// closure of that relation. 1062754fe60SDimitry Andric namespace { 1073b0f4066SDimitry Andric class LDVImpl; 1082754fe60SDimitry Andric class UserValue { 1092754fe60SDimitry Andric const MDNode *variable; ///< The debug info variable we are part of. 1102754fe60SDimitry Andric unsigned offset; ///< Byte offset into variable. 1112754fe60SDimitry Andric DebugLoc dl; ///< The debug location for the variable. This is 1122754fe60SDimitry Andric ///< used by dwarf writer to find lexical scope. 1132754fe60SDimitry Andric UserValue *leader; ///< Equivalence class leader. 1142754fe60SDimitry Andric UserValue *next; ///< Next value in equivalence class, or null. 1152754fe60SDimitry Andric 1162754fe60SDimitry Andric /// Numbered locations referenced by locmap. 1172754fe60SDimitry Andric SmallVector<MachineOperand, 4> locations; 1182754fe60SDimitry Andric 1192754fe60SDimitry Andric /// Map of slot indices where this value is live. 1202754fe60SDimitry Andric LocMap locInts; 1212754fe60SDimitry Andric 1222754fe60SDimitry Andric /// coalesceLocation - After LocNo was changed, check if it has become 1232754fe60SDimitry Andric /// identical to another location, and coalesce them. This may cause LocNo or 1242754fe60SDimitry Andric /// a later location to be erased, but no earlier location will be erased. 1252754fe60SDimitry Andric void coalesceLocation(unsigned LocNo); 1262754fe60SDimitry Andric 1272754fe60SDimitry Andric /// insertDebugValue - Insert a DBG_VALUE into MBB at Idx for LocNo. 1282754fe60SDimitry Andric void insertDebugValue(MachineBasicBlock *MBB, SlotIndex Idx, unsigned LocNo, 1292754fe60SDimitry Andric LiveIntervals &LIS, const TargetInstrInfo &TII); 1302754fe60SDimitry Andric 131bd5abe19SDimitry Andric /// splitLocation - Replace OldLocNo ranges with NewRegs ranges where NewRegs 132bd5abe19SDimitry Andric /// is live. Returns true if any changes were made. 133bd5abe19SDimitry Andric bool splitLocation(unsigned OldLocNo, ArrayRef<LiveInterval*> NewRegs); 134bd5abe19SDimitry Andric 1352754fe60SDimitry Andric public: 1362754fe60SDimitry Andric /// UserValue - Create a new UserValue. 1372754fe60SDimitry Andric UserValue(const MDNode *var, unsigned o, DebugLoc L, 1382754fe60SDimitry Andric LocMap::Allocator &alloc) 1392754fe60SDimitry Andric : variable(var), offset(o), dl(L), leader(this), next(0), locInts(alloc) 1402754fe60SDimitry Andric {} 1412754fe60SDimitry Andric 1422754fe60SDimitry Andric /// getLeader - Get the leader of this value's equivalence class. 1432754fe60SDimitry Andric UserValue *getLeader() { 1442754fe60SDimitry Andric UserValue *l = leader; 1452754fe60SDimitry Andric while (l != l->leader) 1462754fe60SDimitry Andric l = l->leader; 1472754fe60SDimitry Andric return leader = l; 1482754fe60SDimitry Andric } 1492754fe60SDimitry Andric 1502754fe60SDimitry Andric /// getNext - Return the next UserValue in the equivalence class. 1512754fe60SDimitry Andric UserValue *getNext() const { return next; } 1522754fe60SDimitry Andric 15317a519f9SDimitry Andric /// match - Does this UserValue match the parameters? 1542754fe60SDimitry Andric bool match(const MDNode *Var, unsigned Offset) const { 1552754fe60SDimitry Andric return Var == variable && Offset == offset; 1562754fe60SDimitry Andric } 1572754fe60SDimitry Andric 1582754fe60SDimitry Andric /// merge - Merge equivalence classes. 1592754fe60SDimitry Andric static UserValue *merge(UserValue *L1, UserValue *L2) { 1602754fe60SDimitry Andric L2 = L2->getLeader(); 1612754fe60SDimitry Andric if (!L1) 1622754fe60SDimitry Andric return L2; 1632754fe60SDimitry Andric L1 = L1->getLeader(); 1642754fe60SDimitry Andric if (L1 == L2) 1652754fe60SDimitry Andric return L1; 1662754fe60SDimitry Andric // Splice L2 before L1's members. 1672754fe60SDimitry Andric UserValue *End = L2; 1682754fe60SDimitry Andric while (End->next) 1692754fe60SDimitry Andric End->leader = L1, End = End->next; 1702754fe60SDimitry Andric End->leader = L1; 1712754fe60SDimitry Andric End->next = L1->next; 1722754fe60SDimitry Andric L1->next = L2; 1732754fe60SDimitry Andric return L1; 1742754fe60SDimitry Andric } 1752754fe60SDimitry Andric 1762754fe60SDimitry Andric /// getLocationNo - Return the location number that matches Loc. 1772754fe60SDimitry Andric unsigned getLocationNo(const MachineOperand &LocMO) { 1783b0f4066SDimitry Andric if (LocMO.isReg()) { 1793b0f4066SDimitry Andric if (LocMO.getReg() == 0) 1802754fe60SDimitry Andric return ~0u; 1813b0f4066SDimitry Andric // For register locations we dont care about use/def and other flags. 1823b0f4066SDimitry Andric for (unsigned i = 0, e = locations.size(); i != e; ++i) 1833b0f4066SDimitry Andric if (locations[i].isReg() && 1843b0f4066SDimitry Andric locations[i].getReg() == LocMO.getReg() && 1853b0f4066SDimitry Andric locations[i].getSubReg() == LocMO.getSubReg()) 1863b0f4066SDimitry Andric return i; 1873b0f4066SDimitry Andric } else 1882754fe60SDimitry Andric for (unsigned i = 0, e = locations.size(); i != e; ++i) 1892754fe60SDimitry Andric if (LocMO.isIdenticalTo(locations[i])) 1902754fe60SDimitry Andric return i; 1912754fe60SDimitry Andric locations.push_back(LocMO); 1922754fe60SDimitry Andric // We are storing a MachineOperand outside a MachineInstr. 1932754fe60SDimitry Andric locations.back().clearParent(); 1943b0f4066SDimitry Andric // Don't store def operands. 1953b0f4066SDimitry Andric if (locations.back().isReg()) 1963b0f4066SDimitry Andric locations.back().setIsUse(); 1972754fe60SDimitry Andric return locations.size() - 1; 1982754fe60SDimitry Andric } 1992754fe60SDimitry Andric 2003b0f4066SDimitry Andric /// mapVirtRegs - Ensure that all virtual register locations are mapped. 2013b0f4066SDimitry Andric void mapVirtRegs(LDVImpl *LDV); 2023b0f4066SDimitry Andric 2032754fe60SDimitry Andric /// addDef - Add a definition point to this value. 2042754fe60SDimitry Andric void addDef(SlotIndex Idx, const MachineOperand &LocMO) { 2052754fe60SDimitry Andric // Add a singular (Idx,Idx) -> Loc mapping. 2062754fe60SDimitry Andric LocMap::iterator I = locInts.find(Idx); 2072754fe60SDimitry Andric if (!I.valid() || I.start() != Idx) 2082754fe60SDimitry Andric I.insert(Idx, Idx.getNextSlot(), getLocationNo(LocMO)); 2096122f3e6SDimitry Andric else 2106122f3e6SDimitry Andric // A later DBG_VALUE at the same SlotIndex overrides the old location. 2116122f3e6SDimitry Andric I.setValue(getLocationNo(LocMO)); 2122754fe60SDimitry Andric } 2132754fe60SDimitry Andric 2142754fe60SDimitry Andric /// extendDef - Extend the current definition as far as possible down the 2152754fe60SDimitry Andric /// dominator tree. Stop when meeting an existing def or when leaving the live 2162754fe60SDimitry Andric /// range of VNI. 2173b0f4066SDimitry Andric /// End points where VNI is no longer live are added to Kills. 2182754fe60SDimitry Andric /// @param Idx Starting point for the definition. 2192754fe60SDimitry Andric /// @param LocNo Location number to propagate. 2202754fe60SDimitry Andric /// @param LI Restrict liveness to where LI has the value VNI. May be null. 2212754fe60SDimitry Andric /// @param VNI When LI is not null, this is the value to restrict to. 2223b0f4066SDimitry Andric /// @param Kills Append end points of VNI's live range to Kills. 2232754fe60SDimitry Andric /// @param LIS Live intervals analysis. 2242754fe60SDimitry Andric /// @param MDT Dominator tree. 2252754fe60SDimitry Andric void extendDef(SlotIndex Idx, unsigned LocNo, 2262754fe60SDimitry Andric LiveInterval *LI, const VNInfo *VNI, 2273b0f4066SDimitry Andric SmallVectorImpl<SlotIndex> *Kills, 2286122f3e6SDimitry Andric LiveIntervals &LIS, MachineDominatorTree &MDT, 2296122f3e6SDimitry Andric UserValueScopes &UVS); 2302754fe60SDimitry Andric 2313b0f4066SDimitry Andric /// addDefsFromCopies - The value in LI/LocNo may be copies to other 2323b0f4066SDimitry Andric /// registers. Determine if any of the copies are available at the kill 2333b0f4066SDimitry Andric /// points, and add defs if possible. 2343b0f4066SDimitry Andric /// @param LI Scan for copies of the value in LI->reg. 2353b0f4066SDimitry Andric /// @param LocNo Location number of LI->reg. 2363b0f4066SDimitry Andric /// @param Kills Points where the range of LocNo could be extended. 2373b0f4066SDimitry Andric /// @param NewDefs Append (Idx, LocNo) of inserted defs here. 2383b0f4066SDimitry Andric void addDefsFromCopies(LiveInterval *LI, unsigned LocNo, 2393b0f4066SDimitry Andric const SmallVectorImpl<SlotIndex> &Kills, 2403b0f4066SDimitry Andric SmallVectorImpl<std::pair<SlotIndex, unsigned> > &NewDefs, 2413b0f4066SDimitry Andric MachineRegisterInfo &MRI, 2423b0f4066SDimitry Andric LiveIntervals &LIS); 2433b0f4066SDimitry Andric 2442754fe60SDimitry Andric /// computeIntervals - Compute the live intervals of all locations after 2452754fe60SDimitry Andric /// collecting all their def points. 2463b0f4066SDimitry Andric void computeIntervals(MachineRegisterInfo &MRI, 2476122f3e6SDimitry Andric LiveIntervals &LIS, MachineDominatorTree &MDT, 2486122f3e6SDimitry Andric UserValueScopes &UVS); 2492754fe60SDimitry Andric 2502754fe60SDimitry Andric /// renameRegister - Update locations to rewrite OldReg as NewReg:SubIdx. 2512754fe60SDimitry Andric void renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx, 2522754fe60SDimitry Andric const TargetRegisterInfo *TRI); 2532754fe60SDimitry Andric 254bd5abe19SDimitry Andric /// splitRegister - Replace OldReg ranges with NewRegs ranges where NewRegs is 255bd5abe19SDimitry Andric /// live. Returns true if any changes were made. 256bd5abe19SDimitry Andric bool splitRegister(unsigned OldLocNo, ArrayRef<LiveInterval*> NewRegs); 257bd5abe19SDimitry Andric 2582754fe60SDimitry Andric /// rewriteLocations - Rewrite virtual register locations according to the 2592754fe60SDimitry Andric /// provided virtual register map. 2602754fe60SDimitry Andric void rewriteLocations(VirtRegMap &VRM, const TargetRegisterInfo &TRI); 2612754fe60SDimitry Andric 2622754fe60SDimitry Andric /// emitDebugVariables - Recreate DBG_VALUE instruction from data structures. 2632754fe60SDimitry Andric void emitDebugValues(VirtRegMap *VRM, 2642754fe60SDimitry Andric LiveIntervals &LIS, const TargetInstrInfo &TRI); 2652754fe60SDimitry Andric 2662754fe60SDimitry Andric /// findDebugLoc - Return DebugLoc used for this DBG_VALUE instruction. A 2672754fe60SDimitry Andric /// variable may have more than one corresponding DBG_VALUE instructions. 2682754fe60SDimitry Andric /// Only first one needs DebugLoc to identify variable's lexical scope 2692754fe60SDimitry Andric /// in source file. 2702754fe60SDimitry Andric DebugLoc findDebugLoc(); 2716122f3e6SDimitry Andric 2726122f3e6SDimitry Andric /// getDebugLoc - Return DebugLoc of this UserValue. 2736122f3e6SDimitry Andric DebugLoc getDebugLoc() { return dl;} 274bd5abe19SDimitry Andric void print(raw_ostream&, const TargetMachine*); 2752754fe60SDimitry Andric }; 2762754fe60SDimitry Andric } // namespace 2772754fe60SDimitry Andric 2782754fe60SDimitry Andric /// LDVImpl - Implementation of the LiveDebugVariables pass. 2792754fe60SDimitry Andric namespace { 2802754fe60SDimitry Andric class LDVImpl { 2812754fe60SDimitry Andric LiveDebugVariables &pass; 2822754fe60SDimitry Andric LocMap::Allocator allocator; 2832754fe60SDimitry Andric MachineFunction *MF; 2842754fe60SDimitry Andric LiveIntervals *LIS; 2856122f3e6SDimitry Andric LexicalScopes LS; 2862754fe60SDimitry Andric MachineDominatorTree *MDT; 2872754fe60SDimitry Andric const TargetRegisterInfo *TRI; 2882754fe60SDimitry Andric 2892754fe60SDimitry Andric /// userValues - All allocated UserValue instances. 2902754fe60SDimitry Andric SmallVector<UserValue*, 8> userValues; 2912754fe60SDimitry Andric 2922754fe60SDimitry Andric /// Map virtual register to eq class leader. 2932754fe60SDimitry Andric typedef DenseMap<unsigned, UserValue*> VRMap; 2942754fe60SDimitry Andric VRMap virtRegToEqClass; 2952754fe60SDimitry Andric 2962754fe60SDimitry Andric /// Map user variable to eq class leader. 2972754fe60SDimitry Andric typedef DenseMap<const MDNode *, UserValue*> UVMap; 2982754fe60SDimitry Andric UVMap userVarMap; 2992754fe60SDimitry Andric 3002754fe60SDimitry Andric /// getUserValue - Find or create a UserValue. 3012754fe60SDimitry Andric UserValue *getUserValue(const MDNode *Var, unsigned Offset, DebugLoc DL); 3022754fe60SDimitry Andric 3032754fe60SDimitry Andric /// lookupVirtReg - Find the EC leader for VirtReg or null. 3042754fe60SDimitry Andric UserValue *lookupVirtReg(unsigned VirtReg); 3052754fe60SDimitry Andric 3062754fe60SDimitry Andric /// handleDebugValue - Add DBG_VALUE instruction to our maps. 3072754fe60SDimitry Andric /// @param MI DBG_VALUE instruction 3082754fe60SDimitry Andric /// @param Idx Last valid SLotIndex before instruction. 3092754fe60SDimitry Andric /// @return True if the DBG_VALUE instruction should be deleted. 3102754fe60SDimitry Andric bool handleDebugValue(MachineInstr *MI, SlotIndex Idx); 3112754fe60SDimitry Andric 3122754fe60SDimitry Andric /// collectDebugValues - Collect and erase all DBG_VALUE instructions, adding 3132754fe60SDimitry Andric /// a UserValue def for each instruction. 3142754fe60SDimitry Andric /// @param mf MachineFunction to be scanned. 3152754fe60SDimitry Andric /// @return True if any debug values were found. 3162754fe60SDimitry Andric bool collectDebugValues(MachineFunction &mf); 3172754fe60SDimitry Andric 3182754fe60SDimitry Andric /// computeIntervals - Compute the live intervals of all user values after 3192754fe60SDimitry Andric /// collecting all their def points. 3202754fe60SDimitry Andric void computeIntervals(); 3212754fe60SDimitry Andric 3222754fe60SDimitry Andric public: 3232754fe60SDimitry Andric LDVImpl(LiveDebugVariables *ps) : pass(*ps) {} 3242754fe60SDimitry Andric bool runOnMachineFunction(MachineFunction &mf); 3252754fe60SDimitry Andric 3262754fe60SDimitry Andric /// clear - Relase all memory. 3272754fe60SDimitry Andric void clear() { 3282754fe60SDimitry Andric DeleteContainerPointers(userValues); 3292754fe60SDimitry Andric userValues.clear(); 3302754fe60SDimitry Andric virtRegToEqClass.clear(); 3312754fe60SDimitry Andric userVarMap.clear(); 3322754fe60SDimitry Andric } 3332754fe60SDimitry Andric 3343b0f4066SDimitry Andric /// mapVirtReg - Map virtual register to an equivalence class. 3353b0f4066SDimitry Andric void mapVirtReg(unsigned VirtReg, UserValue *EC); 3363b0f4066SDimitry Andric 3373b0f4066SDimitry Andric /// renameRegister - Replace all references to OldReg with NewReg:SubIdx. 3382754fe60SDimitry Andric void renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx); 3392754fe60SDimitry Andric 340bd5abe19SDimitry Andric /// splitRegister - Replace all references to OldReg with NewRegs. 341bd5abe19SDimitry Andric void splitRegister(unsigned OldReg, ArrayRef<LiveInterval*> NewRegs); 342bd5abe19SDimitry Andric 3432754fe60SDimitry Andric /// emitDebugVariables - Recreate DBG_VALUE instruction from data structures. 3442754fe60SDimitry Andric void emitDebugValues(VirtRegMap *VRM); 3452754fe60SDimitry Andric 3462754fe60SDimitry Andric void print(raw_ostream&); 3472754fe60SDimitry Andric }; 3482754fe60SDimitry Andric } // namespace 3492754fe60SDimitry Andric 350bd5abe19SDimitry Andric void UserValue::print(raw_ostream &OS, const TargetMachine *TM) { 3516122f3e6SDimitry Andric DIVariable DV(variable); 3526122f3e6SDimitry Andric OS << "!\""; 3536122f3e6SDimitry Andric DV.printExtendedName(OS); 3546122f3e6SDimitry Andric OS << "\"\t"; 3552754fe60SDimitry Andric if (offset) 3562754fe60SDimitry Andric OS << '+' << offset; 3572754fe60SDimitry Andric for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I) { 3582754fe60SDimitry Andric OS << " [" << I.start() << ';' << I.stop() << "):"; 3592754fe60SDimitry Andric if (I.value() == ~0u) 3602754fe60SDimitry Andric OS << "undef"; 3612754fe60SDimitry Andric else 3622754fe60SDimitry Andric OS << I.value(); 3632754fe60SDimitry Andric } 364bd5abe19SDimitry Andric for (unsigned i = 0, e = locations.size(); i != e; ++i) { 365bd5abe19SDimitry Andric OS << " Loc" << i << '='; 366bd5abe19SDimitry Andric locations[i].print(OS, TM); 367bd5abe19SDimitry Andric } 3682754fe60SDimitry Andric OS << '\n'; 3692754fe60SDimitry Andric } 3702754fe60SDimitry Andric 3712754fe60SDimitry Andric void LDVImpl::print(raw_ostream &OS) { 3722754fe60SDimitry Andric OS << "********** DEBUG VARIABLES **********\n"; 3732754fe60SDimitry Andric for (unsigned i = 0, e = userValues.size(); i != e; ++i) 374bd5abe19SDimitry Andric userValues[i]->print(OS, &MF->getTarget()); 3752754fe60SDimitry Andric } 3762754fe60SDimitry Andric 3772754fe60SDimitry Andric void UserValue::coalesceLocation(unsigned LocNo) { 3782754fe60SDimitry Andric unsigned KeepLoc = 0; 3792754fe60SDimitry Andric for (unsigned e = locations.size(); KeepLoc != e; ++KeepLoc) { 3802754fe60SDimitry Andric if (KeepLoc == LocNo) 3812754fe60SDimitry Andric continue; 3822754fe60SDimitry Andric if (locations[KeepLoc].isIdenticalTo(locations[LocNo])) 3832754fe60SDimitry Andric break; 3842754fe60SDimitry Andric } 3852754fe60SDimitry Andric // No matches. 3862754fe60SDimitry Andric if (KeepLoc == locations.size()) 3872754fe60SDimitry Andric return; 3882754fe60SDimitry Andric 3892754fe60SDimitry Andric // Keep the smaller location, erase the larger one. 3902754fe60SDimitry Andric unsigned EraseLoc = LocNo; 3912754fe60SDimitry Andric if (KeepLoc > EraseLoc) 3922754fe60SDimitry Andric std::swap(KeepLoc, EraseLoc); 3932754fe60SDimitry Andric locations.erase(locations.begin() + EraseLoc); 3942754fe60SDimitry Andric 3952754fe60SDimitry Andric // Rewrite values. 3962754fe60SDimitry Andric for (LocMap::iterator I = locInts.begin(); I.valid(); ++I) { 3972754fe60SDimitry Andric unsigned v = I.value(); 3982754fe60SDimitry Andric if (v == EraseLoc) 3992754fe60SDimitry Andric I.setValue(KeepLoc); // Coalesce when possible. 4002754fe60SDimitry Andric else if (v > EraseLoc) 4012754fe60SDimitry Andric I.setValueUnchecked(v-1); // Avoid coalescing with untransformed values. 4022754fe60SDimitry Andric } 4032754fe60SDimitry Andric } 4042754fe60SDimitry Andric 4053b0f4066SDimitry Andric void UserValue::mapVirtRegs(LDVImpl *LDV) { 4063b0f4066SDimitry Andric for (unsigned i = 0, e = locations.size(); i != e; ++i) 4073b0f4066SDimitry Andric if (locations[i].isReg() && 4083b0f4066SDimitry Andric TargetRegisterInfo::isVirtualRegister(locations[i].getReg())) 4093b0f4066SDimitry Andric LDV->mapVirtReg(locations[i].getReg(), this); 4103b0f4066SDimitry Andric } 4113b0f4066SDimitry Andric 4122754fe60SDimitry Andric UserValue *LDVImpl::getUserValue(const MDNode *Var, unsigned Offset, 4132754fe60SDimitry Andric DebugLoc DL) { 4142754fe60SDimitry Andric UserValue *&Leader = userVarMap[Var]; 4152754fe60SDimitry Andric if (Leader) { 4162754fe60SDimitry Andric UserValue *UV = Leader->getLeader(); 4172754fe60SDimitry Andric Leader = UV; 4182754fe60SDimitry Andric for (; UV; UV = UV->getNext()) 4192754fe60SDimitry Andric if (UV->match(Var, Offset)) 4202754fe60SDimitry Andric return UV; 4212754fe60SDimitry Andric } 4222754fe60SDimitry Andric 4232754fe60SDimitry Andric UserValue *UV = new UserValue(Var, Offset, DL, allocator); 4242754fe60SDimitry Andric userValues.push_back(UV); 4252754fe60SDimitry Andric Leader = UserValue::merge(Leader, UV); 4262754fe60SDimitry Andric return UV; 4272754fe60SDimitry Andric } 4282754fe60SDimitry Andric 4292754fe60SDimitry Andric void LDVImpl::mapVirtReg(unsigned VirtReg, UserValue *EC) { 4302754fe60SDimitry Andric assert(TargetRegisterInfo::isVirtualRegister(VirtReg) && "Only map VirtRegs"); 4312754fe60SDimitry Andric UserValue *&Leader = virtRegToEqClass[VirtReg]; 4322754fe60SDimitry Andric Leader = UserValue::merge(Leader, EC); 4332754fe60SDimitry Andric } 4342754fe60SDimitry Andric 4352754fe60SDimitry Andric UserValue *LDVImpl::lookupVirtReg(unsigned VirtReg) { 4362754fe60SDimitry Andric if (UserValue *UV = virtRegToEqClass.lookup(VirtReg)) 4372754fe60SDimitry Andric return UV->getLeader(); 4382754fe60SDimitry Andric return 0; 4392754fe60SDimitry Andric } 4402754fe60SDimitry Andric 4412754fe60SDimitry Andric bool LDVImpl::handleDebugValue(MachineInstr *MI, SlotIndex Idx) { 4422754fe60SDimitry Andric // DBG_VALUE loc, offset, variable 4432754fe60SDimitry Andric if (MI->getNumOperands() != 3 || 4442754fe60SDimitry Andric !MI->getOperand(1).isImm() || !MI->getOperand(2).isMetadata()) { 4452754fe60SDimitry Andric DEBUG(dbgs() << "Can't handle " << *MI); 4462754fe60SDimitry Andric return false; 4472754fe60SDimitry Andric } 4482754fe60SDimitry Andric 4492754fe60SDimitry Andric // Get or create the UserValue for (variable,offset). 4502754fe60SDimitry Andric unsigned Offset = MI->getOperand(1).getImm(); 4512754fe60SDimitry Andric const MDNode *Var = MI->getOperand(2).getMetadata(); 4522754fe60SDimitry Andric UserValue *UV = getUserValue(Var, Offset, MI->getDebugLoc()); 4532754fe60SDimitry Andric UV->addDef(Idx, MI->getOperand(0)); 4542754fe60SDimitry Andric return true; 4552754fe60SDimitry Andric } 4562754fe60SDimitry Andric 4572754fe60SDimitry Andric bool LDVImpl::collectDebugValues(MachineFunction &mf) { 4582754fe60SDimitry Andric bool Changed = false; 4592754fe60SDimitry Andric for (MachineFunction::iterator MFI = mf.begin(), MFE = mf.end(); MFI != MFE; 4602754fe60SDimitry Andric ++MFI) { 4612754fe60SDimitry Andric MachineBasicBlock *MBB = MFI; 4622754fe60SDimitry Andric for (MachineBasicBlock::iterator MBBI = MBB->begin(), MBBE = MBB->end(); 4632754fe60SDimitry Andric MBBI != MBBE;) { 4642754fe60SDimitry Andric if (!MBBI->isDebugValue()) { 4652754fe60SDimitry Andric ++MBBI; 4662754fe60SDimitry Andric continue; 4672754fe60SDimitry Andric } 4682754fe60SDimitry Andric // DBG_VALUE has no slot index, use the previous instruction instead. 4692754fe60SDimitry Andric SlotIndex Idx = MBBI == MBB->begin() ? 4702754fe60SDimitry Andric LIS->getMBBStartIdx(MBB) : 471dff0c46cSDimitry Andric LIS->getInstructionIndex(llvm::prior(MBBI)).getRegSlot(); 4722754fe60SDimitry Andric // Handle consecutive DBG_VALUE instructions with the same slot index. 4732754fe60SDimitry Andric do { 4742754fe60SDimitry Andric if (handleDebugValue(MBBI, Idx)) { 4752754fe60SDimitry Andric MBBI = MBB->erase(MBBI); 4762754fe60SDimitry Andric Changed = true; 4772754fe60SDimitry Andric } else 4782754fe60SDimitry Andric ++MBBI; 4792754fe60SDimitry Andric } while (MBBI != MBBE && MBBI->isDebugValue()); 4802754fe60SDimitry Andric } 4812754fe60SDimitry Andric } 4822754fe60SDimitry Andric return Changed; 4832754fe60SDimitry Andric } 4842754fe60SDimitry Andric 4852754fe60SDimitry Andric void UserValue::extendDef(SlotIndex Idx, unsigned LocNo, 4862754fe60SDimitry Andric LiveInterval *LI, const VNInfo *VNI, 4873b0f4066SDimitry Andric SmallVectorImpl<SlotIndex> *Kills, 4886122f3e6SDimitry Andric LiveIntervals &LIS, MachineDominatorTree &MDT, 4896122f3e6SDimitry Andric UserValueScopes &UVS) { 4902754fe60SDimitry Andric SmallVector<SlotIndex, 16> Todo; 4912754fe60SDimitry Andric Todo.push_back(Idx); 4922754fe60SDimitry Andric do { 4932754fe60SDimitry Andric SlotIndex Start = Todo.pop_back_val(); 4942754fe60SDimitry Andric MachineBasicBlock *MBB = LIS.getMBBFromIndex(Start); 4952754fe60SDimitry Andric SlotIndex Stop = LIS.getMBBEndIdx(MBB); 4962754fe60SDimitry Andric LocMap::iterator I = locInts.find(Start); 4972754fe60SDimitry Andric 4982754fe60SDimitry Andric // Limit to VNI's live range. 4992754fe60SDimitry Andric bool ToEnd = true; 5002754fe60SDimitry Andric if (LI && VNI) { 5012754fe60SDimitry Andric LiveRange *Range = LI->getLiveRangeContaining(Start); 5023b0f4066SDimitry Andric if (!Range || Range->valno != VNI) { 5033b0f4066SDimitry Andric if (Kills) 5043b0f4066SDimitry Andric Kills->push_back(Start); 5052754fe60SDimitry Andric continue; 5063b0f4066SDimitry Andric } 5072754fe60SDimitry Andric if (Range->end < Stop) 5082754fe60SDimitry Andric Stop = Range->end, ToEnd = false; 5092754fe60SDimitry Andric } 5102754fe60SDimitry Andric 5112754fe60SDimitry Andric // There could already be a short def at Start. 5122754fe60SDimitry Andric if (I.valid() && I.start() <= Start) { 5132754fe60SDimitry Andric // Stop when meeting a different location or an already extended interval. 5142754fe60SDimitry Andric Start = Start.getNextSlot(); 5152754fe60SDimitry Andric if (I.value() != LocNo || I.stop() != Start) 5162754fe60SDimitry Andric continue; 5172754fe60SDimitry Andric // This is a one-slot placeholder. Just skip it. 5182754fe60SDimitry Andric ++I; 5192754fe60SDimitry Andric } 5202754fe60SDimitry Andric 5212754fe60SDimitry Andric // Limited by the next def. 5222754fe60SDimitry Andric if (I.valid() && I.start() < Stop) 5232754fe60SDimitry Andric Stop = I.start(), ToEnd = false; 5243b0f4066SDimitry Andric // Limited by VNI's live range. 5253b0f4066SDimitry Andric else if (!ToEnd && Kills) 5263b0f4066SDimitry Andric Kills->push_back(Stop); 5272754fe60SDimitry Andric 5282754fe60SDimitry Andric if (Start >= Stop) 5292754fe60SDimitry Andric continue; 5302754fe60SDimitry Andric 5312754fe60SDimitry Andric I.insert(Start, Stop, LocNo); 5322754fe60SDimitry Andric 5332754fe60SDimitry Andric // If we extended to the MBB end, propagate down the dominator tree. 5342754fe60SDimitry Andric if (!ToEnd) 5352754fe60SDimitry Andric continue; 5362754fe60SDimitry Andric const std::vector<MachineDomTreeNode*> &Children = 5372754fe60SDimitry Andric MDT.getNode(MBB)->getChildren(); 5386122f3e6SDimitry Andric for (unsigned i = 0, e = Children.size(); i != e; ++i) { 5396122f3e6SDimitry Andric MachineBasicBlock *MBB = Children[i]->getBlock(); 5406122f3e6SDimitry Andric if (UVS.dominates(MBB)) 5416122f3e6SDimitry Andric Todo.push_back(LIS.getMBBStartIdx(MBB)); 5426122f3e6SDimitry Andric } 5432754fe60SDimitry Andric } while (!Todo.empty()); 5442754fe60SDimitry Andric } 5452754fe60SDimitry Andric 5462754fe60SDimitry Andric void 5473b0f4066SDimitry Andric UserValue::addDefsFromCopies(LiveInterval *LI, unsigned LocNo, 5483b0f4066SDimitry Andric const SmallVectorImpl<SlotIndex> &Kills, 5493b0f4066SDimitry Andric SmallVectorImpl<std::pair<SlotIndex, unsigned> > &NewDefs, 5503b0f4066SDimitry Andric MachineRegisterInfo &MRI, LiveIntervals &LIS) { 5513b0f4066SDimitry Andric if (Kills.empty()) 5523b0f4066SDimitry Andric return; 5533b0f4066SDimitry Andric // Don't track copies from physregs, there are too many uses. 5543b0f4066SDimitry Andric if (!TargetRegisterInfo::isVirtualRegister(LI->reg)) 5553b0f4066SDimitry Andric return; 5563b0f4066SDimitry Andric 5573b0f4066SDimitry Andric // Collect all the (vreg, valno) pairs that are copies of LI. 5583b0f4066SDimitry Andric SmallVector<std::pair<LiveInterval*, const VNInfo*>, 8> CopyValues; 5593b0f4066SDimitry Andric for (MachineRegisterInfo::use_nodbg_iterator 5603b0f4066SDimitry Andric UI = MRI.use_nodbg_begin(LI->reg), 5613b0f4066SDimitry Andric UE = MRI.use_nodbg_end(); UI != UE; ++UI) { 5623b0f4066SDimitry Andric // Copies of the full value. 5633b0f4066SDimitry Andric if (UI.getOperand().getSubReg() || !UI->isCopy()) 5643b0f4066SDimitry Andric continue; 5653b0f4066SDimitry Andric MachineInstr *MI = &*UI; 5663b0f4066SDimitry Andric unsigned DstReg = MI->getOperand(0).getReg(); 5673b0f4066SDimitry Andric 5683b0f4066SDimitry Andric // Don't follow copies to physregs. These are usually setting up call 5693b0f4066SDimitry Andric // arguments, and the argument registers are always call clobbered. We are 5703b0f4066SDimitry Andric // better off in the source register which could be a callee-saved register, 5713b0f4066SDimitry Andric // or it could be spilled. 5723b0f4066SDimitry Andric if (!TargetRegisterInfo::isVirtualRegister(DstReg)) 5733b0f4066SDimitry Andric continue; 5743b0f4066SDimitry Andric 5753b0f4066SDimitry Andric // Is LocNo extended to reach this copy? If not, another def may be blocking 5763b0f4066SDimitry Andric // it, or we are looking at a wrong value of LI. 5773b0f4066SDimitry Andric SlotIndex Idx = LIS.getInstructionIndex(MI); 578dff0c46cSDimitry Andric LocMap::iterator I = locInts.find(Idx.getRegSlot(true)); 5793b0f4066SDimitry Andric if (!I.valid() || I.value() != LocNo) 5803b0f4066SDimitry Andric continue; 5813b0f4066SDimitry Andric 5823b0f4066SDimitry Andric if (!LIS.hasInterval(DstReg)) 5833b0f4066SDimitry Andric continue; 5843b0f4066SDimitry Andric LiveInterval *DstLI = &LIS.getInterval(DstReg); 585dff0c46cSDimitry Andric const VNInfo *DstVNI = DstLI->getVNInfoAt(Idx.getRegSlot()); 586dff0c46cSDimitry Andric assert(DstVNI && DstVNI->def == Idx.getRegSlot() && "Bad copy value"); 5873b0f4066SDimitry Andric CopyValues.push_back(std::make_pair(DstLI, DstVNI)); 5883b0f4066SDimitry Andric } 5893b0f4066SDimitry Andric 5903b0f4066SDimitry Andric if (CopyValues.empty()) 5913b0f4066SDimitry Andric return; 5923b0f4066SDimitry Andric 5933b0f4066SDimitry Andric DEBUG(dbgs() << "Got " << CopyValues.size() << " copies of " << *LI << '\n'); 5943b0f4066SDimitry Andric 5953b0f4066SDimitry Andric // Try to add defs of the copied values for each kill point. 5963b0f4066SDimitry Andric for (unsigned i = 0, e = Kills.size(); i != e; ++i) { 5973b0f4066SDimitry Andric SlotIndex Idx = Kills[i]; 5983b0f4066SDimitry Andric for (unsigned j = 0, e = CopyValues.size(); j != e; ++j) { 5993b0f4066SDimitry Andric LiveInterval *DstLI = CopyValues[j].first; 6003b0f4066SDimitry Andric const VNInfo *DstVNI = CopyValues[j].second; 6013b0f4066SDimitry Andric if (DstLI->getVNInfoAt(Idx) != DstVNI) 6023b0f4066SDimitry Andric continue; 6033b0f4066SDimitry Andric // Check that there isn't already a def at Idx 6043b0f4066SDimitry Andric LocMap::iterator I = locInts.find(Idx); 6053b0f4066SDimitry Andric if (I.valid() && I.start() <= Idx) 6063b0f4066SDimitry Andric continue; 6073b0f4066SDimitry Andric DEBUG(dbgs() << "Kill at " << Idx << " covered by valno #" 6083b0f4066SDimitry Andric << DstVNI->id << " in " << *DstLI << '\n'); 6093b0f4066SDimitry Andric MachineInstr *CopyMI = LIS.getInstructionFromIndex(DstVNI->def); 6103b0f4066SDimitry Andric assert(CopyMI && CopyMI->isCopy() && "Bad copy value"); 6113b0f4066SDimitry Andric unsigned LocNo = getLocationNo(CopyMI->getOperand(0)); 6123b0f4066SDimitry Andric I.insert(Idx, Idx.getNextSlot(), LocNo); 6133b0f4066SDimitry Andric NewDefs.push_back(std::make_pair(Idx, LocNo)); 6143b0f4066SDimitry Andric break; 6153b0f4066SDimitry Andric } 6163b0f4066SDimitry Andric } 6173b0f4066SDimitry Andric } 6183b0f4066SDimitry Andric 6193b0f4066SDimitry Andric void 6203b0f4066SDimitry Andric UserValue::computeIntervals(MachineRegisterInfo &MRI, 6213b0f4066SDimitry Andric LiveIntervals &LIS, 6226122f3e6SDimitry Andric MachineDominatorTree &MDT, 6236122f3e6SDimitry Andric UserValueScopes &UVS) { 6242754fe60SDimitry Andric SmallVector<std::pair<SlotIndex, unsigned>, 16> Defs; 6252754fe60SDimitry Andric 6262754fe60SDimitry Andric // Collect all defs to be extended (Skipping undefs). 6272754fe60SDimitry Andric for (LocMap::const_iterator I = locInts.begin(); I.valid(); ++I) 6282754fe60SDimitry Andric if (I.value() != ~0u) 6292754fe60SDimitry Andric Defs.push_back(std::make_pair(I.start(), I.value())); 6302754fe60SDimitry Andric 6313b0f4066SDimitry Andric // Extend all defs, and possibly add new ones along the way. 6323b0f4066SDimitry Andric for (unsigned i = 0; i != Defs.size(); ++i) { 6332754fe60SDimitry Andric SlotIndex Idx = Defs[i].first; 6342754fe60SDimitry Andric unsigned LocNo = Defs[i].second; 6352754fe60SDimitry Andric const MachineOperand &Loc = locations[LocNo]; 6362754fe60SDimitry Andric 6372754fe60SDimitry Andric // Register locations are constrained to where the register value is live. 6382754fe60SDimitry Andric if (Loc.isReg() && LIS.hasInterval(Loc.getReg())) { 6392754fe60SDimitry Andric LiveInterval *LI = &LIS.getInterval(Loc.getReg()); 6402754fe60SDimitry Andric const VNInfo *VNI = LI->getVNInfoAt(Idx); 6413b0f4066SDimitry Andric SmallVector<SlotIndex, 16> Kills; 6426122f3e6SDimitry Andric extendDef(Idx, LocNo, LI, VNI, &Kills, LIS, MDT, UVS); 6433b0f4066SDimitry Andric addDefsFromCopies(LI, LocNo, Kills, Defs, MRI, LIS); 6442754fe60SDimitry Andric } else 6456122f3e6SDimitry Andric extendDef(Idx, LocNo, 0, 0, 0, LIS, MDT, UVS); 6462754fe60SDimitry Andric } 6472754fe60SDimitry Andric 6482754fe60SDimitry Andric // Finally, erase all the undefs. 6492754fe60SDimitry Andric for (LocMap::iterator I = locInts.begin(); I.valid();) 6502754fe60SDimitry Andric if (I.value() == ~0u) 6512754fe60SDimitry Andric I.erase(); 6522754fe60SDimitry Andric else 6532754fe60SDimitry Andric ++I; 6542754fe60SDimitry Andric } 6552754fe60SDimitry Andric 6562754fe60SDimitry Andric void LDVImpl::computeIntervals() { 6573b0f4066SDimitry Andric for (unsigned i = 0, e = userValues.size(); i != e; ++i) { 6586122f3e6SDimitry Andric UserValueScopes UVS(userValues[i]->getDebugLoc(), LS); 6596122f3e6SDimitry Andric userValues[i]->computeIntervals(MF->getRegInfo(), *LIS, *MDT, UVS); 6603b0f4066SDimitry Andric userValues[i]->mapVirtRegs(this); 6613b0f4066SDimitry Andric } 6622754fe60SDimitry Andric } 6632754fe60SDimitry Andric 6642754fe60SDimitry Andric bool LDVImpl::runOnMachineFunction(MachineFunction &mf) { 6652754fe60SDimitry Andric MF = &mf; 6662754fe60SDimitry Andric LIS = &pass.getAnalysis<LiveIntervals>(); 6672754fe60SDimitry Andric MDT = &pass.getAnalysis<MachineDominatorTree>(); 6682754fe60SDimitry Andric TRI = mf.getTarget().getRegisterInfo(); 6692754fe60SDimitry Andric clear(); 6706122f3e6SDimitry Andric LS.initialize(mf); 6712754fe60SDimitry Andric DEBUG(dbgs() << "********** COMPUTING LIVE DEBUG VARIABLES: " 6722754fe60SDimitry Andric << ((Value*)mf.getFunction())->getName() 6732754fe60SDimitry Andric << " **********\n"); 6742754fe60SDimitry Andric 6752754fe60SDimitry Andric bool Changed = collectDebugValues(mf); 6762754fe60SDimitry Andric computeIntervals(); 6772754fe60SDimitry Andric DEBUG(print(dbgs())); 6786122f3e6SDimitry Andric LS.releaseMemory(); 6792754fe60SDimitry Andric return Changed; 6802754fe60SDimitry Andric } 6812754fe60SDimitry Andric 6822754fe60SDimitry Andric bool LiveDebugVariables::runOnMachineFunction(MachineFunction &mf) { 6832754fe60SDimitry Andric if (!EnableLDV) 6842754fe60SDimitry Andric return false; 6852754fe60SDimitry Andric if (!pImpl) 6862754fe60SDimitry Andric pImpl = new LDVImpl(this); 6872754fe60SDimitry Andric return static_cast<LDVImpl*>(pImpl)->runOnMachineFunction(mf); 6882754fe60SDimitry Andric } 6892754fe60SDimitry Andric 6902754fe60SDimitry Andric void LiveDebugVariables::releaseMemory() { 6912754fe60SDimitry Andric if (pImpl) 6922754fe60SDimitry Andric static_cast<LDVImpl*>(pImpl)->clear(); 6932754fe60SDimitry Andric } 6942754fe60SDimitry Andric 6952754fe60SDimitry Andric LiveDebugVariables::~LiveDebugVariables() { 6962754fe60SDimitry Andric if (pImpl) 6972754fe60SDimitry Andric delete static_cast<LDVImpl*>(pImpl); 6982754fe60SDimitry Andric } 6992754fe60SDimitry Andric 7002754fe60SDimitry Andric void UserValue:: 7012754fe60SDimitry Andric renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx, 7022754fe60SDimitry Andric const TargetRegisterInfo *TRI) { 7032754fe60SDimitry Andric for (unsigned i = locations.size(); i; --i) { 7042754fe60SDimitry Andric unsigned LocNo = i - 1; 7052754fe60SDimitry Andric MachineOperand &Loc = locations[LocNo]; 7062754fe60SDimitry Andric if (!Loc.isReg() || Loc.getReg() != OldReg) 7072754fe60SDimitry Andric continue; 7082754fe60SDimitry Andric if (TargetRegisterInfo::isPhysicalRegister(NewReg)) 7092754fe60SDimitry Andric Loc.substPhysReg(NewReg, *TRI); 7102754fe60SDimitry Andric else 7112754fe60SDimitry Andric Loc.substVirtReg(NewReg, SubIdx, *TRI); 7122754fe60SDimitry Andric coalesceLocation(LocNo); 7132754fe60SDimitry Andric } 7142754fe60SDimitry Andric } 7152754fe60SDimitry Andric 7162754fe60SDimitry Andric void LDVImpl:: 7172754fe60SDimitry Andric renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx) { 7182754fe60SDimitry Andric UserValue *UV = lookupVirtReg(OldReg); 7192754fe60SDimitry Andric if (!UV) 7202754fe60SDimitry Andric return; 7212754fe60SDimitry Andric 7222754fe60SDimitry Andric if (TargetRegisterInfo::isVirtualRegister(NewReg)) 7232754fe60SDimitry Andric mapVirtReg(NewReg, UV); 7242754fe60SDimitry Andric virtRegToEqClass.erase(OldReg); 7252754fe60SDimitry Andric 7262754fe60SDimitry Andric do { 7272754fe60SDimitry Andric UV->renameRegister(OldReg, NewReg, SubIdx, TRI); 7282754fe60SDimitry Andric UV = UV->getNext(); 7292754fe60SDimitry Andric } while (UV); 7302754fe60SDimitry Andric } 7312754fe60SDimitry Andric 7322754fe60SDimitry Andric void LiveDebugVariables:: 7332754fe60SDimitry Andric renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx) { 7342754fe60SDimitry Andric if (pImpl) 7352754fe60SDimitry Andric static_cast<LDVImpl*>(pImpl)->renameRegister(OldReg, NewReg, SubIdx); 7362754fe60SDimitry Andric } 7372754fe60SDimitry Andric 738bd5abe19SDimitry Andric //===----------------------------------------------------------------------===// 739bd5abe19SDimitry Andric // Live Range Splitting 740bd5abe19SDimitry Andric //===----------------------------------------------------------------------===// 741bd5abe19SDimitry Andric 742bd5abe19SDimitry Andric bool 743bd5abe19SDimitry Andric UserValue::splitLocation(unsigned OldLocNo, ArrayRef<LiveInterval*> NewRegs) { 744bd5abe19SDimitry Andric DEBUG({ 745bd5abe19SDimitry Andric dbgs() << "Splitting Loc" << OldLocNo << '\t'; 746bd5abe19SDimitry Andric print(dbgs(), 0); 747bd5abe19SDimitry Andric }); 748bd5abe19SDimitry Andric bool DidChange = false; 749bd5abe19SDimitry Andric LocMap::iterator LocMapI; 750bd5abe19SDimitry Andric LocMapI.setMap(locInts); 751bd5abe19SDimitry Andric for (unsigned i = 0; i != NewRegs.size(); ++i) { 752bd5abe19SDimitry Andric LiveInterval *LI = NewRegs[i]; 753bd5abe19SDimitry Andric if (LI->empty()) 754bd5abe19SDimitry Andric continue; 755bd5abe19SDimitry Andric 756bd5abe19SDimitry Andric // Don't allocate the new LocNo until it is needed. 757bd5abe19SDimitry Andric unsigned NewLocNo = ~0u; 758bd5abe19SDimitry Andric 759bd5abe19SDimitry Andric // Iterate over the overlaps between locInts and LI. 760bd5abe19SDimitry Andric LocMapI.find(LI->beginIndex()); 761bd5abe19SDimitry Andric if (!LocMapI.valid()) 762bd5abe19SDimitry Andric continue; 763bd5abe19SDimitry Andric LiveInterval::iterator LII = LI->advanceTo(LI->begin(), LocMapI.start()); 764bd5abe19SDimitry Andric LiveInterval::iterator LIE = LI->end(); 765bd5abe19SDimitry Andric while (LocMapI.valid() && LII != LIE) { 766bd5abe19SDimitry Andric // At this point, we know that LocMapI.stop() > LII->start. 767bd5abe19SDimitry Andric LII = LI->advanceTo(LII, LocMapI.start()); 768bd5abe19SDimitry Andric if (LII == LIE) 769bd5abe19SDimitry Andric break; 770bd5abe19SDimitry Andric 771bd5abe19SDimitry Andric // Now LII->end > LocMapI.start(). Do we have an overlap? 772bd5abe19SDimitry Andric if (LocMapI.value() == OldLocNo && LII->start < LocMapI.stop()) { 773bd5abe19SDimitry Andric // Overlapping correct location. Allocate NewLocNo now. 774bd5abe19SDimitry Andric if (NewLocNo == ~0u) { 775bd5abe19SDimitry Andric MachineOperand MO = MachineOperand::CreateReg(LI->reg, false); 776bd5abe19SDimitry Andric MO.setSubReg(locations[OldLocNo].getSubReg()); 777bd5abe19SDimitry Andric NewLocNo = getLocationNo(MO); 778bd5abe19SDimitry Andric DidChange = true; 779bd5abe19SDimitry Andric } 780bd5abe19SDimitry Andric 781bd5abe19SDimitry Andric SlotIndex LStart = LocMapI.start(); 782bd5abe19SDimitry Andric SlotIndex LStop = LocMapI.stop(); 783bd5abe19SDimitry Andric 784bd5abe19SDimitry Andric // Trim LocMapI down to the LII overlap. 785bd5abe19SDimitry Andric if (LStart < LII->start) 786bd5abe19SDimitry Andric LocMapI.setStartUnchecked(LII->start); 787bd5abe19SDimitry Andric if (LStop > LII->end) 788bd5abe19SDimitry Andric LocMapI.setStopUnchecked(LII->end); 789bd5abe19SDimitry Andric 790bd5abe19SDimitry Andric // Change the value in the overlap. This may trigger coalescing. 791bd5abe19SDimitry Andric LocMapI.setValue(NewLocNo); 792bd5abe19SDimitry Andric 793bd5abe19SDimitry Andric // Re-insert any removed OldLocNo ranges. 794bd5abe19SDimitry Andric if (LStart < LocMapI.start()) { 795bd5abe19SDimitry Andric LocMapI.insert(LStart, LocMapI.start(), OldLocNo); 796bd5abe19SDimitry Andric ++LocMapI; 797bd5abe19SDimitry Andric assert(LocMapI.valid() && "Unexpected coalescing"); 798bd5abe19SDimitry Andric } 799bd5abe19SDimitry Andric if (LStop > LocMapI.stop()) { 800bd5abe19SDimitry Andric ++LocMapI; 801bd5abe19SDimitry Andric LocMapI.insert(LII->end, LStop, OldLocNo); 802bd5abe19SDimitry Andric --LocMapI; 803bd5abe19SDimitry Andric } 804bd5abe19SDimitry Andric } 805bd5abe19SDimitry Andric 806bd5abe19SDimitry Andric // Advance to the next overlap. 807bd5abe19SDimitry Andric if (LII->end < LocMapI.stop()) { 808bd5abe19SDimitry Andric if (++LII == LIE) 809bd5abe19SDimitry Andric break; 810bd5abe19SDimitry Andric LocMapI.advanceTo(LII->start); 811bd5abe19SDimitry Andric } else { 812bd5abe19SDimitry Andric ++LocMapI; 813bd5abe19SDimitry Andric if (!LocMapI.valid()) 814bd5abe19SDimitry Andric break; 815bd5abe19SDimitry Andric LII = LI->advanceTo(LII, LocMapI.start()); 816bd5abe19SDimitry Andric } 817bd5abe19SDimitry Andric } 818bd5abe19SDimitry Andric } 819bd5abe19SDimitry Andric 820bd5abe19SDimitry Andric // Finally, remove any remaining OldLocNo intervals and OldLocNo itself. 821bd5abe19SDimitry Andric locations.erase(locations.begin() + OldLocNo); 822bd5abe19SDimitry Andric LocMapI.goToBegin(); 823bd5abe19SDimitry Andric while (LocMapI.valid()) { 824bd5abe19SDimitry Andric unsigned v = LocMapI.value(); 825bd5abe19SDimitry Andric if (v == OldLocNo) { 826bd5abe19SDimitry Andric DEBUG(dbgs() << "Erasing [" << LocMapI.start() << ';' 827bd5abe19SDimitry Andric << LocMapI.stop() << ")\n"); 828bd5abe19SDimitry Andric LocMapI.erase(); 829bd5abe19SDimitry Andric } else { 830bd5abe19SDimitry Andric if (v > OldLocNo) 831bd5abe19SDimitry Andric LocMapI.setValueUnchecked(v-1); 832bd5abe19SDimitry Andric ++LocMapI; 833bd5abe19SDimitry Andric } 834bd5abe19SDimitry Andric } 835bd5abe19SDimitry Andric 836bd5abe19SDimitry Andric DEBUG({dbgs() << "Split result: \t"; print(dbgs(), 0);}); 837bd5abe19SDimitry Andric return DidChange; 838bd5abe19SDimitry Andric } 839bd5abe19SDimitry Andric 840bd5abe19SDimitry Andric bool 841bd5abe19SDimitry Andric UserValue::splitRegister(unsigned OldReg, ArrayRef<LiveInterval*> NewRegs) { 842bd5abe19SDimitry Andric bool DidChange = false; 843bd5abe19SDimitry Andric // Split locations referring to OldReg. Iterate backwards so splitLocation can 844dff0c46cSDimitry Andric // safely erase unused locations. 845bd5abe19SDimitry Andric for (unsigned i = locations.size(); i ; --i) { 846bd5abe19SDimitry Andric unsigned LocNo = i-1; 847bd5abe19SDimitry Andric const MachineOperand *Loc = &locations[LocNo]; 848bd5abe19SDimitry Andric if (!Loc->isReg() || Loc->getReg() != OldReg) 849bd5abe19SDimitry Andric continue; 850bd5abe19SDimitry Andric DidChange |= splitLocation(LocNo, NewRegs); 851bd5abe19SDimitry Andric } 852bd5abe19SDimitry Andric return DidChange; 853bd5abe19SDimitry Andric } 854bd5abe19SDimitry Andric 855bd5abe19SDimitry Andric void LDVImpl::splitRegister(unsigned OldReg, ArrayRef<LiveInterval*> NewRegs) { 856bd5abe19SDimitry Andric bool DidChange = false; 857bd5abe19SDimitry Andric for (UserValue *UV = lookupVirtReg(OldReg); UV; UV = UV->getNext()) 858bd5abe19SDimitry Andric DidChange |= UV->splitRegister(OldReg, NewRegs); 859bd5abe19SDimitry Andric 860bd5abe19SDimitry Andric if (!DidChange) 861bd5abe19SDimitry Andric return; 862bd5abe19SDimitry Andric 863bd5abe19SDimitry Andric // Map all of the new virtual registers. 864bd5abe19SDimitry Andric UserValue *UV = lookupVirtReg(OldReg); 865bd5abe19SDimitry Andric for (unsigned i = 0; i != NewRegs.size(); ++i) 866bd5abe19SDimitry Andric mapVirtReg(NewRegs[i]->reg, UV); 867bd5abe19SDimitry Andric } 868bd5abe19SDimitry Andric 869bd5abe19SDimitry Andric void LiveDebugVariables:: 870bd5abe19SDimitry Andric splitRegister(unsigned OldReg, ArrayRef<LiveInterval*> NewRegs) { 871bd5abe19SDimitry Andric if (pImpl) 872bd5abe19SDimitry Andric static_cast<LDVImpl*>(pImpl)->splitRegister(OldReg, NewRegs); 873bd5abe19SDimitry Andric } 874bd5abe19SDimitry Andric 8752754fe60SDimitry Andric void 8762754fe60SDimitry Andric UserValue::rewriteLocations(VirtRegMap &VRM, const TargetRegisterInfo &TRI) { 8772754fe60SDimitry Andric // Iterate over locations in reverse makes it easier to handle coalescing. 8782754fe60SDimitry Andric for (unsigned i = locations.size(); i ; --i) { 8792754fe60SDimitry Andric unsigned LocNo = i-1; 8802754fe60SDimitry Andric MachineOperand &Loc = locations[LocNo]; 8812754fe60SDimitry Andric // Only virtual registers are rewritten. 8822754fe60SDimitry Andric if (!Loc.isReg() || !Loc.getReg() || 8832754fe60SDimitry Andric !TargetRegisterInfo::isVirtualRegister(Loc.getReg())) 8842754fe60SDimitry Andric continue; 8852754fe60SDimitry Andric unsigned VirtReg = Loc.getReg(); 8862754fe60SDimitry Andric if (VRM.isAssignedReg(VirtReg) && 8872754fe60SDimitry Andric TargetRegisterInfo::isPhysicalRegister(VRM.getPhys(VirtReg))) { 888bd5abe19SDimitry Andric // This can create a %noreg operand in rare cases when the sub-register 889bd5abe19SDimitry Andric // index is no longer available. That means the user value is in a 890bd5abe19SDimitry Andric // non-existent sub-register, and %noreg is exactly what we want. 8912754fe60SDimitry Andric Loc.substPhysReg(VRM.getPhys(VirtReg), TRI); 892dff0c46cSDimitry Andric } else if (VRM.getStackSlot(VirtReg) != VirtRegMap::NO_STACK_SLOT) { 8932754fe60SDimitry Andric // FIXME: Translate SubIdx to a stackslot offset. 8942754fe60SDimitry Andric Loc = MachineOperand::CreateFI(VRM.getStackSlot(VirtReg)); 8952754fe60SDimitry Andric } else { 8962754fe60SDimitry Andric Loc.setReg(0); 8972754fe60SDimitry Andric Loc.setSubReg(0); 8982754fe60SDimitry Andric } 8992754fe60SDimitry Andric coalesceLocation(LocNo); 9002754fe60SDimitry Andric } 9012754fe60SDimitry Andric } 9022754fe60SDimitry Andric 9032754fe60SDimitry Andric /// findInsertLocation - Find an iterator for inserting a DBG_VALUE 9042754fe60SDimitry Andric /// instruction. 9052754fe60SDimitry Andric static MachineBasicBlock::iterator 9062754fe60SDimitry Andric findInsertLocation(MachineBasicBlock *MBB, SlotIndex Idx, 9072754fe60SDimitry Andric LiveIntervals &LIS) { 9082754fe60SDimitry Andric SlotIndex Start = LIS.getMBBStartIdx(MBB); 9092754fe60SDimitry Andric Idx = Idx.getBaseIndex(); 9102754fe60SDimitry Andric 9112754fe60SDimitry Andric // Try to find an insert location by going backwards from Idx. 9122754fe60SDimitry Andric MachineInstr *MI; 9132754fe60SDimitry Andric while (!(MI = LIS.getInstructionFromIndex(Idx))) { 9142754fe60SDimitry Andric // We've reached the beginning of MBB. 9152754fe60SDimitry Andric if (Idx == Start) { 9162754fe60SDimitry Andric MachineBasicBlock::iterator I = MBB->SkipPHIsAndLabels(MBB->begin()); 9172754fe60SDimitry Andric return I; 9182754fe60SDimitry Andric } 9192754fe60SDimitry Andric Idx = Idx.getPrevIndex(); 9202754fe60SDimitry Andric } 9212754fe60SDimitry Andric 9222754fe60SDimitry Andric // Don't insert anything after the first terminator, though. 923dff0c46cSDimitry Andric return MI->isTerminator() ? MBB->getFirstTerminator() : 9242754fe60SDimitry Andric llvm::next(MachineBasicBlock::iterator(MI)); 9252754fe60SDimitry Andric } 9262754fe60SDimitry Andric 9272754fe60SDimitry Andric DebugLoc UserValue::findDebugLoc() { 9282754fe60SDimitry Andric DebugLoc D = dl; 9292754fe60SDimitry Andric dl = DebugLoc(); 9302754fe60SDimitry Andric return D; 9312754fe60SDimitry Andric } 9322754fe60SDimitry Andric void UserValue::insertDebugValue(MachineBasicBlock *MBB, SlotIndex Idx, 9332754fe60SDimitry Andric unsigned LocNo, 9342754fe60SDimitry Andric LiveIntervals &LIS, 9352754fe60SDimitry Andric const TargetInstrInfo &TII) { 9362754fe60SDimitry Andric MachineBasicBlock::iterator I = findInsertLocation(MBB, Idx, LIS); 9372754fe60SDimitry Andric MachineOperand &Loc = locations[LocNo]; 9386122f3e6SDimitry Andric ++NumInsertedDebugValues; 9392754fe60SDimitry Andric 9402754fe60SDimitry Andric // Frame index locations may require a target callback. 9412754fe60SDimitry Andric if (Loc.isFI()) { 9422754fe60SDimitry Andric MachineInstr *MI = TII.emitFrameIndexDebugValue(*MBB->getParent(), 9432754fe60SDimitry Andric Loc.getIndex(), offset, variable, 9442754fe60SDimitry Andric findDebugLoc()); 9452754fe60SDimitry Andric if (MI) { 9462754fe60SDimitry Andric MBB->insert(I, MI); 9472754fe60SDimitry Andric return; 9482754fe60SDimitry Andric } 9492754fe60SDimitry Andric } 9502754fe60SDimitry Andric // This is not a frame index, or the target is happy with a standard FI. 9512754fe60SDimitry Andric BuildMI(*MBB, I, findDebugLoc(), TII.get(TargetOpcode::DBG_VALUE)) 9522754fe60SDimitry Andric .addOperand(Loc).addImm(offset).addMetadata(variable); 9532754fe60SDimitry Andric } 9542754fe60SDimitry Andric 9552754fe60SDimitry Andric void UserValue::emitDebugValues(VirtRegMap *VRM, LiveIntervals &LIS, 9562754fe60SDimitry Andric const TargetInstrInfo &TII) { 9572754fe60SDimitry Andric MachineFunction::iterator MFEnd = VRM->getMachineFunction().end(); 9582754fe60SDimitry Andric 9592754fe60SDimitry Andric for (LocMap::const_iterator I = locInts.begin(); I.valid();) { 9602754fe60SDimitry Andric SlotIndex Start = I.start(); 9612754fe60SDimitry Andric SlotIndex Stop = I.stop(); 9622754fe60SDimitry Andric unsigned LocNo = I.value(); 9632754fe60SDimitry Andric DEBUG(dbgs() << "\t[" << Start << ';' << Stop << "):" << LocNo); 9642754fe60SDimitry Andric MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start); 9652754fe60SDimitry Andric SlotIndex MBBEnd = LIS.getMBBEndIdx(MBB); 9662754fe60SDimitry Andric 9672754fe60SDimitry Andric DEBUG(dbgs() << " BB#" << MBB->getNumber() << '-' << MBBEnd); 9682754fe60SDimitry Andric insertDebugValue(MBB, Start, LocNo, LIS, TII); 9692754fe60SDimitry Andric // This interval may span multiple basic blocks. 9702754fe60SDimitry Andric // Insert a DBG_VALUE into each one. 9712754fe60SDimitry Andric while(Stop > MBBEnd) { 9722754fe60SDimitry Andric // Move to the next block. 9732754fe60SDimitry Andric Start = MBBEnd; 9742754fe60SDimitry Andric if (++MBB == MFEnd) 9752754fe60SDimitry Andric break; 9762754fe60SDimitry Andric MBBEnd = LIS.getMBBEndIdx(MBB); 9772754fe60SDimitry Andric DEBUG(dbgs() << " BB#" << MBB->getNumber() << '-' << MBBEnd); 9782754fe60SDimitry Andric insertDebugValue(MBB, Start, LocNo, LIS, TII); 9792754fe60SDimitry Andric } 9802754fe60SDimitry Andric DEBUG(dbgs() << '\n'); 9812754fe60SDimitry Andric if (MBB == MFEnd) 9822754fe60SDimitry Andric break; 9832754fe60SDimitry Andric 9842754fe60SDimitry Andric ++I; 9852754fe60SDimitry Andric } 9862754fe60SDimitry Andric } 9872754fe60SDimitry Andric 9882754fe60SDimitry Andric void LDVImpl::emitDebugValues(VirtRegMap *VRM) { 9892754fe60SDimitry Andric DEBUG(dbgs() << "********** EMITTING LIVE DEBUG VARIABLES **********\n"); 9902754fe60SDimitry Andric const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); 9912754fe60SDimitry Andric for (unsigned i = 0, e = userValues.size(); i != e; ++i) { 992bd5abe19SDimitry Andric DEBUG(userValues[i]->print(dbgs(), &MF->getTarget())); 9932754fe60SDimitry Andric userValues[i]->rewriteLocations(*VRM, *TRI); 9942754fe60SDimitry Andric userValues[i]->emitDebugValues(VRM, *LIS, *TII); 9952754fe60SDimitry Andric } 9962754fe60SDimitry Andric } 9972754fe60SDimitry Andric 9982754fe60SDimitry Andric void LiveDebugVariables::emitDebugValues(VirtRegMap *VRM) { 9992754fe60SDimitry Andric if (pImpl) 10002754fe60SDimitry Andric static_cast<LDVImpl*>(pImpl)->emitDebugValues(VRM); 10012754fe60SDimitry Andric } 10022754fe60SDimitry Andric 10032754fe60SDimitry Andric 10042754fe60SDimitry Andric #ifndef NDEBUG 10052754fe60SDimitry Andric void LiveDebugVariables::dump() { 10062754fe60SDimitry Andric if (pImpl) 10072754fe60SDimitry Andric static_cast<LDVImpl*>(pImpl)->print(dbgs()); 10082754fe60SDimitry Andric } 10092754fe60SDimitry Andric #endif 10102754fe60SDimitry Andric 1011