1 //===-- llvm/CodeGen/DwarfUnit.cpp - Dwarf Type and Compile Units ---------===// 2 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file contains support for constructing a dwarf compile unit. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "DwarfUnit.h" 14 #include "AddressPool.h" 15 #include "DwarfCompileUnit.h" 16 #include "DwarfDebug.h" 17 #include "DwarfExpression.h" 18 #include "llvm/ADT/APFloat.h" 19 #include "llvm/ADT/APInt.h" 20 #include "llvm/ADT/None.h" 21 #include "llvm/ADT/StringExtras.h" 22 #include "llvm/ADT/iterator_range.h" 23 #include "llvm/CodeGen/MachineFunction.h" 24 #include "llvm/CodeGen/MachineOperand.h" 25 #include "llvm/CodeGen/TargetRegisterInfo.h" 26 #include "llvm/CodeGen/TargetSubtargetInfo.h" 27 #include "llvm/IR/Constants.h" 28 #include "llvm/IR/DataLayout.h" 29 #include "llvm/IR/GlobalValue.h" 30 #include "llvm/IR/Metadata.h" 31 #include "llvm/MC/MCAsmInfo.h" 32 #include "llvm/MC/MCContext.h" 33 #include "llvm/MC/MCDwarf.h" 34 #include "llvm/MC/MCSection.h" 35 #include "llvm/MC/MCStreamer.h" 36 #include "llvm/MC/MachineLocation.h" 37 #include "llvm/Support/Casting.h" 38 #include "llvm/Support/CommandLine.h" 39 #include "llvm/Target/TargetLoweringObjectFile.h" 40 #include <cassert> 41 #include <cstdint> 42 #include <string> 43 #include <utility> 44 45 using namespace llvm; 46 47 #define DEBUG_TYPE "dwarfdebug" 48 49 DIEDwarfExpression::DIEDwarfExpression(const AsmPrinter &AP, 50 DwarfCompileUnit &CU, 51 DIELoc &DIE) 52 : DwarfExpression(AP.getDwarfVersion(), CU), AP(AP), 53 DIE(DIE) {} 54 55 void DIEDwarfExpression::emitOp(uint8_t Op, const char* Comment) { 56 CU.addUInt(DIE, dwarf::DW_FORM_data1, Op); 57 } 58 59 void DIEDwarfExpression::emitSigned(int64_t Value) { 60 CU.addSInt(DIE, dwarf::DW_FORM_sdata, Value); 61 } 62 63 void DIEDwarfExpression::emitUnsigned(uint64_t Value) { 64 CU.addUInt(DIE, dwarf::DW_FORM_udata, Value); 65 } 66 67 void DIEDwarfExpression::emitData1(uint8_t Value) { 68 CU.addUInt(DIE, dwarf::DW_FORM_data1, Value); 69 } 70 71 void DIEDwarfExpression::emitBaseTypeRef(uint64_t Idx) { 72 CU.addBaseTypeRef(DIE, Idx); 73 } 74 75 bool DIEDwarfExpression::isFrameRegister(const TargetRegisterInfo &TRI, 76 unsigned MachineReg) { 77 return MachineReg == TRI.getFrameRegister(*AP.MF); 78 } 79 80 DwarfUnit::DwarfUnit(dwarf::Tag UnitTag, const DICompileUnit *Node, 81 AsmPrinter *A, DwarfDebug *DW, DwarfFile *DWU) 82 : DIEUnit(A->getDwarfVersion(), A->MAI->getCodePointerSize(), UnitTag), 83 CUNode(Node), Asm(A), DD(DW), DU(DWU), IndexTyDie(nullptr) { 84 } 85 86 DwarfTypeUnit::DwarfTypeUnit(DwarfCompileUnit &CU, AsmPrinter *A, 87 DwarfDebug *DW, DwarfFile *DWU, 88 MCDwarfDwoLineTable *SplitLineTable) 89 : DwarfUnit(dwarf::DW_TAG_type_unit, CU.getCUNode(), A, DW, DWU), CU(CU), 90 SplitLineTable(SplitLineTable) { 91 } 92 93 DwarfUnit::~DwarfUnit() { 94 for (unsigned j = 0, M = DIEBlocks.size(); j < M; ++j) 95 DIEBlocks[j]->~DIEBlock(); 96 for (unsigned j = 0, M = DIELocs.size(); j < M; ++j) 97 DIELocs[j]->~DIELoc(); 98 } 99 100 int64_t DwarfUnit::getDefaultLowerBound() const { 101 switch (getLanguage()) { 102 default: 103 break; 104 105 // The languages below have valid values in all DWARF versions. 106 case dwarf::DW_LANG_C: 107 case dwarf::DW_LANG_C89: 108 case dwarf::DW_LANG_C_plus_plus: 109 return 0; 110 111 case dwarf::DW_LANG_Fortran77: 112 case dwarf::DW_LANG_Fortran90: 113 return 1; 114 115 // The languages below have valid values only if the DWARF version >= 3. 116 case dwarf::DW_LANG_C99: 117 case dwarf::DW_LANG_ObjC: 118 case dwarf::DW_LANG_ObjC_plus_plus: 119 if (DD->getDwarfVersion() >= 3) 120 return 0; 121 break; 122 123 case dwarf::DW_LANG_Fortran95: 124 if (DD->getDwarfVersion() >= 3) 125 return 1; 126 break; 127 128 // Starting with DWARF v4, all defined languages have valid values. 129 case dwarf::DW_LANG_D: 130 case dwarf::DW_LANG_Java: 131 case dwarf::DW_LANG_Python: 132 case dwarf::DW_LANG_UPC: 133 if (DD->getDwarfVersion() >= 4) 134 return 0; 135 break; 136 137 case dwarf::DW_LANG_Ada83: 138 case dwarf::DW_LANG_Ada95: 139 case dwarf::DW_LANG_Cobol74: 140 case dwarf::DW_LANG_Cobol85: 141 case dwarf::DW_LANG_Modula2: 142 case dwarf::DW_LANG_Pascal83: 143 case dwarf::DW_LANG_PLI: 144 if (DD->getDwarfVersion() >= 4) 145 return 1; 146 break; 147 148 // The languages below are new in DWARF v5. 149 case dwarf::DW_LANG_BLISS: 150 case dwarf::DW_LANG_C11: 151 case dwarf::DW_LANG_C_plus_plus_03: 152 case dwarf::DW_LANG_C_plus_plus_11: 153 case dwarf::DW_LANG_C_plus_plus_14: 154 case dwarf::DW_LANG_Dylan: 155 case dwarf::DW_LANG_Go: 156 case dwarf::DW_LANG_Haskell: 157 case dwarf::DW_LANG_OCaml: 158 case dwarf::DW_LANG_OpenCL: 159 case dwarf::DW_LANG_RenderScript: 160 case dwarf::DW_LANG_Rust: 161 case dwarf::DW_LANG_Swift: 162 if (DD->getDwarfVersion() >= 5) 163 return 0; 164 break; 165 166 case dwarf::DW_LANG_Fortran03: 167 case dwarf::DW_LANG_Fortran08: 168 case dwarf::DW_LANG_Julia: 169 case dwarf::DW_LANG_Modula3: 170 if (DD->getDwarfVersion() >= 5) 171 return 1; 172 break; 173 } 174 175 return -1; 176 } 177 178 /// Check whether the DIE for this MDNode can be shared across CUs. 179 bool DwarfUnit::isShareableAcrossCUs(const DINode *D) const { 180 // When the MDNode can be part of the type system, the DIE can be shared 181 // across CUs. 182 // Combining type units and cross-CU DIE sharing is lower value (since 183 // cross-CU DIE sharing is used in LTO and removes type redundancy at that 184 // level already) but may be implementable for some value in projects 185 // building multiple independent libraries with LTO and then linking those 186 // together. 187 if (isDwoUnit() && !DD->shareAcrossDWOCUs()) 188 return false; 189 return (isa<DIType>(D) || 190 (isa<DISubprogram>(D) && !cast<DISubprogram>(D)->isDefinition())) && 191 !DD->generateTypeUnits(); 192 } 193 194 DIE *DwarfUnit::getDIE(const DINode *D) const { 195 if (isShareableAcrossCUs(D)) 196 return DU->getDIE(D); 197 return MDNodeToDieMap.lookup(D); 198 } 199 200 void DwarfUnit::insertDIE(const DINode *Desc, DIE *D) { 201 if (isShareableAcrossCUs(Desc)) { 202 DU->insertDIE(Desc, D); 203 return; 204 } 205 MDNodeToDieMap.insert(std::make_pair(Desc, D)); 206 } 207 208 void DwarfUnit::addFlag(DIE &Die, dwarf::Attribute Attribute) { 209 if (DD->getDwarfVersion() >= 4) 210 Die.addValue(DIEValueAllocator, Attribute, dwarf::DW_FORM_flag_present, 211 DIEInteger(1)); 212 else 213 Die.addValue(DIEValueAllocator, Attribute, dwarf::DW_FORM_flag, 214 DIEInteger(1)); 215 } 216 217 void DwarfUnit::addUInt(DIEValueList &Die, dwarf::Attribute Attribute, 218 Optional<dwarf::Form> Form, uint64_t Integer) { 219 if (!Form) 220 Form = DIEInteger::BestForm(false, Integer); 221 assert(Form != dwarf::DW_FORM_implicit_const && 222 "DW_FORM_implicit_const is used only for signed integers"); 223 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer)); 224 } 225 226 void DwarfUnit::addUInt(DIEValueList &Block, dwarf::Form Form, 227 uint64_t Integer) { 228 addUInt(Block, (dwarf::Attribute)0, Form, Integer); 229 } 230 231 void DwarfUnit::addSInt(DIEValueList &Die, dwarf::Attribute Attribute, 232 Optional<dwarf::Form> Form, int64_t Integer) { 233 if (!Form) 234 Form = DIEInteger::BestForm(true, Integer); 235 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer)); 236 } 237 238 void DwarfUnit::addSInt(DIELoc &Die, Optional<dwarf::Form> Form, 239 int64_t Integer) { 240 addSInt(Die, (dwarf::Attribute)0, Form, Integer); 241 } 242 243 void DwarfUnit::addString(DIE &Die, dwarf::Attribute Attribute, 244 StringRef String) { 245 if (CUNode->isDebugDirectivesOnly()) 246 return; 247 248 if (DD->useInlineStrings()) { 249 Die.addValue(DIEValueAllocator, Attribute, dwarf::DW_FORM_string, 250 new (DIEValueAllocator) 251 DIEInlineString(String, DIEValueAllocator)); 252 return; 253 } 254 dwarf::Form IxForm = 255 isDwoUnit() ? dwarf::DW_FORM_GNU_str_index : dwarf::DW_FORM_strp; 256 257 auto StringPoolEntry = 258 useSegmentedStringOffsetsTable() || IxForm == dwarf::DW_FORM_GNU_str_index 259 ? DU->getStringPool().getIndexedEntry(*Asm, String) 260 : DU->getStringPool().getEntry(*Asm, String); 261 262 // For DWARF v5 and beyond, use the smallest strx? form possible. 263 if (useSegmentedStringOffsetsTable()) { 264 IxForm = dwarf::DW_FORM_strx1; 265 unsigned Index = StringPoolEntry.getIndex(); 266 if (Index > 0xffffff) 267 IxForm = dwarf::DW_FORM_strx4; 268 else if (Index > 0xffff) 269 IxForm = dwarf::DW_FORM_strx3; 270 else if (Index > 0xff) 271 IxForm = dwarf::DW_FORM_strx2; 272 } 273 Die.addValue(DIEValueAllocator, Attribute, IxForm, 274 DIEString(StringPoolEntry)); 275 } 276 277 DIEValueList::value_iterator DwarfUnit::addLabel(DIEValueList &Die, 278 dwarf::Attribute Attribute, 279 dwarf::Form Form, 280 const MCSymbol *Label) { 281 return Die.addValue(DIEValueAllocator, Attribute, Form, DIELabel(Label)); 282 } 283 284 void DwarfUnit::addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) { 285 addLabel(Die, (dwarf::Attribute)0, Form, Label); 286 } 287 288 void DwarfUnit::addSectionOffset(DIE &Die, dwarf::Attribute Attribute, 289 uint64_t Integer) { 290 if (DD->getDwarfVersion() >= 4) 291 addUInt(Die, Attribute, dwarf::DW_FORM_sec_offset, Integer); 292 else 293 addUInt(Die, Attribute, dwarf::DW_FORM_data4, Integer); 294 } 295 296 Optional<MD5::MD5Result> DwarfUnit::getMD5AsBytes(const DIFile *File) const { 297 assert(File); 298 if (DD->getDwarfVersion() < 5) 299 return None; 300 Optional<DIFile::ChecksumInfo<StringRef>> Checksum = File->getChecksum(); 301 if (!Checksum || Checksum->Kind != DIFile::CSK_MD5) 302 return None; 303 304 // Convert the string checksum to an MD5Result for the streamer. 305 // The verifier validates the checksum so we assume it's okay. 306 // An MD5 checksum is 16 bytes. 307 std::string ChecksumString = fromHex(Checksum->Value); 308 MD5::MD5Result CKMem; 309 std::copy(ChecksumString.begin(), ChecksumString.end(), CKMem.Bytes.data()); 310 return CKMem; 311 } 312 313 unsigned DwarfTypeUnit::getOrCreateSourceID(const DIFile *File) { 314 if (!SplitLineTable) 315 return getCU().getOrCreateSourceID(File); 316 if (!UsedLineTable) { 317 UsedLineTable = true; 318 // This is a split type unit that needs a line table. 319 addSectionOffset(getUnitDie(), dwarf::DW_AT_stmt_list, 0); 320 } 321 return SplitLineTable->getFile(File->getDirectory(), File->getFilename(), 322 getMD5AsBytes(File), 323 Asm->OutContext.getDwarfVersion(), 324 File->getSource()); 325 } 326 327 void DwarfUnit::addOpAddress(DIELoc &Die, const MCSymbol *Sym) { 328 if (DD->getDwarfVersion() >= 5) { 329 addUInt(Die, dwarf::DW_FORM_data1, dwarf::DW_OP_addrx); 330 addUInt(Die, dwarf::DW_FORM_addrx, DD->getAddressPool().getIndex(Sym)); 331 return; 332 } 333 334 if (DD->useSplitDwarf()) { 335 addUInt(Die, dwarf::DW_FORM_data1, dwarf::DW_OP_GNU_addr_index); 336 addUInt(Die, dwarf::DW_FORM_GNU_addr_index, 337 DD->getAddressPool().getIndex(Sym)); 338 return; 339 } 340 341 addUInt(Die, dwarf::DW_FORM_data1, dwarf::DW_OP_addr); 342 addLabel(Die, dwarf::DW_FORM_udata, Sym); 343 } 344 345 void DwarfUnit::addLabelDelta(DIE &Die, dwarf::Attribute Attribute, 346 const MCSymbol *Hi, const MCSymbol *Lo) { 347 Die.addValue(DIEValueAllocator, Attribute, dwarf::DW_FORM_data4, 348 new (DIEValueAllocator) DIEDelta(Hi, Lo)); 349 } 350 351 void DwarfUnit::addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry) { 352 addDIEEntry(Die, Attribute, DIEEntry(Entry)); 353 } 354 355 void DwarfUnit::addDIETypeSignature(DIE &Die, uint64_t Signature) { 356 // Flag the type unit reference as a declaration so that if it contains 357 // members (implicit special members, static data member definitions, member 358 // declarations for definitions in this CU, etc) consumers don't get confused 359 // and think this is a full definition. 360 addFlag(Die, dwarf::DW_AT_declaration); 361 362 Die.addValue(DIEValueAllocator, dwarf::DW_AT_signature, 363 dwarf::DW_FORM_ref_sig8, DIEInteger(Signature)); 364 } 365 366 void DwarfUnit::addDIEEntry(DIE &Die, dwarf::Attribute Attribute, 367 DIEEntry Entry) { 368 const DIEUnit *CU = Die.getUnit(); 369 const DIEUnit *EntryCU = Entry.getEntry().getUnit(); 370 if (!CU) 371 // We assume that Die belongs to this CU, if it is not linked to any CU yet. 372 CU = getUnitDie().getUnit(); 373 if (!EntryCU) 374 EntryCU = getUnitDie().getUnit(); 375 Die.addValue(DIEValueAllocator, Attribute, 376 EntryCU == CU ? dwarf::DW_FORM_ref4 : dwarf::DW_FORM_ref_addr, 377 Entry); 378 } 379 380 DIE &DwarfUnit::createAndAddDIE(unsigned Tag, DIE &Parent, const DINode *N) { 381 DIE &Die = Parent.addChild(DIE::get(DIEValueAllocator, (dwarf::Tag)Tag)); 382 if (N) 383 insertDIE(N, &Die); 384 return Die; 385 } 386 387 void DwarfUnit::addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Loc) { 388 Loc->ComputeSize(Asm); 389 DIELocs.push_back(Loc); // Memoize so we can call the destructor later on. 390 Die.addValue(DIEValueAllocator, Attribute, 391 Loc->BestForm(DD->getDwarfVersion()), Loc); 392 } 393 394 void DwarfUnit::addBlock(DIE &Die, dwarf::Attribute Attribute, 395 DIEBlock *Block) { 396 Block->ComputeSize(Asm); 397 DIEBlocks.push_back(Block); // Memoize so we can call the destructor later on. 398 Die.addValue(DIEValueAllocator, Attribute, Block->BestForm(), Block); 399 } 400 401 void DwarfUnit::addSourceLine(DIE &Die, unsigned Line, const DIFile *File) { 402 if (Line == 0) 403 return; 404 405 unsigned FileID = getOrCreateSourceID(File); 406 addUInt(Die, dwarf::DW_AT_decl_file, None, FileID); 407 addUInt(Die, dwarf::DW_AT_decl_line, None, Line); 408 } 409 410 void DwarfUnit::addSourceLine(DIE &Die, const DILocalVariable *V) { 411 assert(V); 412 413 addSourceLine(Die, V->getLine(), V->getFile()); 414 } 415 416 void DwarfUnit::addSourceLine(DIE &Die, const DIGlobalVariable *G) { 417 assert(G); 418 419 addSourceLine(Die, G->getLine(), G->getFile()); 420 } 421 422 void DwarfUnit::addSourceLine(DIE &Die, const DISubprogram *SP) { 423 assert(SP); 424 425 addSourceLine(Die, SP->getLine(), SP->getFile()); 426 } 427 428 void DwarfUnit::addSourceLine(DIE &Die, const DILabel *L) { 429 assert(L); 430 431 addSourceLine(Die, L->getLine(), L->getFile()); 432 } 433 434 void DwarfUnit::addSourceLine(DIE &Die, const DIType *Ty) { 435 assert(Ty); 436 437 addSourceLine(Die, Ty->getLine(), Ty->getFile()); 438 } 439 440 void DwarfUnit::addSourceLine(DIE &Die, const DIObjCProperty *Ty) { 441 assert(Ty); 442 443 addSourceLine(Die, Ty->getLine(), Ty->getFile()); 444 } 445 446 /// Return true if type encoding is unsigned. 447 static bool isUnsignedDIType(DwarfDebug *DD, const DIType *Ty) { 448 if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { 449 // FIXME: Enums without a fixed underlying type have unknown signedness 450 // here, leading to incorrectly emitted constants. 451 if (CTy->getTag() == dwarf::DW_TAG_enumeration_type) 452 return false; 453 454 // (Pieces of) aggregate types that get hacked apart by SROA may be 455 // represented by a constant. Encode them as unsigned bytes. 456 return true; 457 } 458 459 if (auto *DTy = dyn_cast<DIDerivedType>(Ty)) { 460 dwarf::Tag T = (dwarf::Tag)Ty->getTag(); 461 // Encode pointer constants as unsigned bytes. This is used at least for 462 // null pointer constant emission. 463 // FIXME: reference and rvalue_reference /probably/ shouldn't be allowed 464 // here, but accept them for now due to a bug in SROA producing bogus 465 // dbg.values. 466 if (T == dwarf::DW_TAG_pointer_type || 467 T == dwarf::DW_TAG_ptr_to_member_type || 468 T == dwarf::DW_TAG_reference_type || 469 T == dwarf::DW_TAG_rvalue_reference_type) 470 return true; 471 assert(T == dwarf::DW_TAG_typedef || T == dwarf::DW_TAG_const_type || 472 T == dwarf::DW_TAG_volatile_type || 473 T == dwarf::DW_TAG_restrict_type || T == dwarf::DW_TAG_atomic_type); 474 DITypeRef Deriv = DTy->getBaseType(); 475 assert(Deriv && "Expected valid base type"); 476 return isUnsignedDIType(DD, DD->resolve(Deriv)); 477 } 478 479 auto *BTy = cast<DIBasicType>(Ty); 480 unsigned Encoding = BTy->getEncoding(); 481 assert((Encoding == dwarf::DW_ATE_unsigned || 482 Encoding == dwarf::DW_ATE_unsigned_char || 483 Encoding == dwarf::DW_ATE_signed || 484 Encoding == dwarf::DW_ATE_signed_char || 485 Encoding == dwarf::DW_ATE_float || Encoding == dwarf::DW_ATE_UTF || 486 Encoding == dwarf::DW_ATE_boolean || 487 (Ty->getTag() == dwarf::DW_TAG_unspecified_type && 488 Ty->getName() == "decltype(nullptr)")) && 489 "Unsupported encoding"); 490 return Encoding == dwarf::DW_ATE_unsigned || 491 Encoding == dwarf::DW_ATE_unsigned_char || 492 Encoding == dwarf::DW_ATE_UTF || Encoding == dwarf::DW_ATE_boolean || 493 Ty->getTag() == dwarf::DW_TAG_unspecified_type; 494 } 495 496 void DwarfUnit::addConstantFPValue(DIE &Die, const MachineOperand &MO) { 497 assert(MO.isFPImm() && "Invalid machine operand!"); 498 DIEBlock *Block = new (DIEValueAllocator) DIEBlock; 499 APFloat FPImm = MO.getFPImm()->getValueAPF(); 500 501 // Get the raw data form of the floating point. 502 const APInt FltVal = FPImm.bitcastToAPInt(); 503 const char *FltPtr = (const char *)FltVal.getRawData(); 504 505 int NumBytes = FltVal.getBitWidth() / 8; // 8 bits per byte. 506 bool LittleEndian = Asm->getDataLayout().isLittleEndian(); 507 int Incr = (LittleEndian ? 1 : -1); 508 int Start = (LittleEndian ? 0 : NumBytes - 1); 509 int Stop = (LittleEndian ? NumBytes : -1); 510 511 // Output the constant to DWARF one byte at a time. 512 for (; Start != Stop; Start += Incr) 513 addUInt(*Block, dwarf::DW_FORM_data1, (unsigned char)0xFF & FltPtr[Start]); 514 515 addBlock(Die, dwarf::DW_AT_const_value, Block); 516 } 517 518 void DwarfUnit::addConstantFPValue(DIE &Die, const ConstantFP *CFP) { 519 // Pass this down to addConstantValue as an unsigned bag of bits. 520 addConstantValue(Die, CFP->getValueAPF().bitcastToAPInt(), true); 521 } 522 523 void DwarfUnit::addConstantValue(DIE &Die, const ConstantInt *CI, 524 const DIType *Ty) { 525 addConstantValue(Die, CI->getValue(), Ty); 526 } 527 528 void DwarfUnit::addConstantValue(DIE &Die, const MachineOperand &MO, 529 const DIType *Ty) { 530 assert(MO.isImm() && "Invalid machine operand!"); 531 532 addConstantValue(Die, isUnsignedDIType(DD, Ty), MO.getImm()); 533 } 534 535 void DwarfUnit::addConstantValue(DIE &Die, bool Unsigned, uint64_t Val) { 536 // FIXME: This is a bit conservative/simple - it emits negative values always 537 // sign extended to 64 bits rather than minimizing the number of bytes. 538 addUInt(Die, dwarf::DW_AT_const_value, 539 Unsigned ? dwarf::DW_FORM_udata : dwarf::DW_FORM_sdata, Val); 540 } 541 542 void DwarfUnit::addConstantValue(DIE &Die, const APInt &Val, const DIType *Ty) { 543 addConstantValue(Die, Val, isUnsignedDIType(DD, Ty)); 544 } 545 546 void DwarfUnit::addConstantValue(DIE &Die, const APInt &Val, bool Unsigned) { 547 unsigned CIBitWidth = Val.getBitWidth(); 548 if (CIBitWidth <= 64) { 549 addConstantValue(Die, Unsigned, 550 Unsigned ? Val.getZExtValue() : Val.getSExtValue()); 551 return; 552 } 553 554 DIEBlock *Block = new (DIEValueAllocator) DIEBlock; 555 556 // Get the raw data form of the large APInt. 557 const uint64_t *Ptr64 = Val.getRawData(); 558 559 int NumBytes = Val.getBitWidth() / 8; // 8 bits per byte. 560 bool LittleEndian = Asm->getDataLayout().isLittleEndian(); 561 562 // Output the constant to DWARF one byte at a time. 563 for (int i = 0; i < NumBytes; i++) { 564 uint8_t c; 565 if (LittleEndian) 566 c = Ptr64[i / 8] >> (8 * (i & 7)); 567 else 568 c = Ptr64[(NumBytes - 1 - i) / 8] >> (8 * ((NumBytes - 1 - i) & 7)); 569 addUInt(*Block, dwarf::DW_FORM_data1, c); 570 } 571 572 addBlock(Die, dwarf::DW_AT_const_value, Block); 573 } 574 575 void DwarfUnit::addLinkageName(DIE &Die, StringRef LinkageName) { 576 if (!LinkageName.empty()) 577 addString(Die, 578 DD->getDwarfVersion() >= 4 ? dwarf::DW_AT_linkage_name 579 : dwarf::DW_AT_MIPS_linkage_name, 580 GlobalValue::dropLLVMManglingEscape(LinkageName)); 581 } 582 583 void DwarfUnit::addTemplateParams(DIE &Buffer, DINodeArray TParams) { 584 // Add template parameters. 585 for (const auto *Element : TParams) { 586 if (auto *TTP = dyn_cast<DITemplateTypeParameter>(Element)) 587 constructTemplateTypeParameterDIE(Buffer, TTP); 588 else if (auto *TVP = dyn_cast<DITemplateValueParameter>(Element)) 589 constructTemplateValueParameterDIE(Buffer, TVP); 590 } 591 } 592 593 /// Add thrown types. 594 void DwarfUnit::addThrownTypes(DIE &Die, DINodeArray ThrownTypes) { 595 for (const auto *Ty : ThrownTypes) { 596 DIE &TT = createAndAddDIE(dwarf::DW_TAG_thrown_type, Die); 597 addType(TT, cast<DIType>(Ty)); 598 } 599 } 600 601 DIE *DwarfUnit::getOrCreateContextDIE(const DIScope *Context) { 602 if (!Context || isa<DIFile>(Context)) 603 return &getUnitDie(); 604 if (auto *T = dyn_cast<DIType>(Context)) 605 return getOrCreateTypeDIE(T); 606 if (auto *NS = dyn_cast<DINamespace>(Context)) 607 return getOrCreateNameSpace(NS); 608 if (auto *SP = dyn_cast<DISubprogram>(Context)) 609 return getOrCreateSubprogramDIE(SP); 610 if (auto *M = dyn_cast<DIModule>(Context)) 611 return getOrCreateModule(M); 612 return getDIE(Context); 613 } 614 615 DIE *DwarfUnit::createTypeDIE(const DICompositeType *Ty) { 616 auto *Context = resolve(Ty->getScope()); 617 DIE *ContextDIE = getOrCreateContextDIE(Context); 618 619 if (DIE *TyDIE = getDIE(Ty)) 620 return TyDIE; 621 622 // Create new type. 623 DIE &TyDIE = createAndAddDIE(Ty->getTag(), *ContextDIE, Ty); 624 625 constructTypeDIE(TyDIE, cast<DICompositeType>(Ty)); 626 627 updateAcceleratorTables(Context, Ty, TyDIE); 628 return &TyDIE; 629 } 630 631 DIE *DwarfUnit::createTypeDIE(const DIScope *Context, DIE &ContextDIE, 632 const DIType *Ty) { 633 // Create new type. 634 DIE &TyDIE = createAndAddDIE(Ty->getTag(), ContextDIE, Ty); 635 636 updateAcceleratorTables(Context, Ty, TyDIE); 637 638 if (auto *BT = dyn_cast<DIBasicType>(Ty)) 639 constructTypeDIE(TyDIE, BT); 640 else if (auto *STy = dyn_cast<DISubroutineType>(Ty)) 641 constructTypeDIE(TyDIE, STy); 642 else if (auto *CTy = dyn_cast<DICompositeType>(Ty)) { 643 if (DD->generateTypeUnits() && !Ty->isForwardDecl()) { 644 // Skip updating the accelerator tables since this is not the full type. 645 if (MDString *TypeId = CTy->getRawIdentifier()) 646 DD->addDwarfTypeUnitType(getCU(), TypeId->getString(), TyDIE, CTy); 647 else { 648 auto X = DD->enterNonTypeUnitContext(); 649 finishNonUnitTypeDIE(TyDIE, CTy); 650 } 651 return &TyDIE; 652 } 653 constructTypeDIE(TyDIE, CTy); 654 } else { 655 constructTypeDIE(TyDIE, cast<DIDerivedType>(Ty)); 656 } 657 658 return &TyDIE; 659 } 660 661 DIE *DwarfUnit::getOrCreateTypeDIE(const MDNode *TyNode) { 662 if (!TyNode) 663 return nullptr; 664 665 auto *Ty = cast<DIType>(TyNode); 666 667 // DW_TAG_restrict_type is not supported in DWARF2 668 if (Ty->getTag() == dwarf::DW_TAG_restrict_type && DD->getDwarfVersion() <= 2) 669 return getOrCreateTypeDIE(resolve(cast<DIDerivedType>(Ty)->getBaseType())); 670 671 // DW_TAG_atomic_type is not supported in DWARF < 5 672 if (Ty->getTag() == dwarf::DW_TAG_atomic_type && DD->getDwarfVersion() < 5) 673 return getOrCreateTypeDIE(resolve(cast<DIDerivedType>(Ty)->getBaseType())); 674 675 // Construct the context before querying for the existence of the DIE in case 676 // such construction creates the DIE. 677 auto *Context = resolve(Ty->getScope()); 678 DIE *ContextDIE = getOrCreateContextDIE(Context); 679 assert(ContextDIE); 680 681 if (DIE *TyDIE = getDIE(Ty)) 682 return TyDIE; 683 684 return static_cast<DwarfUnit *>(ContextDIE->getUnit()) 685 ->createTypeDIE(Context, *ContextDIE, Ty); 686 } 687 688 void DwarfUnit::updateAcceleratorTables(const DIScope *Context, 689 const DIType *Ty, const DIE &TyDIE) { 690 if (!Ty->getName().empty() && !Ty->isForwardDecl()) { 691 bool IsImplementation = false; 692 if (auto *CT = dyn_cast<DICompositeType>(Ty)) { 693 // A runtime language of 0 actually means C/C++ and that any 694 // non-negative value is some version of Objective-C/C++. 695 IsImplementation = CT->getRuntimeLang() == 0 || CT->isObjcClassComplete(); 696 } 697 unsigned Flags = IsImplementation ? dwarf::DW_FLAG_type_implementation : 0; 698 DD->addAccelType(*CUNode, Ty->getName(), TyDIE, Flags); 699 700 if (!Context || isa<DICompileUnit>(Context) || isa<DIFile>(Context) || 701 isa<DINamespace>(Context) || isa<DICommonBlock>(Context)) 702 addGlobalType(Ty, TyDIE, Context); 703 } 704 } 705 706 void DwarfUnit::addType(DIE &Entity, const DIType *Ty, 707 dwarf::Attribute Attribute) { 708 assert(Ty && "Trying to add a type that doesn't exist?"); 709 addDIEEntry(Entity, Attribute, DIEEntry(*getOrCreateTypeDIE(Ty))); 710 } 711 712 std::string DwarfUnit::getParentContextString(const DIScope *Context) const { 713 if (!Context) 714 return ""; 715 716 // FIXME: Decide whether to implement this for non-C++ languages. 717 if (getLanguage() != dwarf::DW_LANG_C_plus_plus) 718 return ""; 719 720 std::string CS; 721 SmallVector<const DIScope *, 1> Parents; 722 while (!isa<DICompileUnit>(Context)) { 723 Parents.push_back(Context); 724 if (Context->getScope()) 725 Context = resolve(Context->getScope()); 726 else 727 // Structure, etc types will have a NULL context if they're at the top 728 // level. 729 break; 730 } 731 732 // Reverse iterate over our list to go from the outermost construct to the 733 // innermost. 734 for (const DIScope *Ctx : make_range(Parents.rbegin(), Parents.rend())) { 735 StringRef Name = Ctx->getName(); 736 if (Name.empty() && isa<DINamespace>(Ctx)) 737 Name = "(anonymous namespace)"; 738 if (!Name.empty()) { 739 CS += Name; 740 CS += "::"; 741 } 742 } 743 return CS; 744 } 745 746 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DIBasicType *BTy) { 747 // Get core information. 748 StringRef Name = BTy->getName(); 749 // Add name if not anonymous or intermediate type. 750 if (!Name.empty()) 751 addString(Buffer, dwarf::DW_AT_name, Name); 752 753 // An unspecified type only has a name attribute. 754 if (BTy->getTag() == dwarf::DW_TAG_unspecified_type) 755 return; 756 757 addUInt(Buffer, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1, 758 BTy->getEncoding()); 759 760 uint64_t Size = BTy->getSizeInBits() >> 3; 761 addUInt(Buffer, dwarf::DW_AT_byte_size, None, Size); 762 763 if (BTy->isBigEndian()) 764 addUInt(Buffer, dwarf::DW_AT_endianity, None, dwarf::DW_END_big); 765 else if (BTy->isLittleEndian()) 766 addUInt(Buffer, dwarf::DW_AT_endianity, None, dwarf::DW_END_little); 767 } 768 769 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DIDerivedType *DTy) { 770 // Get core information. 771 StringRef Name = DTy->getName(); 772 uint64_t Size = DTy->getSizeInBits() >> 3; 773 uint16_t Tag = Buffer.getTag(); 774 775 // Map to main type, void will not have a type. 776 const DIType *FromTy = resolve(DTy->getBaseType()); 777 if (FromTy) 778 addType(Buffer, FromTy); 779 780 // Add name if not anonymous or intermediate type. 781 if (!Name.empty()) 782 addString(Buffer, dwarf::DW_AT_name, Name); 783 784 // Add size if non-zero (derived types might be zero-sized.) 785 if (Size && Tag != dwarf::DW_TAG_pointer_type 786 && Tag != dwarf::DW_TAG_ptr_to_member_type 787 && Tag != dwarf::DW_TAG_reference_type 788 && Tag != dwarf::DW_TAG_rvalue_reference_type) 789 addUInt(Buffer, dwarf::DW_AT_byte_size, None, Size); 790 791 if (Tag == dwarf::DW_TAG_ptr_to_member_type) 792 addDIEEntry( 793 Buffer, dwarf::DW_AT_containing_type, 794 *getOrCreateTypeDIE(resolve(cast<DIDerivedType>(DTy)->getClassType()))); 795 // Add source line info if available and TyDesc is not a forward declaration. 796 if (!DTy->isForwardDecl()) 797 addSourceLine(Buffer, DTy); 798 799 // If DWARF address space value is other than None, add it for pointer and 800 // reference types as DW_AT_address_class. 801 if (DTy->getDWARFAddressSpace() && (Tag == dwarf::DW_TAG_pointer_type || 802 Tag == dwarf::DW_TAG_reference_type)) 803 addUInt(Buffer, dwarf::DW_AT_address_class, dwarf::DW_FORM_data4, 804 DTy->getDWARFAddressSpace().getValue()); 805 } 806 807 void DwarfUnit::constructSubprogramArguments(DIE &Buffer, DITypeRefArray Args) { 808 for (unsigned i = 1, N = Args.size(); i < N; ++i) { 809 const DIType *Ty = resolve(Args[i]); 810 if (!Ty) { 811 assert(i == N-1 && "Unspecified parameter must be the last argument"); 812 createAndAddDIE(dwarf::DW_TAG_unspecified_parameters, Buffer); 813 } else { 814 DIE &Arg = createAndAddDIE(dwarf::DW_TAG_formal_parameter, Buffer); 815 addType(Arg, Ty); 816 if (Ty->isArtificial()) 817 addFlag(Arg, dwarf::DW_AT_artificial); 818 } 819 } 820 } 821 822 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DISubroutineType *CTy) { 823 // Add return type. A void return won't have a type. 824 auto Elements = cast<DISubroutineType>(CTy)->getTypeArray(); 825 if (Elements.size()) 826 if (auto RTy = resolve(Elements[0])) 827 addType(Buffer, RTy); 828 829 bool isPrototyped = true; 830 if (Elements.size() == 2 && !Elements[1]) 831 isPrototyped = false; 832 833 constructSubprogramArguments(Buffer, Elements); 834 835 // Add prototype flag if we're dealing with a C language and the function has 836 // been prototyped. 837 uint16_t Language = getLanguage(); 838 if (isPrototyped && 839 (Language == dwarf::DW_LANG_C89 || Language == dwarf::DW_LANG_C99 || 840 Language == dwarf::DW_LANG_ObjC)) 841 addFlag(Buffer, dwarf::DW_AT_prototyped); 842 843 // Add a DW_AT_calling_convention if this has an explicit convention. 844 if (CTy->getCC() && CTy->getCC() != dwarf::DW_CC_normal) 845 addUInt(Buffer, dwarf::DW_AT_calling_convention, dwarf::DW_FORM_data1, 846 CTy->getCC()); 847 848 if (CTy->isLValueReference()) 849 addFlag(Buffer, dwarf::DW_AT_reference); 850 851 if (CTy->isRValueReference()) 852 addFlag(Buffer, dwarf::DW_AT_rvalue_reference); 853 } 854 855 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DICompositeType *CTy) { 856 // Add name if not anonymous or intermediate type. 857 StringRef Name = CTy->getName(); 858 859 uint64_t Size = CTy->getSizeInBits() >> 3; 860 uint16_t Tag = Buffer.getTag(); 861 862 switch (Tag) { 863 case dwarf::DW_TAG_array_type: 864 constructArrayTypeDIE(Buffer, CTy); 865 break; 866 case dwarf::DW_TAG_enumeration_type: 867 constructEnumTypeDIE(Buffer, CTy); 868 break; 869 case dwarf::DW_TAG_variant_part: 870 case dwarf::DW_TAG_structure_type: 871 case dwarf::DW_TAG_union_type: 872 case dwarf::DW_TAG_class_type: { 873 // Emit the discriminator for a variant part. 874 DIDerivedType *Discriminator = nullptr; 875 if (Tag == dwarf::DW_TAG_variant_part) { 876 Discriminator = CTy->getDiscriminator(); 877 if (Discriminator) { 878 // DWARF says: 879 // If the variant part has a discriminant, the discriminant is 880 // represented by a separate debugging information entry which is 881 // a child of the variant part entry. 882 DIE &DiscMember = constructMemberDIE(Buffer, Discriminator); 883 addDIEEntry(Buffer, dwarf::DW_AT_discr, DiscMember); 884 } 885 } 886 887 // Add elements to structure type. 888 DINodeArray Elements = CTy->getElements(); 889 for (const auto *Element : Elements) { 890 if (!Element) 891 continue; 892 if (auto *SP = dyn_cast<DISubprogram>(Element)) 893 getOrCreateSubprogramDIE(SP); 894 else if (auto *DDTy = dyn_cast<DIDerivedType>(Element)) { 895 if (DDTy->getTag() == dwarf::DW_TAG_friend) { 896 DIE &ElemDie = createAndAddDIE(dwarf::DW_TAG_friend, Buffer); 897 addType(ElemDie, resolve(DDTy->getBaseType()), dwarf::DW_AT_friend); 898 } else if (DDTy->isStaticMember()) { 899 getOrCreateStaticMemberDIE(DDTy); 900 } else if (Tag == dwarf::DW_TAG_variant_part) { 901 // When emitting a variant part, wrap each member in 902 // DW_TAG_variant. 903 DIE &Variant = createAndAddDIE(dwarf::DW_TAG_variant, Buffer); 904 if (const ConstantInt *CI = 905 dyn_cast_or_null<ConstantInt>(DDTy->getDiscriminantValue())) { 906 if (isUnsignedDIType(DD, resolve(Discriminator->getBaseType()))) 907 addUInt(Variant, dwarf::DW_AT_discr_value, None, CI->getZExtValue()); 908 else 909 addSInt(Variant, dwarf::DW_AT_discr_value, None, CI->getSExtValue()); 910 } 911 constructMemberDIE(Variant, DDTy); 912 } else { 913 constructMemberDIE(Buffer, DDTy); 914 } 915 } else if (auto *Property = dyn_cast<DIObjCProperty>(Element)) { 916 DIE &ElemDie = createAndAddDIE(Property->getTag(), Buffer); 917 StringRef PropertyName = Property->getName(); 918 addString(ElemDie, dwarf::DW_AT_APPLE_property_name, PropertyName); 919 if (Property->getType()) 920 addType(ElemDie, resolve(Property->getType())); 921 addSourceLine(ElemDie, Property); 922 StringRef GetterName = Property->getGetterName(); 923 if (!GetterName.empty()) 924 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName); 925 StringRef SetterName = Property->getSetterName(); 926 if (!SetterName.empty()) 927 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); 928 if (unsigned PropertyAttributes = Property->getAttributes()) 929 addUInt(ElemDie, dwarf::DW_AT_APPLE_property_attribute, None, 930 PropertyAttributes); 931 } else if (auto *Composite = dyn_cast<DICompositeType>(Element)) { 932 if (Composite->getTag() == dwarf::DW_TAG_variant_part) { 933 DIE &VariantPart = createAndAddDIE(Composite->getTag(), Buffer); 934 constructTypeDIE(VariantPart, Composite); 935 } 936 } 937 } 938 939 if (CTy->isAppleBlockExtension()) 940 addFlag(Buffer, dwarf::DW_AT_APPLE_block); 941 942 // This is outside the DWARF spec, but GDB expects a DW_AT_containing_type 943 // inside C++ composite types to point to the base class with the vtable. 944 // Rust uses DW_AT_containing_type to link a vtable to the type 945 // for which it was created. 946 if (auto *ContainingType = resolve(CTy->getVTableHolder())) 947 addDIEEntry(Buffer, dwarf::DW_AT_containing_type, 948 *getOrCreateTypeDIE(ContainingType)); 949 950 if (CTy->isObjcClassComplete()) 951 addFlag(Buffer, dwarf::DW_AT_APPLE_objc_complete_type); 952 953 // Add template parameters to a class, structure or union types. 954 // FIXME: The support isn't in the metadata for this yet. 955 if (Tag == dwarf::DW_TAG_class_type || 956 Tag == dwarf::DW_TAG_structure_type || Tag == dwarf::DW_TAG_union_type) 957 addTemplateParams(Buffer, CTy->getTemplateParams()); 958 959 // Add the type's non-standard calling convention. 960 uint8_t CC = 0; 961 if (CTy->isTypePassByValue()) 962 CC = dwarf::DW_CC_pass_by_value; 963 else if (CTy->isTypePassByReference()) 964 CC = dwarf::DW_CC_pass_by_reference; 965 if (CC) 966 addUInt(Buffer, dwarf::DW_AT_calling_convention, dwarf::DW_FORM_data1, 967 CC); 968 break; 969 } 970 default: 971 break; 972 } 973 974 // Add name if not anonymous or intermediate type. 975 if (!Name.empty()) 976 addString(Buffer, dwarf::DW_AT_name, Name); 977 978 if (Tag == dwarf::DW_TAG_enumeration_type || 979 Tag == dwarf::DW_TAG_class_type || Tag == dwarf::DW_TAG_structure_type || 980 Tag == dwarf::DW_TAG_union_type) { 981 // Add size if non-zero (derived types might be zero-sized.) 982 // TODO: Do we care about size for enum forward declarations? 983 if (Size) 984 addUInt(Buffer, dwarf::DW_AT_byte_size, None, Size); 985 else if (!CTy->isForwardDecl()) 986 // Add zero size if it is not a forward declaration. 987 addUInt(Buffer, dwarf::DW_AT_byte_size, None, 0); 988 989 // If we're a forward decl, say so. 990 if (CTy->isForwardDecl()) 991 addFlag(Buffer, dwarf::DW_AT_declaration); 992 993 // Add source line info if available. 994 if (!CTy->isForwardDecl()) 995 addSourceLine(Buffer, CTy); 996 997 // No harm in adding the runtime language to the declaration. 998 unsigned RLang = CTy->getRuntimeLang(); 999 if (RLang) 1000 addUInt(Buffer, dwarf::DW_AT_APPLE_runtime_class, dwarf::DW_FORM_data1, 1001 RLang); 1002 1003 // Add align info if available. 1004 if (uint32_t AlignInBytes = CTy->getAlignInBytes()) 1005 addUInt(Buffer, dwarf::DW_AT_alignment, dwarf::DW_FORM_udata, 1006 AlignInBytes); 1007 } 1008 } 1009 1010 void DwarfUnit::constructTemplateTypeParameterDIE( 1011 DIE &Buffer, const DITemplateTypeParameter *TP) { 1012 DIE &ParamDIE = 1013 createAndAddDIE(dwarf::DW_TAG_template_type_parameter, Buffer); 1014 // Add the type if it exists, it could be void and therefore no type. 1015 if (TP->getType()) 1016 addType(ParamDIE, resolve(TP->getType())); 1017 if (!TP->getName().empty()) 1018 addString(ParamDIE, dwarf::DW_AT_name, TP->getName()); 1019 } 1020 1021 void DwarfUnit::constructTemplateValueParameterDIE( 1022 DIE &Buffer, const DITemplateValueParameter *VP) { 1023 DIE &ParamDIE = createAndAddDIE(VP->getTag(), Buffer); 1024 1025 // Add the type if there is one, template template and template parameter 1026 // packs will not have a type. 1027 if (VP->getTag() == dwarf::DW_TAG_template_value_parameter) 1028 addType(ParamDIE, resolve(VP->getType())); 1029 if (!VP->getName().empty()) 1030 addString(ParamDIE, dwarf::DW_AT_name, VP->getName()); 1031 if (Metadata *Val = VP->getValue()) { 1032 if (ConstantInt *CI = mdconst::dyn_extract<ConstantInt>(Val)) 1033 addConstantValue(ParamDIE, CI, resolve(VP->getType())); 1034 else if (GlobalValue *GV = mdconst::dyn_extract<GlobalValue>(Val)) { 1035 // We cannot describe the location of dllimport'd entities: the 1036 // computation of their address requires loads from the IAT. 1037 if (!GV->hasDLLImportStorageClass()) { 1038 // For declaration non-type template parameters (such as global values 1039 // and functions) 1040 DIELoc *Loc = new (DIEValueAllocator) DIELoc; 1041 addOpAddress(*Loc, Asm->getSymbol(GV)); 1042 // Emit DW_OP_stack_value to use the address as the immediate value of 1043 // the parameter, rather than a pointer to it. 1044 addUInt(*Loc, dwarf::DW_FORM_data1, dwarf::DW_OP_stack_value); 1045 addBlock(ParamDIE, dwarf::DW_AT_location, Loc); 1046 } 1047 } else if (VP->getTag() == dwarf::DW_TAG_GNU_template_template_param) { 1048 assert(isa<MDString>(Val)); 1049 addString(ParamDIE, dwarf::DW_AT_GNU_template_name, 1050 cast<MDString>(Val)->getString()); 1051 } else if (VP->getTag() == dwarf::DW_TAG_GNU_template_parameter_pack) { 1052 addTemplateParams(ParamDIE, cast<MDTuple>(Val)); 1053 } 1054 } 1055 } 1056 1057 DIE *DwarfUnit::getOrCreateNameSpace(const DINamespace *NS) { 1058 // Construct the context before querying for the existence of the DIE in case 1059 // such construction creates the DIE. 1060 DIE *ContextDIE = getOrCreateContextDIE(NS->getScope()); 1061 1062 if (DIE *NDie = getDIE(NS)) 1063 return NDie; 1064 DIE &NDie = createAndAddDIE(dwarf::DW_TAG_namespace, *ContextDIE, NS); 1065 1066 StringRef Name = NS->getName(); 1067 if (!Name.empty()) 1068 addString(NDie, dwarf::DW_AT_name, NS->getName()); 1069 else 1070 Name = "(anonymous namespace)"; 1071 DD->addAccelNamespace(*CUNode, Name, NDie); 1072 addGlobalName(Name, NDie, NS->getScope()); 1073 if (NS->getExportSymbols()) 1074 addFlag(NDie, dwarf::DW_AT_export_symbols); 1075 return &NDie; 1076 } 1077 1078 DIE *DwarfUnit::getOrCreateModule(const DIModule *M) { 1079 // Construct the context before querying for the existence of the DIE in case 1080 // such construction creates the DIE. 1081 DIE *ContextDIE = getOrCreateContextDIE(M->getScope()); 1082 1083 if (DIE *MDie = getDIE(M)) 1084 return MDie; 1085 DIE &MDie = createAndAddDIE(dwarf::DW_TAG_module, *ContextDIE, M); 1086 1087 if (!M->getName().empty()) { 1088 addString(MDie, dwarf::DW_AT_name, M->getName()); 1089 addGlobalName(M->getName(), MDie, M->getScope()); 1090 } 1091 if (!M->getConfigurationMacros().empty()) 1092 addString(MDie, dwarf::DW_AT_LLVM_config_macros, 1093 M->getConfigurationMacros()); 1094 if (!M->getIncludePath().empty()) 1095 addString(MDie, dwarf::DW_AT_LLVM_include_path, M->getIncludePath()); 1096 if (!M->getISysRoot().empty()) 1097 addString(MDie, dwarf::DW_AT_LLVM_isysroot, M->getISysRoot()); 1098 1099 return &MDie; 1100 } 1101 1102 DIE *DwarfUnit::getOrCreateSubprogramDIE(const DISubprogram *SP, bool Minimal) { 1103 // Construct the context before querying for the existence of the DIE in case 1104 // such construction creates the DIE (as is the case for member function 1105 // declarations). 1106 DIE *ContextDIE = 1107 Minimal ? &getUnitDie() : getOrCreateContextDIE(resolve(SP->getScope())); 1108 1109 if (DIE *SPDie = getDIE(SP)) 1110 return SPDie; 1111 1112 if (auto *SPDecl = SP->getDeclaration()) { 1113 if (!Minimal) { 1114 // Add subprogram definitions to the CU die directly. 1115 ContextDIE = &getUnitDie(); 1116 // Build the decl now to ensure it precedes the definition. 1117 getOrCreateSubprogramDIE(SPDecl); 1118 } 1119 } 1120 1121 // DW_TAG_inlined_subroutine may refer to this DIE. 1122 DIE &SPDie = createAndAddDIE(dwarf::DW_TAG_subprogram, *ContextDIE, SP); 1123 1124 // Stop here and fill this in later, depending on whether or not this 1125 // subprogram turns out to have inlined instances or not. 1126 if (SP->isDefinition()) 1127 return &SPDie; 1128 1129 static_cast<DwarfUnit *>(SPDie.getUnit()) 1130 ->applySubprogramAttributes(SP, SPDie); 1131 return &SPDie; 1132 } 1133 1134 bool DwarfUnit::applySubprogramDefinitionAttributes(const DISubprogram *SP, 1135 DIE &SPDie) { 1136 DIE *DeclDie = nullptr; 1137 StringRef DeclLinkageName; 1138 if (auto *SPDecl = SP->getDeclaration()) { 1139 DeclDie = getDIE(SPDecl); 1140 assert(DeclDie && "This DIE should've already been constructed when the " 1141 "definition DIE was created in " 1142 "getOrCreateSubprogramDIE"); 1143 // Look at the Decl's linkage name only if we emitted it. 1144 if (DD->useAllLinkageNames()) 1145 DeclLinkageName = SPDecl->getLinkageName(); 1146 unsigned DeclID = getOrCreateSourceID(SPDecl->getFile()); 1147 unsigned DefID = getOrCreateSourceID(SP->getFile()); 1148 if (DeclID != DefID) 1149 addUInt(SPDie, dwarf::DW_AT_decl_file, None, DefID); 1150 1151 if (SP->getLine() != SPDecl->getLine()) 1152 addUInt(SPDie, dwarf::DW_AT_decl_line, None, SP->getLine()); 1153 } 1154 1155 // Add function template parameters. 1156 addTemplateParams(SPDie, SP->getTemplateParams()); 1157 1158 // Add the linkage name if we have one and it isn't in the Decl. 1159 StringRef LinkageName = SP->getLinkageName(); 1160 assert(((LinkageName.empty() || DeclLinkageName.empty()) || 1161 LinkageName == DeclLinkageName) && 1162 "decl has a linkage name and it is different"); 1163 if (DeclLinkageName.empty() && 1164 // Always emit it for abstract subprograms. 1165 (DD->useAllLinkageNames() || DU->getAbstractSPDies().lookup(SP))) 1166 addLinkageName(SPDie, LinkageName); 1167 1168 if (!DeclDie) 1169 return false; 1170 1171 // Refer to the function declaration where all the other attributes will be 1172 // found. 1173 addDIEEntry(SPDie, dwarf::DW_AT_specification, *DeclDie); 1174 return true; 1175 } 1176 1177 void DwarfUnit::applySubprogramAttributes(const DISubprogram *SP, DIE &SPDie, 1178 bool SkipSPAttributes) { 1179 // If -fdebug-info-for-profiling is enabled, need to emit the subprogram 1180 // and its source location. 1181 bool SkipSPSourceLocation = SkipSPAttributes && 1182 !CUNode->getDebugInfoForProfiling(); 1183 if (!SkipSPSourceLocation) 1184 if (applySubprogramDefinitionAttributes(SP, SPDie)) 1185 return; 1186 1187 // Constructors and operators for anonymous aggregates do not have names. 1188 if (!SP->getName().empty()) 1189 addString(SPDie, dwarf::DW_AT_name, SP->getName()); 1190 1191 if (!SkipSPSourceLocation) 1192 addSourceLine(SPDie, SP); 1193 1194 // Skip the rest of the attributes under -gmlt to save space. 1195 if (SkipSPAttributes) 1196 return; 1197 1198 // Add the prototype if we have a prototype and we have a C like 1199 // language. 1200 uint16_t Language = getLanguage(); 1201 if (SP->isPrototyped() && 1202 (Language == dwarf::DW_LANG_C89 || Language == dwarf::DW_LANG_C99 || 1203 Language == dwarf::DW_LANG_ObjC)) 1204 addFlag(SPDie, dwarf::DW_AT_prototyped); 1205 1206 unsigned CC = 0; 1207 DITypeRefArray Args; 1208 if (const DISubroutineType *SPTy = SP->getType()) { 1209 Args = SPTy->getTypeArray(); 1210 CC = SPTy->getCC(); 1211 } 1212 1213 // Add a DW_AT_calling_convention if this has an explicit convention. 1214 if (CC && CC != dwarf::DW_CC_normal) 1215 addUInt(SPDie, dwarf::DW_AT_calling_convention, dwarf::DW_FORM_data1, CC); 1216 1217 // Add a return type. If this is a type like a C/C++ void type we don't add a 1218 // return type. 1219 if (Args.size()) 1220 if (auto Ty = resolve(Args[0])) 1221 addType(SPDie, Ty); 1222 1223 unsigned VK = SP->getVirtuality(); 1224 if (VK) { 1225 addUInt(SPDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_data1, VK); 1226 if (SP->getVirtualIndex() != -1u) { 1227 DIELoc *Block = getDIELoc(); 1228 addUInt(*Block, dwarf::DW_FORM_data1, dwarf::DW_OP_constu); 1229 addUInt(*Block, dwarf::DW_FORM_udata, SP->getVirtualIndex()); 1230 addBlock(SPDie, dwarf::DW_AT_vtable_elem_location, Block); 1231 } 1232 ContainingTypeMap.insert( 1233 std::make_pair(&SPDie, resolve(SP->getContainingType()))); 1234 } 1235 1236 if (!SP->isDefinition()) { 1237 addFlag(SPDie, dwarf::DW_AT_declaration); 1238 1239 // Add arguments. Do not add arguments for subprogram definition. They will 1240 // be handled while processing variables. 1241 constructSubprogramArguments(SPDie, Args); 1242 } 1243 1244 addThrownTypes(SPDie, SP->getThrownTypes()); 1245 1246 if (SP->isArtificial()) 1247 addFlag(SPDie, dwarf::DW_AT_artificial); 1248 1249 if (!SP->isLocalToUnit()) 1250 addFlag(SPDie, dwarf::DW_AT_external); 1251 1252 if (DD->useAppleExtensionAttributes()) { 1253 if (SP->isOptimized()) 1254 addFlag(SPDie, dwarf::DW_AT_APPLE_optimized); 1255 1256 if (unsigned isa = Asm->getISAEncoding()) 1257 addUInt(SPDie, dwarf::DW_AT_APPLE_isa, dwarf::DW_FORM_flag, isa); 1258 } 1259 1260 if (SP->isLValueReference()) 1261 addFlag(SPDie, dwarf::DW_AT_reference); 1262 1263 if (SP->isRValueReference()) 1264 addFlag(SPDie, dwarf::DW_AT_rvalue_reference); 1265 1266 if (SP->isNoReturn()) 1267 addFlag(SPDie, dwarf::DW_AT_noreturn); 1268 1269 if (SP->isProtected()) 1270 addUInt(SPDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1271 dwarf::DW_ACCESS_protected); 1272 else if (SP->isPrivate()) 1273 addUInt(SPDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1274 dwarf::DW_ACCESS_private); 1275 else if (SP->isPublic()) 1276 addUInt(SPDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1277 dwarf::DW_ACCESS_public); 1278 1279 if (SP->isExplicit()) 1280 addFlag(SPDie, dwarf::DW_AT_explicit); 1281 1282 if (SP->isMainSubprogram()) 1283 addFlag(SPDie, dwarf::DW_AT_main_subprogram); 1284 if (SP->isPure()) 1285 addFlag(SPDie, dwarf::DW_AT_pure); 1286 if (SP->isElemental()) 1287 addFlag(SPDie, dwarf::DW_AT_elemental); 1288 if (SP->isRecursive()) 1289 addFlag(SPDie, dwarf::DW_AT_recursive); 1290 } 1291 1292 void DwarfUnit::constructSubrangeDIE(DIE &Buffer, const DISubrange *SR, 1293 DIE *IndexTy) { 1294 DIE &DW_Subrange = createAndAddDIE(dwarf::DW_TAG_subrange_type, Buffer); 1295 addDIEEntry(DW_Subrange, dwarf::DW_AT_type, *IndexTy); 1296 1297 // The LowerBound value defines the lower bounds which is typically zero for 1298 // C/C++. The Count value is the number of elements. Values are 64 bit. If 1299 // Count == -1 then the array is unbounded and we do not emit 1300 // DW_AT_lower_bound and DW_AT_count attributes. 1301 int64_t LowerBound = SR->getLowerBound(); 1302 int64_t DefaultLowerBound = getDefaultLowerBound(); 1303 int64_t Count = -1; 1304 if (auto *CI = SR->getCount().dyn_cast<ConstantInt*>()) 1305 Count = CI->getSExtValue(); 1306 1307 if (DefaultLowerBound == -1 || LowerBound != DefaultLowerBound) 1308 addUInt(DW_Subrange, dwarf::DW_AT_lower_bound, None, LowerBound); 1309 1310 if (auto *CV = SR->getCount().dyn_cast<DIVariable*>()) { 1311 if (auto *CountVarDIE = getDIE(CV)) 1312 addDIEEntry(DW_Subrange, dwarf::DW_AT_count, *CountVarDIE); 1313 } else if (Count != -1) 1314 addUInt(DW_Subrange, dwarf::DW_AT_count, None, Count); 1315 } 1316 1317 DIE *DwarfUnit::getIndexTyDie() { 1318 if (IndexTyDie) 1319 return IndexTyDie; 1320 // Construct an integer type to use for indexes. 1321 IndexTyDie = &createAndAddDIE(dwarf::DW_TAG_base_type, getUnitDie()); 1322 StringRef Name = "__ARRAY_SIZE_TYPE__"; 1323 addString(*IndexTyDie, dwarf::DW_AT_name, Name); 1324 addUInt(*IndexTyDie, dwarf::DW_AT_byte_size, None, sizeof(int64_t)); 1325 addUInt(*IndexTyDie, dwarf::DW_AT_encoding, dwarf::DW_FORM_data1, 1326 dwarf::DW_ATE_unsigned); 1327 DD->addAccelType(*CUNode, Name, *IndexTyDie, /*Flags*/ 0); 1328 return IndexTyDie; 1329 } 1330 1331 /// Returns true if the vector's size differs from the sum of sizes of elements 1332 /// the user specified. This can occur if the vector has been rounded up to 1333 /// fit memory alignment constraints. 1334 static bool hasVectorBeenPadded(const DICompositeType *CTy) { 1335 assert(CTy && CTy->isVector() && "Composite type is not a vector"); 1336 const uint64_t ActualSize = CTy->getSizeInBits(); 1337 1338 // Obtain the size of each element in the vector. 1339 DIType *BaseTy = CTy->getBaseType().resolve(); 1340 assert(BaseTy && "Unknown vector element type."); 1341 const uint64_t ElementSize = BaseTy->getSizeInBits(); 1342 1343 // Locate the number of elements in the vector. 1344 const DINodeArray Elements = CTy->getElements(); 1345 assert(Elements.size() == 1 && 1346 Elements[0]->getTag() == dwarf::DW_TAG_subrange_type && 1347 "Invalid vector element array, expected one element of type subrange"); 1348 const auto Subrange = cast<DISubrange>(Elements[0]); 1349 const auto CI = Subrange->getCount().get<ConstantInt *>(); 1350 const int32_t NumVecElements = CI->getSExtValue(); 1351 1352 // Ensure we found the element count and that the actual size is wide 1353 // enough to contain the requested size. 1354 assert(ActualSize >= (NumVecElements * ElementSize) && "Invalid vector size"); 1355 return ActualSize != (NumVecElements * ElementSize); 1356 } 1357 1358 void DwarfUnit::constructArrayTypeDIE(DIE &Buffer, const DICompositeType *CTy) { 1359 if (CTy->isVector()) { 1360 addFlag(Buffer, dwarf::DW_AT_GNU_vector); 1361 if (hasVectorBeenPadded(CTy)) 1362 addUInt(Buffer, dwarf::DW_AT_byte_size, None, 1363 CTy->getSizeInBits() / CHAR_BIT); 1364 } 1365 1366 // Emit the element type. 1367 addType(Buffer, resolve(CTy->getBaseType())); 1368 1369 // Get an anonymous type for index type. 1370 // FIXME: This type should be passed down from the front end 1371 // as different languages may have different sizes for indexes. 1372 DIE *IdxTy = getIndexTyDie(); 1373 1374 // Add subranges to array type. 1375 DINodeArray Elements = CTy->getElements(); 1376 for (unsigned i = 0, N = Elements.size(); i < N; ++i) { 1377 // FIXME: Should this really be such a loose cast? 1378 if (auto *Element = dyn_cast_or_null<DINode>(Elements[i])) 1379 if (Element->getTag() == dwarf::DW_TAG_subrange_type) 1380 constructSubrangeDIE(Buffer, cast<DISubrange>(Element), IdxTy); 1381 } 1382 } 1383 1384 void DwarfUnit::constructEnumTypeDIE(DIE &Buffer, const DICompositeType *CTy) { 1385 const DIType *DTy = resolve(CTy->getBaseType()); 1386 bool IsUnsigned = DTy && isUnsignedDIType(DD, DTy); 1387 if (DTy) { 1388 if (DD->getDwarfVersion() >= 3) 1389 addType(Buffer, DTy); 1390 if (DD->getDwarfVersion() >= 4 && (CTy->getFlags() & DINode::FlagEnumClass)) 1391 addFlag(Buffer, dwarf::DW_AT_enum_class); 1392 } 1393 1394 DINodeArray Elements = CTy->getElements(); 1395 1396 // Add enumerators to enumeration type. 1397 for (unsigned i = 0, N = Elements.size(); i < N; ++i) { 1398 auto *Enum = dyn_cast_or_null<DIEnumerator>(Elements[i]); 1399 if (Enum) { 1400 DIE &Enumerator = createAndAddDIE(dwarf::DW_TAG_enumerator, Buffer); 1401 StringRef Name = Enum->getName(); 1402 addString(Enumerator, dwarf::DW_AT_name, Name); 1403 auto Value = static_cast<uint64_t>(Enum->getValue()); 1404 addConstantValue(Enumerator, IsUnsigned, Value); 1405 } 1406 } 1407 } 1408 1409 void DwarfUnit::constructContainingTypeDIEs() { 1410 for (auto CI = ContainingTypeMap.begin(), CE = ContainingTypeMap.end(); 1411 CI != CE; ++CI) { 1412 DIE &SPDie = *CI->first; 1413 const DINode *D = CI->second; 1414 if (!D) 1415 continue; 1416 DIE *NDie = getDIE(D); 1417 if (!NDie) 1418 continue; 1419 addDIEEntry(SPDie, dwarf::DW_AT_containing_type, *NDie); 1420 } 1421 } 1422 1423 DIE &DwarfUnit::constructMemberDIE(DIE &Buffer, const DIDerivedType *DT) { 1424 DIE &MemberDie = createAndAddDIE(DT->getTag(), Buffer); 1425 StringRef Name = DT->getName(); 1426 if (!Name.empty()) 1427 addString(MemberDie, dwarf::DW_AT_name, Name); 1428 1429 if (DIType *Resolved = resolve(DT->getBaseType())) 1430 addType(MemberDie, Resolved); 1431 1432 addSourceLine(MemberDie, DT); 1433 1434 if (DT->getTag() == dwarf::DW_TAG_inheritance && DT->isVirtual()) { 1435 1436 // For C++, virtual base classes are not at fixed offset. Use following 1437 // expression to extract appropriate offset from vtable. 1438 // BaseAddr = ObAddr + *((*ObAddr) - Offset) 1439 1440 DIELoc *VBaseLocationDie = new (DIEValueAllocator) DIELoc; 1441 addUInt(*VBaseLocationDie, dwarf::DW_FORM_data1, dwarf::DW_OP_dup); 1442 addUInt(*VBaseLocationDie, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); 1443 addUInt(*VBaseLocationDie, dwarf::DW_FORM_data1, dwarf::DW_OP_constu); 1444 addUInt(*VBaseLocationDie, dwarf::DW_FORM_udata, DT->getOffsetInBits()); 1445 addUInt(*VBaseLocationDie, dwarf::DW_FORM_data1, dwarf::DW_OP_minus); 1446 addUInt(*VBaseLocationDie, dwarf::DW_FORM_data1, dwarf::DW_OP_deref); 1447 addUInt(*VBaseLocationDie, dwarf::DW_FORM_data1, dwarf::DW_OP_plus); 1448 1449 addBlock(MemberDie, dwarf::DW_AT_data_member_location, VBaseLocationDie); 1450 } else { 1451 uint64_t Size = DT->getSizeInBits(); 1452 uint64_t FieldSize = DD->getBaseTypeSize(DT); 1453 uint32_t AlignInBytes = DT->getAlignInBytes(); 1454 uint64_t OffsetInBytes; 1455 1456 bool IsBitfield = FieldSize && Size != FieldSize; 1457 if (IsBitfield) { 1458 // Handle bitfield, assume bytes are 8 bits. 1459 if (DD->useDWARF2Bitfields()) 1460 addUInt(MemberDie, dwarf::DW_AT_byte_size, None, FieldSize/8); 1461 addUInt(MemberDie, dwarf::DW_AT_bit_size, None, Size); 1462 1463 uint64_t Offset = DT->getOffsetInBits(); 1464 // We can't use DT->getAlignInBits() here: AlignInBits for member type 1465 // is non-zero if and only if alignment was forced (e.g. _Alignas()), 1466 // which can't be done with bitfields. Thus we use FieldSize here. 1467 uint32_t AlignInBits = FieldSize; 1468 uint32_t AlignMask = ~(AlignInBits - 1); 1469 // The bits from the start of the storage unit to the start of the field. 1470 uint64_t StartBitOffset = Offset - (Offset & AlignMask); 1471 // The byte offset of the field's aligned storage unit inside the struct. 1472 OffsetInBytes = (Offset - StartBitOffset) / 8; 1473 1474 if (DD->useDWARF2Bitfields()) { 1475 uint64_t HiMark = (Offset + FieldSize) & AlignMask; 1476 uint64_t FieldOffset = (HiMark - FieldSize); 1477 Offset -= FieldOffset; 1478 1479 // Maybe we need to work from the other end. 1480 if (Asm->getDataLayout().isLittleEndian()) 1481 Offset = FieldSize - (Offset + Size); 1482 1483 addUInt(MemberDie, dwarf::DW_AT_bit_offset, None, Offset); 1484 OffsetInBytes = FieldOffset >> 3; 1485 } else { 1486 addUInt(MemberDie, dwarf::DW_AT_data_bit_offset, None, Offset); 1487 } 1488 } else { 1489 // This is not a bitfield. 1490 OffsetInBytes = DT->getOffsetInBits() / 8; 1491 if (AlignInBytes) 1492 addUInt(MemberDie, dwarf::DW_AT_alignment, dwarf::DW_FORM_udata, 1493 AlignInBytes); 1494 } 1495 1496 if (DD->getDwarfVersion() <= 2) { 1497 DIELoc *MemLocationDie = new (DIEValueAllocator) DIELoc; 1498 addUInt(*MemLocationDie, dwarf::DW_FORM_data1, dwarf::DW_OP_plus_uconst); 1499 addUInt(*MemLocationDie, dwarf::DW_FORM_udata, OffsetInBytes); 1500 addBlock(MemberDie, dwarf::DW_AT_data_member_location, MemLocationDie); 1501 } else if (!IsBitfield || DD->useDWARF2Bitfields()) 1502 addUInt(MemberDie, dwarf::DW_AT_data_member_location, None, 1503 OffsetInBytes); 1504 } 1505 1506 if (DT->isProtected()) 1507 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1508 dwarf::DW_ACCESS_protected); 1509 else if (DT->isPrivate()) 1510 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1511 dwarf::DW_ACCESS_private); 1512 // Otherwise C++ member and base classes are considered public. 1513 else if (DT->isPublic()) 1514 addUInt(MemberDie, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1515 dwarf::DW_ACCESS_public); 1516 if (DT->isVirtual()) 1517 addUInt(MemberDie, dwarf::DW_AT_virtuality, dwarf::DW_FORM_data1, 1518 dwarf::DW_VIRTUALITY_virtual); 1519 1520 // Objective-C properties. 1521 if (DINode *PNode = DT->getObjCProperty()) 1522 if (DIE *PDie = getDIE(PNode)) 1523 MemberDie.addValue(DIEValueAllocator, dwarf::DW_AT_APPLE_property, 1524 dwarf::DW_FORM_ref4, DIEEntry(*PDie)); 1525 1526 if (DT->isArtificial()) 1527 addFlag(MemberDie, dwarf::DW_AT_artificial); 1528 1529 return MemberDie; 1530 } 1531 1532 DIE *DwarfUnit::getOrCreateStaticMemberDIE(const DIDerivedType *DT) { 1533 if (!DT) 1534 return nullptr; 1535 1536 // Construct the context before querying for the existence of the DIE in case 1537 // such construction creates the DIE. 1538 DIE *ContextDIE = getOrCreateContextDIE(resolve(DT->getScope())); 1539 assert(dwarf::isType(ContextDIE->getTag()) && 1540 "Static member should belong to a type."); 1541 1542 if (DIE *StaticMemberDIE = getDIE(DT)) 1543 return StaticMemberDIE; 1544 1545 DIE &StaticMemberDIE = createAndAddDIE(DT->getTag(), *ContextDIE, DT); 1546 1547 const DIType *Ty = resolve(DT->getBaseType()); 1548 1549 addString(StaticMemberDIE, dwarf::DW_AT_name, DT->getName()); 1550 addType(StaticMemberDIE, Ty); 1551 addSourceLine(StaticMemberDIE, DT); 1552 addFlag(StaticMemberDIE, dwarf::DW_AT_external); 1553 addFlag(StaticMemberDIE, dwarf::DW_AT_declaration); 1554 1555 // FIXME: We could omit private if the parent is a class_type, and 1556 // public if the parent is something else. 1557 if (DT->isProtected()) 1558 addUInt(StaticMemberDIE, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1559 dwarf::DW_ACCESS_protected); 1560 else if (DT->isPrivate()) 1561 addUInt(StaticMemberDIE, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1562 dwarf::DW_ACCESS_private); 1563 else if (DT->isPublic()) 1564 addUInt(StaticMemberDIE, dwarf::DW_AT_accessibility, dwarf::DW_FORM_data1, 1565 dwarf::DW_ACCESS_public); 1566 1567 if (const ConstantInt *CI = dyn_cast_or_null<ConstantInt>(DT->getConstant())) 1568 addConstantValue(StaticMemberDIE, CI, Ty); 1569 if (const ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(DT->getConstant())) 1570 addConstantFPValue(StaticMemberDIE, CFP); 1571 1572 if (uint32_t AlignInBytes = DT->getAlignInBytes()) 1573 addUInt(StaticMemberDIE, dwarf::DW_AT_alignment, dwarf::DW_FORM_udata, 1574 AlignInBytes); 1575 1576 return &StaticMemberDIE; 1577 } 1578 1579 void DwarfUnit::emitCommonHeader(bool UseOffsets, dwarf::UnitType UT) { 1580 // Emit size of content not including length itself 1581 Asm->OutStreamer->AddComment("Length of Unit"); 1582 if (!DD->useSectionsAsReferences()) { 1583 StringRef Prefix = isDwoUnit() ? "debug_info_dwo_" : "debug_info_"; 1584 MCSymbol *BeginLabel = Asm->createTempSymbol(Prefix + "start"); 1585 EndLabel = Asm->createTempSymbol(Prefix + "end"); 1586 Asm->EmitLabelDifference(EndLabel, BeginLabel, 4); 1587 Asm->OutStreamer->EmitLabel(BeginLabel); 1588 } else 1589 Asm->emitInt32(getHeaderSize() + getUnitDie().getSize()); 1590 1591 Asm->OutStreamer->AddComment("DWARF version number"); 1592 unsigned Version = DD->getDwarfVersion(); 1593 Asm->emitInt16(Version); 1594 1595 // DWARF v5 reorders the address size and adds a unit type. 1596 if (Version >= 5) { 1597 Asm->OutStreamer->AddComment("DWARF Unit Type"); 1598 Asm->emitInt8(UT); 1599 Asm->OutStreamer->AddComment("Address Size (in bytes)"); 1600 Asm->emitInt8(Asm->MAI->getCodePointerSize()); 1601 } 1602 1603 // We share one abbreviations table across all units so it's always at the 1604 // start of the section. Use a relocatable offset where needed to ensure 1605 // linking doesn't invalidate that offset. 1606 Asm->OutStreamer->AddComment("Offset Into Abbrev. Section"); 1607 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); 1608 if (UseOffsets) 1609 Asm->emitInt32(0); 1610 else 1611 Asm->emitDwarfSymbolReference( 1612 TLOF.getDwarfAbbrevSection()->getBeginSymbol(), false); 1613 1614 if (Version <= 4) { 1615 Asm->OutStreamer->AddComment("Address Size (in bytes)"); 1616 Asm->emitInt8(Asm->MAI->getCodePointerSize()); 1617 } 1618 } 1619 1620 void DwarfTypeUnit::emitHeader(bool UseOffsets) { 1621 DwarfUnit::emitCommonHeader(UseOffsets, 1622 DD->useSplitDwarf() ? dwarf::DW_UT_split_type 1623 : dwarf::DW_UT_type); 1624 Asm->OutStreamer->AddComment("Type Signature"); 1625 Asm->OutStreamer->EmitIntValue(TypeSignature, sizeof(TypeSignature)); 1626 Asm->OutStreamer->AddComment("Type DIE Offset"); 1627 // In a skeleton type unit there is no type DIE so emit a zero offset. 1628 Asm->OutStreamer->EmitIntValue(Ty ? Ty->getOffset() : 0, 1629 sizeof(Ty->getOffset())); 1630 } 1631 1632 DIE::value_iterator 1633 DwarfUnit::addSectionDelta(DIE &Die, dwarf::Attribute Attribute, 1634 const MCSymbol *Hi, const MCSymbol *Lo) { 1635 return Die.addValue(DIEValueAllocator, Attribute, 1636 DD->getDwarfVersion() >= 4 ? dwarf::DW_FORM_sec_offset 1637 : dwarf::DW_FORM_data4, 1638 new (DIEValueAllocator) DIEDelta(Hi, Lo)); 1639 } 1640 1641 DIE::value_iterator 1642 DwarfUnit::addSectionLabel(DIE &Die, dwarf::Attribute Attribute, 1643 const MCSymbol *Label, const MCSymbol *Sec) { 1644 if (Asm->MAI->doesDwarfUseRelocationsAcrossSections()) 1645 return addLabel(Die, Attribute, 1646 DD->getDwarfVersion() >= 4 ? dwarf::DW_FORM_sec_offset 1647 : dwarf::DW_FORM_data4, 1648 Label); 1649 return addSectionDelta(Die, Attribute, Label, Sec); 1650 } 1651 1652 bool DwarfTypeUnit::isDwoUnit() const { 1653 // Since there are no skeleton type units, all type units are dwo type units 1654 // when split DWARF is being used. 1655 return DD->useSplitDwarf(); 1656 } 1657 1658 void DwarfTypeUnit::addGlobalName(StringRef Name, const DIE &Die, 1659 const DIScope *Context) { 1660 getCU().addGlobalNameForTypeUnit(Name, Context); 1661 } 1662 1663 void DwarfTypeUnit::addGlobalType(const DIType *Ty, const DIE &Die, 1664 const DIScope *Context) { 1665 getCU().addGlobalTypeUnitType(Ty, Context); 1666 } 1667 1668 const MCSymbol *DwarfUnit::getCrossSectionRelativeBaseAddress() const { 1669 if (!Asm->MAI->doesDwarfUseRelocationsAcrossSections()) 1670 return nullptr; 1671 if (isDwoUnit()) 1672 return nullptr; 1673 return getSection()->getBeginSymbol(); 1674 } 1675 1676 void DwarfUnit::addStringOffsetsStart() { 1677 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); 1678 addSectionLabel(getUnitDie(), dwarf::DW_AT_str_offsets_base, 1679 DU->getStringOffsetsStartSym(), 1680 TLOF.getDwarfStrOffSection()->getBeginSymbol()); 1681 } 1682 1683 void DwarfUnit::addRnglistsBase() { 1684 assert(DD->getDwarfVersion() >= 5 && 1685 "DW_AT_rnglists_base requires DWARF version 5 or later"); 1686 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); 1687 addSectionLabel(getUnitDie(), dwarf::DW_AT_rnglists_base, 1688 DU->getRnglistsTableBaseSym(), 1689 TLOF.getDwarfRnglistsSection()->getBeginSymbol()); 1690 } 1691 1692 void DwarfUnit::addLoclistsBase() { 1693 assert(DD->getDwarfVersion() >= 5 && 1694 "DW_AT_loclists_base requires DWARF version 5 or later"); 1695 const TargetLoweringObjectFile &TLOF = Asm->getObjFileLowering(); 1696 addSectionLabel(getUnitDie(), dwarf::DW_AT_loclists_base, 1697 DU->getLoclistsTableBaseSym(), 1698 TLOF.getDwarfLoclistsSection()->getBeginSymbol()); 1699 } 1700 1701 void DwarfTypeUnit::finishNonUnitTypeDIE(DIE& D, const DICompositeType *CTy) { 1702 addFlag(D, dwarf::DW_AT_declaration); 1703 StringRef Name = CTy->getName(); 1704 if (!Name.empty()) 1705 addString(D, dwarf::DW_AT_name, Name); 1706 getCU().createTypeDIE(CTy); 1707 } 1708