LLVM  8.0.1
DebugHandlerBase.h
Go to the documentation of this file.
1 //===-- llvm/CodeGen/DebugHandlerBase.h -----------------------*- 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 // Common functionality for different debug information format backends.
11 // LLVM currently supports DWARF and CodeView.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_CODEGEN_DEBUGHANDLERBASE_H
16 #define LLVM_CODEGEN_DEBUGHANDLERBASE_H
17 
18 #include "llvm/ADT/Optional.h"
24 
25 namespace llvm {
26 
27 class AsmPrinter;
28 class MachineInstr;
29 class MachineModuleInfo;
30 
31 /// Represents the location at which a variable is stored.
33  /// Base register.
34  unsigned Register;
35 
36  /// Chain of offsetted loads necessary to load the value if it lives in
37  /// memory. Every load except for the last is pointer-sized.
39 
40  /// Present if the location is part of a larger variable.
42 
43  /// Extract a VariableLocation from a MachineInstr.
44  /// This will only work if Instruction is a debug value instruction
45  /// and the associated DIExpression is in one of the supported forms.
46  /// If these requirements are not met, the returned Optional will not
47  /// have a value.
50 };
51 
52 /// Base class for debug information backends. Common functionality related to
53 /// tracking which variables and scopes are alive at a given PC live here.
55 protected:
57 
58  /// Target of debug info emission.
60 
61  /// Collected machine module information.
63 
64  /// Previous instruction's location information. This is used to
65  /// determine label location to indicate scope boundaries in debug info.
66  /// We track the previous instruction's source location (if not line 0),
67  /// whether it was a label, and its parent BB.
69  MCSymbol *PrevLabel = nullptr;
70  const MachineBasicBlock *PrevInstBB = nullptr;
71 
72  /// This location indicates end of function prologue and beginning of
73  /// function body.
75 
76  /// If nonnull, stores the current machine instruction we're processing.
77  const MachineInstr *CurMI = nullptr;
78 
80 
81  /// History of DBG_VALUE and clobber instructions for each user
82  /// variable. Variables are listed in order of appearance.
84 
85  /// Mapping of inlined labels and DBG_LABEL machine instruction.
87 
88  /// Maps instruction with label emitted before instruction.
89  /// FIXME: Make this private from DwarfDebug, we have the necessary accessors
90  /// for it.
92 
93  /// Maps instruction with label emitted after instruction.
95 
96  /// Indentify instructions that are marking the beginning of or
97  /// ending of a scope.
98  void identifyScopeMarkers();
99 
100  /// Ensure that a label will be emitted before MI.
102  LabelsBeforeInsn.insert(std::make_pair(MI, nullptr));
103  }
104 
105  /// Ensure that a label will be emitted after MI.
107  LabelsAfterInsn.insert(std::make_pair(MI, nullptr));
108  }
109 
110  virtual void beginFunctionImpl(const MachineFunction *MF) = 0;
111  virtual void endFunctionImpl(const MachineFunction *MF) = 0;
112  virtual void skippedNonDebugFunction() {}
113 
114  // AsmPrinterHandler overrides.
115 public:
116  void beginInstruction(const MachineInstr *MI) override;
117  void endInstruction() override;
118 
119  void beginFunction(const MachineFunction *MF) override;
120  void endFunction(const MachineFunction *MF) override;
121 
122  /// Return Label preceding the instruction.
123  MCSymbol *getLabelBeforeInsn(const MachineInstr *MI);
124 
125  /// Return Label immediately following the instruction.
126  MCSymbol *getLabelAfterInsn(const MachineInstr *MI);
127 
128  /// Return the function-local offset of an instruction. A label for the
129  /// instruction \p MI should exist (\ref getLabelAfterInsn).
130  const MCExpr *getFunctionLocalOffsetAfterInsn(const MachineInstr *MI);
131 
132  /// If this type is derived from a base type then return base type size.
133  static uint64_t getBaseTypeSize(const DITypeRef TyRef);
134 };
135 
136 }
137 
138 #endif
For each inlined instance of a source-level label, keep the corresponding DBG_LABEL instruction...
This class represents lattice values for constants.
Definition: AllocatorList.h:24
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:42
Collects and handles AsmPrinter objects required to build debug or EH information.
A debug info location.
Definition: DebugLoc.h:34
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition: DenseMap.h:221
DebugLoc PrevInstLoc
Previous instruction&#39;s location information.
DbgLabelInstrMap DbgLabels
Mapping of inlined labels and DBG_LABEL machine instruction.
DbgValueHistoryMap DbgValues
History of DBG_VALUE and clobber instructions for each user variable.
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
Holds a subclass of DINode.
DenseMap< const MachineInstr *, MCSymbol * > LabelsAfterInsn
Maps instruction with label emitted after instruction.
void requestLabelBeforeInsn(const MachineInstr *MI)
Ensure that a label will be emitted before MI.
AsmPrinter * Asm
Target of debug info emission.
llvm::Optional< llvm::DIExpression::FragmentInfo > FragmentInfo
Present if the location is part of a larger variable.
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:79
DenseMap< const MachineInstr *, MCSymbol * > LabelsBeforeInsn
Maps instruction with label emitted before instruction.
virtual void skippedNonDebugFunction()
Represents the location at which a variable is stored.
static Optional< DbgVariableLocation > extractFromMachineInstruction(const MachineInstr &Instruction)
Extract a VariableLocation from a MachineInstr.
DebugLoc PrologEndLoc
This location indicates end of function prologue and beginning of function body.
void requestLabelAfterInsn(const MachineInstr *MI)
Ensure that a label will be emitted after MI.
Representation of each machine instruction.
Definition: MachineInstr.h:64
LexicalScopes - This class provides interface to collect and use lexical scoping information from mac...
Base class for debug information backends.
SmallVector< int64_t, 1 > LoadChain
Chain of offsetted loads necessary to load the value if it lives in memory.
MachineModuleInfo * MMI
Collected machine module information.
IRTranslator LLVM IR MI
unsigned Register
Base register.
This class contains meta information specific to a module.