Daniel Jasper | 0f77869 | 2016-12-08 12:45:29 +0000 | [diff] [blame] | 1 | //===--- unittests/DebugInfo/DWARF/DwarfGenerator.h -------------*- C++ -*-===// |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // A file that can generate DWARF debug info for unit tests. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
Daniel Jasper | 0f77869 | 2016-12-08 12:45:29 +0000 | [diff] [blame] | 13 | #ifndef LLVM_UNITTESTS_DEBUG_INFO_DWARF_DWARFGENERATOR_H |
| 14 | #define LLVM_UNITTESTS_DEBUG_INFO_DWARF_DWARFGENERATOR_H |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 15 | |
| 16 | #include "llvm/ADT/StringRef.h" |
| 17 | #include "llvm/CodeGen/DIE.h" |
| 18 | #include "llvm/DebugInfo/DWARF/DWARFDebugLine.h" |
| 19 | #include "llvm/Support/Error.h" |
| 20 | |
| 21 | #include <memory> |
| 22 | #include <string> |
| 23 | #include <tuple> |
| 24 | #include <vector> |
| 25 | |
| 26 | namespace llvm { |
| 27 | |
| 28 | class AsmPrinter; |
| 29 | class DIE; |
| 30 | class DIEAbbrev; |
| 31 | class DwarfStringPool; |
| 32 | class MCAsmBackend; |
| 33 | class MCAsmInfo; |
| 34 | class MCCodeEmitter; |
| 35 | class MCContext; |
| 36 | struct MCDwarfLineTableParams; |
| 37 | class MCInstrInfo; |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 38 | class MCRegisterInfo; |
| 39 | class MCStreamer; |
| 40 | class MCSubtargetInfo; |
| 41 | class raw_fd_ostream; |
Pavel Labath | fac87b3d | 2018-07-26 13:16:06 +0000 | [diff] [blame] | 42 | class TargetLoweringObjectFile; |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 43 | class TargetMachine; |
| 44 | class Triple; |
| 45 | |
| 46 | namespace dwarfgen { |
| 47 | |
| 48 | class Generator; |
| 49 | class CompileUnit; |
| 50 | |
| 51 | /// A DWARF debug information entry class used to generate DWARF DIEs. |
| 52 | /// |
| 53 | /// This class is used to quickly generate DWARF debug information by creating |
| 54 | /// child DIEs or adding attributes to the current DIE. Instances of this class |
| 55 | /// are created from the compile unit (dwarfgen::CompileUnit::getUnitDIE()) or |
| 56 | /// by calling dwarfgen::DIE::addChild(...) and using the returned DIE object. |
| 57 | class DIE { |
| 58 | dwarfgen::CompileUnit *CU; |
| 59 | llvm::DIE *Die; |
| 60 | |
| 61 | protected: |
| 62 | friend class Generator; |
| 63 | friend class CompileUnit; |
| 64 | |
| 65 | DIE(CompileUnit *U = nullptr, llvm::DIE *D = nullptr) : CU(U), Die(D) {} |
| 66 | |
| 67 | /// Called with a compile/type unit relative offset prior to generating the |
| 68 | /// DWARF debug info. |
| 69 | /// |
| 70 | /// \param CUOffset the compile/type unit relative offset where the |
| 71 | /// abbreviation code for this DIE will be encoded. |
| 72 | unsigned computeSizeAndOffsets(unsigned CUOffset); |
| 73 | |
| 74 | public: |
| 75 | /// Add an attribute value that has no value. |
| 76 | /// |
| 77 | /// \param Attr a dwarf::Attribute enumeration value or any uint16_t that |
| 78 | /// represents a user defined DWARF attribute. |
| 79 | /// \param Form the dwarf::Form to use when encoding the attribute. This is |
| 80 | /// only used with the DW_FORM_flag_present form encoding. |
| 81 | void addAttribute(uint16_t Attr, dwarf::Form Form); |
| 82 | |
| 83 | /// Add an attribute value to be encoded as a DIEInteger |
| 84 | /// |
| 85 | /// \param Attr a dwarf::Attribute enumeration value or any uint16_t that |
| 86 | /// represents a user defined DWARF attribute. |
| 87 | /// \param Form the dwarf::Form to use when encoding the attribute. |
| 88 | /// \param U the unsigned integer to encode. |
| 89 | void addAttribute(uint16_t Attr, dwarf::Form Form, uint64_t U); |
| 90 | |
Pavel Labath | 7bfa5d6 | 2018-07-26 14:36:07 +0000 | [diff] [blame] | 91 | /// Add an attribute value to be encoded as a DIEExpr |
| 92 | /// |
| 93 | /// \param Attr a dwarf::Attribute enumeration value or any uint16_t that |
| 94 | /// represents a user defined DWARF attribute. |
| 95 | /// \param Form the dwarf::Form to use when encoding the attribute. |
| 96 | /// \param Expr the MC expression used to compute the value. |
| 97 | void addAttribute(uint16_t Attr, dwarf::Form Form, const MCExpr &Expr); |
| 98 | |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 99 | /// Add an attribute value to be encoded as a DIEString or DIEInlinedString. |
| 100 | /// |
| 101 | /// \param Attr a dwarf::Attribute enumeration value or any uint16_t that |
| 102 | /// represents a user defined DWARF attribute. |
| 103 | /// \param Form the dwarf::Form to use when encoding the attribute. The form |
| 104 | /// must be one of DW_FORM_strp or DW_FORM_string. |
| 105 | /// \param String the string to encode. |
| 106 | void addAttribute(uint16_t Attr, dwarf::Form Form, StringRef String); |
| 107 | |
| 108 | /// Add an attribute value to be encoded as a DIEEntry. |
| 109 | /// |
| 110 | /// DIEEntry attributes refer to other llvm::DIE objects that have been |
| 111 | /// created. |
| 112 | /// |
| 113 | /// \param Attr a dwarf::Attribute enumeration value or any uint16_t that |
| 114 | /// represents a user defined DWARF attribute. |
| 115 | /// \param Form the dwarf::Form to use when encoding the attribute. The form |
| 116 | /// must be one of DW_FORM_strp or DW_FORM_string. |
| 117 | /// \param RefDie the DIE that this attriute refers to. |
| 118 | void addAttribute(uint16_t Attr, dwarf::Form Form, dwarfgen::DIE &RefDie); |
| 119 | |
| 120 | /// Add an attribute value to be encoded as a DIEBlock. |
| 121 | /// |
| 122 | /// DIEBlock attributes refers to binary data that is stored as the |
| 123 | /// attribute's value. |
| 124 | /// |
| 125 | /// \param Attr a dwarf::Attribute enumeration value or any uint16_t that |
| 126 | /// represents a user defined DWARF attribute. |
| 127 | /// \param Form the dwarf::Form to use when encoding the attribute. The form |
| 128 | /// must be one of DW_FORM_strp or DW_FORM_string. |
| 129 | /// \param P a pointer to the data to store as the attribute value. |
NAKAMURA Takumi | a495f88 | 2016-12-08 15:00:07 +0000 | [diff] [blame] | 130 | /// \param S the size in bytes of the data pointed to by P . |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 131 | void addAttribute(uint16_t Attr, dwarf::Form Form, const void *P, size_t S); |
| 132 | |
Pavel Labath | 7bfa5d6 | 2018-07-26 14:36:07 +0000 | [diff] [blame] | 133 | /// Add a DW_AT_str_offsets_base attribute to this DIE. |
| 134 | void addStrOffsetsBaseAttribute(); |
| 135 | |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 136 | /// Add a new child to this DIE object. |
| 137 | /// |
| 138 | /// \param Tag the dwarf::Tag to assing to the llvm::DIE object. |
| 139 | /// \returns the newly created DIE object that is now a child owned by this |
| 140 | /// object. |
| 141 | dwarfgen::DIE addChild(dwarf::Tag Tag); |
| 142 | }; |
| 143 | |
| 144 | /// A DWARF compile unit used to generate DWARF compile/type units. |
| 145 | /// |
| 146 | /// Instances of these classes are created by instances of the Generator |
| 147 | /// class. All information required to generate a DWARF compile unit is |
| 148 | /// contained inside this class. |
| 149 | class CompileUnit { |
| 150 | Generator &DG; |
David Blaikie | c0bb21f | 2017-04-22 02:18:00 +0000 | [diff] [blame] | 151 | BasicDIEUnit DU; |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 152 | |
| 153 | public: |
| 154 | CompileUnit(Generator &D, uint16_t V, uint8_t A) |
| 155 | : DG(D), DU(V, A, dwarf::DW_TAG_compile_unit) {} |
| 156 | DIE getUnitDIE(); |
| 157 | Generator &getGenerator() { return DG; } |
| 158 | uint64_t getOffset() const { return DU.getDebugSectionOffset(); } |
| 159 | uint64_t getLength() const { return DU.getLength(); } |
| 160 | uint16_t getVersion() const { return DU.getDwarfVersion(); } |
| 161 | uint16_t getAddressSize() const { return DU.getAddressSize(); } |
| 162 | void setOffset(uint64_t Offset) { DU.setDebugSectionOffset(Offset); } |
| 163 | void setLength(uint64_t Length) { DU.setLength(Length); } |
| 164 | }; |
| 165 | |
James Henderson | a3acf99 | 2018-05-10 10:51:33 +0000 | [diff] [blame] | 166 | /// A DWARF line unit-like class used to generate DWARF line units. |
| 167 | /// |
| 168 | /// Instances of this class are created by instances of the Generator class. |
| 169 | class LineTable { |
| 170 | public: |
| 171 | enum ValueLength { Byte = 1, Half = 2, Long = 4, Quad = 8, ULEB, SLEB }; |
| 172 | |
| 173 | struct ValueAndLength { |
| 174 | uint64_t Value; |
| 175 | ValueLength Length; |
| 176 | }; |
| 177 | |
James Henderson | 198a87c | 2018-05-10 14:36:24 +0000 | [diff] [blame] | 178 | LineTable(uint16_t Version, dwarf::DwarfFormat Format, uint8_t AddrSize, |
| 179 | uint8_t SegSize = 0) |
| 180 | : Version(Version), Format(Format), AddrSize(AddrSize), SegSize(SegSize) { |
James Henderson | a3acf99 | 2018-05-10 10:51:33 +0000 | [diff] [blame] | 181 | assert(Version >= 2 && Version <= 5 && "unsupported version"); |
| 182 | } |
| 183 | |
| 184 | // Create a Prologue suitable to pass to setPrologue, with a single file and |
| 185 | // include directory entry. |
| 186 | DWARFDebugLine::Prologue createBasicPrologue() const; |
| 187 | |
| 188 | // Set or replace the current prologue with the specified prologue. If no |
| 189 | // prologue is set, a default one will be used when generating. |
| 190 | void setPrologue(DWARFDebugLine::Prologue NewPrologue); |
| 191 | // Used to write an arbitrary payload instead of the standard prologue. This |
| 192 | // is useful if you wish to test handling of corrupt .debug_line sections. |
| 193 | void setCustomPrologue(ArrayRef<ValueAndLength> NewPrologue); |
| 194 | |
| 195 | // Add a byte to the program, with the given value. This can be used to |
| 196 | // specify a special opcode, or to add arbitrary contents to the section. |
| 197 | void addByte(uint8_t Value); |
| 198 | // Add a standard opcode to the program. The opcode and operands do not have |
| 199 | // to be valid. |
| 200 | void addStandardOpcode(uint8_t Opcode, ArrayRef<ValueAndLength> Operands); |
| 201 | // Add an extended opcode to the program with the specified length, opcode, |
| 202 | // and operands. These values do not have to be valid. |
| 203 | void addExtendedOpcode(uint64_t Length, uint8_t Opcode, |
| 204 | ArrayRef<ValueAndLength> Operands); |
| 205 | |
| 206 | // Write the contents of the LineUnit to the current section in the generator. |
| 207 | void generate(MCContext &MC, AsmPrinter &Asm) const; |
| 208 | |
| 209 | private: |
| 210 | void writeData(ArrayRef<ValueAndLength> Data, AsmPrinter &Asm) const; |
| 211 | MCSymbol *writeDefaultPrologue(AsmPrinter &Asm) const; |
| 212 | void writePrologue(AsmPrinter &Asm) const; |
| 213 | |
| 214 | void writeProloguePayload(const DWARFDebugLine::Prologue &Prologue, |
| 215 | AsmPrinter &Asm) const; |
| 216 | |
James Henderson | a3acf99 | 2018-05-10 10:51:33 +0000 | [diff] [blame] | 217 | llvm::Optional<DWARFDebugLine::Prologue> Prologue; |
| 218 | std::vector<ValueAndLength> CustomPrologue; |
| 219 | std::vector<ValueAndLength> Contents; |
| 220 | |
| 221 | // The Version field is used for determining how to write the Prologue, if a |
| 222 | // non-custom prologue is used. The version value actually written, will be |
| 223 | // that specified in the Prologue, if a custom prologue has been passed in. |
| 224 | // Otherwise, it will be this value. |
| 225 | uint16_t Version; |
| 226 | |
| 227 | dwarf::DwarfFormat Format; |
| 228 | uint8_t AddrSize; |
| 229 | uint8_t SegSize; |
| 230 | }; |
| 231 | |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 232 | /// A DWARF generator. |
| 233 | /// |
| 234 | /// Generate DWARF for unit tests by creating any instance of this class and |
| 235 | /// calling Generator::addCompileUnit(), and then getting the dwarfgen::DIE from |
| 236 | /// the returned compile unit and adding attributes and children to each DIE. |
| 237 | class Generator { |
| 238 | std::unique_ptr<MCRegisterInfo> MRI; |
| 239 | std::unique_ptr<MCAsmInfo> MAI; |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 240 | std::unique_ptr<MCContext> MC; |
| 241 | MCAsmBackend *MAB; // Owned by MCStreamer |
| 242 | std::unique_ptr<MCInstrInfo> MII; |
| 243 | std::unique_ptr<MCSubtargetInfo> MSTI; |
| 244 | MCCodeEmitter *MCE; // Owned by MCStreamer |
| 245 | MCStreamer *MS; // Owned by AsmPrinter |
| 246 | std::unique_ptr<TargetMachine> TM; |
Pavel Labath | fac87b3d | 2018-07-26 13:16:06 +0000 | [diff] [blame] | 247 | TargetLoweringObjectFile *TLOF; // Owned by TargetMachine; |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 248 | std::unique_ptr<AsmPrinter> Asm; |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 249 | BumpPtrAllocator Allocator; |
Benjamin Kramer | 9fcb7fe | 2016-12-09 13:12:30 +0000 | [diff] [blame] | 250 | std::unique_ptr<DwarfStringPool> StringPool; // Entries owned by Allocator. |
| 251 | std::vector<std::unique_ptr<CompileUnit>> CompileUnits; |
James Henderson | a3acf99 | 2018-05-10 10:51:33 +0000 | [diff] [blame] | 252 | std::vector<std::unique_ptr<LineTable>> LineTables; |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 253 | DIEAbbrevSet Abbreviations; |
| 254 | |
Pavel Labath | 7bfa5d6 | 2018-07-26 14:36:07 +0000 | [diff] [blame] | 255 | MCSymbol *StringOffsetsStartSym; |
| 256 | |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 257 | SmallString<4096> FileBytes; |
| 258 | /// The stream we use to generate the DWARF into as an ELF file. |
| 259 | std::unique_ptr<raw_svector_ostream> Stream; |
| 260 | /// The DWARF version to generate. |
| 261 | uint16_t Version; |
| 262 | |
| 263 | /// Private constructor, call Generator::Create(...) to get a DWARF generator |
| 264 | /// expected. |
| 265 | Generator(); |
| 266 | |
| 267 | /// Create the streamer and setup the output buffer. |
| 268 | llvm::Error init(Triple TheTriple, uint16_t DwarfVersion); |
| 269 | |
| 270 | public: |
| 271 | /// Create a DWARF generator or get an appropriate error. |
| 272 | /// |
| 273 | /// \param TheTriple the triple to use when creating any required support |
| 274 | /// classes needed to emit the DWARF. |
| 275 | /// \param DwarfVersion the version of DWARF to emit. |
| 276 | /// |
| 277 | /// \returns a llvm::Expected that either contains a unique_ptr to a Generator |
| 278 | /// or a llvm::Error. |
| 279 | static llvm::Expected<std::unique_ptr<Generator>> |
| 280 | create(Triple TheTriple, uint16_t DwarfVersion); |
| 281 | |
| 282 | ~Generator(); |
| 283 | |
| 284 | /// Generate all DWARF sections and return a memory buffer that |
| 285 | /// contains an ELF file that contains the DWARF. |
| 286 | StringRef generate(); |
| 287 | |
| 288 | /// Add a compile unit to be generated. |
| 289 | /// |
| 290 | /// \returns a dwarfgen::CompileUnit that can be used to retrieve the compile |
| 291 | /// unit dwarfgen::DIE that can be used to add attributes and add child DIE |
James Henderson | a3acf99 | 2018-05-10 10:51:33 +0000 | [diff] [blame] | 292 | /// objects to. |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 293 | dwarfgen::CompileUnit &addCompileUnit(); |
| 294 | |
James Henderson | a3acf99 | 2018-05-10 10:51:33 +0000 | [diff] [blame] | 295 | /// Add a line table unit to be generated. |
Simon Pilgrim | affbc99 | 2018-05-14 12:22:30 +0000 | [diff] [blame] | 296 | /// \param DwarfFormat the DWARF format to use (DWARF32 or DWARF64). |
James Henderson | a3acf99 | 2018-05-10 10:51:33 +0000 | [diff] [blame] | 297 | /// |
| 298 | /// \returns a dwarfgen::LineTable that can be used to customise the contents |
| 299 | /// of the line table. |
| 300 | LineTable & |
| 301 | addLineTable(dwarf::DwarfFormat DwarfFormat = dwarf::DwarfFormat::DWARF32); |
| 302 | |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 303 | BumpPtrAllocator &getAllocator() { return Allocator; } |
| 304 | AsmPrinter *getAsmPrinter() const { return Asm.get(); } |
George Rimar | 1af3cb2 | 2017-06-28 08:21:19 +0000 | [diff] [blame] | 305 | MCContext *getMCContext() const { return MC.get(); } |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 306 | DIEAbbrevSet &getAbbrevSet() { return Abbreviations; } |
| 307 | DwarfStringPool &getStringPool() { return *StringPool; } |
Pavel Labath | 7bfa5d6 | 2018-07-26 14:36:07 +0000 | [diff] [blame] | 308 | MCSymbol *getStringOffsetsStartSym() const { return StringOffsetsStartSym; } |
Greg Clayton | 3462a42 | 2016-12-08 01:03:48 +0000 | [diff] [blame] | 309 | |
| 310 | /// Save the generated DWARF file to disk. |
| 311 | /// |
| 312 | /// \param Path the path to save the ELF file to. |
| 313 | bool saveFile(StringRef Path); |
| 314 | }; |
| 315 | |
| 316 | } // end namespace dwarfgen |
| 317 | |
| 318 | } // end namespace llvm |
| 319 | |
Daniel Jasper | 0f77869 | 2016-12-08 12:45:29 +0000 | [diff] [blame] | 320 | #endif // LLVM_UNITTESTS_DEBUG_INFO_DWARF_DWARFGENERATOR_H |