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