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" |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 17 | #include "DwarfAccelTable.h" |
Devang Patel | 8b9df62 | 2011-04-12 17:40:32 +0000 | [diff] [blame] | 18 | #include "DwarfCompileUnit.h" |
Bill Wendling | 57fbba4 | 2010-04-05 22:59:21 +0000 | [diff] [blame] | 19 | #include "llvm/Constants.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 20 | #include "llvm/Module.h" |
Devang Patel | e449d1f | 2011-01-20 00:02:16 +0000 | [diff] [blame] | 21 | #include "llvm/Instructions.h" |
Eric Christopher | 60777d8 | 2012-04-02 17:58:52 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Triple.h" |
David Greene | b2c66fc | 2009-08-19 21:52:55 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunction.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 25 | #include "llvm/MC/MCAsmInfo.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 26 | #include "llvm/MC/MCSection.h" |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 27 | #include "llvm/MC/MCStreamer.h" |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 28 | #include "llvm/MC/MCSymbol.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetData.h" |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame] | 30 | #include "llvm/Target/TargetFrameLowering.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetLoweringObjectFile.h" |
Chris Lattner | 9d1c1ad | 2010-04-04 18:06:11 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 33 | #include "llvm/Target/TargetRegisterInfo.h" |
Devang Patel | 2a4a3b7 | 2010-04-19 19:14:02 +0000 | [diff] [blame] | 34 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | 74e41f9 | 2010-04-05 05:24:55 +0000 | [diff] [blame] | 35 | #include "llvm/Analysis/DebugInfo.h" |
Devang Patel | 0eea95d | 2011-02-24 18:49:30 +0000 | [diff] [blame] | 36 | #include "llvm/Analysis/DIBuilder.h" |
Devang Patel | 9a31f0f | 2010-10-25 20:45:32 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/Statistic.h" |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/STLExtras.h" |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 39 | #include "llvm/ADT/StringExtras.h" |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 40 | #include "llvm/Support/CommandLine.h" |
Daniel Dunbar | 6e4bdfc | 2009-10-13 06:47:08 +0000 | [diff] [blame] | 41 | #include "llvm/Support/Debug.h" |
| 42 | #include "llvm/Support/ErrorHandling.h" |
Devang Patel | 3139fcf | 2010-01-26 21:39:14 +0000 | [diff] [blame] | 43 | #include "llvm/Support/ValueHandle.h" |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 44 | #include "llvm/Support/FormattedStream.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 45 | #include "llvm/Support/Timer.h" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 46 | #include "llvm/Support/Path.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 47 | using namespace llvm; |
| 48 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 49 | static cl::opt<bool> DisableDebugInfoPrinting("disable-debug-info-print", |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 50 | cl::Hidden, |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 51 | cl::desc("Disable debug info printing")); |
| 52 | |
Dan Gohman | 281d65d | 2010-05-07 01:08:53 +0000 | [diff] [blame] | 53 | static cl::opt<bool> UnknownLocations("use-unknown-locations", cl::Hidden, |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 54 | cl::desc("Make an absence of debug location information explicit."), |
Dan Gohman | 281d65d | 2010-05-07 01:08:53 +0000 | [diff] [blame] | 55 | cl::init(false)); |
| 56 | |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 57 | static cl::opt<bool> DwarfAccelTables("dwarf-accel-tables", cl::Hidden, |
| 58 | cl::desc("Output prototype dwarf accelerator tables."), |
| 59 | cl::init(false)); |
| 60 | |
Bill Wendling | 5f017e8 | 2010-04-07 09:28:04 +0000 | [diff] [blame] | 61 | namespace { |
| 62 | const char *DWARFGroupName = "DWARF Emission"; |
| 63 | const char *DbgTimerName = "DWARF Debug Writer"; |
| 64 | } // end anonymous namespace |
| 65 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 66 | //===----------------------------------------------------------------------===// |
| 67 | |
| 68 | /// Configuration values for initial hash set sizes (log2). |
| 69 | /// |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 70 | static const unsigned InitAbbreviationsSetSize = 9; // log2(512) |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 71 | |
| 72 | namespace llvm { |
| 73 | |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 74 | DIType DbgVariable::getType() const { |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 75 | DIType Ty = Var.getType(); |
| 76 | // FIXME: isBlockByrefVariable should be reformulated in terms of complex |
| 77 | // addresses instead. |
| 78 | if (Var.isBlockByrefVariable()) { |
| 79 | /* Byref variables, in Blocks, are declared by the programmer as |
| 80 | "SomeType VarName;", but the compiler creates a |
| 81 | __Block_byref_x_VarName struct, and gives the variable VarName |
| 82 | either the struct, or a pointer to the struct, as its type. This |
| 83 | is necessary for various behind-the-scenes things the compiler |
| 84 | needs to do with by-reference variables in blocks. |
| 85 | |
| 86 | However, as far as the original *programmer* is concerned, the |
| 87 | variable should still have type 'SomeType', as originally declared. |
| 88 | |
| 89 | The following function dives into the __Block_byref_x_VarName |
| 90 | struct to find the original type of the variable. This will be |
| 91 | passed back to the code generating the type for the Debug |
| 92 | Information Entry for the variable 'VarName'. 'VarName' will then |
| 93 | have the original type 'SomeType' in its debug information. |
| 94 | |
| 95 | The original type 'SomeType' will be the type of the field named |
| 96 | 'VarName' inside the __Block_byref_x_VarName struct. |
| 97 | |
| 98 | NOTE: In order for this to not completely fail on the debugger |
| 99 | side, the Debug Information Entry for the variable VarName needs to |
| 100 | have a DW_AT_location that tells the debugger how to unwind through |
| 101 | the pointers and __Block_byref_x_VarName struct to find the actual |
| 102 | value of the variable. The function addBlockByrefType does this. */ |
| 103 | DIType subType = Ty; |
| 104 | unsigned tag = Ty.getTag(); |
| 105 | |
| 106 | if (tag == dwarf::DW_TAG_pointer_type) { |
| 107 | DIDerivedType DTy = DIDerivedType(Ty); |
| 108 | subType = DTy.getTypeDerivedFrom(); |
| 109 | } |
| 110 | |
| 111 | DICompositeType blockStruct = DICompositeType(subType); |
| 112 | DIArray Elements = blockStruct.getTypeArray(); |
| 113 | |
| 114 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
| 115 | DIDescriptor Element = Elements.getElement(i); |
| 116 | DIDerivedType DT = DIDerivedType(Element); |
| 117 | if (getName() == DT.getName()) |
| 118 | return (DT.getTypeDerivedFrom()); |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 119 | } |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 120 | } |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 121 | return Ty; |
| 122 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 123 | |
Chris Lattner | ea76186 | 2010-04-05 04:09:20 +0000 | [diff] [blame] | 124 | } // end llvm namespace |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 125 | |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 126 | DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M) |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 127 | : Asm(A), MMI(Asm->MMI), FirstCU(0), |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 128 | AbbreviationsSet(InitAbbreviationsSetSize), |
Benjamin Kramer | f33a79c | 2012-06-09 10:34:15 +0000 | [diff] [blame] | 129 | SourceIdMap(DIEValueAllocator), StringPool(DIEValueAllocator), |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 130 | PrevLabel(NULL) { |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 131 | NextStringPoolNumber = 0; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 132 | |
Rafael Espindola | f2b0423 | 2011-05-06 14:56:22 +0000 | [diff] [blame] | 133 | DwarfInfoSectionSym = DwarfAbbrevSectionSym = 0; |
Chris Lattner | 4ad1efe | 2010-04-04 23:10:38 +0000 | [diff] [blame] | 134 | DwarfStrSectionSym = TextSectionSym = 0; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 135 | DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = 0; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 136 | FunctionBeginSym = FunctionEndSym = 0; |
Eric Christopher | 60777d8 | 2012-04-02 17:58:52 +0000 | [diff] [blame] | 137 | |
| 138 | // Turn on accelerator tables for Darwin. |
| 139 | if (Triple(M->getTargetTriple()).isOSDarwin()) |
| 140 | DwarfAccelTables = true; |
| 141 | |
Dan Gohman | 03c3dc7 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 142 | { |
| 143 | NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled); |
| 144 | beginModule(M); |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 145 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 146 | } |
| 147 | DwarfDebug::~DwarfDebug() { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Eric Christopher | d8a8752 | 2011-11-07 09:18:38 +0000 | [diff] [blame] | 150 | /// EmitSectionSym - Switch to the specified MCSection and emit an assembler |
| 151 | /// temporary label to it if SymbolStem is specified. |
| 152 | static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section, |
| 153 | const char *SymbolStem = 0) { |
| 154 | Asm->OutStreamer.SwitchSection(Section); |
| 155 | if (!SymbolStem) return 0; |
| 156 | |
| 157 | MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem); |
| 158 | Asm->OutStreamer.EmitLabel(TmpSym); |
| 159 | return TmpSym; |
| 160 | } |
| 161 | |
Nick Lewycky | 390c40d | 2011-10-27 06:44:11 +0000 | [diff] [blame] | 162 | MCSymbol *DwarfDebug::getStringPool() { |
| 163 | return Asm->GetTempSymbol("section_str"); |
| 164 | } |
| 165 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 166 | MCSymbol *DwarfDebug::getStringPoolEntry(StringRef Str) { |
| 167 | std::pair<MCSymbol*, unsigned> &Entry = StringPool[Str]; |
| 168 | if (Entry.first) return Entry.first; |
| 169 | |
| 170 | Entry.second = NextStringPoolNumber++; |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 171 | return Entry.first = Asm->GetTempSymbol("string", Entry.second); |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 172 | } |
| 173 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 174 | /// assignAbbrevNumber - Define a unique number for the abbreviation. |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 175 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 176 | void DwarfDebug::assignAbbrevNumber(DIEAbbrev &Abbrev) { |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 177 | // Profile the node so that we can make it unique. |
| 178 | FoldingSetNodeID ID; |
| 179 | Abbrev.Profile(ID); |
| 180 | |
| 181 | // Check the set for priors. |
| 182 | DIEAbbrev *InSet = AbbreviationsSet.GetOrInsertNode(&Abbrev); |
| 183 | |
| 184 | // If it's newly added. |
| 185 | if (InSet == &Abbrev) { |
| 186 | // Add to abbreviation list. |
| 187 | Abbreviations.push_back(&Abbrev); |
| 188 | |
| 189 | // Assign the vector position + 1 as its number. |
| 190 | Abbrev.setNumber(Abbreviations.size()); |
| 191 | } else { |
| 192 | // Assign existing abbreviation number. |
| 193 | Abbrev.setNumber(InSet->getNumber()); |
| 194 | } |
| 195 | } |
| 196 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 197 | /// getRealLinkageName - If special LLVM prefix that is used to inform the asm |
Devang Patel | 351ca33 | 2010-01-05 01:46:14 +0000 | [diff] [blame] | 198 | /// printer to not emit usual symbol prefix before the symbol name is used then |
| 199 | /// return linkage name after skipping this special LLVM prefix. |
| 200 | static StringRef getRealLinkageName(StringRef LinkageName) { |
| 201 | char One = '\1'; |
| 202 | if (LinkageName.startswith(StringRef(&One, 1))) |
| 203 | return LinkageName.substr(1); |
| 204 | return LinkageName; |
| 205 | } |
| 206 | |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 207 | static bool isObjCClass(StringRef Name) { |
| 208 | return Name.startswith("+") || Name.startswith("-"); |
| 209 | } |
| 210 | |
| 211 | static bool hasObjCCategory(StringRef Name) { |
| 212 | if (!isObjCClass(Name)) return false; |
| 213 | |
| 214 | size_t pos = Name.find(')'); |
| 215 | if (pos != std::string::npos) { |
| 216 | if (Name[pos+1] != ' ') return false; |
| 217 | return true; |
| 218 | } |
| 219 | return false; |
| 220 | } |
| 221 | |
| 222 | static void getObjCClassCategory(StringRef In, StringRef &Class, |
| 223 | StringRef &Category) { |
| 224 | if (!hasObjCCategory(In)) { |
| 225 | Class = In.slice(In.find('[') + 1, In.find(' ')); |
| 226 | Category = ""; |
| 227 | return; |
| 228 | } |
| 229 | |
| 230 | Class = In.slice(In.find('[') + 1, In.find('(')); |
| 231 | Category = In.slice(In.find('[') + 1, In.find(' ')); |
| 232 | return; |
| 233 | } |
| 234 | |
| 235 | static StringRef getObjCMethodName(StringRef In) { |
| 236 | return In.slice(In.find(' ') + 1, In.find(']')); |
| 237 | } |
| 238 | |
| 239 | // Add the various names to the Dwarf accelerator table names. |
| 240 | static void addSubprogramNames(CompileUnit *TheCU, DISubprogram SP, |
| 241 | DIE* Die) { |
| 242 | if (!SP.isDefinition()) return; |
| 243 | |
| 244 | TheCU->addAccelName(SP.getName(), Die); |
| 245 | |
| 246 | // If the linkage name is different than the name, go ahead and output |
| 247 | // that as well into the name table. |
| 248 | if (SP.getLinkageName() != "" && SP.getName() != SP.getLinkageName()) |
| 249 | TheCU->addAccelName(SP.getLinkageName(), Die); |
| 250 | |
| 251 | // If this is an Objective-C selector name add it to the ObjC accelerator |
| 252 | // too. |
| 253 | if (isObjCClass(SP.getName())) { |
| 254 | StringRef Class, Category; |
| 255 | getObjCClassCategory(SP.getName(), Class, Category); |
| 256 | TheCU->addAccelObjC(Class, Die); |
| 257 | if (Category != "") |
| 258 | TheCU->addAccelObjC(Category, Die); |
| 259 | // Also add the base method name to the name table. |
| 260 | TheCU->addAccelName(getObjCMethodName(SP.getName()), Die); |
| 261 | } |
| 262 | } |
| 263 | |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 264 | /// updateSubprogramScopeDIE - Find DIE for the given subprogram and |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 265 | /// attach appropriate DW_AT_low_pc and DW_AT_high_pc attributes. |
| 266 | /// If there are global variables in this scope then create and insert |
| 267 | /// DIEs for these variables. |
Devang Patel | d302434 | 2011-08-15 22:24:32 +0000 | [diff] [blame] | 268 | DIE *DwarfDebug::updateSubprogramScopeDIE(CompileUnit *SPCU, |
| 269 | const MDNode *SPNode) { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 270 | DIE *SPDie = SPCU->getDIE(SPNode); |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 271 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 272 | assert(SPDie && "Unable to find subprogram DIE!"); |
| 273 | DISubprogram SP(SPNode); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 274 | |
Devang Patel | 5e06bb8 | 2011-04-22 23:10:17 +0000 | [diff] [blame] | 275 | DISubprogram SPDecl = SP.getFunctionDeclaration(); |
Rafael Espindola | b052728 | 2011-11-04 19:00:29 +0000 | [diff] [blame] | 276 | if (!SPDecl.isSubprogram()) { |
Devang Patel | 5e06bb8 | 2011-04-22 23:10:17 +0000 | [diff] [blame] | 277 | // There is not any need to generate specification DIE for a function |
| 278 | // defined at compile unit level. If a function is defined inside another |
| 279 | // function then gdb prefers the definition at top level and but does not |
| 280 | // expect specification DIE in parent function. So avoid creating |
| 281 | // specification DIE for a function defined inside a function. |
| 282 | if (SP.isDefinition() && !SP.getContext().isCompileUnit() && |
| 283 | !SP.getContext().isFile() && |
| 284 | !isSubprogramContext(SP.getContext())) { |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 285 | SPCU->addUInt(SPDie, dwarf::DW_AT_declaration, dwarf::DW_FORM_flag, 1); |
Devang Patel | 5e06bb8 | 2011-04-22 23:10:17 +0000 | [diff] [blame] | 286 | |
| 287 | // Add arguments. |
| 288 | DICompositeType SPTy = SP.getType(); |
| 289 | DIArray Args = SPTy.getTypeArray(); |
| 290 | unsigned SPTag = SPTy.getTag(); |
| 291 | if (SPTag == dwarf::DW_TAG_subroutine_type) |
| 292 | for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) { |
| 293 | DIE *Arg = new DIE(dwarf::DW_TAG_formal_parameter); |
| 294 | DIType ATy = DIType(DIType(Args.getElement(i))); |
| 295 | SPCU->addType(Arg, ATy); |
| 296 | if (ATy.isArtificial()) |
| 297 | SPCU->addUInt(Arg, dwarf::DW_AT_artificial, dwarf::DW_FORM_flag, 1); |
| 298 | SPDie->addChild(Arg); |
| 299 | } |
| 300 | DIE *SPDeclDie = SPDie; |
| 301 | SPDie = new DIE(dwarf::DW_TAG_subprogram); |
| 302 | SPCU->addDIEEntry(SPDie, dwarf::DW_AT_specification, dwarf::DW_FORM_ref4, |
| 303 | SPDeclDie); |
| 304 | SPCU->addDie(SPDie); |
| 305 | } |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 306 | } |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 307 | // Pick up abstract subprogram DIE. |
| 308 | if (DIE *AbsSPDIE = AbstractSPDies.lookup(SPNode)) { |
| 309 | SPDie = new DIE(dwarf::DW_TAG_subprogram); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 310 | SPCU->addDIEEntry(SPDie, dwarf::DW_AT_abstract_origin, |
| 311 | dwarf::DW_FORM_ref4, AbsSPDIE); |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 312 | SPCU->addDie(SPDie); |
| 313 | } |
| 314 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 315 | SPCU->addLabel(SPDie, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, |
| 316 | Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber())); |
| 317 | SPCU->addLabel(SPDie, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, |
| 318 | Asm->GetTempSymbol("func_end", Asm->getFunctionNumber())); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 319 | const TargetRegisterInfo *RI = Asm->TM.getRegisterInfo(); |
| 320 | MachineLocation Location(RI->getFrameRegister(*Asm->MF)); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 321 | SPCU->addAddress(SPDie, dwarf::DW_AT_frame_base, Location); |
Devang Patel | b464564 | 2010-02-06 01:02:37 +0000 | [diff] [blame] | 322 | |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 323 | // Add name to the name table, we do this here because we're guaranteed |
| 324 | // to have concrete versions of our DW_TAG_subprogram nodes. |
| 325 | addSubprogramNames(SPCU, SP, SPDie); |
| 326 | |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 327 | return SPDie; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 330 | /// constructLexicalScope - Construct new DW_TAG_lexical_block |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 331 | /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels. |
Devang Patel | d302434 | 2011-08-15 22:24:32 +0000 | [diff] [blame] | 332 | DIE *DwarfDebug::constructLexicalScopeDIE(CompileUnit *TheCU, |
| 333 | LexicalScope *Scope) { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 334 | DIE *ScopeDIE = new DIE(dwarf::DW_TAG_lexical_block); |
| 335 | if (Scope->isAbstractScope()) |
| 336 | return ScopeDIE; |
| 337 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 338 | const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 339 | if (Ranges.empty()) |
| 340 | return 0; |
| 341 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 342 | SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 343 | if (Ranges.size() > 1) { |
| 344 | // .debug_range section has not been laid out yet. Emit offset in |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 345 | // .debug_range as a uint, size 4, for now. emitDIE will handle |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 346 | // DW_AT_ranges appropriately. |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 347 | TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4, |
Devang Patel | 5bc942c | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 348 | DebugRangeSymbols.size() |
| 349 | * Asm->getTargetData().getPointerSize()); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 350 | for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(), |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 351 | RE = Ranges.end(); RI != RE; ++RI) { |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 352 | DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first)); |
| 353 | DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second)); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 354 | } |
| 355 | DebugRangeSymbols.push_back(NULL); |
| 356 | DebugRangeSymbols.push_back(NULL); |
| 357 | return ScopeDIE; |
| 358 | } |
| 359 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 360 | const MCSymbol *Start = getLabelBeforeInsn(RI->first); |
| 361 | const MCSymbol *End = getLabelAfterInsn(RI->second); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 362 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 363 | if (End == 0) return 0; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 364 | |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 365 | assert(Start->isDefined() && "Invalid starting label for an inlined scope!"); |
| 366 | assert(End->isDefined() && "Invalid end label for an inlined scope!"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 367 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 368 | TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start); |
| 369 | TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 370 | |
| 371 | return ScopeDIE; |
| 372 | } |
| 373 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 374 | /// constructInlinedScopeDIE - This scope represents inlined body of |
| 375 | /// a function. Construct DIE to represent this concrete inlined copy |
| 376 | /// of the function. |
Devang Patel | d302434 | 2011-08-15 22:24:32 +0000 | [diff] [blame] | 377 | DIE *DwarfDebug::constructInlinedScopeDIE(CompileUnit *TheCU, |
| 378 | LexicalScope *Scope) { |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 379 | const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges(); |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 380 | assert(Ranges.empty() == false && |
| 381 | "LexicalScope does not have instruction markers!"); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 382 | |
Devang Patel | 26a9200 | 2011-07-27 00:34:13 +0000 | [diff] [blame] | 383 | if (!Scope->getScopeNode()) |
| 384 | return NULL; |
| 385 | DIScope DS(Scope->getScopeNode()); |
| 386 | DISubprogram InlinedSP = getDISubprogram(DS); |
Devang Patel | 26a9200 | 2011-07-27 00:34:13 +0000 | [diff] [blame] | 387 | DIE *OriginDIE = TheCU->getDIE(InlinedSP); |
| 388 | if (!OriginDIE) { |
| 389 | DEBUG(dbgs() << "Unable to find original DIE for inlined subprogram."); |
| 390 | return NULL; |
| 391 | } |
| 392 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 393 | SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 394 | const MCSymbol *StartLabel = getLabelBeforeInsn(RI->first); |
| 395 | const MCSymbol *EndLabel = getLabelAfterInsn(RI->second); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 396 | |
Devang Patel | 0afbf23 | 2010-07-08 22:39:20 +0000 | [diff] [blame] | 397 | if (StartLabel == 0 || EndLabel == 0) { |
Craig Topper | 5e25ee8 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 398 | llvm_unreachable("Unexpected Start and End labels for a inlined scope!"); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 399 | } |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 400 | assert(StartLabel->isDefined() && |
Chris Lattner | a34ec229 | 2010-03-09 01:51:43 +0000 | [diff] [blame] | 401 | "Invalid starting label for an inlined scope!"); |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 402 | assert(EndLabel->isDefined() && |
Chris Lattner | a34ec229 | 2010-03-09 01:51:43 +0000 | [diff] [blame] | 403 | "Invalid end label for an inlined scope!"); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 404 | |
Devang Patel | d96efb8 | 2011-05-05 17:54:26 +0000 | [diff] [blame] | 405 | DIE *ScopeDIE = new DIE(dwarf::DW_TAG_inlined_subroutine); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 406 | TheCU->addDIEEntry(ScopeDIE, dwarf::DW_AT_abstract_origin, |
| 407 | dwarf::DW_FORM_ref4, OriginDIE); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 408 | |
Devang Patel | 26a9200 | 2011-07-27 00:34:13 +0000 | [diff] [blame] | 409 | if (Ranges.size() > 1) { |
| 410 | // .debug_range section has not been laid out yet. Emit offset in |
| 411 | // .debug_range as a uint, size 4, for now. emitDIE will handle |
| 412 | // DW_AT_ranges appropriately. |
| 413 | TheCU->addUInt(ScopeDIE, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4, |
Devang Patel | 5bc942c | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 414 | DebugRangeSymbols.size() |
| 415 | * Asm->getTargetData().getPointerSize()); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 416 | for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(), |
Devang Patel | 26a9200 | 2011-07-27 00:34:13 +0000 | [diff] [blame] | 417 | RE = Ranges.end(); RI != RE; ++RI) { |
| 418 | DebugRangeSymbols.push_back(getLabelBeforeInsn(RI->first)); |
| 419 | DebugRangeSymbols.push_back(getLabelAfterInsn(RI->second)); |
| 420 | } |
| 421 | DebugRangeSymbols.push_back(NULL); |
| 422 | DebugRangeSymbols.push_back(NULL); |
| 423 | } else { |
Devang Patel | 5bc942c | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 424 | TheCU->addLabel(ScopeDIE, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, |
| 425 | StartLabel); |
| 426 | TheCU->addLabel(ScopeDIE, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, |
| 427 | EndLabel); |
Devang Patel | 26a9200 | 2011-07-27 00:34:13 +0000 | [diff] [blame] | 428 | } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 429 | |
| 430 | InlinedSubprogramDIEs.insert(OriginDIE); |
| 431 | |
| 432 | // Track the start label for this inlined function. |
Devang Patel | 26a9200 | 2011-07-27 00:34:13 +0000 | [diff] [blame] | 433 | //.debug_inlined section specification does not clearly state how |
| 434 | // to emit inlined scope that is split into multiple instruction ranges. |
| 435 | // For now, use first instruction range and emit low_pc/high_pc pair and |
| 436 | // corresponding .debug_inlined section entry for this pair. |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 437 | DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 438 | I = InlineInfo.find(InlinedSP); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 439 | |
| 440 | if (I == InlineInfo.end()) { |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 441 | InlineInfo[InlinedSP].push_back(std::make_pair(StartLabel, ScopeDIE)); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 442 | InlinedSPNodes.push_back(InlinedSP); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 443 | } else |
Chris Lattner | 6ed0f90 | 2010-03-09 00:31:02 +0000 | [diff] [blame] | 444 | I->second.push_back(std::make_pair(StartLabel, ScopeDIE)); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 445 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 446 | DILocation DL(Scope->getInlinedAt()); |
Eric Christopher | 0821200 | 2012-03-26 21:38:38 +0000 | [diff] [blame] | 447 | TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_file, 0, |
| 448 | GetOrCreateSourceID(DL.getFilename(), DL.getDirectory())); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 449 | TheCU->addUInt(ScopeDIE, dwarf::DW_AT_call_line, 0, DL.getLineNumber()); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 450 | |
Eric Christopher | 309bedd | 2011-12-04 06:02:38 +0000 | [diff] [blame] | 451 | // Add name to the name table, we do this here because we're guaranteed |
| 452 | // to have concrete versions of our DW_TAG_inlined_subprogram nodes. |
| 453 | addSubprogramNames(TheCU, InlinedSP, ScopeDIE); |
| 454 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 455 | return ScopeDIE; |
| 456 | } |
| 457 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 458 | /// constructScopeDIE - Construct a DIE for this scope. |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 459 | DIE *DwarfDebug::constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope) { |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 460 | if (!Scope || !Scope->getScopeNode()) |
| 461 | return NULL; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 462 | |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 463 | SmallVector<DIE *, 8> Children; |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 464 | |
| 465 | // Collect arguments for current function. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 466 | if (LScopes.isCurrentFunctionScope(Scope)) |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 467 | for (unsigned i = 0, N = CurrentFnArguments.size(); i < N; ++i) |
| 468 | if (DbgVariable *ArgDV = CurrentFnArguments[i]) |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 469 | if (DIE *Arg = |
| 470 | TheCU->constructVariableDIE(ArgDV, Scope->isAbstractScope())) |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 471 | Children.push_back(Arg); |
| 472 | |
Eric Christopher | 1aeb7ac | 2011-10-03 15:49:16 +0000 | [diff] [blame] | 473 | // Collect lexical scope children first. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 474 | const SmallVector<DbgVariable *, 8> &Variables = ScopeVariables.lookup(Scope); |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 475 | for (unsigned i = 0, N = Variables.size(); i < N; ++i) |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 476 | if (DIE *Variable = |
| 477 | TheCU->constructVariableDIE(Variables[i], Scope->isAbstractScope())) |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 478 | Children.push_back(Variable); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 479 | const SmallVector<LexicalScope *, 4> &Scopes = Scope->getChildren(); |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 480 | for (unsigned j = 0, M = Scopes.size(); j < M; ++j) |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 481 | if (DIE *Nested = constructScopeDIE(TheCU, Scopes[j])) |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 482 | Children.push_back(Nested); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 483 | DIScope DS(Scope->getScopeNode()); |
| 484 | DIE *ScopeDIE = NULL; |
| 485 | if (Scope->getInlinedAt()) |
Devang Patel | d302434 | 2011-08-15 22:24:32 +0000 | [diff] [blame] | 486 | ScopeDIE = constructInlinedScopeDIE(TheCU, Scope); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 487 | else if (DS.isSubprogram()) { |
Devang Patel | 0dd4558 | 2010-06-28 20:53:04 +0000 | [diff] [blame] | 488 | ProcessedSPNodes.insert(DS); |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 489 | if (Scope->isAbstractScope()) { |
Devang Patel | d302434 | 2011-08-15 22:24:32 +0000 | [diff] [blame] | 490 | ScopeDIE = TheCU->getDIE(DS); |
Devang Patel | 8aa6147 | 2010-07-07 22:20:57 +0000 | [diff] [blame] | 491 | // Note down abstract DIE. |
| 492 | if (ScopeDIE) |
| 493 | AbstractSPDies.insert(std::make_pair(DS, ScopeDIE)); |
| 494 | } |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 495 | else |
Devang Patel | d302434 | 2011-08-15 22:24:32 +0000 | [diff] [blame] | 496 | ScopeDIE = updateSubprogramScopeDIE(TheCU, DS); |
Devang Patel | 3c91b05 | 2010-03-08 20:52:55 +0000 | [diff] [blame] | 497 | } |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 498 | else { |
| 499 | // There is no need to emit empty lexical block DIE. |
| 500 | if (Children.empty()) |
| 501 | return NULL; |
Devang Patel | d302434 | 2011-08-15 22:24:32 +0000 | [diff] [blame] | 502 | ScopeDIE = constructLexicalScopeDIE(TheCU, Scope); |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Devang Patel | aead63c | 2010-03-29 22:59:58 +0000 | [diff] [blame] | 505 | if (!ScopeDIE) return NULL; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 506 | |
Devang Patel | 5bc9fec | 2011-02-19 01:31:27 +0000 | [diff] [blame] | 507 | // Add children |
| 508 | for (SmallVector<DIE *, 8>::iterator I = Children.begin(), |
| 509 | E = Children.end(); I != E; ++I) |
| 510 | ScopeDIE->addChild(*I); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 511 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 512 | if (DS.isSubprogram()) |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 513 | TheCU->addPubTypes(DISubprogram(DS)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 514 | |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 515 | return ScopeDIE; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 518 | /// GetOrCreateSourceID - Look up the source id with the given directory and |
| 519 | /// source file names. If none currently exists, create a new id and insert it |
| 520 | /// in the SourceIds map. This can update DirectoryNames and SourceFileNames |
| 521 | /// maps as well. |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 522 | unsigned DwarfDebug::GetOrCreateSourceID(StringRef FileName, |
| 523 | StringRef DirName) { |
Devang Patel | 1905a18 | 2010-09-16 20:57:49 +0000 | [diff] [blame] | 524 | // If FE did not provide a file name, then assume stdin. |
| 525 | if (FileName.empty()) |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 526 | return GetOrCreateSourceID("<stdin>", StringRef()); |
| 527 | |
Nick Lewycky | 6c1a703 | 2011-11-02 20:55:33 +0000 | [diff] [blame] | 528 | // TODO: this might not belong here. See if we can factor this better. |
| 529 | if (DirName == CompilationDir) |
| 530 | DirName = ""; |
| 531 | |
Nick Lewycky | 44d798d | 2011-10-17 23:05:28 +0000 | [diff] [blame] | 532 | unsigned SrcId = SourceIdMap.size()+1; |
Devang Patel | 1905a18 | 2010-09-16 20:57:49 +0000 | [diff] [blame] | 533 | |
Benjamin Kramer | 74612c2 | 2012-03-11 14:56:26 +0000 | [diff] [blame] | 534 | // We look up the file/dir pair by concatenating them with a zero byte. |
| 535 | SmallString<128> NamePair; |
| 536 | NamePair += DirName; |
| 537 | NamePair += '\0'; // Zero bytes are not allowed in paths. |
| 538 | NamePair += FileName; |
| 539 | |
| 540 | StringMapEntry<unsigned> &Ent = SourceIdMap.GetOrCreateValue(NamePair, SrcId); |
| 541 | if (Ent.getValue() != SrcId) |
| 542 | return Ent.getValue(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 543 | |
Rafael Espindola | 5c05563 | 2010-11-18 02:04:25 +0000 | [diff] [blame] | 544 | // Print out a .file directive to specify files for .loc directives. |
Benjamin Kramer | 74612c2 | 2012-03-11 14:56:26 +0000 | [diff] [blame] | 545 | Asm->OutStreamer.EmitDwarfFileDirective(SrcId, DirName, FileName); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 546 | |
| 547 | return SrcId; |
| 548 | } |
| 549 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 550 | /// constructCompileUnit - Create new CompileUnit for the given |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 551 | /// metadata node with tag DW_TAG_compile_unit. |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 552 | CompileUnit *DwarfDebug::constructCompileUnit(const MDNode *N) { |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 553 | DICompileUnit DIUnit(N); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 554 | StringRef FN = DIUnit.getFilename(); |
Nick Lewycky | 6c1a703 | 2011-11-02 20:55:33 +0000 | [diff] [blame] | 555 | CompilationDir = DIUnit.getDirectory(); |
| 556 | unsigned ID = GetOrCreateSourceID(FN, CompilationDir); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 557 | |
| 558 | DIE *Die = new DIE(dwarf::DW_TAG_compile_unit); |
Eric Christopher | 438b092 | 2012-02-22 08:46:13 +0000 | [diff] [blame] | 559 | CompileUnit *NewCU = new CompileUnit(ID, DIUnit.getLanguage(), Die, Asm, this); |
Nick Lewycky | 390c40d | 2011-10-27 06:44:11 +0000 | [diff] [blame] | 560 | NewCU->addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer()); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 561 | NewCU->addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2, |
| 562 | DIUnit.getLanguage()); |
Nick Lewycky | 390c40d | 2011-10-27 06:44:11 +0000 | [diff] [blame] | 563 | NewCU->addString(Die, dwarf::DW_AT_name, FN); |
Eric Christopher | 7f31659 | 2012-03-27 18:35:54 +0000 | [diff] [blame] | 564 | // 2.17.1 requires that we use DW_AT_low_pc for a single entry point |
| 565 | // into an entity. |
| 566 | NewCU->addUInt(Die, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, 0); |
Devang Patel | 4a602ca | 2010-03-22 23:11:36 +0000 | [diff] [blame] | 567 | // 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] | 568 | // compile unit in debug_line section. |
Rafael Espindola | 2241e51 | 2012-06-22 13:24:07 +0000 | [diff] [blame^] | 569 | if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) |
Rafael Espindola | 597a766 | 2011-05-04 17:44:06 +0000 | [diff] [blame] | 570 | NewCU->addLabel(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 571 | Asm->GetTempSymbol("section_line")); |
Devang Patel | ae84d5b | 2010-08-31 23:50:19 +0000 | [diff] [blame] | 572 | else |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 573 | NewCU->addUInt(Die, dwarf::DW_AT_stmt_list, dwarf::DW_FORM_data4, 0); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 574 | |
Nick Lewycky | 6c1a703 | 2011-11-02 20:55:33 +0000 | [diff] [blame] | 575 | if (!CompilationDir.empty()) |
| 576 | NewCU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 577 | if (DIUnit.isOptimized()) |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 578 | NewCU->addUInt(Die, dwarf::DW_AT_APPLE_optimized, dwarf::DW_FORM_flag, 1); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 579 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 580 | StringRef Flags = DIUnit.getFlags(); |
| 581 | if (!Flags.empty()) |
Nick Lewycky | 390c40d | 2011-10-27 06:44:11 +0000 | [diff] [blame] | 582 | NewCU->addString(Die, dwarf::DW_AT_APPLE_flags, Flags); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 583 | |
Nick Lewycky | d5d5213 | 2011-10-17 23:27:36 +0000 | [diff] [blame] | 584 | if (unsigned RVer = DIUnit.getRunTimeVersion()) |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 585 | NewCU->addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers, |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 586 | dwarf::DW_FORM_data1, RVer); |
| 587 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 588 | if (!FirstCU) |
| 589 | FirstCU = NewCU; |
| 590 | CUMap.insert(std::make_pair(N, NewCU)); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 591 | return NewCU; |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 592 | } |
| 593 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 594 | /// construct SubprogramDIE - Construct subprogram DIE. |
Devang Patel | 3655a21 | 2011-08-15 23:36:40 +0000 | [diff] [blame] | 595 | void DwarfDebug::constructSubprogramDIE(CompileUnit *TheCU, |
| 596 | const MDNode *N) { |
Rafael Espindola | b052728 | 2011-11-04 19:00:29 +0000 | [diff] [blame] | 597 | CompileUnit *&CURef = SPMap[N]; |
| 598 | if (CURef) |
| 599 | return; |
| 600 | CURef = TheCU; |
| 601 | |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 602 | DISubprogram SP(N); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 603 | if (!SP.isDefinition()) |
| 604 | // This is a method declaration which will be handled while constructing |
| 605 | // class type. |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 606 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 607 | |
Devang Patel | dbc64af | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 608 | DIE *SubprogramDie = TheCU->getOrCreateSubprogramDIE(SP); |
Stuart Hastings | 639336e | 2010-04-06 21:38:29 +0000 | [diff] [blame] | 609 | |
| 610 | // Add to map. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 611 | TheCU->insertDIE(N, SubprogramDie); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 612 | |
| 613 | // Add to context owner. |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 614 | TheCU->addToContextOwner(SubprogramDie, SP.getContext()); |
Devang Patel | 0000fad | 2009-12-08 23:21:45 +0000 | [diff] [blame] | 615 | |
Devang Patel | 13e16b6 | 2009-06-26 01:49:18 +0000 | [diff] [blame] | 616 | return; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 617 | } |
| 618 | |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 619 | /// collectInfoFromNamedMDNodes - Collect debug info from named mdnodes such |
| 620 | /// as llvm.dbg.enum and llvm.dbg.ty |
| 621 | void DwarfDebug::collectInfoFromNamedMDNodes(Module *M) { |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 622 | if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.sp")) |
| 623 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { |
| 624 | const MDNode *N = NMD->getOperand(i); |
| 625 | if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit())) |
| 626 | constructSubprogramDIE(CU, N); |
| 627 | } |
| 628 | |
| 629 | if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.gv")) |
| 630 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { |
| 631 | const MDNode *N = NMD->getOperand(i); |
| 632 | if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit())) |
Devang Patel | 28bea08 | 2011-08-18 23:17:55 +0000 | [diff] [blame] | 633 | CU->createGlobalVariableDIE(N); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 634 | } |
| 635 | |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 636 | if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.enum")) |
| 637 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { |
| 638 | DIType Ty(NMD->getOperand(i)); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 639 | if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit())) |
| 640 | CU->getOrCreateTypeDIE(Ty); |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | if (NamedMDNode *NMD = M->getNamedMetadata("llvm.dbg.ty")) |
| 644 | for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) { |
| 645 | DIType Ty(NMD->getOperand(i)); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 646 | if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit())) |
| 647 | CU->getOrCreateTypeDIE(Ty); |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 648 | } |
| 649 | } |
| 650 | |
| 651 | /// collectLegacyDebugInfo - Collect debug info using DebugInfoFinder. |
| 652 | /// FIXME - Remove this when dragon-egg and llvm-gcc switch to DIBuilder. |
| 653 | bool DwarfDebug::collectLegacyDebugInfo(Module *M) { |
| 654 | DebugInfoFinder DbgFinder; |
| 655 | DbgFinder.processModule(*M); |
| 656 | |
| 657 | bool HasDebugInfo = false; |
| 658 | // Scan all the compile-units to see if there are any marked as the main |
| 659 | // unit. If not, we do not generate debug info. |
| 660 | for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(), |
| 661 | E = DbgFinder.compile_unit_end(); I != E; ++I) { |
| 662 | if (DICompileUnit(*I).isMain()) { |
| 663 | HasDebugInfo = true; |
| 664 | break; |
| 665 | } |
| 666 | } |
| 667 | if (!HasDebugInfo) return false; |
| 668 | |
| 669 | // Create all the compile unit DIEs. |
| 670 | for (DebugInfoFinder::iterator I = DbgFinder.compile_unit_begin(), |
| 671 | E = DbgFinder.compile_unit_end(); I != E; ++I) |
| 672 | constructCompileUnit(*I); |
| 673 | |
| 674 | // Create DIEs for each global variable. |
| 675 | for (DebugInfoFinder::iterator I = DbgFinder.global_variable_begin(), |
| 676 | E = DbgFinder.global_variable_end(); I != E; ++I) { |
| 677 | const MDNode *N = *I; |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 678 | if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit())) |
Devang Patel | 28bea08 | 2011-08-18 23:17:55 +0000 | [diff] [blame] | 679 | CU->createGlobalVariableDIE(N); |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 680 | } |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 681 | |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 682 | // Create DIEs for each subprogram. |
| 683 | for (DebugInfoFinder::iterator I = DbgFinder.subprogram_begin(), |
| 684 | E = DbgFinder.subprogram_end(); I != E; ++I) { |
| 685 | const MDNode *N = *I; |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 686 | if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit())) |
| 687 | constructSubprogramDIE(CU, N); |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 688 | } |
| 689 | |
| 690 | return HasDebugInfo; |
| 691 | } |
| 692 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 693 | /// beginModule - Emit all Dwarf sections that should come prior to the |
Daniel Dunbar | 0056499 | 2009-09-19 20:40:14 +0000 | [diff] [blame] | 694 | /// content. Create global DIEs and emit initial debug info sections. |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 695 | /// This is invoked by the target AsmPrinter. |
Chris Lattner | 75f5072 | 2010-04-04 07:48:20 +0000 | [diff] [blame] | 696 | void DwarfDebug::beginModule(Module *M) { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 697 | if (DisableDebugInfoPrinting) |
| 698 | return; |
| 699 | |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 700 | // If module has named metadata anchors then use them, otherwise scan the |
| 701 | // module using debug info finder to collect debug info. |
Devang Patel | 30692ab | 2011-05-03 16:45:22 +0000 | [diff] [blame] | 702 | NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu"); |
| 703 | if (CU_Nodes) { |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 704 | for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) { |
| 705 | DICompileUnit CUNode(CU_Nodes->getOperand(i)); |
| 706 | CompileUnit *CU = constructCompileUnit(CUNode); |
| 707 | DIArray GVs = CUNode.getGlobalVariables(); |
| 708 | for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) |
Devang Patel | 28bea08 | 2011-08-18 23:17:55 +0000 | [diff] [blame] | 709 | CU->createGlobalVariableDIE(GVs.getElement(i)); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 710 | DIArray SPs = CUNode.getSubprograms(); |
| 711 | for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) |
| 712 | constructSubprogramDIE(CU, SPs.getElement(i)); |
| 713 | DIArray EnumTypes = CUNode.getEnumTypes(); |
| 714 | for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i) |
| 715 | CU->getOrCreateTypeDIE(EnumTypes.getElement(i)); |
| 716 | DIArray RetainedTypes = CUNode.getRetainedTypes(); |
| 717 | for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i) |
| 718 | CU->getOrCreateTypeDIE(RetainedTypes.getElement(i)); |
| 719 | } |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 720 | } else if (!collectLegacyDebugInfo(M)) |
| 721 | return; |
Devang Patel | 30692ab | 2011-05-03 16:45:22 +0000 | [diff] [blame] | 722 | |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 723 | collectInfoFromNamedMDNodes(M); |
Devang Patel | 30692ab | 2011-05-03 16:45:22 +0000 | [diff] [blame] | 724 | |
Chris Lattner | d850ac7 | 2010-04-05 02:19:28 +0000 | [diff] [blame] | 725 | // Tell MMI that we have debug info. |
| 726 | MMI->setDebugInfoAvailability(true); |
Devang Patel | 30692ab | 2011-05-03 16:45:22 +0000 | [diff] [blame] | 727 | |
Chris Lattner | be15beb | 2010-04-04 23:17:54 +0000 | [diff] [blame] | 728 | // Emit initial sections. |
Chris Lattner | d850ac7 | 2010-04-05 02:19:28 +0000 | [diff] [blame] | 729 | EmitSectionLabels(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 730 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 731 | // Prime section data. |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 732 | SectionMap.insert(Asm->getObjFileLowering().getTextSection()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 733 | } |
| 734 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 735 | /// endModule - Emit all Dwarf sections that should come after the content. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 736 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 737 | void DwarfDebug::endModule() { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 738 | if (!FirstCU) return; |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 739 | const Module *M = MMI->getModule(); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 740 | DenseMap<const MDNode *, LexicalScope *> DeadFnScopeMap; |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 741 | |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 742 | // Collect info for variables that were optimized out. |
| 743 | if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) { |
| 744 | for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) { |
| 745 | DICompileUnit TheCU(CU_Nodes->getOperand(i)); |
| 746 | DIArray Subprograms = TheCU.getSubprograms(); |
| 747 | for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) { |
| 748 | DISubprogram SP(Subprograms.getElement(i)); |
| 749 | if (ProcessedSPNodes.count(SP) != 0) continue; |
| 750 | if (!SP.Verify()) continue; |
| 751 | if (!SP.isDefinition()) continue; |
Devang Patel | 93d39be | 2011-08-19 23:28:12 +0000 | [diff] [blame] | 752 | DIArray Variables = SP.getVariables(); |
| 753 | if (Variables.getNumElements() == 0) continue; |
| 754 | |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 755 | LexicalScope *Scope = |
| 756 | new LexicalScope(NULL, DIDescriptor(SP), NULL, false); |
| 757 | DeadFnScopeMap[SP] = Scope; |
| 758 | |
| 759 | // Construct subprogram DIE and add variables DIEs. |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 760 | CompileUnit *SPCU = CUMap.lookup(TheCU); |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 761 | assert(SPCU && "Unable to find Compile Unit!"); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 762 | constructSubprogramDIE(SPCU, SP); |
| 763 | DIE *ScopeDIE = SPCU->getDIE(SP); |
Devang Patel | 93d39be | 2011-08-19 23:28:12 +0000 | [diff] [blame] | 764 | for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) { |
| 765 | DIVariable DV(Variables.getElement(vi)); |
| 766 | if (!DV.Verify()) continue; |
| 767 | DbgVariable *NewVar = new DbgVariable(DV, NULL); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 768 | if (DIE *VariableDIE = |
Devang Patel | 93d39be | 2011-08-19 23:28:12 +0000 | [diff] [blame] | 769 | SPCU->constructVariableDIE(NewVar, Scope->isAbstractScope())) |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 770 | ScopeDIE->addChild(VariableDIE); |
| 771 | } |
Devang Patel | 4a1cad6 | 2010-06-28 18:25:03 +0000 | [diff] [blame] | 772 | } |
| 773 | } |
| 774 | } |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 775 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 776 | // Attach DW_AT_inline attribute with inlined subprogram DIEs. |
| 777 | for (SmallPtrSet<DIE *, 4>::iterator AI = InlinedSubprogramDIEs.begin(), |
| 778 | AE = InlinedSubprogramDIEs.end(); AI != AE; ++AI) { |
| 779 | DIE *ISP = *AI; |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 780 | FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 781 | } |
Rafael Espindola | d1ac3a4 | 2011-11-12 01:57:54 +0000 | [diff] [blame] | 782 | for (DenseMap<const MDNode *, DIE *>::iterator AI = AbstractSPDies.begin(), |
| 783 | AE = AbstractSPDies.end(); AI != AE; ++AI) { |
| 784 | DIE *ISP = AI->second; |
| 785 | if (InlinedSubprogramDIEs.count(ISP)) |
| 786 | continue; |
| 787 | FirstCU->addUInt(ISP, dwarf::DW_AT_inline, 0, dwarf::DW_INL_inlined); |
| 788 | } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 789 | |
Devang Patel | dbc64af | 2011-08-15 17:24:54 +0000 | [diff] [blame] | 790 | // Emit DW_AT_containing_type attribute to connect types with their |
| 791 | // vtable holding type. |
| 792 | for (DenseMap<const MDNode *, CompileUnit *>::iterator CUI = CUMap.begin(), |
| 793 | CUE = CUMap.end(); CUI != CUE; ++CUI) { |
| 794 | CompileUnit *TheCU = CUI->second; |
| 795 | TheCU->constructContainingTypeDIEs(); |
Devang Patel | 5d11eb0 | 2009-12-03 19:11:07 +0000 | [diff] [blame] | 796 | } |
| 797 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 798 | // Standard sections final addresses. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 799 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getTextSection()); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 800 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("text_end")); |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 801 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering().getDataSection()); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 802 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("data_end")); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 803 | |
| 804 | // End text sections. |
| 805 | for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 806 | Asm->OutStreamer.SwitchSection(SectionMap[i]); |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 807 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("section_end", i)); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 808 | } |
| 809 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 810 | // Compute DIE offsets and sizes. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 811 | computeSizeAndOffsets(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 812 | |
| 813 | // Emit all the DIEs into a debug info section |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 814 | emitDebugInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 815 | |
| 816 | // Corresponding abbreviations into a abbrev section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 817 | emitAbbreviations(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 818 | |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 819 | // Emit info into a dwarf accelerator table sections. |
| 820 | if (DwarfAccelTables) { |
| 821 | emitAccelNames(); |
| 822 | emitAccelObjC(); |
| 823 | emitAccelNamespaces(); |
| 824 | emitAccelTypes(); |
| 825 | } |
| 826 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 827 | // Emit info into a debug pubtypes section. |
| 828 | emitDebugPubTypes(); |
| 829 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 830 | // Emit info into a debug loc section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 831 | emitDebugLoc(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 832 | |
| 833 | // Emit info into a debug aranges section. |
| 834 | EmitDebugARanges(); |
| 835 | |
| 836 | // Emit info into a debug ranges section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 837 | emitDebugRanges(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 838 | |
| 839 | // Emit info into a debug macinfo section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 840 | emitDebugMacInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 841 | |
| 842 | // Emit inline info. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 843 | emitDebugInlineInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 844 | |
Eric Christopher | 7550f7d | 2012-03-02 00:30:24 +0000 | [diff] [blame] | 845 | // Emit info into a debug str section. |
| 846 | emitDebugStr(); |
| 847 | |
Devang Patel | e9a1cca | 2010-08-02 17:32:15 +0000 | [diff] [blame] | 848 | // clean up. |
| 849 | DeleteContainerSeconds(DeadFnScopeMap); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 850 | SPMap.clear(); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 851 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 852 | E = CUMap.end(); I != E; ++I) |
| 853 | delete I->second; |
| 854 | FirstCU = NULL; // Reset for the next Module, if any. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 855 | } |
| 856 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 857 | /// findAbstractVariable - Find abstract variable, if any, associated with Var. |
Devang Patel | b549bcf | 2011-08-10 21:50:54 +0000 | [diff] [blame] | 858 | DbgVariable *DwarfDebug::findAbstractVariable(DIVariable &DV, |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 859 | DebugLoc ScopeLoc) { |
Devang Patel | b549bcf | 2011-08-10 21:50:54 +0000 | [diff] [blame] | 860 | LLVMContext &Ctx = DV->getContext(); |
| 861 | // More then one inlined variable corresponds to one abstract variable. |
| 862 | DIVariable Var = cleanseInlinedVariable(DV, Ctx); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 863 | DbgVariable *AbsDbgVariable = AbstractVariables.lookup(Var); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 864 | if (AbsDbgVariable) |
| 865 | return AbsDbgVariable; |
| 866 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 867 | LexicalScope *Scope = LScopes.findAbstractScope(ScopeLoc.getScope(Ctx)); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 868 | if (!Scope) |
| 869 | return NULL; |
| 870 | |
Devang Patel | 5a1a67c | 2011-08-15 19:01:20 +0000 | [diff] [blame] | 871 | AbsDbgVariable = new DbgVariable(Var, NULL); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 872 | addScopeVariable(Scope, AbsDbgVariable); |
Devang Patel | 2db49d7 | 2010-05-07 18:11:54 +0000 | [diff] [blame] | 873 | AbstractVariables[Var] = AbsDbgVariable; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 874 | return AbsDbgVariable; |
| 875 | } |
| 876 | |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 877 | /// addCurrentFnArgument - If Var is a current function argument then add |
| 878 | /// it to CurrentFnArguments list. |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 879 | bool DwarfDebug::addCurrentFnArgument(const MachineFunction *MF, |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 880 | DbgVariable *Var, LexicalScope *Scope) { |
| 881 | if (!LScopes.isCurrentFunctionScope(Scope)) |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 882 | return false; |
| 883 | DIVariable DV = Var->getVariable(); |
| 884 | if (DV.getTag() != dwarf::DW_TAG_arg_variable) |
| 885 | return false; |
| 886 | unsigned ArgNo = DV.getArgNumber(); |
| 887 | if (ArgNo == 0) |
| 888 | return false; |
| 889 | |
Devang Patel | cb3a657 | 2011-03-03 20:02:02 +0000 | [diff] [blame] | 890 | size_t Size = CurrentFnArguments.size(); |
| 891 | if (Size == 0) |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 892 | CurrentFnArguments.resize(MF->getFunction()->arg_size()); |
Devang Patel | bbd0f45 | 2011-03-03 21:49:41 +0000 | [diff] [blame] | 893 | // llvm::Function argument size is not good indicator of how many |
Devang Patel | 6f676be | 2011-03-03 20:08:10 +0000 | [diff] [blame] | 894 | // arguments does the function have at source level. |
| 895 | if (ArgNo > Size) |
Devang Patel | cb3a657 | 2011-03-03 20:02:02 +0000 | [diff] [blame] | 896 | CurrentFnArguments.resize(ArgNo * 2); |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 897 | CurrentFnArguments[ArgNo - 1] = Var; |
| 898 | return true; |
| 899 | } |
| 900 | |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 901 | /// collectVariableInfoFromMMITable - Collect variable information from |
| 902 | /// side table maintained by MMI. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 903 | void |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 904 | DwarfDebug::collectVariableInfoFromMMITable(const MachineFunction *MF, |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 905 | SmallPtrSet<const MDNode *, 16> &Processed) { |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 906 | MachineModuleInfo::VariableDbgInfoMapTy &VMap = MMI->getVariableDbgInfo(); |
| 907 | for (MachineModuleInfo::VariableDbgInfoMapTy::iterator VI = VMap.begin(), |
| 908 | VE = VMap.end(); VI != VE; ++VI) { |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 909 | const MDNode *Var = VI->first; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 910 | if (!Var) continue; |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 911 | Processed.insert(Var); |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 912 | DIVariable DV(Var); |
| 913 | const std::pair<unsigned, DebugLoc> &VP = VI->second; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 914 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 915 | LexicalScope *Scope = LScopes.findLexicalScope(VP.second); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 916 | |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 917 | // If variable scope is not found then skip this variable. |
Chris Lattner | de4845c | 2010-04-02 19:42:39 +0000 | [diff] [blame] | 918 | if (Scope == 0) |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 919 | continue; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 920 | |
Devang Patel | 26c1e56 | 2010-05-20 16:36:41 +0000 | [diff] [blame] | 921 | DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second); |
Devang Patel | 5a1a67c | 2011-08-15 19:01:20 +0000 | [diff] [blame] | 922 | DbgVariable *RegVar = new DbgVariable(DV, AbsDbgVariable); |
Devang Patel | ff9dd0a | 2011-08-15 21:24:36 +0000 | [diff] [blame] | 923 | RegVar->setFrameIndex(VP.first); |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 924 | if (!addCurrentFnArgument(MF, RegVar, Scope)) |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 925 | addScopeVariable(Scope, RegVar); |
Devang Patel | 5a1a67c | 2011-08-15 19:01:20 +0000 | [diff] [blame] | 926 | if (AbsDbgVariable) |
Devang Patel | ff9dd0a | 2011-08-15 21:24:36 +0000 | [diff] [blame] | 927 | AbsDbgVariable->setFrameIndex(VP.first); |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 928 | } |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 929 | } |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 930 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 931 | /// isDbgValueInDefinedReg - Return true if debug value, encoded by |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 932 | /// DBG_VALUE instruction, is in a defined reg. |
| 933 | static bool isDbgValueInDefinedReg(const MachineInstr *MI) { |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 934 | assert(MI->isDebugValue() && "Invalid DBG_VALUE machine instruction!"); |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 935 | return MI->getNumOperands() == 3 && |
| 936 | MI->getOperand(0).isReg() && MI->getOperand(0).getReg() && |
| 937 | MI->getOperand(1).isImm() && MI->getOperand(1).getImm() == 0; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 938 | } |
| 939 | |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 940 | /// getDebugLocEntry - Get .debug_loc entry for the instruction range starting |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 941 | /// at MI. |
| 942 | static DotDebugLocEntry getDebugLocEntry(AsmPrinter *Asm, |
| 943 | const MCSymbol *FLabel, |
| 944 | const MCSymbol *SLabel, |
| 945 | const MachineInstr *MI) { |
| 946 | const MDNode *Var = MI->getOperand(MI->getNumOperands() - 1).getMetadata(); |
| 947 | |
| 948 | if (MI->getNumOperands() != 3) { |
| 949 | MachineLocation MLoc = Asm->getDebugValueLocation(MI); |
| 950 | return DotDebugLocEntry(FLabel, SLabel, MLoc, Var); |
| 951 | } |
| 952 | if (MI->getOperand(0).isReg() && MI->getOperand(1).isImm()) { |
| 953 | MachineLocation MLoc; |
| 954 | MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm()); |
| 955 | return DotDebugLocEntry(FLabel, SLabel, MLoc, Var); |
| 956 | } |
| 957 | if (MI->getOperand(0).isImm()) |
| 958 | return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getImm()); |
| 959 | if (MI->getOperand(0).isFPImm()) |
| 960 | return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getFPImm()); |
| 961 | if (MI->getOperand(0).isCImm()) |
| 962 | return DotDebugLocEntry(FLabel, SLabel, MI->getOperand(0).getCImm()); |
| 963 | |
Craig Topper | 5e25ee8 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 964 | llvm_unreachable("Unexpected 3 operand DBG_VALUE instruction!"); |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 965 | } |
| 966 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 967 | /// collectVariableInfo - Find variables for each lexical scope. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 968 | void |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 969 | DwarfDebug::collectVariableInfo(const MachineFunction *MF, |
| 970 | SmallPtrSet<const MDNode *, 16> &Processed) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 971 | |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 972 | /// collection info from MMI table. |
| 973 | collectVariableInfoFromMMITable(MF, Processed); |
| 974 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 975 | for (SmallVectorImpl<const MDNode*>::const_iterator |
| 976 | UVI = UserVariables.begin(), UVE = UserVariables.end(); UVI != UVE; |
| 977 | ++UVI) { |
| 978 | const MDNode *Var = *UVI; |
| 979 | if (Processed.count(Var)) |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 980 | continue; |
| 981 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 982 | // History contains relevant DBG_VALUE instructions for Var and instructions |
| 983 | // clobbering it. |
| 984 | SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var]; |
| 985 | if (History.empty()) |
| 986 | continue; |
| 987 | const MachineInstr *MInsn = History.front(); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 988 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 989 | DIVariable DV(Var); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 990 | LexicalScope *Scope = NULL; |
Devang Patel | d8720f4 | 2010-05-27 20:25:04 +0000 | [diff] [blame] | 991 | if (DV.getTag() == dwarf::DW_TAG_arg_variable && |
| 992 | DISubprogram(DV.getContext()).describes(MF->getFunction())) |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 993 | Scope = LScopes.getCurrentFunctionScope(); |
Devang Patel | 40c7e41 | 2011-07-20 22:18:50 +0000 | [diff] [blame] | 994 | else { |
| 995 | if (DV.getVersion() <= LLVMDebugVersion9) |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 996 | Scope = LScopes.findLexicalScope(MInsn->getDebugLoc()); |
Devang Patel | 40c7e41 | 2011-07-20 22:18:50 +0000 | [diff] [blame] | 997 | else { |
| 998 | if (MDNode *IA = DV.getInlinedAt()) |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 999 | Scope = LScopes.findInlinedScope(DebugLoc::getFromDILocation(IA)); |
Devang Patel | 40c7e41 | 2011-07-20 22:18:50 +0000 | [diff] [blame] | 1000 | else |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1001 | Scope = LScopes.findLexicalScope(cast<MDNode>(DV->getOperand(1))); |
Devang Patel | 40c7e41 | 2011-07-20 22:18:50 +0000 | [diff] [blame] | 1002 | } |
| 1003 | } |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 1004 | // If variable scope is not found then skip this variable. |
Devang Patel | c0c5a26 | 2010-05-21 00:10:20 +0000 | [diff] [blame] | 1005 | if (!Scope) |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 1006 | continue; |
| 1007 | |
| 1008 | Processed.insert(DV); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1009 | assert(MInsn->isDebugValue() && "History must begin with debug value"); |
Devang Patel | 5a1a67c | 2011-08-15 19:01:20 +0000 | [diff] [blame] | 1010 | DbgVariable *AbsVar = findAbstractVariable(DV, MInsn->getDebugLoc()); |
| 1011 | DbgVariable *RegVar = new DbgVariable(DV, AbsVar); |
Devang Patel | 0478c15 | 2011-03-01 22:58:55 +0000 | [diff] [blame] | 1012 | if (!addCurrentFnArgument(MF, RegVar, Scope)) |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1013 | addScopeVariable(Scope, RegVar); |
Devang Patel | 5a1a67c | 2011-08-15 19:01:20 +0000 | [diff] [blame] | 1014 | if (AbsVar) |
Devang Patel | ff9dd0a | 2011-08-15 21:24:36 +0000 | [diff] [blame] | 1015 | AbsVar->setMInsn(MInsn); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1016 | |
| 1017 | // Simple ranges that are fully coalesced. |
| 1018 | if (History.size() <= 1 || (History.size() == 2 && |
| 1019 | MInsn->isIdenticalTo(History.back()))) { |
Devang Patel | ff9dd0a | 2011-08-15 21:24:36 +0000 | [diff] [blame] | 1020 | RegVar->setMInsn(MInsn); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1021 | continue; |
| 1022 | } |
| 1023 | |
| 1024 | // handle multiple DBG_VALUE instructions describing one variable. |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1025 | RegVar->setDotDebugLocOffset(DotDebugLocEntries.size()); |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1026 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1027 | for (SmallVectorImpl<const MachineInstr*>::const_iterator |
| 1028 | HI = History.begin(), HE = History.end(); HI != HE; ++HI) { |
| 1029 | const MachineInstr *Begin = *HI; |
| 1030 | assert(Begin->isDebugValue() && "Invalid History entry"); |
Jakob Stoklund Olesen | e17232e | 2011-03-22 00:21:41 +0000 | [diff] [blame] | 1031 | |
Devang Patel | 4ada1d7 | 2011-06-01 23:00:17 +0000 | [diff] [blame] | 1032 | // Check if DBG_VALUE is truncating a range. |
| 1033 | if (Begin->getNumOperands() > 1 && Begin->getOperand(0).isReg() |
| 1034 | && !Begin->getOperand(0).getReg()) |
| 1035 | continue; |
| 1036 | |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1037 | // Compute the range for a register location. |
| 1038 | const MCSymbol *FLabel = getLabelBeforeInsn(Begin); |
| 1039 | const MCSymbol *SLabel = 0; |
| 1040 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1041 | if (HI + 1 == HE) |
| 1042 | // If Begin is the last instruction in History then its value is valid |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 1043 | // until the end of the function. |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1044 | SLabel = FunctionEndSym; |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1045 | else { |
| 1046 | const MachineInstr *End = HI[1]; |
Devang Patel | 476df5f | 2011-07-07 21:44:42 +0000 | [diff] [blame] | 1047 | DEBUG(dbgs() << "DotDebugLoc Pair:\n" |
| 1048 | << "\t" << *Begin << "\t" << *End << "\n"); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1049 | if (End->isDebugValue()) |
| 1050 | SLabel = getLabelBeforeInsn(End); |
| 1051 | else { |
| 1052 | // End is a normal instruction clobbering the range. |
| 1053 | SLabel = getLabelAfterInsn(End); |
| 1054 | assert(SLabel && "Forgot label after clobber instruction"); |
| 1055 | ++HI; |
| 1056 | } |
| 1057 | } |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1058 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1059 | // The value is valid until the next DBG_VALUE or clobber. |
Eric Christopher | abbb200 | 2011-12-16 23:42:31 +0000 | [diff] [blame] | 1060 | DotDebugLocEntries.push_back(getDebugLocEntry(Asm, FLabel, SLabel, |
| 1061 | Begin)); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1062 | } |
| 1063 | DotDebugLocEntries.push_back(DotDebugLocEntry()); |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 1064 | } |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 1065 | |
| 1066 | // Collect info for variables that were optimized out. |
Devang Patel | 93d39be | 2011-08-19 23:28:12 +0000 | [diff] [blame] | 1067 | LexicalScope *FnScope = LScopes.getCurrentFunctionScope(); |
| 1068 | DIArray Variables = DISubprogram(FnScope->getScopeNode()).getVariables(); |
| 1069 | for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) { |
| 1070 | DIVariable DV(Variables.getElement(i)); |
| 1071 | if (!DV || !DV.Verify() || !Processed.insert(DV)) |
| 1072 | continue; |
| 1073 | if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext())) |
| 1074 | addScopeVariable(Scope, new DbgVariable(DV, NULL)); |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 1075 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1076 | } |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 1077 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1078 | /// getLabelBeforeInsn - Return Label preceding the instruction. |
| 1079 | const MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) { |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1080 | MCSymbol *Label = LabelsBeforeInsn.lookup(MI); |
| 1081 | assert(Label && "Didn't insert label before instruction"); |
| 1082 | return Label; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1083 | } |
| 1084 | |
| 1085 | /// getLabelAfterInsn - Return Label immediately following the instruction. |
| 1086 | const MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) { |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1087 | return LabelsAfterInsn.lookup(MI); |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 1088 | } |
| 1089 | |
Devang Patel | cbbe287 | 2010-10-26 17:49:02 +0000 | [diff] [blame] | 1090 | /// beginInstruction - Process beginning of an instruction. |
| 1091 | void DwarfDebug::beginInstruction(const MachineInstr *MI) { |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1092 | // Check if source location changes, but ignore DBG_VALUE locations. |
| 1093 | if (!MI->isDebugValue()) { |
| 1094 | DebugLoc DL = MI->getDebugLoc(); |
| 1095 | if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) { |
Eric Christopher | 60b35f4 | 2012-04-05 20:39:05 +0000 | [diff] [blame] | 1096 | unsigned Flags = 0; |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1097 | PrevInstLoc = DL; |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1098 | if (DL == PrologEndLoc) { |
| 1099 | Flags |= DWARF2_FLAG_PROLOGUE_END; |
| 1100 | PrologEndLoc = DebugLoc(); |
| 1101 | } |
Eric Christopher | 60b35f4 | 2012-04-05 20:39:05 +0000 | [diff] [blame] | 1102 | if (PrologEndLoc.isUnknown()) |
| 1103 | Flags |= DWARF2_FLAG_IS_STMT; |
| 1104 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1105 | if (!DL.isUnknown()) { |
| 1106 | const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext()); |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1107 | recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags); |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1108 | } else |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1109 | recordSourceLine(0, 0, 0, 0); |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1110 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1111 | } |
Devang Patel | aead63c | 2010-03-29 22:59:58 +0000 | [diff] [blame] | 1112 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1113 | // Insert labels where requested. |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1114 | DenseMap<const MachineInstr*, MCSymbol*>::iterator I = |
| 1115 | LabelsBeforeInsn.find(MI); |
| 1116 | |
| 1117 | // No label needed. |
| 1118 | if (I == LabelsBeforeInsn.end()) |
| 1119 | return; |
| 1120 | |
| 1121 | // Label already assigned. |
| 1122 | if (I->second) |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1123 | return; |
Devang Patel | 553881b | 2010-03-29 17:20:31 +0000 | [diff] [blame] | 1124 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1125 | if (!PrevLabel) { |
Devang Patel | 77051f5 | 2010-05-26 21:23:46 +0000 | [diff] [blame] | 1126 | PrevLabel = MMI->getContext().CreateTempSymbol(); |
| 1127 | Asm->OutStreamer.EmitLabel(PrevLabel); |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1128 | } |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1129 | I->second = PrevLabel; |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1130 | } |
| 1131 | |
Devang Patel | cbbe287 | 2010-10-26 17:49:02 +0000 | [diff] [blame] | 1132 | /// endInstruction - Process end of an instruction. |
| 1133 | void DwarfDebug::endInstruction(const MachineInstr *MI) { |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1134 | // Don't create a new label after DBG_VALUE instructions. |
| 1135 | // They don't generate code. |
| 1136 | if (!MI->isDebugValue()) |
| 1137 | PrevLabel = 0; |
| 1138 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1139 | DenseMap<const MachineInstr*, MCSymbol*>::iterator I = |
| 1140 | LabelsAfterInsn.find(MI); |
| 1141 | |
| 1142 | // No label needed. |
| 1143 | if (I == LabelsAfterInsn.end()) |
| 1144 | return; |
| 1145 | |
| 1146 | // Label already assigned. |
| 1147 | if (I->second) |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1148 | return; |
| 1149 | |
| 1150 | // We need a label after this instruction. |
| 1151 | if (!PrevLabel) { |
| 1152 | PrevLabel = MMI->getContext().CreateTempSymbol(); |
| 1153 | Asm->OutStreamer.EmitLabel(PrevLabel); |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 1154 | } |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1155 | I->second = PrevLabel; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1156 | } |
| 1157 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1158 | /// identifyScopeMarkers() - |
Devang Patel | 5bc942c | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 1159 | /// Each LexicalScope has first instruction and last instruction to mark |
| 1160 | /// beginning and end of a scope respectively. Create an inverse map that list |
| 1161 | /// scopes starts (and ends) with an instruction. One instruction may start (or |
| 1162 | /// end) multiple scopes. Ignore scopes that are not reachable. |
Devang Patel | e37b0c6 | 2010-04-08 18:43:56 +0000 | [diff] [blame] | 1163 | void DwarfDebug::identifyScopeMarkers() { |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1164 | SmallVector<LexicalScope *, 4> WorkList; |
| 1165 | WorkList.push_back(LScopes.getCurrentFunctionScope()); |
Devang Patel | 42aafd7 | 2010-01-20 02:05:23 +0000 | [diff] [blame] | 1166 | while (!WorkList.empty()) { |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1167 | LexicalScope *S = WorkList.pop_back_val(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1168 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1169 | const SmallVector<LexicalScope *, 4> &Children = S->getChildren(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1170 | if (!Children.empty()) |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1171 | for (SmallVector<LexicalScope *, 4>::const_iterator SI = Children.begin(), |
Devang Patel | 42aafd7 | 2010-01-20 02:05:23 +0000 | [diff] [blame] | 1172 | SE = Children.end(); SI != SE; ++SI) |
| 1173 | WorkList.push_back(*SI); |
| 1174 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1175 | if (S->isAbstractScope()) |
| 1176 | continue; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1177 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1178 | const SmallVector<InsnRange, 4> &Ranges = S->getRanges(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1179 | if (Ranges.empty()) |
| 1180 | continue; |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1181 | for (SmallVector<InsnRange, 4>::const_iterator RI = Ranges.begin(), |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1182 | RE = Ranges.end(); RI != RE; ++RI) { |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1183 | assert(RI->first && "InsnRange does not have first instruction!"); |
| 1184 | assert(RI->second && "InsnRange does not have second instruction!"); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1185 | requestLabelBeforeInsn(RI->first); |
| 1186 | requestLabelAfterInsn(RI->second); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1187 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1188 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1189 | } |
| 1190 | |
Devang Patel | a3f4867 | 2011-05-09 22:14:49 +0000 | [diff] [blame] | 1191 | /// getScopeNode - Get MDNode for DebugLoc's scope. |
| 1192 | static MDNode *getScopeNode(DebugLoc DL, const LLVMContext &Ctx) { |
| 1193 | if (MDNode *InlinedAt = DL.getInlinedAt(Ctx)) |
| 1194 | return getScopeNode(DebugLoc::getFromDILocation(InlinedAt), Ctx); |
| 1195 | return DL.getScope(Ctx); |
| 1196 | } |
| 1197 | |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1198 | /// getFnDebugLoc - Walk up the scope chain of given debug loc and find |
Eric Christopher | 6126a1e | 2012-04-03 00:43:49 +0000 | [diff] [blame] | 1199 | /// line number info for the function. |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1200 | static DebugLoc getFnDebugLoc(DebugLoc DL, const LLVMContext &Ctx) { |
| 1201 | const MDNode *Scope = getScopeNode(DL, Ctx); |
| 1202 | DISubprogram SP = getDISubprogram(Scope); |
Eric Christopher | 6126a1e | 2012-04-03 00:43:49 +0000 | [diff] [blame] | 1203 | if (SP.Verify()) { |
| 1204 | // Check for number of operands since the compatibility is |
| 1205 | // cheap here. |
Eric Christopher | fa5b050 | 2012-04-03 17:55:42 +0000 | [diff] [blame] | 1206 | if (SP->getNumOperands() > 19) |
Eric Christopher | 6126a1e | 2012-04-03 00:43:49 +0000 | [diff] [blame] | 1207 | return DebugLoc::get(SP.getScopeLineNumber(), 0, SP); |
| 1208 | else |
| 1209 | return DebugLoc::get(SP.getLineNumber(), 0, SP); |
| 1210 | } |
| 1211 | |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1212 | return DebugLoc(); |
| 1213 | } |
| 1214 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1215 | /// beginFunction - Gather pre-function debug information. Assumes being |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1216 | /// emitted immediately after the function entry point. |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 1217 | void DwarfDebug::beginFunction(const MachineFunction *MF) { |
Chris Lattner | 994cb12 | 2010-04-05 03:52:55 +0000 | [diff] [blame] | 1218 | if (!MMI->hasDebugInfo()) return; |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1219 | LScopes.initialize(*MF); |
| 1220 | if (LScopes.empty()) return; |
| 1221 | identifyScopeMarkers(); |
Devang Patel | 60b35bd | 2009-10-06 18:37:31 +0000 | [diff] [blame] | 1222 | |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1223 | FunctionBeginSym = Asm->GetTempSymbol("func_begin", |
| 1224 | Asm->getFunctionNumber()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1225 | // Assumes in correct section after the entry point. |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1226 | Asm->OutStreamer.EmitLabel(FunctionBeginSym); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1227 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1228 | assert(UserVariables.empty() && DbgValues.empty() && "Maps weren't cleaned"); |
| 1229 | |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1230 | const TargetRegisterInfo *TRI = Asm->TM.getRegisterInfo(); |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1231 | /// LiveUserVar - Map physreg numbers to the MDNode they contain. |
| 1232 | std::vector<const MDNode*> LiveUserVar(TRI->getNumRegs()); |
| 1233 | |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1234 | for (MachineFunction::const_iterator I = MF->begin(), E = MF->end(); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1235 | I != E; ++I) { |
| 1236 | bool AtBlockEntry = true; |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1237 | for (MachineBasicBlock::const_iterator II = I->begin(), IE = I->end(); |
| 1238 | II != IE; ++II) { |
| 1239 | const MachineInstr *MI = II; |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1240 | |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1241 | if (MI->isDebugValue()) { |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 1242 | assert(MI->getNumOperands() > 1 && "Invalid machine instruction!"); |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1243 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1244 | // Keep track of user variables. |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1245 | const MDNode *Var = |
| 1246 | MI->getOperand(MI->getNumOperands() - 1).getMetadata(); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1247 | |
| 1248 | // Variable is in a register, we need to check for clobbers. |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1249 | if (isDbgValueInDefinedReg(MI)) |
| 1250 | LiveUserVar[MI->getOperand(0).getReg()] = Var; |
| 1251 | |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1252 | // Check the history of this variable. |
| 1253 | SmallVectorImpl<const MachineInstr*> &History = DbgValues[Var]; |
| 1254 | if (History.empty()) { |
| 1255 | UserVariables.push_back(Var); |
| 1256 | // The first mention of a function argument gets the FunctionBeginSym |
| 1257 | // label, so arguments are visible when breaking at function entry. |
| 1258 | DIVariable DV(Var); |
| 1259 | if (DV.Verify() && DV.getTag() == dwarf::DW_TAG_arg_variable && |
| 1260 | DISubprogram(getDISubprogram(DV.getContext())) |
| 1261 | .describes(MF->getFunction())) |
| 1262 | LabelsBeforeInsn[MI] = FunctionBeginSym; |
| 1263 | } else { |
| 1264 | // We have seen this variable before. Try to coalesce DBG_VALUEs. |
| 1265 | const MachineInstr *Prev = History.back(); |
| 1266 | if (Prev->isDebugValue()) { |
| 1267 | // Coalesce identical entries at the end of History. |
| 1268 | if (History.size() >= 2 && |
Devang Patel | 7986289 | 2011-07-07 00:14:27 +0000 | [diff] [blame] | 1269 | Prev->isIdenticalTo(History[History.size() - 2])) { |
| 1270 | DEBUG(dbgs() << "Coalesce identical DBG_VALUE entries:\n" |
| 1271 | << "\t" << *Prev |
| 1272 | << "\t" << *History[History.size() - 2] << "\n"); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1273 | History.pop_back(); |
Devang Patel | 7986289 | 2011-07-07 00:14:27 +0000 | [diff] [blame] | 1274 | } |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1275 | |
| 1276 | // Terminate old register assignments that don't reach MI; |
| 1277 | MachineFunction::const_iterator PrevMBB = Prev->getParent(); |
| 1278 | if (PrevMBB != I && (!AtBlockEntry || llvm::next(PrevMBB) != I) && |
| 1279 | isDbgValueInDefinedReg(Prev)) { |
| 1280 | // Previous register assignment needs to terminate at the end of |
| 1281 | // its basic block. |
| 1282 | MachineBasicBlock::const_iterator LastMI = |
| 1283 | PrevMBB->getLastNonDebugInstr(); |
Devang Patel | 7986289 | 2011-07-07 00:14:27 +0000 | [diff] [blame] | 1284 | if (LastMI == PrevMBB->end()) { |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1285 | // Drop DBG_VALUE for empty range. |
Devang Patel | 7986289 | 2011-07-07 00:14:27 +0000 | [diff] [blame] | 1286 | DEBUG(dbgs() << "Drop DBG_VALUE for empty range:\n" |
| 1287 | << "\t" << *Prev << "\n"); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1288 | History.pop_back(); |
Devang Patel | 7986289 | 2011-07-07 00:14:27 +0000 | [diff] [blame] | 1289 | } |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1290 | else { |
| 1291 | // Terminate after LastMI. |
| 1292 | History.push_back(LastMI); |
| 1293 | } |
| 1294 | } |
| 1295 | } |
| 1296 | } |
| 1297 | History.push_back(MI); |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1298 | } else { |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1299 | // Not a DBG_VALUE instruction. |
| 1300 | if (!MI->isLabel()) |
| 1301 | AtBlockEntry = false; |
| 1302 | |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1303 | // First known non DBG_VALUE location marks beginning of function |
| 1304 | // body. |
| 1305 | if (PrologEndLoc.isUnknown() && !MI->getDebugLoc().isUnknown()) |
| 1306 | PrologEndLoc = MI->getDebugLoc(); |
| 1307 | |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1308 | // Check if the instruction clobbers any registers with debug vars. |
| 1309 | for (MachineInstr::const_mop_iterator MOI = MI->operands_begin(), |
| 1310 | MOE = MI->operands_end(); MOI != MOE; ++MOI) { |
| 1311 | if (!MOI->isReg() || !MOI->isDef() || !MOI->getReg()) |
| 1312 | continue; |
Jakob Stoklund Olesen | 396618b | 2012-06-01 23:28:30 +0000 | [diff] [blame] | 1313 | for (MCRegAliasIterator AI(MOI->getReg(), TRI, true); |
| 1314 | AI.isValid(); ++AI) { |
| 1315 | unsigned Reg = *AI; |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1316 | const MDNode *Var = LiveUserVar[Reg]; |
| 1317 | if (!Var) |
| 1318 | continue; |
| 1319 | // Reg is now clobbered. |
| 1320 | LiveUserVar[Reg] = 0; |
| 1321 | |
| 1322 | // Was MD last defined by a DBG_VALUE referring to Reg? |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1323 | DbgValueHistoryMap::iterator HistI = DbgValues.find(Var); |
| 1324 | if (HistI == DbgValues.end()) |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1325 | continue; |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1326 | SmallVectorImpl<const MachineInstr*> &History = HistI->second; |
| 1327 | if (History.empty()) |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1328 | continue; |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1329 | const MachineInstr *Prev = History.back(); |
| 1330 | // Sanity-check: Register assignments are terminated at the end of |
| 1331 | // their block. |
| 1332 | if (!Prev->isDebugValue() || Prev->getParent() != MI->getParent()) |
| 1333 | continue; |
| 1334 | // Is the variable still in Reg? |
| 1335 | if (!isDbgValueInDefinedReg(Prev) || |
| 1336 | Prev->getOperand(0).getReg() != Reg) |
| 1337 | continue; |
| 1338 | // Var is clobbered. Make sure the next instruction gets a label. |
| 1339 | History.push_back(MI); |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1340 | } |
| 1341 | } |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1342 | } |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1343 | } |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1344 | } |
| 1345 | |
| 1346 | for (DbgValueHistoryMap::iterator I = DbgValues.begin(), E = DbgValues.end(); |
| 1347 | I != E; ++I) { |
| 1348 | SmallVectorImpl<const MachineInstr*> &History = I->second; |
| 1349 | if (History.empty()) |
| 1350 | continue; |
| 1351 | |
| 1352 | // Make sure the final register assignments are terminated. |
| 1353 | const MachineInstr *Prev = History.back(); |
| 1354 | if (Prev->isDebugValue() && isDbgValueInDefinedReg(Prev)) { |
| 1355 | const MachineBasicBlock *PrevMBB = Prev->getParent(); |
Devang Patel | 5bc942c | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 1356 | MachineBasicBlock::const_iterator LastMI = |
| 1357 | PrevMBB->getLastNonDebugInstr(); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1358 | if (LastMI == PrevMBB->end()) |
| 1359 | // Drop DBG_VALUE for empty range. |
| 1360 | History.pop_back(); |
| 1361 | else { |
| 1362 | // Terminate after LastMI. |
| 1363 | History.push_back(LastMI); |
| 1364 | } |
| 1365 | } |
| 1366 | // Request labels for the full history. |
| 1367 | for (unsigned i = 0, e = History.size(); i != e; ++i) { |
| 1368 | const MachineInstr *MI = History[i]; |
| 1369 | if (MI->isDebugValue()) |
| 1370 | requestLabelBeforeInsn(MI); |
| 1371 | else |
| 1372 | requestLabelAfterInsn(MI); |
| 1373 | } |
| 1374 | } |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1375 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1376 | PrevInstLoc = DebugLoc(); |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1377 | PrevLabel = FunctionBeginSym; |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1378 | |
| 1379 | // Record beginning of function. |
| 1380 | if (!PrologEndLoc.isUnknown()) { |
| 1381 | DebugLoc FnStartDL = getFnDebugLoc(PrologEndLoc, |
| 1382 | MF->getFunction()->getContext()); |
| 1383 | recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(), |
| 1384 | FnStartDL.getScope(MF->getFunction()->getContext()), |
Eric Christopher | 60b35f4 | 2012-04-05 20:39:05 +0000 | [diff] [blame] | 1385 | 0); |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1386 | } |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1387 | } |
| 1388 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1389 | void DwarfDebug::addScopeVariable(LexicalScope *LS, DbgVariable *Var) { |
| 1390 | // SmallVector<DbgVariable *, 8> &Vars = ScopeVariables.lookup(LS); |
| 1391 | ScopeVariables[LS].push_back(Var); |
| 1392 | // Vars.push_back(Var); |
| 1393 | } |
| 1394 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1395 | /// endFunction - Gather and emit post-function debug information. |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1396 | /// |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 1397 | void DwarfDebug::endFunction(const MachineFunction *MF) { |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1398 | if (!MMI->hasDebugInfo() || LScopes.empty()) return; |
Devang Patel | 70d75ca | 2009-11-12 19:02:56 +0000 | [diff] [blame] | 1399 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1400 | // Define end label for subprogram. |
| 1401 | FunctionEndSym = Asm->GetTempSymbol("func_end", |
| 1402 | Asm->getFunctionNumber()); |
| 1403 | // Assumes in correct section after the entry point. |
| 1404 | Asm->OutStreamer.EmitLabel(FunctionEndSym); |
| 1405 | |
| 1406 | SmallPtrSet<const MDNode *, 16> ProcessedVars; |
| 1407 | collectVariableInfo(MF, ProcessedVars); |
| 1408 | |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 1409 | LexicalScope *FnScope = LScopes.getCurrentFunctionScope(); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 1410 | CompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode()); |
Nick Lewycky | 746cb67 | 2011-10-26 22:55:33 +0000 | [diff] [blame] | 1411 | assert(TheCU && "Unable to find compile unit!"); |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 1412 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1413 | // Construct abstract scopes. |
Devang Patel | cd9f6c5 | 2011-08-12 18:10:19 +0000 | [diff] [blame] | 1414 | ArrayRef<LexicalScope *> AList = LScopes.getAbstractScopesList(); |
| 1415 | for (unsigned i = 0, e = AList.size(); i != e; ++i) { |
| 1416 | LexicalScope *AScope = AList[i]; |
| 1417 | DISubprogram SP(AScope->getScopeNode()); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1418 | if (SP.Verify()) { |
| 1419 | // Collect info for variables that were optimized out. |
Devang Patel | 93d39be | 2011-08-19 23:28:12 +0000 | [diff] [blame] | 1420 | DIArray Variables = SP.getVariables(); |
| 1421 | for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) { |
| 1422 | DIVariable DV(Variables.getElement(i)); |
| 1423 | if (!DV || !DV.Verify() || !ProcessedVars.insert(DV)) |
| 1424 | continue; |
| 1425 | if (LexicalScope *Scope = LScopes.findAbstractScope(DV.getContext())) |
| 1426 | addScopeVariable(Scope, new DbgVariable(DV, NULL)); |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 1427 | } |
| 1428 | } |
Devang Patel | cd9f6c5 | 2011-08-12 18:10:19 +0000 | [diff] [blame] | 1429 | if (ProcessedSPNodes.count(AScope->getScopeNode()) == 0) |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 1430 | constructScopeDIE(TheCU, AScope); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1431 | } |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1432 | |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 1433 | DIE *CurFnDIE = constructScopeDIE(TheCU, FnScope); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1434 | |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 1435 | if (!MF->getTarget().Options.DisableFramePointerElim(*MF)) |
Devang Patel | 5bc942c | 2011-08-10 23:58:09 +0000 | [diff] [blame] | 1436 | TheCU->addUInt(CurFnDIE, dwarf::DW_AT_APPLE_omit_frame_ptr, |
| 1437 | dwarf::DW_FORM_flag, 1); |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 1438 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1439 | DebugFrames.push_back(FunctionDebugFrameInfo(Asm->getFunctionNumber(), |
| 1440 | MMI->getFrameMoves())); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1441 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1442 | // Clear debug info |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1443 | for (DenseMap<LexicalScope *, SmallVector<DbgVariable *, 8> >::iterator |
| 1444 | I = ScopeVariables.begin(), E = ScopeVariables.end(); I != E; ++I) |
| 1445 | DeleteContainerPointers(I->second); |
| 1446 | ScopeVariables.clear(); |
Devang Patel | eac0c9d | 2011-04-22 18:09:57 +0000 | [diff] [blame] | 1447 | DeleteContainerPointers(CurrentFnArguments); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1448 | UserVariables.clear(); |
| 1449 | DbgValues.clear(); |
Jeffrey Yasskin | 5c213dc | 2010-03-12 17:45:06 +0000 | [diff] [blame] | 1450 | AbstractVariables.clear(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1451 | LabelsBeforeInsn.clear(); |
| 1452 | LabelsAfterInsn.clear(); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1453 | PrevLabel = NULL; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1454 | } |
| 1455 | |
Chris Lattner | c608784 | 2010-03-09 04:54:43 +0000 | [diff] [blame] | 1456 | /// recordSourceLine - Register a source line with debug info. Returns the |
| 1457 | /// unique label that was emitted and which provides correspondence to |
| 1458 | /// the source line list. |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1459 | void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S, |
| 1460 | unsigned Flags) { |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1461 | StringRef Fn; |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 1462 | StringRef Dir; |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1463 | unsigned Src = 1; |
| 1464 | if (S) { |
| 1465 | DIDescriptor Scope(S); |
Devang Patel | f84548d | 2009-10-05 18:03:19 +0000 | [diff] [blame] | 1466 | |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1467 | if (Scope.isCompileUnit()) { |
| 1468 | DICompileUnit CU(S); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1469 | Fn = CU.getFilename(); |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 1470 | Dir = CU.getDirectory(); |
Devang Patel | 3cabc9d | 2010-10-28 17:30:52 +0000 | [diff] [blame] | 1471 | } else if (Scope.isFile()) { |
| 1472 | DIFile F(S); |
Devang Patel | 3cabc9d | 2010-10-28 17:30:52 +0000 | [diff] [blame] | 1473 | Fn = F.getFilename(); |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 1474 | Dir = F.getDirectory(); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1475 | } else if (Scope.isSubprogram()) { |
| 1476 | DISubprogram SP(S); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1477 | Fn = SP.getFilename(); |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 1478 | Dir = SP.getDirectory(); |
Eric Christopher | 6618a24 | 2011-10-11 22:59:11 +0000 | [diff] [blame] | 1479 | } else if (Scope.isLexicalBlockFile()) { |
| 1480 | DILexicalBlockFile DBF(S); |
| 1481 | Fn = DBF.getFilename(); |
| 1482 | Dir = DBF.getDirectory(); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1483 | } else if (Scope.isLexicalBlock()) { |
| 1484 | DILexicalBlock DB(S); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1485 | Fn = DB.getFilename(); |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 1486 | Dir = DB.getDirectory(); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1487 | } else |
Craig Topper | 5e25ee8 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 1488 | llvm_unreachable("Unexpected scope info"); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1489 | |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 1490 | Src = GetOrCreateSourceID(Fn, Dir); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1491 | } |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 1492 | Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, 0, Fn); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1493 | } |
| 1494 | |
Bill Wendling | 829e67b | 2009-05-20 23:22:40 +0000 | [diff] [blame] | 1495 | //===----------------------------------------------------------------------===// |
| 1496 | // Emit Methods |
| 1497 | //===----------------------------------------------------------------------===// |
| 1498 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1499 | /// computeSizeAndOffset - Compute the size and offset of a DIE. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1500 | /// |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 1501 | unsigned |
| 1502 | DwarfDebug::computeSizeAndOffset(DIE *Die, unsigned Offset, bool Last) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1503 | // Get the children. |
| 1504 | const std::vector<DIE *> &Children = Die->getChildren(); |
| 1505 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1506 | // Record the abbreviation. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1507 | assignAbbrevNumber(Die->getAbbrev()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1508 | |
| 1509 | // Get the abbreviation for this DIE. |
| 1510 | unsigned AbbrevNumber = Die->getAbbrevNumber(); |
| 1511 | const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; |
| 1512 | |
| 1513 | // Set DIE offset |
| 1514 | Die->setOffset(Offset); |
| 1515 | |
| 1516 | // Start the size with the size of abbreviation code. |
Chris Lattner | af76e59 | 2009-08-22 20:48:53 +0000 | [diff] [blame] | 1517 | Offset += MCAsmInfo::getULEB128Size(AbbrevNumber); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1518 | |
| 1519 | const SmallVector<DIEValue*, 32> &Values = Die->getValues(); |
| 1520 | const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData(); |
| 1521 | |
| 1522 | // Size the DIE attribute values. |
| 1523 | for (unsigned i = 0, N = Values.size(); i < N; ++i) |
| 1524 | // Size attribute value. |
Chris Lattner | a37d538 | 2010-04-05 00:18:22 +0000 | [diff] [blame] | 1525 | Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1526 | |
| 1527 | // Size the DIE children if any. |
| 1528 | if (!Children.empty()) { |
| 1529 | assert(Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes && |
| 1530 | "Children flag not set"); |
| 1531 | |
| 1532 | for (unsigned j = 0, M = Children.size(); j < M; ++j) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1533 | Offset = computeSizeAndOffset(Children[j], Offset, (j + 1) == M); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1534 | |
| 1535 | // End of children marker. |
| 1536 | Offset += sizeof(int8_t); |
| 1537 | } |
| 1538 | |
| 1539 | Die->setSize(Offset - Die->getOffset()); |
| 1540 | return Offset; |
| 1541 | } |
| 1542 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1543 | /// computeSizeAndOffsets - Compute the size and offset of all the DIEs. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1544 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1545 | void DwarfDebug::computeSizeAndOffsets() { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1546 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 1547 | E = CUMap.end(); I != E; ++I) { |
| 1548 | // Compute size of compile unit header. |
Devang Patel | 513edf6 | 2011-04-12 23:10:47 +0000 | [diff] [blame] | 1549 | unsigned Offset = |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1550 | sizeof(int32_t) + // Length of Compilation Unit Info |
| 1551 | sizeof(int16_t) + // DWARF version number |
| 1552 | sizeof(int32_t) + // Offset Into Abbrev. Section |
| 1553 | sizeof(int8_t); // Pointer Size (in bytes) |
| 1554 | computeSizeAndOffset(I->second->getCUDie(), Offset, true); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1555 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1556 | } |
| 1557 | |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 1558 | /// EmitSectionLabels - Emit initial Dwarf sections with a label at |
| 1559 | /// the start of each one. |
Chris Lattner | fa070b0 | 2010-04-04 22:33:59 +0000 | [diff] [blame] | 1560 | void DwarfDebug::EmitSectionLabels() { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1561 | const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 1562 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1563 | // Dwarf sections base addresses. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1564 | DwarfInfoSectionSym = |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 1565 | EmitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1566 | DwarfAbbrevSectionSym = |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 1567 | EmitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev"); |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 1568 | EmitSectionSym(Asm, TLOF.getDwarfARangesSection()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1569 | |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 1570 | if (const MCSection *MacroInfo = TLOF.getDwarfMacroInfoSection()) |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 1571 | EmitSectionSym(Asm, MacroInfo); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1572 | |
Devang Patel | af608bd | 2010-08-24 00:06:12 +0000 | [diff] [blame] | 1573 | EmitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line"); |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 1574 | EmitSectionSym(Asm, TLOF.getDwarfLocSection()); |
Chris Lattner | 11b8f30 | 2010-04-04 23:02:02 +0000 | [diff] [blame] | 1575 | EmitSectionSym(Asm, TLOF.getDwarfPubTypesSection()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1576 | DwarfStrSectionSym = |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 1577 | EmitSectionSym(Asm, TLOF.getDwarfStrSection(), "section_str"); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1578 | DwarfDebugRangeSectionSym = EmitSectionSym(Asm, TLOF.getDwarfRangesSection(), |
| 1579 | "debug_range"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1580 | |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1581 | DwarfDebugLocSectionSym = EmitSectionSym(Asm, TLOF.getDwarfLocSection(), |
| 1582 | "section_debug_loc"); |
| 1583 | |
Chris Lattner | 9c69e28553 | 2010-04-04 22:59:04 +0000 | [diff] [blame] | 1584 | TextSectionSym = EmitSectionSym(Asm, TLOF.getTextSection(), "text_begin"); |
Chris Lattner | 4ad1efe | 2010-04-04 23:10:38 +0000 | [diff] [blame] | 1585 | EmitSectionSym(Asm, TLOF.getDataSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1586 | } |
| 1587 | |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 1588 | /// emitDIE - Recursively emits a debug information entry. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1589 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1590 | void DwarfDebug::emitDIE(DIE *Die) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1591 | // Get the abbreviation for this DIE. |
| 1592 | unsigned AbbrevNumber = Die->getAbbrevNumber(); |
| 1593 | const DIEAbbrev *Abbrev = Abbreviations[AbbrevNumber - 1]; |
| 1594 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1595 | // Emit the code (index) for the abbreviation. |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 1596 | if (Asm->isVerbose()) |
Chris Lattner | 894d75a | 2010-01-22 23:18:42 +0000 | [diff] [blame] | 1597 | Asm->OutStreamer.AddComment("Abbrev [" + Twine(AbbrevNumber) + "] 0x" + |
| 1598 | Twine::utohexstr(Die->getOffset()) + ":0x" + |
| 1599 | Twine::utohexstr(Die->getSize()) + " " + |
| 1600 | dwarf::TagString(Abbrev->getTag())); |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 1601 | Asm->EmitULEB128(AbbrevNumber); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1602 | |
Jeffrey Yasskin | 638fe8d | 2010-03-22 18:47:14 +0000 | [diff] [blame] | 1603 | const SmallVector<DIEValue*, 32> &Values = Die->getValues(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1604 | const SmallVector<DIEAbbrevData, 8> &AbbrevData = Abbrev->getData(); |
| 1605 | |
| 1606 | // Emit the DIE attribute values. |
| 1607 | for (unsigned i = 0, N = Values.size(); i < N; ++i) { |
| 1608 | unsigned Attr = AbbrevData[i].getAttribute(); |
| 1609 | unsigned Form = AbbrevData[i].getForm(); |
| 1610 | assert(Form && "Too many attributes for DIE (check abbreviation)"); |
| 1611 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 1612 | if (Asm->isVerbose()) |
Chris Lattner | a801362 | 2010-01-24 18:54:17 +0000 | [diff] [blame] | 1613 | Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1614 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1615 | switch (Attr) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1616 | case dwarf::DW_AT_abstract_origin: { |
| 1617 | DIEEntry *E = cast<DIEEntry>(Values[i]); |
| 1618 | DIE *Origin = E->getEntry(); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1619 | unsigned Addr = Origin->getOffset(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1620 | Asm->EmitInt32(Addr); |
| 1621 | break; |
| 1622 | } |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1623 | case dwarf::DW_AT_ranges: { |
| 1624 | // DW_AT_range Value encodes offset in debug_range section. |
| 1625 | DIEInteger *V = cast<DIEInteger>(Values[i]); |
Devang Patel | b1fcfbe | 2010-09-02 16:43:44 +0000 | [diff] [blame] | 1626 | |
Nick Lewycky | ffccd92 | 2012-06-22 01:25:12 +0000 | [diff] [blame] | 1627 | if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) { |
Devang Patel | b1fcfbe | 2010-09-02 16:43:44 +0000 | [diff] [blame] | 1628 | Asm->EmitLabelPlusOffset(DwarfDebugRangeSectionSym, |
| 1629 | V->getValue(), |
| 1630 | 4); |
| 1631 | } else { |
| 1632 | Asm->EmitLabelOffsetDifference(DwarfDebugRangeSectionSym, |
| 1633 | V->getValue(), |
| 1634 | DwarfDebugRangeSectionSym, |
| 1635 | 4); |
| 1636 | } |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 1637 | break; |
| 1638 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1639 | case dwarf::DW_AT_location: { |
Nick Lewycky | ffccd92 | 2012-06-22 01:25:12 +0000 | [diff] [blame] | 1640 | if (DIELabel *L = dyn_cast<DIELabel>(Values[i])) { |
| 1641 | if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) |
| 1642 | Asm->EmitLabelReference(L->getValue(), 4); |
| 1643 | else |
| 1644 | Asm->EmitLabelDifference(L->getValue(), DwarfDebugLocSectionSym, 4); |
| 1645 | } else { |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1646 | Values[i]->EmitValue(Asm, Form); |
Nick Lewycky | ffccd92 | 2012-06-22 01:25:12 +0000 | [diff] [blame] | 1647 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1648 | break; |
| 1649 | } |
Devang Patel | 2a36160 | 2010-09-29 19:08:08 +0000 | [diff] [blame] | 1650 | case dwarf::DW_AT_accessibility: { |
| 1651 | if (Asm->isVerbose()) { |
| 1652 | DIEInteger *V = cast<DIEInteger>(Values[i]); |
| 1653 | Asm->OutStreamer.AddComment(dwarf::AccessibilityString(V->getValue())); |
| 1654 | } |
| 1655 | Values[i]->EmitValue(Asm, Form); |
| 1656 | break; |
| 1657 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1658 | default: |
| 1659 | // Emit an attribute using the defined form. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1660 | Values[i]->EmitValue(Asm, Form); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1661 | break; |
| 1662 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1663 | } |
| 1664 | |
| 1665 | // Emit the DIE children if any. |
| 1666 | if (Abbrev->getChildrenFlag() == dwarf::DW_CHILDREN_yes) { |
| 1667 | const std::vector<DIE *> &Children = Die->getChildren(); |
| 1668 | |
| 1669 | for (unsigned j = 0, M = Children.size(); j < M; ++j) |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1670 | emitDIE(Children[j]); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1671 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 1672 | if (Asm->isVerbose()) |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1673 | Asm->OutStreamer.AddComment("End Of Children Mark"); |
| 1674 | Asm->EmitInt8(0); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1675 | } |
| 1676 | } |
| 1677 | |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1678 | /// emitDebugInfo - Emit the debug info section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1679 | /// |
Devang Patel | 8a24114 | 2009-12-09 18:24:21 +0000 | [diff] [blame] | 1680 | void DwarfDebug::emitDebugInfo() { |
| 1681 | // Start debug info section. |
| 1682 | Asm->OutStreamer.SwitchSection( |
| 1683 | Asm->getObjFileLowering().getDwarfInfoSection()); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1684 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 1685 | E = CUMap.end(); I != E; ++I) { |
| 1686 | CompileUnit *TheCU = I->second; |
| 1687 | DIE *Die = TheCU->getCUDie(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1688 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1689 | // Emit the compile units header. |
| 1690 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_begin", |
| 1691 | TheCU->getID())); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1692 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1693 | // Emit size of content not including length itself |
| 1694 | unsigned ContentSize = Die->getSize() + |
| 1695 | sizeof(int16_t) + // DWARF version number |
| 1696 | sizeof(int32_t) + // Offset Into Abbrev. Section |
Devang Patel | 65705d5 | 2011-04-13 19:41:17 +0000 | [diff] [blame] | 1697 | sizeof(int8_t); // Pointer Size (in bytes) |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1698 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1699 | Asm->OutStreamer.AddComment("Length of Compilation Unit Info"); |
| 1700 | Asm->EmitInt32(ContentSize); |
| 1701 | Asm->OutStreamer.AddComment("DWARF version number"); |
| 1702 | Asm->EmitInt16(dwarf::DWARF_VERSION); |
| 1703 | Asm->OutStreamer.AddComment("Offset Into Abbrev. Section"); |
| 1704 | Asm->EmitSectionOffset(Asm->GetTempSymbol("abbrev_begin"), |
| 1705 | DwarfAbbrevSectionSym); |
| 1706 | Asm->OutStreamer.AddComment("Address Size (in bytes)"); |
| 1707 | Asm->EmitInt8(Asm->getTargetData().getPointerSize()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1708 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1709 | emitDIE(Die); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1710 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("info_end", TheCU->getID())); |
| 1711 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1712 | } |
| 1713 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1714 | /// emitAbbreviations - Emit the abbreviation section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1715 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1716 | void DwarfDebug::emitAbbreviations() const { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1717 | // Check to see if it is worth the effort. |
| 1718 | if (!Abbreviations.empty()) { |
| 1719 | // Start the debug abbrev section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1720 | Asm->OutStreamer.SwitchSection( |
| 1721 | Asm->getObjFileLowering().getDwarfAbbrevSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1722 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 1723 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_begin")); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1724 | |
| 1725 | // For each abbrevation. |
| 1726 | for (unsigned i = 0, N = Abbreviations.size(); i < N; ++i) { |
| 1727 | // Get abbreviation data |
| 1728 | const DIEAbbrev *Abbrev = Abbreviations[i]; |
| 1729 | |
| 1730 | // Emit the abbrevations code (base 1 index.) |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 1731 | Asm->EmitULEB128(Abbrev->getNumber(), "Abbreviation Code"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1732 | |
| 1733 | // Emit the abbreviations data. |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1734 | Abbrev->Emit(Asm); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1735 | } |
| 1736 | |
| 1737 | // Mark end of abbreviations. |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 1738 | Asm->EmitULEB128(0, "EOM(3)"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1739 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 1740 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("abbrev_end")); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1741 | } |
| 1742 | } |
| 1743 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1744 | /// emitEndOfLineMatrix - Emit the last address of the section and the end of |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1745 | /// the line matrix. |
| 1746 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1747 | void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1748 | // Define last address of section. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1749 | Asm->OutStreamer.AddComment("Extended Op"); |
| 1750 | Asm->EmitInt8(0); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1751 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1752 | Asm->OutStreamer.AddComment("Op size"); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1753 | Asm->EmitInt8(Asm->getTargetData().getPointerSize() + 1); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1754 | Asm->OutStreamer.AddComment("DW_LNE_set_address"); |
| 1755 | Asm->EmitInt8(dwarf::DW_LNE_set_address); |
| 1756 | |
| 1757 | Asm->OutStreamer.AddComment("Section end label"); |
Chris Lattner | d85fc6e | 2010-03-10 01:17:49 +0000 | [diff] [blame] | 1758 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 1759 | Asm->OutStreamer.EmitSymbolValue(Asm->GetTempSymbol("section_end",SectionEnd), |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 1760 | Asm->getTargetData().getPointerSize(), |
| 1761 | 0/*AddrSpace*/); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1762 | |
| 1763 | // Mark end of matrix. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1764 | Asm->OutStreamer.AddComment("DW_LNE_end_sequence"); |
| 1765 | Asm->EmitInt8(0); |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 1766 | Asm->EmitInt8(1); |
Chris Lattner | 894d75a | 2010-01-22 23:18:42 +0000 | [diff] [blame] | 1767 | Asm->EmitInt8(1); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1768 | } |
| 1769 | |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1770 | /// emitAccelNames - Emit visible names into a hashed accelerator table |
| 1771 | /// section. |
| 1772 | void DwarfDebug::emitAccelNames() { |
| 1773 | DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset, |
| 1774 | dwarf::DW_FORM_data4)); |
| 1775 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 1776 | E = CUMap.end(); I != E; ++I) { |
| 1777 | CompileUnit *TheCU = I->second; |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 1778 | const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNames(); |
| 1779 | for (StringMap<std::vector<DIE*> >::const_iterator |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1780 | GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) { |
| 1781 | const char *Name = GI->getKeyData(); |
Eric Christopher | fa03db0 | 2012-01-06 23:03:34 +0000 | [diff] [blame] | 1782 | const std::vector<DIE *> &Entities = GI->second; |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 1783 | for (std::vector<DIE *>::const_iterator DI = Entities.begin(), |
| 1784 | DE = Entities.end(); DI != DE; ++DI) |
| 1785 | AT.AddName(Name, (*DI)); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1786 | } |
| 1787 | } |
| 1788 | |
| 1789 | AT.FinalizeTable(Asm, "Names"); |
| 1790 | Asm->OutStreamer.SwitchSection( |
| 1791 | Asm->getObjFileLowering().getDwarfAccelNamesSection()); |
| 1792 | MCSymbol *SectionBegin = Asm->GetTempSymbol("names_begin"); |
| 1793 | Asm->OutStreamer.EmitLabel(SectionBegin); |
| 1794 | |
| 1795 | // Emit the full data. |
| 1796 | AT.Emit(Asm, SectionBegin, this); |
| 1797 | } |
| 1798 | |
| 1799 | /// emitAccelObjC - Emit objective C classes and categories into a hashed |
| 1800 | /// accelerator table section. |
| 1801 | void DwarfDebug::emitAccelObjC() { |
| 1802 | DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset, |
| 1803 | dwarf::DW_FORM_data4)); |
| 1804 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 1805 | E = CUMap.end(); I != E; ++I) { |
| 1806 | CompileUnit *TheCU = I->second; |
| 1807 | const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelObjC(); |
| 1808 | for (StringMap<std::vector<DIE*> >::const_iterator |
| 1809 | GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) { |
| 1810 | const char *Name = GI->getKeyData(); |
Eric Christopher | fa03db0 | 2012-01-06 23:03:34 +0000 | [diff] [blame] | 1811 | const std::vector<DIE *> &Entities = GI->second; |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1812 | for (std::vector<DIE *>::const_iterator DI = Entities.begin(), |
| 1813 | DE = Entities.end(); DI != DE; ++DI) |
| 1814 | AT.AddName(Name, (*DI)); |
| 1815 | } |
| 1816 | } |
| 1817 | |
| 1818 | AT.FinalizeTable(Asm, "ObjC"); |
| 1819 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering() |
| 1820 | .getDwarfAccelObjCSection()); |
| 1821 | MCSymbol *SectionBegin = Asm->GetTempSymbol("objc_begin"); |
| 1822 | Asm->OutStreamer.EmitLabel(SectionBegin); |
| 1823 | |
| 1824 | // Emit the full data. |
| 1825 | AT.Emit(Asm, SectionBegin, this); |
| 1826 | } |
| 1827 | |
| 1828 | /// emitAccelNamespace - Emit namespace dies into a hashed accelerator |
| 1829 | /// table. |
| 1830 | void DwarfDebug::emitAccelNamespaces() { |
| 1831 | DwarfAccelTable AT(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset, |
| 1832 | dwarf::DW_FORM_data4)); |
| 1833 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 1834 | E = CUMap.end(); I != E; ++I) { |
| 1835 | CompileUnit *TheCU = I->second; |
Eric Christopher | 8bd36ea | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 1836 | const StringMap<std::vector<DIE*> > &Names = TheCU->getAccelNamespace(); |
| 1837 | for (StringMap<std::vector<DIE*> >::const_iterator |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1838 | GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) { |
| 1839 | const char *Name = GI->getKeyData(); |
Eric Christopher | fa03db0 | 2012-01-06 23:03:34 +0000 | [diff] [blame] | 1840 | const std::vector<DIE *> &Entities = GI->second; |
Eric Christopher | 8bd36ea | 2011-11-10 21:47:55 +0000 | [diff] [blame] | 1841 | for (std::vector<DIE *>::const_iterator DI = Entities.begin(), |
| 1842 | DE = Entities.end(); DI != DE; ++DI) |
| 1843 | AT.AddName(Name, (*DI)); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1844 | } |
| 1845 | } |
| 1846 | |
| 1847 | AT.FinalizeTable(Asm, "namespac"); |
| 1848 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering() |
| 1849 | .getDwarfAccelNamespaceSection()); |
| 1850 | MCSymbol *SectionBegin = Asm->GetTempSymbol("namespac_begin"); |
| 1851 | Asm->OutStreamer.EmitLabel(SectionBegin); |
| 1852 | |
| 1853 | // Emit the full data. |
| 1854 | AT.Emit(Asm, SectionBegin, this); |
| 1855 | } |
| 1856 | |
| 1857 | /// emitAccelTypes() - Emit type dies into a hashed accelerator table. |
| 1858 | void DwarfDebug::emitAccelTypes() { |
Eric Christopher | c36145f | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 1859 | std::vector<DwarfAccelTable::Atom> Atoms; |
| 1860 | Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeDIEOffset, |
| 1861 | dwarf::DW_FORM_data4)); |
| 1862 | Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTag, |
| 1863 | dwarf::DW_FORM_data2)); |
| 1864 | Atoms.push_back(DwarfAccelTable::Atom(DwarfAccelTable::eAtomTypeTypeFlags, |
| 1865 | dwarf::DW_FORM_data1)); |
| 1866 | DwarfAccelTable AT(Atoms); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1867 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 1868 | E = CUMap.end(); I != E; ++I) { |
| 1869 | CompileUnit *TheCU = I->second; |
Eric Christopher | c36145f | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 1870 | const StringMap<std::vector<std::pair<DIE*, unsigned > > > &Names |
| 1871 | = TheCU->getAccelTypes(); |
| 1872 | for (StringMap<std::vector<std::pair<DIE*, unsigned> > >::const_iterator |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1873 | GI = Names.begin(), GE = Names.end(); GI != GE; ++GI) { |
| 1874 | const char *Name = GI->getKeyData(); |
Eric Christopher | fa03db0 | 2012-01-06 23:03:34 +0000 | [diff] [blame] | 1875 | const std::vector<std::pair<DIE *, unsigned> > &Entities = GI->second; |
Eric Christopher | c36145f | 2012-01-06 04:35:23 +0000 | [diff] [blame] | 1876 | for (std::vector<std::pair<DIE *, unsigned> >::const_iterator DI |
| 1877 | = Entities.begin(), DE = Entities.end(); DI !=DE; ++DI) |
| 1878 | AT.AddName(Name, (*DI).first, (*DI).second); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1879 | } |
| 1880 | } |
| 1881 | |
| 1882 | AT.FinalizeTable(Asm, "types"); |
| 1883 | Asm->OutStreamer.SwitchSection(Asm->getObjFileLowering() |
| 1884 | .getDwarfAccelTypesSection()); |
| 1885 | MCSymbol *SectionBegin = Asm->GetTempSymbol("types_begin"); |
| 1886 | Asm->OutStreamer.EmitLabel(SectionBegin); |
| 1887 | |
| 1888 | // Emit the full data. |
| 1889 | AT.Emit(Asm, SectionBegin, this); |
| 1890 | } |
| 1891 | |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1892 | void DwarfDebug::emitDebugPubTypes() { |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1893 | for (DenseMap<const MDNode *, CompileUnit *>::iterator I = CUMap.begin(), |
| 1894 | E = CUMap.end(); I != E; ++I) { |
| 1895 | CompileUnit *TheCU = I->second; |
Eric Christopher | 6370118 | 2011-11-07 09:18:35 +0000 | [diff] [blame] | 1896 | // Start the dwarf pubtypes section. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1897 | Asm->OutStreamer.SwitchSection( |
| 1898 | Asm->getObjFileLowering().getDwarfPubTypesSection()); |
| 1899 | Asm->OutStreamer.AddComment("Length of Public Types Info"); |
| 1900 | Asm->EmitLabelDifference( |
| 1901 | Asm->GetTempSymbol("pubtypes_end", TheCU->getID()), |
| 1902 | Asm->GetTempSymbol("pubtypes_begin", TheCU->getID()), 4); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1903 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1904 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_begin", |
| 1905 | TheCU->getID())); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1906 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1907 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DWARF Version"); |
| 1908 | Asm->EmitInt16(dwarf::DWARF_VERSION); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1909 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1910 | Asm->OutStreamer.AddComment("Offset of Compilation Unit Info"); |
| 1911 | Asm->EmitSectionOffset(Asm->GetTempSymbol("info_begin", TheCU->getID()), |
| 1912 | DwarfInfoSectionSym); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1913 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1914 | Asm->OutStreamer.AddComment("Compilation Unit Length"); |
| 1915 | Asm->EmitLabelDifference(Asm->GetTempSymbol("info_end", TheCU->getID()), |
| 1916 | Asm->GetTempSymbol("info_begin", TheCU->getID()), |
| 1917 | 4); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1918 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1919 | const StringMap<DIE*> &Globals = TheCU->getGlobalTypes(); |
| 1920 | for (StringMap<DIE*>::const_iterator |
| 1921 | GI = Globals.begin(), GE = Globals.end(); GI != GE; ++GI) { |
| 1922 | const char *Name = GI->getKeyData(); |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 1923 | DIE *Entity = GI->second; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1924 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1925 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset"); |
| 1926 | Asm->EmitInt32(Entity->getOffset()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1927 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1928 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("External Name"); |
Benjamin Kramer | 983c457 | 2011-11-09 18:16:11 +0000 | [diff] [blame] | 1929 | // Emit the name with a terminating null byte. |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1930 | Asm->OutStreamer.EmitBytes(StringRef(Name, GI->getKeyLength()+1), 0); |
| 1931 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1932 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1933 | Asm->OutStreamer.AddComment("End Mark"); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1934 | Asm->EmitInt32(0); |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 1935 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("pubtypes_end", |
| 1936 | TheCU->getID())); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1937 | } |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1938 | } |
| 1939 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1940 | /// emitDebugStr - Emit visible names into a debug str section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1941 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1942 | void DwarfDebug::emitDebugStr() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1943 | // Check to see if it is worth the effort. |
Chris Lattner | 0d9d70f | 2010-03-09 23:38:23 +0000 | [diff] [blame] | 1944 | if (StringPool.empty()) return; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1945 | |
Chris Lattner | 0d9d70f | 2010-03-09 23:38:23 +0000 | [diff] [blame] | 1946 | // Start the dwarf str section. |
| 1947 | Asm->OutStreamer.SwitchSection( |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1948 | Asm->getObjFileLowering().getDwarfStrSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1949 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 1950 | // Get all of the string pool entries and put them in an array by their ID so |
| 1951 | // we can sort them. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1952 | SmallVector<std::pair<unsigned, |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 1953 | StringMapEntry<std::pair<MCSymbol*, unsigned> >*>, 64> Entries; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1954 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 1955 | for (StringMap<std::pair<MCSymbol*, unsigned> >::iterator |
| 1956 | I = StringPool.begin(), E = StringPool.end(); I != E; ++I) |
| 1957 | Entries.push_back(std::make_pair(I->second.second, &*I)); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1958 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 1959 | array_pod_sort(Entries.begin(), Entries.end()); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1960 | |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 1961 | for (unsigned i = 0, e = Entries.size(); i != e; ++i) { |
Chris Lattner | 0d9d70f | 2010-03-09 23:38:23 +0000 | [diff] [blame] | 1962 | // Emit a label for reference from debug information entries. |
Chris Lattner | bc733f5 | 2010-03-13 02:17:42 +0000 | [diff] [blame] | 1963 | Asm->OutStreamer.EmitLabel(Entries[i].second->getValue().first); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1964 | |
Benjamin Kramer | 983c457 | 2011-11-09 18:16:11 +0000 | [diff] [blame] | 1965 | // Emit the string itself with a terminating null byte. |
Benjamin Kramer | 0c45f7d | 2011-11-09 12:12:04 +0000 | [diff] [blame] | 1966 | Asm->OutStreamer.EmitBytes(StringRef(Entries[i].second->getKeyData(), |
| 1967 | Entries[i].second->getKeyLength()+1), |
| 1968 | 0/*addrspace*/); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1969 | } |
| 1970 | } |
| 1971 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1972 | /// emitDebugLoc - Emit visible names into a debug loc section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1973 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1974 | void DwarfDebug::emitDebugLoc() { |
Devang Patel | 8025068 | 2010-05-26 23:55:23 +0000 | [diff] [blame] | 1975 | if (DotDebugLocEntries.empty()) |
| 1976 | return; |
| 1977 | |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 1978 | for (SmallVector<DotDebugLocEntry, 4>::iterator |
| 1979 | I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end(); |
| 1980 | I != E; ++I) { |
| 1981 | DotDebugLocEntry &Entry = *I; |
| 1982 | if (I + 1 != DotDebugLocEntries.end()) |
| 1983 | Entry.Merge(I+1); |
| 1984 | } |
| 1985 | |
Daniel Dunbar | 83320a0 | 2011-03-16 22:16:39 +0000 | [diff] [blame] | 1986 | // Start the dwarf loc section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1987 | Asm->OutStreamer.SwitchSection( |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1988 | Asm->getObjFileLowering().getDwarfLocSection()); |
| 1989 | unsigned char Size = Asm->getTargetData().getPointerSize(); |
Devang Patel | 8025068 | 2010-05-26 23:55:23 +0000 | [diff] [blame] | 1990 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", 0)); |
| 1991 | unsigned index = 1; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1992 | for (SmallVector<DotDebugLocEntry, 4>::iterator |
| 1993 | I = DotDebugLocEntries.begin(), E = DotDebugLocEntries.end(); |
Devang Patel | 6140962 | 2010-07-07 20:12:52 +0000 | [diff] [blame] | 1994 | I != E; ++I, ++index) { |
Devang Patel | 6c3ea90 | 2011-02-04 22:57:18 +0000 | [diff] [blame] | 1995 | DotDebugLocEntry &Entry = *I; |
| 1996 | if (Entry.isMerged()) continue; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1997 | if (Entry.isEmpty()) { |
| 1998 | Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0); |
| 1999 | Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0); |
Devang Patel | 8025068 | 2010-05-26 23:55:23 +0000 | [diff] [blame] | 2000 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_loc", index)); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2001 | } else { |
| 2002 | Asm->OutStreamer.EmitSymbolValue(Entry.Begin, Size, 0); |
| 2003 | Asm->OutStreamer.EmitSymbolValue(Entry.End, Size, 0); |
Devang Patel | c26f544 | 2011-04-28 02:22:40 +0000 | [diff] [blame] | 2004 | DIVariable DV(Entry.Variable); |
Rafael Espindola | 5b23b7f | 2011-05-27 22:05:41 +0000 | [diff] [blame] | 2005 | Asm->OutStreamer.AddComment("Loc expr size"); |
| 2006 | MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol(); |
| 2007 | MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol(); |
| 2008 | Asm->EmitLabelDifference(end, begin, 2); |
| 2009 | Asm->OutStreamer.EmitLabel(begin); |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 2010 | if (Entry.isInt()) { |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 2011 | DIBasicType BTy(DV.getType()); |
| 2012 | if (BTy.Verify() && |
| 2013 | (BTy.getEncoding() == dwarf::DW_ATE_signed |
| 2014 | || BTy.getEncoding() == dwarf::DW_ATE_signed_char)) { |
| 2015 | Asm->OutStreamer.AddComment("DW_OP_consts"); |
| 2016 | Asm->EmitInt8(dwarf::DW_OP_consts); |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 2017 | Asm->EmitSLEB128(Entry.getInt()); |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 2018 | } else { |
| 2019 | Asm->OutStreamer.AddComment("DW_OP_constu"); |
| 2020 | Asm->EmitInt8(dwarf::DW_OP_constu); |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 2021 | Asm->EmitULEB128(Entry.getInt()); |
Devang Patel | c432907 | 2011-06-01 22:03:25 +0000 | [diff] [blame] | 2022 | } |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 2023 | } else if (Entry.isLocation()) { |
| 2024 | if (!DV.hasComplexAddress()) |
| 2025 | // Regular entry. |
Devang Patel | c26f544 | 2011-04-28 02:22:40 +0000 | [diff] [blame] | 2026 | Asm->EmitDwarfRegOp(Entry.Loc); |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 2027 | else { |
| 2028 | // Complex address entry. |
| 2029 | unsigned N = DV.getNumAddrElements(); |
| 2030 | unsigned i = 0; |
| 2031 | if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) { |
| 2032 | if (Entry.Loc.getOffset()) { |
| 2033 | i = 2; |
| 2034 | Asm->EmitDwarfRegOp(Entry.Loc); |
| 2035 | Asm->OutStreamer.AddComment("DW_OP_deref"); |
| 2036 | Asm->EmitInt8(dwarf::DW_OP_deref); |
| 2037 | Asm->OutStreamer.AddComment("DW_OP_plus_uconst"); |
| 2038 | Asm->EmitInt8(dwarf::DW_OP_plus_uconst); |
| 2039 | Asm->EmitSLEB128(DV.getAddrElement(1)); |
| 2040 | } else { |
| 2041 | // If first address element is OpPlus then emit |
| 2042 | // DW_OP_breg + Offset instead of DW_OP_reg + Offset. |
| 2043 | MachineLocation Loc(Entry.Loc.getReg(), DV.getAddrElement(1)); |
| 2044 | Asm->EmitDwarfRegOp(Loc); |
| 2045 | i = 2; |
| 2046 | } |
| 2047 | } else { |
| 2048 | Asm->EmitDwarfRegOp(Entry.Loc); |
| 2049 | } |
| 2050 | |
| 2051 | // Emit remaining complex address elements. |
| 2052 | for (; i < N; ++i) { |
| 2053 | uint64_t Element = DV.getAddrElement(i); |
| 2054 | if (Element == DIBuilder::OpPlus) { |
| 2055 | Asm->EmitInt8(dwarf::DW_OP_plus_uconst); |
| 2056 | Asm->EmitULEB128(DV.getAddrElement(++i)); |
Eric Christopher | 5012076 | 2012-05-08 18:56:00 +0000 | [diff] [blame] | 2057 | } else if (Element == DIBuilder::OpDeref) { |
Eric Christopher | a80f2d1 | 2012-05-08 21:24:39 +0000 | [diff] [blame] | 2058 | if (!Entry.Loc.isReg()) |
Eric Christopher | 5012076 | 2012-05-08 18:56:00 +0000 | [diff] [blame] | 2059 | Asm->EmitInt8(dwarf::DW_OP_deref); |
| 2060 | } else |
| 2061 | llvm_unreachable("unknown Opcode found in complex address"); |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 2062 | } |
Devang Patel | c26f544 | 2011-04-28 02:22:40 +0000 | [diff] [blame] | 2063 | } |
Devang Patel | c26f544 | 2011-04-28 02:22:40 +0000 | [diff] [blame] | 2064 | } |
Devang Patel | 80efd4e | 2011-07-08 16:49:43 +0000 | [diff] [blame] | 2065 | // else ... ignore constant fp. There is not any good way to |
| 2066 | // to represent them here in dwarf. |
Rafael Espindola | 5b23b7f | 2011-05-27 22:05:41 +0000 | [diff] [blame] | 2067 | Asm->OutStreamer.EmitLabel(end); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 2068 | } |
| 2069 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2070 | } |
| 2071 | |
| 2072 | /// EmitDebugARanges - Emit visible names into a debug aranges section. |
| 2073 | /// |
| 2074 | void DwarfDebug::EmitDebugARanges() { |
| 2075 | // Start the dwarf aranges section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2076 | Asm->OutStreamer.SwitchSection( |
| 2077 | Asm->getObjFileLowering().getDwarfARangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2078 | } |
| 2079 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2080 | /// emitDebugRanges - Emit visible names into a debug ranges section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2081 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2082 | void DwarfDebug::emitDebugRanges() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2083 | // Start the dwarf ranges section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2084 | Asm->OutStreamer.SwitchSection( |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 2085 | Asm->getObjFileLowering().getDwarfRangesSection()); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2086 | unsigned char Size = Asm->getTargetData().getPointerSize(); |
| 2087 | for (SmallVector<const MCSymbol *, 8>::iterator |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 2088 | I = DebugRangeSymbols.begin(), E = DebugRangeSymbols.end(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2089 | I != E; ++I) { |
| 2090 | if (*I) |
| 2091 | Asm->OutStreamer.EmitSymbolValue(const_cast<MCSymbol*>(*I), Size, 0); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 2092 | else |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 2093 | Asm->OutStreamer.EmitIntValue(0, Size, /*addrspace*/0); |
Devang Patel | f2548ca | 2010-04-16 23:33:45 +0000 | [diff] [blame] | 2094 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2095 | } |
| 2096 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2097 | /// emitDebugMacInfo - Emit visible names into a debug macinfo section. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2098 | /// |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2099 | void DwarfDebug::emitDebugMacInfo() { |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 2100 | if (const MCSection *LineInfo = |
Chris Lattner | 18a4c16 | 2009-08-02 07:24:22 +0000 | [diff] [blame] | 2101 | Asm->getObjFileLowering().getDwarfMacroInfoSection()) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2102 | // Start the dwarf macinfo section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2103 | Asm->OutStreamer.SwitchSection(LineInfo); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2104 | } |
| 2105 | } |
| 2106 | |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2107 | /// emitDebugInlineInfo - Emit inline info using following format. |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2108 | /// Section Header: |
| 2109 | /// 1. length of section |
| 2110 | /// 2. Dwarf version number |
| 2111 | /// 3. address size. |
| 2112 | /// |
| 2113 | /// Entries (one "entry" for each function that was inlined): |
| 2114 | /// |
| 2115 | /// 1. offset into __debug_str section for MIPS linkage name, if exists; |
| 2116 | /// otherwise offset into __debug_str for regular function name. |
| 2117 | /// 2. offset into __debug_str section for regular function name. |
| 2118 | /// 3. an unsigned LEB128 number indicating the number of distinct inlining |
| 2119 | /// instances for the function. |
| 2120 | /// |
| 2121 | /// The rest of the entry consists of a {die_offset, low_pc} pair for each |
| 2122 | /// inlined instance; the die_offset points to the inlined_subroutine die in the |
| 2123 | /// __debug_info section, and the low_pc is the starting address for the |
| 2124 | /// inlining instance. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 2125 | void DwarfDebug::emitDebugInlineInfo() { |
Eric Christopher | b83e2bb | 2012-03-02 02:11:47 +0000 | [diff] [blame] | 2126 | if (!Asm->MAI->doesDwarfUseInlineInfoSection()) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2127 | return; |
| 2128 | |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 2129 | if (!FirstCU) |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2130 | return; |
| 2131 | |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 2132 | Asm->OutStreamer.SwitchSection( |
| 2133 | Asm->getObjFileLowering().getDwarfDebugInlineSection()); |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 2134 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 2135 | Asm->OutStreamer.AddComment("Length of Debug Inlined Information Entry"); |
Chris Lattner | a643718 | 2010-04-04 19:58:12 +0000 | [diff] [blame] | 2136 | Asm->EmitLabelDifference(Asm->GetTempSymbol("debug_inlined_end", 1), |
| 2137 | Asm->GetTempSymbol("debug_inlined_begin", 1), 4); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2138 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2139 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_begin", 1)); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2140 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 2141 | Asm->OutStreamer.AddComment("Dwarf Version"); |
| 2142 | Asm->EmitInt16(dwarf::DWARF_VERSION); |
| 2143 | Asm->OutStreamer.AddComment("Address Size (in bytes)"); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 2144 | Asm->EmitInt8(Asm->getTargetData().getPointerSize()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2145 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2146 | for (SmallVector<const MDNode *, 4>::iterator I = InlinedSPNodes.begin(), |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2147 | E = InlinedSPNodes.end(); I != E; ++I) { |
Jim Grosbach | 31ef40e | 2009-11-21 23:12:12 +0000 | [diff] [blame] | 2148 | |
Devang Patel | e9f8f5e | 2010-05-07 20:54:48 +0000 | [diff] [blame] | 2149 | const MDNode *Node = *I; |
| 2150 | DenseMap<const MDNode *, SmallVector<InlineInfoLabels, 4> >::iterator II |
Jim Grosbach | 7ab38df | 2009-11-22 19:20:36 +0000 | [diff] [blame] | 2151 | = InlineInfo.find(Node); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2152 | SmallVector<InlineInfoLabels, 4> &Labels = II->second; |
Devang Patel | e4b2756 | 2009-08-28 23:24:31 +0000 | [diff] [blame] | 2153 | DISubprogram SP(Node); |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 2154 | StringRef LName = SP.getLinkageName(); |
| 2155 | StringRef Name = SP.getName(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2156 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 2157 | Asm->OutStreamer.AddComment("MIPS linkage name"); |
Eric Christopher | 50e2661 | 2012-03-02 01:57:52 +0000 | [diff] [blame] | 2158 | if (LName.empty()) |
| 2159 | Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym); |
| 2160 | else |
Chris Lattner | 6189ed1 | 2010-04-04 23:25:33 +0000 | [diff] [blame] | 2161 | Asm->EmitSectionOffset(getStringPoolEntry(getRealLinkageName(LName)), |
| 2162 | DwarfStrSectionSym); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2163 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 2164 | Asm->OutStreamer.AddComment("Function name"); |
Chris Lattner | 6189ed1 | 2010-04-04 23:25:33 +0000 | [diff] [blame] | 2165 | Asm->EmitSectionOffset(getStringPoolEntry(Name), DwarfStrSectionSym); |
Chris Lattner | 7e1a8f8 | 2010-04-04 19:09:29 +0000 | [diff] [blame] | 2166 | Asm->EmitULEB128(Labels.size(), "Inline count"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2167 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 2168 | for (SmallVector<InlineInfoLabels, 4>::iterator LI = Labels.begin(), |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2169 | LE = Labels.end(); LI != LE; ++LI) { |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 2170 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("DIE offset"); |
Chris Lattner | 6ed0f90 | 2010-03-09 00:31:02 +0000 | [diff] [blame] | 2171 | Asm->EmitInt32(LI->second->getOffset()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2172 | |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 2173 | if (Asm->isVerbose()) Asm->OutStreamer.AddComment("low_pc"); |
Chris Lattner | d38fee8 | 2010-04-05 00:13:49 +0000 | [diff] [blame] | 2174 | Asm->OutStreamer.EmitSymbolValue(LI->first, |
| 2175 | Asm->getTargetData().getPointerSize(),0); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2176 | } |
| 2177 | } |
| 2178 | |
Chris Lattner | c021572 | 2010-04-04 19:25:43 +0000 | [diff] [blame] | 2179 | Asm->OutStreamer.EmitLabel(Asm->GetTempSymbol("debug_inlined_end", 1)); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 2180 | } |