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