Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/DwarfDebug.cpp - Dwarf Debug Framework ---------------===// |
| 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 contains support for writing dwarf debug info into asm files. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6cde3e6 | 2010-03-09 00:39:24 +0000 | [diff] [blame] | 13 | |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 14 | #define DEBUG_TYPE "dwarfdebug" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 15 | #include "DwarfDebug.h" |
Chris Lattner | 74e41f9 | 2010-04-05 05:24:55 +0000 | [diff] [blame] | 16 | #include "DIE.h" |
Bill Wendling | 57fbba4 | 2010-04-05 22:59:21 +0000 | [diff] [blame] | 17 | #include "llvm/Constants.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 18 | #include "llvm/Module.h" |
Devang Patel | e449d1f | 2011-01-20 00:02:16 +0000 | [diff] [blame] | 19 | #include "llvm/Instructions.h" |
David Greene | b2c66fc | 2009-08-19 21:52:55 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MachineFunction.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 22 | #include "llvm/MC/MCAsmInfo.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 23 | #include "llvm/MC/MCSection.h" |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 24 | #include "llvm/MC/MCStreamer.h" |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCSymbol.h" |
Chris Lattner | 45111d1 | 2010-01-16 21:57:06 +0000 | [diff] [blame] | 26 | #include "llvm/Target/Mangler.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetData.h" |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetFrameLowering.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetLoweringObjectFile.h" |
Chris Lattner | 9d1c1ad | 2010-04-04 18:06:11 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetRegisterInfo.h" |
Devang Patel | 2a4a3b7 | 2010-04-19 19:14:02 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | 74e41f9 | 2010-04-05 05:24:55 +0000 | [diff] [blame] | 33 | #include "llvm/Analysis/DebugInfo.h" |
Devang Patel | 9a31f0f | 2010-10-25 20:45:32 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/Statistic.h" |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 35 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 36 | #include "llvm/ADT/StringExtras.h" |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 37 | #include "llvm/Support/CommandLine.h" |
Daniel Dunbar | 6e4bdfc | 2009-10-13 06:47:08 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Debug.h" |
| 39 | #include "llvm/Support/ErrorHandling.h" |
Devang Patel | 3139fcf | 2010-01-26 21:39:14 +0000 | [diff] [blame] | 40 | #include "llvm/Support/ValueHandle.h" |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 41 | #include "llvm/Support/FormattedStream.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 42 | #include "llvm/Support/Timer.h" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 43 | #include "llvm/Support/Path.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 44 | using namespace llvm; |
| 45 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 46 | static cl::opt<bool> PrintDbgScope("print-dbgscope", cl::Hidden, |
| 47 | cl::desc("Print DbgScope information for each machine instruction")); |
| 48 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 49 | static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print", |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 50 | cl::Hidden, |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 51 | cl::desc("Disable debug info printing")); |
| 52 | |
Dan Gohman | 281d65d | 2010-05-07 01:08:53 +0000 | [diff] [blame] | 53 | static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden, |
| 54 | cl::desc("Make an absense of debug location information explicit."), |
| 55 | cl::init(false)); |
| 56 | |
Nick Lewycky | a568d66 | 2010-10-26 00:51:57 +0000 | [diff] [blame] | 57 | #ifndef NDEBUG |
Devang Patel | 9a31f0f | 2010-10-25 20:45:32 +0000 | [diff] [blame] | 58 | STATISTIC(BlocksWithoutLineNo, "Number of blocks without any line number"); |
Nick Lewycky | a568d66 | 2010-10-26 00:51:57 +0000 | [diff] [blame] | 59 | #endif |
Devang Patel | 9a31f0f | 2010-10-25 20:45:32 +0000 | [diff] [blame] | 60 | |
Bill Wendling | 5f017e8 | 2010-04-07 09:28:04 +0000 | [diff] [blame] | 61 | namespace { |
| 62 | const char *DWARFGroupName = "DWARF Emission"; |
| 63 | const char *DbgTimerName = "DWARF Debug Writer"; |
| 64 | } // end anonymous namespace |
| 65 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 66 | //===----------------------------------------------------------------------===// |
| 67 | |
| 68 | /// Configuration values for initial hash set sizes (log2). |
| 69 | /// |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 70 | static const unsigned InitAbbreviationsSetSize = 9; // log2(512) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 71 | |
| 72 | namespace llvm { |
| 73 | |
| 74 | //===----------------------------------------------------------------------===// |
| 75 | /// CompileUnit - This dwarf writer support class manages information associate |
| 76 | /// with a source file. |
Nick Lewycky | 5f9843f | 2009-11-17 08:11:44 +0000 | [diff] [blame] | 77 | class CompileUnit { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 78 | /// ID - File identifier for source. |
| 79 | /// |
| 80 | unsigned ID; |
| 81 | |
| 82 | /// Die - Compile unit debug information entry. |
| 83 | /// |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 84 | const OwningPtr<DIE> CUDie; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 85 | |
Jeffrey Yasskin | d0f393d | 2010-03-11 18:29:55 +0000 | [diff] [blame] | 86 | /// IndexTyDie - An anonymous type for index type. Owned by CUDie. |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 87 | DIE *IndexTyDie; |
| 88 | |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 89 | /// MDNodeToDieMap - Tracks the mapping of unit level debug informaton |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 90 | /// variables to debug information entries. |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 91 | DenseMap<const MDNode *, DIE *> MDNodeToDieMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 92 | |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 93 | /// MDNodeToDIEEntryMap - Tracks the mapping of unit level debug informaton |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 94 | /// descriptors to debug information entries using a DIEEntry proxy. |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 95 | DenseMap<const MDNode *, DIEEntry *> MDNodeToDIEEntryMap; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 96 | |
| 97 | /// Globals - A map of globally visible named entities for this unit. |
| 98 | /// |
| 99 | StringMap<DIE*> Globals; |
| 100 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 101 | /// GlobalTypes - A map of globally visible types for this unit. |
| 102 | /// |
| 103 | StringMap<DIE*> GlobalTypes; |
| 104 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 105 | public: |
| 106 | CompileUnit(unsigned I, DIE *D) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 107 | : ID(I), CUDie(D), IndexTyDie(0) {} |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 108 | |
| 109 | // Accessors. |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 110 | unsigned getID() const { return ID; } |
Jeffrey Yasskin | d0f393d | 2010-03-11 18:29:55 +0000 | [diff] [blame] | 111 | DIE* getCUDie() const { return CUDie.get(); } |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 112 | const StringMap<DIE*> &getGlobals() const { return Globals; } |
| 113 | const StringMap<DIE*> &getGlobalTypes() const { return GlobalTypes; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 114 | |
| 115 | /// hasContent - Return true if this compile unit has something to write out. |
| 116 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 117 | bool hasContent() const { return !CUDie->getChildren().empty(); } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 118 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 119 | /// addGlobal - Add a new global entity to the compile unit. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 120 | /// |
Benjamin Kramer | bbb88db | 2010-03-31 20:15:45 +0000 | [diff] [blame] | 121 | void addGlobal(StringRef Name, DIE *Die) { Globals[Name] = Die; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 122 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 123 | /// addGlobalType - Add a new global type to the compile unit. |
| 124 | /// |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 125 | void addGlobalType(StringRef Name, DIE *Die) { |
| 126 | GlobalTypes[Name] = Die; |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 129 | /// getDIE - Returns the debug information entry map slot for the |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 130 | /// specified debug variable. |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 131 | DIE *getDIE(const MDNode *N) { return MDNodeToDieMap.lookup(N); } |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 132 | |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 133 | /// insertDIE - Insert DIE into the map. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 134 | void insertDIE(const MDNode *N, DIE *D) { |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 135 | MDNodeToDieMap.insert(std::make_pair(N, D)); |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 136 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 137 | |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 138 | /// getDIEEntry - Returns the debug information entry for the speciefied |
| 139 | /// debug variable. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 140 | DIEEntry *getDIEEntry(const MDNode *N) { |
| 141 | DenseMap<const MDNode *, DIEEntry *>::iterator I = |
| 142 | MDNodeToDIEEntryMap.find(N); |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 143 | if (I == MDNodeToDIEEntryMap.end()) |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 144 | return NULL; |
| 145 | return I->second; |
| 146 | } |
Devang Patel | 017d121 | 2009-11-20 21:37:22 +0000 | [diff] [blame] | 147 | |
| 148 | /// insertDIEEntry - Insert debug information entry into the map. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 149 | void insertDIEEntry(const MDNode *N, DIEEntry *E) { |
Devang Patel | 869aa46 | 2010-07-07 20:49:57 +0000 | [diff] [blame] | 150 | MDNodeToDIEEntryMap.insert(std::make_pair(N, E)); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 153 | /// addDie - Adds or interns the DIE to the compile unit. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 154 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 155 | void addDie(DIE *Buffer) { |
| 156 | this->CUDie->addChild(Buffer); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 157 | } |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 158 | |
| 159 | // getIndexTyDie - Get an anonymous type for index type. |
| 160 | DIE *getIndexTyDie() { |
| 161 | return IndexTyDie; |
| 162 | } |
| 163 | |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 164 | // setIndexTyDie - Set D as anonymous type for index which can be reused |
| 165 | // later. |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 166 | void setIndexTyDie(DIE *D) { |
| 167 | IndexTyDie = D; |
| 168 | } |
| 169 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 170 | }; |
| 171 | |
| 172 | //===----------------------------------------------------------------------===// |
| 173 | /// DbgVariable - This class is used to track local variable information. |
| 174 | /// |
Devang Patel | f76a3d6 | 2009-11-16 21:53:40 +0000 | [diff] [blame] | 175 | class DbgVariable { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 176 | DIVariable Var; // Variable Descriptor. |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 177 | DIE *TheDIE; // Variable DIE. |
| 178 | unsigned DotDebugLocOffset; // Offset in DotDebugLocEntries. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 179 | public: |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 180 | // AbsVar may be NULL. |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 181 | DbgVariable(DIVariable V) : Var(V), TheDIE(0), DotDebugLocOffset(~0U) {} |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 182 | |
| 183 | // Accessors. |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 184 | DIVariable getVariable() const { return Var; } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 185 | void setDIE(DIE *D) { TheDIE = D; } |
| 186 | DIE *getDIE() const { return TheDIE; } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 187 | void setDotDebugLocOffset(unsigned O) { DotDebugLocOffset = O; } |
| 188 | unsigned getDotDebugLocOffset() const { return DotDebugLocOffset; } |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 189 | StringRef getName() const { return Var.getName(); } |
| 190 | unsigned getTag() const { return Var.getTag(); } |
| 191 | bool variableHasComplexAddress() const { |
| 192 | assert(Var.Verify() && "Invalid complex DbgVariable!"); |
| 193 | return Var.hasComplexAddress(); |
| 194 | } |
| 195 | bool isBlockByrefVariable() const { |
| 196 | assert(Var.Verify() && "Invalid complex DbgVariable!"); |
| 197 | return Var.isBlockByrefVariable(); |
| 198 | } |
| 199 | unsigned getNumAddrElements() const { |
| 200 | assert(Var.Verify() && "Invalid complex DbgVariable!"); |
| 201 | return Var.getNumAddrElements(); |
| 202 | } |
| 203 | uint64_t getAddrElement(unsigned i) const { |
| 204 | return Var.getAddrElement(i); |
| 205 | } |
| 206 | DIType getType() const { |
| 207 | DIType Ty = Var.getType(); |
| 208 | // FIXME: isBlockByrefVariable should be reformulated in terms of complex |
| 209 | // addresses instead. |
| 210 | if (Var.isBlockByrefVariable()) { |
| 211 | /* Byref variables, in Blocks, are declared by the programmer as |
| 212 | "SomeType VarName;", but the compiler creates a |
| 213 | __Block_byref_x_VarName struct, and gives the variable VarName |
| 214 | either the struct, or a pointer to the struct, as its type. This |
| 215 | is necessary for various behind-the-scenes things the compiler |
| 216 | needs to do with by-reference variables in blocks. |
| 217 | |
| 218 | However, as far as the original *programmer* is concerned, the |
| 219 | variable should still have type 'SomeType', as originally declared. |
| 220 | |
| 221 | The following function dives into the __Block_byref_x_VarName |
| 222 | struct to find the original type of the variable. This will be |
| 223 | passed back to the code generating the type for the Debug |
| 224 | Information Entry for the variable 'VarName'. 'VarName' will then |
| 225 | have the original type 'SomeType' in its debug information. |
| 226 | |
| 227 | The original type 'SomeType' will be the type of the field named |
| 228 | 'VarName' inside the __Block_byref_x_VarName struct. |
| 229 | |
| 230 | NOTE: In order for this to not completely fail on the debugger |
| 231 | side, the Debug Information Entry for the variable VarName needs to |
| 232 | have a DW_AT_location that tells the debugger how to unwind through |
| 233 | the pointers and __Block_byref_x_VarName struct to find the actual |
| 234 | value of the variable. The function addBlockByrefType does this. */ |
| 235 | DIType subType = Ty; |
| 236 | unsigned tag = Ty.getTag(); |
| 237 | |
| 238 | if (tag == dwarf::DW_TAG_pointer_type) { |
| 239 | DIDerivedType DTy = DIDerivedType(Ty); |
| 240 | subType = DTy.getTypeDerivedFrom(); |
| 241 | } |
| 242 | |
| 243 | DICompositeType blockStruct = DICompositeType(subType); |
| 244 | DIArray Elements = blockStruct.getTypeArray(); |
| 245 | |
| 246 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 247 | DIDescriptor Element = Elements.getElement(i); |
| 248 | DIDerivedType DT = DIDerivedType(Element); |
| 249 | if (getName() == DT.getName()) |
| 250 | return (DT.getTypeDerivedFrom()); |
| 251 | } |
| 252 | return Ty; |
| 253 | } |
| 254 | return Ty; |
| 255 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 256 | }; |
| 257 | |
| 258 | //===----------------------------------------------------------------------===// |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 259 | /// DbgRange - This is used to track range of instructions with identical |
| 260 | /// debug info scope. |
| 261 | /// |
| 262 | typedef std::pair<const MachineInstr *, const MachineInstr *> DbgRange; |
| 263 | |
| 264 | //===----------------------------------------------------------------------===// |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 265 | /// DbgScope - This class is used to track scope information. |
| 266 | /// |
Devang Patel | f76a3d6 | 2009-11-16 21:53:40 +0000 | [diff] [blame] | 267 | class DbgScope { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 268 | DbgScope *Parent; // Parent to this scope. |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 269 | DIDescriptor Desc; // Debug info descriptor for scope. |
Devang Patel | 3139fcf | 2010-01-26 21:39:14 +0000 | [diff] [blame] | 270 | // Location at which this scope is inlined. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 271 | AssertingVH<const MDNode> InlinedAtLocation; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 272 | bool AbstractScope; // Abstract Scope |
Devang Patel | d38dd11 | 2009-10-01 18:25:23 +0000 | [diff] [blame] | 273 | const MachineInstr *LastInsn; // Last instruction of this scope. |
| 274 | const MachineInstr *FirstInsn; // First instruction of this scope. |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 275 | unsigned DFSIn, DFSOut; |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 276 | // Scopes defined in scope. Contents not owned. |
| 277 | SmallVector<DbgScope *, 4> Scopes; |
| 278 | // Variables declared in scope. Contents owned. |
| 279 | SmallVector<DbgVariable *, 8> Variables; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 280 | SmallVector<DbgRange, 4> Ranges; |
Owen Anderson | 04c05f7 | 2009-06-24 22:53:20 +0000 | [diff] [blame] | 281 | // Private state for dump() |
| 282 | mutable unsigned IndentLevel; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 283 | public: |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 284 | DbgScope(DbgScope *P, DIDescriptor D, const MDNode *I = 0) |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 285 | : Parent(P), Desc(D), InlinedAtLocation(I), AbstractScope(false), |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 286 | LastInsn(0), FirstInsn(0), |
| 287 | DFSIn(0), DFSOut(0), IndentLevel(0) {} |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 288 | virtual ~DbgScope(); |
| 289 | |
| 290 | // Accessors. |
| 291 | DbgScope *getParent() const { return Parent; } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 292 | void setParent(DbgScope *P) { Parent = P; } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 293 | DIDescriptor getDesc() const { return Desc; } |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 294 | const MDNode *getInlinedAt() const { return InlinedAtLocation; } |
| 295 | const MDNode *getScopeNode() const { return Desc; } |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 296 | const SmallVector<DbgScope *, 4> &getScopes() { return Scopes; } |
Devang Patel | e03161c | 2010-08-09 18:51:29 +0000 | [diff] [blame] | 297 | const SmallVector<DbgVariable *, 8> &getDbgVariables() { return Variables; } |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 298 | const SmallVector<DbgRange, 4> &getRanges() { return Ranges; } |
| 299 | |
| 300 | /// openInsnRange - This scope covers instruction range starting from MI. |
| 301 | void openInsnRange(const MachineInstr *MI) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 302 | if (!FirstInsn) |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 303 | FirstInsn = MI; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 304 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 305 | if (Parent) |
| 306 | Parent->openInsnRange(MI); |
| 307 | } |
| 308 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 309 | /// extendInsnRange - Extend the current instruction range covered by |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 310 | /// this scope. |
| 311 | void extendInsnRange(const MachineInstr *MI) { |
| 312 | assert (FirstInsn && "MI Range is not open!"); |
| 313 | LastInsn = MI; |
| 314 | if (Parent) |
| 315 | Parent->extendInsnRange(MI); |
| 316 | } |
| 317 | |
| 318 | /// closeInsnRange - Create a range based on FirstInsn and LastInsn collected |
| 319 | /// until now. This is used when a new scope is encountered while walking |
| 320 | /// machine instructions. |
| 321 | void closeInsnRange(DbgScope *NewScope = NULL) { |
| 322 | assert (LastInsn && "Last insn missing!"); |
| 323 | Ranges.push_back(DbgRange(FirstInsn, LastInsn)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 324 | FirstInsn = NULL; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 325 | LastInsn = NULL; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 326 | // If Parent dominates NewScope then do not close Parent's instruction |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 327 | // range. |
| 328 | if (Parent && (!NewScope || !Parent->dominates(NewScope))) |
| 329 | Parent->closeInsnRange(NewScope); |
| 330 | } |
| 331 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 332 | void setAbstractScope() { AbstractScope = true; } |
| 333 | bool isAbstractScope() const { return AbstractScope; } |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 334 | |
| 335 | // Depth First Search support to walk and mainpluate DbgScope hierarchy. |
| 336 | unsigned getDFSOut() const { return DFSOut; } |
| 337 | void setDFSOut(unsigned O) { DFSOut = O; } |
| 338 | unsigned getDFSIn() const { return DFSIn; } |
| 339 | void setDFSIn(unsigned I) { DFSIn = I; } |
| 340 | bool dominates(const DbgScope *S) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 341 | if (S == this) |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 342 | return true; |
| 343 | if (DFSIn < S->getDFSIn() && DFSOut > S->getDFSOut()) |
| 344 | return true; |
| 345 | return false; |
| 346 | } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 347 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 348 | /// addScope - Add a scope to the scope. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 349 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 350 | void addScope(DbgScope *S) { Scopes.push_back(S); } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 351 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 352 | /// addVariable - Add a variable to the scope. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 353 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 354 | void addVariable(DbgVariable *V) { Variables.push_back(V); } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 355 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 356 | #ifndef NDEBUG |
| 357 | void dump() const; |
| 358 | #endif |
| 359 | }; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 360 | |
Chris Lattner | ea76186 | 2010-04-05 04:09:20 +0000 | [diff] [blame] | 361 | } // end llvm namespace |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 362 | |
| 363 | #ifndef NDEBUG |
| 364 | void DbgScope::dump() const { |
David Greene | f83adbc | 2009-12-24 00:31:35 +0000 | [diff] [blame] | 365 | raw_ostream &err = dbgs(); |
Chris Lattner | c281de1 | 2009-08-23 00:51:00 +0000 | [diff] [blame] | 366 | err.indent(IndentLevel); |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 367 | const MDNode *N = Desc; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 368 | N->dump(); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 369 | if (AbstractScope) |
| 370 | err << "Abstract Scope\n"; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 371 | |
| 372 | IndentLevel += 2; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 373 | if (!Scopes.empty()) |
| 374 | err << "Children ...\n"; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 375 | for (unsigned i = 0, e = Scopes.size(); i != e; ++i) |
| 376 | if (Scopes[i] != this) |
| 377 | Scopes[i]->dump(); |
| 378 | |
| 379 | IndentLevel -= 2; |
| 380 | } |
| 381 | #endif |
| 382 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 383 | DbgScope::~DbgScope() { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 384 | for (unsigned j = 0, M = Variables.size(); j < M; ++j) |
| 385 | delete Variables[j]; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 388 | DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M) |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 389 | : Asm(A), MMI(Asm->MMI), FirstCU(0), |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 390 | AbbreviationsSet(InitAbbreviationsSetSize), |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 391 | CurrentFnDbgScope(0), PrevLabel(NULL) { |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 392 | NextStringPoolNumber = 0; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 393 | |
Chris Lattner | 4ad1efe | 2010-04-04 23:10:38 +0000 | [diff] [blame] | 394 | DwarfFrameSectionSym = DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0; |
| 395 | DwarfStrSectionSym = TextSectionSym = 0; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 396 | DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 397 | FunctionBeginSym = FunctionEndSym = 0; |
Devang Patel | ca76f6f | 2010-07-08 20:10:35 +0000 | [diff] [blame] | 398 | DIEIntegerOne = new (DIEValueAllocator) DIEInteger(1); |
Dan Gohman | 03c3dc7 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 399 | { |
| 400 | NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled); |
| 401 | beginModule(M); |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 402 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 403 | } |
| 404 | DwarfDebug::~DwarfDebug() { |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 405 | for (unsigned j = 0, M = DIEBlocks.size(); j < M; ++j) |
| 406 | DIEBlocks[j]->~DIEBlock(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 407 | } |
| 408 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 409 | MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) { |
| 410 | std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str]; |
| 411 | if (Entry.first) return Entry.first; |
| 412 | |
| 413 | Entry.second = NextStringPoolNumber++; |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 414 | return Entry.first = Asm->GetTempSymbol("string", Entry.second); |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 418 | /// assignAbbrevNumber - Define a unique number for the abbreviation. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 419 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 420 | void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 421 | // Profile the node so that we can make it unique. |
| 422 | FoldingSetNodeID ID; |
| 423 | Abbrev.Profile(ID); |
| 424 | |
| 425 | // Check the set for priors. |
| 426 | DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev); |
| 427 | |
| 428 | // If it's newly added. |
| 429 | if (InSet == &Abbrev) { |
| 430 | // Add to abbreviation list. |
| 431 | Abbreviations.push_back(&Abbrev); |
| 432 | |
| 433 | // Assign the vector position + 1 as its number. |
| 434 | Abbrev.setNumber(Abbreviations.size()); |
| 435 | } else { |
| 436 | // Assign existing abbreviation number. |
| 437 | Abbrev.setNumber(InSet->getNumber()); |
| 438 | } |
| 439 | } |
| 440 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 441 | /// createDIEEntry - Creates a new DIEEntry to be a proxy for a debug |
Bill Wendling | 995f80a | 2009-05-20 23:24:48 +0000 | [diff] [blame] | 442 | /// information entry. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 443 | DIEEntry *DwarfDebug::createDIEEntry(DIE *Entry) { |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 444 | DIEEntry *Value = new (DIEValueAllocator) DIEEntry(Entry); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 445 | return Value; |
| 446 | } |
| 447 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 448 | /// addUInt - Add an unsigned integer attribute data and value. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 449 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 450 | void DwarfDebug::addUInt(DIE *Die, unsigned Attribute, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 451 | unsigned Form, uint64_t Integer) { |
| 452 | if (!Form) Form = DIEInteger::BestForm(false, Integer); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 453 | DIEValue *Value = Integer == 1 ? |
Devang Patel | ca76f6f | 2010-07-08 20:10:35 +0000 | [diff] [blame] | 454 | DIEIntegerOne : new (DIEValueAllocator) DIEInteger(Integer); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 455 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 458 | /// addSInt - Add an signed integer attribute data and value. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 459 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 460 | void DwarfDebug::addSInt(DIE *Die, unsigned Attribute, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 461 | unsigned Form, int64_t Integer) { |
| 462 | if (!Form) Form = DIEInteger::BestForm(true, Integer); |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 463 | DIEValue *Value = new (DIEValueAllocator) DIEInteger(Integer); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 464 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 465 | } |
| 466 | |
Devang Patel | 69f57b1 | 2009-12-02 15:25:16 +0000 | [diff] [blame] | 467 | /// addString - Add a string attribute data and value. DIEString only |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 468 | /// keeps string reference. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 469 | void DwarfDebug::addString(DIE *Die, unsigned Attribute, unsigned Form, |
Chris Lattner | 4cf202b | 2010-01-23 03:11:46 +0000 | [diff] [blame] | 470 | StringRef String) { |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 471 | DIEValue *Value = new (DIEValueAllocator) DIEString(String); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 472 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 473 | } |
| 474 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 475 | /// addLabel - Add a Dwarf label attribute data and value. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 476 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 477 | void DwarfDebug::addLabel(DIE *Die, unsigned Attribute, unsigned Form, |
Chris Lattner | b98b1bf | 2010-03-08 22:23:36 +0000 | [diff] [blame] | 478 | const MCSymbol *Label) { |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 479 | DIEValue *Value = new (DIEValueAllocator) DIELabel(Label); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 480 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 483 | /// addDelta - Add a label delta attribute data and value. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 484 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 485 | void DwarfDebug::addDelta(DIE *Die, unsigned Attribute, unsigned Form, |
Chris Lattner | b98b1bf | 2010-03-08 22:23:36 +0000 | [diff] [blame] | 486 | const MCSymbol *Hi, const MCSymbol *Lo) { |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 487 | DIEValue *Value = new (DIEValueAllocator) DIEDelta(Hi, Lo); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 488 | Die->addValue(Attribute, Form, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 489 | } |
| 490 | |
Chris Lattner | 74e41f9 | 2010-04-05 05:24:55 +0000 | [diff] [blame] | 491 | /// addDIEEntry - Add a DIE attribute data and value. |
| 492 | /// |
| 493 | void DwarfDebug::addDIEEntry(DIE *Die, unsigned Attribute, unsigned Form, |
| 494 | DIE *Entry) { |
| 495 | Die->addValue(Attribute, Form, createDIEEntry(Entry)); |
| 496 | } |
| 497 | |
| 498 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 499 | /// addBlock - Add block data. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 500 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 501 | void DwarfDebug::addBlock(DIE *Die, unsigned Attribute, unsigned Form, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 502 | DIEBlock *Block) { |
Chris Lattner | a37d538 | 2010-04-05 00:18:22 +0000 | [diff] [blame] | 503 | Block->ComputeSize(Asm); |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 504 | DIEBlocks.push_back(Block); // Memoize so we can call the destructor later on. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 505 | Die->addValue(Attribute, Block->BestForm(), Block); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 506 | } |
| 507 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 508 | /// addSourceLine - Add location information to specified debug information |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 509 | /// entry. |
Devang Patel | 85e9580 | 2010-08-10 04:09:06 +0000 | [diff] [blame] | 510 | void DwarfDebug::addSourceLine(DIE *Die, DIVariable V) { |
Devang Patel | c665a51 | 2010-05-07 23:33:41 +0000 | [diff] [blame] | 511 | // Verify variable. |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 512 | if (!V.Verify()) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 513 | return; |
| 514 | |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 515 | unsigned Line = V.getLineNumber(); |
Devang Patel | b2bada3 | 2010-10-08 17:18:54 +0000 | [diff] [blame] | 516 | if (Line == 0) |
| 517 | return; |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 518 | unsigned FileID = GetOrCreateSourceID(V.getContext().getFilename()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 519 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 520 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 521 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 524 | /// addSourceLine - Add location information to specified debug information |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 525 | /// entry. |
Devang Patel | 85e9580 | 2010-08-10 04:09:06 +0000 | [diff] [blame] | 526 | void DwarfDebug::addSourceLine(DIE *Die, DIGlobalVariable G) { |
Devang Patel | c665a51 | 2010-05-07 23:33:41 +0000 | [diff] [blame] | 527 | // Verify global variable. |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 528 | if (!G.Verify()) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 529 | return; |
| 530 | |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 531 | unsigned Line = G.getLineNumber(); |
Devang Patel | b2bada3 | 2010-10-08 17:18:54 +0000 | [diff] [blame] | 532 | if (Line == 0) |
| 533 | return; |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 534 | unsigned FileID = GetOrCreateSourceID(G.getContext().getFilename()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 535 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 536 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 537 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 538 | } |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 539 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 540 | /// addSourceLine - Add location information to specified debug information |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 541 | /// entry. |
Devang Patel | 85e9580 | 2010-08-10 04:09:06 +0000 | [diff] [blame] | 542 | void DwarfDebug::addSourceLine(DIE *Die, DISubprogram SP) { |
Devang Patel | c665a51 | 2010-05-07 23:33:41 +0000 | [diff] [blame] | 543 | // Verify subprogram. |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 544 | if (!SP.Verify()) |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 545 | return; |
Caroline Tice | c6f9d62 | 2009-09-11 18:25:54 +0000 | [diff] [blame] | 546 | // If the line number is 0, don't add it. |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 547 | if (SP.getLineNumber() == 0) |
Caroline Tice | c6f9d62 | 2009-09-11 18:25:54 +0000 | [diff] [blame] | 548 | return; |
| 549 | |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 550 | unsigned Line = SP.getLineNumber(); |
| 551 | if (!SP.getContext().Verify()) |
Devang Patel | 77bf295 | 2010-03-08 22:02:50 +0000 | [diff] [blame] | 552 | return; |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 553 | unsigned FileID = GetOrCreateSourceID(SP.getFilename()); |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 554 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 555 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 556 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 559 | /// addSourceLine - Add location information to specified debug information |
Devang Patel | 82dfc0c | 2009-08-31 22:47:13 +0000 | [diff] [blame] | 560 | /// entry. |
Devang Patel | 85e9580 | 2010-08-10 04:09:06 +0000 | [diff] [blame] | 561 | void DwarfDebug::addSourceLine(DIE *Die, DIType Ty) { |
Devang Patel | c665a51 | 2010-05-07 23:33:41 +0000 | [diff] [blame] | 562 | // Verify type. |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 563 | if (!Ty.Verify()) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 564 | return; |
| 565 | |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 566 | unsigned Line = Ty.getLineNumber(); |
Devang Patel | b2bada3 | 2010-10-08 17:18:54 +0000 | [diff] [blame] | 567 | if (Line == 0 || !Ty.getContext().Verify()) |
Devang Patel | 77bf295 | 2010-03-08 22:02:50 +0000 | [diff] [blame] | 568 | return; |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 569 | unsigned FileID = GetOrCreateSourceID(Ty.getFilename()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 570 | assert(FileID && "Invalid file id"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 571 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 572 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 575 | /// addSourceLine - Add location information to specified debug information |
| 576 | /// entry. |
Devang Patel | 85e9580 | 2010-08-10 04:09:06 +0000 | [diff] [blame] | 577 | void DwarfDebug::addSourceLine(DIE *Die, DINameSpace NS) { |
Devang Patel | c665a51 | 2010-05-07 23:33:41 +0000 | [diff] [blame] | 578 | // Verify namespace. |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 579 | if (!NS.Verify()) |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 580 | return; |
| 581 | |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 582 | unsigned Line = NS.getLineNumber(); |
Devang Patel | b2bada3 | 2010-10-08 17:18:54 +0000 | [diff] [blame] | 583 | if (Line == 0) |
| 584 | return; |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 585 | StringRef FN = NS.getFilename(); |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 586 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 587 | unsigned FileID = GetOrCreateSourceID(FN); |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 588 | assert(FileID && "Invalid file id"); |
| 589 | addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID); |
| 590 | addUInt(Die, dwarf::DW_AT_decl_line, 0, Line); |
| 591 | } |
| 592 | |
Devang Patel | 9e3bd2c | 2010-08-31 06:11:28 +0000 | [diff] [blame] | 593 | /// addVariableAddress - Add DW_AT_location attribute for a DbgVariable based |
| 594 | /// on provided frame index. |
| 595 | void DwarfDebug::addVariableAddress(DbgVariable *&DV, DIE *Die, int64_t FI) { |
| 596 | MachineLocation Location; |
| 597 | unsigned FrameReg; |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 598 | const TargetFrameLowering *TFI = Asm->TM.getFrameLowering(); |
Anton Korobeynikov | 82f5874 | 2010-11-20 15:59:32 +0000 | [diff] [blame] | 599 | int Offset = TFI->getFrameIndexReference(*Asm->MF, FI, FrameReg); |
Devang Patel | 9e3bd2c | 2010-08-31 06:11:28 +0000 | [diff] [blame] | 600 | Location.set(FrameReg, Offset); |
| 601 | |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 602 | if (DV->variableHasComplexAddress()) |
| 603 | addComplexAddress(DV, Die, dwarf::DW_AT_location, Location); |
| 604 | else if (DV->isBlockByrefVariable()) |
| 605 | addBlockByrefAddress(DV, Die, dwarf::DW_AT_location, Location); |
| 606 | else |
| 607 | addAddress(Die, dwarf::DW_AT_location, Location); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 608 | } |
| 609 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 610 | /// addComplexAddress - Start with the address based on the location provided, |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 611 | /// and generate the DWARF information necessary to find the actual variable |
| 612 | /// given the extra address information encoded in the DIVariable, starting from |
| 613 | /// the starting location. Add the DWARF information to the die. |
| 614 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 615 | void DwarfDebug::addComplexAddress(DbgVariable *&DV, DIE *Die, |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 616 | unsigned Attribute, |
| 617 | const MachineLocation &Location) { |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 618 | DIType Ty = DV->getType(); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 619 | |
| 620 | // Decode the original location, and use that as the start of the byref |
| 621 | // variable's location. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 622 | const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo(); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 623 | unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false); |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 624 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 625 | |
| 626 | if (Location.isReg()) { |
| 627 | if (Reg < 32) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 628 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 629 | } else { |
Devang Patel | dacde94 | 2011-01-19 23:04:47 +0000 | [diff] [blame] | 630 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 631 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 632 | } |
| 633 | } else { |
| 634 | if (Reg < 32) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 635 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 636 | else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 637 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx); |
| 638 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 641 | addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset()); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 644 | for (unsigned i = 0, N = DV->getNumAddrElements(); i < N; ++i) { |
| 645 | uint64_t Element = DV->getAddrElement(i); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 646 | |
| 647 | if (Element == DIFactory::OpPlus) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 648 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 649 | addUInt(Block, 0, dwarf::DW_FORM_udata, DV->getAddrElement(++i)); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 650 | } else if (Element == DIFactory::OpDeref) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 651 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 652 | } else llvm_unreachable("unknown DIFactory Opcode"); |
| 653 | } |
| 654 | |
| 655 | // Now attach the location information to the DIE. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 656 | addBlock(Die, Attribute, 0, Block); |
Mike Stump | 3e4c9bd | 2009-09-30 00:08:22 +0000 | [diff] [blame] | 657 | } |
| 658 | |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 659 | /* Byref variables, in Blocks, are declared by the programmer as "SomeType |
| 660 | VarName;", but the compiler creates a __Block_byref_x_VarName struct, and |
| 661 | gives the variable VarName either the struct, or a pointer to the struct, as |
| 662 | its type. This is necessary for various behind-the-scenes things the |
| 663 | compiler needs to do with by-reference variables in Blocks. |
| 664 | |
| 665 | However, as far as the original *programmer* is concerned, the variable |
| 666 | should still have type 'SomeType', as originally declared. |
| 667 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 668 | The function getBlockByrefType dives into the __Block_byref_x_VarName |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 669 | struct to find the original type of the variable, which is then assigned to |
| 670 | the variable's Debug Information Entry as its real type. So far, so good. |
| 671 | However now the debugger will expect the variable VarName to have the type |
| 672 | SomeType. So we need the location attribute for the variable to be an |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 673 | expression that explains to the debugger how to navigate through the |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 674 | pointers and struct to find the actual variable of type SomeType. |
| 675 | |
| 676 | The following function does just that. We start by getting |
| 677 | the "normal" location for the variable. This will be the location |
| 678 | of either the struct __Block_byref_x_VarName or the pointer to the |
| 679 | struct __Block_byref_x_VarName. |
| 680 | |
| 681 | The struct will look something like: |
| 682 | |
| 683 | struct __Block_byref_x_VarName { |
| 684 | ... <various fields> |
| 685 | struct __Block_byref_x_VarName *forwarding; |
| 686 | ... <various other fields> |
| 687 | SomeType VarName; |
| 688 | ... <maybe more fields> |
| 689 | }; |
| 690 | |
| 691 | If we are given the struct directly (as our starting point) we |
| 692 | need to tell the debugger to: |
| 693 | |
| 694 | 1). Add the offset of the forwarding field. |
| 695 | |
Dan Gohman | f451cb8 | 2010-02-10 16:03:48 +0000 | [diff] [blame] | 696 | 2). Follow that pointer to get the real __Block_byref_x_VarName |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 697 | struct to use (the real one may have been copied onto the heap). |
| 698 | |
| 699 | 3). Add the offset for the field VarName, to find the actual variable. |
| 700 | |
| 701 | If we started with a pointer to the struct, then we need to |
| 702 | dereference that pointer first, before the other steps. |
| 703 | Translating this into DWARF ops, we will need to append the following |
| 704 | to the current location description for the variable: |
| 705 | |
| 706 | DW_OP_deref -- optional, if we start with a pointer |
| 707 | DW_OP_plus_uconst <forward_fld_offset> |
| 708 | DW_OP_deref |
| 709 | DW_OP_plus_uconst <varName_fld_offset> |
| 710 | |
| 711 | That is what this function does. */ |
| 712 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 713 | /// addBlockByrefAddress - Start with the address based on the location |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 714 | /// provided, and generate the DWARF information necessary to find the |
| 715 | /// actual Block variable (navigating the Block struct) based on the |
| 716 | /// starting location. Add the DWARF information to the die. For |
| 717 | /// more information, read large comment just above here. |
| 718 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 719 | void DwarfDebug::addBlockByrefAddress(DbgVariable *&DV, DIE *Die, |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 720 | unsigned Attribute, |
| 721 | const MachineLocation &Location) { |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 722 | DIType Ty = DV->getType(); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 723 | DIType TmpTy = Ty; |
| 724 | unsigned Tag = Ty.getTag(); |
| 725 | bool isPointer = false; |
| 726 | |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 727 | StringRef varName = DV->getName(); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 728 | |
| 729 | if (Tag == dwarf::DW_TAG_pointer_type) { |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 730 | DIDerivedType DTy = DIDerivedType(Ty); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 731 | TmpTy = DTy.getTypeDerivedFrom(); |
| 732 | isPointer = true; |
| 733 | } |
| 734 | |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 735 | DICompositeType blockStruct = DICompositeType(TmpTy); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 736 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 737 | // Find the __forwarding field and the variable field in the __Block_byref |
| 738 | // struct. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 739 | DIArray Fields = blockStruct.getTypeArray(); |
| 740 | DIDescriptor varField = DIDescriptor(); |
| 741 | DIDescriptor forwardingField = DIDescriptor(); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 742 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 743 | for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) { |
| 744 | DIDescriptor Element = Fields.getElement(i); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 745 | DIDerivedType DT = DIDerivedType(Element); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 746 | StringRef fieldName = DT.getName(); |
| 747 | if (fieldName == "__forwarding") |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 748 | forwardingField = Element; |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 749 | else if (fieldName == varName) |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 750 | varField = Element; |
| 751 | } |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 752 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 753 | // Get the offsets for the forwarding field and the variable field. |
Chris Lattner | 1d65ba7 | 2010-03-31 06:06:37 +0000 | [diff] [blame] | 754 | unsigned forwardingFieldOffset = |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 755 | DIDerivedType(forwardingField).getOffsetInBits() >> 3; |
Chris Lattner | 1d65ba7 | 2010-03-31 06:06:37 +0000 | [diff] [blame] | 756 | unsigned varFieldOffset = |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 757 | DIDerivedType(varField).getOffsetInBits() >> 3; |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 758 | |
Mike Stump | 7e3720d | 2009-09-24 23:21:26 +0000 | [diff] [blame] | 759 | // Decode the original location, and use that as the start of the byref |
| 760 | // variable's location. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 761 | const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo(); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 762 | unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false); |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 763 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 764 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 765 | if (Location.isReg()) { |
| 766 | if (Reg < 32) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 767 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 768 | else { |
Devang Patel | dacde94 | 2011-01-19 23:04:47 +0000 | [diff] [blame] | 769 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 770 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 771 | } |
| 772 | } else { |
| 773 | if (Reg < 32) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 774 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 775 | else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 776 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx); |
| 777 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 778 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 779 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 780 | addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset()); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 781 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 782 | |
Mike Stump | 7e3720d | 2009-09-24 23:21:26 +0000 | [diff] [blame] | 783 | // If we started with a pointer to the __Block_byref... struct, then |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 784 | // the first thing we need to do is dereference the pointer (DW_OP_deref). |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 785 | if (isPointer) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 786 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 787 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 788 | // Next add the offset for the '__forwarding' field: |
| 789 | // DW_OP_plus_uconst ForwardingFieldOffset. Note there's no point in |
| 790 | // adding the offset if it's 0. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 791 | if (forwardingFieldOffset > 0) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 792 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
| 793 | addUInt(Block, 0, dwarf::DW_FORM_udata, forwardingFieldOffset); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 794 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 795 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 796 | // Now dereference the __forwarding field to get to the real __Block_byref |
| 797 | // struct: DW_OP_deref. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 798 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 799 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 800 | // Now that we've got the real __Block_byref... struct, add the offset |
| 801 | // for the variable's field to get to the location of the actual variable: |
| 802 | // DW_OP_plus_uconst varFieldOffset. Again, don't add if it's 0. |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 803 | if (varFieldOffset > 0) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 804 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
| 805 | addUInt(Block, 0, dwarf::DW_FORM_udata, varFieldOffset); |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 806 | } |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 807 | |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 808 | // Now attach the location information to the DIE. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 809 | addBlock(Die, Attribute, 0, Block); |
Caroline Tice | dc8f604 | 2009-08-31 21:19:37 +0000 | [diff] [blame] | 810 | } |
| 811 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 812 | /// addAddress - Add an address attribute to a die based on the location |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 813 | /// provided. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 814 | void DwarfDebug::addAddress(DIE *Die, unsigned Attribute, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 815 | const MachineLocation &Location) { |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 816 | const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 817 | unsigned Reg = RI->getDwarfRegNum(Location.getReg(), false); |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 818 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
Devang Patel | be90c3a | 2010-09-22 21:10:38 +0000 | [diff] [blame] | 819 | |
Devang Patel | c882104 | 2010-11-02 17:37:00 +0000 | [diff] [blame] | 820 | if (RI->getFrameRegister(*Asm->MF) == Location.getReg() |
Devang Patel | be90c3a | 2010-09-22 21:10:38 +0000 | [diff] [blame] | 821 | && Location.getOffset()) { |
| 822 | // If variable offset is based in frame register then use fbreg. |
| 823 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_fbreg); |
| 824 | addSInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset()); |
| 825 | addBlock(Die, Attribute, 0, Block); |
| 826 | return; |
| 827 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 828 | |
| 829 | if (Location.isReg()) { |
| 830 | if (Reg < 32) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 831 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_reg0 + Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 832 | } else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 833 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_regx); |
| 834 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 835 | } |
| 836 | } else { |
| 837 | if (Reg < 32) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 838 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_breg0 + Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 839 | } else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 840 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_bregx); |
| 841 | addUInt(Block, 0, dwarf::DW_FORM_udata, Reg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 842 | } |
| 843 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 844 | addUInt(Block, 0, dwarf::DW_FORM_sdata, Location.getOffset()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 845 | } |
| 846 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 847 | addBlock(Die, Attribute, 0, Block); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 848 | } |
| 849 | |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 850 | /// addRegisterAddress - Add register location entry in variable DIE. |
Devang Patel | 522ad74 | 2010-11-12 23:20:42 +0000 | [diff] [blame] | 851 | bool DwarfDebug::addRegisterAddress(DIE *Die, const MachineOperand &MO) { |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 852 | assert (MO.isReg() && "Invalid machine operand!"); |
| 853 | if (!MO.getReg()) |
| 854 | return false; |
| 855 | MachineLocation Location; |
| 856 | Location.set(MO.getReg()); |
| 857 | addAddress(Die, dwarf::DW_AT_location, Location); |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 858 | return true; |
| 859 | } |
| 860 | |
| 861 | /// addConstantValue - Add constant value entry in variable DIE. |
Devang Patel | 522ad74 | 2010-11-12 23:20:42 +0000 | [diff] [blame] | 862 | bool DwarfDebug::addConstantValue(DIE *Die, const MachineOperand &MO) { |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 863 | assert (MO.isImm() && "Invalid machine operand!"); |
| 864 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
| 865 | unsigned Imm = MO.getImm(); |
| 866 | addUInt(Block, 0, dwarf::DW_FORM_udata, Imm); |
| 867 | addBlock(Die, dwarf::DW_AT_const_value, 0, Block); |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 868 | return true; |
| 869 | } |
| 870 | |
| 871 | /// addConstantFPValue - Add constant value entry in variable DIE. |
Devang Patel | 522ad74 | 2010-11-12 23:20:42 +0000 | [diff] [blame] | 872 | bool DwarfDebug::addConstantFPValue(DIE *Die, const MachineOperand &MO) { |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 873 | assert (MO.isFPImm() && "Invalid machine operand!"); |
| 874 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
| 875 | APFloat FPImm = MO.getFPImm()->getValueAPF(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 876 | |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 877 | // Get the raw data form of the floating point. |
| 878 | const APInt FltVal = FPImm.bitcastToAPInt(); |
| 879 | const char *FltPtr = (const char*)FltVal.getRawData(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 880 | |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 881 | int NumBytes = FltVal.getBitWidth() / 8; // 8 bits per byte. |
| 882 | bool LittleEndian = Asm->getTargetData().isLittleEndian(); |
| 883 | int Incr = (LittleEndian ? 1 : -1); |
| 884 | int Start = (LittleEndian ? 0 : NumBytes - 1); |
| 885 | int Stop = (LittleEndian ? NumBytes : -1); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 886 | |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 887 | // Output the constant to DWARF one byte at a time. |
| 888 | for (; Start != Stop; Start += Incr) |
| 889 | addUInt(Block, 0, dwarf::DW_FORM_data1, |
| 890 | (unsigned char)0xFF & FltPtr[Start]); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 891 | |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 892 | addBlock(Die, dwarf::DW_AT_const_value, 0, Block); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 893 | return true; |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 894 | } |
| 895 | |
Devang Patel | 76a788c | 2011-01-06 21:39:25 +0000 | [diff] [blame] | 896 | /// addConstantValue - Add constant value entry in variable DIE. |
| 897 | bool DwarfDebug::addConstantValue(DIE *Die, ConstantInt *CI, |
| 898 | bool Unsigned) { |
| 899 | if (CI->getBitWidth() <= 64) { |
| 900 | if (Unsigned) |
| 901 | addUInt(Die, dwarf::DW_AT_const_value, dwarf::DW_FORM_udata, |
| 902 | CI->getZExtValue()); |
| 903 | else |
| 904 | addSInt(Die, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, |
| 905 | CI->getSExtValue()); |
| 906 | return true; |
| 907 | } |
| 908 | |
| 909 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
| 910 | |
| 911 | // Get the raw data form of the large APInt. |
| 912 | const APInt Val = CI->getValue(); |
| 913 | const char *Ptr = (const char*)Val.getRawData(); |
| 914 | |
| 915 | int NumBytes = Val.getBitWidth() / 8; // 8 bits per byte. |
| 916 | bool LittleEndian = Asm->getTargetData().isLittleEndian(); |
| 917 | int Incr = (LittleEndian ? 1 : -1); |
| 918 | int Start = (LittleEndian ? 0 : NumBytes - 1); |
| 919 | int Stop = (LittleEndian ? NumBytes : -1); |
| 920 | |
| 921 | // Output the constant to DWARF one byte at a time. |
| 922 | for (; Start != Stop; Start += Incr) |
| 923 | addUInt(Block, 0, dwarf::DW_FORM_data1, |
| 924 | (unsigned char)0xFF & Ptr[Start]); |
| 925 | |
| 926 | addBlock(Die, dwarf::DW_AT_const_value, 0, Block); |
| 927 | return true; |
| 928 | } |
Devang Patel | a43098d | 2010-04-28 01:03:09 +0000 | [diff] [blame] | 929 | |
Devang Patel | c366f83 | 2009-12-10 19:14:49 +0000 | [diff] [blame] | 930 | /// addToContextOwner - Add Die into the list of its context owner's children. |
| 931 | void DwarfDebug::addToContextOwner(DIE *Die, DIDescriptor Context) { |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 932 | if (Context.isType()) { |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 933 | DIE *ContextDIE = getOrCreateTypeDIE(DIType(Context)); |
Devang Patel | c366f83 | 2009-12-10 19:14:49 +0000 | [diff] [blame] | 934 | ContextDIE->addChild(Die); |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 935 | } else if (Context.isNameSpace()) { |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 936 | DIE *ContextDIE = getOrCreateNameSpace(DINameSpace(Context)); |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 937 | ContextDIE->addChild(Die); |
Stuart Hastings | 215aa15 | 2010-06-11 20:08:44 +0000 | [diff] [blame] | 938 | } else if (Context.isSubprogram()) { |
Devang Patel | ee70fa7 | 2010-09-27 23:15:27 +0000 | [diff] [blame] | 939 | DIE *ContextDIE = createSubprogramDIE(DISubprogram(Context)); |
Stuart Hastings | 215aa15 | 2010-06-11 20:08:44 +0000 | [diff] [blame] | 940 | ContextDIE->addChild(Die); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 941 | } else if (DIE *ContextDIE = getCompileUnit(Context)->getDIE(Context)) |
Devang Patel | c366f83 | 2009-12-10 19:14:49 +0000 | [diff] [blame] | 942 | ContextDIE->addChild(Die); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 943 | else |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 944 | getCompileUnit(Context)->addDie(Die); |
Devang Patel | c366f83 | 2009-12-10 19:14:49 +0000 | [diff] [blame] | 945 | } |
| 946 | |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 947 | /// getOrCreateTypeDIE - Find existing DIE or create new DIE for the |
| 948 | /// given DIType. |
| 949 | DIE *DwarfDebug::getOrCreateTypeDIE(DIType Ty) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 950 | CompileUnit *TypeCU = getCompileUnit(Ty); |
| 951 | DIE *TyDIE = TypeCU->getDIE(Ty); |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 952 | if (TyDIE) |
| 953 | return TyDIE; |
| 954 | |
| 955 | // Create new type. |
| 956 | TyDIE = new DIE(dwarf::DW_TAG_base_type); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 957 | TypeCU->insertDIE(Ty, TyDIE); |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 958 | if (Ty.isBasicType()) |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 959 | constructTypeDIE(*TyDIE, DIBasicType(Ty)); |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 960 | else if (Ty.isCompositeType()) |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 961 | constructTypeDIE(*TyDIE, DICompositeType(Ty)); |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 962 | else { |
| 963 | assert(Ty.isDerivedType() && "Unknown kind of DIType"); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 964 | constructTypeDIE(*TyDIE, DIDerivedType(Ty)); |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 965 | } |
| 966 | |
Devang Patel | c366f83 | 2009-12-10 19:14:49 +0000 | [diff] [blame] | 967 | addToContextOwner(TyDIE, Ty.getContext()); |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 968 | return TyDIE; |
| 969 | } |
| 970 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 971 | /// addType - Add a new type attribute to the specified entity. |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 972 | void DwarfDebug::addType(DIE *Entity, DIType Ty) { |
Devang Patel | 9c00487 | 2010-05-07 21:45:47 +0000 | [diff] [blame] | 973 | if (!Ty.Verify()) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 974 | return; |
| 975 | |
| 976 | // Check for pre-existence. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 977 | CompileUnit *TypeCU = getCompileUnit(Ty); |
| 978 | DIEEntry *Entry = TypeCU->getDIEEntry(Ty); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 979 | // If it exists then use the existing value. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 980 | if (Entry) { |
| 981 | Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 982 | return; |
| 983 | } |
| 984 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 985 | // Construct type. |
Devang Patel | 16ced73 | 2009-12-10 18:05:33 +0000 | [diff] [blame] | 986 | DIE *Buffer = getOrCreateTypeDIE(Ty); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 987 | |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 988 | // Set up proxy. |
| 989 | Entry = createDIEEntry(Buffer); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 990 | TypeCU->insertDIEEntry(Ty, Entry); |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 991 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 992 | Entity->addValue(dwarf::DW_AT_type, dwarf::DW_FORM_ref4, Entry); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 993 | } |
| 994 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 995 | /// constructTypeDIE - Construct basic type die from DIBasicType. |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 996 | void DwarfDebug::constructTypeDIE(DIE &Buffer, DIBasicType BTy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 997 | // Get core information. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 998 | StringRef Name = BTy.getName(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 999 | Buffer.setTag(dwarf::DW_TAG_base_type); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1000 | addUInt(&Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1001 | BTy.getEncoding()); |
| 1002 | |
| 1003 | // Add name if not anonymous or intermediate type. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1004 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1005 | addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1006 | uint64_t Size = BTy.getSizeInBits() >> 3; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1007 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1008 | } |
| 1009 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1010 | /// constructTypeDIE - Construct derived type die from DIDerivedType. |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1011 | void DwarfDebug::constructTypeDIE(DIE &Buffer, DIDerivedType DTy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1012 | // Get core information. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1013 | StringRef Name = DTy.getName(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1014 | uint64_t Size = DTy.getSizeInBits() >> 3; |
| 1015 | unsigned Tag = DTy.getTag(); |
| 1016 | |
| 1017 | // FIXME - Workaround for templates. |
| 1018 | if (Tag == dwarf::DW_TAG_inheritance) Tag = dwarf::DW_TAG_reference_type; |
| 1019 | |
| 1020 | Buffer.setTag(Tag); |
| 1021 | |
| 1022 | // Map to main type, void will not have a type. |
| 1023 | DIType FromTy = DTy.getTypeDerivedFrom(); |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1024 | addType(&Buffer, FromTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1025 | |
| 1026 | // Add name if not anonymous or intermediate type. |
Devang Patel | deea564 | 2009-11-30 23:56:56 +0000 | [diff] [blame] | 1027 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1028 | addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1029 | |
| 1030 | // Add size if non-zero (derived types might be zero-sized.) |
| 1031 | if (Size) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1032 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1033 | |
| 1034 | // Add source line info if available and TyDesc is not a forward declaration. |
Devang Patel | 05f6fa8 | 2009-11-23 18:43:37 +0000 | [diff] [blame] | 1035 | if (!DTy.isForwardDecl()) |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 1036 | addSourceLine(&Buffer, DTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1037 | } |
| 1038 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1039 | /// constructTypeDIE - Construct type DIE from DICompositeType. |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1040 | void DwarfDebug::constructTypeDIE(DIE &Buffer, DICompositeType CTy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1041 | // Get core information. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1042 | StringRef Name = CTy.getName(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1043 | |
| 1044 | uint64_t Size = CTy.getSizeInBits() >> 3; |
| 1045 | unsigned Tag = CTy.getTag(); |
| 1046 | Buffer.setTag(Tag); |
| 1047 | |
| 1048 | switch (Tag) { |
| 1049 | case dwarf::DW_TAG_vector_type: |
| 1050 | case dwarf::DW_TAG_array_type: |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1051 | constructArrayTypeDIE(Buffer, &CTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1052 | break; |
| 1053 | case dwarf::DW_TAG_enumeration_type: { |
| 1054 | DIArray Elements = CTy.getTypeArray(); |
| 1055 | |
| 1056 | // Add enumerators to enumeration type. |
| 1057 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 1058 | DIE *ElemDie = NULL; |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1059 | DIDescriptor Enum(Elements.getElement(i)); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1060 | if (Enum.isEnumerator()) { |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1061 | ElemDie = constructEnumTypeDIE(DIEnumerator(Enum)); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1062 | Buffer.addChild(ElemDie); |
Devang Patel | c525472 | 2009-10-09 17:51:49 +0000 | [diff] [blame] | 1063 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1064 | } |
| 1065 | } |
| 1066 | break; |
| 1067 | case dwarf::DW_TAG_subroutine_type: { |
| 1068 | // Add return type. |
| 1069 | DIArray Elements = CTy.getTypeArray(); |
| 1070 | DIDescriptor RTy = Elements.getElement(0); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1071 | addType(&Buffer, DIType(RTy)); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1072 | |
Devang Patel | d6747df | 2010-10-06 20:50:40 +0000 | [diff] [blame] | 1073 | bool isPrototyped = true; |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1074 | // Add arguments. |
| 1075 | for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1076 | DIDescriptor Ty = Elements.getElement(i); |
Devang Patel | d6747df | 2010-10-06 20:50:40 +0000 | [diff] [blame] | 1077 | if (Ty.isUnspecifiedParameter()) { |
| 1078 | DIE *Arg = new DIE(dwarf::DW_TAG_unspecified_parameters); |
| 1079 | Buffer.addChild(Arg); |
| 1080 | isPrototyped = false; |
| 1081 | } else { |
| 1082 | DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); |
| 1083 | addType(Arg, DIType(Ty)); |
| 1084 | Buffer.addChild(Arg); |
| 1085 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1086 | } |
Devang Patel | d6747df | 2010-10-06 20:50:40 +0000 | [diff] [blame] | 1087 | // Add prototype flag. |
| 1088 | if (isPrototyped) |
| 1089 | addUInt(&Buffer, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1090 | } |
| 1091 | break; |
| 1092 | case dwarf::DW_TAG_structure_type: |
| 1093 | case dwarf::DW_TAG_union_type: |
| 1094 | case dwarf::DW_TAG_class_type: { |
| 1095 | // Add elements to structure type. |
| 1096 | DIArray Elements = CTy.getTypeArray(); |
| 1097 | |
| 1098 | // A forward struct declared type may not have elements available. |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1099 | unsigned N = Elements.getNumElements(); |
| 1100 | if (N == 0) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1101 | break; |
| 1102 | |
| 1103 | // Add elements to structure type. |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1104 | for (unsigned i = 0; i < N; ++i) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1105 | DIDescriptor Element = Elements.getElement(i); |
| 1106 | DIE *ElemDie = NULL; |
Devang Patel | 1a30123 | 2010-09-29 21:44:16 +0000 | [diff] [blame] | 1107 | if (Element.isSubprogram()) { |
| 1108 | DISubprogram SP(Element); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1109 | ElemDie = createSubprogramDIE(DISubprogram(Element)); |
Devang Patel | 1a30123 | 2010-09-29 21:44:16 +0000 | [diff] [blame] | 1110 | if (SP.isProtected()) |
| 1111 | addUInt(ElemDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
| 1112 | dwarf::DW_ACCESS_protected); |
| 1113 | else if (SP.isPrivate()) |
| 1114 | addUInt(ElemDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
| 1115 | dwarf::DW_ACCESS_private); |
| 1116 | else |
| 1117 | addUInt(ElemDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
| 1118 | dwarf::DW_ACCESS_public); |
Devang Patel | 21ea1d5 | 2010-10-01 23:31:40 +0000 | [diff] [blame] | 1119 | if (SP.isExplicit()) |
| 1120 | addUInt(ElemDie, dwarf::DW_AT_explicit, dwarf::DW_FORM_flag, 1); |
Devang Patel | 1a30123 | 2010-09-29 21:44:16 +0000 | [diff] [blame] | 1121 | } |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1122 | else if (Element.isVariable()) { |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1123 | DIVariable DV(Element); |
Devang Patel | 1ee0cb9 | 2010-01-30 01:08:30 +0000 | [diff] [blame] | 1124 | ElemDie = new DIE(dwarf::DW_TAG_variable); |
| 1125 | addString(ElemDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, |
| 1126 | DV.getName()); |
| 1127 | addType(ElemDie, DV.getType()); |
| 1128 | addUInt(ElemDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
| 1129 | addUInt(ElemDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1); |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 1130 | addSourceLine(ElemDie, DV); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1131 | } else if (Element.isDerivedType()) |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1132 | ElemDie = createMemberDIE(DIDerivedType(Element)); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1133 | else |
| 1134 | continue; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1135 | Buffer.addChild(ElemDie); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1136 | } |
| 1137 | |
Devang Patel | a1ba269 | 2009-08-27 23:51:51 +0000 | [diff] [blame] | 1138 | if (CTy.isAppleBlockExtension()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1139 | addUInt(&Buffer, dwarf::DW_AT_APPLE_block, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1140 | |
| 1141 | unsigned RLang = CTy.getRunTimeLang(); |
| 1142 | if (RLang) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1143 | addUInt(&Buffer, dwarf::DW_AT_APPLE_runtime_class, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1144 | dwarf::DW_FORM_data1, RLang); |
Devang Patel | b554499 | 2010-01-26 21:16:06 +0000 | [diff] [blame] | 1145 | |
| 1146 | DICompositeType ContainingType = CTy.getContainingType(); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1147 | if (DIDescriptor(ContainingType).isCompositeType()) |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1148 | addDIEEntry(&Buffer, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1149 | getOrCreateTypeDIE(DIType(ContainingType))); |
Stuart Hastings | 215aa15 | 2010-06-11 20:08:44 +0000 | [diff] [blame] | 1150 | else { |
| 1151 | DIDescriptor Context = CTy.getContext(); |
| 1152 | addToContextOwner(&Buffer, Context); |
| 1153 | } |
Devang Patel | 7e2cb11 | 2011-02-02 21:38:25 +0000 | [diff] [blame] | 1154 | |
| 1155 | if (Tag == dwarf::DW_TAG_class_type) { |
| 1156 | DIArray TParams = CTy.getTemplateParams(); |
| 1157 | unsigned N = TParams.getNumElements(); |
| 1158 | // Add template parameters. |
| 1159 | for (unsigned i = 0; i < N; ++i) { |
| 1160 | DIDescriptor Element = TParams.getElement(i); |
| 1161 | if (Element.isTemplateTypeParameter()) |
| 1162 | Buffer.addChild(getOrCreateTemplateTypeParameterDIE( |
| 1163 | DITemplateTypeParameter(Element))); |
Devang Patel | e7d9387 | 2011-02-02 22:35:53 +0000 | [diff] [blame] | 1164 | else if (Element.isTemplateValueParameter()) |
| 1165 | Buffer.addChild(getOrCreateTemplateValueParameterDIE( |
| 1166 | DITemplateValueParameter(Element))); |
Devang Patel | 7e2cb11 | 2011-02-02 21:38:25 +0000 | [diff] [blame] | 1167 | } |
| 1168 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1169 | break; |
| 1170 | } |
| 1171 | default: |
| 1172 | break; |
| 1173 | } |
| 1174 | |
| 1175 | // Add name if not anonymous or intermediate type. |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1176 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1177 | addString(&Buffer, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1178 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1179 | if (Tag == dwarf::DW_TAG_enumeration_type || Tag == dwarf::DW_TAG_class_type |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 1180 | || Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type) |
| 1181 | { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1182 | // Add size if non-zero (derived types might be zero-sized.) |
| 1183 | if (Size) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1184 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, Size); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1185 | else { |
| 1186 | // Add zero size if it is not a forward declaration. |
| 1187 | if (CTy.isForwardDecl()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1188 | addUInt(&Buffer, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1189 | else |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1190 | addUInt(&Buffer, dwarf::DW_AT_byte_size, 0, 0); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1191 | } |
| 1192 | |
| 1193 | // Add source line info if available. |
| 1194 | if (!CTy.isForwardDecl()) |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 1195 | addSourceLine(&Buffer, CTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1196 | } |
| 1197 | } |
| 1198 | |
Devang Patel | 7e2cb11 | 2011-02-02 21:38:25 +0000 | [diff] [blame] | 1199 | /// getOrCreateTemplateTypeParameterDIE - Find existing DIE or create new DIE |
| 1200 | /// for the given DITemplateTypeParameter. |
| 1201 | DIE * |
| 1202 | DwarfDebug::getOrCreateTemplateTypeParameterDIE(DITemplateTypeParameter TP) { |
| 1203 | CompileUnit *TypeCU = getCompileUnit(TP); |
| 1204 | DIE *ParamDIE = TypeCU->getDIE(TP); |
| 1205 | if (ParamDIE) |
| 1206 | return ParamDIE; |
| 1207 | |
| 1208 | ParamDIE = new DIE(dwarf::DW_TAG_template_type_parameter); |
| 1209 | addType(ParamDIE, TP.getType()); |
| 1210 | addString(ParamDIE, dwarf::DW_AT_name, dwarf::DW_FORM_string, TP.getName()); |
| 1211 | return ParamDIE; |
| 1212 | } |
| 1213 | |
Devang Patel | e7d9387 | 2011-02-02 22:35:53 +0000 | [diff] [blame] | 1214 | /// getOrCreateTemplateValueParameterDIE - Find existing DIE or create new DIE |
| 1215 | /// for the given DITemplateValueParameter. |
| 1216 | DIE * |
| 1217 | DwarfDebug::getOrCreateTemplateValueParameterDIE(DITemplateValueParameter TPV) { |
| 1218 | CompileUnit *TVCU = getCompileUnit(TPV); |
| 1219 | DIE *ParamDIE = TVCU->getDIE(TPV); |
| 1220 | if (ParamDIE) |
| 1221 | return ParamDIE; |
| 1222 | |
| 1223 | ParamDIE = new DIE(dwarf::DW_TAG_template_value_parameter); |
| 1224 | addType(ParamDIE, TPV.getType()); |
| 1225 | addString(ParamDIE, dwarf::DW_AT_name, dwarf::DW_FORM_string, TPV.getName()); |
| 1226 | addUInt(ParamDIE, dwarf::DW_AT_const_value, dwarf::DW_FORM_udata, |
| 1227 | TPV.getValue()); |
| 1228 | return ParamDIE; |
| 1229 | } |
| 1230 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1231 | /// constructSubrangeDIE - Construct subrange DIE from DISubrange. |
| 1232 | void DwarfDebug::constructSubrangeDIE(DIE &Buffer, DISubrange SR, DIE *IndexTy){ |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1233 | int64_t L = SR.getLo(); |
| 1234 | int64_t H = SR.getHi(); |
| 1235 | DIE *DW_Subrange = new DIE(dwarf::DW_TAG_subrange_type); |
| 1236 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1237 | addDIEEntry(DW_Subrange, dwarf::DW_AT_type, dwarf::DW_FORM_ref4, IndexTy); |
Devang Patel | 6325a53 | 2009-08-14 20:59:16 +0000 | [diff] [blame] | 1238 | if (L) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1239 | addSInt(DW_Subrange, dwarf::DW_AT_lower_bound, 0, L); |
Devang Patel | d55224c | 2009-12-04 23:10:24 +0000 | [diff] [blame] | 1240 | addSInt(DW_Subrange, dwarf::DW_AT_upper_bound, 0, H); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1241 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1242 | Buffer.addChild(DW_Subrange); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1245 | /// constructArrayTypeDIE - Construct array type DIE from DICompositeType. |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1246 | void DwarfDebug::constructArrayTypeDIE(DIE &Buffer, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1247 | DICompositeType *CTy) { |
| 1248 | Buffer.setTag(dwarf::DW_TAG_array_type); |
| 1249 | if (CTy->getTag() == dwarf::DW_TAG_vector_type) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1250 | addUInt(&Buffer, dwarf::DW_AT_GNU_vector, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1251 | |
| 1252 | // Emit derived type. |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1253 | addType(&Buffer, CTy->getTypeDerivedFrom()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1254 | DIArray Elements = CTy->getTypeArray(); |
| 1255 | |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 1256 | // Get an anonymous type for index type. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1257 | CompileUnit *TheCU = getCompileUnit(*CTy); |
| 1258 | DIE *IdxTy = TheCU->getIndexTyDie(); |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 1259 | if (!IdxTy) { |
| 1260 | // Construct an anonymous type for index type. |
| 1261 | IdxTy = new DIE(dwarf::DW_TAG_base_type); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1262 | addUInt(IdxTy, dwarf::DW_AT_byte_size, 0, sizeof(int32_t)); |
| 1263 | addUInt(IdxTy, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1, |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 1264 | dwarf::DW_ATE_signed); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1265 | TheCU->addDie(IdxTy); |
| 1266 | TheCU->setIndexTyDie(IdxTy); |
Devang Patel | 6f01d9c | 2009-11-21 00:31:03 +0000 | [diff] [blame] | 1267 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1268 | |
| 1269 | // Add subranges to array type. |
| 1270 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 1271 | DIDescriptor Element = Elements.getElement(i); |
| 1272 | if (Element.getTag() == dwarf::DW_TAG_subrange_type) |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1273 | constructSubrangeDIE(Buffer, DISubrange(Element), IdxTy); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1274 | } |
| 1275 | } |
| 1276 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1277 | /// constructEnumTypeDIE - Construct enum type DIE from DIEnumerator. |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1278 | DIE *DwarfDebug::constructEnumTypeDIE(DIEnumerator ETy) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1279 | DIE *Enumerator = new DIE(dwarf::DW_TAG_enumerator); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1280 | StringRef Name = ETy.getName(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1281 | addString(Enumerator, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1282 | int64_t Value = ETy.getEnumValue(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1283 | addSInt(Enumerator, dwarf::DW_AT_const_value, dwarf::DW_FORM_sdata, Value); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1284 | return Enumerator; |
| 1285 | } |
| 1286 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1287 | /// getRealLinkageName - If special LLVM prefix that is used to inform the asm |
Devang Patel | 351ca33 | 2010-01-05 01:46:14 +0000 | [diff] [blame] | 1288 | /// printer to not emit usual symbol prefix before the symbol name is used then |
| 1289 | /// return linkage name after skipping this special LLVM prefix. |
| 1290 | static StringRef getRealLinkageName(StringRef LinkageName) { |
| 1291 | char One = '\1'; |
| 1292 | if (LinkageName.startswith(StringRef(&One, 1))) |
| 1293 | return LinkageName.substr(1); |
| 1294 | return LinkageName; |
| 1295 | } |
| 1296 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1297 | /// createMemberDIE - Create new member DIE. |
Devang Patel | ecbd8e8 | 2010-08-10 04:12:17 +0000 | [diff] [blame] | 1298 | DIE *DwarfDebug::createMemberDIE(DIDerivedType DT) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1299 | DIE *MemberDie = new DIE(DT.getTag()); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1300 | StringRef Name = DT.getName(); |
| 1301 | if (!Name.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1302 | addString(MemberDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1303 | |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1304 | addType(MemberDie, DT.getTypeDerivedFrom()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1305 | |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 1306 | addSourceLine(MemberDie, DT); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1307 | |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 1308 | DIEBlock *MemLocationDie = new (DIEValueAllocator) DIEBlock(); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1309 | addUInt(MemLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1310 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1311 | uint64_t Size = DT.getSizeInBits(); |
Devang Patel | 61ecbd1 | 2009-11-04 23:48:00 +0000 | [diff] [blame] | 1312 | uint64_t FieldSize = DT.getOriginalTypeSize(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1313 | |
| 1314 | if (Size != FieldSize) { |
| 1315 | // Handle bitfield. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1316 | addUInt(MemberDie, dwarf::DW_AT_byte_size, 0, DT.getOriginalTypeSize()>>3); |
| 1317 | addUInt(MemberDie, dwarf::DW_AT_bit_size, 0, DT.getSizeInBits()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1318 | |
| 1319 | uint64_t Offset = DT.getOffsetInBits(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1320 | uint64_t AlignMask = ~(DT.getAlignInBits() - 1); |
| 1321 | uint64_t HiMark = (Offset + FieldSize) & AlignMask; |
Benjamin Kramer | 3d594fd | 2010-01-07 17:50:57 +0000 | [diff] [blame] | 1322 | uint64_t FieldOffset = (HiMark - FieldSize); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1323 | Offset -= FieldOffset; |
| 1324 | |
| 1325 | // Maybe we need to work from the other end. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1326 | if (Asm->getTargetData().isLittleEndian()) |
| 1327 | Offset = FieldSize - (Offset + Size); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1328 | addUInt(MemberDie, dwarf::DW_AT_bit_offset, 0, Offset); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1329 | |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1330 | // Here WD_AT_data_member_location points to the anonymous |
| 1331 | // field that includes this bit field. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1332 | addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, FieldOffset >> 3); |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1333 | |
| 1334 | } else |
| 1335 | // This is not a bitfield. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1336 | addUInt(MemLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits() >> 3); |
Devang Patel | 33db508 | 2009-11-04 22:06:12 +0000 | [diff] [blame] | 1337 | |
Devang Patel | c1dc8ff | 2010-02-03 20:08:48 +0000 | [diff] [blame] | 1338 | if (DT.getTag() == dwarf::DW_TAG_inheritance |
| 1339 | && DT.isVirtual()) { |
| 1340 | |
| 1341 | // For C++, virtual base classes are not at fixed offset. Use following |
| 1342 | // expression to extract appropriate offset from vtable. |
| 1343 | // BaseAddr = ObAddr + *((*ObAddr) - Offset) |
| 1344 | |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 1345 | DIEBlock *VBaseLocationDie = new (DIEValueAllocator) DIEBlock(); |
Devang Patel | c1dc8ff | 2010-02-03 20:08:48 +0000 | [diff] [blame] | 1346 | addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_dup); |
| 1347 | addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
| 1348 | addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu); |
| 1349 | addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_udata, DT.getOffsetInBits()); |
| 1350 | addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_minus); |
| 1351 | addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); |
| 1352 | addUInt(VBaseLocationDie, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus); |
| 1353 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1354 | addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, |
Devang Patel | c1dc8ff | 2010-02-03 20:08:48 +0000 | [diff] [blame] | 1355 | VBaseLocationDie); |
| 1356 | } else |
| 1357 | addBlock(MemberDie, dwarf::DW_AT_data_member_location, 0, MemLocationDie); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1358 | |
| 1359 | if (DT.isProtected()) |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1360 | addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1361 | dwarf::DW_ACCESS_protected); |
| 1362 | else if (DT.isPrivate()) |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1363 | addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1364 | dwarf::DW_ACCESS_private); |
Devang Patel | 2a36160 | 2010-09-29 19:08:08 +0000 | [diff] [blame] | 1365 | // Otherwise C++ member and base classes are considered public. |
| 1366 | else if (DT.getCompileUnit().getLanguage() == dwarf::DW_LANG_C_plus_plus) |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1367 | addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_flag, |
| 1368 | dwarf::DW_ACCESS_public); |
| 1369 | if (DT.isVirtual()) |
| 1370 | addUInt(MemberDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag, |
| 1371 | dwarf::DW_VIRTUALITY_virtual); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1372 | return MemberDie; |
| 1373 | } |
| 1374 | |
Devang Patel | ffe966c | 2009-12-14 16:18:45 +0000 | [diff] [blame] | 1375 | /// createSubprogramDIE - Create new DIE using SP. |
Devang Patel | ee70fa7 | 2010-09-27 23:15:27 +0000 | [diff] [blame] | 1376 | DIE *DwarfDebug::createSubprogramDIE(DISubprogram SP) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1377 | CompileUnit *SPCU = getCompileUnit(SP); |
| 1378 | DIE *SPDie = SPCU->getDIE(SP); |
Devang Patel | ffe966c | 2009-12-14 16:18:45 +0000 | [diff] [blame] | 1379 | if (SPDie) |
| 1380 | return SPDie; |
| 1381 | |
| 1382 | SPDie = new DIE(dwarf::DW_TAG_subprogram); |
Devang Patel | 1eac3e7 | 2010-03-02 17:58:15 +0000 | [diff] [blame] | 1383 | // Constructors and operators for anonymous aggregates do not have names. |
Devang Patel | 6b506cb | 2010-03-02 01:26:20 +0000 | [diff] [blame] | 1384 | if (!SP.getName().empty()) |
| 1385 | addString(SPDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, SP.getName()); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1386 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1387 | StringRef LinkageName = SP.getLinkageName(); |
Devang Patel | 351ca33 | 2010-01-05 01:46:14 +0000 | [diff] [blame] | 1388 | if (!LinkageName.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1389 | addString(SPDie, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string, |
Devang Patel | 351ca33 | 2010-01-05 01:46:14 +0000 | [diff] [blame] | 1390 | getRealLinkageName(LinkageName)); |
| 1391 | |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 1392 | addSourceLine(SPDie, SP); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1393 | |
Devang Patel | 7b172c6 | 2010-10-07 22:03:01 +0000 | [diff] [blame] | 1394 | if (SP.isPrototyped()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1395 | addUInt(SPDie, dwarf::DW_AT_prototyped, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1396 | |
| 1397 | // Add Return Type. |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1398 | DICompositeType SPTy = SP.getType(); |
| 1399 | DIArray Args = SPTy.getTypeArray(); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1400 | unsigned SPTag = SPTy.getTag(); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1401 | |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1402 | if (Args.getNumElements() == 0 || SPTag != dwarf::DW_TAG_subroutine_type) |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1403 | addType(SPDie, SPTy); |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1404 | else |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1405 | addType(SPDie, DIType(Args.getElement(0))); |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1406 | |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1407 | unsigned VK = SP.getVirtuality(); |
| 1408 | if (VK) { |
| 1409 | addUInt(SPDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_flag, VK); |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 1410 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1411 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu); |
Devang Patel | d639c7c | 2010-12-09 00:10:40 +0000 | [diff] [blame] | 1412 | addUInt(Block, 0, dwarf::DW_FORM_udata, SP.getVirtualIndex()); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1413 | addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, 0, Block); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1414 | ContainingTypeMap.insert(std::make_pair(SPDie, |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1415 | SP.getContainingType())); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 1416 | } |
| 1417 | |
Devang Patel | ee70fa7 | 2010-09-27 23:15:27 +0000 | [diff] [blame] | 1418 | if (!SP.isDefinition()) { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1419 | addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1420 | |
| 1421 | // Add arguments. Do not add arguments for subprogram definition. They will |
Devang Patel | 1d5cc1d | 2009-12-03 01:25:38 +0000 | [diff] [blame] | 1422 | // be handled while processing variables. |
| 1423 | DICompositeType SPTy = SP.getType(); |
| 1424 | DIArray Args = SPTy.getTypeArray(); |
| 1425 | unsigned SPTag = SPTy.getTag(); |
| 1426 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1427 | if (SPTag == dwarf::DW_TAG_subroutine_type) |
| 1428 | for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) { |
| 1429 | DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1430 | DIType ATy = DIType(DIType(Args.getElement(i))); |
Devang Patel | b464564 | 2010-02-06 01:02:37 +0000 | [diff] [blame] | 1431 | addType(Arg, ATy); |
| 1432 | if (ATy.isArtificial()) |
| 1433 | addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1434 | SPDie->addChild(Arg); |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1435 | } |
| 1436 | } |
| 1437 | |
Devang Patel | 4e0d19d | 2010-02-03 19:57:19 +0000 | [diff] [blame] | 1438 | if (SP.isArtificial()) |
| 1439 | addUInt(SPDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); |
| 1440 | |
Devang Patel | ccff812 | 2010-04-30 19:38:23 +0000 | [diff] [blame] | 1441 | if (!SP.isLocalToUnit()) |
| 1442 | addUInt(SPDie, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1443 | |
Devang Patel | ccff812 | 2010-04-30 19:38:23 +0000 | [diff] [blame] | 1444 | if (SP.isOptimized()) |
| 1445 | addUInt(SPDie, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1); |
| 1446 | |
Jim Grosbach | 9172900 | 2010-07-21 23:03:52 +0000 | [diff] [blame] | 1447 | if (unsigned isa = Asm->getISAEncoding()) { |
| 1448 | addUInt(SPDie, dwarf::DW_AT_APPLE_isa, dwarf::DW_FORM_flag, isa); |
| 1449 | } |
| 1450 | |
Devang Patel | ccff812 | 2010-04-30 19:38:23 +0000 | [diff] [blame] | 1451 | // DW_TAG_inlined_subroutine may refer to this DIE. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1452 | SPCU->insertDIE(SP, SPDie); |
Devang Patel | ccff812 | 2010-04-30 19:38:23 +0000 | [diff] [blame] | 1453 | |
Stuart Hastings | 215aa15 | 2010-06-11 20:08:44 +0000 | [diff] [blame] | 1454 | // Add to context owner. |
| 1455 | addToContextOwner(SPDie, SP.getContext()); |
| 1456 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 1457 | return SPDie; |
| 1458 | } |
| 1459 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 1460 | DbgScope *DwarfDebug::getOrCreateAbstractScope(const MDNode *N) { |
Chris Lattner | ed7a77b | 2010-03-31 05:36:29 +0000 | [diff] [blame] | 1461 | assert(N && "Invalid Scope encoding!"); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1462 | |
| 1463 | DbgScope *AScope = AbstractScopes.lookup(N); |
| 1464 | if (AScope) |
| 1465 | return AScope; |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1466 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1467 | DbgScope *Parent = NULL; |
| 1468 | |
| 1469 | DIDescriptor Scope(N); |
| 1470 | if (Scope.isLexicalBlock()) { |
| 1471 | DILexicalBlock DB(N); |
| 1472 | DIDescriptor ParentDesc = DB.getContext(); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1473 | Parent = getOrCreateAbstractScope(ParentDesc); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1474 | } |
| 1475 | |
| 1476 | AScope = new DbgScope(Parent, DIDescriptor(N), NULL); |
| 1477 | |
| 1478 | if (Parent) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1479 | Parent->addScope(AScope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1480 | AScope->setAbstractScope(); |
| 1481 | AbstractScopes[N] = AScope; |
| 1482 | if (DIDescriptor(N).isSubprogram()) |
| 1483 | AbstractScopesList.push_back(AScope); |
| 1484 | return AScope; |
| 1485 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1486 | |
Devang Patel | 5f09400 | 2010-04-06 23:53:48 +0000 | [diff] [blame] | 1487 | /// isSubprogramContext - Return true if Context is either a subprogram |
| 1488 | /// or another context nested inside a subprogram. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 1489 | static bool isSubprogramContext(const MDNode *Context) { |
Devang Patel | 5f09400 | 2010-04-06 23:53:48 +0000 | [diff] [blame] | 1490 | if (!Context) |
| 1491 | return false; |
| 1492 | DIDescriptor D(Context); |
| 1493 | if (D.isSubprogram()) |
| 1494 | return true; |
| 1495 | if (D.isType()) |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1496 | return isSubprogramContext(DIType(Context).getContext()); |
Devang Patel | 5f09400 | 2010-04-06 23:53:48 +0000 | [diff] [blame] | 1497 | return false; |
| 1498 | } |
| 1499 | |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1500 | /// updateSubprogramScopeDIE - Find DIE for the given subprogram and |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1501 | /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes. |
| 1502 | /// If there are global variables in this scope then create and insert |
| 1503 | /// DIEs for these variables. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 1504 | DIE *DwarfDebug::updateSubprogramScopeDIE(const MDNode *SPNode) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1505 | CompileUnit *SPCU = getCompileUnit(SPNode); |
| 1506 | DIE *SPDie = SPCU->getDIE(SPNode); |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 1507 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1508 | assert(SPDie && "Unable to find subprogram DIE!"); |
| 1509 | DISubprogram SP(SPNode); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1510 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1511 | // There is not any need to generate specification DIE for a function |
| 1512 | // defined at compile unit level. If a function is defined inside another |
| 1513 | // function then gdb prefers the definition at top level and but does not |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1514 | // expect specification DIE in parent function. So avoid creating |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1515 | // specification DIE for a function defined inside a function. |
| 1516 | if (SP.isDefinition() && !SP.getContext().isCompileUnit() && |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1517 | !SP.getContext().isFile() && |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1518 | !isSubprogramContext(SP.getContext())) { |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1519 | addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1520 | |
| 1521 | // Add arguments. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1522 | DICompositeType SPTy = SP.getType(); |
| 1523 | DIArray Args = SPTy.getTypeArray(); |
| 1524 | unsigned SPTag = SPTy.getTag(); |
| 1525 | if (SPTag == dwarf::DW_TAG_subroutine_type) |
| 1526 | for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) { |
| 1527 | DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1528 | DIType ATy = DIType(DIType(Args.getElement(i))); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1529 | addType(Arg, ATy); |
| 1530 | if (ATy.isArtificial()) |
| 1531 | addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); |
| 1532 | SPDie->addChild(Arg); |
| 1533 | } |
| 1534 | DIE *SPDeclDie = SPDie; |
| 1535 | SPDie = new DIE(dwarf::DW_TAG_subprogram); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1536 | addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4, |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1537 | SPDeclDie); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1538 | SPCU->addDie(SPDie); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1539 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1540 | |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 1541 | // Pick up abstract subprogram DIE. |
| 1542 | if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) { |
| 1543 | SPDie = new DIE(dwarf::DW_TAG_subprogram); |
| 1544 | addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin, |
| 1545 | dwarf::DW_FORM_ref4, AbsSPDIE); |
| 1546 | SPCU->addDie(SPDie); |
| 1547 | } |
| 1548 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1549 | addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, |
| 1550 | Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber())); |
| 1551 | addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, |
| 1552 | Asm->GetTempSymbol("func_end", Asm->getFunctionNumber())); |
| 1553 | const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo(); |
| 1554 | MachineLocation Location(RI->getFrameRegister(*Asm->MF)); |
| 1555 | addAddress(SPDie, dwarf::DW_AT_frame_base, Location); |
Devang Patel | b464564 | 2010-02-06 01:02:37 +0000 | [diff] [blame] | 1556 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1557 | return SPDie; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1558 | } |
| 1559 | |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1560 | /// constructLexicalScope - Construct new DW_TAG_lexical_block |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1561 | /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels. |
| 1562 | DIE *DwarfDebug::constructLexicalScopeDIE(DbgScope *Scope) { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1563 | |
| 1564 | DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block); |
| 1565 | if (Scope->isAbstractScope()) |
| 1566 | return ScopeDIE; |
| 1567 | |
| 1568 | const SmallVector<DbgRange, 4> &Ranges = Scope->getRanges(); |
| 1569 | if (Ranges.empty()) |
| 1570 | return 0; |
| 1571 | |
| 1572 | SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin(); |
| 1573 | if (Ranges.size() > 1) { |
| 1574 | // .debug_range section has not been laid out yet. Emit offset in |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1575 | // .debug_range as a uint, size 4, for now. emitDIE will handle |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1576 | // DW_AT_ranges appropriately. |
| 1577 | addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4, |
| 1578 | DebugRangeSymbols.size() * Asm->getTargetData().getPointerSize()); |
| 1579 | for (SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin(), |
| 1580 | RE = Ranges.end(); RI != RE; ++RI) { |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1581 | DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first)); |
| 1582 | DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second)); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1583 | } |
| 1584 | DebugRangeSymbols.push_back(NULL); |
| 1585 | DebugRangeSymbols.push_back(NULL); |
| 1586 | return ScopeDIE; |
| 1587 | } |
| 1588 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1589 | const MCSymbol *Start = getLabelBeforeInsn(RI->first); |
| 1590 | const MCSymbol *End = getLabelAfterInsn(RI->second); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1591 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1592 | if (End == 0) return 0; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1593 | |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 1594 | assert(Start->isDefined() && "Invalid starting label for an inlined scope!"); |
| 1595 | assert(End->isDefined() && "Invalid end label for an inlined scope!"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1596 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1597 | addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start); |
| 1598 | addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1599 | |
| 1600 | return ScopeDIE; |
| 1601 | } |
| 1602 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1603 | /// constructInlinedScopeDIE - This scope represents inlined body of |
| 1604 | /// a function. Construct DIE to represent this concrete inlined copy |
| 1605 | /// of the function. |
| 1606 | DIE *DwarfDebug::constructInlinedScopeDIE(DbgScope *Scope) { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1607 | |
| 1608 | const SmallVector<DbgRange, 4> &Ranges = Scope->getRanges(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1609 | assert (Ranges.empty() == false |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1610 | && "DbgScope does not have instruction markers!"); |
| 1611 | |
| 1612 | // FIXME : .debug_inlined section specification does not clearly state how |
| 1613 | // to emit inlined scope that is split into multiple instruction ranges. |
| 1614 | // For now, use first instruction range and emit low_pc/high_pc pair and |
| 1615 | // corresponding .debug_inlined section entry for this pair. |
| 1616 | SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin(); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1617 | const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first); |
| 1618 | const MCSymbol *EndLabel = getLabelAfterInsn(RI->second); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1619 | |
Devang Patel | 0afbf23 | 2010-07-08 22:39:20 +0000 | [diff] [blame] | 1620 | if (StartLabel == 0 || EndLabel == 0) { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1621 | assert (0 && "Unexpected Start and End labels for a inlined scope!"); |
| 1622 | return 0; |
| 1623 | } |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 1624 | assert(StartLabel->isDefined() && |
Chris Lattner | a34ec229 | 2010-03-09 01:51:43 +0000 | [diff] [blame] | 1625 | "Invalid starting label for an inlined scope!"); |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 1626 | assert(EndLabel->isDefined() && |
Chris Lattner | a34ec229 | 2010-03-09 01:51:43 +0000 | [diff] [blame] | 1627 | "Invalid end label for an inlined scope!"); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1628 | |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1629 | if (!Scope->getScopeNode()) |
Devang Patel | 0ef3fa6 | 2010-03-08 19:20:38 +0000 | [diff] [blame] | 1630 | return NULL; |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1631 | DIScope DS(Scope->getScopeNode()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1632 | DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine); |
| 1633 | |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1634 | DISubprogram InlinedSP = getDISubprogram(DS); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1635 | CompileUnit *TheCU = getCompileUnit(InlinedSP); |
| 1636 | DIE *OriginDIE = TheCU->getDIE(InlinedSP); |
Chris Lattner | ed7a77b | 2010-03-31 05:36:29 +0000 | [diff] [blame] | 1637 | assert(OriginDIE && "Unable to find Origin DIE!"); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1638 | addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1639 | dwarf::DW_FORM_ref4, OriginDIE); |
| 1640 | |
Chris Lattner | 6ed0f90 | 2010-03-09 00:31:02 +0000 | [diff] [blame] | 1641 | addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, StartLabel); |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 1642 | addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, EndLabel); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1643 | |
| 1644 | InlinedSubprogramDIEs.insert(OriginDIE); |
| 1645 | |
| 1646 | // Track the start label for this inlined function. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 1647 | DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1648 | I = InlineInfo.find(InlinedSP); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1649 | |
| 1650 | if (I == InlineInfo.end()) { |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1651 | InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 1652 | ScopeDIE)); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1653 | InlinedSPNodes.push_back(InlinedSP); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1654 | } else |
Chris Lattner | 6ed0f90 | 2010-03-09 00:31:02 +0000 | [diff] [blame] | 1655 | I->second.push_back(std::make_pair(StartLabel, ScopeDIE)); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1656 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1657 | DILocation DL(Scope->getInlinedAt()); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1658 | addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, TheCU->getID()); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1659 | addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1660 | |
| 1661 | return ScopeDIE; |
| 1662 | } |
| 1663 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1664 | |
| 1665 | /// constructVariableDIE - Construct a DIE for the given DbgVariable. |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1666 | DIE *DwarfDebug::constructVariableDIE(DbgVariable *DV, DbgScope *Scope) { |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 1667 | StringRef Name = DV->getName(); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1668 | if (Name.empty()) |
Devang Patel | 3fb6bd6 | 2009-11-13 02:25:26 +0000 | [diff] [blame] | 1669 | return NULL; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1670 | |
| 1671 | // Translate tag to proper Dwarf tag. The result variable is dropped for |
| 1672 | // now. |
| 1673 | unsigned Tag; |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 1674 | switch (DV->getTag()) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1675 | case dwarf::DW_TAG_return_variable: |
| 1676 | return NULL; |
| 1677 | case dwarf::DW_TAG_arg_variable: |
| 1678 | Tag = dwarf::DW_TAG_formal_parameter; |
| 1679 | break; |
| 1680 | case dwarf::DW_TAG_auto_variable: // fall thru |
| 1681 | default: |
| 1682 | Tag = dwarf::DW_TAG_variable; |
| 1683 | break; |
| 1684 | } |
| 1685 | |
| 1686 | // Define variable debug information entry. |
| 1687 | DIE *VariableDie = new DIE(Tag); |
| 1688 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1689 | DIE *AbsDIE = NULL; |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 1690 | DenseMap<const DbgVariable *, const DbgVariable *>::iterator |
| 1691 | V2AVI = VarToAbstractVarMap.find(DV); |
| 1692 | if (V2AVI != VarToAbstractVarMap.end()) |
| 1693 | AbsDIE = V2AVI->second->getDIE(); |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 1694 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 1695 | if (AbsDIE) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1696 | addDIEEntry(VariableDie, dwarf::DW_AT_abstract_origin, |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1697 | dwarf::DW_FORM_ref4, AbsDIE); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1698 | else { |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1699 | addString(VariableDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, Name); |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 1700 | addSourceLine(VariableDie, DV->getVariable()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1701 | |
| 1702 | // Add variable type. |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 1703 | addType(VariableDie, DV->getType()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1704 | } |
| 1705 | |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 1706 | if (Tag == dwarf::DW_TAG_formal_parameter && DV->getType().isArtificial()) |
Devang Patel | b464564 | 2010-02-06 01:02:37 +0000 | [diff] [blame] | 1707 | addUInt(VariableDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); |
Devang Patel | 3cf763d | 2010-09-29 23:07:21 +0000 | [diff] [blame] | 1708 | else if (DIVariable(DV->getVariable()).isArtificial()) |
| 1709 | addUInt(VariableDie, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1710 | |
| 1711 | if (Scope->isAbstractScope()) { |
| 1712 | DV->setDIE(VariableDie); |
| 1713 | return VariableDie; |
| 1714 | } |
| 1715 | |
| 1716 | // Add variable address. |
| 1717 | |
| 1718 | unsigned Offset = DV->getDotDebugLocOffset(); |
| 1719 | if (Offset != ~0U) { |
| 1720 | addLabel(VariableDie, dwarf::DW_AT_location, dwarf::DW_FORM_data4, |
| 1721 | Asm->GetTempSymbol("debug_loc", Offset)); |
| 1722 | DV->setDIE(VariableDie); |
| 1723 | UseDotDebugLocEntry.insert(VariableDie); |
| 1724 | return VariableDie; |
| 1725 | } |
| 1726 | |
| 1727 | // Check if variable is described by a DBG_VALUE instruction. |
| 1728 | DenseMap<const DbgVariable *, const MachineInstr *>::iterator DVI = |
| 1729 | DbgVariableToDbgInstMap.find(DV); |
| 1730 | if (DVI != DbgVariableToDbgInstMap.end()) { |
| 1731 | const MachineInstr *DVInsn = DVI->second; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1732 | bool updated = false; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1733 | // FIXME : Handle getNumOperands != 3 |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1734 | if (DVInsn->getNumOperands() == 3) { |
Devang Patel | 0b48ead | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 1735 | if (DVInsn->getOperand(0).isReg()) { |
| 1736 | const MachineOperand RegOp = DVInsn->getOperand(0); |
| 1737 | const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo(); |
| 1738 | if (DVInsn->getOperand(1).isImm() && |
| 1739 | TRI->getFrameRegister(*Asm->MF) == RegOp.getReg()) { |
| 1740 | addVariableAddress(DV, VariableDie, DVInsn->getOperand(1).getImm()); |
| 1741 | updated = true; |
| 1742 | } else |
Devang Patel | 522ad74 | 2010-11-12 23:20:42 +0000 | [diff] [blame] | 1743 | updated = addRegisterAddress(VariableDie, RegOp); |
Devang Patel | 0b48ead | 2010-08-31 22:22:42 +0000 | [diff] [blame] | 1744 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1745 | else if (DVInsn->getOperand(0).isImm()) |
Devang Patel | 522ad74 | 2010-11-12 23:20:42 +0000 | [diff] [blame] | 1746 | updated = addConstantValue(VariableDie, DVInsn->getOperand(0)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1747 | else if (DVInsn->getOperand(0).isFPImm()) |
| 1748 | updated = |
Devang Patel | 522ad74 | 2010-11-12 23:20:42 +0000 | [diff] [blame] | 1749 | addConstantFPValue(VariableDie, DVInsn->getOperand(0)); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1750 | } else { |
| 1751 | MachineLocation Location = Asm->getDebugValueLocation(DVInsn); |
| 1752 | if (Location.getReg()) { |
| 1753 | addAddress(VariableDie, dwarf::DW_AT_location, Location); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1754 | updated = true; |
| 1755 | } |
| 1756 | } |
| 1757 | if (!updated) { |
| 1758 | // If variableDie is not updated then DBG_VALUE instruction does not |
| 1759 | // have valid variable info. |
| 1760 | delete VariableDie; |
| 1761 | return NULL; |
| 1762 | } |
| 1763 | DV->setDIE(VariableDie); |
| 1764 | return VariableDie; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1765 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1766 | |
| 1767 | // .. else use frame index, if available. |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1768 | int FI = 0; |
Devang Patel | 9e3bd2c | 2010-08-31 06:11:28 +0000 | [diff] [blame] | 1769 | if (findVariableFrameIndex(DV, &FI)) |
| 1770 | addVariableAddress(DV, VariableDie, FI); |
| 1771 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1772 | DV->setDIE(VariableDie); |
| 1773 | return VariableDie; |
| 1774 | |
| 1775 | } |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1776 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1777 | void DwarfDebug::addPubTypes(DISubprogram SP) { |
| 1778 | DICompositeType SPTy = SP.getType(); |
| 1779 | unsigned SPTag = SPTy.getTag(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1780 | if (SPTag != dwarf::DW_TAG_subroutine_type) |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1781 | return; |
| 1782 | |
| 1783 | DIArray Args = SPTy.getTypeArray(); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1784 | for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) { |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1785 | DIType ATy(Args.getElement(i)); |
Devang Patel | 9c00487 | 2010-05-07 21:45:47 +0000 | [diff] [blame] | 1786 | if (!ATy.Verify()) |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1787 | continue; |
| 1788 | DICompositeType CATy = getDICompositeType(ATy); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1789 | if (DIDescriptor(CATy).Verify() && !CATy.getName().empty() |
Devang Patel | 50d80e3 | 2010-04-13 20:35:04 +0000 | [diff] [blame] | 1790 | && !CATy.isForwardDecl()) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1791 | CompileUnit *TheCU = getCompileUnit(CATy); |
| 1792 | if (DIEEntry *Entry = TheCU->getDIEEntry(CATy)) |
| 1793 | TheCU->addGlobalType(CATy.getName(), Entry->getEntry()); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1794 | } |
| 1795 | } |
| 1796 | } |
| 1797 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1798 | /// constructScopeDIE - Construct a DIE for this scope. |
| 1799 | DIE *DwarfDebug::constructScopeDIE(DbgScope *Scope) { |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1800 | if (!Scope || !Scope->getScopeNode()) |
| 1801 | return NULL; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1802 | |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 1803 | SmallVector <DIE *, 8> Children; |
| 1804 | // Collect lexical scope childrens first. |
| 1805 | const SmallVector<DbgVariable *, 8> &Variables = Scope->getDbgVariables(); |
| 1806 | for (unsigned i = 0, N = Variables.size(); i < N; ++i) |
| 1807 | if (DIE *Variable = constructVariableDIE(Variables[i], Scope)) |
| 1808 | Children.push_back(Variable); |
| 1809 | const SmallVector<DbgScope *, 4> &Scopes = Scope->getScopes(); |
| 1810 | for (unsigned j = 0, M = Scopes.size(); j < M; ++j) |
| 1811 | if (DIE *Nested = constructScopeDIE(Scopes[j])) |
| 1812 | Children.push_back(Nested); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1813 | DIScope DS(Scope->getScopeNode()); |
| 1814 | DIE *ScopeDIE = NULL; |
| 1815 | if (Scope->getInlinedAt()) |
| 1816 | ScopeDIE = constructInlinedScopeDIE(Scope); |
| 1817 | else if (DS.isSubprogram()) { |
Devang Patel | 0dd4558 | 2010-06-28 20:53:04 +0000 | [diff] [blame] | 1818 | ProcessedSPNodes.insert(DS); |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 1819 | if (Scope->isAbstractScope()) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1820 | ScopeDIE = getCompileUnit(DS)->getDIE(DS); |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 1821 | // Note down abstract DIE. |
| 1822 | if (ScopeDIE) |
| 1823 | AbstractSPDies.insert(std::make_pair(DS, ScopeDIE)); |
| 1824 | } |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1825 | else |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1826 | ScopeDIE = updateSubprogramScopeDIE(DS); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1827 | } |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 1828 | else { |
| 1829 | // There is no need to emit empty lexical block DIE. |
| 1830 | if (Children.empty()) |
| 1831 | return NULL; |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 1832 | ScopeDIE = constructLexicalScopeDIE(Scope); |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 1833 | } |
| 1834 | |
Devang Patel | aead63c | 2010-03-29 22:59:58 +0000 | [diff] [blame] | 1835 | if (!ScopeDIE) return NULL; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1836 | |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 1837 | // Add children |
| 1838 | for (SmallVector<DIE *, 8>::iterator I = Children.begin(), |
| 1839 | E = Children.end(); I != E; ++I) |
| 1840 | ScopeDIE->addChild(*I); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1841 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1842 | if (DS.isSubprogram()) |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 1843 | addPubTypes(DISubprogram(DS)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1844 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1845 | return ScopeDIE; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1846 | } |
| 1847 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1848 | /// GetOrCreateSourceID - Look up the source id with the given directory and |
| 1849 | /// source file names. If none currently exists, create a new id and insert it |
| 1850 | /// in the SourceIds map. This can update DirectoryNames and SourceFileNames |
| 1851 | /// maps as well. |
Devang Patel | 2f58485 | 2010-07-24 00:53:22 +0000 | [diff] [blame] | 1852 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 1853 | unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName){ |
Devang Patel | 1905a18 | 2010-09-16 20:57:49 +0000 | [diff] [blame] | 1854 | // If FE did not provide a file name, then assume stdin. |
| 1855 | if (FileName.empty()) |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 1856 | return GetOrCreateSourceID("<stdin>"); |
Devang Patel | 1905a18 | 2010-09-16 20:57:49 +0000 | [diff] [blame] | 1857 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 1858 | StringMapEntry<unsigned> &Entry = SourceIdMap.GetOrCreateValue(FileName); |
| 1859 | if (Entry.getValue()) |
| 1860 | return Entry.getValue(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1861 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 1862 | unsigned SrcId = SourceIdMap.size(); |
| 1863 | Entry.setValue(SrcId); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1864 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 1865 | // Print out a .file directive to specify files for .loc directives. |
| 1866 | Asm->OutStreamer.EmitDwarfFileDirective(SrcId, FileName); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1867 | |
| 1868 | return SrcId; |
| 1869 | } |
| 1870 | |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 1871 | /// getOrCreateNameSpace - Create a DIE for DINameSpace. |
| 1872 | DIE *DwarfDebug::getOrCreateNameSpace(DINameSpace NS) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1873 | CompileUnit *TheCU = getCompileUnit(NS); |
| 1874 | DIE *NDie = TheCU->getDIE(NS); |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 1875 | if (NDie) |
| 1876 | return NDie; |
| 1877 | NDie = new DIE(dwarf::DW_TAG_namespace); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1878 | TheCU->insertDIE(NS, NDie); |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 1879 | if (!NS.getName().empty()) |
| 1880 | addString(NDie, dwarf::DW_AT_name, dwarf::DW_FORM_string, NS.getName()); |
Devang Patel | 8162574 | 2010-08-09 20:20:05 +0000 | [diff] [blame] | 1881 | addSourceLine(NDie, NS); |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 1882 | addToContextOwner(NDie, NS.getContext()); |
| 1883 | return NDie; |
| 1884 | } |
| 1885 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1886 | /// constructCompileUnit - Create new CompileUnit for the given |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1887 | /// metadata node with tag DW_TAG_compile_unit. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 1888 | void DwarfDebug::constructCompileUnit(const MDNode *N) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 1889 | DICompileUnit DIUnit(N); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1890 | StringRef FN = DIUnit.getFilename(); |
| 1891 | StringRef Dir = DIUnit.getDirectory(); |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 1892 | unsigned ID = GetOrCreateSourceID(FN); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1893 | |
| 1894 | DIE *Die = new DIE(dwarf::DW_TAG_compile_unit); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1895 | addString(Die, dwarf::DW_AT_producer, dwarf::DW_FORM_string, |
Devang Patel | 5ccdd10 | 2009-09-29 18:40:58 +0000 | [diff] [blame] | 1896 | DIUnit.getProducer()); |
Devang Patel | 3a4ae32 | 2011-02-23 22:37:04 +0000 | [diff] [blame] | 1897 | addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2, |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1898 | DIUnit.getLanguage()); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1899 | addString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN); |
Devang Patel | 5098da0 | 2010-04-26 22:54:28 +0000 | [diff] [blame] | 1900 | // Use DW_AT_entry_pc instead of DW_AT_low_pc/DW_AT_high_pc pair. This |
| 1901 | // simplifies debug range entries. |
Devang Patel | 9b93b6b | 2010-06-28 22:22:47 +0000 | [diff] [blame] | 1902 | addUInt(Die, dwarf::DW_AT_entry_pc, dwarf::DW_FORM_addr, 0); |
Devang Patel | 4a602ca | 2010-03-22 23:11:36 +0000 | [diff] [blame] | 1903 | // DW_AT_stmt_list is a offset of line number information for this |
Devang Patel | af608bd | 2010-08-24 00:06:12 +0000 | [diff] [blame] | 1904 | // compile unit in debug_line section. |
Devang Patel | ae84d5b | 2010-08-31 23:50:19 +0000 | [diff] [blame] | 1905 | if (Asm->MAI->doesDwarfUsesAbsoluteLabelForStmtList()) |
| 1906 | addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_addr, |
| 1907 | Asm->GetTempSymbol("section_line")); |
| 1908 | else |
| 1909 | addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1910 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1911 | if (!Dir.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1912 | addString(Die, dwarf::DW_AT_comp_dir, dwarf::DW_FORM_string, Dir); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1913 | if (DIUnit.isOptimized()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1914 | addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1915 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1916 | StringRef Flags = DIUnit.getFlags(); |
| 1917 | if (!Flags.empty()) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1918 | addString(Die, dwarf::DW_AT_APPLE_flags, dwarf::DW_FORM_string, Flags); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1919 | |
| 1920 | unsigned RVer = DIUnit.getRunTimeVersion(); |
| 1921 | if (RVer) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1922 | addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers, |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1923 | dwarf::DW_FORM_data1, RVer); |
| 1924 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1925 | CompileUnit *NewCU = new CompileUnit(ID, Die); |
| 1926 | if (!FirstCU) |
| 1927 | FirstCU = NewCU; |
| 1928 | CUMap.insert(std::make_pair(N, NewCU)); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1929 | } |
| 1930 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1931 | /// getCompielUnit - Get CompileUnit DIE. |
| 1932 | CompileUnit *DwarfDebug::getCompileUnit(const MDNode *N) const { |
| 1933 | assert (N && "Invalid DwarfDebug::getCompileUnit argument!"); |
| 1934 | DIDescriptor D(N); |
| 1935 | const MDNode *CUNode = NULL; |
| 1936 | if (D.isCompileUnit()) |
| 1937 | CUNode = N; |
| 1938 | else if (D.isSubprogram()) |
| 1939 | CUNode = DISubprogram(N).getCompileUnit(); |
| 1940 | else if (D.isType()) |
| 1941 | CUNode = DIType(N).getCompileUnit(); |
| 1942 | else if (D.isGlobalVariable()) |
| 1943 | CUNode = DIGlobalVariable(N).getCompileUnit(); |
| 1944 | else if (D.isVariable()) |
| 1945 | CUNode = DIVariable(N).getCompileUnit(); |
| 1946 | else if (D.isNameSpace()) |
| 1947 | CUNode = DINameSpace(N).getCompileUnit(); |
| 1948 | else if (D.isFile()) |
| 1949 | CUNode = DIFile(N).getCompileUnit(); |
| 1950 | else |
| 1951 | return FirstCU; |
| 1952 | |
| 1953 | DenseMap<const MDNode *, CompileUnit *>::const_iterator I |
| 1954 | = CUMap.find(CUNode); |
| 1955 | if (I == CUMap.end()) |
| 1956 | return FirstCU; |
| 1957 | return I->second; |
| 1958 | } |
| 1959 | |
Devang Patel | 0c4720c | 2010-08-23 18:25:56 +0000 | [diff] [blame] | 1960 | /// isUnsignedDIType - Return true if type encoding is unsigned. |
| 1961 | static bool isUnsignedDIType(DIType Ty) { |
| 1962 | DIDerivedType DTy(Ty); |
| 1963 | if (DTy.Verify()) |
| 1964 | return isUnsignedDIType(DTy.getTypeDerivedFrom()); |
| 1965 | |
| 1966 | DIBasicType BTy(Ty); |
| 1967 | if (BTy.Verify()) { |
| 1968 | unsigned Encoding = BTy.getEncoding(); |
| 1969 | if (Encoding == dwarf::DW_ATE_unsigned || |
| 1970 | Encoding == dwarf::DW_ATE_unsigned_char) |
| 1971 | return true; |
| 1972 | } |
| 1973 | return false; |
| 1974 | } |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1975 | |
Devang Patel | e449d1f | 2011-01-20 00:02:16 +0000 | [diff] [blame] | 1976 | // Return const exprssion if value is a GEP to access merged global |
| 1977 | // constant. e.g. |
| 1978 | // i8* getelementptr ({ i8, i8, i8, i8 }* @_MergedGlobals, i32 0, i32 0) |
| 1979 | static const ConstantExpr *getMergedGlobalExpr(const Value *V) { |
| 1980 | const ConstantExpr *CE = dyn_cast_or_null<ConstantExpr>(V); |
| 1981 | if (!CE || CE->getNumOperands() != 3 || |
| 1982 | CE->getOpcode() != Instruction::GetElementPtr) |
| 1983 | return NULL; |
| 1984 | |
| 1985 | // First operand points to a global value. |
| 1986 | if (!isa<GlobalValue>(CE->getOperand(0))) |
| 1987 | return NULL; |
| 1988 | |
| 1989 | // Second operand is zero. |
| 1990 | const ConstantInt *CI = |
| 1991 | dyn_cast_or_null<ConstantInt>(CE->getOperand(1)); |
| 1992 | if (!CI || !CI->isZero()) |
| 1993 | return NULL; |
| 1994 | |
| 1995 | // Third operand is offset. |
| 1996 | if (!isa<ConstantInt>(CE->getOperand(2))) |
| 1997 | return NULL; |
| 1998 | |
| 1999 | return CE; |
| 2000 | } |
| 2001 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2002 | /// constructGlobalVariableDIE - Construct global variable DIE. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2003 | void DwarfDebug::constructGlobalVariableDIE(const MDNode *N) { |
Devang Patel | 9fa539c | 2010-08-10 01:37:23 +0000 | [diff] [blame] | 2004 | DIGlobalVariable GV(N); |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 2005 | |
Devang Patel | 905cf5e | 2009-09-04 23:59:07 +0000 | [diff] [blame] | 2006 | // If debug information is malformed then ignore it. |
Devang Patel | 9fa539c | 2010-08-10 01:37:23 +0000 | [diff] [blame] | 2007 | if (GV.Verify() == false) |
Devang Patel | 905cf5e | 2009-09-04 23:59:07 +0000 | [diff] [blame] | 2008 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2009 | |
| 2010 | // Check for pre-existence. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2011 | CompileUnit *TheCU = getCompileUnit(N); |
Devang Patel | 9fa539c | 2010-08-10 01:37:23 +0000 | [diff] [blame] | 2012 | if (TheCU->getDIE(GV)) |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 2013 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2014 | |
Devang Patel | 9fa539c | 2010-08-10 01:37:23 +0000 | [diff] [blame] | 2015 | DIType GTy = GV.getType(); |
Devang Patel | 2936807 | 2010-08-10 07:11:13 +0000 | [diff] [blame] | 2016 | DIE *VariableDIE = new DIE(GV.getTag()); |
| 2017 | |
| 2018 | bool isGlobalVariable = GV.getGlobal() != NULL; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2019 | |
Devang Patel | 9fa539c | 2010-08-10 01:37:23 +0000 | [diff] [blame] | 2020 | // Add name. |
| 2021 | addString(VariableDIE, dwarf::DW_AT_name, dwarf::DW_FORM_string, |
| 2022 | GV.getDisplayName()); |
| 2023 | StringRef LinkageName = GV.getLinkageName(); |
Devang Patel | 2936807 | 2010-08-10 07:11:13 +0000 | [diff] [blame] | 2024 | if (!LinkageName.empty() && isGlobalVariable) |
Devang Patel | 9fa539c | 2010-08-10 01:37:23 +0000 | [diff] [blame] | 2025 | addString(VariableDIE, dwarf::DW_AT_MIPS_linkage_name, dwarf::DW_FORM_string, |
| 2026 | getRealLinkageName(LinkageName)); |
| 2027 | // Add type. |
| 2028 | addType(VariableDIE, GTy); |
Devang Patel | 50d80e3 | 2010-04-13 20:35:04 +0000 | [diff] [blame] | 2029 | if (GTy.isCompositeType() && !GTy.getName().empty() |
| 2030 | && !GTy.isForwardDecl()) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2031 | DIEEntry *Entry = TheCU->getDIEEntry(GTy); |
Chris Lattner | ed7a77b | 2010-03-31 05:36:29 +0000 | [diff] [blame] | 2032 | assert(Entry && "Missing global type!"); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2033 | TheCU->addGlobalType(GTy.getName(), Entry->getEntry()); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 2034 | } |
Devang Patel | 9fa539c | 2010-08-10 01:37:23 +0000 | [diff] [blame] | 2035 | // Add scoping info. |
| 2036 | if (!GV.isLocalToUnit()) { |
| 2037 | addUInt(VariableDIE, dwarf::DW_AT_external, dwarf::DW_FORM_flag, 1); |
| 2038 | // Expose as global. |
| 2039 | TheCU->addGlobal(GV.getName(), VariableDIE); |
| 2040 | } |
| 2041 | // Add line number info. |
| 2042 | addSourceLine(VariableDIE, GV); |
| 2043 | // Add to map. |
| 2044 | TheCU->insertDIE(N, VariableDIE); |
| 2045 | // Add to context owner. |
| 2046 | DIDescriptor GVContext = GV.getContext(); |
| 2047 | addToContextOwner(VariableDIE, GVContext); |
| 2048 | // Add location. |
Devang Patel | 2936807 | 2010-08-10 07:11:13 +0000 | [diff] [blame] | 2049 | if (isGlobalVariable) { |
| 2050 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
| 2051 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr); |
| 2052 | addLabel(Block, 0, dwarf::DW_FORM_udata, |
| 2053 | Asm->Mang->getSymbol(GV.getGlobal())); |
| 2054 | // Do not create specification DIE if context is either compile unit |
| 2055 | // or a subprogram. |
| 2056 | if (GV.isDefinition() && !GVContext.isCompileUnit() && |
| 2057 | !GVContext.isFile() && !isSubprogramContext(GVContext)) { |
| 2058 | // Create specification DIE. |
| 2059 | DIE *VariableSpecDIE = new DIE(dwarf::DW_TAG_variable); |
| 2060 | addDIEEntry(VariableSpecDIE, dwarf::DW_AT_specification, |
| 2061 | dwarf::DW_FORM_ref4, VariableDIE); |
| 2062 | addBlock(VariableSpecDIE, dwarf::DW_AT_location, 0, Block); |
| 2063 | addUInt(VariableDIE, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
| 2064 | TheCU->addDie(VariableSpecDIE); |
| 2065 | } else { |
| 2066 | addBlock(VariableDIE, dwarf::DW_AT_location, 0, Block); |
| 2067 | } |
Devang Patel | 76a788c | 2011-01-06 21:39:25 +0000 | [diff] [blame] | 2068 | } else if (ConstantInt *CI = |
| 2069 | dyn_cast_or_null<ConstantInt>(GV.getConstant())) |
| 2070 | addConstantValue(VariableDIE, CI, isUnsignedDIType(GTy)); |
Devang Patel | e449d1f | 2011-01-20 00:02:16 +0000 | [diff] [blame] | 2071 | else if (const ConstantExpr *CE = getMergedGlobalExpr(N->getOperand(11))) { |
| 2072 | // GV is a merged global. |
| 2073 | DIEBlock *Block = new (DIEValueAllocator) DIEBlock(); |
| 2074 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_addr); |
| 2075 | addLabel(Block, 0, dwarf::DW_FORM_udata, |
| 2076 | Asm->Mang->getSymbol(cast<GlobalValue>(CE->getOperand(0)))); |
| 2077 | ConstantInt *CII = cast<ConstantInt>(CE->getOperand(2)); |
| 2078 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_constu); |
| 2079 | addUInt(Block, 0, dwarf::DW_FORM_udata, CII->getZExtValue()); |
| 2080 | addUInt(Block, 0, dwarf::DW_FORM_data1, dwarf::DW_OP_plus); |
| 2081 | addBlock(VariableDIE, dwarf::DW_AT_location, 0, Block); |
| 2082 | } |
Devang Patel | 76a788c | 2011-01-06 21:39:25 +0000 | [diff] [blame] | 2083 | |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 2084 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2085 | } |
| 2086 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2087 | /// construct SubprogramDIE - Construct subprogram DIE. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2088 | void DwarfDebug::constructSubprogramDIE(const MDNode *N) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 2089 | DISubprogram SP(N); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2090 | |
Stuart Hastings | 639336e | 2010-04-06 21:38:29 +0000 | [diff] [blame] | 2091 | // Check for pre-existence. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2092 | CompileUnit *TheCU = getCompileUnit(N); |
| 2093 | if (TheCU->getDIE(N)) |
Stuart Hastings | 639336e | 2010-04-06 21:38:29 +0000 | [diff] [blame] | 2094 | return; |
| 2095 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2096 | if (!SP.isDefinition()) |
| 2097 | // This is a method declaration which will be handled while constructing |
| 2098 | // class type. |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 2099 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2100 | |
Stuart Hastings | 639336e | 2010-04-06 21:38:29 +0000 | [diff] [blame] | 2101 | DIE *SubprogramDie = createSubprogramDIE(SP); |
| 2102 | |
| 2103 | // Add to map. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2104 | TheCU->insertDIE(N, SubprogramDie); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2105 | |
| 2106 | // Add to context owner. |
Devang Patel | 6404e4e | 2009-12-15 19:16:48 +0000 | [diff] [blame] | 2107 | addToContextOwner(SubprogramDie, SP.getContext()); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame] | 2108 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2109 | // Expose as global. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2110 | TheCU->addGlobal(SP.getName(), SubprogramDie); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 2111 | |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 2112 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2113 | } |
| 2114 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2115 | /// beginModule - Emit all Dwarf sections that should come prior to the |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 2116 | /// content. Create global DIEs and emit initial debug info sections. |
| 2117 | /// This is inovked by the target AsmPrinter. |
Chris Lattner | 75f5072 | 2010-04-04 07:48:20 +0000 | [diff] [blame] | 2118 | void DwarfDebug::beginModule(Module *M) { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2119 | if (DisableDebugInfoPrinting) |
| 2120 | return; |
| 2121 | |
Devang Patel | 78ab9e2 | 2009-07-30 18:56:46 +0000 | [diff] [blame] | 2122 | DebugInfoFinder DbgFinder; |
| 2123 | DbgFinder.processModule(*M); |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 2124 | |
Chris Lattner | d850ac7 | 2010-04-05 02:19:28 +0000 | [diff] [blame] | 2125 | bool HasDebugInfo = false; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2126 | |
Chris Lattner | d850ac7 | 2010-04-05 02:19:28 +0000 | [diff] [blame] | 2127 | // Scan all the compile-units to see if there are any marked as the main unit. |
| 2128 | // if not, we do not generate debug info. |
| 2129 | for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(), |
| 2130 | E = DbgFinder.compile_unit_end(); I != E; ++I) { |
| 2131 | if (DICompileUnit(*I).isMain()) { |
| 2132 | HasDebugInfo = true; |
| 2133 | break; |
| 2134 | } |
| 2135 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2136 | |
Chris Lattner | d850ac7 | 2010-04-05 02:19:28 +0000 | [diff] [blame] | 2137 | if (!HasDebugInfo) return; |
| 2138 | |
| 2139 | // Tell MMI that we have debug info. |
| 2140 | MMI->setDebugInfoAvailability(true); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2141 | |
Chris Lattner | be15beb | 2010-04-04 23:17:54 +0000 | [diff] [blame] | 2142 | // Emit initial sections. |
Chris Lattner | d850ac7 | 2010-04-05 02:19:28 +0000 | [diff] [blame] | 2143 | EmitSectionLabels(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2144 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2145 | // Create all the compile unit DIEs. |
Devang Patel | 78ab9e2 | 2009-07-30 18:56:46 +0000 | [diff] [blame] | 2146 | for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(), |
| 2147 | E = DbgFinder.compile_unit_end(); I != E; ++I) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2148 | constructCompileUnit(*I); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2149 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2150 | // Create DIEs for each subprogram. |
Devang Patel | 78ab9e2 | 2009-07-30 18:56:46 +0000 | [diff] [blame] | 2151 | for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(), |
| 2152 | E = DbgFinder.subprogram_end(); I != E; ++I) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2153 | constructSubprogramDIE(*I); |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 2154 | |
Devang Patel | c366f83 | 2009-12-10 19:14:49 +0000 | [diff] [blame] | 2155 | // Create DIEs for each global variable. |
| 2156 | for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(), |
| 2157 | E = DbgFinder.global_variable_end(); I != E; ++I) |
| 2158 | constructGlobalVariableDIE(*I); |
| 2159 | |
Devang Patel | e7e5a0f | 2010-08-10 20:01:20 +0000 | [diff] [blame] | 2160 | //getOrCreateTypeDIE |
| 2161 | if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum")) |
| 2162 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) |
| 2163 | getOrCreateTypeDIE(DIType(NMD->getOperand(i))); |
| 2164 | |
Devang Patel | 1a7ca03 | 2010-09-28 18:08:20 +0000 | [diff] [blame] | 2165 | if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty")) |
| 2166 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) |
| 2167 | getOrCreateTypeDIE(DIType(NMD->getOperand(i))); |
| 2168 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2169 | // Prime section data. |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 2170 | SectionMap.insert(Asm->getObjFileLowering().getTextSection()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2171 | } |
| 2172 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2173 | /// endModule - Emit all Dwarf sections that should come after the content. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2174 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2175 | void DwarfDebug::endModule() { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2176 | if (!FirstCU) return; |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 2177 | const Module *M = MMI->getModule(); |
Devang Patel | e9a1cca | 2010-08-02 17:32:15 +0000 | [diff] [blame] | 2178 | DenseMap<const MDNode *, DbgScope *> DeadFnScopeMap; |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 2179 | if (NamedMDNode *AllSPs = M->getNamedMetadata("llvm.dbg.sp")) { |
| 2180 | for (unsigned SI = 0, SE = AllSPs->getNumOperands(); SI != SE; ++SI) { |
| 2181 | if (ProcessedSPNodes.count(AllSPs->getOperand(SI)) != 0) continue; |
| 2182 | DISubprogram SP(AllSPs->getOperand(SI)); |
| 2183 | if (!SP.Verify()) continue; |
| 2184 | |
| 2185 | // Collect info for variables that were optimized out. |
Devang Patel | 8b3a6b6 | 2010-07-19 17:53:55 +0000 | [diff] [blame] | 2186 | if (!SP.isDefinition()) continue; |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 2187 | StringRef FName = SP.getLinkageName(); |
| 2188 | if (FName.empty()) |
| 2189 | FName = SP.getName(); |
Devang Patel | 6236704 | 2010-11-10 22:19:21 +0000 | [diff] [blame] | 2190 | NamedMDNode *NMD = getFnSpecificMDNode(*(MMI->getModule()), FName); |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 2191 | if (!NMD) continue; |
| 2192 | unsigned E = NMD->getNumOperands(); |
| 2193 | if (!E) continue; |
| 2194 | DbgScope *Scope = new DbgScope(NULL, DIDescriptor(SP), NULL); |
Devang Patel | e9a1cca | 2010-08-02 17:32:15 +0000 | [diff] [blame] | 2195 | DeadFnScopeMap[SP] = Scope; |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 2196 | for (unsigned I = 0; I != E; ++I) { |
| 2197 | DIVariable DV(NMD->getOperand(I)); |
| 2198 | if (!DV.Verify()) continue; |
| 2199 | Scope->addVariable(new DbgVariable(DV)); |
| 2200 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2201 | |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 2202 | // Construct subprogram DIE and add variables DIEs. |
| 2203 | constructSubprogramDIE(SP); |
| 2204 | DIE *ScopeDIE = getCompileUnit(SP)->getDIE(SP); |
Devang Patel | e03161c | 2010-08-09 18:51:29 +0000 | [diff] [blame] | 2205 | const SmallVector<DbgVariable *, 8> &Variables = Scope->getDbgVariables(); |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 2206 | for (unsigned i = 0, N = Variables.size(); i < N; ++i) { |
| 2207 | DIE *VariableDIE = constructVariableDIE(Variables[i], Scope); |
| 2208 | if (VariableDIE) |
| 2209 | ScopeDIE->addChild(VariableDIE); |
| 2210 | } |
| 2211 | } |
| 2212 | } |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2213 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2214 | // Attach DW_AT_inline attribute with inlined subprogram DIEs. |
| 2215 | for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(), |
| 2216 | AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) { |
| 2217 | DIE *ISP = *AI; |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2218 | addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2219 | } |
| 2220 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2221 | for (DenseMap<DIE *, const MDNode *>::iterator CI = ContainingTypeMap.begin(), |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 2222 | CE = ContainingTypeMap.end(); CI != CE; ++CI) { |
| 2223 | DIE *SPDie = CI->first; |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2224 | const MDNode *N = dyn_cast_or_null<MDNode>(CI->second); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 2225 | if (!N) continue; |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2226 | DIE *NDie = getCompileUnit(N)->getDIE(N); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 2227 | if (!NDie) continue; |
| 2228 | addDIEEntry(SPDie, dwarf::DW_AT_containing_type, dwarf::DW_FORM_ref4, NDie); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 2229 | } |
| 2230 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2231 | // Standard sections final addresses. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2232 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection()); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2233 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end")); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2234 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection()); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2235 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end")); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2236 | |
| 2237 | // End text sections. |
| 2238 | for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2239 | Asm->OutStreamer.SwitchSection(SectionMap[i]); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2240 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i)); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2241 | } |
| 2242 | |
| 2243 | // Emit common frame information. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2244 | emitCommonDebugFrame(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2245 | |
| 2246 | // Emit function debug frame information |
| 2247 | for (std::vector<FunctionDebugFrameInfo>::iterator I = DebugFrames.begin(), |
| 2248 | E = DebugFrames.end(); I != E; ++I) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2249 | emitFunctionDebugFrame(*I); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2250 | |
| 2251 | // Compute DIE offsets and sizes. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2252 | computeSizeAndOffsets(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2253 | |
| 2254 | // Emit all the DIEs into a debug info section |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2255 | emitDebugInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2256 | |
| 2257 | // Corresponding abbreviations into a abbrev section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2258 | emitAbbreviations(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2259 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2260 | // Emit info into a debug pubnames section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2261 | emitDebugPubNames(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2262 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 2263 | // Emit info into a debug pubtypes section. |
| 2264 | emitDebugPubTypes(); |
| 2265 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2266 | // Emit info into a debug loc section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2267 | emitDebugLoc(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2268 | |
| 2269 | // Emit info into a debug aranges section. |
| 2270 | EmitDebugARanges(); |
| 2271 | |
| 2272 | // Emit info into a debug ranges section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2273 | emitDebugRanges(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2274 | |
| 2275 | // Emit info into a debug macinfo section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2276 | emitDebugMacInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2277 | |
| 2278 | // Emit inline info. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2279 | emitDebugInlineInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2280 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 2281 | // Emit info into a debug str section. |
| 2282 | emitDebugStr(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2283 | |
Devang Patel | e9a1cca | 2010-08-02 17:32:15 +0000 | [diff] [blame] | 2284 | // clean up. |
| 2285 | DeleteContainerSeconds(DeadFnScopeMap); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2286 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 2287 | E = CUMap.end(); I != E; ++I) |
| 2288 | delete I->second; |
| 2289 | FirstCU = NULL; // Reset for the next Module, if any. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2290 | } |
| 2291 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2292 | /// findAbstractVariable - Find abstract variable, if any, associated with Var. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2293 | DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &Var, |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2294 | DebugLoc ScopeLoc) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2295 | |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 2296 | DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2297 | if (AbsDbgVariable) |
| 2298 | return AbsDbgVariable; |
| 2299 | |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 2300 | LLVMContext &Ctx = Var->getContext(); |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2301 | DbgScope *Scope = AbstractScopes.lookup(ScopeLoc.getScope(Ctx)); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2302 | if (!Scope) |
| 2303 | return NULL; |
| 2304 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 2305 | AbsDbgVariable = new DbgVariable(Var); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2306 | Scope->addVariable(AbsDbgVariable); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 2307 | AbstractVariables[Var] = AbsDbgVariable; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2308 | return AbsDbgVariable; |
| 2309 | } |
| 2310 | |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2311 | /// collectVariableInfoFromMMITable - Collect variable information from |
| 2312 | /// side table maintained by MMI. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2313 | void |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2314 | DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction * MF, |
| 2315 | SmallPtrSet<const MDNode *, 16> &Processed) { |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 2316 | const LLVMContext &Ctx = Asm->MF->getFunction()->getContext(); |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 2317 | MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo(); |
| 2318 | for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(), |
| 2319 | VE = VMap.end(); VI != VE; ++VI) { |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2320 | const MDNode *Var = VI->first; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2321 | if (!Var) continue; |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 2322 | Processed.insert(Var); |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2323 | DIVariable DV(Var); |
| 2324 | const std::pair<unsigned, DebugLoc> &VP = VI->second; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2325 | |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2326 | DbgScope *Scope = 0; |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2327 | if (const MDNode *IA = VP.second.getInlinedAt(Ctx)) |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2328 | Scope = ConcreteScopes.lookup(IA); |
| 2329 | if (Scope == 0) |
| 2330 | Scope = DbgScopeMap.lookup(VP.second.getScope(Ctx)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2331 | |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 2332 | // If variable scope is not found then skip this variable. |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2333 | if (Scope == 0) |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 2334 | continue; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2335 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 2336 | DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second); |
| 2337 | DbgVariable *RegVar = new DbgVariable(DV); |
| 2338 | recordVariableFrameIndex(RegVar, VP.first); |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2339 | Scope->addVariable(RegVar); |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 2340 | if (AbsDbgVariable) { |
| 2341 | recordVariableFrameIndex(AbsDbgVariable, VP.first); |
| 2342 | VarToAbstractVarMap[RegVar] = AbsDbgVariable; |
| 2343 | } |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 2344 | } |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2345 | } |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 2346 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2347 | /// isDbgValueInDefinedReg - Return true if debug value, encoded by |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2348 | /// DBG_VALUE instruction, is in a defined reg. |
| 2349 | static bool isDbgValueInDefinedReg(const MachineInstr *MI) { |
| 2350 | assert (MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!"); |
| 2351 | if (MI->getOperand(0).isReg() && MI->getOperand(0).getReg()) |
| 2352 | return true; |
| 2353 | return false; |
| 2354 | } |
| 2355 | |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2356 | /// collectVariableInfo - Populate DbgScope entries with variables' info. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2357 | void |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2358 | DwarfDebug::collectVariableInfo(const MachineFunction *MF, |
| 2359 | SmallPtrSet<const MDNode *, 16> &Processed) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2360 | |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2361 | /// collection info from MMI table. |
| 2362 | collectVariableInfoFromMMITable(MF, Processed); |
| 2363 | |
| 2364 | SmallVector<const MachineInstr *, 8> DbgValues; |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 2365 | // Collect variable information from DBG_VALUE machine instructions; |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 2366 | for (MachineFunction::const_iterator I = Asm->MF->begin(), E = Asm->MF->end(); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2367 | I != E; ++I) |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 2368 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 2369 | II != IE; ++II) { |
| 2370 | const MachineInstr *MInsn = II; |
Devang Patel | a36478f | 2011-01-11 21:42:10 +0000 | [diff] [blame] | 2371 | if (!MInsn->isDebugValue()) |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 2372 | continue; |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2373 | DbgValues.push_back(MInsn); |
| 2374 | } |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 2375 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2376 | // This is a collection of DBV_VALUE instructions describing same variable. |
| 2377 | SmallVector<const MachineInstr *, 4> MultipleValues; |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2378 | for(SmallVector<const MachineInstr *, 8>::iterator I = DbgValues.begin(), |
| 2379 | E = DbgValues.end(); I != E; ++I) { |
| 2380 | const MachineInstr *MInsn = *I; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2381 | MultipleValues.clear(); |
| 2382 | if (isDbgValueInDefinedReg(MInsn)) |
| 2383 | MultipleValues.push_back(MInsn); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2384 | DIVariable DV(MInsn->getOperand(MInsn->getNumOperands() - 1).getMetadata()); |
| 2385 | if (Processed.count(DV) != 0) |
| 2386 | continue; |
| 2387 | |
Devang Patel | 354eb7e | 2010-06-02 19:05:13 +0000 | [diff] [blame] | 2388 | const MachineInstr *PrevMI = MInsn; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2389 | for (SmallVector<const MachineInstr *, 8>::iterator MI = I+1, |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2390 | ME = DbgValues.end(); MI != ME; ++MI) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2391 | const MDNode *Var = |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2392 | (*MI)->getOperand((*MI)->getNumOperands()-1).getMetadata(); |
Devang Patel | a36478f | 2011-01-11 21:42:10 +0000 | [diff] [blame] | 2393 | if (Var == DV && |
Devang Patel | 354eb7e | 2010-06-02 19:05:13 +0000 | [diff] [blame] | 2394 | !PrevMI->isIdenticalTo(*MI)) |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2395 | MultipleValues.push_back(*MI); |
Devang Patel | 354eb7e | 2010-06-02 19:05:13 +0000 | [diff] [blame] | 2396 | PrevMI = *MI; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2397 | } |
| 2398 | |
Devang Patel | a36478f | 2011-01-11 21:42:10 +0000 | [diff] [blame] | 2399 | DbgScope *Scope = NULL; |
Devang Patel | d8720f4 | 2010-05-27 20:25:04 +0000 | [diff] [blame] | 2400 | if (DV.getTag() == dwarf::DW_TAG_arg_variable && |
| 2401 | DISubprogram(DV.getContext()).describes(MF->getFunction())) |
Devang Patel | c0c5a26 | 2010-05-21 00:10:20 +0000 | [diff] [blame] | 2402 | Scope = CurrentFnDbgScope; |
Devang Patel | a36478f | 2011-01-11 21:42:10 +0000 | [diff] [blame] | 2403 | else |
| 2404 | Scope = findDbgScope(MInsn); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2405 | // If variable scope is not found then skip this variable. |
Devang Patel | c0c5a26 | 2010-05-21 00:10:20 +0000 | [diff] [blame] | 2406 | if (!Scope) |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2407 | continue; |
| 2408 | |
| 2409 | Processed.insert(DV); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2410 | DbgVariable *RegVar = new DbgVariable(DV); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2411 | Scope->addVariable(RegVar); |
Devang Patel | c0c5a26 | 2010-05-21 00:10:20 +0000 | [diff] [blame] | 2412 | if (DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc())) { |
| 2413 | DbgVariableToDbgInstMap[AbsVar] = MInsn; |
| 2414 | VarToAbstractVarMap[RegVar] = AbsVar; |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 2415 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2416 | if (MultipleValues.size() <= 1) { |
| 2417 | DbgVariableToDbgInstMap[RegVar] = MInsn; |
| 2418 | continue; |
| 2419 | } |
| 2420 | |
| 2421 | // handle multiple DBG_VALUE instructions describing one variable. |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2422 | if (DotDebugLocEntries.empty()) |
Devang Patel | 8025068 | 2010-05-26 23:55:23 +0000 | [diff] [blame] | 2423 | RegVar->setDotDebugLocOffset(0); |
| 2424 | else |
| 2425 | RegVar->setDotDebugLocOffset(DotDebugLocEntries.size()); |
Devang Patel | e2df842 | 2010-05-26 17:29:32 +0000 | [diff] [blame] | 2426 | const MachineInstr *Begin = NULL; |
| 2427 | const MachineInstr *End = NULL; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2428 | for (SmallVector<const MachineInstr *, 4>::iterator |
| 2429 | MVI = MultipleValues.begin(), MVE = MultipleValues.end(); |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 2430 | MVI != MVE; ++MVI) { |
Devang Patel | e2df842 | 2010-05-26 17:29:32 +0000 | [diff] [blame] | 2431 | if (!Begin) { |
| 2432 | Begin = *MVI; |
| 2433 | continue; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2434 | } |
Devang Patel | e2df842 | 2010-05-26 17:29:32 +0000 | [diff] [blame] | 2435 | End = *MVI; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2436 | MachineLocation MLoc; |
Devang Patel | b2cf581 | 2010-08-04 18:40:52 +0000 | [diff] [blame] | 2437 | if (Begin->getNumOperands() == 3) { |
| 2438 | if (Begin->getOperand(0).isReg() && Begin->getOperand(1).isImm()) |
| 2439 | MLoc.set(Begin->getOperand(0).getReg(), Begin->getOperand(1).getImm()); |
| 2440 | } else |
| 2441 | MLoc = Asm->getDebugValueLocation(Begin); |
| 2442 | |
Devang Patel | e2df842 | 2010-05-26 17:29:32 +0000 | [diff] [blame] | 2443 | const MCSymbol *FLabel = getLabelBeforeInsn(Begin); |
| 2444 | const MCSymbol *SLabel = getLabelBeforeInsn(End); |
Devang Patel | 5573a7d | 2010-08-04 22:07:27 +0000 | [diff] [blame] | 2445 | if (MLoc.getReg()) |
| 2446 | DotDebugLocEntries.push_back(DotDebugLocEntry(FLabel, SLabel, MLoc)); |
| 2447 | |
Devang Patel | e2df842 | 2010-05-26 17:29:32 +0000 | [diff] [blame] | 2448 | Begin = End; |
| 2449 | if (MVI + 1 == MVE) { |
| 2450 | // If End is the last instruction then its value is valid |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2451 | // until the end of the funtion. |
Devang Patel | b2cf581 | 2010-08-04 18:40:52 +0000 | [diff] [blame] | 2452 | MachineLocation EMLoc; |
| 2453 | if (End->getNumOperands() == 3) { |
| 2454 | if (End->getOperand(0).isReg() && Begin->getOperand(1).isImm()) |
| 2455 | EMLoc.set(Begin->getOperand(0).getReg(), Begin->getOperand(1).getImm()); |
| 2456 | } else |
| 2457 | EMLoc = Asm->getDebugValueLocation(End); |
Devang Patel | 5573a7d | 2010-08-04 22:07:27 +0000 | [diff] [blame] | 2458 | if (EMLoc.getReg()) |
| 2459 | DotDebugLocEntries. |
| 2460 | push_back(DotDebugLocEntry(SLabel, FunctionEndSym, EMLoc)); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2461 | } |
| 2462 | } |
| 2463 | DotDebugLocEntries.push_back(DotDebugLocEntry()); |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 2464 | } |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 2465 | |
| 2466 | // Collect info for variables that were optimized out. |
Devang Patel | d1bbc6b | 2010-06-22 01:01:58 +0000 | [diff] [blame] | 2467 | const Function *F = MF->getFunction(); |
Devang Patel | 6236704 | 2010-11-10 22:19:21 +0000 | [diff] [blame] | 2468 | if (NamedMDNode *NMD = getFnSpecificMDNode(*(F->getParent()), F->getName())) { |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 2469 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { |
Dan Gohman | 872814a | 2010-07-21 18:54:18 +0000 | [diff] [blame] | 2470 | DIVariable DV(cast<MDNode>(NMD->getOperand(i))); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 2471 | if (!DV || !Processed.insert(DV)) |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 2472 | continue; |
| 2473 | DbgScope *Scope = DbgScopeMap.lookup(DV.getContext()); |
| 2474 | if (Scope) |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 2475 | Scope->addVariable(new DbgVariable(DV)); |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 2476 | } |
| 2477 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2478 | } |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 2479 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2480 | /// getLabelBeforeInsn - Return Label preceding the instruction. |
| 2481 | const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) { |
| 2482 | DenseMap<const MachineInstr *, MCSymbol *>::iterator I = |
| 2483 | LabelsBeforeInsn.find(MI); |
| 2484 | if (I == LabelsBeforeInsn.end()) |
| 2485 | // FunctionBeginSym always preceeds all the instruction in current function. |
| 2486 | return FunctionBeginSym; |
| 2487 | return I->second; |
| 2488 | } |
| 2489 | |
| 2490 | /// getLabelAfterInsn - Return Label immediately following the instruction. |
| 2491 | const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) { |
| 2492 | DenseMap<const MachineInstr *, MCSymbol *>::iterator I = |
| 2493 | LabelsAfterInsn.find(MI); |
| 2494 | if (I == LabelsAfterInsn.end()) |
| 2495 | return NULL; |
| 2496 | return I->second; |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 2497 | } |
| 2498 | |
Devang Patel | cbbe287 | 2010-10-26 17:49:02 +0000 | [diff] [blame] | 2499 | /// beginInstruction - Process beginning of an instruction. |
| 2500 | void DwarfDebug::beginInstruction(const MachineInstr *MI) { |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2501 | if (InsnNeedsLabel.count(MI) == 0) { |
| 2502 | LabelsBeforeInsn[MI] = PrevLabel; |
Devang Patel | 553881b | 2010-03-29 17:20:31 +0000 | [diff] [blame] | 2503 | return; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2504 | } |
Devang Patel | aead63c | 2010-03-29 22:59:58 +0000 | [diff] [blame] | 2505 | |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2506 | // Check location. |
| 2507 | DebugLoc DL = MI->getDebugLoc(); |
| 2508 | if (!DL.isUnknown()) { |
| 2509 | const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext()); |
| 2510 | PrevLabel = recordSourceLine(DL.getLine(), DL.getCol(), Scope); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2511 | PrevInstLoc = DL; |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2512 | LabelsBeforeInsn[MI] = PrevLabel; |
| 2513 | return; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2514 | } |
Devang Patel | 553881b | 2010-03-29 17:20:31 +0000 | [diff] [blame] | 2515 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2516 | // If location is unknown then use temp label for this DBG_VALUE |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2517 | // instruction. |
| 2518 | if (MI->isDebugValue()) { |
Devang Patel | 77051f5 | 2010-05-26 21:23:46 +0000 | [diff] [blame] | 2519 | PrevLabel = MMI->getContext().CreateTempSymbol(); |
| 2520 | Asm->OutStreamer.EmitLabel(PrevLabel); |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2521 | LabelsBeforeInsn[MI] = PrevLabel; |
| 2522 | return; |
| 2523 | } |
| 2524 | |
| 2525 | if (UnknownLocations) { |
| 2526 | PrevLabel = recordSourceLine(0, 0, 0); |
| 2527 | LabelsBeforeInsn[MI] = PrevLabel; |
| 2528 | return; |
| 2529 | } |
| 2530 | |
| 2531 | assert (0 && "Instruction is not processed!"); |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 2532 | } |
| 2533 | |
Devang Patel | cbbe287 | 2010-10-26 17:49:02 +0000 | [diff] [blame] | 2534 | /// endInstruction - Process end of an instruction. |
| 2535 | void DwarfDebug::endInstruction(const MachineInstr *MI) { |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 2536 | if (InsnsEndScopeSet.count(MI) != 0) { |
| 2537 | // Emit a label if this instruction ends a scope. |
| 2538 | MCSymbol *Label = MMI->getContext().CreateTempSymbol(); |
| 2539 | Asm->OutStreamer.EmitLabel(Label); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2540 | LabelsAfterInsn[MI] = Label; |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 2541 | } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2542 | } |
| 2543 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2544 | /// getOrCreateDbgScope - Create DbgScope for the scope. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2545 | DbgScope *DwarfDebug::getOrCreateDbgScope(const MDNode *Scope, |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 2546 | const MDNode *InlinedAt) { |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2547 | if (!InlinedAt) { |
| 2548 | DbgScope *WScope = DbgScopeMap.lookup(Scope); |
| 2549 | if (WScope) |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2550 | return WScope; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2551 | WScope = new DbgScope(NULL, DIDescriptor(Scope), NULL); |
| 2552 | DbgScopeMap.insert(std::make_pair(Scope, WScope)); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2553 | if (DIDescriptor(Scope).isLexicalBlock()) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2554 | DbgScope *Parent = |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 2555 | getOrCreateDbgScope(DILexicalBlock(Scope).getContext(), NULL); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2556 | WScope->setParent(Parent); |
| 2557 | Parent->addScope(WScope); |
| 2558 | } |
| 2559 | |
| 2560 | if (!WScope->getParent()) { |
| 2561 | StringRef SPName = DISubprogram(Scope).getLinkageName(); |
Stuart Hastings | cad22ad | 2010-06-15 23:06:30 +0000 | [diff] [blame] | 2562 | // We used to check only for a linkage name, but that fails |
| 2563 | // since we began omitting the linkage name for private |
| 2564 | // functions. The new way is to check for the name in metadata, |
| 2565 | // but that's not supported in old .ll test cases. Ergo, we |
| 2566 | // check both. |
Stuart Hastings | 215aa15 | 2010-06-11 20:08:44 +0000 | [diff] [blame] | 2567 | if (SPName == Asm->MF->getFunction()->getName() || |
| 2568 | DISubprogram(Scope).getFunction() == Asm->MF->getFunction()) |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2569 | CurrentFnDbgScope = WScope; |
| 2570 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2571 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2572 | return WScope; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2573 | } |
| 2574 | |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2575 | getOrCreateAbstractScope(Scope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2576 | DbgScope *WScope = DbgScopeMap.lookup(InlinedAt); |
| 2577 | if (WScope) |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2578 | return WScope; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2579 | |
| 2580 | WScope = new DbgScope(NULL, DIDescriptor(Scope), InlinedAt); |
| 2581 | DbgScopeMap.insert(std::make_pair(InlinedAt, WScope)); |
| 2582 | DILocation DL(InlinedAt); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2583 | DbgScope *Parent = |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 2584 | getOrCreateDbgScope(DL.getScope(), DL.getOrigLocation()); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2585 | WScope->setParent(Parent); |
| 2586 | Parent->addScope(WScope); |
| 2587 | |
| 2588 | ConcreteScopes[InlinedAt] = WScope; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2589 | |
| 2590 | return WScope; |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 2591 | } |
| 2592 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2593 | /// hasValidLocation - Return true if debug location entry attached with |
| 2594 | /// machine instruction encodes valid location info. |
| 2595 | static bool hasValidLocation(LLVMContext &Ctx, |
| 2596 | const MachineInstr *MInsn, |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2597 | const MDNode *&Scope, const MDNode *&InlinedAt) { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2598 | DebugLoc DL = MInsn->getDebugLoc(); |
| 2599 | if (DL.isUnknown()) return false; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2600 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2601 | const MDNode *S = DL.getScope(Ctx); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2602 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2603 | // There is no need to create another DIE for compile unit. For all |
| 2604 | // other scopes, create one DbgScope now. This will be translated |
| 2605 | // into a scope DIE at the end. |
| 2606 | if (DIScope(S).isCompileUnit()) return false; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2607 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2608 | Scope = S; |
| 2609 | InlinedAt = DL.getInlinedAt(Ctx); |
| 2610 | return true; |
| 2611 | } |
| 2612 | |
| 2613 | /// calculateDominanceGraph - Calculate dominance graph for DbgScope |
| 2614 | /// hierarchy. |
| 2615 | static void calculateDominanceGraph(DbgScope *Scope) { |
| 2616 | assert (Scope && "Unable to calculate scop edominance graph!"); |
| 2617 | SmallVector<DbgScope *, 4> WorkStack; |
| 2618 | WorkStack.push_back(Scope); |
| 2619 | unsigned Counter = 0; |
| 2620 | while (!WorkStack.empty()) { |
| 2621 | DbgScope *WS = WorkStack.back(); |
| 2622 | const SmallVector<DbgScope *, 4> &Children = WS->getScopes(); |
| 2623 | bool visitedChildren = false; |
| 2624 | for (SmallVector<DbgScope *, 4>::const_iterator SI = Children.begin(), |
| 2625 | SE = Children.end(); SI != SE; ++SI) { |
| 2626 | DbgScope *ChildScope = *SI; |
| 2627 | if (!ChildScope->getDFSOut()) { |
| 2628 | WorkStack.push_back(ChildScope); |
| 2629 | visitedChildren = true; |
| 2630 | ChildScope->setDFSIn(++Counter); |
| 2631 | break; |
| 2632 | } |
| 2633 | } |
| 2634 | if (!visitedChildren) { |
| 2635 | WorkStack.pop_back(); |
| 2636 | WS->setDFSOut(++Counter); |
| 2637 | } |
| 2638 | } |
| 2639 | } |
| 2640 | |
| 2641 | /// printDbgScopeInfo - Print DbgScope info for each machine instruction. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2642 | static |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2643 | void printDbgScopeInfo(LLVMContext &Ctx, const MachineFunction *MF, |
| 2644 | DenseMap<const MachineInstr *, DbgScope *> &MI2ScopeMap) |
| 2645 | { |
| 2646 | #ifndef NDEBUG |
| 2647 | unsigned PrevDFSIn = 0; |
| 2648 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
| 2649 | I != E; ++I) { |
| 2650 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 2651 | II != IE; ++II) { |
| 2652 | const MachineInstr *MInsn = II; |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2653 | const MDNode *Scope = NULL; |
| 2654 | const MDNode *InlinedAt = NULL; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2655 | |
| 2656 | // Check if instruction has valid location information. |
| 2657 | if (hasValidLocation(Ctx, MInsn, Scope, InlinedAt)) { |
| 2658 | dbgs() << " [ "; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2659 | if (InlinedAt) |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2660 | dbgs() << "*"; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2661 | DenseMap<const MachineInstr *, DbgScope *>::iterator DI = |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2662 | MI2ScopeMap.find(MInsn); |
| 2663 | if (DI != MI2ScopeMap.end()) { |
| 2664 | DbgScope *S = DI->second; |
| 2665 | dbgs() << S->getDFSIn(); |
| 2666 | PrevDFSIn = S->getDFSIn(); |
| 2667 | } else |
| 2668 | dbgs() << PrevDFSIn; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2669 | } else |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2670 | dbgs() << " [ x" << PrevDFSIn; |
| 2671 | dbgs() << " ]"; |
| 2672 | MInsn->dump(); |
| 2673 | } |
| 2674 | dbgs() << "\n"; |
| 2675 | } |
| 2676 | #endif |
| 2677 | } |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2678 | /// extractScopeInformation - Scan machine instructions in this function |
Chris Lattner | 14d750d | 2010-03-31 05:39:57 +0000 | [diff] [blame] | 2679 | /// and collect DbgScopes. Return true, if at least one scope was found. |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 2680 | bool DwarfDebug::extractScopeInformation() { |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2681 | // If scope information was extracted using .dbg intrinsics then there is not |
| 2682 | // any need to extract these information by scanning each instruction. |
| 2683 | if (!DbgScopeMap.empty()) |
| 2684 | return false; |
| 2685 | |
Dan Gohman | 314bf7c | 2010-04-23 01:18:53 +0000 | [diff] [blame] | 2686 | // Scan each instruction and create scopes. First build working set of scopes. |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2687 | LLVMContext &Ctx = Asm->MF->getFunction()->getContext(); |
| 2688 | SmallVector<DbgRange, 4> MIRanges; |
| 2689 | DenseMap<const MachineInstr *, DbgScope *> MI2ScopeMap; |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2690 | const MDNode *PrevScope = NULL; |
| 2691 | const MDNode *PrevInlinedAt = NULL; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2692 | const MachineInstr *RangeBeginMI = NULL; |
| 2693 | const MachineInstr *PrevMI = NULL; |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 2694 | for (MachineFunction::const_iterator I = Asm->MF->begin(), E = Asm->MF->end(); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2695 | I != E; ++I) { |
| 2696 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 2697 | II != IE; ++II) { |
| 2698 | const MachineInstr *MInsn = II; |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2699 | const MDNode *Scope = NULL; |
| 2700 | const MDNode *InlinedAt = NULL; |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2701 | |
| 2702 | // Check if instruction has valid location information. |
| 2703 | if (!hasValidLocation(Ctx, MInsn, Scope, InlinedAt)) { |
| 2704 | PrevMI = MInsn; |
| 2705 | continue; |
| 2706 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2707 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2708 | // If scope has not changed then skip this instruction. |
| 2709 | if (Scope == PrevScope && PrevInlinedAt == InlinedAt) { |
| 2710 | PrevMI = MInsn; |
| 2711 | continue; |
| 2712 | } |
| 2713 | |
Devang Patel | d3526ea | 2011-02-15 17:56:09 +0000 | [diff] [blame] | 2714 | // Ignore DBG_VALUE. It does not contribute any instruction in output. |
| 2715 | if (MInsn->isDebugValue()) |
| 2716 | continue; |
| 2717 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2718 | if (RangeBeginMI) { |
| 2719 | // If we have alread seen a beginning of a instruction range and |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2720 | // current instruction scope does not match scope of first instruction |
| 2721 | // in this range then create a new instruction range. |
| 2722 | DbgRange R(RangeBeginMI, PrevMI); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2723 | MI2ScopeMap[RangeBeginMI] = getOrCreateDbgScope(PrevScope, |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 2724 | PrevInlinedAt); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2725 | MIRanges.push_back(R); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2726 | } |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2727 | |
| 2728 | // This is a beginning of a new instruction range. |
| 2729 | RangeBeginMI = MInsn; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2730 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2731 | // Reset previous markers. |
| 2732 | PrevMI = MInsn; |
| 2733 | PrevScope = Scope; |
| 2734 | PrevInlinedAt = InlinedAt; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2735 | } |
| 2736 | } |
| 2737 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2738 | // Create last instruction range. |
| 2739 | if (RangeBeginMI && PrevMI && PrevScope) { |
| 2740 | DbgRange R(RangeBeginMI, PrevMI); |
| 2741 | MIRanges.push_back(R); |
| 2742 | MI2ScopeMap[RangeBeginMI] = getOrCreateDbgScope(PrevScope, PrevInlinedAt); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2743 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2744 | |
Devang Patel | 344130e | 2010-01-04 20:44:00 +0000 | [diff] [blame] | 2745 | if (!CurrentFnDbgScope) |
| 2746 | return false; |
| 2747 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2748 | calculateDominanceGraph(CurrentFnDbgScope); |
| 2749 | if (PrintDbgScope) |
| 2750 | printDbgScopeInfo(Ctx, Asm->MF, MI2ScopeMap); |
| 2751 | |
| 2752 | // Find ranges of instructions covered by each DbgScope; |
| 2753 | DbgScope *PrevDbgScope = NULL; |
| 2754 | for (SmallVector<DbgRange, 4>::const_iterator RI = MIRanges.begin(), |
| 2755 | RE = MIRanges.end(); RI != RE; ++RI) { |
| 2756 | const DbgRange &R = *RI; |
| 2757 | DbgScope *S = MI2ScopeMap.lookup(R.first); |
| 2758 | assert (S && "Lost DbgScope for a machine instruction!"); |
| 2759 | if (PrevDbgScope && !PrevDbgScope->dominates(S)) |
| 2760 | PrevDbgScope->closeInsnRange(S); |
| 2761 | S->openInsnRange(R.first); |
| 2762 | S->extendInsnRange(R.second); |
| 2763 | PrevDbgScope = S; |
| 2764 | } |
| 2765 | |
| 2766 | if (PrevDbgScope) |
| 2767 | PrevDbgScope->closeInsnRange(); |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2768 | |
Devang Patel | e37b0c6 | 2010-04-08 18:43:56 +0000 | [diff] [blame] | 2769 | identifyScopeMarkers(); |
Devang Patel | 6122a4d | 2010-04-08 15:37:09 +0000 | [diff] [blame] | 2770 | |
| 2771 | return !DbgScopeMap.empty(); |
| 2772 | } |
| 2773 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2774 | /// identifyScopeMarkers() - |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2775 | /// Each DbgScope has first instruction and last instruction to mark beginning |
| 2776 | /// and end of a scope respectively. Create an inverse map that list scopes |
| 2777 | /// starts (and ends) with an instruction. One instruction may start (or end) |
| 2778 | /// multiple scopes. Ignore scopes that are not reachable. |
Devang Patel | e37b0c6 | 2010-04-08 18:43:56 +0000 | [diff] [blame] | 2779 | void DwarfDebug::identifyScopeMarkers() { |
Devang Patel | 42aafd7 | 2010-01-20 02:05:23 +0000 | [diff] [blame] | 2780 | SmallVector<DbgScope *, 4> WorkList; |
| 2781 | WorkList.push_back(CurrentFnDbgScope); |
| 2782 | while (!WorkList.empty()) { |
Chris Lattner | 14d750d | 2010-03-31 05:39:57 +0000 | [diff] [blame] | 2783 | DbgScope *S = WorkList.pop_back_val(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2784 | |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 2785 | const SmallVector<DbgScope *, 4> &Children = S->getScopes(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2786 | if (!Children.empty()) |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 2787 | for (SmallVector<DbgScope *, 4>::const_iterator SI = Children.begin(), |
Devang Patel | 42aafd7 | 2010-01-20 02:05:23 +0000 | [diff] [blame] | 2788 | SE = Children.end(); SI != SE; ++SI) |
| 2789 | WorkList.push_back(*SI); |
| 2790 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2791 | if (S->isAbstractScope()) |
| 2792 | continue; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2793 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2794 | const SmallVector<DbgRange, 4> &Ranges = S->getRanges(); |
| 2795 | if (Ranges.empty()) |
| 2796 | continue; |
| 2797 | for (SmallVector<DbgRange, 4>::const_iterator RI = Ranges.begin(), |
| 2798 | RE = Ranges.end(); RI != RE; ++RI) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2799 | assert(RI->first && "DbgRange does not have first instruction!"); |
| 2800 | assert(RI->second && "DbgRange does not have second instruction!"); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2801 | InsnsEndScopeSet.insert(RI->second); |
| 2802 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2803 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 2804 | } |
| 2805 | |
Dan Gohman | 084751c | 2010-04-20 00:37:27 +0000 | [diff] [blame] | 2806 | /// FindFirstDebugLoc - Find the first debug location in the function. This |
| 2807 | /// is intended to be an approximation for the source position of the |
| 2808 | /// beginning of the function. |
| 2809 | static DebugLoc FindFirstDebugLoc(const MachineFunction *MF) { |
| 2810 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
| 2811 | I != E; ++I) |
| 2812 | for (MachineBasicBlock::const_iterator MBBI = I->begin(), MBBE = I->end(); |
| 2813 | MBBI != MBBE; ++MBBI) { |
| 2814 | DebugLoc DL = MBBI->getDebugLoc(); |
| 2815 | if (!DL.isUnknown()) |
| 2816 | return DL; |
| 2817 | } |
| 2818 | return DebugLoc(); |
| 2819 | } |
| 2820 | |
Devang Patel | 9a31f0f | 2010-10-25 20:45:32 +0000 | [diff] [blame] | 2821 | #ifndef NDEBUG |
| 2822 | /// CheckLineNumbers - Count basicblocks whose instructions do not have any |
| 2823 | /// line number information. |
| 2824 | static void CheckLineNumbers(const MachineFunction *MF) { |
| 2825 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
| 2826 | I != E; ++I) { |
| 2827 | bool FoundLineNo = false; |
| 2828 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 2829 | II != IE; ++II) { |
| 2830 | const MachineInstr *MI = II; |
| 2831 | if (!MI->getDebugLoc().isUnknown()) { |
| 2832 | FoundLineNo = true; |
| 2833 | break; |
| 2834 | } |
| 2835 | } |
Devang Patel | 4d7f9a0 | 2010-10-28 22:11:59 +0000 | [diff] [blame] | 2836 | if (!FoundLineNo && I->size()) |
Devang Patel | 9a31f0f | 2010-10-25 20:45:32 +0000 | [diff] [blame] | 2837 | ++BlocksWithoutLineNo; |
| 2838 | } |
| 2839 | } |
| 2840 | #endif |
| 2841 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2842 | /// beginFunction - Gather pre-function debug information. Assumes being |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2843 | /// emitted immediately after the function entry point. |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 2844 | void DwarfDebug::beginFunction(const MachineFunction *MF) { |
Chris Lattner | 994cb12 | 2010-04-05 03:52:55 +0000 | [diff] [blame] | 2845 | if (!MMI->hasDebugInfo()) return; |
Bill Wendling | 5f017e8 | 2010-04-07 09:28:04 +0000 | [diff] [blame] | 2846 | if (!extractScopeInformation()) return; |
Devang Patel | 60b35bd | 2009-10-06 18:37:31 +0000 | [diff] [blame] | 2847 | |
Devang Patel | 9a31f0f | 2010-10-25 20:45:32 +0000 | [diff] [blame] | 2848 | #ifndef NDEBUG |
| 2849 | CheckLineNumbers(MF); |
| 2850 | #endif |
| 2851 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2852 | FunctionBeginSym = Asm->GetTempSymbol("func_begin", |
| 2853 | Asm->getFunctionNumber()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2854 | // Assumes in correct section after the entry point. |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2855 | Asm->OutStreamer.EmitLabel(FunctionBeginSym); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2856 | |
| 2857 | // Emit label for the implicitly defined dbg.stoppoint at the start of the |
| 2858 | // function. |
Dan Gohman | 084751c | 2010-04-20 00:37:27 +0000 | [diff] [blame] | 2859 | DebugLoc FDL = FindFirstDebugLoc(MF); |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2860 | if (FDL.isUnknown()) return; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2861 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2862 | const MDNode *Scope = FDL.getScope(MF->getFunction()->getContext()); |
Stuart Hastings | 0db4271 | 2010-07-19 23:56:30 +0000 | [diff] [blame] | 2863 | const MDNode *TheScope = 0; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2864 | |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2865 | DISubprogram SP = getDISubprogram(Scope); |
| 2866 | unsigned Line, Col; |
| 2867 | if (SP.Verify()) { |
| 2868 | Line = SP.getLineNumber(); |
| 2869 | Col = 0; |
Stuart Hastings | 0db4271 | 2010-07-19 23:56:30 +0000 | [diff] [blame] | 2870 | TheScope = SP; |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 2871 | } else { |
| 2872 | Line = FDL.getLine(); |
| 2873 | Col = FDL.getCol(); |
Stuart Hastings | 0db4271 | 2010-07-19 23:56:30 +0000 | [diff] [blame] | 2874 | TheScope = Scope; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2875 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2876 | |
Stuart Hastings | 0db4271 | 2010-07-19 23:56:30 +0000 | [diff] [blame] | 2877 | recordSourceLine(Line, Col, TheScope); |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2878 | |
Devang Patel | b9abe9f | 2010-06-02 16:42:51 +0000 | [diff] [blame] | 2879 | /// ProcessedArgs - Collection of arguments already processed. |
| 2880 | SmallPtrSet<const MDNode *, 8> ProcessedArgs; |
| 2881 | |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2882 | DebugLoc PrevLoc; |
| 2883 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
| 2884 | I != E; ++I) |
| 2885 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 2886 | II != IE; ++II) { |
| 2887 | const MachineInstr *MI = II; |
| 2888 | DebugLoc DL = MI->getDebugLoc(); |
| 2889 | if (MI->isDebugValue()) { |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2890 | assert (MI->getNumOperands() > 1 && "Invalid machine instruction!"); |
| 2891 | DIVariable DV(MI->getOperand(MI->getNumOperands() - 1).getMetadata()); |
| 2892 | if (!DV.Verify()) continue; |
Devang Patel | 55e9717 | 2010-05-27 16:47:30 +0000 | [diff] [blame] | 2893 | // If DBG_VALUE is for a local variable then it needs a label. |
Devang Patel | b7313e2 | 2010-12-06 22:48:22 +0000 | [diff] [blame] | 2894 | if (DV.getTag() != dwarf::DW_TAG_arg_variable) |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2895 | InsnNeedsLabel.insert(MI); |
Devang Patel | 55e9717 | 2010-05-27 16:47:30 +0000 | [diff] [blame] | 2896 | // DBG_VALUE for inlined functions argument needs a label. |
Devang Patel | 7fb231c | 2010-07-01 21:38:08 +0000 | [diff] [blame] | 2897 | else if (!DISubprogram(getDISubprogram(DV.getContext())). |
| 2898 | describes(MF->getFunction())) |
Devang Patel | 55e9717 | 2010-05-27 16:47:30 +0000 | [diff] [blame] | 2899 | InsnNeedsLabel.insert(MI); |
| 2900 | // DBG_VALUE indicating argument location change needs a label. |
Devang Patel | b7313e2 | 2010-12-06 22:48:22 +0000 | [diff] [blame] | 2901 | else if (!ProcessedArgs.insert(DV)) |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2902 | InsnNeedsLabel.insert(MI); |
| 2903 | } else { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2904 | // If location is unknown then instruction needs a location only if |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2905 | // UnknownLocations flag is set. |
| 2906 | if (DL.isUnknown()) { |
| 2907 | if (UnknownLocations && !PrevLoc.isUnknown()) |
| 2908 | InsnNeedsLabel.insert(MI); |
| 2909 | } else if (DL != PrevLoc) |
| 2910 | // Otherwise, instruction needs a location only if it is new location. |
| 2911 | InsnNeedsLabel.insert(MI); |
| 2912 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2913 | |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2914 | if (!DL.isUnknown() || UnknownLocations) |
| 2915 | PrevLoc = DL; |
| 2916 | } |
| 2917 | |
| 2918 | PrevLabel = FunctionBeginSym; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2919 | } |
| 2920 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2921 | /// endFunction - Gather and emit post-function debug information. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2922 | /// |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 2923 | void DwarfDebug::endFunction(const MachineFunction *MF) { |
Bill Wendling | 5f017e8 | 2010-04-07 09:28:04 +0000 | [diff] [blame] | 2924 | if (!MMI->hasDebugInfo() || DbgScopeMap.empty()) return; |
Devang Patel | 70d75ca | 2009-11-12 19:02:56 +0000 | [diff] [blame] | 2925 | |
Devang Patel | 344130e | 2010-01-04 20:44:00 +0000 | [diff] [blame] | 2926 | if (CurrentFnDbgScope) { |
Devang Patel | 65eb482 | 2010-05-22 00:04:14 +0000 | [diff] [blame] | 2927 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2928 | // Define end label for subprogram. |
| 2929 | FunctionEndSym = Asm->GetTempSymbol("func_end", |
| 2930 | Asm->getFunctionNumber()); |
| 2931 | // Assumes in correct section after the entry point. |
| 2932 | Asm->OutStreamer.EmitLabel(FunctionEndSym); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2933 | |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2934 | SmallPtrSet<const MDNode *, 16> ProcessedVars; |
| 2935 | collectVariableInfo(MF, ProcessedVars); |
Devang Patel | 65eb482 | 2010-05-22 00:04:14 +0000 | [diff] [blame] | 2936 | |
Devang Patel | 344130e | 2010-01-04 20:44:00 +0000 | [diff] [blame] | 2937 | // Construct abstract scopes. |
| 2938 | for (SmallVector<DbgScope *, 4>::iterator AI = AbstractScopesList.begin(), |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2939 | AE = AbstractScopesList.end(); AI != AE; ++AI) { |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2940 | DISubprogram SP((*AI)->getScopeNode()); |
| 2941 | if (SP.Verify()) { |
| 2942 | // Collect info for variables that were optimized out. |
| 2943 | StringRef FName = SP.getLinkageName(); |
| 2944 | if (FName.empty()) |
| 2945 | FName = SP.getName(); |
Devang Patel | 6236704 | 2010-11-10 22:19:21 +0000 | [diff] [blame] | 2946 | if (NamedMDNode *NMD = |
| 2947 | getFnSpecificMDNode(*(MF->getFunction()->getParent()), FName)) { |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2948 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { |
Dan Gohman | 872814a | 2010-07-21 18:54:18 +0000 | [diff] [blame] | 2949 | DIVariable DV(cast<MDNode>(NMD->getOperand(i))); |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2950 | if (!DV || !ProcessedVars.insert(DV)) |
| 2951 | continue; |
Devang Patel | 1d68d21 | 2010-06-30 00:11:08 +0000 | [diff] [blame] | 2952 | DbgScope *Scope = AbstractScopes.lookup(DV.getContext()); |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2953 | if (Scope) |
| 2954 | Scope->addVariable(new DbgVariable(DV)); |
| 2955 | } |
| 2956 | } |
| 2957 | } |
Devang Patel | 90e19aa | 2010-06-30 01:40:11 +0000 | [diff] [blame] | 2958 | if (ProcessedSPNodes.count((*AI)->getScopeNode()) == 0) |
| 2959 | constructScopeDIE(*AI); |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 2960 | } |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 2961 | |
Devang Patel | 9c48837 | 2010-05-04 06:15:30 +0000 | [diff] [blame] | 2962 | DIE *CurFnDIE = constructScopeDIE(CurrentFnDbgScope); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2963 | |
Devang Patel | 9c48837 | 2010-05-04 06:15:30 +0000 | [diff] [blame] | 2964 | if (!DisableFramePointerElim(*MF)) |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2965 | addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr, |
Devang Patel | 9c48837 | 2010-05-04 06:15:30 +0000 | [diff] [blame] | 2966 | dwarf::DW_FORM_flag, 1); |
| 2967 | |
| 2968 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 2969 | DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(), |
Devang Patel | 344130e | 2010-01-04 20:44:00 +0000 | [diff] [blame] | 2970 | MMI->getFrameMoves())); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2971 | } |
| 2972 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2973 | // Clear debug info |
Devang Patel | f54b852 | 2010-01-19 01:26:02 +0000 | [diff] [blame] | 2974 | CurrentFnDbgScope = NULL; |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 2975 | InsnNeedsLabel.clear(); |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 2976 | DbgVariableToFrameIndexMap.clear(); |
| 2977 | VarToAbstractVarMap.clear(); |
| 2978 | DbgVariableToDbgInstMap.clear(); |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 2979 | DeleteContainerSeconds(DbgScopeMap); |
Devang Patel | 5142471 | 2010-04-09 16:04:20 +0000 | [diff] [blame] | 2980 | InsnsEndScopeSet.clear(); |
Devang Patel | f54b852 | 2010-01-19 01:26:02 +0000 | [diff] [blame] | 2981 | ConcreteScopes.clear(); |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 2982 | DeleteContainerSeconds(AbstractScopes); |
Devang Patel | f54b852 | 2010-01-19 01:26:02 +0000 | [diff] [blame] | 2983 | AbstractScopesList.clear(); |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 2984 | AbstractVariables.clear(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2985 | LabelsBeforeInsn.clear(); |
| 2986 | LabelsAfterInsn.clear(); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 2987 | PrevLabel = NULL; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 2988 | } |
| 2989 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 2990 | /// recordVariableFrameIndex - Record a variable's index. |
| 2991 | void DwarfDebug::recordVariableFrameIndex(const DbgVariable *V, int Index) { |
| 2992 | assert (V && "Invalid DbgVariable!"); |
| 2993 | DbgVariableToFrameIndexMap[V] = Index; |
| 2994 | } |
| 2995 | |
| 2996 | /// findVariableFrameIndex - Return true if frame index for the variable |
| 2997 | /// is found. Update FI to hold value of the index. |
| 2998 | bool DwarfDebug::findVariableFrameIndex(const DbgVariable *V, int *FI) { |
| 2999 | assert (V && "Invalid DbgVariable!"); |
| 3000 | DenseMap<const DbgVariable *, int>::iterator I = |
| 3001 | DbgVariableToFrameIndexMap.find(V); |
| 3002 | if (I == DbgVariableToFrameIndexMap.end()) |
| 3003 | return false; |
| 3004 | *FI = I->second; |
| 3005 | return true; |
| 3006 | } |
| 3007 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3008 | /// findDbgScope - Find DbgScope for the debug loc attached with an |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 3009 | /// instruction. |
| 3010 | DbgScope *DwarfDebug::findDbgScope(const MachineInstr *MInsn) { |
| 3011 | DbgScope *Scope = NULL; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3012 | LLVMContext &Ctx = |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 3013 | MInsn->getParent()->getParent()->getFunction()->getContext(); |
| 3014 | DebugLoc DL = MInsn->getDebugLoc(); |
| 3015 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3016 | if (DL.isUnknown()) |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 3017 | return Scope; |
| 3018 | |
| 3019 | if (const MDNode *IA = DL.getInlinedAt(Ctx)) |
| 3020 | Scope = ConcreteScopes.lookup(IA); |
| 3021 | if (Scope == 0) |
| 3022 | Scope = DbgScopeMap.lookup(DL.getScope(Ctx)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3023 | |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 3024 | return Scope; |
| 3025 | } |
| 3026 | |
| 3027 | |
Chris Lattner | c608784 | 2010-03-09 04:54:43 +0000 | [diff] [blame] | 3028 | /// recordSourceLine - Register a source line with debug info. Returns the |
| 3029 | /// unique label that was emitted and which provides correspondence to |
| 3030 | /// the source line list. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3031 | MCSymbol *DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 3032 | const MDNode *S) { |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 3033 | StringRef Fn; |
Devang Patel | f84548d | 2009-10-05 18:03:19 +0000 | [diff] [blame] | 3034 | |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 3035 | unsigned Src = 1; |
| 3036 | if (S) { |
| 3037 | DIDescriptor Scope(S); |
Devang Patel | f84548d | 2009-10-05 18:03:19 +0000 | [diff] [blame] | 3038 | |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 3039 | if (Scope.isCompileUnit()) { |
| 3040 | DICompileUnit CU(S); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 3041 | Fn = CU.getFilename(); |
Devang Patel | 3cabc9d | 2010-10-28 17:30:52 +0000 | [diff] [blame] | 3042 | } else if (Scope.isFile()) { |
| 3043 | DIFile F(S); |
Devang Patel | 3cabc9d | 2010-10-28 17:30:52 +0000 | [diff] [blame] | 3044 | Fn = F.getFilename(); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 3045 | } else if (Scope.isSubprogram()) { |
| 3046 | DISubprogram SP(S); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 3047 | Fn = SP.getFilename(); |
| 3048 | } else if (Scope.isLexicalBlock()) { |
| 3049 | DILexicalBlock DB(S); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 3050 | Fn = DB.getFilename(); |
| 3051 | } else |
| 3052 | assert(0 && "Unexpected scope info"); |
| 3053 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 3054 | Src = GetOrCreateSourceID(Fn); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 3055 | } |
| 3056 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 3057 | Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, DWARF2_FLAG_IS_STMT, |
| 3058 | 0, 0); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 3059 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 3060 | MCSymbol *Label = MMI->getContext().CreateTempSymbol(); |
Chris Lattner | c608784 | 2010-03-09 04:54:43 +0000 | [diff] [blame] | 3061 | Asm->OutStreamer.EmitLabel(Label); |
| 3062 | return Label; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 3063 | } |
| 3064 | |
Bill Wendling | 829e67b | 2009-05-20 23:22:40 +0000 | [diff] [blame] | 3065 | //===----------------------------------------------------------------------===// |
| 3066 | // Emit Methods |
| 3067 | //===----------------------------------------------------------------------===// |
| 3068 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3069 | /// computeSizeAndOffset - Compute the size and offset of a DIE. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3070 | /// |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 3071 | unsigned |
| 3072 | DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3073 | // Get the children. |
| 3074 | const std::vector<DIE *> &Children = Die->getChildren(); |
| 3075 | |
| 3076 | // If not last sibling and has children then add sibling offset attribute. |
Jeffrey Yasskin | 638fe8d | 2010-03-22 18:47:14 +0000 | [diff] [blame] | 3077 | if (!Last && !Children.empty()) |
Benjamin Kramer | 345ef34 | 2010-03-31 19:34:01 +0000 | [diff] [blame] | 3078 | Die->addSiblingOffset(DIEValueAllocator); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3079 | |
| 3080 | // Record the abbreviation. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3081 | assignAbbrevNumber(Die->getAbbrev()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3082 | |
| 3083 | // Get the abbreviation for this DIE. |
| 3084 | unsigned AbbrevNumber = Die->getAbbrevNumber(); |
| 3085 | const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; |
| 3086 | |
| 3087 | // Set DIE offset |
| 3088 | Die->setOffset(Offset); |
| 3089 | |
| 3090 | // Start the size with the size of abbreviation code. |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 3091 | Offset += MCAsmInfo::getULEB128Size(AbbrevNumber); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3092 | |
| 3093 | const SmallVector<DIEValue*, 32> &Values = Die->getValues(); |
| 3094 | const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData(); |
| 3095 | |
| 3096 | // Size the DIE attribute values. |
| 3097 | for (unsigned i = 0, N = Values.size(); i < N; ++i) |
| 3098 | // Size attribute value. |
Chris Lattner | a37d538 | 2010-04-05 00:18:22 +0000 | [diff] [blame] | 3099 | Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3100 | |
| 3101 | // Size the DIE children if any. |
| 3102 | if (!Children.empty()) { |
| 3103 | assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes && |
| 3104 | "Children flag not set"); |
| 3105 | |
| 3106 | for (unsigned j = 0, M = Children.size(); j < M; ++j) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3107 | Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3108 | |
| 3109 | // End of children marker. |
| 3110 | Offset += sizeof(int8_t); |
| 3111 | } |
| 3112 | |
| 3113 | Die->setSize(Offset - Die->getOffset()); |
| 3114 | return Offset; |
| 3115 | } |
| 3116 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3117 | /// computeSizeAndOffsets - Compute the size and offset of all the DIEs. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3118 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3119 | void DwarfDebug::computeSizeAndOffsets() { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3120 | unsigned PrevOffset = 0; |
| 3121 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 3122 | E = CUMap.end(); I != E; ++I) { |
| 3123 | // Compute size of compile unit header. |
| 3124 | static unsigned Offset = PrevOffset + |
| 3125 | sizeof(int32_t) + // Length of Compilation Unit Info |
| 3126 | sizeof(int16_t) + // DWARF version number |
| 3127 | sizeof(int32_t) + // Offset Into Abbrev. Section |
| 3128 | sizeof(int8_t); // Pointer Size (in bytes) |
| 3129 | computeSizeAndOffset(I->second->getCUDie(), Offset, true); |
| 3130 | PrevOffset = Offset; |
| 3131 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3132 | } |
| 3133 | |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 3134 | /// EmitSectionSym - Switch to the specified MCSection and emit an assembler |
| 3135 | /// temporary label to it if SymbolStem is specified. |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3136 | static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section, |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 3137 | const char *SymbolStem = 0) { |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3138 | Asm->OutStreamer.SwitchSection(Section); |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 3139 | if (!SymbolStem) return 0; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3140 | |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3141 | MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem); |
| 3142 | Asm->OutStreamer.EmitLabel(TmpSym); |
| 3143 | return TmpSym; |
| 3144 | } |
| 3145 | |
| 3146 | /// EmitSectionLabels - Emit initial Dwarf sections with a label at |
| 3147 | /// the start of each one. |
Chris Lattner | fa070b0 | 2010-04-04 22:33:59 +0000 | [diff] [blame] | 3148 | void DwarfDebug::EmitSectionLabels() { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3149 | const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 3150 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3151 | // Dwarf sections base addresses. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3152 | if (Asm->MAI->doesDwarfRequireFrameSection()) { |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3153 | DwarfFrameSectionSym = |
| 3154 | EmitSectionSym(Asm, TLOF.getDwarfFrameSection(), "section_debug_frame"); |
| 3155 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3156 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3157 | DwarfInfoSectionSym = |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3158 | EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3159 | DwarfAbbrevSectionSym = |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3160 | EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev"); |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 3161 | EmitSectionSym(Asm, TLOF.getDwarfARangesSection()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3162 | |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3163 | if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection()) |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 3164 | EmitSectionSym(Asm, MacroInfo); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3165 | |
Devang Patel | af608bd | 2010-08-24 00:06:12 +0000 | [diff] [blame] | 3166 | EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line"); |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 3167 | EmitSectionSym(Asm, TLOF.getDwarfLocSection()); |
| 3168 | EmitSectionSym(Asm, TLOF.getDwarfPubNamesSection()); |
| 3169 | EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3170 | DwarfStrSectionSym = |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3171 | EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str"); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 3172 | DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(), |
| 3173 | "debug_range"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3174 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3175 | DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(), |
| 3176 | "section_debug_loc"); |
| 3177 | |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 3178 | TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin"); |
Chris Lattner | 4ad1efe | 2010-04-04 23:10:38 +0000 | [diff] [blame] | 3179 | EmitSectionSym(Asm, TLOF.getDataSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3180 | } |
| 3181 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3182 | /// emitDIE - Recusively Emits a debug information entry. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3183 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3184 | void DwarfDebug::emitDIE(DIE *Die) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3185 | // Get the abbreviation for this DIE. |
| 3186 | unsigned AbbrevNumber = Die->getAbbrevNumber(); |
| 3187 | const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; |
| 3188 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3189 | // Emit the code (index) for the abbreviation. |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 3190 | if (Asm->isVerbose()) |
Chris Lattner | 894d75a | 2010-01-22 23:18:42 +0000 | [diff] [blame] | 3191 | Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" + |
| 3192 | Twine::utohexstr(Die->getOffset()) + ":0x" + |
| 3193 | Twine::utohexstr(Die->getSize()) + " " + |
| 3194 | dwarf::TagString(Abbrev->getTag())); |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 3195 | Asm->EmitULEB128(AbbrevNumber); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3196 | |
Jeffrey Yasskin | 638fe8d | 2010-03-22 18:47:14 +0000 | [diff] [blame] | 3197 | const SmallVector<DIEValue*, 32> &Values = Die->getValues(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3198 | const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData(); |
| 3199 | |
| 3200 | // Emit the DIE attribute values. |
| 3201 | for (unsigned i = 0, N = Values.size(); i < N; ++i) { |
| 3202 | unsigned Attr = AbbrevData[i].getAttribute(); |
| 3203 | unsigned Form = AbbrevData[i].getForm(); |
| 3204 | assert(Form && "Too many attributes for DIE (check abbreviation)"); |
| 3205 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 3206 | if (Asm->isVerbose()) |
Chris Lattner | a801362 | 2010-01-24 18:54:17 +0000 | [diff] [blame] | 3207 | Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3208 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3209 | switch (Attr) { |
| 3210 | case dwarf::DW_AT_sibling: |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3211 | Asm->EmitInt32(Die->getSiblingOffset()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3212 | break; |
| 3213 | case dwarf::DW_AT_abstract_origin: { |
| 3214 | DIEEntry *E = cast<DIEEntry>(Values[i]); |
| 3215 | DIE *Origin = E->getEntry(); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 3216 | unsigned Addr = Origin->getOffset(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3217 | Asm->EmitInt32(Addr); |
| 3218 | break; |
| 3219 | } |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 3220 | case dwarf::DW_AT_ranges: { |
| 3221 | // DW_AT_range Value encodes offset in debug_range section. |
| 3222 | DIEInteger *V = cast<DIEInteger>(Values[i]); |
Devang Patel | b1fcfbe | 2010-09-02 16:43:44 +0000 | [diff] [blame] | 3223 | |
| 3224 | if (Asm->MAI->doesDwarfUsesLabelOffsetForRanges()) { |
| 3225 | Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym, |
| 3226 | V->getValue(), |
| 3227 | 4); |
| 3228 | } else { |
| 3229 | Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym, |
| 3230 | V->getValue(), |
| 3231 | DwarfDebugRangeSectionSym, |
| 3232 | 4); |
| 3233 | } |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 3234 | break; |
| 3235 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3236 | case dwarf::DW_AT_location: { |
| 3237 | if (UseDotDebugLocEntry.count(Die) != 0) { |
| 3238 | DIELabel *L = cast<DIELabel>(Values[i]); |
| 3239 | Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4); |
| 3240 | } else |
| 3241 | Values[i]->EmitValue(Asm, Form); |
| 3242 | break; |
| 3243 | } |
Devang Patel | 2a36160 | 2010-09-29 19:08:08 +0000 | [diff] [blame] | 3244 | case dwarf::DW_AT_accessibility: { |
| 3245 | if (Asm->isVerbose()) { |
| 3246 | DIEInteger *V = cast<DIEInteger>(Values[i]); |
| 3247 | Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue())); |
| 3248 | } |
| 3249 | Values[i]->EmitValue(Asm, Form); |
| 3250 | break; |
| 3251 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3252 | default: |
| 3253 | // Emit an attribute using the defined form. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3254 | Values[i]->EmitValue(Asm, Form); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3255 | break; |
| 3256 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3257 | } |
| 3258 | |
| 3259 | // Emit the DIE children if any. |
| 3260 | if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) { |
| 3261 | const std::vector<DIE *> &Children = Die->getChildren(); |
| 3262 | |
| 3263 | for (unsigned j = 0, M = Children.size(); j < M; ++j) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3264 | emitDIE(Children[j]); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3265 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 3266 | if (Asm->isVerbose()) |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3267 | Asm->OutStreamer.AddComment("End Of Children Mark"); |
| 3268 | Asm->EmitInt8(0); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3269 | } |
| 3270 | } |
| 3271 | |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 3272 | /// emitDebugInfo - Emit the debug info section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3273 | /// |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 3274 | void DwarfDebug::emitDebugInfo() { |
| 3275 | // Start debug info section. |
| 3276 | Asm->OutStreamer.SwitchSection( |
| 3277 | Asm->getObjFileLowering().getDwarfInfoSection()); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3278 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 3279 | E = CUMap.end(); I != E; ++I) { |
| 3280 | CompileUnit *TheCU = I->second; |
| 3281 | DIE *Die = TheCU->getCUDie(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3282 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3283 | // Emit the compile units header. |
| 3284 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin", |
| 3285 | TheCU->getID())); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3286 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3287 | // Emit size of content not including length itself |
| 3288 | unsigned ContentSize = Die->getSize() + |
| 3289 | sizeof(int16_t) + // DWARF version number |
| 3290 | sizeof(int32_t) + // Offset Into Abbrev. Section |
| 3291 | sizeof(int8_t) + // Pointer Size (in bytes) |
| 3292 | sizeof(int32_t); // FIXME - extra pad for gdb bug. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3293 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3294 | Asm->OutStreamer.AddComment("Length of Compilation Unit Info"); |
| 3295 | Asm->EmitInt32(ContentSize); |
| 3296 | Asm->OutStreamer.AddComment("DWARF version number"); |
| 3297 | Asm->EmitInt16(dwarf::DWARF_VERSION); |
| 3298 | Asm->OutStreamer.AddComment("Offset Into Abbrev. Section"); |
| 3299 | Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"), |
| 3300 | DwarfAbbrevSectionSym); |
| 3301 | Asm->OutStreamer.AddComment("Address Size (in bytes)"); |
| 3302 | Asm->EmitInt8(Asm->getTargetData().getPointerSize()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3303 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3304 | emitDIE(Die); |
| 3305 | // FIXME - extra padding for gdb bug. |
| 3306 | Asm->OutStreamer.AddComment("4 extra padding bytes for GDB"); |
| 3307 | Asm->EmitInt8(0); |
| 3308 | Asm->EmitInt8(0); |
| 3309 | Asm->EmitInt8(0); |
| 3310 | Asm->EmitInt8(0); |
| 3311 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID())); |
| 3312 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3313 | } |
| 3314 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3315 | /// emitAbbreviations - Emit the abbreviation section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3316 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3317 | void DwarfDebug::emitAbbreviations() const { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3318 | // Check to see if it is worth the effort. |
| 3319 | if (!Abbreviations.empty()) { |
| 3320 | // Start the debug abbrev section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3321 | Asm->OutStreamer.SwitchSection( |
| 3322 | Asm->getObjFileLowering().getDwarfAbbrevSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3323 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3324 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin")); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3325 | |
| 3326 | // For each abbrevation. |
| 3327 | for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) { |
| 3328 | // Get abbreviation data |
| 3329 | const DIEAbbrev *Abbrev = Abbreviations[i]; |
| 3330 | |
| 3331 | // Emit the abbrevations code (base 1 index.) |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 3332 | Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3333 | |
| 3334 | // Emit the abbreviations data. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3335 | Abbrev->Emit(Asm); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3336 | } |
| 3337 | |
| 3338 | // Mark end of abbreviations. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 3339 | Asm->EmitULEB128(0, "EOM(3)"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3340 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3341 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end")); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3342 | } |
| 3343 | } |
| 3344 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3345 | /// emitEndOfLineMatrix - Emit the last address of the section and the end of |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3346 | /// the line matrix. |
| 3347 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3348 | void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3349 | // Define last address of section. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3350 | Asm->OutStreamer.AddComment("Extended Op"); |
| 3351 | Asm->EmitInt8(0); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3352 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3353 | Asm->OutStreamer.AddComment("Op size"); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3354 | Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3355 | Asm->OutStreamer.AddComment("DW_LNE_set_address"); |
| 3356 | Asm->EmitInt8(dwarf::DW_LNE_set_address); |
| 3357 | |
| 3358 | Asm->OutStreamer.AddComment("Section end label"); |
Chris Lattner | d85fc6e | 2010-03-10 01:17:49 +0000 | [diff] [blame] | 3359 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3360 | Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd), |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3361 | Asm->getTargetData().getPointerSize(), |
| 3362 | 0/*AddrSpace*/); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3363 | |
| 3364 | // Mark end of matrix. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3365 | Asm->OutStreamer.AddComment("DW_LNE_end_sequence"); |
| 3366 | Asm->EmitInt8(0); |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 3367 | Asm->EmitInt8(1); |
Chris Lattner | 894d75a | 2010-01-22 23:18:42 +0000 | [diff] [blame] | 3368 | Asm->EmitInt8(1); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3369 | } |
| 3370 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3371 | /// emitCommonDebugFrame - Emit common frame info into a debug frame section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3372 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3373 | void DwarfDebug::emitCommonDebugFrame() { |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3374 | if (!Asm->MAI->doesDwarfRequireFrameSection()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3375 | return; |
| 3376 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3377 | int stackGrowth = Asm->getTargetData().getPointerSize(); |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 3378 | if (Asm->TM.getFrameLowering()->getStackGrowthDirection() == |
| 3379 | TargetFrameLowering::StackGrowsDown) |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3380 | stackGrowth *= -1; |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3381 | |
| 3382 | // Start the dwarf frame section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3383 | Asm->OutStreamer.SwitchSection( |
| 3384 | Asm->getObjFileLowering().getDwarfFrameSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3385 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3386 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common")); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3387 | Asm->OutStreamer.AddComment("Length of Common Information Entry"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 3388 | Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_frame_common_end"), |
| 3389 | Asm->GetTempSymbol("debug_frame_common_begin"), 4); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3390 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3391 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common_begin")); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3392 | Asm->OutStreamer.AddComment("CIE Identifier Tag"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3393 | Asm->EmitInt32((int)dwarf::DW_CIE_ID); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3394 | Asm->OutStreamer.AddComment("CIE Version"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3395 | Asm->EmitInt8(dwarf::DW_CIE_VERSION); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3396 | Asm->OutStreamer.AddComment("CIE Augmentation"); |
Chris Lattner | 4cf202b | 2010-01-23 03:11:46 +0000 | [diff] [blame] | 3397 | Asm->OutStreamer.EmitIntValue(0, 1, /*addrspace*/0); // nul terminator. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 3398 | Asm->EmitULEB128(1, "CIE Code Alignment Factor"); |
| 3399 | Asm->EmitSLEB128(stackGrowth, "CIE Data Alignment Factor"); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3400 | Asm->OutStreamer.AddComment("CIE RA Column"); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3401 | const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo(); |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 3402 | const TargetFrameLowering *TFI = Asm->TM.getFrameLowering(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3403 | Asm->EmitInt8(RI->getDwarfRegNum(RI->getRARegister(), false)); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3404 | |
| 3405 | std::vector<MachineMove> Moves; |
Anton Korobeynikov | d9e3385 | 2010-11-18 23:25:52 +0000 | [diff] [blame] | 3406 | TFI->getInitialFrameState(Moves); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3407 | |
Chris Lattner | 02b86b9 | 2010-04-04 23:41:46 +0000 | [diff] [blame] | 3408 | Asm->EmitFrameMoves(Moves, 0, false); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3409 | |
Chris Lattner | 059ea13 | 2010-04-28 01:05:45 +0000 | [diff] [blame] | 3410 | Asm->EmitAlignment(2); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3411 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_frame_common_end")); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3412 | } |
| 3413 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3414 | /// emitFunctionDebugFrame - Emit per function frame info into a debug frame |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3415 | /// section. |
Chris Lattner | 206d61e | 2010-03-13 07:26:18 +0000 | [diff] [blame] | 3416 | void DwarfDebug:: |
| 3417 | emitFunctionDebugFrame(const FunctionDebugFrameInfo &DebugFrameInfo) { |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3418 | if (!Asm->MAI->doesDwarfRequireFrameSection()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3419 | return; |
| 3420 | |
| 3421 | // Start the dwarf frame section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3422 | Asm->OutStreamer.SwitchSection( |
| 3423 | Asm->getObjFileLowering().getDwarfFrameSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3424 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3425 | Asm->OutStreamer.AddComment("Length of Frame Information Entry"); |
Chris Lattner | 206d61e | 2010-03-13 07:26:18 +0000 | [diff] [blame] | 3426 | MCSymbol *DebugFrameBegin = |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3427 | Asm->GetTempSymbol("debug_frame_begin", DebugFrameInfo.Number); |
Chris Lattner | 206d61e | 2010-03-13 07:26:18 +0000 | [diff] [blame] | 3428 | MCSymbol *DebugFrameEnd = |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3429 | Asm->GetTempSymbol("debug_frame_end", DebugFrameInfo.Number); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 3430 | Asm->EmitLabelDifference(DebugFrameEnd, DebugFrameBegin, 4); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3431 | |
Chris Lattner | 206d61e | 2010-03-13 07:26:18 +0000 | [diff] [blame] | 3432 | Asm->OutStreamer.EmitLabel(DebugFrameBegin); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3433 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3434 | Asm->OutStreamer.AddComment("FDE CIE offset"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3435 | Asm->EmitSectionOffset(Asm->GetTempSymbol("debug_frame_common"), |
Chris Lattner | 6189ed1 | 2010-04-04 23:25:33 +0000 | [diff] [blame] | 3436 | DwarfFrameSectionSym); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3437 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3438 | Asm->OutStreamer.AddComment("FDE initial location"); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3439 | MCSymbol *FuncBeginSym = |
| 3440 | Asm->GetTempSymbol("func_begin", DebugFrameInfo.Number); |
Chris Lattner | fb65807 | 2010-03-13 07:40:56 +0000 | [diff] [blame] | 3441 | Asm->OutStreamer.EmitSymbolValue(FuncBeginSym, |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3442 | Asm->getTargetData().getPointerSize(), |
| 3443 | 0/*AddrSpace*/); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3444 | |
| 3445 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3446 | Asm->OutStreamer.AddComment("FDE address range"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 3447 | Asm->EmitLabelDifference(Asm->GetTempSymbol("func_end",DebugFrameInfo.Number), |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3448 | FuncBeginSym, Asm->getTargetData().getPointerSize()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3449 | |
Chris Lattner | 02b86b9 | 2010-04-04 23:41:46 +0000 | [diff] [blame] | 3450 | Asm->EmitFrameMoves(DebugFrameInfo.Moves, FuncBeginSym, false); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3451 | |
Chris Lattner | 059ea13 | 2010-04-28 01:05:45 +0000 | [diff] [blame] | 3452 | Asm->EmitAlignment(2); |
Chris Lattner | 206d61e | 2010-03-13 07:26:18 +0000 | [diff] [blame] | 3453 | Asm->OutStreamer.EmitLabel(DebugFrameEnd); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3454 | } |
| 3455 | |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 3456 | /// emitDebugPubNames - Emit visible names into a debug pubnames section. |
| 3457 | /// |
| 3458 | void DwarfDebug::emitDebugPubNames() { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3459 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 3460 | E = CUMap.end(); I != E; ++I) { |
| 3461 | CompileUnit *TheCU = I->second; |
| 3462 | // Start the dwarf pubnames section. |
| 3463 | Asm->OutStreamer.SwitchSection( |
| 3464 | Asm->getObjFileLowering().getDwarfPubNamesSection()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3465 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3466 | Asm->OutStreamer.AddComment("Length of Public Names Info"); |
| 3467 | Asm->EmitLabelDifference( |
| 3468 | Asm->GetTempSymbol("pubnames_end", TheCU->getID()), |
| 3469 | Asm->GetTempSymbol("pubnames_begin", TheCU->getID()), 4); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3470 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3471 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_begin", |
| 3472 | TheCU->getID())); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3473 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3474 | Asm->OutStreamer.AddComment("DWARF Version"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3475 | Asm->EmitInt16(dwarf::DWARF_VERSION); |
| 3476 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3477 | Asm->OutStreamer.AddComment("Offset of Compilation Unit Info"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3478 | Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()), |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3479 | DwarfInfoSectionSym); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3480 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3481 | Asm->OutStreamer.AddComment("Compilation Unit Length"); |
| 3482 | Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()), |
| 3483 | Asm->GetTempSymbol("info_begin", TheCU->getID()), |
| 3484 | 4); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3485 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3486 | const StringMap<DIE*> &Globals = TheCU->getGlobals(); |
| 3487 | for (StringMap<DIE*>::const_iterator |
| 3488 | GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) { |
| 3489 | const char *Name = GI->getKeyData(); |
| 3490 | DIE *Entity = GI->second; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3491 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3492 | Asm->OutStreamer.AddComment("DIE offset"); |
| 3493 | Asm->EmitInt32(Entity->getOffset()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3494 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3495 | if (Asm->isVerbose()) |
| 3496 | Asm->OutStreamer.AddComment("External Name"); |
| 3497 | Asm->OutStreamer.EmitBytes(StringRef(Name, strlen(Name)+1), 0); |
| 3498 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3499 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3500 | Asm->OutStreamer.AddComment("End Mark"); |
| 3501 | Asm->EmitInt32(0); |
| 3502 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubnames_end", |
| 3503 | TheCU->getID())); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3504 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3505 | } |
| 3506 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 3507 | void DwarfDebug::emitDebugPubTypes() { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3508 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 3509 | E = CUMap.end(); I != E; ++I) { |
| 3510 | CompileUnit *TheCU = I->second; |
| 3511 | // Start the dwarf pubnames section. |
| 3512 | Asm->OutStreamer.SwitchSection( |
| 3513 | Asm->getObjFileLowering().getDwarfPubTypesSection()); |
| 3514 | Asm->OutStreamer.AddComment("Length of Public Types Info"); |
| 3515 | Asm->EmitLabelDifference( |
| 3516 | Asm->GetTempSymbol("pubtypes_end", TheCU->getID()), |
| 3517 | Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3518 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3519 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin", |
| 3520 | TheCU->getID())); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3521 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3522 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version"); |
| 3523 | Asm->EmitInt16(dwarf::DWARF_VERSION); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3524 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3525 | Asm->OutStreamer.AddComment("Offset of Compilation Unit Info"); |
| 3526 | Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()), |
| 3527 | DwarfInfoSectionSym); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3528 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3529 | Asm->OutStreamer.AddComment("Compilation Unit Length"); |
| 3530 | Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()), |
| 3531 | Asm->GetTempSymbol("info_begin", TheCU->getID()), |
| 3532 | 4); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3533 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3534 | const StringMap<DIE*> &Globals = TheCU->getGlobalTypes(); |
| 3535 | for (StringMap<DIE*>::const_iterator |
| 3536 | GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) { |
| 3537 | const char *Name = GI->getKeyData(); |
| 3538 | DIE * Entity = GI->second; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3539 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3540 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset"); |
| 3541 | Asm->EmitInt32(Entity->getOffset()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3542 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3543 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name"); |
| 3544 | Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0); |
| 3545 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3546 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3547 | Asm->OutStreamer.AddComment("End Mark"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3548 | Asm->EmitInt32(0); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3549 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end", |
| 3550 | TheCU->getID())); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 3551 | } |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 3552 | } |
| 3553 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3554 | /// emitDebugStr - Emit visible names into a debug str section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3555 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3556 | void DwarfDebug::emitDebugStr() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3557 | // Check to see if it is worth the effort. |
Chris Lattner | 0d9d70f | 2010-03-09 23:38:23 +0000 | [diff] [blame] | 3558 | if (StringPool.empty()) return; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3559 | |
Chris Lattner | 0d9d70f | 2010-03-09 23:38:23 +0000 | [diff] [blame] | 3560 | // Start the dwarf str section. |
| 3561 | Asm->OutStreamer.SwitchSection( |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3562 | Asm->getObjFileLowering().getDwarfStrSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3563 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 3564 | // Get all of the string pool entries and put them in an array by their ID so |
| 3565 | // we can sort them. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3566 | SmallVector<std::pair<unsigned, |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 3567 | StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3568 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 3569 | for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator |
| 3570 | I = StringPool.begin(), E = StringPool.end(); I != E; ++I) |
| 3571 | Entries.push_back(std::make_pair(I->second.second, &*I)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3572 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 3573 | array_pod_sort(Entries.begin(), Entries.end()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3574 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 3575 | for (unsigned i = 0, e = Entries.size(); i != e; ++i) { |
Chris Lattner | 0d9d70f | 2010-03-09 23:38:23 +0000 | [diff] [blame] | 3576 | // Emit a label for reference from debug information entries. |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 3577 | Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3578 | |
Chris Lattner | 0d9d70f | 2010-03-09 23:38:23 +0000 | [diff] [blame] | 3579 | // Emit the string itself. |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 3580 | Asm->OutStreamer.EmitBytes(Entries[i].second->getKey(), 0/*addrspace*/); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3581 | } |
| 3582 | } |
| 3583 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3584 | /// emitDebugLoc - Emit visible names into a debug loc section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3585 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3586 | void DwarfDebug::emitDebugLoc() { |
Devang Patel | 8025068 | 2010-05-26 23:55:23 +0000 | [diff] [blame] | 3587 | if (DotDebugLocEntries.empty()) |
| 3588 | return; |
| 3589 | |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 3590 | for (SmallVector<DotDebugLocEntry, 4>::iterator |
| 3591 | I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end(); |
| 3592 | I != E; ++I) { |
| 3593 | DotDebugLocEntry &Entry = *I; |
| 3594 | if (I + 1 != DotDebugLocEntries.end()) |
| 3595 | Entry.Merge(I+1); |
| 3596 | } |
| 3597 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3598 | // Start the dwarf loc section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3599 | Asm->OutStreamer.SwitchSection( |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3600 | Asm->getObjFileLowering().getDwarfLocSection()); |
| 3601 | unsigned char Size = Asm->getTargetData().getPointerSize(); |
Devang Patel | 8025068 | 2010-05-26 23:55:23 +0000 | [diff] [blame] | 3602 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0)); |
| 3603 | unsigned index = 1; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3604 | for (SmallVector<DotDebugLocEntry, 4>::iterator |
| 3605 | I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end(); |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 3606 | I != E; ++I, ++index) { |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 3607 | DotDebugLocEntry &Entry = *I; |
| 3608 | if (Entry.isMerged()) continue; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3609 | if (Entry.isEmpty()) { |
| 3610 | Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0); |
| 3611 | Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0); |
Devang Patel | 8025068 | 2010-05-26 23:55:23 +0000 | [diff] [blame] | 3612 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index)); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3613 | } else { |
| 3614 | Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0); |
| 3615 | Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0); |
| 3616 | const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo(); |
| 3617 | unsigned Reg = RI->getDwarfRegNum(Entry.Loc.getReg(), false); |
Devang Patel | b2cf581 | 2010-08-04 18:40:52 +0000 | [diff] [blame] | 3618 | if (int Offset = Entry.Loc.getOffset()) { |
| 3619 | // If the value is at a certain offset from frame register then |
| 3620 | // use DW_OP_fbreg. |
| 3621 | unsigned OffsetSize = Offset ? MCAsmInfo::getSLEB128Size(Offset) : 1; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3622 | Asm->OutStreamer.AddComment("Loc expr size"); |
Devang Patel | b2cf581 | 2010-08-04 18:40:52 +0000 | [diff] [blame] | 3623 | Asm->EmitInt16(1 + OffsetSize); |
| 3624 | Asm->OutStreamer.AddComment( |
| 3625 | dwarf::OperationEncodingString(dwarf::DW_OP_fbreg)); |
| 3626 | Asm->EmitInt8(dwarf::DW_OP_fbreg); |
| 3627 | Asm->OutStreamer.AddComment("Offset"); |
| 3628 | Asm->EmitSLEB128(Offset); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3629 | } else { |
Devang Patel | b2cf581 | 2010-08-04 18:40:52 +0000 | [diff] [blame] | 3630 | if (Reg < 32) { |
| 3631 | Asm->OutStreamer.AddComment("Loc expr size"); |
| 3632 | Asm->EmitInt16(1); |
| 3633 | Asm->OutStreamer.AddComment( |
Devang Patel | a54e0cc | 2010-08-04 20:32:36 +0000 | [diff] [blame] | 3634 | dwarf::OperationEncodingString(dwarf::DW_OP_reg0 + Reg)); |
Devang Patel | b2cf581 | 2010-08-04 18:40:52 +0000 | [diff] [blame] | 3635 | Asm->EmitInt8(dwarf::DW_OP_reg0 + Reg); |
| 3636 | } else { |
| 3637 | Asm->OutStreamer.AddComment("Loc expr size"); |
| 3638 | Asm->EmitInt16(1 + MCAsmInfo::getULEB128Size(Reg)); |
| 3639 | Asm->EmitInt8(dwarf::DW_OP_regx); |
| 3640 | Asm->EmitULEB128(Reg); |
| 3641 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 3642 | } |
| 3643 | } |
| 3644 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3645 | } |
| 3646 | |
| 3647 | /// EmitDebugARanges - Emit visible names into a debug aranges section. |
| 3648 | /// |
| 3649 | void DwarfDebug::EmitDebugARanges() { |
| 3650 | // Start the dwarf aranges section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3651 | Asm->OutStreamer.SwitchSection( |
| 3652 | Asm->getObjFileLowering().getDwarfARangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3653 | } |
| 3654 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3655 | /// emitDebugRanges - Emit visible names into a debug ranges section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3656 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3657 | void DwarfDebug::emitDebugRanges() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3658 | // Start the dwarf ranges section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3659 | Asm->OutStreamer.SwitchSection( |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 3660 | Asm->getObjFileLowering().getDwarfRangesSection()); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 3661 | unsigned char Size = Asm->getTargetData().getPointerSize(); |
| 3662 | for (SmallVector<const MCSymbol *, 8>::iterator |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3663 | I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 3664 | I != E; ++I) { |
| 3665 | if (*I) |
| 3666 | Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 3667 | else |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 3668 | Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 3669 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3670 | } |
| 3671 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3672 | /// emitDebugMacInfo - Emit visible names into a debug macinfo section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3673 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3674 | void DwarfDebug::emitDebugMacInfo() { |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 3675 | if (const MCSection *LineInfo = |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 3676 | Asm->getObjFileLowering().getDwarfMacroInfoSection()) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3677 | // Start the dwarf macinfo section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3678 | Asm->OutStreamer.SwitchSection(LineInfo); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3679 | } |
| 3680 | } |
| 3681 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3682 | /// emitDebugInlineInfo - Emit inline info using following format. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3683 | /// Section Header: |
| 3684 | /// 1. length of section |
| 3685 | /// 2. Dwarf version number |
| 3686 | /// 3. address size. |
| 3687 | /// |
| 3688 | /// Entries (one "entry" for each function that was inlined): |
| 3689 | /// |
| 3690 | /// 1. offset into __debug_str section for MIPS linkage name, if exists; |
| 3691 | /// otherwise offset into __debug_str for regular function name. |
| 3692 | /// 2. offset into __debug_str section for regular function name. |
| 3693 | /// 3. an unsigned LEB128 number indicating the number of distinct inlining |
| 3694 | /// instances for the function. |
| 3695 | /// |
| 3696 | /// The rest of the entry consists of a {die_offset, low_pc} pair for each |
| 3697 | /// inlined instance; the die_offset points to the inlined_subroutine die in the |
| 3698 | /// __debug_info section, and the low_pc is the starting address for the |
| 3699 | /// inlining instance. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 3700 | void DwarfDebug::emitDebugInlineInfo() { |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3701 | if (!Asm->MAI->doesDwarfUsesInlineInfoSection()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3702 | return; |
| 3703 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 3704 | if (!FirstCU) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3705 | return; |
| 3706 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 3707 | Asm->OutStreamer.SwitchSection( |
| 3708 | Asm->getObjFileLowering().getDwarfDebugInlineSection()); |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 3709 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3710 | Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 3711 | Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1), |
| 3712 | Asm->GetTempSymbol("debug_inlined_begin", 1), 4); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3713 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3714 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1)); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3715 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3716 | Asm->OutStreamer.AddComment("Dwarf Version"); |
| 3717 | Asm->EmitInt16(dwarf::DWARF_VERSION); |
| 3718 | Asm->OutStreamer.AddComment("Address Size (in bytes)"); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3719 | Asm->EmitInt8(Asm->getTargetData().getPointerSize()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3720 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 3721 | for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(), |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 3722 | E = InlinedSPNodes.end(); I != E; ++I) { |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 3723 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 3724 | const MDNode *Node = *I; |
| 3725 | DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 3726 | = InlineInfo.find(Node); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 3727 | SmallVector<InlineInfoLabels, 4> &Labels = II->second; |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 3728 | DISubprogram SP(Node); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 3729 | StringRef LName = SP.getLinkageName(); |
| 3730 | StringRef Name = SP.getName(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3731 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3732 | Asm->OutStreamer.AddComment("MIPS linkage name"); |
Chris Lattner | 4cf202b | 2010-01-23 03:11:46 +0000 | [diff] [blame] | 3733 | if (LName.empty()) { |
| 3734 | Asm->OutStreamer.EmitBytes(Name, 0); |
| 3735 | Asm->OutStreamer.EmitIntValue(0, 1, 0); // nul terminator. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 3736 | } else |
Chris Lattner | 6189ed1 | 2010-04-04 23:25:33 +0000 | [diff] [blame] | 3737 | Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)), |
| 3738 | DwarfStrSectionSym); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 3739 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 3740 | Asm->OutStreamer.AddComment("Function name"); |
Chris Lattner | 6189ed1 | 2010-04-04 23:25:33 +0000 | [diff] [blame] | 3741 | Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym); |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 3742 | Asm->EmitULEB128(Labels.size(), "Inline count"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3743 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 3744 | for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(), |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3745 | LE = Labels.end(); LI != LE; ++LI) { |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 3746 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset"); |
Chris Lattner | 6ed0f90 | 2010-03-09 00:31:02 +0000 | [diff] [blame] | 3747 | Asm->EmitInt32(LI->second->getOffset()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3748 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 3749 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc"); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 3750 | Asm->OutStreamer.EmitSymbolValue(LI->first, |
| 3751 | Asm->getTargetData().getPointerSize(),0); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3752 | } |
| 3753 | } |
| 3754 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 3755 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1)); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 3756 | } |