X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FCodeGen%2FLiveDebugVariables.h;h=694aa1770c9cf64c50e1e34cd30462a26637cb82;hb=a3e49ea99afc3c9f43953bdc3b3bd77970ed510d;hp=eba4fbede2777bd2965c61d8856ece56dff58615;hpb=bb7b23f5b79a7ca2aa62faa1a6078428af597234;p=oota-llvm.git diff --git a/lib/CodeGen/LiveDebugVariables.h b/lib/CodeGen/LiveDebugVariables.h index eba4fbede27..694aa1770c9 100644 --- a/lib/CodeGen/LiveDebugVariables.h +++ b/lib/CodeGen/LiveDebugVariables.h @@ -18,19 +18,28 @@ // //===----------------------------------------------------------------------===// -#ifndef LLVM_CODEGEN_LIVEDEBUGVARIABLES_H -#define LLVM_CODEGEN_LIVEDEBUGVARIABLES_H +#ifndef LLVM_LIB_CODEGEN_LIVEDEBUGVARIABLES_H +#define LLVM_LIB_CODEGEN_LIVEDEBUGVARIABLES_H +#include "llvm/ADT/ArrayRef.h" #include "llvm/CodeGen/MachineFunctionPass.h" +#include "llvm/IR/DebugInfo.h" namespace llvm { -class LiveDebugVariables : public MachineFunctionPass { +class LiveInterval; +class LiveIntervals; +class VirtRegMap; + +class LLVM_LIBRARY_VISIBILITY LiveDebugVariables : public MachineFunctionPass { void *pImpl; + DenseMap FunctionDIs; + public: static char ID; // Pass identification, replacement for typeid LiveDebugVariables(); + ~LiveDebugVariables() override; /// renameRegister - Move any user variables in OldReg to NewReg:SubIdx. /// @param OldReg Old virtual register that is going away. @@ -39,19 +48,29 @@ public: /// register. void renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx); + /// splitRegister - Move any user variables in OldReg to the live ranges in + /// NewRegs where they are live. Mark the values as unavailable where no new + /// register is live. + void splitRegister(unsigned OldReg, ArrayRef NewRegs, + LiveIntervals &LIS); + /// emitDebugValues - Emit new DBG_VALUE instructions reflecting the changes /// that happened during register allocation. - void emitDebugValues(); + /// @param VRM Rename virtual registers according to map. + void emitDebugValues(VirtRegMap *VRM); -private: + /// dump - Print data structures to dbgs(). + void dump(); - /// runOnMachineFunction - Analyze and remove DBG_VALUE instructions. - virtual bool runOnMachineFunction(MachineFunction &); +private: - virtual void getAnalysisUsage(AnalysisUsage &) const; + bool runOnMachineFunction(MachineFunction &) override; + void releaseMemory() override; + void getAnalysisUsage(AnalysisUsage &) const override; + bool doInitialization(Module &) override; }; } // namespace llvm -#endif // LLVM_CODEGEN_LIVEDEBUGVARIABLES_H +#endif