blob: 3ce3c398bd4b4c50d2f39f20e51873338b552939 [file] [log] [blame]
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +00001//===- LiveDebugVariables.h - Tracking debug info variables ----*- c++ -*--===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file provides the interface to the LiveDebugVariables analysis.
11//
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
14// allocation.
15//
16// After register allocation new DBG_VALUE instructions are emitted to reflect
17// the new locations of user variables.
18//
19//===----------------------------------------------------------------------===//
20
21#ifndef LLVM_CODEGEN_LIVEDEBUGVARIABLES_H
22#define LLVM_CODEGEN_LIVEDEBUGVARIABLES_H
23
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +000024#include "llvm/ADT/ArrayRef.h"
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000025#include "llvm/CodeGen/MachineFunctionPass.h"
26
27namespace llvm {
28
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +000029class LiveInterval;
Jakob Stoklund Olesen42acf062010-12-03 21:47:10 +000030class VirtRegMap;
31
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000032class LiveDebugVariables : public MachineFunctionPass {
33 void *pImpl;
34public:
35 static char ID; // Pass identification, replacement for typeid
36
37 LiveDebugVariables();
Jakob Stoklund Olesen06135162010-12-02 00:37:37 +000038 ~LiveDebugVariables();
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000039
40 /// renameRegister - Move any user variables in OldReg to NewReg:SubIdx.
41 /// @param OldReg Old virtual register that is going away.
42 /// @param NewReg New register holding the user variables.
43 /// @param SubIdx If NewReg is a virtual register, SubIdx may indicate a sub-
44 /// register.
45 void renameRegister(unsigned OldReg, unsigned NewReg, unsigned SubIdx);
46
Jakob Stoklund Olesenf42b6612011-05-06 18:00:02 +000047 /// splitRegister - Move any user variables in OldReg to the live ranges in
48 /// NewRegs where they are live. Mark the values as unavailable where no new
49 /// register is live.
50 void splitRegister(unsigned OldReg, ArrayRef<LiveInterval*> NewRegs);
51
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000052 /// emitDebugValues - Emit new DBG_VALUE instructions reflecting the changes
53 /// that happened during register allocation.
Jakob Stoklund Olesen42acf062010-12-03 21:47:10 +000054 /// @param VRM Rename virtual registers according to map.
55 void emitDebugValues(VirtRegMap *VRM);
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000056
Jakob Stoklund Olesen30e21282010-12-02 18:15:44 +000057 /// dump - Print data structures to dbgs().
58 void dump();
59
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000060private:
61
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000062 virtual bool runOnMachineFunction(MachineFunction &);
Jakob Stoklund Olesen06135162010-12-02 00:37:37 +000063 virtual void releaseMemory();
Jakob Stoklund Olesenbb7b23f2010-11-30 02:17:10 +000064 virtual void getAnalysisUsage(AnalysisUsage &) const;
65
66};
67
68} // namespace llvm
69
70#endif // LLVM_CODEGEN_LIVEDEBUGVARIABLES_H