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 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 14 | #include "DwarfDebug.h" |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 15 | #include "ByteStreamer.h" |
Eric Christopher | 0d27ca1 | 2013-08-08 23:45:55 +0000 | [diff] [blame] | 16 | #include "DIEHash.h" |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 17 | #include "DwarfCompileUnit.h" |
| 18 | #include "DwarfExpression.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 19 | #include "DwarfUnit.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/STLExtras.h" |
| 21 | #include "llvm/ADT/Statistic.h" |
| 22 | #include "llvm/ADT/StringExtras.h" |
| 23 | #include "llvm/ADT/Triple.h" |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 24 | #include "llvm/CodeGen/DIE.h" |
David Greene | b2c66fc | 2009-08-19 21:52:55 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineFunction.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Constants.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 28 | #include "llvm/IR/DIBuilder.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 29 | #include "llvm/IR/DataLayout.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 30 | #include "llvm/IR/DebugInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 31 | #include "llvm/IR/Instructions.h" |
| 32 | #include "llvm/IR/Module.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 33 | #include "llvm/IR/ValueHandle.h" |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 34 | #include "llvm/MC/MCAsmInfo.h" |
Chris Lattner | a87dea4 | 2009-07-31 18:48:30 +0000 | [diff] [blame] | 35 | #include "llvm/MC/MCSection.h" |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 36 | #include "llvm/MC/MCStreamer.h" |
Chris Lattner | b7db733 | 2010-03-09 01:58:53 +0000 | [diff] [blame] | 37 | #include "llvm/MC/MCSymbol.h" |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 38 | #include "llvm/Support/CommandLine.h" |
Daniel Dunbar | 6e4bdfc | 2009-10-13 06:47:08 +0000 | [diff] [blame] | 39 | #include "llvm/Support/Debug.h" |
David Majnemer | d7d43dc | 2013-08-21 06:13:34 +0000 | [diff] [blame] | 40 | #include "llvm/Support/Dwarf.h" |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 41 | #include "llvm/Support/Endian.h" |
Daniel Dunbar | 6e4bdfc | 2009-10-13 06:47:08 +0000 | [diff] [blame] | 42 | #include "llvm/Support/ErrorHandling.h" |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 43 | #include "llvm/Support/FormattedStream.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 44 | #include "llvm/Support/LEB128.h" |
Eric Christopher | 3dee575 | 2013-07-26 17:02:41 +0000 | [diff] [blame] | 45 | #include "llvm/Support/MD5.h" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 46 | #include "llvm/Support/Path.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 47 | #include "llvm/Support/Timer.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 48 | #include "llvm/Target/TargetFrameLowering.h" |
| 49 | #include "llvm/Target/TargetLoweringObjectFile.h" |
| 50 | #include "llvm/Target/TargetMachine.h" |
| 51 | #include "llvm/Target/TargetOptions.h" |
| 52 | #include "llvm/Target/TargetRegisterInfo.h" |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 53 | #include "llvm/Target/TargetSubtargetInfo.h" |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 54 | using namespace llvm; |
| 55 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 56 | #define DEBUG_TYPE "dwarfdebug" |
| 57 | |
Eric Christopher | 6e61e0b | 2013-07-23 22:16:41 +0000 | [diff] [blame] | 58 | static cl::opt<bool> |
| 59 | DisableDebugInfoPrinting("disable-debug-info-print", cl::Hidden, |
| 60 | cl::desc("Disable debug info printing")); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 61 | |
Eric Christopher | 6e61e0b | 2013-07-23 22:16:41 +0000 | [diff] [blame] | 62 | static cl::opt<bool> UnknownLocations( |
| 63 | "use-unknown-locations", cl::Hidden, |
| 64 | cl::desc("Make an absence of debug location information explicit."), |
| 65 | cl::init(false)); |
Dan Gohman | 281d65d | 2010-05-07 01:08:53 +0000 | [diff] [blame] | 66 | |
Eric Christopher | 6e61e0b | 2013-07-23 22:16:41 +0000 | [diff] [blame] | 67 | static cl::opt<bool> |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 68 | GenerateGnuPubSections("generate-gnu-dwarf-pub-sections", cl::Hidden, |
| 69 | cl::desc("Generate GNU-style pubnames and pubtypes"), |
| 70 | cl::init(false)); |
| 71 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 72 | static cl::opt<bool> GenerateARangeSection("generate-arange-section", |
| 73 | cl::Hidden, |
| 74 | cl::desc("Generate dwarf aranges"), |
| 75 | cl::init(false)); |
| 76 | |
Eric Christopher | 20f47ab | 2012-08-23 22:36:40 +0000 | [diff] [blame] | 77 | namespace { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 78 | enum DefaultOnOff { Default, Enable, Disable }; |
Eric Christopher | 20f47ab | 2012-08-23 22:36:40 +0000 | [diff] [blame] | 79 | } |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 80 | |
Eric Christopher | 6e61e0b | 2013-07-23 22:16:41 +0000 | [diff] [blame] | 81 | static cl::opt<DefaultOnOff> |
| 82 | DwarfAccelTables("dwarf-accel-tables", cl::Hidden, |
| 83 | cl::desc("Output prototype dwarf accelerator tables."), |
| 84 | cl::values(clEnumVal(Default, "Default for platform"), |
| 85 | clEnumVal(Enable, "Enabled"), |
| 86 | clEnumVal(Disable, "Disabled"), clEnumValEnd), |
| 87 | cl::init(Default)); |
Eric Christopher | 20f47ab | 2012-08-23 22:36:40 +0000 | [diff] [blame] | 88 | |
Eric Christopher | 6e61e0b | 2013-07-23 22:16:41 +0000 | [diff] [blame] | 89 | static cl::opt<DefaultOnOff> |
Eric Christopher | 6e61e0b | 2013-07-23 22:16:41 +0000 | [diff] [blame] | 90 | SplitDwarf("split-dwarf", cl::Hidden, |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 91 | cl::desc("Output DWARF5 split debug info."), |
Eric Christopher | 6e61e0b | 2013-07-23 22:16:41 +0000 | [diff] [blame] | 92 | cl::values(clEnumVal(Default, "Default for platform"), |
| 93 | clEnumVal(Enable, "Enabled"), |
| 94 | clEnumVal(Disable, "Disabled"), clEnumValEnd), |
| 95 | cl::init(Default)); |
Eric Christopher | f5b6dcd | 2012-11-12 22:22:20 +0000 | [diff] [blame] | 96 | |
Eric Christopher | f04e4ef | 2013-08-19 21:07:38 +0000 | [diff] [blame] | 97 | static cl::opt<DefaultOnOff> |
Eric Christopher | 63ae7c9 | 2013-08-26 23:24:35 +0000 | [diff] [blame] | 98 | DwarfPubSections("generate-dwarf-pub-sections", cl::Hidden, |
| 99 | cl::desc("Generate DWARF pubnames and pubtypes sections"), |
| 100 | cl::values(clEnumVal(Default, "Default for platform"), |
| 101 | clEnumVal(Enable, "Enabled"), |
| 102 | clEnumVal(Disable, "Disabled"), clEnumValEnd), |
| 103 | cl::init(Default)); |
Eric Christopher | f04e4ef | 2013-08-19 21:07:38 +0000 | [diff] [blame] | 104 | |
Benjamin Kramer | 0b6962f | 2013-08-24 12:54:27 +0000 | [diff] [blame] | 105 | static const char *const DWARFGroupName = "DWARF Emission"; |
| 106 | static const char *const DbgTimerName = "DWARF Debug Writer"; |
Bill Wendling | 5f017e8 | 2010-04-07 09:28:04 +0000 | [diff] [blame] | 107 | |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 108 | //===----------------------------------------------------------------------===// |
| 109 | |
Manman Ren | 8199f0b | 2013-10-08 19:07:44 +0000 | [diff] [blame] | 110 | /// resolve - Look in the DwarfDebug map for the MDNode that |
| 111 | /// corresponds to the reference. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 112 | template <typename T> T DbgVariable::resolve(DIRef<T> Ref) const { |
Manman Ren | 8199f0b | 2013-10-08 19:07:44 +0000 | [diff] [blame] | 113 | return DD->resolve(Ref); |
| 114 | } |
| 115 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 116 | bool DbgVariable::isBlockByrefVariable() const { |
| 117 | assert(Var.isVariable() && "Invalid complex DbgVariable!"); |
| 118 | return Var.isBlockByrefVariable(DD->getTypeIdentifierMap()); |
| 119 | } |
| 120 | |
Nick Lewycky | 3bbb6f7 | 2011-07-29 03:49:23 +0000 | [diff] [blame] | 121 | DIType DbgVariable::getType() const { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 122 | DIType Ty = Var.getType().resolve(DD->getTypeIdentifierMap()); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 123 | // FIXME: isBlockByrefVariable should be reformulated in terms of complex |
| 124 | // addresses instead. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 125 | if (Var.isBlockByrefVariable(DD->getTypeIdentifierMap())) { |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 126 | /* Byref variables, in Blocks, are declared by the programmer as |
| 127 | "SomeType VarName;", but the compiler creates a |
| 128 | __Block_byref_x_VarName struct, and gives the variable VarName |
| 129 | either the struct, or a pointer to the struct, as its type. This |
| 130 | is necessary for various behind-the-scenes things the compiler |
| 131 | needs to do with by-reference variables in blocks. |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 132 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 133 | However, as far as the original *programmer* is concerned, the |
| 134 | variable should still have type 'SomeType', as originally declared. |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 135 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 136 | The following function dives into the __Block_byref_x_VarName |
| 137 | struct to find the original type of the variable. This will be |
| 138 | passed back to the code generating the type for the Debug |
| 139 | Information Entry for the variable 'VarName'. 'VarName' will then |
| 140 | have the original type 'SomeType' in its debug information. |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 141 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 142 | The original type 'SomeType' will be the type of the field named |
| 143 | 'VarName' inside the __Block_byref_x_VarName struct. |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 144 | |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 145 | NOTE: In order for this to not completely fail on the debugger |
| 146 | side, the Debug Information Entry for the variable VarName needs to |
| 147 | have a DW_AT_location that tells the debugger how to unwind through |
| 148 | the pointers and __Block_byref_x_VarName struct to find the actual |
| 149 | value of the variable. The function addBlockByrefType does this. */ |
| 150 | DIType subType = Ty; |
Eric Christopher | 3166762 | 2013-08-08 01:41:00 +0000 | [diff] [blame] | 151 | uint16_t tag = Ty.getTag(); |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 152 | |
Eric Christopher | 4dc211a | 2013-09-04 19:53:21 +0000 | [diff] [blame] | 153 | if (tag == dwarf::DW_TAG_pointer_type) |
Manman Ren | 8199f0b | 2013-10-08 19:07:44 +0000 | [diff] [blame] | 154 | subType = resolve(DIDerivedType(Ty).getTypeDerivedFrom()); |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 155 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 156 | DIArray Elements = DICompositeType(subType).getElements(); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 157 | for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) { |
David Blaikie | d6dffb4 | 2013-11-18 23:57:26 +0000 | [diff] [blame] | 158 | DIDerivedType DT(Elements.getElement(i)); |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 159 | if (getName() == DT.getName()) |
Manman Ren | 8199f0b | 2013-10-08 19:07:44 +0000 | [diff] [blame] | 160 | return (resolve(DT.getTypeDerivedFrom())); |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 161 | } |
Devang Patel | 8bd11de | 2010-08-09 21:01:39 +0000 | [diff] [blame] | 162 | } |
Devang Patel | 3cbee30 | 2011-04-12 22:53:02 +0000 | [diff] [blame] | 163 | return Ty; |
| 164 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 165 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 166 | static LLVM_CONSTEXPR DwarfAccelTable::Atom TypeAtoms[] = { |
| 167 | DwarfAccelTable::Atom(dwarf::DW_ATOM_die_offset, dwarf::DW_FORM_data4), |
| 168 | DwarfAccelTable::Atom(dwarf::DW_ATOM_die_tag, dwarf::DW_FORM_data2), |
| 169 | DwarfAccelTable::Atom(dwarf::DW_ATOM_type_flags, dwarf::DW_FORM_data1)}; |
Manman Ren | 0e6783f | 2013-07-02 23:40:10 +0000 | [diff] [blame] | 170 | |
Chris Lattner | 49cd664 | 2010-04-05 05:11:15 +0000 | [diff] [blame] | 171 | DwarfDebug::DwarfDebug(AsmPrinter *A, Module *M) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 172 | : Asm(A), MMI(Asm->MMI), PrevLabel(nullptr), GlobalRangeCount(0), |
| 173 | InfoHolder(A, *this, "info_string", DIEValueAllocator), |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 174 | UsedNonDefaultText(false), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 175 | SkeletonHolder(A, *this, "skel_string", DIEValueAllocator), |
| 176 | IsDarwin(Triple(A->getTargetTriple()).isOSDarwin()), |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 177 | AccelNames(DwarfAccelTable::Atom(dwarf::DW_ATOM_die_offset, |
| 178 | dwarf::DW_FORM_data4)), |
| 179 | AccelObjC(DwarfAccelTable::Atom(dwarf::DW_ATOM_die_offset, |
| 180 | dwarf::DW_FORM_data4)), |
| 181 | AccelNamespace(DwarfAccelTable::Atom(dwarf::DW_ATOM_die_offset, |
| 182 | dwarf::DW_FORM_data4)), |
| 183 | AccelTypes(TypeAtoms) { |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 184 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 185 | DwarfInfoSectionSym = DwarfAbbrevSectionSym = DwarfStrSectionSym = nullptr; |
| 186 | DwarfDebugRangeSectionSym = DwarfDebugLocSectionSym = nullptr; |
| 187 | DwarfLineSectionSym = nullptr; |
| 188 | DwarfAddrSectionSym = nullptr; |
| 189 | DwarfAbbrevDWOSectionSym = DwarfStrDWOSectionSym = nullptr; |
| 190 | FunctionBeginSym = FunctionEndSym = nullptr; |
| 191 | CurFn = nullptr; |
| 192 | CurMI = nullptr; |
Eric Christopher | 60777d8 | 2012-04-02 17:58:52 +0000 | [diff] [blame] | 193 | |
Adrian Prantl | 73df4b9 | 2013-10-15 20:26:37 +0000 | [diff] [blame] | 194 | // Turn on accelerator tables for Darwin by default, pubnames by |
| 195 | // default for non-Darwin, and handle split dwarf. |
Eric Christopher | 05bae3b | 2013-08-19 21:41:38 +0000 | [diff] [blame] | 196 | if (DwarfAccelTables == Default) |
| 197 | HasDwarfAccelTables = IsDarwin; |
| 198 | else |
Eric Christopher | 03be5e5 | 2013-08-26 20:58:35 +0000 | [diff] [blame] | 199 | HasDwarfAccelTables = DwarfAccelTables == Enable; |
Eric Christopher | 20f47ab | 2012-08-23 22:36:40 +0000 | [diff] [blame] | 200 | |
Eric Christopher | 4daaed1 | 2012-12-10 19:51:21 +0000 | [diff] [blame] | 201 | if (SplitDwarf == Default) |
| 202 | HasSplitDwarf = false; |
Eric Christopher | f5b6dcd | 2012-11-12 22:22:20 +0000 | [diff] [blame] | 203 | else |
Eric Christopher | 05bae3b | 2013-08-19 21:41:38 +0000 | [diff] [blame] | 204 | HasSplitDwarf = SplitDwarf == Enable; |
Eric Christopher | f5b6dcd | 2012-11-12 22:22:20 +0000 | [diff] [blame] | 205 | |
Eric Christopher | 63ae7c9 | 2013-08-26 23:24:35 +0000 | [diff] [blame] | 206 | if (DwarfPubSections == Default) |
| 207 | HasDwarfPubSections = !IsDarwin; |
Eric Christopher | 05bae3b | 2013-08-19 21:41:38 +0000 | [diff] [blame] | 208 | else |
Eric Christopher | 63ae7c9 | 2013-08-26 23:24:35 +0000 | [diff] [blame] | 209 | HasDwarfPubSections = DwarfPubSections == Enable; |
Eric Christopher | f04e4ef | 2013-08-19 21:07:38 +0000 | [diff] [blame] | 210 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 211 | unsigned DwarfVersionNumber = Asm->TM.Options.MCOptions.DwarfVersion; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 212 | DwarfVersion = DwarfVersionNumber ? DwarfVersionNumber |
| 213 | : MMI->getModule()->getDwarfVersion(); |
Manman Ren | 0e6783f | 2013-07-02 23:40:10 +0000 | [diff] [blame] | 214 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 215 | Asm->OutStreamer.getContext().setDwarfVersion(DwarfVersion); |
| 216 | |
Dan Gohman | 03c3dc7 | 2010-06-18 15:56:31 +0000 | [diff] [blame] | 217 | { |
| 218 | NamedRegionTimer T(DbgTimerName, DWARFGroupName, TimePassesIsEnabled); |
Eric Christopher | c4639d6 | 2012-11-19 22:42:15 +0000 | [diff] [blame] | 219 | beginModule(); |
Torok Edwin | 9c42107 | 2010-04-07 10:44:46 +0000 | [diff] [blame] | 220 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 221 | } |
Bill Wendling | 0310d76 | 2009-05-15 09:23:25 +0000 | [diff] [blame] | 222 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 223 | // Define out of line so we don't have to include DwarfUnit.h in DwarfDebug.h. |
| 224 | DwarfDebug::~DwarfDebug() { } |
| 225 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 226 | // Switch to the specified MCSection and emit an assembler |
| 227 | // temporary label to it if SymbolStem is specified. |
Eric Christopher | 7ee5f5d | 2012-11-21 00:34:35 +0000 | [diff] [blame] | 228 | static MCSymbol *emitSectionSym(AsmPrinter *Asm, const MCSection *Section, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 229 | const char *SymbolStem = nullptr) { |
Eric Christopher | d8a8752 | 2011-11-07 09:18:38 +0000 | [diff] [blame] | 230 | Asm->OutStreamer.SwitchSection(Section); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 231 | if (!SymbolStem) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 232 | return nullptr; |
Eric Christopher | d8a8752 | 2011-11-07 09:18:38 +0000 | [diff] [blame] | 233 | |
| 234 | MCSymbol *TmpSym = Asm->GetTempSymbol(SymbolStem); |
| 235 | Asm->OutStreamer.EmitLabel(TmpSym); |
| 236 | return TmpSym; |
| 237 | } |
| 238 | |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 239 | static bool isObjCClass(StringRef Name) { |
| 240 | return Name.startswith("+") || Name.startswith("-"); |
| 241 | } |
| 242 | |
| 243 | static bool hasObjCCategory(StringRef Name) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 244 | if (!isObjCClass(Name)) |
| 245 | return false; |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 246 | |
Benjamin Kramer | 4321d4e | 2013-08-24 12:15:54 +0000 | [diff] [blame] | 247 | return Name.find(") ") != StringRef::npos; |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | static void getObjCClassCategory(StringRef In, StringRef &Class, |
| 251 | StringRef &Category) { |
| 252 | if (!hasObjCCategory(In)) { |
| 253 | Class = In.slice(In.find('[') + 1, In.find(' ')); |
| 254 | Category = ""; |
| 255 | return; |
| 256 | } |
| 257 | |
| 258 | Class = In.slice(In.find('[') + 1, In.find('(')); |
| 259 | Category = In.slice(In.find('[') + 1, In.find(' ')); |
| 260 | return; |
| 261 | } |
| 262 | |
| 263 | static StringRef getObjCMethodName(StringRef In) { |
| 264 | return In.slice(In.find(' ') + 1, In.find(']')); |
| 265 | } |
| 266 | |
Richard Mitton | 7c9659a | 2013-10-03 22:07:08 +0000 | [diff] [blame] | 267 | // Helper for sorting sections into a stable output order. |
| 268 | static bool SectionSort(const MCSection *A, const MCSection *B) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 269 | std::string LA = (A ? A->getLabelBeginName() : ""); |
| 270 | std::string LB = (B ? B->getLabelBeginName() : ""); |
| 271 | return LA < LB; |
Richard Mitton | 7c9659a | 2013-10-03 22:07:08 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 274 | // Add the various names to the Dwarf accelerator table names. |
Eric Christopher | 9e0b08d | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 275 | // TODO: Determine whether or not we should add names for programs |
| 276 | // that do not have a DW_AT_name or DW_AT_linkage_name field - this |
| 277 | // is only slightly different than the lookup of non-standard ObjC names. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 278 | void DwarfDebug::addSubprogramNames(DISubprogram SP, DIE &Die) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 279 | if (!SP.isDefinition()) |
| 280 | return; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 281 | addAccelName(SP.getName(), Die); |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 282 | |
| 283 | // If the linkage name is different than the name, go ahead and output |
| 284 | // that as well into the name table. |
| 285 | if (SP.getLinkageName() != "" && SP.getName() != SP.getLinkageName()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 286 | addAccelName(SP.getLinkageName(), Die); |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 287 | |
| 288 | // If this is an Objective-C selector name add it to the ObjC accelerator |
| 289 | // too. |
| 290 | if (isObjCClass(SP.getName())) { |
| 291 | StringRef Class, Category; |
| 292 | getObjCClassCategory(SP.getName(), Class, Category); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 293 | addAccelObjC(Class, Die); |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 294 | if (Category != "") |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 295 | addAccelObjC(Category, Die); |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 296 | // Also add the base method name to the name table. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 297 | addAccelName(getObjCMethodName(SP.getName()), Die); |
Eric Christopher | 0ffe2b4 | 2011-11-10 19:25:34 +0000 | [diff] [blame] | 298 | } |
| 299 | } |
| 300 | |
Manman Ren | 02d2967 | 2013-09-09 19:05:21 +0000 | [diff] [blame] | 301 | /// isSubprogramContext - Return true if Context is either a subprogram |
| 302 | /// or another context nested inside a subprogram. |
| 303 | bool DwarfDebug::isSubprogramContext(const MDNode *Context) { |
| 304 | if (!Context) |
| 305 | return false; |
| 306 | DIDescriptor D(Context); |
| 307 | if (D.isSubprogram()) |
| 308 | return true; |
| 309 | if (D.isType()) |
Manman Ren | 2c9905a | 2013-09-09 19:47:11 +0000 | [diff] [blame] | 310 | return isSubprogramContext(resolve(DIType(Context).getContext())); |
Manman Ren | 02d2967 | 2013-09-09 19:05:21 +0000 | [diff] [blame] | 311 | return false; |
| 312 | } |
| 313 | |
Manman Ren | 995de6c | 2013-09-11 19:40:28 +0000 | [diff] [blame] | 314 | /// Check whether we should create a DIE for the given Scope, return true |
| 315 | /// if we don't create a DIE (the corresponding DIE is null). |
Manman Ren | fd2210a | 2013-09-10 18:40:41 +0000 | [diff] [blame] | 316 | bool DwarfDebug::isLexicalScopeDIENull(LexicalScope *Scope) { |
| 317 | if (Scope->isAbstractScope()) |
| 318 | return false; |
| 319 | |
Manman Ren | 995de6c | 2013-09-11 19:40:28 +0000 | [diff] [blame] | 320 | // We don't create a DIE if there is no Range. |
Manman Ren | fd2210a | 2013-09-10 18:40:41 +0000 | [diff] [blame] | 321 | const SmallVectorImpl<InsnRange> &Ranges = Scope->getRanges(); |
| 322 | if (Ranges.empty()) |
| 323 | return true; |
| 324 | |
| 325 | if (Ranges.size() > 1) |
| 326 | return false; |
| 327 | |
Manman Ren | 995de6c | 2013-09-11 19:40:28 +0000 | [diff] [blame] | 328 | // We don't create a DIE if we have a single Range and the end label |
| 329 | // is null. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 330 | return !getLabelAfterInsn(Ranges.front().second); |
Manman Ren | fd2210a | 2013-09-10 18:40:41 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 333 | template <typename Func> void forBothCUs(DwarfCompileUnit &CU, Func F) { |
| 334 | F(CU); |
| 335 | if (auto *SkelCU = CU.getSkeleton()) |
| 336 | F(*SkelCU); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 339 | void DwarfDebug::constructAbstractSubprogramScopeDIE(LexicalScope *Scope) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 340 | assert(Scope && Scope->getScopeNode()); |
| 341 | assert(Scope->isAbstractScope()); |
| 342 | assert(!Scope->getInlinedAt()); |
| 343 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 344 | const MDNode *SP = Scope->getScopeNode(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 345 | |
| 346 | ProcessedSPNodes.insert(SP); |
| 347 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 348 | // Find the subprogram's DwarfCompileUnit in the SPMap in case the subprogram |
| 349 | // was inlined from another compile unit. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 350 | auto &CU = SPMap[SP]; |
| 351 | forBothCUs(*CU, [&](DwarfCompileUnit &CU) { |
| 352 | CU.constructAbstractSubprogramScopeDIE(Scope); |
| 353 | }); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | void DwarfDebug::addGnuPubAttributes(DwarfUnit &U, DIE &D) const { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 357 | if (!GenerateGnuPubSections) |
| 358 | return; |
Rafael Espindola | 5e195a4 | 2013-10-05 16:42:21 +0000 | [diff] [blame] | 359 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 360 | U.addFlag(D, dwarf::DW_AT_GNU_pubnames); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 363 | // Create new DwarfCompileUnit for the given metadata node with tag |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 364 | // DW_TAG_compile_unit. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 365 | DwarfCompileUnit &DwarfDebug::constructDwarfCompileUnit(DICompileUnit DIUnit) { |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 366 | StringRef FN = DIUnit.getFilename(); |
Nick Lewycky | 6c1a703 | 2011-11-02 20:55:33 +0000 | [diff] [blame] | 367 | CompilationDir = DIUnit.getDirectory(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 368 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 369 | auto OwnedUnit = make_unique<DwarfCompileUnit>( |
| 370 | InfoHolder.getUnits().size(), DIUnit, Asm, this, &InfoHolder); |
| 371 | DwarfCompileUnit &NewCU = *OwnedUnit; |
| 372 | DIE &Die = NewCU.getUnitDie(); |
| 373 | InfoHolder.addUnit(std::move(OwnedUnit)); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 374 | if (useSplitDwarf()) |
| 375 | NewCU.setSkeleton(constructSkeletonCU(NewCU)); |
Manman Ren | 3de61b4 | 2013-03-07 01:42:00 +0000 | [diff] [blame] | 376 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 377 | // LTO with assembly output shares a single line table amongst multiple CUs. |
| 378 | // To avoid the compilation directory being ambiguous, let the line table |
| 379 | // explicitly describe the directory of all files, never relying on the |
| 380 | // compilation directory. |
| 381 | if (!Asm->OutStreamer.hasRawTextSupport() || SingleCU) |
| 382 | Asm->OutStreamer.getContext().setMCLineTableCompilationDir( |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 383 | NewCU.getUniqueID(), CompilationDir); |
Manman Ren | 3de61b4 | 2013-03-07 01:42:00 +0000 | [diff] [blame] | 384 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 385 | NewCU.addString(Die, dwarf::DW_AT_producer, DIUnit.getProducer()); |
| 386 | NewCU.addUInt(Die, dwarf::DW_AT_language, dwarf::DW_FORM_data2, |
| 387 | DIUnit.getLanguage()); |
| 388 | NewCU.addString(Die, dwarf::DW_AT_name, FN); |
Eric Christopher | e0828ec | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 389 | |
Eric Christopher | e0828ec | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 390 | if (!useSplitDwarf()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 391 | NewCU.initStmtList(DwarfLineSectionSym); |
Eric Christopher | 0b15e98 | 2013-09-27 22:50:48 +0000 | [diff] [blame] | 392 | |
| 393 | // If we're using split dwarf the compilation dir is going to be in the |
| 394 | // skeleton CU and so we don't need to duplicate it here. |
| 395 | if (!CompilationDir.empty()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 396 | NewCU.addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); |
Eric Christopher | 0b15e98 | 2013-09-27 22:50:48 +0000 | [diff] [blame] | 397 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 398 | addGnuPubAttributes(NewCU, Die); |
Eric Christopher | e0828ec | 2013-04-09 19:23:15 +0000 | [diff] [blame] | 399 | } |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 400 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 401 | if (DIUnit.isOptimized()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 402 | NewCU.addFlag(Die, dwarf::DW_AT_APPLE_optimized); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 403 | |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 404 | StringRef Flags = DIUnit.getFlags(); |
| 405 | if (!Flags.empty()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 406 | NewCU.addString(Die, dwarf::DW_AT_APPLE_flags, Flags); |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 407 | |
Nick Lewycky | d5d5213 | 2011-10-17 23:27:36 +0000 | [diff] [blame] | 408 | if (unsigned RVer = DIUnit.getRunTimeVersion()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 409 | NewCU.addUInt(Die, dwarf::DW_AT_APPLE_major_runtime_vers, |
| 410 | dwarf::DW_FORM_data1, RVer); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 411 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 412 | if (useSplitDwarf()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 413 | NewCU.initSection(Asm->getObjFileLowering().getDwarfInfoDWOSection(), |
| 414 | DwarfInfoDWOSectionSym); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 415 | else |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 416 | NewCU.initSection(Asm->getObjFileLowering().getDwarfInfoSection(), |
| 417 | DwarfInfoSectionSym); |
Eric Christopher | 0e3e9b7 | 2012-12-10 23:34:43 +0000 | [diff] [blame] | 418 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 419 | CUMap.insert(std::make_pair(DIUnit, &NewCU)); |
| 420 | CUDieMap.insert(std::make_pair(&Die, &NewCU)); |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 421 | return NewCU; |
Devang Patel | 163a9f7 | 2010-05-10 22:49:55 +0000 | [diff] [blame] | 422 | } |
| 423 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 424 | void DwarfDebug::constructAndAddImportedEntityDIE(DwarfCompileUnit &TheCU, |
| 425 | const MDNode *N) { |
David Blaikie | 20d9e41 | 2013-05-07 21:35:53 +0000 | [diff] [blame] | 426 | DIImportedEntity Module(N); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 427 | assert(Module.Verify()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 428 | if (DIE *D = TheCU.getOrCreateContextDIE(Module.getContext())) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 429 | D->addChild(TheCU.constructImportedEntityDIE(Module)); |
David Blaikie | c462db6 | 2013-04-22 06:12:31 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 432 | // Emit all Dwarf sections that should come prior to the content. Create |
| 433 | // global DIEs and emit initial debug info sections. This is invoked by |
| 434 | // the target AsmPrinter. |
Eric Christopher | c4639d6 | 2012-11-19 22:42:15 +0000 | [diff] [blame] | 435 | void DwarfDebug::beginModule() { |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 436 | if (DisableDebugInfoPrinting) |
| 437 | return; |
| 438 | |
Eric Christopher | c4639d6 | 2012-11-19 22:42:15 +0000 | [diff] [blame] | 439 | const Module *M = MMI->getModule(); |
| 440 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 441 | FunctionDIs = makeSubprogramMap(*M); |
| 442 | |
Devang Patel | 30692ab | 2011-05-03 16:45:22 +0000 | [diff] [blame] | 443 | NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu"); |
David Blaikie | c0ec8a4 | 2013-03-11 23:39:23 +0000 | [diff] [blame] | 444 | if (!CU_Nodes) |
Devang Patel | 02e603f | 2011-08-15 23:47:24 +0000 | [diff] [blame] | 445 | return; |
Manman Ren | bc66071 | 2013-09-05 18:48:31 +0000 | [diff] [blame] | 446 | TypeIdentifierMap = generateDITypeIdentifierMap(CU_Nodes); |
Devang Patel | 30692ab | 2011-05-03 16:45:22 +0000 | [diff] [blame] | 447 | |
David Blaikie | c0ec8a4 | 2013-03-11 23:39:23 +0000 | [diff] [blame] | 448 | // Emit initial sections so we can reference labels later. |
| 449 | emitSectionLabels(); |
| 450 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 451 | SingleCU = CU_Nodes->getNumOperands() == 1; |
| 452 | |
| 453 | for (MDNode *N : CU_Nodes->operands()) { |
| 454 | DICompileUnit CUNode(N); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 455 | DwarfCompileUnit &CU = constructDwarfCompileUnit(CUNode); |
David Blaikie | 20d9e41 | 2013-05-07 21:35:53 +0000 | [diff] [blame] | 456 | DIArray ImportedEntities = CUNode.getImportedEntities(); |
| 457 | for (unsigned i = 0, e = ImportedEntities.getNumElements(); i != e; ++i) |
David Blaikie | d2e0f7e | 2013-05-06 23:33:07 +0000 | [diff] [blame] | 458 | ScopesWithImportedEntities.push_back(std::make_pair( |
David Blaikie | 20d9e41 | 2013-05-07 21:35:53 +0000 | [diff] [blame] | 459 | DIImportedEntity(ImportedEntities.getElement(i)).getContext(), |
| 460 | ImportedEntities.getElement(i))); |
David Blaikie | d2e0f7e | 2013-05-06 23:33:07 +0000 | [diff] [blame] | 461 | std::sort(ScopesWithImportedEntities.begin(), |
Benjamin Kramer | 0b6962f | 2013-08-24 12:54:27 +0000 | [diff] [blame] | 462 | ScopesWithImportedEntities.end(), less_first()); |
David Blaikie | c0ec8a4 | 2013-03-11 23:39:23 +0000 | [diff] [blame] | 463 | DIArray GVs = CUNode.getGlobalVariables(); |
| 464 | for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 465 | CU.getOrCreateGlobalVariableDIE(DIGlobalVariable(GVs.getElement(i))); |
David Blaikie | c0ec8a4 | 2013-03-11 23:39:23 +0000 | [diff] [blame] | 466 | DIArray SPs = CUNode.getSubprograms(); |
| 467 | for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 468 | SPMap.insert(std::make_pair(SPs.getElement(i), &CU)); |
David Blaikie | c0ec8a4 | 2013-03-11 23:39:23 +0000 | [diff] [blame] | 469 | DIArray EnumTypes = CUNode.getEnumTypes(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 470 | for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i) { |
| 471 | DIType Ty(EnumTypes.getElement(i)); |
| 472 | // The enum types array by design contains pointers to |
| 473 | // MDNodes rather than DIRefs. Unique them here. |
| 474 | DIType UniqueTy(resolve(Ty.getRef())); |
| 475 | CU.getOrCreateTypeDIE(UniqueTy); |
| 476 | } |
David Blaikie | c0ec8a4 | 2013-03-11 23:39:23 +0000 | [diff] [blame] | 477 | DIArray RetainedTypes = CUNode.getRetainedTypes(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 478 | for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i) { |
| 479 | DIType Ty(RetainedTypes.getElement(i)); |
| 480 | // The retained types array by design contains pointers to |
| 481 | // MDNodes rather than DIRefs. Unique them here. |
| 482 | DIType UniqueTy(resolve(Ty.getRef())); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 483 | CU.getOrCreateTypeDIE(UniqueTy); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 484 | } |
David Blaikie | c462db6 | 2013-04-22 06:12:31 +0000 | [diff] [blame] | 485 | // Emit imported_modules last so that the relevant context is already |
| 486 | // available. |
David Blaikie | 20d9e41 | 2013-05-07 21:35:53 +0000 | [diff] [blame] | 487 | for (unsigned i = 0, e = ImportedEntities.getNumElements(); i != e; ++i) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 488 | constructAndAddImportedEntityDIE(CU, ImportedEntities.getElement(i)); |
David Blaikie | c0ec8a4 | 2013-03-11 23:39:23 +0000 | [diff] [blame] | 489 | } |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 490 | |
Chris Lattner | d850ac7 | 2010-04-05 02:19:28 +0000 | [diff] [blame] | 491 | // Tell MMI that we have debug info. |
| 492 | MMI->setDebugInfoAvailability(true); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 493 | } |
| 494 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 495 | void DwarfDebug::finishVariableDefinitions() { |
| 496 | for (const auto &Var : ConcreteVariables) { |
| 497 | DIE *VariableDie = Var->getDIE(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 498 | assert(VariableDie); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 499 | // FIXME: Consider the time-space tradeoff of just storing the unit pointer |
| 500 | // in the ConcreteVariables list, rather than looking it up again here. |
| 501 | // DIE::getUnit isn't simple - it walks parent pointers, etc. |
| 502 | DwarfCompileUnit *Unit = lookupUnit(VariableDie->getUnit()); |
| 503 | assert(Unit); |
| 504 | DbgVariable *AbsVar = getExistingAbstractVariable(Var->getVariable()); |
| 505 | if (AbsVar && AbsVar->getDIE()) { |
| 506 | Unit->addDIEEntry(*VariableDie, dwarf::DW_AT_abstract_origin, |
| 507 | *AbsVar->getDIE()); |
| 508 | } else |
| 509 | Unit->applyVariableAttributes(*Var, *VariableDie); |
| 510 | } |
| 511 | } |
| 512 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 513 | void DwarfDebug::finishSubprogramDefinitions() { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 514 | for (const auto &P : SPMap) |
| 515 | forBothCUs(*P.second, [&](DwarfCompileUnit &CU) { |
| 516 | CU.finishSubprogramDefinition(DISubprogram(P.first)); |
| 517 | }); |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 520 | |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 521 | // Collect info for variables that were optimized out. |
| 522 | void DwarfDebug::collectDeadVariables() { |
| 523 | const Module *M = MMI->getModule(); |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 524 | |
| 525 | if (NamedMDNode *CU_Nodes = M->getNamedMetadata("llvm.dbg.cu")) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 526 | for (MDNode *N : CU_Nodes->operands()) { |
| 527 | DICompileUnit TheCU(N); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 528 | // Construct subprogram DIE and add variables DIEs. |
| 529 | DwarfCompileUnit *SPCU = |
| 530 | static_cast<DwarfCompileUnit *>(CUMap.lookup(TheCU)); |
| 531 | assert(SPCU && "Unable to find Compile Unit!"); |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 532 | DIArray Subprograms = TheCU.getSubprograms(); |
| 533 | for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) { |
Eric Christopher | bdab800 | 2012-11-27 00:13:51 +0000 | [diff] [blame] | 534 | DISubprogram SP(Subprograms.getElement(i)); |
Eric Christopher | c622824 | 2013-10-15 23:31:38 +0000 | [diff] [blame] | 535 | if (ProcessedSPNodes.count(SP) != 0) |
| 536 | continue; |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 537 | SPCU->collectDeadVariables(SP); |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 538 | } |
| 539 | } |
| 540 | } |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | void DwarfDebug::finalizeModuleInfo() { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 544 | finishSubprogramDefinitions(); |
| 545 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 546 | finishVariableDefinitions(); |
| 547 | |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 548 | // Collect info for variables that were optimized out. |
| 549 | collectDeadVariables(); |
| 550 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 551 | // Handle anything that needs to be done on a per-unit basis after |
| 552 | // all other generation. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 553 | for (const auto &P : CUMap) { |
| 554 | auto &TheCU = *P.second; |
Eric Christopher | f962c02 | 2013-08-12 20:27:48 +0000 | [diff] [blame] | 555 | // Emit DW_AT_containing_type attribute to connect types with their |
| 556 | // vtable holding type. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 557 | TheCU.constructContainingTypeDIEs(); |
Eric Christopher | f962c02 | 2013-08-12 20:27:48 +0000 | [diff] [blame] | 558 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 559 | // Add CU specific attributes if we need to add any. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 560 | // If we're splitting the dwarf out now that we've got the entire |
| 561 | // CU then add the dwo id to it. |
| 562 | auto *SkCU = TheCU.getSkeleton(); |
| 563 | if (useSplitDwarf()) { |
| 564 | // Emit a unique identifier for this CU. |
| 565 | uint64_t ID = DIEHash(Asm).computeCUSignature(TheCU.getUnitDie()); |
| 566 | TheCU.addUInt(TheCU.getUnitDie(), dwarf::DW_AT_GNU_dwo_id, |
| 567 | dwarf::DW_FORM_data8, ID); |
| 568 | SkCU->addUInt(SkCU->getUnitDie(), dwarf::DW_AT_GNU_dwo_id, |
| 569 | dwarf::DW_FORM_data8, ID); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 570 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 571 | // We don't keep track of which addresses are used in which CU so this |
| 572 | // is a bit pessimistic under LTO. |
| 573 | if (!AddrPool.isEmpty()) |
| 574 | SkCU->addSectionLabel(SkCU->getUnitDie(), dwarf::DW_AT_GNU_addr_base, |
| 575 | DwarfAddrSectionSym, DwarfAddrSectionSym); |
| 576 | if (!SkCU->getRangeLists().empty()) |
| 577 | SkCU->addSectionLabel(SkCU->getUnitDie(), dwarf::DW_AT_GNU_ranges_base, |
| 578 | DwarfDebugRangeSectionSym, |
| 579 | DwarfDebugRangeSectionSym); |
| 580 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 581 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 582 | // If we have code split among multiple sections or non-contiguous |
| 583 | // ranges of code then emit a DW_AT_ranges attribute on the unit that will |
| 584 | // remain in the .o file, otherwise add a DW_AT_low_pc. |
| 585 | // FIXME: We should use ranges allow reordering of code ala |
| 586 | // .subsections_via_symbols in mach-o. This would mean turning on |
| 587 | // ranges for all subprogram DIEs for mach-o. |
| 588 | DwarfCompileUnit &U = SkCU ? *SkCU : TheCU; |
| 589 | if (unsigned NumRanges = TheCU.getRanges().size()) { |
| 590 | if (NumRanges > 1) |
| 591 | // A DW_AT_low_pc attribute may also be specified in combination with |
| 592 | // DW_AT_ranges to specify the default base address for use in |
| 593 | // location lists (see Section 2.6.2) and range lists (see Section |
| 594 | // 2.17.3). |
| 595 | U.addUInt(U.getUnitDie(), dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, 0); |
| 596 | else |
| 597 | TheCU.setBaseAddress(TheCU.getRanges().front().getStart()); |
| 598 | U.attachRangesOrLowHighPC(U.getUnitDie(), TheCU.takeRanges()); |
Eric Christopher | f962c02 | 2013-08-12 20:27:48 +0000 | [diff] [blame] | 599 | } |
| 600 | } |
| 601 | |
| 602 | // Compute DIE offsets and sizes. |
Eric Christopher | 0e3e9b7 | 2012-12-10 23:34:43 +0000 | [diff] [blame] | 603 | InfoHolder.computeSizeAndOffsets(); |
| 604 | if (useSplitDwarf()) |
| 605 | SkeletonHolder.computeSizeAndOffsets(); |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 606 | } |
| 607 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 608 | // Emit all Dwarf sections that should come after the content. |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 609 | void DwarfDebug::endModule() { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 610 | assert(CurFn == nullptr); |
| 611 | assert(CurMI == nullptr); |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 612 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 613 | // If we aren't actually generating debug info (check beginModule - |
| 614 | // conditionalized on !DisableDebugInfoPrinting and the presence of the |
| 615 | // llvm.dbg.cu metadata node) |
| 616 | if (!DwarfInfoSectionSym) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 617 | return; |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 618 | |
Eric Christopher | 4117bec | 2012-11-22 00:59:49 +0000 | [diff] [blame] | 619 | // Finalize the debug info for the module. |
| 620 | finalizeModuleInfo(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 621 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 622 | emitDebugStr(); |
Eric Christopher | 9e0b08d | 2013-09-20 23:22:52 +0000 | [diff] [blame] | 623 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 624 | // Emit all the DIEs into a debug info section. |
| 625 | emitDebugInfo(); |
Eric Christopher | 74802f7 | 2012-11-27 00:41:54 +0000 | [diff] [blame] | 626 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 627 | // Corresponding abbreviations into a abbrev section. |
| 628 | emitAbbreviations(); |
Eric Christopher | 4288502 | 2012-11-27 22:43:42 +0000 | [diff] [blame] | 629 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 630 | // Emit info into a debug aranges section. |
| 631 | if (GenerateARangeSection) |
Eric Christopher | 4288502 | 2012-11-27 22:43:42 +0000 | [diff] [blame] | 632 | emitDebugARanges(); |
| 633 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 634 | // Emit info into a debug ranges section. |
| 635 | emitDebugRanges(); |
Eric Christopher | 4288502 | 2012-11-27 22:43:42 +0000 | [diff] [blame] | 636 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 637 | if (useSplitDwarf()) { |
| 638 | emitDebugStrDWO(); |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 639 | emitDebugInfoDWO(); |
Eric Christopher | 6eebe47 | 2012-12-19 22:02:53 +0000 | [diff] [blame] | 640 | emitDebugAbbrevDWO(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 641 | emitDebugLineDWO(); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 642 | emitDebugLocDWO(); |
Eric Christopher | 72f7bfb | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 643 | // Emit DWO addresses. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 644 | AddrPool.emit(*Asm, Asm->getObjFileLowering().getDwarfAddrSection()); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 645 | } else |
| 646 | // Emit info into a debug loc section. |
| 647 | emitDebugLoc(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 648 | |
Eric Christopher | 9d9f5a5 | 2012-08-23 07:32:06 +0000 | [diff] [blame] | 649 | // Emit info into the dwarf accelerator table sections. |
Eric Christopher | 20f47ab | 2012-08-23 22:36:40 +0000 | [diff] [blame] | 650 | if (useDwarfAccelTables()) { |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 651 | emitAccelNames(); |
| 652 | emitAccelObjC(); |
| 653 | emitAccelNamespaces(); |
| 654 | emitAccelTypes(); |
| 655 | } |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 656 | |
Eric Christopher | 2612354 | 2013-08-30 00:40:17 +0000 | [diff] [blame] | 657 | // Emit the pubnames and pubtypes sections if requested. |
| 658 | if (HasDwarfPubSections) { |
David Blaikie | e56a4d9 | 2013-09-19 17:33:35 +0000 | [diff] [blame] | 659 | emitDebugPubNames(GenerateGnuPubSections); |
| 660 | emitDebugPubTypes(GenerateGnuPubSections); |
Eric Christopher | 2612354 | 2013-08-30 00:40:17 +0000 | [diff] [blame] | 661 | } |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 662 | |
Devang Patel | e9a1cca | 2010-08-02 17:32:15 +0000 | [diff] [blame] | 663 | // clean up. |
Devang Patel | 94c7ddb | 2011-08-16 22:09:43 +0000 | [diff] [blame] | 664 | SPMap.clear(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 665 | AbstractVariables.clear(); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 666 | } |
| 667 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 668 | // Find abstract variable, if any, associated with Var. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 669 | DbgVariable *DwarfDebug::getExistingAbstractVariable(const DIVariable &DV, |
| 670 | DIVariable &Cleansed) { |
Devang Patel | b549bcf | 2011-08-10 21:50:54 +0000 | [diff] [blame] | 671 | LLVMContext &Ctx = DV->getContext(); |
| 672 | // More then one inlined variable corresponds to one abstract variable. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 673 | // FIXME: This duplication of variables when inlining should probably be |
| 674 | // removed. It's done to allow each DIVariable to describe its location |
| 675 | // because the DebugLoc on the dbg.value/declare isn't accurate. We should |
| 676 | // make it accurate then remove this duplication/cleansing stuff. |
| 677 | Cleansed = cleanseInlinedVariable(DV, Ctx); |
| 678 | auto I = AbstractVariables.find(Cleansed); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 679 | if (I != AbstractVariables.end()) |
| 680 | return I->second.get(); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 681 | return nullptr; |
| 682 | } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 683 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 684 | DbgVariable *DwarfDebug::getExistingAbstractVariable(const DIVariable &DV) { |
| 685 | DIVariable Cleansed; |
| 686 | return getExistingAbstractVariable(DV, Cleansed); |
| 687 | } |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 688 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 689 | void DwarfDebug::createAbstractVariable(const DIVariable &Var, |
| 690 | LexicalScope *Scope) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 691 | auto AbsDbgVariable = make_unique<DbgVariable>(Var, DIExpression(), this); |
| 692 | InfoHolder.addScopeVariable(Scope, AbsDbgVariable.get()); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 693 | AbstractVariables[Var] = std::move(AbsDbgVariable); |
| 694 | } |
| 695 | |
| 696 | void DwarfDebug::ensureAbstractVariableIsCreated(const DIVariable &DV, |
| 697 | const MDNode *ScopeNode) { |
| 698 | DIVariable Cleansed = DV; |
| 699 | if (getExistingAbstractVariable(DV, Cleansed)) |
| 700 | return; |
| 701 | |
| 702 | createAbstractVariable(Cleansed, LScopes.getOrCreateAbstractScope(ScopeNode)); |
| 703 | } |
| 704 | |
| 705 | void |
| 706 | DwarfDebug::ensureAbstractVariableIsCreatedIfScoped(const DIVariable &DV, |
| 707 | const MDNode *ScopeNode) { |
| 708 | DIVariable Cleansed = DV; |
| 709 | if (getExistingAbstractVariable(DV, Cleansed)) |
| 710 | return; |
| 711 | |
| 712 | if (LexicalScope *Scope = LScopes.findAbstractScope(ScopeNode)) |
| 713 | createAbstractVariable(Cleansed, Scope); |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 714 | } |
| 715 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 716 | // Collect variable information from side table maintained by MMI. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 717 | void DwarfDebug::collectVariableInfoFromMMITable( |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 718 | SmallPtrSetImpl<const MDNode *> &Processed) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 719 | for (const auto &VI : MMI->getVariableDbgInfo()) { |
| 720 | if (!VI.Var) |
| 721 | continue; |
| 722 | Processed.insert(VI.Var); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 723 | LexicalScope *Scope = LScopes.findLexicalScope(VI.Loc); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 724 | |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 725 | // If variable scope is not found then skip this variable. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 726 | if (!Scope) |
Devang Patel | fb0ee43 | 2009-11-10 23:20:04 +0000 | [diff] [blame] | 727 | continue; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 728 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 729 | DIVariable DV(VI.Var); |
| 730 | DIExpression Expr(VI.Expr); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 731 | ensureAbstractVariableIsCreatedIfScoped(DV, Scope->getScopeNode()); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 732 | auto RegVar = make_unique<DbgVariable>(DV, Expr, this, VI.Slot); |
| 733 | if (InfoHolder.addScopeVariable(Scope, RegVar.get())) |
| 734 | ConcreteVariables.push_back(std::move(RegVar)); |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 735 | } |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 736 | } |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 737 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 738 | // Get .debug_loc entry for the instruction range starting at MI. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 739 | static DebugLocEntry::Value getDebugLocValue(const MachineInstr *MI) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 740 | const MDNode *Expr = MI->getDebugExpression(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 741 | const MDNode *Var = MI->getDebugVariable(); |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 742 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 743 | assert(MI->getNumOperands() == 4); |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 744 | if (MI->getOperand(0).isReg()) { |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 745 | MachineLocation MLoc; |
Adrian Prantl | 3517640 | 2013-07-09 20:28:37 +0000 | [diff] [blame] | 746 | // If the second operand is an immediate, this is a |
| 747 | // register-indirect address. |
| 748 | if (!MI->getOperand(1).isImm()) |
Adrian Prantl | 13131e6 | 2013-04-26 21:57:17 +0000 | [diff] [blame] | 749 | MLoc.set(MI->getOperand(0).getReg()); |
| 750 | else |
| 751 | MLoc.set(MI->getOperand(0).getReg(), MI->getOperand(1).getImm()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 752 | return DebugLocEntry::Value(Var, Expr, MLoc); |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 753 | } |
| 754 | if (MI->getOperand(0).isImm()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 755 | return DebugLocEntry::Value(Var, Expr, MI->getOperand(0).getImm()); |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 756 | if (MI->getOperand(0).isFPImm()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 757 | return DebugLocEntry::Value(Var, Expr, MI->getOperand(0).getFPImm()); |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 758 | if (MI->getOperand(0).isCImm()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 759 | return DebugLocEntry::Value(Var, Expr, MI->getOperand(0).getCImm()); |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 760 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 761 | llvm_unreachable("Unexpected 4-operand DBG_VALUE instruction!"); |
Devang Patel | 90b4041 | 2011-07-08 17:09:57 +0000 | [diff] [blame] | 762 | } |
| 763 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 764 | /// Determine whether two variable pieces overlap. |
| 765 | static bool piecesOverlap(DIExpression P1, DIExpression P2) { |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 766 | if (!P1.isBitPiece() || !P2.isBitPiece()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 767 | return true; |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 768 | unsigned l1 = P1.getBitPieceOffset(); |
| 769 | unsigned l2 = P2.getBitPieceOffset(); |
| 770 | unsigned r1 = l1 + P1.getBitPieceSize(); |
| 771 | unsigned r2 = l2 + P2.getBitPieceSize(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 772 | // True where [l1,r1[ and [r1,r2[ overlap. |
| 773 | return (l1 < r2) && (l2 < r1); |
| 774 | } |
| 775 | |
| 776 | /// Build the location list for all DBG_VALUEs in the function that |
| 777 | /// describe the same variable. If the ranges of several independent |
| 778 | /// pieces of the same variable overlap partially, split them up and |
| 779 | /// combine the ranges. The resulting DebugLocEntries are will have |
| 780 | /// strict monotonically increasing begin addresses and will never |
| 781 | /// overlap. |
| 782 | // |
| 783 | // Input: |
| 784 | // |
| 785 | // Ranges History [var, loc, piece ofs size] |
| 786 | // 0 | [x, (reg0, piece 0, 32)] |
| 787 | // 1 | | [x, (reg1, piece 32, 32)] <- IsPieceOfPrevEntry |
| 788 | // 2 | | ... |
| 789 | // 3 | [clobber reg0] |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 790 | // 4 [x, (mem, piece 0, 64)] <- overlapping with both previous pieces of |
| 791 | // x. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 792 | // |
| 793 | // Output: |
| 794 | // |
| 795 | // [0-1] [x, (reg0, piece 0, 32)] |
| 796 | // [1-3] [x, (reg0, piece 0, 32), (reg1, piece 32, 32)] |
| 797 | // [3-4] [x, (reg1, piece 32, 32)] |
| 798 | // [4- ] [x, (mem, piece 0, 64)] |
| 799 | void |
| 800 | DwarfDebug::buildLocationList(SmallVectorImpl<DebugLocEntry> &DebugLoc, |
| 801 | const DbgValueHistoryMap::InstrRanges &Ranges) { |
| 802 | SmallVector<DebugLocEntry::Value, 4> OpenRanges; |
| 803 | |
| 804 | for (auto I = Ranges.begin(), E = Ranges.end(); I != E; ++I) { |
| 805 | const MachineInstr *Begin = I->first; |
| 806 | const MachineInstr *End = I->second; |
| 807 | assert(Begin->isDebugValue() && "Invalid History entry"); |
| 808 | |
| 809 | // Check if a variable is inaccessible in this range. |
| 810 | if (Begin->getNumOperands() > 1 && |
| 811 | Begin->getOperand(0).isReg() && !Begin->getOperand(0).getReg()) { |
| 812 | OpenRanges.clear(); |
| 813 | continue; |
| 814 | } |
| 815 | |
| 816 | // If this piece overlaps with any open ranges, truncate them. |
| 817 | DIExpression DIExpr = Begin->getDebugExpression(); |
| 818 | auto Last = std::remove_if(OpenRanges.begin(), OpenRanges.end(), |
| 819 | [&](DebugLocEntry::Value R) { |
| 820 | return piecesOverlap(DIExpr, R.getExpression()); |
| 821 | }); |
| 822 | OpenRanges.erase(Last, OpenRanges.end()); |
| 823 | |
| 824 | const MCSymbol *StartLabel = getLabelBeforeInsn(Begin); |
| 825 | assert(StartLabel && "Forgot label before DBG_VALUE starting a range!"); |
| 826 | |
| 827 | const MCSymbol *EndLabel; |
| 828 | if (End != nullptr) |
| 829 | EndLabel = getLabelAfterInsn(End); |
| 830 | else if (std::next(I) == Ranges.end()) |
| 831 | EndLabel = FunctionEndSym; |
| 832 | else |
| 833 | EndLabel = getLabelBeforeInsn(std::next(I)->first); |
| 834 | assert(EndLabel && "Forgot label after instruction ending a range!"); |
| 835 | |
| 836 | DEBUG(dbgs() << "DotDebugLoc: " << *Begin << "\n"); |
| 837 | |
| 838 | auto Value = getDebugLocValue(Begin); |
| 839 | DebugLocEntry Loc(StartLabel, EndLabel, Value); |
| 840 | bool couldMerge = false; |
| 841 | |
| 842 | // If this is a piece, it may belong to the current DebugLocEntry. |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 843 | if (DIExpr.isBitPiece()) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 844 | // Add this value to the list of open ranges. |
| 845 | OpenRanges.push_back(Value); |
| 846 | |
| 847 | // Attempt to add the piece to the last entry. |
| 848 | if (!DebugLoc.empty()) |
| 849 | if (DebugLoc.back().MergeValues(Loc)) |
| 850 | couldMerge = true; |
| 851 | } |
| 852 | |
| 853 | if (!couldMerge) { |
| 854 | // Need to add a new DebugLocEntry. Add all values from still |
| 855 | // valid non-overlapping pieces. |
| 856 | if (OpenRanges.size()) |
| 857 | Loc.addValues(OpenRanges); |
| 858 | |
| 859 | DebugLoc.push_back(std::move(Loc)); |
| 860 | } |
| 861 | |
| 862 | // Attempt to coalesce the ranges of two otherwise identical |
| 863 | // DebugLocEntries. |
| 864 | auto CurEntry = DebugLoc.rbegin(); |
| 865 | auto PrevEntry = std::next(CurEntry); |
| 866 | if (PrevEntry != DebugLoc.rend() && PrevEntry->MergeRanges(*CurEntry)) |
| 867 | DebugLoc.pop_back(); |
| 868 | |
| 869 | DEBUG({ |
| 870 | dbgs() << CurEntry->getValues().size() << " Values:\n"; |
| 871 | for (auto Value : CurEntry->getValues()) { |
| 872 | Value.getVariable()->dump(); |
| 873 | Value.getExpression()->dump(); |
| 874 | } |
| 875 | dbgs() << "-----\n"; |
| 876 | }); |
| 877 | } |
| 878 | } |
| 879 | |
| 880 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 881 | // Find variables for each lexical scope. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 882 | void |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 883 | DwarfDebug::collectVariableInfo(DwarfCompileUnit &TheCU, DISubprogram SP, |
| 884 | SmallPtrSetImpl<const MDNode *> &Processed) { |
Eric Christopher | 4e97645 | 2013-07-03 21:37:03 +0000 | [diff] [blame] | 885 | // Grab the variable info that was squirreled away in the MMI side-table. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 886 | collectVariableInfoFromMMITable(Processed); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 887 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 888 | for (const auto &I : DbgValues) { |
| 889 | DIVariable DV(I.first); |
| 890 | if (Processed.count(DV)) |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 891 | continue; |
| 892 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 893 | // Instruction ranges, specifying where DV is accessible. |
| 894 | const auto &Ranges = I.second; |
| 895 | if (Ranges.empty()) |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 896 | continue; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 897 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 898 | LexicalScope *Scope = nullptr; |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 899 | if (MDNode *IA = DV.getInlinedAt()) |
| 900 | Scope = LScopes.findInlinedScope(DV.getContext(), IA); |
| 901 | else |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 902 | Scope = LScopes.findLexicalScope(DV.getContext()); |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 903 | // If variable scope is not found then skip this variable. |
Devang Patel | c0c5a26 | 2010-05-21 00:10:20 +0000 | [diff] [blame] | 904 | if (!Scope) |
Devang Patel | ee43286 | 2010-05-20 19:57:06 +0000 | [diff] [blame] | 905 | continue; |
| 906 | |
| 907 | Processed.insert(DV); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 908 | const MachineInstr *MInsn = Ranges.front().first; |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 909 | assert(MInsn->isDebugValue() && "History must begin with debug value"); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 910 | ensureAbstractVariableIsCreatedIfScoped(DV, Scope->getScopeNode()); |
| 911 | ConcreteVariables.push_back(make_unique<DbgVariable>(MInsn, this)); |
| 912 | DbgVariable *RegVar = ConcreteVariables.back().get(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 913 | InfoHolder.addScopeVariable(Scope, RegVar); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 914 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 915 | // Check if the first DBG_VALUE is valid for the rest of the function. |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 916 | if (Ranges.size() == 1 && Ranges.front().second == nullptr) |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 917 | continue; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 918 | |
Eric Christopher | 498703b | 2013-01-28 17:33:26 +0000 | [diff] [blame] | 919 | // Handle multiple DBG_VALUE instructions describing one variable. |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 920 | RegVar->setDotDebugLocOffset(DotDebugLocEntries.size()); |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 921 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 922 | DotDebugLocEntries.resize(DotDebugLocEntries.size() + 1); |
| 923 | DebugLocList &LocList = DotDebugLocEntries.back(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 924 | LocList.CU = &TheCU; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 925 | LocList.Label = |
| 926 | Asm->GetTempSymbol("debug_loc", DotDebugLocEntries.size() - 1); |
Jakob Stoklund Olesen | e17232e | 2011-03-22 00:21:41 +0000 | [diff] [blame] | 927 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 928 | // Build the location list for this variable. |
| 929 | buildLocationList(LocList.List, Ranges); |
Devang Patel | 90a48ad | 2010-03-15 18:33:46 +0000 | [diff] [blame] | 930 | } |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 931 | |
| 932 | // Collect info for variables that were optimized out. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 933 | DIArray Variables = SP.getVariables(); |
Devang Patel | 93d39be | 2011-08-19 23:28:12 +0000 | [diff] [blame] | 934 | for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) { |
| 935 | DIVariable DV(Variables.getElement(i)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 936 | assert(DV.isVariable()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 937 | if (!Processed.insert(DV).second) |
Devang Patel | 93d39be | 2011-08-19 23:28:12 +0000 | [diff] [blame] | 938 | continue; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 939 | if (LexicalScope *Scope = LScopes.findLexicalScope(DV.getContext())) { |
| 940 | ensureAbstractVariableIsCreatedIfScoped(DV, Scope->getScopeNode()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 941 | DIExpression NoExpr; |
| 942 | ConcreteVariables.push_back(make_unique<DbgVariable>(DV, NoExpr, this)); |
| 943 | InfoHolder.addScopeVariable(Scope, ConcreteVariables.back().get()); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 944 | } |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 945 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 946 | } |
Devang Patel | 98e1cac | 2010-05-14 21:01:35 +0000 | [diff] [blame] | 947 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 948 | // Return Label preceding the instruction. |
Eric Christopher | 72f7bfb | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 949 | MCSymbol *DwarfDebug::getLabelBeforeInsn(const MachineInstr *MI) { |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 950 | MCSymbol *Label = LabelsBeforeInsn.lookup(MI); |
| 951 | assert(Label && "Didn't insert label before instruction"); |
| 952 | return Label; |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 953 | } |
| 954 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 955 | // Return Label immediately following the instruction. |
Eric Christopher | 72f7bfb | 2013-01-15 23:56:56 +0000 | [diff] [blame] | 956 | MCSymbol *DwarfDebug::getLabelAfterInsn(const MachineInstr *MI) { |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 957 | return LabelsAfterInsn.lookup(MI); |
Devang Patel | e717faa | 2009-10-06 01:26:37 +0000 | [diff] [blame] | 958 | } |
| 959 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 960 | // Process beginning of an instruction. |
Devang Patel | cbbe287 | 2010-10-26 17:49:02 +0000 | [diff] [blame] | 961 | void DwarfDebug::beginInstruction(const MachineInstr *MI) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 962 | assert(CurMI == nullptr); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 963 | CurMI = MI; |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 964 | // Check if source location changes, but ignore DBG_VALUE locations. |
| 965 | if (!MI->isDebugValue()) { |
| 966 | DebugLoc DL = MI->getDebugLoc(); |
| 967 | if (DL != PrevInstLoc && (!DL.isUnknown() || UnknownLocations)) { |
Eric Christopher | 60b35f4 | 2012-04-05 20:39:05 +0000 | [diff] [blame] | 968 | unsigned Flags = 0; |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 969 | PrevInstLoc = DL; |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 970 | if (DL == PrologEndLoc) { |
| 971 | Flags |= DWARF2_FLAG_PROLOGUE_END; |
| 972 | PrologEndLoc = DebugLoc(); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 973 | Flags |= DWARF2_FLAG_IS_STMT; |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 974 | } |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 975 | if (DL.getLine() != |
| 976 | Asm->OutStreamer.getContext().getCurrentDwarfLoc().getLine()) |
Eric Christopher | 60b35f4 | 2012-04-05 20:39:05 +0000 | [diff] [blame] | 977 | Flags |= DWARF2_FLAG_IS_STMT; |
| 978 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 979 | if (!DL.isUnknown()) { |
| 980 | const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext()); |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 981 | recordSourceLine(DL.getLine(), DL.getCol(), Scope, Flags); |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 982 | } else |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 983 | recordSourceLine(0, 0, nullptr, 0); |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 984 | } |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 985 | } |
Devang Patel | aead63c | 2010-03-29 22:59:58 +0000 | [diff] [blame] | 986 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 987 | // Insert labels where requested. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 988 | DenseMap<const MachineInstr *, MCSymbol *>::iterator I = |
| 989 | LabelsBeforeInsn.find(MI); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 990 | |
| 991 | // No label needed. |
| 992 | if (I == LabelsBeforeInsn.end()) |
| 993 | return; |
| 994 | |
| 995 | // Label already assigned. |
| 996 | if (I->second) |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 997 | return; |
Devang Patel | 553881b | 2010-03-29 17:20:31 +0000 | [diff] [blame] | 998 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 999 | if (!PrevLabel) { |
Devang Patel | 77051f5 | 2010-05-26 21:23:46 +0000 | [diff] [blame] | 1000 | PrevLabel = MMI->getContext().CreateTempSymbol(); |
| 1001 | Asm->OutStreamer.EmitLabel(PrevLabel); |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1002 | } |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1003 | I->second = PrevLabel; |
Devang Patel | 0d20ac8 | 2009-10-06 01:50:42 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1006 | // Process end of an instruction. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1007 | void DwarfDebug::endInstruction() { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1008 | assert(CurMI != nullptr); |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1009 | // Don't create a new label after DBG_VALUE instructions. |
| 1010 | // They don't generate code. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1011 | if (!CurMI->isDebugValue()) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1012 | PrevLabel = nullptr; |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1013 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1014 | DenseMap<const MachineInstr *, MCSymbol *>::iterator I = |
| 1015 | LabelsAfterInsn.find(CurMI); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1016 | CurMI = nullptr; |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1017 | |
| 1018 | // No label needed. |
| 1019 | if (I == LabelsAfterInsn.end()) |
| 1020 | return; |
| 1021 | |
| 1022 | // Label already assigned. |
| 1023 | if (I->second) |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1024 | return; |
| 1025 | |
| 1026 | // We need a label after this instruction. |
| 1027 | if (!PrevLabel) { |
| 1028 | PrevLabel = MMI->getContext().CreateTempSymbol(); |
| 1029 | Asm->OutStreamer.EmitLabel(PrevLabel); |
Devang Patel | 1c24635 | 2010-04-08 16:50:29 +0000 | [diff] [blame] | 1030 | } |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1031 | I->second = PrevLabel; |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1032 | } |
| 1033 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1034 | // Each LexicalScope has first instruction and last instruction to mark |
| 1035 | // beginning and end of a scope respectively. Create an inverse map that list |
| 1036 | // scopes starts (and ends) with an instruction. One instruction may start (or |
| 1037 | // end) multiple scopes. Ignore scopes that are not reachable. |
Devang Patel | e37b0c6 | 2010-04-08 18:43:56 +0000 | [diff] [blame] | 1038 | void DwarfDebug::identifyScopeMarkers() { |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1039 | SmallVector<LexicalScope *, 4> WorkList; |
| 1040 | WorkList.push_back(LScopes.getCurrentFunctionScope()); |
Devang Patel | 42aafd7 | 2010-01-20 02:05:23 +0000 | [diff] [blame] | 1041 | while (!WorkList.empty()) { |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1042 | LexicalScope *S = WorkList.pop_back_val(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1043 | |
Craig Topper | 9f43ac6 | 2013-07-03 04:24:43 +0000 | [diff] [blame] | 1044 | const SmallVectorImpl<LexicalScope *> &Children = S->getChildren(); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1045 | if (!Children.empty()) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1046 | WorkList.append(Children.begin(), Children.end()); |
Devang Patel | 42aafd7 | 2010-01-20 02:05:23 +0000 | [diff] [blame] | 1047 | |
Devang Patel | 53bb5c9 | 2009-11-10 23:06:00 +0000 | [diff] [blame] | 1048 | if (S->isAbstractScope()) |
| 1049 | continue; |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1050 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1051 | for (const InsnRange &R : S->getRanges()) { |
| 1052 | assert(R.first && "InsnRange does not have first instruction!"); |
| 1053 | assert(R.second && "InsnRange does not have second instruction!"); |
| 1054 | requestLabelBeforeInsn(R.first); |
| 1055 | requestLabelAfterInsn(R.second); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1056 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1057 | } |
Devang Patel | af9e847 | 2009-10-01 20:31:14 +0000 | [diff] [blame] | 1058 | } |
| 1059 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1060 | static DebugLoc findPrologueEndLoc(const MachineFunction *MF) { |
| 1061 | // First known non-DBG_VALUE and non-frame setup location marks |
| 1062 | // the beginning of the function body. |
| 1063 | for (const auto &MBB : *MF) |
| 1064 | for (const auto &MI : MBB) |
| 1065 | if (!MI.isDebugValue() && !MI.getFlag(MachineInstr::FrameSetup) && |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1066 | !MI.getDebugLoc().isUnknown()) { |
| 1067 | // Did the target forget to set the FrameSetup flag for CFI insns? |
| 1068 | assert(!MI.isCFIInstruction() && |
| 1069 | "First non-frame-setup instruction is a CFI instruction."); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1070 | return MI.getDebugLoc(); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1071 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1072 | return DebugLoc(); |
| 1073 | } |
| 1074 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1075 | // Gather pre-function debug information. Assumes being called immediately |
| 1076 | // after the function entry point has been emitted. |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 1077 | void DwarfDebug::beginFunction(const MachineFunction *MF) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1078 | CurFn = MF; |
Eric Christopher | 31ed50c | 2013-11-01 23:14:17 +0000 | [diff] [blame] | 1079 | |
| 1080 | // If there's no debug info for the function we're not going to do anything. |
| 1081 | if (!MMI->hasDebugInfo()) |
| 1082 | return; |
| 1083 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1084 | auto DI = FunctionDIs.find(MF->getFunction()); |
| 1085 | if (DI == FunctionDIs.end()) |
| 1086 | return; |
| 1087 | |
Eric Christopher | 31ed50c | 2013-11-01 23:14:17 +0000 | [diff] [blame] | 1088 | // Grab the lexical scopes for the function, if we don't have any of those |
| 1089 | // then we're not going to be able to do anything. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1090 | LScopes.initialize(*MF); |
Eric Christopher | 31ed50c | 2013-11-01 23:14:17 +0000 | [diff] [blame] | 1091 | if (LScopes.empty()) |
| 1092 | return; |
| 1093 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1094 | assert(DbgValues.empty() && "DbgValues map wasn't cleaned!"); |
Eric Christopher | 31ed50c | 2013-11-01 23:14:17 +0000 | [diff] [blame] | 1095 | |
| 1096 | // Make sure that each lexical scope will have a begin/end label. |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1097 | identifyScopeMarkers(); |
Devang Patel | 60b35bd | 2009-10-06 18:37:31 +0000 | [diff] [blame] | 1098 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1099 | // Set DwarfDwarfCompileUnitID in MCContext to the Compile Unit this function |
Eric Christopher | 31ed50c | 2013-11-01 23:14:17 +0000 | [diff] [blame] | 1100 | // belongs to so that we add to the correct per-cu line table in the |
| 1101 | // non-asm case. |
Manman Ren | 43213cf | 2013-02-05 21:52:47 +0000 | [diff] [blame] | 1102 | LexicalScope *FnScope = LScopes.getCurrentFunctionScope(); |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1103 | // FnScope->getScopeNode() and DI->second should represent the same function, |
| 1104 | // though they may not be the same MDNode due to inline functions merged in |
| 1105 | // LTO where the debug info metadata still differs (either due to distinct |
| 1106 | // written differences - two versions of a linkonce_odr function |
| 1107 | // written/copied into two separate files, or some sub-optimal metadata that |
| 1108 | // isn't structurally identical (see: file path/name info from clang, which |
| 1109 | // includes the directory of the cpp file being built, even when the file name |
| 1110 | // is absolute (such as an <> lookup header))) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1111 | DwarfCompileUnit *TheCU = SPMap.lookup(FnScope->getScopeNode()); |
Manman Ren | 43213cf | 2013-02-05 21:52:47 +0000 | [diff] [blame] | 1112 | assert(TheCU && "Unable to find compile unit!"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1113 | if (Asm->OutStreamer.hasRawTextSupport()) |
| 1114 | // Use a single line table if we are generating assembly. |
Manman Ren | 01cb18e | 2013-05-21 00:57:22 +0000 | [diff] [blame] | 1115 | Asm->OutStreamer.getContext().setDwarfCompileUnitID(0); |
| 1116 | else |
| 1117 | Asm->OutStreamer.getContext().setDwarfCompileUnitID(TheCU->getUniqueID()); |
Manman Ren | 43213cf | 2013-02-05 21:52:47 +0000 | [diff] [blame] | 1118 | |
Eric Christopher | 31ed50c | 2013-11-01 23:14:17 +0000 | [diff] [blame] | 1119 | // Emit a label for the function so that we have a beginning address. |
| 1120 | FunctionBeginSym = Asm->GetTempSymbol("func_begin", Asm->getFunctionNumber()); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1121 | // Assumes in correct section after the entry point. |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1122 | Asm->OutStreamer.EmitLabel(FunctionBeginSym); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1123 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1124 | // Calculate history for local variables. |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1125 | calculateDbgValueHistory(MF, Asm->MF->getSubtarget().getRegisterInfo(), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1126 | DbgValues); |
Jakob Stoklund Olesen | 28cf115 | 2011-03-22 22:33:08 +0000 | [diff] [blame] | 1127 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1128 | // Request labels for the full history. |
| 1129 | for (const auto &I : DbgValues) { |
| 1130 | const auto &Ranges = I.second; |
| 1131 | if (Ranges.empty()) |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1132 | continue; |
| 1133 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1134 | // The first mention of a function argument gets the FunctionBeginSym |
| 1135 | // label, so arguments are visible when breaking at function entry. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1136 | DIVariable DIVar(Ranges.front().first->getDebugVariable()); |
| 1137 | if (DIVar.isVariable() && DIVar.getTag() == dwarf::DW_TAG_arg_variable && |
| 1138 | getDISubprogram(DIVar.getContext()).describes(MF->getFunction())) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1139 | LabelsBeforeInsn[Ranges.front().first] = FunctionBeginSym; |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1140 | if (Ranges.front().first->getDebugExpression().isBitPiece()) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1141 | // Mark all non-overlapping initial pieces. |
| 1142 | for (auto I = Ranges.begin(); I != Ranges.end(); ++I) { |
| 1143 | DIExpression Piece = I->first->getDebugExpression(); |
| 1144 | if (std::all_of(Ranges.begin(), I, |
| 1145 | [&](DbgValueHistoryMap::InstrRange Pred) { |
| 1146 | return !piecesOverlap(Piece, Pred.first->getDebugExpression()); |
| 1147 | })) |
| 1148 | LabelsBeforeInsn[I->first] = FunctionBeginSym; |
| 1149 | else |
| 1150 | break; |
| 1151 | } |
| 1152 | } |
| 1153 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1154 | |
| 1155 | for (const auto &Range : Ranges) { |
| 1156 | requestLabelBeforeInsn(Range.first); |
| 1157 | if (Range.second) |
| 1158 | requestLabelAfterInsn(Range.second); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1159 | } |
| 1160 | } |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1161 | |
Jakob Stoklund Olesen | 15a3ea0 | 2011-03-25 17:20:59 +0000 | [diff] [blame] | 1162 | PrevInstLoc = DebugLoc(); |
Devang Patel | b2b31a6 | 2010-05-26 19:37:24 +0000 | [diff] [blame] | 1163 | PrevLabel = FunctionBeginSym; |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1164 | |
| 1165 | // Record beginning of function. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1166 | PrologEndLoc = findPrologueEndLoc(MF); |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1167 | if (!PrologEndLoc.isUnknown()) { |
Eric Christopher | 31ed50c | 2013-11-01 23:14:17 +0000 | [diff] [blame] | 1168 | DebugLoc FnStartDL = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1169 | PrologEndLoc.getFnDebugLoc(MF->getFunction()->getContext()); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1170 | |
| 1171 | // We'd like to list the prologue as "not statements" but GDB behaves |
| 1172 | // poorly if we do that. Revisit this with caution/GDB (7.5+) testing. |
| 1173 | recordSourceLine(FnStartDL.getLine(), FnStartDL.getCol(), |
| 1174 | FnStartDL.getScope(MF->getFunction()->getContext()), |
| 1175 | DWARF2_FLAG_IS_STMT); |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1176 | } |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1177 | } |
| 1178 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1179 | // Gather and emit post-function debug information. |
Chris Lattner | eec791a | 2010-01-26 23:18:02 +0000 | [diff] [blame] | 1180 | void DwarfDebug::endFunction(const MachineFunction *MF) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1181 | assert(CurFn == MF && |
| 1182 | "endFunction should be called with the same function as beginFunction"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1183 | |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1184 | if (!MMI->hasDebugInfo() || LScopes.empty() || |
| 1185 | !FunctionDIs.count(MF->getFunction())) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1186 | // If we don't have a lexical scope for this function then there will |
| 1187 | // be a hole in the range information. Keep note of this by setting the |
| 1188 | // previously used section to nullptr. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1189 | PrevCU = nullptr; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1190 | CurFn = nullptr; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1191 | return; |
| 1192 | } |
Devang Patel | 70d75ca | 2009-11-12 19:02:56 +0000 | [diff] [blame] | 1193 | |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1194 | // Define end label for subprogram. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1195 | FunctionEndSym = Asm->GetTempSymbol("func_end", Asm->getFunctionNumber()); |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1196 | // Assumes in correct section after the entry point. |
| 1197 | Asm->OutStreamer.EmitLabel(FunctionEndSym); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1198 | |
| 1199 | // Set DwarfDwarfCompileUnitID in MCContext to default value. |
Manman Ren | 43213cf | 2013-02-05 21:52:47 +0000 | [diff] [blame] | 1200 | Asm->OutStreamer.getContext().setDwarfCompileUnitID(0); |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 1201 | |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 1202 | LexicalScope *FnScope = LScopes.getCurrentFunctionScope(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1203 | DISubprogram SP(FnScope->getScopeNode()); |
| 1204 | DwarfCompileUnit &TheCU = *SPMap.lookup(SP); |
Devang Patel | d0b5a5e | 2011-08-15 22:04:40 +0000 | [diff] [blame] | 1205 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1206 | SmallPtrSet<const MDNode *, 16> ProcessedVars; |
| 1207 | collectVariableInfo(TheCU, SP, ProcessedVars); |
| 1208 | |
| 1209 | // Add the range of this function to the list of ranges for the CU. |
| 1210 | TheCU.addRange(RangeSpan(FunctionBeginSym, FunctionEndSym)); |
| 1211 | |
| 1212 | // Under -gmlt, skip building the subprogram if there are no inlined |
| 1213 | // subroutines inside it. |
| 1214 | if (TheCU.getCUNode().getEmissionKind() == DIBuilder::LineTablesOnly && |
| 1215 | LScopes.getAbstractScopesList().empty() && !IsDarwin) { |
| 1216 | assert(InfoHolder.getScopeVariables().empty()); |
| 1217 | assert(DbgValues.empty()); |
| 1218 | // FIXME: This wouldn't be true in LTO with a -g (with inlining) CU followed |
| 1219 | // by a -gmlt CU. Add a test and remove this assertion. |
| 1220 | assert(AbstractVariables.empty()); |
| 1221 | LabelsBeforeInsn.clear(); |
| 1222 | LabelsAfterInsn.clear(); |
| 1223 | PrevLabel = nullptr; |
| 1224 | CurFn = nullptr; |
| 1225 | return; |
| 1226 | } |
| 1227 | |
| 1228 | #ifndef NDEBUG |
| 1229 | size_t NumAbstractScopes = LScopes.getAbstractScopesList().size(); |
| 1230 | #endif |
Devang Patel | bf47fdb | 2011-08-10 20:55:27 +0000 | [diff] [blame] | 1231 | // Construct abstract scopes. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1232 | for (LexicalScope *AScope : LScopes.getAbstractScopesList()) { |
Devang Patel | cd9f6c5 | 2011-08-12 18:10:19 +0000 | [diff] [blame] | 1233 | DISubprogram SP(AScope->getScopeNode()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1234 | assert(SP.isSubprogram()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1235 | // Collect info for variables that were optimized out. |
| 1236 | DIArray Variables = SP.getVariables(); |
| 1237 | for (unsigned i = 0, e = Variables.getNumElements(); i != e; ++i) { |
| 1238 | DIVariable DV(Variables.getElement(i)); |
| 1239 | assert(DV && DV.isVariable()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1240 | if (!ProcessedVars.insert(DV).second) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1241 | continue; |
Stephen Hines | c6a4f5e | 2014-07-21 00:45:20 -0700 | [diff] [blame] | 1242 | ensureAbstractVariableIsCreated(DV, DV.getContext()); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1243 | assert(LScopes.getAbstractScopesList().size() == NumAbstractScopes |
| 1244 | && "ensureAbstractVariableIsCreated inserted abstract scopes"); |
Devang Patel | 78e127d | 2010-06-25 22:07:34 +0000 | [diff] [blame] | 1245 | } |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1246 | constructAbstractSubprogramScopeDIE(AScope); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1247 | } |
Eric Christopher | 0f1c7f6 | 2012-11-19 22:42:10 +0000 | [diff] [blame] | 1248 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1249 | TheCU.constructSubprogramScopeDIE(FnScope); |
| 1250 | if (auto *SkelCU = TheCU.getSkeleton()) |
| 1251 | if (!LScopes.getAbstractScopesList().empty()) |
| 1252 | SkelCU->constructSubprogramScopeDIE(FnScope); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1253 | |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1254 | // Clear debug info |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1255 | // Ownership of DbgVariables is a bit subtle - ScopeVariables owns all the |
| 1256 | // DbgVariables except those that are also in AbstractVariables (since they |
| 1257 | // can be used cross-function) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1258 | InfoHolder.getScopeVariables().clear(); |
Jakob Stoklund Olesen | adb877d | 2011-03-26 02:19:36 +0000 | [diff] [blame] | 1259 | DbgValues.clear(); |
Devang Patel | eac9c07 | 2010-04-27 19:46:33 +0000 | [diff] [blame] | 1260 | LabelsBeforeInsn.clear(); |
| 1261 | LabelsAfterInsn.clear(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1262 | PrevLabel = nullptr; |
| 1263 | CurFn = nullptr; |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1264 | } |
| 1265 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1266 | // Register a source line with debug info. Returns the unique label that was |
| 1267 | // emitted and which provides correspondence to the source line list. |
Devang Patel | 4243e67 | 2011-05-11 19:22:19 +0000 | [diff] [blame] | 1268 | void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S, |
| 1269 | unsigned Flags) { |
Devang Patel | 65dbc90 | 2009-11-25 17:36:49 +0000 | [diff] [blame] | 1270 | StringRef Fn; |
Devang Patel | 23670e5 | 2011-03-24 20:30:50 +0000 | [diff] [blame] | 1271 | StringRef Dir; |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1272 | unsigned Src = 1; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1273 | unsigned Discriminator = 0; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1274 | if (DIScope Scope = DIScope(S)) { |
| 1275 | assert(Scope.isScope()); |
| 1276 | Fn = Scope.getFilename(); |
| 1277 | Dir = Scope.getDirectory(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1278 | if (Scope.isLexicalBlockFile()) |
| 1279 | Discriminator = DILexicalBlockFile(S).getDiscriminator(); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1280 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1281 | unsigned CUID = Asm->OutStreamer.getContext().getDwarfCompileUnitID(); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1282 | Src = static_cast<DwarfCompileUnit &>(*InfoHolder.getUnits()[CUID]) |
| 1283 | .getOrCreateSourceID(Fn, Dir); |
Dan Gohman | 1cc0d62 | 2010-05-05 23:41:32 +0000 | [diff] [blame] | 1284 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1285 | Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0, |
| 1286 | Discriminator, Fn); |
Bill Wendling | f0fb987 | 2009-05-20 23:19:06 +0000 | [diff] [blame] | 1287 | } |
| 1288 | |
Bill Wendling | 829e67b | 2009-05-20 23:22:40 +0000 | [diff] [blame] | 1289 | //===----------------------------------------------------------------------===// |
| 1290 | // Emit Methods |
| 1291 | //===----------------------------------------------------------------------===// |
| 1292 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1293 | // Emit initial Dwarf sections with a label at the start of each one. |
Eric Christopher | 7ee5f5d | 2012-11-21 00:34:35 +0000 | [diff] [blame] | 1294 | void DwarfDebug::emitSectionLabels() { |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1295 | const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); |
Daniel Dunbar | f612ff6 | 2009-09-19 20:40:05 +0000 | [diff] [blame] | 1296 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1297 | // Dwarf sections base addresses. |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1298 | DwarfInfoSectionSym = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1299 | emitSectionSym(Asm, TLOF.getDwarfInfoSection(), "section_info"); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1300 | if (useSplitDwarf()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1301 | DwarfInfoDWOSectionSym = |
| 1302 | emitSectionSym(Asm, TLOF.getDwarfInfoDWOSection(), "section_info_dwo"); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1303 | DwarfTypesDWOSectionSym = emitSectionSym( |
| 1304 | Asm, TLOF.getDwarfTypesDWOSection(), "section_types_dwo"); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1305 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1306 | DwarfAbbrevSectionSym = |
| 1307 | emitSectionSym(Asm, TLOF.getDwarfAbbrevSection(), "section_abbrev"); |
| 1308 | if (useSplitDwarf()) |
| 1309 | DwarfAbbrevDWOSectionSym = emitSectionSym( |
| 1310 | Asm, TLOF.getDwarfAbbrevDWOSection(), "section_abbrev_dwo"); |
| 1311 | if (GenerateARangeSection) |
| 1312 | emitSectionSym(Asm, TLOF.getDwarfARangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1313 | |
Eric Christopher | 7a0103c | 2013-02-07 21:19:50 +0000 | [diff] [blame] | 1314 | DwarfLineSectionSym = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1315 | emitSectionSym(Asm, TLOF.getDwarfLineSection(), "section_line"); |
Eric Christopher | cdeaae4 | 2013-09-23 20:55:35 +0000 | [diff] [blame] | 1316 | if (GenerateGnuPubSections) { |
Eric Christopher | a6d8415 | 2013-09-30 23:14:16 +0000 | [diff] [blame] | 1317 | DwarfGnuPubNamesSectionSym = |
| 1318 | emitSectionSym(Asm, TLOF.getDwarfGnuPubNamesSection()); |
| 1319 | DwarfGnuPubTypesSectionSym = |
| 1320 | emitSectionSym(Asm, TLOF.getDwarfGnuPubTypesSection()); |
Eric Christopher | cdeaae4 | 2013-09-23 20:55:35 +0000 | [diff] [blame] | 1321 | } else if (HasDwarfPubSections) { |
| 1322 | emitSectionSym(Asm, TLOF.getDwarfPubNamesSection()); |
| 1323 | emitSectionSym(Asm, TLOF.getDwarfPubTypesSection()); |
Michael Gottesman | dc42d03 | 2013-09-04 04:39:38 +0000 | [diff] [blame] | 1324 | } |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1325 | |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1326 | DwarfStrSectionSym = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1327 | emitSectionSym(Asm, TLOF.getDwarfStrSection(), "info_string"); |
Eric Christopher | 9a9e73b | 2013-04-07 03:43:09 +0000 | [diff] [blame] | 1328 | if (useSplitDwarf()) { |
Eric Christopher | 64f824c | 2012-12-27 02:14:01 +0000 | [diff] [blame] | 1329 | DwarfStrDWOSectionSym = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1330 | emitSectionSym(Asm, TLOF.getDwarfStrDWOSection(), "skel_string"); |
Eric Christopher | 9a9e73b | 2013-04-07 03:43:09 +0000 | [diff] [blame] | 1331 | DwarfAddrSectionSym = |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1332 | emitSectionSym(Asm, TLOF.getDwarfAddrSection(), "addr_sec"); |
| 1333 | DwarfDebugLocSectionSym = |
| 1334 | emitSectionSym(Asm, TLOF.getDwarfLocDWOSection(), "skel_loc"); |
| 1335 | } else |
| 1336 | DwarfDebugLocSectionSym = |
| 1337 | emitSectionSym(Asm, TLOF.getDwarfLocSection(), "section_debug_loc"); |
| 1338 | DwarfDebugRangeSectionSym = |
| 1339 | emitSectionSym(Asm, TLOF.getDwarfRangesSection(), "debug_range"); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1342 | // Recursively emits a debug information entry. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1343 | void DwarfDebug::emitDIE(DIE &Die) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1344 | // Get the abbreviation for this DIE. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1345 | const DIEAbbrev &Abbrev = Die.getAbbrev(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1346 | |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1347 | // Emit the code (index) for the abbreviation. |
Chris Lattner | 3f53c83 | 2010-04-04 18:52:31 +0000 | [diff] [blame] | 1348 | if (Asm->isVerbose()) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1349 | Asm->OutStreamer.AddComment("Abbrev [" + Twine(Abbrev.getNumber()) + |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1350 | "] 0x" + Twine::utohexstr(Die.getOffset()) + |
| 1351 | ":0x" + Twine::utohexstr(Die.getSize()) + " " + |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1352 | dwarf::TagString(Abbrev.getTag())); |
| 1353 | Asm->EmitULEB128(Abbrev.getNumber()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1354 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1355 | const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1356 | const SmallVectorImpl<DIEAbbrevData> &AbbrevData = Abbrev.getData(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1357 | |
| 1358 | // Emit the DIE attribute values. |
| 1359 | for (unsigned i = 0, N = Values.size(); i < N; ++i) { |
David Blaikie | 770530b | 2013-10-21 17:28:37 +0000 | [diff] [blame] | 1360 | dwarf::Attribute Attr = AbbrevData[i].getAttribute(); |
| 1361 | dwarf::Form Form = AbbrevData[i].getForm(); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1362 | assert(Form && "Too many attributes for DIE (check abbreviation)"); |
| 1363 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1364 | if (Asm->isVerbose()) { |
Chris Lattner | a801362 | 2010-01-24 18:54:17 +0000 | [diff] [blame] | 1365 | Asm->OutStreamer.AddComment(dwarf::AttributeString(Attr)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1366 | if (Attr == dwarf::DW_AT_accessibility) |
| 1367 | Asm->OutStreamer.AddComment(dwarf::AccessibilityString( |
| 1368 | cast<DIEInteger>(Values[i])->getValue())); |
| 1369 | } |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1370 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1371 | // Emit an attribute using the defined form. |
| 1372 | Values[i]->EmitValue(Asm, Form); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1373 | } |
| 1374 | |
| 1375 | // Emit the DIE children if any. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1376 | if (Abbrev.hasChildren()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1377 | for (auto &Child : Die.getChildren()) |
| 1378 | emitDIE(*Child); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1379 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1380 | Asm->OutStreamer.AddComment("End Of Children Mark"); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1381 | Asm->EmitInt8(0); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1382 | } |
| 1383 | } |
| 1384 | |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 1385 | // Emit the debug info section. |
| 1386 | void DwarfDebug::emitDebugInfo() { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1387 | DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; |
Eric Christopher | b1e66d0 | 2012-12-15 00:04:07 +0000 | [diff] [blame] | 1388 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1389 | Holder.emitUnits(DwarfAbbrevSectionSym); |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 1390 | } |
| 1391 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1392 | // Emit the abbreviation section. |
Eric Christopher | 7dc68db | 2012-11-20 23:30:11 +0000 | [diff] [blame] | 1393 | void DwarfDebug::emitAbbreviations() { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1394 | DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; |
| 1395 | |
| 1396 | Holder.emitAbbrevs(Asm->getObjFileLowering().getDwarfAbbrevSection()); |
Eric Christopher | 6eebe47 | 2012-12-19 22:02:53 +0000 | [diff] [blame] | 1397 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1398 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1399 | // Emit the last address of the section and the end of the line matrix. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1400 | void DwarfDebug::emitEndOfLineMatrix(unsigned SectionEnd) { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1401 | // Define last address of section. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1402 | Asm->OutStreamer.AddComment("Extended Op"); |
| 1403 | Asm->EmitInt8(0); |
Jim Grosbach | 1e20b96 | 2010-07-21 21:21:52 +0000 | [diff] [blame] | 1404 | |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1405 | Asm->OutStreamer.AddComment("Op size"); |
Chandler Carruth | 426c2bf | 2012-11-01 09:14:31 +0000 | [diff] [blame] | 1406 | Asm->EmitInt8(Asm->getDataLayout().getPointerSize() + 1); |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1407 | Asm->OutStreamer.AddComment("DW_LNE_set_address"); |
| 1408 | Asm->EmitInt8(dwarf::DW_LNE_set_address); |
| 1409 | |
| 1410 | Asm->OutStreamer.AddComment("Section end label"); |
Chris Lattner | d85fc6e | 2010-03-10 01:17:49 +0000 | [diff] [blame] | 1411 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1412 | Asm->OutStreamer.EmitSymbolValue( |
| 1413 | Asm->GetTempSymbol("section_end", SectionEnd), |
| 1414 | Asm->getDataLayout().getPointerSize()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1415 | |
| 1416 | // Mark end of matrix. |
Chris Lattner | 233f52b | 2010-03-09 23:52:58 +0000 | [diff] [blame] | 1417 | Asm->OutStreamer.AddComment("DW_LNE_end_sequence"); |
| 1418 | Asm->EmitInt8(0); |
Chris Lattner | 0ad9c91 | 2010-01-22 22:09:00 +0000 | [diff] [blame] | 1419 | Asm->EmitInt8(1); |
Chris Lattner | 894d75a | 2010-01-22 23:18:42 +0000 | [diff] [blame] | 1420 | Asm->EmitInt8(1); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1421 | } |
| 1422 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1423 | void DwarfDebug::emitAccel(DwarfAccelTable &Accel, const MCSection *Section, |
| 1424 | StringRef TableName, StringRef SymName) { |
| 1425 | Accel.FinalizeTable(Asm, TableName); |
| 1426 | Asm->OutStreamer.SwitchSection(Section); |
| 1427 | auto *SectionBegin = Asm->GetTempSymbol(SymName); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1428 | Asm->OutStreamer.EmitLabel(SectionBegin); |
| 1429 | |
| 1430 | // Emit the full data. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1431 | Accel.Emit(Asm, SectionBegin, this, DwarfStrSectionSym); |
| 1432 | } |
| 1433 | |
| 1434 | // Emit visible names into a hashed accelerator table section. |
| 1435 | void DwarfDebug::emitAccelNames() { |
| 1436 | emitAccel(AccelNames, Asm->getObjFileLowering().getDwarfAccelNamesSection(), |
| 1437 | "Names", "names_begin"); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1438 | } |
| 1439 | |
Eric Christopher | 72c1655 | 2012-12-20 21:58:40 +0000 | [diff] [blame] | 1440 | // Emit objective C classes and categories into a hashed accelerator table |
| 1441 | // section. |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1442 | void DwarfDebug::emitAccelObjC() { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1443 | emitAccel(AccelObjC, Asm->getObjFileLowering().getDwarfAccelObjCSection(), |
| 1444 | "ObjC", "objc_begin"); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1445 | } |
| 1446 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1447 | // Emit namespace dies into a hashed accelerator table. |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1448 | void DwarfDebug::emitAccelNamespaces() { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1449 | emitAccel(AccelNamespace, |
| 1450 | Asm->getObjFileLowering().getDwarfAccelNamespaceSection(), |
| 1451 | "namespac", "namespac_begin"); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1452 | } |
| 1453 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1454 | // Emit type dies into a hashed accelerator table. |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1455 | void DwarfDebug::emitAccelTypes() { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1456 | emitAccel(AccelTypes, Asm->getObjFileLowering().getDwarfAccelTypesSection(), |
| 1457 | "types", "types_begin"); |
Eric Christopher | 09ac3d8 | 2011-11-07 09:24:32 +0000 | [diff] [blame] | 1458 | } |
| 1459 | |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1460 | // Public name handling. |
| 1461 | // The format for the various pubnames: |
| 1462 | // |
| 1463 | // dwarf pubnames - offset/name pairs where the offset is the offset into the CU |
| 1464 | // for the DIE that is named. |
| 1465 | // |
| 1466 | // gnu pubnames - offset/index value/name tuples where the offset is the offset |
| 1467 | // into the CU and the index value is computed according to the type of value |
| 1468 | // for the DIE that is named. |
| 1469 | // |
| 1470 | // For type units the offset is the offset of the skeleton DIE. For split dwarf |
| 1471 | // it's the offset within the debug_info/debug_types dwo section, however, the |
| 1472 | // reference in the pubname header doesn't change. |
| 1473 | |
| 1474 | /// computeIndexValue - Compute the gdb index value for the DIE and CU. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1475 | static dwarf::PubIndexEntryDescriptor computeIndexValue(DwarfUnit *CU, |
| 1476 | const DIE *Die) { |
Eric Christopher | a486f55 | 2013-10-16 01:37:49 +0000 | [diff] [blame] | 1477 | dwarf::GDBIndexEntryLinkage Linkage = dwarf::GIEL_STATIC; |
| 1478 | |
| 1479 | // We could have a specification DIE that has our most of our knowledge, |
| 1480 | // look for that now. |
| 1481 | DIEValue *SpecVal = Die->findAttribute(dwarf::DW_AT_specification); |
| 1482 | if (SpecVal) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1483 | DIE &SpecDIE = cast<DIEEntry>(SpecVal)->getEntry(); |
| 1484 | if (SpecDIE.findAttribute(dwarf::DW_AT_external)) |
Eric Christopher | a486f55 | 2013-10-16 01:37:49 +0000 | [diff] [blame] | 1485 | Linkage = dwarf::GIEL_EXTERNAL; |
| 1486 | } else if (Die->findAttribute(dwarf::DW_AT_external)) |
| 1487 | Linkage = dwarf::GIEL_EXTERNAL; |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1488 | |
| 1489 | switch (Die->getTag()) { |
| 1490 | case dwarf::DW_TAG_class_type: |
| 1491 | case dwarf::DW_TAG_structure_type: |
| 1492 | case dwarf::DW_TAG_union_type: |
| 1493 | case dwarf::DW_TAG_enumeration_type: |
Eric Christopher | cdeaae4 | 2013-09-23 20:55:35 +0000 | [diff] [blame] | 1494 | return dwarf::PubIndexEntryDescriptor( |
| 1495 | dwarf::GIEK_TYPE, CU->getLanguage() != dwarf::DW_LANG_C_plus_plus |
| 1496 | ? dwarf::GIEL_STATIC |
| 1497 | : dwarf::GIEL_EXTERNAL); |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1498 | case dwarf::DW_TAG_typedef: |
| 1499 | case dwarf::DW_TAG_base_type: |
| 1500 | case dwarf::DW_TAG_subrange_type: |
David Blaikie | 9599f51 | 2013-09-19 20:40:26 +0000 | [diff] [blame] | 1501 | return dwarf::PubIndexEntryDescriptor(dwarf::GIEK_TYPE, dwarf::GIEL_STATIC); |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1502 | case dwarf::DW_TAG_namespace: |
David Blaikie | 9599f51 | 2013-09-19 20:40:26 +0000 | [diff] [blame] | 1503 | return dwarf::GIEK_TYPE; |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1504 | case dwarf::DW_TAG_subprogram: |
Eric Christopher | a31a975 | 2013-09-23 22:59:14 +0000 | [diff] [blame] | 1505 | return dwarf::PubIndexEntryDescriptor(dwarf::GIEK_FUNCTION, Linkage); |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1506 | case dwarf::DW_TAG_variable: |
Eric Christopher | a31a975 | 2013-09-23 22:59:14 +0000 | [diff] [blame] | 1507 | return dwarf::PubIndexEntryDescriptor(dwarf::GIEK_VARIABLE, Linkage); |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1508 | case dwarf::DW_TAG_enumerator: |
David Blaikie | 9599f51 | 2013-09-19 20:40:26 +0000 | [diff] [blame] | 1509 | return dwarf::PubIndexEntryDescriptor(dwarf::GIEK_VARIABLE, |
| 1510 | dwarf::GIEL_STATIC); |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1511 | default: |
David Blaikie | 9599f51 | 2013-09-19 20:40:26 +0000 | [diff] [blame] | 1512 | return dwarf::GIEK_NONE; |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1513 | } |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1514 | } |
| 1515 | |
Eric Christopher | 5747932 | 2013-09-09 20:03:17 +0000 | [diff] [blame] | 1516 | /// emitDebugPubNames - Emit visible names into a debug pubnames section. |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1517 | /// |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1518 | void DwarfDebug::emitDebugPubNames(bool GnuStyle) { |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1519 | const MCSection *PSec = |
| 1520 | GnuStyle ? Asm->getObjFileLowering().getDwarfGnuPubNamesSection() |
| 1521 | : Asm->getObjFileLowering().getDwarfPubNamesSection(); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1522 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1523 | emitDebugPubSection(GnuStyle, PSec, "Names", |
| 1524 | &DwarfCompileUnit::getGlobalNames); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1525 | } |
| 1526 | |
| 1527 | void DwarfDebug::emitDebugPubSection( |
| 1528 | bool GnuStyle, const MCSection *PSec, StringRef Name, |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1529 | const StringMap<const DIE *> &(DwarfCompileUnit::*Accessor)() const) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1530 | for (const auto &NU : CUMap) { |
| 1531 | DwarfCompileUnit *TheU = NU.second; |
| 1532 | |
| 1533 | const auto &Globals = (TheU->*Accessor)(); |
| 1534 | |
| 1535 | if (Globals.empty()) |
| 1536 | continue; |
| 1537 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1538 | if (auto *Skeleton = TheU->getSkeleton()) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1539 | TheU = Skeleton; |
| 1540 | unsigned ID = TheU->getUniqueID(); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1541 | |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1542 | // Start the dwarf pubnames section. |
Eric Christopher | 21a6a50 | 2013-09-10 21:49:37 +0000 | [diff] [blame] | 1543 | Asm->OutStreamer.SwitchSection(PSec); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1544 | |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1545 | // Emit the header. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1546 | Asm->OutStreamer.AddComment("Length of Public " + Name + " Info"); |
| 1547 | MCSymbol *BeginLabel = Asm->GetTempSymbol("pub" + Name + "_begin", ID); |
| 1548 | MCSymbol *EndLabel = Asm->GetTempSymbol("pub" + Name + "_end", ID); |
| 1549 | Asm->EmitLabelDifference(EndLabel, BeginLabel, 4); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1550 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1551 | Asm->OutStreamer.EmitLabel(BeginLabel); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1552 | |
| 1553 | Asm->OutStreamer.AddComment("DWARF Version"); |
David Majnemer | d7d43dc | 2013-08-21 06:13:34 +0000 | [diff] [blame] | 1554 | Asm->EmitInt16(dwarf::DW_PUBNAMES_VERSION); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1555 | |
| 1556 | Asm->OutStreamer.AddComment("Offset of Compilation Unit Info"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1557 | Asm->EmitSectionOffset(TheU->getLabelBegin(), TheU->getSectionSym()); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1558 | |
| 1559 | Asm->OutStreamer.AddComment("Compilation Unit Length"); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1560 | Asm->EmitInt32(TheU->getLength()); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1561 | |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1562 | // Emit the pubnames for this compilation unit. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1563 | for (const auto &GI : Globals) { |
| 1564 | const char *Name = GI.getKeyData(); |
| 1565 | const DIE *Entity = GI.second; |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1566 | |
| 1567 | Asm->OutStreamer.AddComment("DIE offset"); |
| 1568 | Asm->EmitInt32(Entity->getOffset()); |
| 1569 | |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1570 | if (GnuStyle) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1571 | dwarf::PubIndexEntryDescriptor Desc = computeIndexValue(TheU, Entity); |
David Blaikie | 18a6ade | 2013-09-19 22:19:37 +0000 | [diff] [blame] | 1572 | Asm->OutStreamer.AddComment( |
David Blaikie | ac3f016 | 2013-09-20 00:33:15 +0000 | [diff] [blame] | 1573 | Twine("Kind: ") + dwarf::GDBIndexEntryKindString(Desc.Kind) + ", " + |
David Blaikie | 994c37f | 2013-09-19 23:01:29 +0000 | [diff] [blame] | 1574 | dwarf::GDBIndexEntryLinkageString(Desc.Linkage)); |
David Blaikie | 18a6ade | 2013-09-19 22:19:37 +0000 | [diff] [blame] | 1575 | Asm->EmitInt8(Desc.toBits()); |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1576 | } |
| 1577 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1578 | Asm->OutStreamer.AddComment("External Name"); |
| 1579 | Asm->OutStreamer.EmitBytes(StringRef(Name, GI.getKeyLength() + 1)); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1580 | } |
| 1581 | |
| 1582 | Asm->OutStreamer.AddComment("End Mark"); |
| 1583 | Asm->EmitInt32(0); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1584 | Asm->OutStreamer.EmitLabel(EndLabel); |
Krzysztof Parzyszek | c5ef7ee | 2013-02-12 18:00:14 +0000 | [diff] [blame] | 1585 | } |
| 1586 | } |
| 1587 | |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1588 | void DwarfDebug::emitDebugPubTypes(bool GnuStyle) { |
Eric Christopher | cdeaae4 | 2013-09-23 20:55:35 +0000 | [diff] [blame] | 1589 | const MCSection *PSec = |
| 1590 | GnuStyle ? Asm->getObjFileLowering().getDwarfGnuPubTypesSection() |
| 1591 | : Asm->getObjFileLowering().getDwarfPubTypesSection(); |
Eric Christopher | 5704d64 | 2013-09-13 00:34:58 +0000 | [diff] [blame] | 1592 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1593 | emitDebugPubSection(GnuStyle, PSec, "Types", |
| 1594 | &DwarfCompileUnit::getGlobalTypes); |
Devang Patel | 193f720 | 2009-11-24 01:14:22 +0000 | [diff] [blame] | 1595 | } |
| 1596 | |
Eric Christopher | 64f824c | 2012-12-27 02:14:01 +0000 | [diff] [blame] | 1597 | // Emit visible names into a debug str section. |
| 1598 | void DwarfDebug::emitDebugStr() { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1599 | DwarfFile &Holder = useSplitDwarf() ? SkeletonHolder : InfoHolder; |
Eric Christopher | 64f824c | 2012-12-27 02:14:01 +0000 | [diff] [blame] | 1600 | Holder.emitStrings(Asm->getObjFileLowering().getDwarfStrSection()); |
| 1601 | } |
| 1602 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1603 | /// Emits an optimal (=sorted) sequence of DW_OP_pieces. |
| 1604 | void DwarfDebug::emitLocPieces(ByteStreamer &Streamer, |
| 1605 | const DITypeIdentifierMap &Map, |
| 1606 | ArrayRef<DebugLocEntry::Value> Values) { |
| 1607 | assert(std::all_of(Values.begin(), Values.end(), [](DebugLocEntry::Value P) { |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1608 | return P.isBitPiece(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1609 | }) && "all values are expected to be pieces"); |
| 1610 | assert(std::is_sorted(Values.begin(), Values.end()) && |
| 1611 | "pieces are expected to be sorted"); |
| 1612 | |
| 1613 | unsigned Offset = 0; |
| 1614 | for (auto Piece : Values) { |
| 1615 | DIExpression Expr = Piece.getExpression(); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1616 | unsigned PieceOffset = Expr.getBitPieceOffset(); |
| 1617 | unsigned PieceSize = Expr.getBitPieceSize(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1618 | assert(Offset <= PieceOffset && "overlapping or duplicate pieces"); |
| 1619 | if (Offset < PieceOffset) { |
| 1620 | // The DWARF spec seriously mandates pieces with no locations for gaps. |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1621 | Asm->EmitDwarfOpPiece(Streamer, PieceOffset-Offset); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1622 | Offset += PieceOffset-Offset; |
| 1623 | } |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1624 | Offset += PieceSize; |
| 1625 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1626 | #ifndef NDEBUG |
| 1627 | DIVariable Var = Piece.getVariable(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1628 | unsigned VarSize = Var.getSizeInBits(Map); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1629 | assert(PieceSize+PieceOffset <= VarSize |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1630 | && "piece is larger than or outside of variable"); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1631 | assert(PieceSize != VarSize |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1632 | && "piece covers entire variable"); |
| 1633 | #endif |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1634 | emitDebugLocValue(Streamer, Piece, PieceOffset); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1635 | } |
| 1636 | } |
| 1637 | |
| 1638 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1639 | void DwarfDebug::emitDebugLocEntry(ByteStreamer &Streamer, |
| 1640 | const DebugLocEntry &Entry) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1641 | const DebugLocEntry::Value Value = Entry.getValues()[0]; |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1642 | if (Value.isBitPiece()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1643 | // Emit all pieces that belong to the same variable and range. |
| 1644 | return emitLocPieces(Streamer, TypeIdentifierMap, Entry.getValues()); |
| 1645 | |
| 1646 | assert(Entry.getValues().size() == 1 && "only pieces may have >1 value"); |
| 1647 | emitDebugLocValue(Streamer, Value); |
| 1648 | } |
| 1649 | |
| 1650 | void DwarfDebug::emitDebugLocValue(ByteStreamer &Streamer, |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1651 | const DebugLocEntry::Value &Value, |
| 1652 | unsigned PieceOffsetInBits) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1653 | DIVariable DV = Value.getVariable(); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1654 | DebugLocDwarfExpression DwarfExpr(*Asm, Streamer); |
| 1655 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1656 | // Regular entry. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1657 | if (Value.isInt()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1658 | DIBasicType BTy(resolve(DV.getType())); |
| 1659 | if (BTy.Verify() && (BTy.getEncoding() == dwarf::DW_ATE_signed || |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1660 | BTy.getEncoding() == dwarf::DW_ATE_signed_char)) |
| 1661 | DwarfExpr.AddSignedConstant(Value.getInt()); |
| 1662 | else |
| 1663 | DwarfExpr.AddUnsignedConstant(Value.getInt()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1664 | } else if (Value.isLocation()) { |
| 1665 | MachineLocation Loc = Value.getLoc(); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1666 | DIExpression Expr = Value.getExpression(); |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1667 | if (!Expr || (Expr.getNumElements() == 0)) |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1668 | // Regular entry. |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1669 | Asm->EmitDwarfRegOp(Streamer, Loc); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1670 | else { |
| 1671 | // Complex address entry. |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1672 | if (Loc.getOffset()) { |
| 1673 | DwarfExpr.AddMachineRegIndirect(Loc.getReg(), Loc.getOffset()); |
| 1674 | DwarfExpr.AddExpression(Expr.begin(), Expr.end(), PieceOffsetInBits); |
| 1675 | } else |
| 1676 | DwarfExpr.AddMachineRegExpression(Expr, Loc.getReg(), |
| 1677 | PieceOffsetInBits); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1678 | } |
| 1679 | } |
| 1680 | // else ... ignore constant fp. There is not any good way to |
| 1681 | // to represent them here in dwarf. |
| 1682 | // FIXME: ^ |
| 1683 | } |
| 1684 | |
| 1685 | void DwarfDebug::emitDebugLocEntryLocation(const DebugLocEntry &Entry) { |
| 1686 | Asm->OutStreamer.AddComment("Loc expr size"); |
| 1687 | MCSymbol *begin = Asm->OutStreamer.getContext().CreateTempSymbol(); |
| 1688 | MCSymbol *end = Asm->OutStreamer.getContext().CreateTempSymbol(); |
| 1689 | Asm->EmitLabelDifference(end, begin, 2); |
| 1690 | Asm->OutStreamer.EmitLabel(begin); |
| 1691 | // Emit the entry. |
| 1692 | APByteStreamer Streamer(*Asm); |
| 1693 | emitDebugLocEntry(Streamer, Entry); |
| 1694 | // Close the range. |
| 1695 | Asm->OutStreamer.EmitLabel(end); |
| 1696 | } |
| 1697 | |
Eric Christopher | d3b9853 | 2013-07-02 21:36:07 +0000 | [diff] [blame] | 1698 | // Emit locations into the debug loc section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1699 | void DwarfDebug::emitDebugLoc() { |
Daniel Dunbar | 83320a0 | 2011-03-16 22:16:39 +0000 | [diff] [blame] | 1700 | // Start the dwarf loc section. |
Chris Lattner | 6c2f9e1 | 2009-08-19 05:49:37 +0000 | [diff] [blame] | 1701 | Asm->OutStreamer.SwitchSection( |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1702 | Asm->getObjFileLowering().getDwarfLocSection()); |
Chandler Carruth | 426c2bf | 2012-11-01 09:14:31 +0000 | [diff] [blame] | 1703 | unsigned char Size = Asm->getDataLayout().getPointerSize(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1704 | for (const auto &DebugLoc : DotDebugLocEntries) { |
| 1705 | Asm->OutStreamer.EmitLabel(DebugLoc.Label); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1706 | const DwarfCompileUnit *CU = DebugLoc.CU; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1707 | for (const auto &Entry : DebugLoc.List) { |
| 1708 | // Set up the range. This range is relative to the entry point of the |
| 1709 | // compile unit. This is a hard coded 0 for low_pc when we're emitting |
| 1710 | // ranges, or the DW_AT_low_pc on the compile unit otherwise. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1711 | if (auto *Base = CU->getBaseAddress()) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1712 | Asm->EmitLabelDifference(Entry.getBeginSym(), Base, Size); |
| 1713 | Asm->EmitLabelDifference(Entry.getEndSym(), Base, Size); |
| 1714 | } else { |
| 1715 | Asm->OutStreamer.EmitSymbolValue(Entry.getBeginSym(), Size); |
| 1716 | Asm->OutStreamer.EmitSymbolValue(Entry.getEndSym(), Size); |
Devang Patel | c26f544 | 2011-04-28 02:22:40 +0000 | [diff] [blame] | 1717 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1718 | |
| 1719 | emitDebugLocEntryLocation(Entry); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1720 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1721 | Asm->OutStreamer.EmitIntValue(0, Size); |
| 1722 | Asm->OutStreamer.EmitIntValue(0, Size); |
Devang Patel | c3f5f78 | 2010-05-25 23:40:22 +0000 | [diff] [blame] | 1723 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1724 | } |
| 1725 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1726 | void DwarfDebug::emitDebugLocDWO() { |
| 1727 | Asm->OutStreamer.SwitchSection( |
| 1728 | Asm->getObjFileLowering().getDwarfLocDWOSection()); |
| 1729 | for (const auto &DebugLoc : DotDebugLocEntries) { |
| 1730 | Asm->OutStreamer.EmitLabel(DebugLoc.Label); |
| 1731 | for (const auto &Entry : DebugLoc.List) { |
| 1732 | // Just always use start_length for now - at least that's one address |
| 1733 | // rather than two. We could get fancier and try to, say, reuse an |
| 1734 | // address we know we've emitted elsewhere (the start of the function? |
| 1735 | // The start of the CU or CU subrange that encloses this range?) |
| 1736 | Asm->EmitInt8(dwarf::DW_LLE_start_length_entry); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1737 | unsigned idx = AddrPool.getIndex(Entry.getBeginSym()); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1738 | Asm->EmitULEB128(idx); |
| 1739 | Asm->EmitLabelDifference(Entry.getEndSym(), Entry.getBeginSym(), 4); |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1740 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1741 | emitDebugLocEntryLocation(Entry); |
| 1742 | } |
| 1743 | Asm->EmitInt8(dwarf::DW_LLE_end_of_list_entry); |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1744 | } |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1745 | } |
| 1746 | |
| 1747 | struct ArangeSpan { |
| 1748 | const MCSymbol *Start, *End; |
| 1749 | }; |
| 1750 | |
| 1751 | // Emit a debug aranges section, containing a CU lookup for any |
| 1752 | // address we can tie back to a CU. |
Eric Christopher | 7ee5f5d | 2012-11-21 00:34:35 +0000 | [diff] [blame] | 1753 | void DwarfDebug::emitDebugARanges() { |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1754 | // Provides a unique id per text section. |
| 1755 | DenseMap<const MCSection *, SmallVector<SymbolCU, 8>> SectionMap; |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1756 | |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1757 | // Prime section data. |
| 1758 | SectionMap[Asm->getObjFileLowering().getTextSection()]; |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1759 | |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1760 | // Filter labels by section. |
| 1761 | for (const SymbolCU &SCU : ArangeLabels) { |
| 1762 | if (SCU.Sym->isInSection()) { |
| 1763 | // Make a note of this symbol and it's section. |
| 1764 | const MCSection *Section = &SCU.Sym->getSection(); |
| 1765 | if (!Section->getKind().isMetadata()) |
| 1766 | SectionMap[Section].push_back(SCU); |
| 1767 | } else { |
| 1768 | // Some symbols (e.g. common/bss on mach-o) can have no section but still |
| 1769 | // appear in the output. This sucks as we rely on sections to build |
| 1770 | // arange spans. We can do it without, but it's icky. |
| 1771 | SectionMap[nullptr].push_back(SCU); |
| 1772 | } |
| 1773 | } |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1774 | |
| 1775 | // Build a list of sections used. |
| 1776 | std::vector<const MCSection *> Sections; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1777 | for (const auto &it : SectionMap) { |
| 1778 | const MCSection *Section = it.first; |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1779 | Sections.push_back(Section); |
| 1780 | } |
| 1781 | |
| 1782 | // Sort the sections into order. |
| 1783 | // This is only done to ensure consistent output order across different runs. |
| 1784 | std::sort(Sections.begin(), Sections.end(), SectionSort); |
| 1785 | |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1786 | // Add terminating symbols for each section. |
| 1787 | for (unsigned ID = 0, E = Sections.size(); ID != E; ID++) { |
| 1788 | const MCSection *Section = Sections[ID]; |
| 1789 | MCSymbol *Sym = nullptr; |
| 1790 | |
| 1791 | if (Section) { |
| 1792 | // We can't call MCSection::getLabelEndName, as it's only safe to do so |
| 1793 | // if we know the section name up-front. For user-created sections, the |
| 1794 | // resulting label may not be valid to use as a label. (section names can |
| 1795 | // use a greater set of characters on some systems) |
| 1796 | Sym = Asm->GetTempSymbol("debug_end", ID); |
| 1797 | Asm->OutStreamer.SwitchSection(Section); |
| 1798 | Asm->OutStreamer.EmitLabel(Sym); |
| 1799 | } |
| 1800 | |
| 1801 | // Insert a final terminator. |
| 1802 | SectionMap[Section].push_back(SymbolCU(nullptr, Sym)); |
| 1803 | } |
| 1804 | |
| 1805 | DenseMap<DwarfCompileUnit *, std::vector<ArangeSpan>> Spans; |
| 1806 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1807 | for (const MCSection *Section : Sections) { |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1808 | SmallVector<SymbolCU, 8> &List = SectionMap[Section]; |
| 1809 | if (List.size() < 2) |
| 1810 | continue; |
| 1811 | |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1812 | // If we have no section (e.g. common), just write out |
| 1813 | // individual spans for each symbol. |
| 1814 | if (!Section) { |
| 1815 | for (const SymbolCU &Cur : List) { |
| 1816 | ArangeSpan Span; |
| 1817 | Span.Start = Cur.Sym; |
| 1818 | Span.End = nullptr; |
| 1819 | if (Cur.CU) |
| 1820 | Spans[Cur.CU].push_back(Span); |
| 1821 | } |
| 1822 | continue; |
| 1823 | } |
| 1824 | |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1825 | // Sort the symbols by offset within the section. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1826 | std::sort(List.begin(), List.end(), |
| 1827 | [&](const SymbolCU &A, const SymbolCU &B) { |
| 1828 | unsigned IA = A.Sym ? Asm->OutStreamer.GetSymbolOrder(A.Sym) : 0; |
| 1829 | unsigned IB = B.Sym ? Asm->OutStreamer.GetSymbolOrder(B.Sym) : 0; |
| 1830 | |
| 1831 | // Symbols with no order assigned should be placed at the end. |
| 1832 | // (e.g. section end labels) |
| 1833 | if (IA == 0) |
| 1834 | return false; |
| 1835 | if (IB == 0) |
| 1836 | return true; |
| 1837 | return IA < IB; |
| 1838 | }); |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1839 | |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1840 | // Build spans between each label. |
| 1841 | const MCSymbol *StartSym = List[0].Sym; |
| 1842 | for (size_t n = 1, e = List.size(); n < e; n++) { |
| 1843 | const SymbolCU &Prev = List[n - 1]; |
| 1844 | const SymbolCU &Cur = List[n]; |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1845 | |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1846 | // Try and build the longest span we can within the same CU. |
| 1847 | if (Cur.CU != Prev.CU) { |
| 1848 | ArangeSpan Span; |
| 1849 | Span.Start = StartSym; |
| 1850 | Span.End = Cur.Sym; |
| 1851 | Spans[Prev.CU].push_back(Span); |
| 1852 | StartSym = Cur.Sym; |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1853 | } |
| 1854 | } |
| 1855 | } |
| 1856 | |
Stephen Hines | ebe69fe | 2015-03-23 12:10:34 -0700 | [diff] [blame^] | 1857 | // Start the dwarf aranges section. |
| 1858 | Asm->OutStreamer.SwitchSection( |
| 1859 | Asm->getObjFileLowering().getDwarfARangesSection()); |
| 1860 | |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1861 | unsigned PtrSize = Asm->getDataLayout().getPointerSize(); |
| 1862 | |
| 1863 | // Build a list of CUs used. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1864 | std::vector<DwarfCompileUnit *> CUs; |
| 1865 | for (const auto &it : Spans) { |
| 1866 | DwarfCompileUnit *CU = it.first; |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1867 | CUs.push_back(CU); |
| 1868 | } |
| 1869 | |
| 1870 | // Sort the CU list (again, to ensure consistent output order). |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1871 | std::sort(CUs.begin(), CUs.end(), [](const DwarfUnit *A, const DwarfUnit *B) { |
| 1872 | return A->getUniqueID() < B->getUniqueID(); |
| 1873 | }); |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1874 | |
| 1875 | // Emit an arange table for each CU we used. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1876 | for (DwarfCompileUnit *CU : CUs) { |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1877 | std::vector<ArangeSpan> &List = Spans[CU]; |
| 1878 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1879 | // Describe the skeleton CU's offset and length, not the dwo file's. |
| 1880 | if (auto *Skel = CU->getSkeleton()) |
| 1881 | CU = Skel; |
| 1882 | |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1883 | // Emit size of content not including length itself. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1884 | unsigned ContentSize = |
| 1885 | sizeof(int16_t) + // DWARF ARange version number |
| 1886 | sizeof(int32_t) + // Offset of CU in the .debug_info section |
| 1887 | sizeof(int8_t) + // Pointer Size (in bytes) |
| 1888 | sizeof(int8_t); // Segment Size (in bytes) |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1889 | |
| 1890 | unsigned TupleSize = PtrSize * 2; |
| 1891 | |
| 1892 | // 7.20 in the Dwarf specs requires the table to be aligned to a tuple. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1893 | unsigned Padding = |
| 1894 | OffsetToAlignment(sizeof(int32_t) + ContentSize, TupleSize); |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1895 | |
| 1896 | ContentSize += Padding; |
| 1897 | ContentSize += (List.size() + 1) * TupleSize; |
| 1898 | |
| 1899 | // For each compile unit, write the list of spans it covers. |
| 1900 | Asm->OutStreamer.AddComment("Length of ARange Set"); |
| 1901 | Asm->EmitInt32(ContentSize); |
| 1902 | Asm->OutStreamer.AddComment("DWARF Arange version number"); |
| 1903 | Asm->EmitInt16(dwarf::DW_ARANGES_VERSION); |
| 1904 | Asm->OutStreamer.AddComment("Offset Into Debug Info Section"); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1905 | Asm->EmitSectionOffset(CU->getLabelBegin(), CU->getSectionSym()); |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1906 | Asm->OutStreamer.AddComment("Address Size (in bytes)"); |
| 1907 | Asm->EmitInt8(PtrSize); |
| 1908 | Asm->OutStreamer.AddComment("Segment Size (in bytes)"); |
| 1909 | Asm->EmitInt8(0); |
| 1910 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1911 | Asm->OutStreamer.EmitFill(Padding, 0xff); |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1912 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1913 | for (const ArangeSpan &Span : List) { |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1914 | Asm->EmitLabelReference(Span.Start, PtrSize); |
| 1915 | |
| 1916 | // Calculate the size as being from the span start to it's end. |
Richard Mitton | eb46def | 2013-09-23 17:56:20 +0000 | [diff] [blame] | 1917 | if (Span.End) { |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1918 | Asm->EmitLabelDifference(Span.End, Span.Start, PtrSize); |
Richard Mitton | eb46def | 2013-09-23 17:56:20 +0000 | [diff] [blame] | 1919 | } else { |
| 1920 | // For symbols without an end marker (e.g. common), we |
| 1921 | // write a single arange entry containing just that one symbol. |
| 1922 | uint64_t Size = SymSize[Span.Start]; |
| 1923 | if (Size == 0) |
| 1924 | Size = 1; |
| 1925 | |
| 1926 | Asm->OutStreamer.EmitIntValue(Size, PtrSize); |
| 1927 | } |
Richard Mitton | 5cc319a | 2013-09-19 23:21:01 +0000 | [diff] [blame] | 1928 | } |
| 1929 | |
| 1930 | Asm->OutStreamer.AddComment("ARange terminator"); |
| 1931 | Asm->OutStreamer.EmitIntValue(0, PtrSize); |
| 1932 | Asm->OutStreamer.EmitIntValue(0, PtrSize); |
| 1933 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1934 | } |
| 1935 | |
Eric Christopher | b6dc865 | 2012-11-27 22:43:45 +0000 | [diff] [blame] | 1936 | // Emit visible names into a debug ranges section. |
Devang Patel | 2c4ceb1 | 2009-11-21 02:48:08 +0000 | [diff] [blame] | 1937 | void DwarfDebug::emitDebugRanges() { |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1938 | // Start the dwarf ranges section. |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1939 | Asm->OutStreamer.SwitchSection( |
| 1940 | Asm->getObjFileLowering().getDwarfRangesSection()); |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1941 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1942 | // Size for our labels. |
| 1943 | unsigned char Size = Asm->getDataLayout().getPointerSize(); |
| 1944 | |
| 1945 | // Grab the specific ranges for the compile units in the module. |
| 1946 | for (const auto &I : CUMap) { |
| 1947 | DwarfCompileUnit *TheCU = I.second; |
| 1948 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1949 | if (auto *Skel = TheCU->getSkeleton()) |
| 1950 | TheCU = Skel; |
| 1951 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1952 | // Iterate over the misc ranges for the compile units in the module. |
| 1953 | for (const RangeSpanList &List : TheCU->getRangeLists()) { |
| 1954 | // Emit our symbol so we can find the beginning of the range. |
| 1955 | Asm->OutStreamer.EmitLabel(List.getSym()); |
| 1956 | |
| 1957 | for (const RangeSpan &Range : List.getRanges()) { |
| 1958 | const MCSymbol *Begin = Range.getStart(); |
| 1959 | const MCSymbol *End = Range.getEnd(); |
| 1960 | assert(Begin && "Range without a begin symbol?"); |
| 1961 | assert(End && "Range without an end symbol?"); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1962 | if (auto *Base = TheCU->getBaseAddress()) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1963 | Asm->EmitLabelDifference(Begin, Base, Size); |
| 1964 | Asm->EmitLabelDifference(End, Base, Size); |
| 1965 | } else { |
| 1966 | Asm->OutStreamer.EmitSymbolValue(Begin, Size); |
| 1967 | Asm->OutStreamer.EmitSymbolValue(End, Size); |
| 1968 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1969 | } |
| 1970 | |
| 1971 | // And terminate the list with two 0 values. |
| 1972 | Asm->OutStreamer.EmitIntValue(0, Size); |
| 1973 | Asm->OutStreamer.EmitIntValue(0, Size); |
| 1974 | } |
Bill Wendling | 94d04b8 | 2009-05-20 23:21:38 +0000 | [diff] [blame] | 1975 | } |
| 1976 | } |
| 1977 | |
Eric Christopher | 0b944ee | 2012-12-11 19:42:09 +0000 | [diff] [blame] | 1978 | // DWARF5 Experimental Separate Dwarf emitters. |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 1979 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1980 | void DwarfDebug::initSkeletonUnit(const DwarfUnit &U, DIE &Die, |
| 1981 | std::unique_ptr<DwarfUnit> NewU) { |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1982 | NewU->addString(Die, dwarf::DW_AT_GNU_dwo_name, |
| 1983 | U.getCUNode().getSplitDebugFilename()); |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 1984 | |
| 1985 | if (!CompilationDir.empty()) |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 1986 | NewU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 1987 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1988 | addGnuPubAttributes(*NewU, Die); |
Eric Christopher | a6d8415 | 2013-09-30 23:14:16 +0000 | [diff] [blame] | 1989 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1990 | SkeletonHolder.addUnit(std::move(NewU)); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1991 | } |
Eric Christopher | 8f1a929 | 2013-09-13 00:35:05 +0000 | [diff] [blame] | 1992 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1993 | // This DIE has the following attributes: DW_AT_comp_dir, DW_AT_stmt_list, |
| 1994 | // DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges, DW_AT_dwo_name, DW_AT_dwo_id, |
| 1995 | // DW_AT_addr_base, DW_AT_ranges_base. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1996 | DwarfCompileUnit &DwarfDebug::constructSkeletonCU(const DwarfCompileUnit &CU) { |
Eric Christopher | 451c71d | 2013-10-01 00:43:36 +0000 | [diff] [blame] | 1997 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 1998 | auto OwnedUnit = make_unique<DwarfCompileUnit>( |
| 1999 | CU.getUniqueID(), CU.getCUNode(), Asm, this, &SkeletonHolder); |
| 2000 | DwarfCompileUnit &NewCU = *OwnedUnit; |
| 2001 | NewCU.initSection(Asm->getObjFileLowering().getDwarfInfoSection(), |
| 2002 | DwarfInfoSectionSym); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2003 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2004 | NewCU.initStmtList(DwarfLineSectionSym); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2005 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2006 | initSkeletonUnit(CU, NewCU.getUnitDie(), std::move(OwnedUnit)); |
Eric Christopher | 0e3e9b7 | 2012-12-10 23:34:43 +0000 | [diff] [blame] | 2007 | |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 2008 | return NewCU; |
| 2009 | } |
| 2010 | |
Eric Christopher | 0b944ee | 2012-12-11 19:42:09 +0000 | [diff] [blame] | 2011 | // Emit the .debug_info.dwo section for separated dwarf. This contains the |
| 2012 | // compile units that would normally be in debug_info. |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 2013 | void DwarfDebug::emitDebugInfoDWO() { |
Eric Christopher | 4daaed1 | 2012-12-10 19:51:21 +0000 | [diff] [blame] | 2014 | assert(useSplitDwarf() && "No split dwarf debug info?"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2015 | // Don't pass an abbrev symbol, using a constant zero instead so as not to |
| 2016 | // emit relocations into the dwo file. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2017 | InfoHolder.emitUnits(/* AbbrevSymbol */ nullptr); |
Eric Christopher | 6eebe47 | 2012-12-19 22:02:53 +0000 | [diff] [blame] | 2018 | } |
| 2019 | |
| 2020 | // Emit the .debug_abbrev.dwo section for separated dwarf. This contains the |
| 2021 | // abbreviations for the .debug_info.dwo section. |
| 2022 | void DwarfDebug::emitDebugAbbrevDWO() { |
| 2023 | assert(useSplitDwarf() && "No split dwarf?"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2024 | InfoHolder.emitAbbrevs(Asm->getObjFileLowering().getDwarfAbbrevDWOSection()); |
| 2025 | } |
| 2026 | |
| 2027 | void DwarfDebug::emitDebugLineDWO() { |
| 2028 | assert(useSplitDwarf() && "No split dwarf?"); |
| 2029 | Asm->OutStreamer.SwitchSection( |
| 2030 | Asm->getObjFileLowering().getDwarfLineDWOSection()); |
| 2031 | SplitTypeUnitFileTable.Emit(Asm->OutStreamer); |
Eric Christopher | 98e237f | 2012-11-30 23:59:06 +0000 | [diff] [blame] | 2032 | } |
Eric Christopher | 64f824c | 2012-12-27 02:14:01 +0000 | [diff] [blame] | 2033 | |
| 2034 | // Emit the .debug_str.dwo section for separated dwarf. This contains the |
| 2035 | // string section and is identical in format to traditional .debug_str |
| 2036 | // sections. |
| 2037 | void DwarfDebug::emitDebugStrDWO() { |
| 2038 | assert(useSplitDwarf() && "No split dwarf?"); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2039 | const MCSection *OffSec = |
| 2040 | Asm->getObjFileLowering().getDwarfStrOffDWOSection(); |
Eric Christopher | dd8e9f3 | 2013-01-07 19:32:41 +0000 | [diff] [blame] | 2041 | InfoHolder.emitStrings(Asm->getObjFileLowering().getDwarfStrDWOSection(), |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2042 | OffSec); |
Eric Christopher | 64f824c | 2012-12-27 02:14:01 +0000 | [diff] [blame] | 2043 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2044 | |
| 2045 | MCDwarfDwoLineTable *DwarfDebug::getDwoLineTable(const DwarfCompileUnit &CU) { |
| 2046 | if (!useSplitDwarf()) |
| 2047 | return nullptr; |
| 2048 | if (SingleCU) |
| 2049 | SplitTypeUnitFileTable.setCompilationDir(CU.getCUNode().getDirectory()); |
| 2050 | return &SplitTypeUnitFileTable; |
| 2051 | } |
| 2052 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2053 | static uint64_t makeTypeSignature(StringRef Identifier) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2054 | MD5 Hash; |
| 2055 | Hash.update(Identifier); |
| 2056 | // ... take the least significant 8 bytes and return those. Our MD5 |
| 2057 | // implementation always returns its results in little endian, swap bytes |
| 2058 | // appropriately. |
| 2059 | MD5::MD5Result Result; |
| 2060 | Hash.final(Result); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2061 | return *reinterpret_cast<support::ulittle64_t *>(Result + 8); |
| 2062 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2063 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2064 | void DwarfDebug::addDwarfTypeUnitType(DwarfCompileUnit &CU, |
| 2065 | StringRef Identifier, DIE &RefDie, |
| 2066 | DICompositeType CTy) { |
| 2067 | // Fast path if we're building some type units and one has already used the |
| 2068 | // address pool we know we're going to throw away all this work anyway, so |
| 2069 | // don't bother building dependent types. |
| 2070 | if (!TypeUnitsUnderConstruction.empty() && AddrPool.hasBeenUsed()) |
| 2071 | return; |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2072 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2073 | const DwarfTypeUnit *&TU = DwarfTypeUnits[CTy]; |
| 2074 | if (TU) { |
| 2075 | CU.addDIETypeSignature(RefDie, *TU); |
| 2076 | return; |
| 2077 | } |
| 2078 | |
| 2079 | bool TopLevelType = TypeUnitsUnderConstruction.empty(); |
| 2080 | AddrPool.resetUsedFlag(); |
| 2081 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2082 | auto OwnedUnit = make_unique<DwarfTypeUnit>( |
| 2083 | InfoHolder.getUnits().size() + TypeUnitsUnderConstruction.size(), CU, Asm, |
| 2084 | this, &InfoHolder, getDwoLineTable(CU)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2085 | DwarfTypeUnit &NewTU = *OwnedUnit; |
| 2086 | DIE &UnitDie = NewTU.getUnitDie(); |
| 2087 | TU = &NewTU; |
| 2088 | TypeUnitsUnderConstruction.push_back( |
| 2089 | std::make_pair(std::move(OwnedUnit), CTy)); |
| 2090 | |
| 2091 | NewTU.addUInt(UnitDie, dwarf::DW_AT_language, dwarf::DW_FORM_data2, |
| 2092 | CU.getLanguage()); |
| 2093 | |
| 2094 | uint64_t Signature = makeTypeSignature(Identifier); |
| 2095 | NewTU.setTypeSignature(Signature); |
| 2096 | |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2097 | if (useSplitDwarf()) |
| 2098 | NewTU.initSection(Asm->getObjFileLowering().getDwarfTypesDWOSection()); |
| 2099 | else { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2100 | CU.applyStmtList(UnitDie); |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2101 | NewTU.initSection( |
| 2102 | Asm->getObjFileLowering().getDwarfTypesSection(Signature)); |
| 2103 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2104 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2105 | NewTU.setType(NewTU.createTypeDIE(CTy)); |
| 2106 | |
| 2107 | if (TopLevelType) { |
| 2108 | auto TypeUnitsToAdd = std::move(TypeUnitsUnderConstruction); |
| 2109 | TypeUnitsUnderConstruction.clear(); |
| 2110 | |
| 2111 | // Types referencing entries in the address table cannot be placed in type |
| 2112 | // units. |
| 2113 | if (AddrPool.hasBeenUsed()) { |
| 2114 | |
| 2115 | // Remove all the types built while building this type. |
| 2116 | // This is pessimistic as some of these types might not be dependent on |
| 2117 | // the type that used an address. |
| 2118 | for (const auto &TU : TypeUnitsToAdd) |
| 2119 | DwarfTypeUnits.erase(TU.second); |
| 2120 | |
| 2121 | // Construct this type in the CU directly. |
| 2122 | // This is inefficient because all the dependent types will be rebuilt |
| 2123 | // from scratch, including building them in type units, discovering that |
| 2124 | // they depend on addresses, throwing them out and rebuilding them. |
| 2125 | CU.constructTypeDIE(RefDie, CTy); |
| 2126 | return; |
| 2127 | } |
| 2128 | |
| 2129 | // If the type wasn't dependent on fission addresses, finish adding the type |
| 2130 | // and all its dependent types. |
Stephen Hines | 37ed9c1 | 2014-12-01 14:51:49 -0800 | [diff] [blame] | 2131 | for (auto &TU : TypeUnitsToAdd) |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2132 | InfoHolder.addUnit(std::move(TU.first)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2133 | } |
| 2134 | CU.addDIETypeSignature(RefDie, NewTU); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2135 | } |
| 2136 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame] | 2137 | // Accelerator table mutators - add each name along with its companion |
| 2138 | // DIE to the proper table while ensuring that the name that we're going |
| 2139 | // to reference is in the string table. We do this since the names we |
| 2140 | // add may not only be identical to the names in the DIE. |
| 2141 | void DwarfDebug::addAccelName(StringRef Name, const DIE &Die) { |
| 2142 | if (!useDwarfAccelTables()) |
| 2143 | return; |
| 2144 | AccelNames.AddName(Name, InfoHolder.getStringPool().getSymbol(*Asm, Name), |
| 2145 | &Die); |
| 2146 | } |
| 2147 | |
| 2148 | void DwarfDebug::addAccelObjC(StringRef Name, const DIE &Die) { |
| 2149 | if (!useDwarfAccelTables()) |
| 2150 | return; |
| 2151 | AccelObjC.AddName(Name, InfoHolder.getStringPool().getSymbol(*Asm, Name), |
| 2152 | &Die); |
| 2153 | } |
| 2154 | |
| 2155 | void DwarfDebug::addAccelNamespace(StringRef Name, const DIE &Die) { |
| 2156 | if (!useDwarfAccelTables()) |
| 2157 | return; |
| 2158 | AccelNamespace.AddName(Name, InfoHolder.getStringPool().getSymbol(*Asm, Name), |
| 2159 | &Die); |
| 2160 | } |
| 2161 | |
| 2162 | void DwarfDebug::addAccelType(StringRef Name, const DIE &Die, char Flags) { |
| 2163 | if (!useDwarfAccelTables()) |
| 2164 | return; |
| 2165 | AccelTypes.AddName(Name, InfoHolder.getStringPool().getSymbol(*Asm, Name), |
| 2166 | &Die); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2167 | } |