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