1 //===- LiveDebugVariables.h - Tracking debug info variables ----*- c++ -*--===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file provides the interface to the LiveDebugVariables analysis.
12 // The analysis removes DBG_VALUE instructions for virtual registers and tracks
13 // live user variables in a data structure that can be updated during register
16 // After register allocation new DBG_VALUE instructions are emitted to reflect
17 // the new locations of user variables.
19 //===----------------------------------------------------------------------===//
21 #ifndef LLVM_CODEGEN_LIVEDEBUGVARIABLES_H
22 #define LLVM_CODEGEN_LIVEDEBUGVARIABLES_H
24 #include "llvm/CodeGen/MachineFunctionPass.h"
30 class LiveDebugVariables
: public MachineFunctionPass
{
33 static char ID
; // Pass identification, replacement for typeid
36 ~LiveDebugVariables();
38 /// renameRegister - Move any user variables in OldReg to NewReg:SubIdx.
39 /// @param OldReg Old virtual register that is going away.
40 /// @param NewReg New register holding the user variables.
41 /// @param SubIdx If NewReg is a virtual register, SubIdx may indicate a sub-
43 void renameRegister(unsigned OldReg
, unsigned NewReg
, unsigned SubIdx
);
45 /// emitDebugValues - Emit new DBG_VALUE instructions reflecting the changes
46 /// that happened during register allocation.
47 /// @param VRM Rename virtual registers according to map.
48 void emitDebugValues(VirtRegMap
*VRM
);
50 /// dump - Print data structures to dbgs().
55 virtual bool runOnMachineFunction(MachineFunction
&);
56 virtual void releaseMemory();
57 virtual void getAnalysisUsage(AnalysisUsage
&) const;
63 #endif // LLVM_CODEGEN_LIVEDEBUGVARIABLES_H