1 //===- DWARFDebugLine.cpp -------------------------------------------------===// 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 #include "llvm/DebugInfo/DWARF/DWARFDebugLine.h" 10 #include "llvm/ADT/Optional.h" 11 #include "llvm/ADT/SmallString.h" 12 #include "llvm/ADT/SmallVector.h" 13 #include "llvm/ADT/StringRef.h" 14 #include "llvm/BinaryFormat/Dwarf.h" 15 #include "llvm/DebugInfo/DWARF/DWARFFormValue.h" 16 #include "llvm/DebugInfo/DWARF/DWARFRelocMap.h" 17 #include "llvm/Support/Errc.h" 18 #include "llvm/Support/Format.h" 19 #include "llvm/Support/Path.h" 20 #include "llvm/Support/WithColor.h" 21 #include "llvm/Support/raw_ostream.h" 22 #include <algorithm> 23 #include <cassert> 24 #include <cinttypes> 25 #include <cstdint> 26 #include <cstdio> 27 #include <utility> 28 29 using namespace llvm; 30 using namespace dwarf; 31 32 using FileLineInfoKind = DILineInfoSpecifier::FileLineInfoKind; 33 34 namespace { 35 36 struct ContentDescriptor { 37 dwarf::LineNumberEntryFormat Type; 38 dwarf::Form Form; 39 }; 40 41 using ContentDescriptors = SmallVector<ContentDescriptor, 4>; 42 43 } // end anonmyous namespace 44 45 void DWARFDebugLine::ContentTypeTracker::trackContentType( 46 dwarf::LineNumberEntryFormat ContentType) { 47 switch (ContentType) { 48 case dwarf::DW_LNCT_timestamp: 49 HasModTime = true; 50 break; 51 case dwarf::DW_LNCT_size: 52 HasLength = true; 53 break; 54 case dwarf::DW_LNCT_MD5: 55 HasMD5 = true; 56 break; 57 case dwarf::DW_LNCT_LLVM_source: 58 HasSource = true; 59 break; 60 default: 61 // We only care about values we consider optional, and new values may be 62 // added in the vendor extension range, so we do not match exhaustively. 63 break; 64 } 65 } 66 67 DWARFDebugLine::Prologue::Prologue() { clear(); } 68 69 void DWARFDebugLine::Prologue::clear() { 70 TotalLength = PrologueLength = 0; 71 SegSelectorSize = 0; 72 MinInstLength = MaxOpsPerInst = DefaultIsStmt = LineBase = LineRange = 0; 73 OpcodeBase = 0; 74 FormParams = dwarf::FormParams({0, 0, DWARF32}); 75 ContentTypes = ContentTypeTracker(); 76 StandardOpcodeLengths.clear(); 77 IncludeDirectories.clear(); 78 FileNames.clear(); 79 } 80 81 void DWARFDebugLine::Prologue::dump(raw_ostream &OS, 82 DIDumpOptions DumpOptions) const { 83 OS << "Line table prologue:\n" 84 << format(" total_length: 0x%8.8" PRIx64 "\n", TotalLength) 85 << format(" version: %u\n", getVersion()); 86 if (getVersion() >= 5) 87 OS << format(" address_size: %u\n", getAddressSize()) 88 << format(" seg_select_size: %u\n", SegSelectorSize); 89 OS << format(" prologue_length: 0x%8.8" PRIx64 "\n", PrologueLength) 90 << format(" min_inst_length: %u\n", MinInstLength) 91 << format(getVersion() >= 4 ? "max_ops_per_inst: %u\n" : "", MaxOpsPerInst) 92 << format(" default_is_stmt: %u\n", DefaultIsStmt) 93 << format(" line_base: %i\n", LineBase) 94 << format(" line_range: %u\n", LineRange) 95 << format(" opcode_base: %u\n", OpcodeBase); 96 97 for (uint32_t I = 0; I != StandardOpcodeLengths.size(); ++I) 98 OS << format("standard_opcode_lengths[%s] = %u\n", 99 LNStandardString(I + 1).data(), StandardOpcodeLengths[I]); 100 101 if (!IncludeDirectories.empty()) { 102 // DWARF v5 starts directory indexes at 0. 103 uint32_t DirBase = getVersion() >= 5 ? 0 : 1; 104 for (uint32_t I = 0; I != IncludeDirectories.size(); ++I) { 105 OS << format("include_directories[%3u] = ", I + DirBase); 106 IncludeDirectories[I].dump(OS, DumpOptions); 107 OS << '\n'; 108 } 109 } 110 111 if (!FileNames.empty()) { 112 // DWARF v5 starts file indexes at 0. 113 uint32_t FileBase = getVersion() >= 5 ? 0 : 1; 114 for (uint32_t I = 0; I != FileNames.size(); ++I) { 115 const FileNameEntry &FileEntry = FileNames[I]; 116 OS << format("file_names[%3u]:\n", I + FileBase); 117 OS << " name: "; 118 FileEntry.Name.dump(OS, DumpOptions); 119 OS << '\n' 120 << format(" dir_index: %" PRIu64 "\n", FileEntry.DirIdx); 121 if (ContentTypes.HasMD5) 122 OS << " md5_checksum: " << FileEntry.Checksum.digest() << '\n'; 123 if (ContentTypes.HasModTime) 124 OS << format(" mod_time: 0x%8.8" PRIx64 "\n", FileEntry.ModTime); 125 if (ContentTypes.HasLength) 126 OS << format(" length: 0x%8.8" PRIx64 "\n", FileEntry.Length); 127 if (ContentTypes.HasSource) { 128 OS << " source: "; 129 FileEntry.Source.dump(OS, DumpOptions); 130 OS << '\n'; 131 } 132 } 133 } 134 } 135 136 // Parse v2-v4 directory and file tables. 137 static void 138 parseV2DirFileTables(const DWARFDataExtractor &DebugLineData, 139 uint32_t *OffsetPtr, uint64_t EndPrologueOffset, 140 DWARFDebugLine::ContentTypeTracker &ContentTypes, 141 std::vector<DWARFFormValue> &IncludeDirectories, 142 std::vector<DWARFDebugLine::FileNameEntry> &FileNames) { 143 while (*OffsetPtr < EndPrologueOffset) { 144 StringRef S = DebugLineData.getCStrRef(OffsetPtr); 145 if (S.empty()) 146 break; 147 DWARFFormValue Dir = 148 DWARFFormValue::createFromPValue(dwarf::DW_FORM_string, S.data()); 149 IncludeDirectories.push_back(Dir); 150 } 151 152 while (*OffsetPtr < EndPrologueOffset) { 153 StringRef Name = DebugLineData.getCStrRef(OffsetPtr); 154 if (Name.empty()) 155 break; 156 DWARFDebugLine::FileNameEntry FileEntry; 157 FileEntry.Name = 158 DWARFFormValue::createFromPValue(dwarf::DW_FORM_string, Name.data()); 159 FileEntry.DirIdx = DebugLineData.getULEB128(OffsetPtr); 160 FileEntry.ModTime = DebugLineData.getULEB128(OffsetPtr); 161 FileEntry.Length = DebugLineData.getULEB128(OffsetPtr); 162 FileNames.push_back(FileEntry); 163 } 164 165 ContentTypes.HasModTime = true; 166 ContentTypes.HasLength = true; 167 } 168 169 // Parse v5 directory/file entry content descriptions. 170 // Returns the descriptors, or an empty vector if we did not find a path or 171 // ran off the end of the prologue. 172 static ContentDescriptors 173 parseV5EntryFormat(const DWARFDataExtractor &DebugLineData, uint32_t 174 *OffsetPtr, uint64_t EndPrologueOffset, DWARFDebugLine::ContentTypeTracker 175 *ContentTypes) { 176 ContentDescriptors Descriptors; 177 int FormatCount = DebugLineData.getU8(OffsetPtr); 178 bool HasPath = false; 179 for (int I = 0; I != FormatCount; ++I) { 180 if (*OffsetPtr >= EndPrologueOffset) 181 return ContentDescriptors(); 182 ContentDescriptor Descriptor; 183 Descriptor.Type = 184 dwarf::LineNumberEntryFormat(DebugLineData.getULEB128(OffsetPtr)); 185 Descriptor.Form = dwarf::Form(DebugLineData.getULEB128(OffsetPtr)); 186 if (Descriptor.Type == dwarf::DW_LNCT_path) 187 HasPath = true; 188 if (ContentTypes) 189 ContentTypes->trackContentType(Descriptor.Type); 190 Descriptors.push_back(Descriptor); 191 } 192 return HasPath ? Descriptors : ContentDescriptors(); 193 } 194 195 static bool 196 parseV5DirFileTables(const DWARFDataExtractor &DebugLineData, 197 uint32_t *OffsetPtr, uint64_t EndPrologueOffset, 198 const dwarf::FormParams &FormParams, 199 const DWARFContext &Ctx, const DWARFUnit *U, 200 DWARFDebugLine::ContentTypeTracker &ContentTypes, 201 std::vector<DWARFFormValue> &IncludeDirectories, 202 std::vector<DWARFDebugLine::FileNameEntry> &FileNames) { 203 // Get the directory entry description. 204 ContentDescriptors DirDescriptors = 205 parseV5EntryFormat(DebugLineData, OffsetPtr, EndPrologueOffset, nullptr); 206 if (DirDescriptors.empty()) 207 return false; 208 209 // Get the directory entries, according to the format described above. 210 int DirEntryCount = DebugLineData.getU8(OffsetPtr); 211 for (int I = 0; I != DirEntryCount; ++I) { 212 if (*OffsetPtr >= EndPrologueOffset) 213 return false; 214 for (auto Descriptor : DirDescriptors) { 215 DWARFFormValue Value(Descriptor.Form); 216 switch (Descriptor.Type) { 217 case DW_LNCT_path: 218 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) 219 return false; 220 IncludeDirectories.push_back(Value); 221 break; 222 default: 223 if (!Value.skipValue(DebugLineData, OffsetPtr, FormParams)) 224 return false; 225 } 226 } 227 } 228 229 // Get the file entry description. 230 ContentDescriptors FileDescriptors = 231 parseV5EntryFormat(DebugLineData, OffsetPtr, EndPrologueOffset, 232 &ContentTypes); 233 if (FileDescriptors.empty()) 234 return false; 235 236 // Get the file entries, according to the format described above. 237 int FileEntryCount = DebugLineData.getU8(OffsetPtr); 238 for (int I = 0; I != FileEntryCount; ++I) { 239 if (*OffsetPtr >= EndPrologueOffset) 240 return false; 241 DWARFDebugLine::FileNameEntry FileEntry; 242 for (auto Descriptor : FileDescriptors) { 243 DWARFFormValue Value(Descriptor.Form); 244 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) 245 return false; 246 switch (Descriptor.Type) { 247 case DW_LNCT_path: 248 FileEntry.Name = Value; 249 break; 250 case DW_LNCT_LLVM_source: 251 FileEntry.Source = Value; 252 break; 253 case DW_LNCT_directory_index: 254 FileEntry.DirIdx = Value.getAsUnsignedConstant().getValue(); 255 break; 256 case DW_LNCT_timestamp: 257 FileEntry.ModTime = Value.getAsUnsignedConstant().getValue(); 258 break; 259 case DW_LNCT_size: 260 FileEntry.Length = Value.getAsUnsignedConstant().getValue(); 261 break; 262 case DW_LNCT_MD5: 263 assert(Value.getAsBlock().getValue().size() == 16); 264 std::uninitialized_copy_n(Value.getAsBlock().getValue().begin(), 16, 265 FileEntry.Checksum.Bytes.begin()); 266 break; 267 default: 268 break; 269 } 270 } 271 FileNames.push_back(FileEntry); 272 } 273 return true; 274 } 275 276 Error DWARFDebugLine::Prologue::parse(const DWARFDataExtractor &DebugLineData, 277 uint32_t *OffsetPtr, 278 const DWARFContext &Ctx, 279 const DWARFUnit *U) { 280 const uint64_t PrologueOffset = *OffsetPtr; 281 282 clear(); 283 TotalLength = DebugLineData.getU32(OffsetPtr); 284 if (TotalLength == UINT32_MAX) { 285 FormParams.Format = dwarf::DWARF64; 286 TotalLength = DebugLineData.getU64(OffsetPtr); 287 } else if (TotalLength >= 0xffffff00) { 288 return createStringError(errc::invalid_argument, 289 "parsing line table prologue at offset 0x%8.8" PRIx64 290 " unsupported reserved unit length found of value 0x%8.8" PRIx64, 291 PrologueOffset, TotalLength); 292 } 293 FormParams.Version = DebugLineData.getU16(OffsetPtr); 294 if (getVersion() < 2) 295 return createStringError(errc::not_supported, 296 "parsing line table prologue at offset 0x%8.8" PRIx64 297 " found unsupported version 0x%2.2" PRIx16, 298 PrologueOffset, getVersion()); 299 300 if (getVersion() >= 5) { 301 FormParams.AddrSize = DebugLineData.getU8(OffsetPtr); 302 assert((DebugLineData.getAddressSize() == 0 || 303 DebugLineData.getAddressSize() == getAddressSize()) && 304 "Line table header and data extractor disagree"); 305 SegSelectorSize = DebugLineData.getU8(OffsetPtr); 306 } 307 308 PrologueLength = DebugLineData.getUnsigned(OffsetPtr, sizeofPrologueLength()); 309 const uint64_t EndPrologueOffset = PrologueLength + *OffsetPtr; 310 MinInstLength = DebugLineData.getU8(OffsetPtr); 311 if (getVersion() >= 4) 312 MaxOpsPerInst = DebugLineData.getU8(OffsetPtr); 313 DefaultIsStmt = DebugLineData.getU8(OffsetPtr); 314 LineBase = DebugLineData.getU8(OffsetPtr); 315 LineRange = DebugLineData.getU8(OffsetPtr); 316 OpcodeBase = DebugLineData.getU8(OffsetPtr); 317 318 StandardOpcodeLengths.reserve(OpcodeBase - 1); 319 for (uint32_t I = 1; I < OpcodeBase; ++I) { 320 uint8_t OpLen = DebugLineData.getU8(OffsetPtr); 321 StandardOpcodeLengths.push_back(OpLen); 322 } 323 324 if (getVersion() >= 5) { 325 if (!parseV5DirFileTables(DebugLineData, OffsetPtr, EndPrologueOffset, 326 FormParams, Ctx, U, ContentTypes, 327 IncludeDirectories, FileNames)) { 328 return createStringError(errc::invalid_argument, 329 "parsing line table prologue at 0x%8.8" PRIx64 330 " found an invalid directory or file table description at" 331 " 0x%8.8" PRIx64, 332 PrologueOffset, (uint64_t)*OffsetPtr); 333 } 334 } else 335 parseV2DirFileTables(DebugLineData, OffsetPtr, EndPrologueOffset, 336 ContentTypes, IncludeDirectories, FileNames); 337 338 if (*OffsetPtr != EndPrologueOffset) 339 return createStringError(errc::invalid_argument, 340 "parsing line table prologue at 0x%8.8" PRIx64 341 " should have ended at 0x%8.8" PRIx64 342 " but it ended at 0x%8.8" PRIx64, 343 PrologueOffset, EndPrologueOffset, (uint64_t)*OffsetPtr); 344 return Error::success(); 345 } 346 347 DWARFDebugLine::Row::Row(bool DefaultIsStmt) { reset(DefaultIsStmt); } 348 349 void DWARFDebugLine::Row::postAppend() { 350 BasicBlock = false; 351 PrologueEnd = false; 352 EpilogueBegin = false; 353 } 354 355 void DWARFDebugLine::Row::reset(bool DefaultIsStmt) { 356 Address.Address = 0; 357 Address.SectionIndex = object::SectionedAddress::UndefSection; 358 Line = 1; 359 Column = 0; 360 File = 1; 361 Isa = 0; 362 Discriminator = 0; 363 IsStmt = DefaultIsStmt; 364 BasicBlock = false; 365 EndSequence = false; 366 PrologueEnd = false; 367 EpilogueBegin = false; 368 } 369 370 void DWARFDebugLine::Row::dumpTableHeader(raw_ostream &OS) { 371 OS << "Address Line Column File ISA Discriminator Flags\n" 372 << "------------------ ------ ------ ------ --- ------------- " 373 "-------------\n"; 374 } 375 376 void DWARFDebugLine::Row::dump(raw_ostream &OS) const { 377 OS << format("0x%16.16" PRIx64 " %6u %6u", Address.Address, Line, Column) 378 << format(" %6u %3u %13u ", File, Isa, Discriminator) 379 << (IsStmt ? " is_stmt" : "") << (BasicBlock ? " basic_block" : "") 380 << (PrologueEnd ? " prologue_end" : "") 381 << (EpilogueBegin ? " epilogue_begin" : "") 382 << (EndSequence ? " end_sequence" : "") << '\n'; 383 } 384 385 DWARFDebugLine::Sequence::Sequence() { reset(); } 386 387 void DWARFDebugLine::Sequence::reset() { 388 LowPC = 0; 389 HighPC = 0; 390 SectionIndex = object::SectionedAddress::UndefSection; 391 FirstRowIndex = 0; 392 LastRowIndex = 0; 393 Empty = true; 394 } 395 396 DWARFDebugLine::LineTable::LineTable() { clear(); } 397 398 void DWARFDebugLine::LineTable::dump(raw_ostream &OS, 399 DIDumpOptions DumpOptions) const { 400 Prologue.dump(OS, DumpOptions); 401 OS << '\n'; 402 403 if (!Rows.empty()) { 404 Row::dumpTableHeader(OS); 405 for (const Row &R : Rows) { 406 R.dump(OS); 407 } 408 } 409 } 410 411 void DWARFDebugLine::LineTable::clear() { 412 Prologue.clear(); 413 Rows.clear(); 414 Sequences.clear(); 415 } 416 417 DWARFDebugLine::ParsingState::ParsingState(struct LineTable *LT) 418 : LineTable(LT) { 419 resetRowAndSequence(); 420 } 421 422 void DWARFDebugLine::ParsingState::resetRowAndSequence() { 423 Row.reset(LineTable->Prologue.DefaultIsStmt); 424 Sequence.reset(); 425 } 426 427 void DWARFDebugLine::ParsingState::appendRowToMatrix(uint32_t Offset) { 428 if (Sequence.Empty) { 429 // Record the beginning of instruction sequence. 430 Sequence.Empty = false; 431 Sequence.LowPC = Row.Address.Address; 432 Sequence.FirstRowIndex = RowNumber; 433 } 434 ++RowNumber; 435 LineTable->appendRow(Row); 436 if (Row.EndSequence) { 437 // Record the end of instruction sequence. 438 Sequence.HighPC = Row.Address.Address; 439 Sequence.LastRowIndex = RowNumber; 440 Sequence.SectionIndex = Row.Address.SectionIndex; 441 if (Sequence.isValid()) 442 LineTable->appendSequence(Sequence); 443 Sequence.reset(); 444 } 445 Row.postAppend(); 446 } 447 448 const DWARFDebugLine::LineTable * 449 DWARFDebugLine::getLineTable(uint32_t Offset) const { 450 LineTableConstIter Pos = LineTableMap.find(Offset); 451 if (Pos != LineTableMap.end()) 452 return &Pos->second; 453 return nullptr; 454 } 455 456 Expected<const DWARFDebugLine::LineTable *> DWARFDebugLine::getOrParseLineTable( 457 DWARFDataExtractor &DebugLineData, uint32_t Offset, const DWARFContext &Ctx, 458 const DWARFUnit *U, std::function<void(Error)> RecoverableErrorCallback) { 459 if (!DebugLineData.isValidOffset(Offset)) 460 return createStringError(errc::invalid_argument, "offset 0x%8.8" PRIx32 461 " is not a valid debug line section offset", 462 Offset); 463 464 std::pair<LineTableIter, bool> Pos = 465 LineTableMap.insert(LineTableMapTy::value_type(Offset, LineTable())); 466 LineTable *LT = &Pos.first->second; 467 if (Pos.second) { 468 if (Error Err = 469 LT->parse(DebugLineData, &Offset, Ctx, U, RecoverableErrorCallback)) 470 return std::move(Err); 471 return LT; 472 } 473 return LT; 474 } 475 476 Error DWARFDebugLine::LineTable::parse( 477 DWARFDataExtractor &DebugLineData, uint32_t *OffsetPtr, 478 const DWARFContext &Ctx, const DWARFUnit *U, 479 std::function<void(Error)> RecoverableErrorCallback, raw_ostream *OS) { 480 const uint32_t DebugLineOffset = *OffsetPtr; 481 482 clear(); 483 484 Error PrologueErr = Prologue.parse(DebugLineData, OffsetPtr, Ctx, U); 485 486 if (OS) { 487 // The presence of OS signals verbose dumping. 488 DIDumpOptions DumpOptions; 489 DumpOptions.Verbose = true; 490 Prologue.dump(*OS, DumpOptions); 491 } 492 493 if (PrologueErr) 494 return PrologueErr; 495 496 const uint32_t EndOffset = 497 DebugLineOffset + Prologue.TotalLength + Prologue.sizeofTotalLength(); 498 499 // See if we should tell the data extractor the address size. 500 if (DebugLineData.getAddressSize() == 0) 501 DebugLineData.setAddressSize(Prologue.getAddressSize()); 502 else 503 assert(Prologue.getAddressSize() == 0 || 504 Prologue.getAddressSize() == DebugLineData.getAddressSize()); 505 506 ParsingState State(this); 507 508 while (*OffsetPtr < EndOffset) { 509 if (OS) 510 *OS << format("0x%08.08" PRIx32 ": ", *OffsetPtr); 511 512 uint8_t Opcode = DebugLineData.getU8(OffsetPtr); 513 514 if (OS) 515 *OS << format("%02.02" PRIx8 " ", Opcode); 516 517 if (Opcode == 0) { 518 // Extended Opcodes always start with a zero opcode followed by 519 // a uleb128 length so you can skip ones you don't know about 520 uint64_t Len = DebugLineData.getULEB128(OffsetPtr); 521 uint32_t ExtOffset = *OffsetPtr; 522 523 // Tolerate zero-length; assume length is correct and soldier on. 524 if (Len == 0) { 525 if (OS) 526 *OS << "Badly formed extended line op (length 0)\n"; 527 continue; 528 } 529 530 uint8_t SubOpcode = DebugLineData.getU8(OffsetPtr); 531 if (OS) 532 *OS << LNExtendedString(SubOpcode); 533 switch (SubOpcode) { 534 case DW_LNE_end_sequence: 535 // Set the end_sequence register of the state machine to true and 536 // append a row to the matrix using the current values of the 537 // state-machine registers. Then reset the registers to the initial 538 // values specified above. Every statement program sequence must end 539 // with a DW_LNE_end_sequence instruction which creates a row whose 540 // address is that of the byte after the last target machine instruction 541 // of the sequence. 542 State.Row.EndSequence = true; 543 State.appendRowToMatrix(*OffsetPtr); 544 if (OS) { 545 *OS << "\n"; 546 OS->indent(12); 547 State.Row.dump(*OS); 548 } 549 State.resetRowAndSequence(); 550 break; 551 552 case DW_LNE_set_address: 553 // Takes a single relocatable address as an operand. The size of the 554 // operand is the size appropriate to hold an address on the target 555 // machine. Set the address register to the value given by the 556 // relocatable address. All of the other statement program opcodes 557 // that affect the address register add a delta to it. This instruction 558 // stores a relocatable value into it instead. 559 // 560 // Make sure the extractor knows the address size. If not, infer it 561 // from the size of the operand. 562 if (DebugLineData.getAddressSize() == 0) 563 DebugLineData.setAddressSize(Len - 1); 564 else if (DebugLineData.getAddressSize() != Len - 1) { 565 return createStringError(errc::invalid_argument, 566 "mismatching address size at offset 0x%8.8" PRIx32 567 " expected 0x%2.2" PRIx8 " found 0x%2.2" PRIx64, 568 ExtOffset, DebugLineData.getAddressSize(), 569 Len - 1); 570 } 571 State.Row.Address.Address = DebugLineData.getRelocatedAddress( 572 OffsetPtr, &State.Row.Address.SectionIndex); 573 if (OS) 574 *OS << format(" (0x%16.16" PRIx64 ")", State.Row.Address.Address); 575 break; 576 577 case DW_LNE_define_file: 578 // Takes 4 arguments. The first is a null terminated string containing 579 // a source file name. The second is an unsigned LEB128 number 580 // representing the directory index of the directory in which the file 581 // was found. The third is an unsigned LEB128 number representing the 582 // time of last modification of the file. The fourth is an unsigned 583 // LEB128 number representing the length in bytes of the file. The time 584 // and length fields may contain LEB128(0) if the information is not 585 // available. 586 // 587 // The directory index represents an entry in the include_directories 588 // section of the statement program prologue. The index is LEB128(0) 589 // if the file was found in the current directory of the compilation, 590 // LEB128(1) if it was found in the first directory in the 591 // include_directories section, and so on. The directory index is 592 // ignored for file names that represent full path names. 593 // 594 // The files are numbered, starting at 1, in the order in which they 595 // appear; the names in the prologue come before names defined by 596 // the DW_LNE_define_file instruction. These numbers are used in the 597 // the file register of the state machine. 598 { 599 FileNameEntry FileEntry; 600 const char *Name = DebugLineData.getCStr(OffsetPtr); 601 FileEntry.Name = 602 DWARFFormValue::createFromPValue(dwarf::DW_FORM_string, Name); 603 FileEntry.DirIdx = DebugLineData.getULEB128(OffsetPtr); 604 FileEntry.ModTime = DebugLineData.getULEB128(OffsetPtr); 605 FileEntry.Length = DebugLineData.getULEB128(OffsetPtr); 606 Prologue.FileNames.push_back(FileEntry); 607 if (OS) 608 *OS << " (" << Name << ", dir=" << FileEntry.DirIdx << ", mod_time=" 609 << format("(0x%16.16" PRIx64 ")", FileEntry.ModTime) 610 << ", length=" << FileEntry.Length << ")"; 611 } 612 break; 613 614 case DW_LNE_set_discriminator: 615 State.Row.Discriminator = DebugLineData.getULEB128(OffsetPtr); 616 if (OS) 617 *OS << " (" << State.Row.Discriminator << ")"; 618 break; 619 620 default: 621 if (OS) 622 *OS << format("Unrecognized extended op 0x%02.02" PRIx8, SubOpcode) 623 << format(" length %" PRIx64, Len); 624 // Len doesn't include the zero opcode byte or the length itself, but 625 // it does include the sub_opcode, so we have to adjust for that. 626 (*OffsetPtr) += Len - 1; 627 break; 628 } 629 // Make sure the stated and parsed lengths are the same. 630 // Otherwise we have an unparseable line-number program. 631 if (*OffsetPtr - ExtOffset != Len) 632 return createStringError(errc::illegal_byte_sequence, 633 "unexpected line op length at offset 0x%8.8" PRIx32 634 " expected 0x%2.2" PRIx64 " found 0x%2.2" PRIx32, 635 ExtOffset, Len, *OffsetPtr - ExtOffset); 636 } else if (Opcode < Prologue.OpcodeBase) { 637 if (OS) 638 *OS << LNStandardString(Opcode); 639 switch (Opcode) { 640 // Standard Opcodes 641 case DW_LNS_copy: 642 // Takes no arguments. Append a row to the matrix using the 643 // current values of the state-machine registers. Then set 644 // the basic_block register to false. 645 State.appendRowToMatrix(*OffsetPtr); 646 if (OS) { 647 *OS << "\n"; 648 OS->indent(12); 649 State.Row.dump(*OS); 650 *OS << "\n"; 651 } 652 break; 653 654 case DW_LNS_advance_pc: 655 // Takes a single unsigned LEB128 operand, multiplies it by the 656 // min_inst_length field of the prologue, and adds the 657 // result to the address register of the state machine. 658 { 659 uint64_t AddrOffset = 660 DebugLineData.getULEB128(OffsetPtr) * Prologue.MinInstLength; 661 State.Row.Address.Address += AddrOffset; 662 if (OS) 663 *OS << " (" << AddrOffset << ")"; 664 } 665 break; 666 667 case DW_LNS_advance_line: 668 // Takes a single signed LEB128 operand and adds that value to 669 // the line register of the state machine. 670 State.Row.Line += DebugLineData.getSLEB128(OffsetPtr); 671 if (OS) 672 *OS << " (" << State.Row.Line << ")"; 673 break; 674 675 case DW_LNS_set_file: 676 // Takes a single unsigned LEB128 operand and stores it in the file 677 // register of the state machine. 678 State.Row.File = DebugLineData.getULEB128(OffsetPtr); 679 if (OS) 680 *OS << " (" << State.Row.File << ")"; 681 break; 682 683 case DW_LNS_set_column: 684 // Takes a single unsigned LEB128 operand and stores it in the 685 // column register of the state machine. 686 State.Row.Column = DebugLineData.getULEB128(OffsetPtr); 687 if (OS) 688 *OS << " (" << State.Row.Column << ")"; 689 break; 690 691 case DW_LNS_negate_stmt: 692 // Takes no arguments. Set the is_stmt register of the state 693 // machine to the logical negation of its current value. 694 State.Row.IsStmt = !State.Row.IsStmt; 695 break; 696 697 case DW_LNS_set_basic_block: 698 // Takes no arguments. Set the basic_block register of the 699 // state machine to true 700 State.Row.BasicBlock = true; 701 break; 702 703 case DW_LNS_const_add_pc: 704 // Takes no arguments. Add to the address register of the state 705 // machine the address increment value corresponding to special 706 // opcode 255. The motivation for DW_LNS_const_add_pc is this: 707 // when the statement program needs to advance the address by a 708 // small amount, it can use a single special opcode, which occupies 709 // a single byte. When it needs to advance the address by up to 710 // twice the range of the last special opcode, it can use 711 // DW_LNS_const_add_pc followed by a special opcode, for a total 712 // of two bytes. Only if it needs to advance the address by more 713 // than twice that range will it need to use both DW_LNS_advance_pc 714 // and a special opcode, requiring three or more bytes. 715 { 716 uint8_t AdjustOpcode = 255 - Prologue.OpcodeBase; 717 uint64_t AddrOffset = 718 (AdjustOpcode / Prologue.LineRange) * Prologue.MinInstLength; 719 State.Row.Address.Address += AddrOffset; 720 if (OS) 721 *OS 722 << format(" (0x%16.16" PRIx64 ")", AddrOffset); 723 } 724 break; 725 726 case DW_LNS_fixed_advance_pc: 727 // Takes a single uhalf operand. Add to the address register of 728 // the state machine the value of the (unencoded) operand. This 729 // is the only extended opcode that takes an argument that is not 730 // a variable length number. The motivation for DW_LNS_fixed_advance_pc 731 // is this: existing assemblers cannot emit DW_LNS_advance_pc or 732 // special opcodes because they cannot encode LEB128 numbers or 733 // judge when the computation of a special opcode overflows and 734 // requires the use of DW_LNS_advance_pc. Such assemblers, however, 735 // can use DW_LNS_fixed_advance_pc instead, sacrificing compression. 736 { 737 uint16_t PCOffset = DebugLineData.getU16(OffsetPtr); 738 State.Row.Address.Address += PCOffset; 739 if (OS) 740 *OS 741 << format(" (0x%16.16" PRIx64 ")", PCOffset); 742 } 743 break; 744 745 case DW_LNS_set_prologue_end: 746 // Takes no arguments. Set the prologue_end register of the 747 // state machine to true 748 State.Row.PrologueEnd = true; 749 break; 750 751 case DW_LNS_set_epilogue_begin: 752 // Takes no arguments. Set the basic_block register of the 753 // state machine to true 754 State.Row.EpilogueBegin = true; 755 break; 756 757 case DW_LNS_set_isa: 758 // Takes a single unsigned LEB128 operand and stores it in the 759 // column register of the state machine. 760 State.Row.Isa = DebugLineData.getULEB128(OffsetPtr); 761 if (OS) 762 *OS << " (" << State.Row.Isa << ")"; 763 break; 764 765 default: 766 // Handle any unknown standard opcodes here. We know the lengths 767 // of such opcodes because they are specified in the prologue 768 // as a multiple of LEB128 operands for each opcode. 769 { 770 assert(Opcode - 1U < Prologue.StandardOpcodeLengths.size()); 771 uint8_t OpcodeLength = Prologue.StandardOpcodeLengths[Opcode - 1]; 772 for (uint8_t I = 0; I < OpcodeLength; ++I) { 773 uint64_t Value = DebugLineData.getULEB128(OffsetPtr); 774 if (OS) 775 *OS << format("Skipping ULEB128 value: 0x%16.16" PRIx64 ")\n", 776 Value); 777 } 778 } 779 break; 780 } 781 } else { 782 // Special Opcodes 783 784 // A special opcode value is chosen based on the amount that needs 785 // to be added to the line and address registers. The maximum line 786 // increment for a special opcode is the value of the line_base 787 // field in the header, plus the value of the line_range field, 788 // minus 1 (line base + line range - 1). If the desired line 789 // increment is greater than the maximum line increment, a standard 790 // opcode must be used instead of a special opcode. The "address 791 // advance" is calculated by dividing the desired address increment 792 // by the minimum_instruction_length field from the header. The 793 // special opcode is then calculated using the following formula: 794 // 795 // opcode = (desired line increment - line_base) + 796 // (line_range * address advance) + opcode_base 797 // 798 // If the resulting opcode is greater than 255, a standard opcode 799 // must be used instead. 800 // 801 // To decode a special opcode, subtract the opcode_base from the 802 // opcode itself to give the adjusted opcode. The amount to 803 // increment the address register is the result of the adjusted 804 // opcode divided by the line_range multiplied by the 805 // minimum_instruction_length field from the header. That is: 806 // 807 // address increment = (adjusted opcode / line_range) * 808 // minimum_instruction_length 809 // 810 // The amount to increment the line register is the line_base plus 811 // the result of the adjusted opcode modulo the line_range. That is: 812 // 813 // line increment = line_base + (adjusted opcode % line_range) 814 815 uint8_t AdjustOpcode = Opcode - Prologue.OpcodeBase; 816 uint64_t AddrOffset = 817 (AdjustOpcode / Prologue.LineRange) * Prologue.MinInstLength; 818 int32_t LineOffset = 819 Prologue.LineBase + (AdjustOpcode % Prologue.LineRange); 820 State.Row.Line += LineOffset; 821 State.Row.Address.Address += AddrOffset; 822 823 if (OS) { 824 *OS << "address += " << AddrOffset << ", line += " << LineOffset 825 << "\n"; 826 OS->indent(12); 827 State.Row.dump(*OS); 828 } 829 830 State.appendRowToMatrix(*OffsetPtr); 831 // Reset discriminator to 0. 832 State.Row.Discriminator = 0; 833 } 834 if(OS) 835 *OS << "\n"; 836 } 837 838 if (!State.Sequence.Empty) 839 RecoverableErrorCallback( 840 createStringError(errc::illegal_byte_sequence, 841 "last sequence in debug line table is not terminated!")); 842 843 // Sort all sequences so that address lookup will work faster. 844 if (!Sequences.empty()) { 845 llvm::sort(Sequences, Sequence::orderByLowPC); 846 // Note: actually, instruction address ranges of sequences should not 847 // overlap (in shared objects and executables). If they do, the address 848 // lookup would still work, though, but result would be ambiguous. 849 // We don't report warning in this case. For example, 850 // sometimes .so compiled from multiple object files contains a few 851 // rudimentary sequences for address ranges [0x0, 0xsomething). 852 } 853 854 return Error::success(); 855 } 856 857 uint32_t DWARFDebugLine::LineTable::findRowInSeq( 858 const DWARFDebugLine::Sequence &Seq, 859 object::SectionedAddress Address) const { 860 if (!Seq.containsPC(Address)) 861 return UnknownRowIndex; 862 assert(Seq.SectionIndex == Address.SectionIndex); 863 // Search for instruction address in the rows describing the sequence. 864 // Rows are stored in a vector, so we may use arithmetical operations with 865 // iterators. 866 DWARFDebugLine::Row Row; 867 Row.Address = Address; 868 RowIter FirstRow = Rows.begin() + Seq.FirstRowIndex; 869 RowIter LastRow = Rows.begin() + Seq.LastRowIndex; 870 LineTable::RowIter RowPos = std::lower_bound( 871 FirstRow, LastRow, Row, DWARFDebugLine::Row::orderByAddress); 872 if (RowPos == LastRow) { 873 return Seq.LastRowIndex - 1; 874 } 875 assert(Seq.SectionIndex == RowPos->Address.SectionIndex); 876 uint32_t Index = Seq.FirstRowIndex + (RowPos - FirstRow); 877 if (RowPos->Address.Address > Address.Address) { 878 if (RowPos == FirstRow) 879 return UnknownRowIndex; 880 else 881 Index--; 882 } 883 return Index; 884 } 885 886 uint32_t DWARFDebugLine::LineTable::lookupAddress( 887 object::SectionedAddress Address) const { 888 889 // Search for relocatable addresses 890 uint32_t Result = lookupAddressImpl(Address); 891 892 if (Result != UnknownRowIndex || 893 Address.SectionIndex == object::SectionedAddress::UndefSection) 894 return Result; 895 896 // Search for absolute addresses 897 Address.SectionIndex = object::SectionedAddress::UndefSection; 898 return lookupAddressImpl(Address); 899 } 900 901 uint32_t DWARFDebugLine::LineTable::lookupAddressImpl( 902 object::SectionedAddress Address) const { 903 if (Sequences.empty()) 904 return UnknownRowIndex; 905 // First, find an instruction sequence containing the given address. 906 DWARFDebugLine::Sequence Sequence; 907 Sequence.SectionIndex = Address.SectionIndex; 908 Sequence.LowPC = Address.Address; 909 SequenceIter FirstSeq = Sequences.begin(); 910 SequenceIter LastSeq = Sequences.end(); 911 SequenceIter SeqPos = std::lower_bound( 912 FirstSeq, LastSeq, Sequence, DWARFDebugLine::Sequence::orderByLowPC); 913 DWARFDebugLine::Sequence FoundSeq; 914 915 if (SeqPos == LastSeq) { 916 FoundSeq = Sequences.back(); 917 } else if (SeqPos->LowPC == Address.Address && 918 SeqPos->SectionIndex == Address.SectionIndex) { 919 FoundSeq = *SeqPos; 920 } else { 921 if (SeqPos == FirstSeq) 922 return UnknownRowIndex; 923 FoundSeq = *(SeqPos - 1); 924 } 925 if (FoundSeq.SectionIndex != Address.SectionIndex) 926 return UnknownRowIndex; 927 return findRowInSeq(FoundSeq, Address); 928 } 929 930 bool DWARFDebugLine::LineTable::lookupAddressRange( 931 object::SectionedAddress Address, uint64_t Size, 932 std::vector<uint32_t> &Result) const { 933 934 // Search for relocatable addresses 935 if (lookupAddressRangeImpl(Address, Size, Result)) 936 return true; 937 938 if (Address.SectionIndex == object::SectionedAddress::UndefSection) 939 return false; 940 941 // Search for absolute addresses 942 Address.SectionIndex = object::SectionedAddress::UndefSection; 943 return lookupAddressRangeImpl(Address, Size, Result); 944 } 945 946 bool DWARFDebugLine::LineTable::lookupAddressRangeImpl( 947 object::SectionedAddress Address, uint64_t Size, 948 std::vector<uint32_t> &Result) const { 949 if (Sequences.empty()) 950 return false; 951 uint64_t EndAddr = Address.Address + Size; 952 // First, find an instruction sequence containing the given address. 953 DWARFDebugLine::Sequence Sequence; 954 Sequence.SectionIndex = Address.SectionIndex; 955 Sequence.LowPC = Address.Address; 956 SequenceIter FirstSeq = Sequences.begin(); 957 SequenceIter LastSeq = Sequences.end(); 958 SequenceIter SeqPos = std::lower_bound( 959 FirstSeq, LastSeq, Sequence, DWARFDebugLine::Sequence::orderByLowPC); 960 if (SeqPos == LastSeq || !SeqPos->containsPC(Address)) { 961 if (SeqPos == FirstSeq) 962 return false; 963 SeqPos--; 964 } 965 if (!SeqPos->containsPC(Address)) 966 return false; 967 968 SequenceIter StartPos = SeqPos; 969 970 // Add the rows from the first sequence to the vector, starting with the 971 // index we just calculated 972 973 while (SeqPos != LastSeq && SeqPos->LowPC < EndAddr) { 974 const DWARFDebugLine::Sequence &CurSeq = *SeqPos; 975 // For the first sequence, we need to find which row in the sequence is the 976 // first in our range. 977 uint32_t FirstRowIndex = CurSeq.FirstRowIndex; 978 if (SeqPos == StartPos) 979 FirstRowIndex = findRowInSeq(CurSeq, Address); 980 981 // Figure out the last row in the range. 982 uint32_t LastRowIndex = 983 findRowInSeq(CurSeq, {EndAddr - 1, Address.SectionIndex}); 984 if (LastRowIndex == UnknownRowIndex) 985 LastRowIndex = CurSeq.LastRowIndex - 1; 986 987 assert(FirstRowIndex != UnknownRowIndex); 988 assert(LastRowIndex != UnknownRowIndex); 989 990 for (uint32_t I = FirstRowIndex; I <= LastRowIndex; ++I) { 991 Result.push_back(I); 992 } 993 994 ++SeqPos; 995 } 996 997 return true; 998 } 999 1000 bool DWARFDebugLine::LineTable::hasFileAtIndex(uint64_t FileIndex) const { 1001 return FileIndex != 0 && FileIndex <= Prologue.FileNames.size(); 1002 } 1003 1004 Optional<StringRef> DWARFDebugLine::LineTable::getSourceByIndex(uint64_t FileIndex, 1005 FileLineInfoKind Kind) const { 1006 if (Kind == FileLineInfoKind::None || !hasFileAtIndex(FileIndex)) 1007 return None; 1008 const FileNameEntry &Entry = Prologue.FileNames[FileIndex - 1]; 1009 if (Optional<const char *> source = Entry.Source.getAsCString()) 1010 return StringRef(*source); 1011 return None; 1012 } 1013 1014 static bool isPathAbsoluteOnWindowsOrPosix(const Twine &Path) { 1015 // Debug info can contain paths from any OS, not necessarily 1016 // an OS we're currently running on. Moreover different compilation units can 1017 // be compiled on different operating systems and linked together later. 1018 return sys::path::is_absolute(Path, sys::path::Style::posix) || 1019 sys::path::is_absolute(Path, sys::path::Style::windows); 1020 } 1021 1022 bool DWARFDebugLine::LineTable::getFileNameByIndex(uint64_t FileIndex, 1023 const char *CompDir, 1024 FileLineInfoKind Kind, 1025 std::string &Result) const { 1026 if (Kind == FileLineInfoKind::None || !hasFileAtIndex(FileIndex)) 1027 return false; 1028 const FileNameEntry &Entry = Prologue.FileNames[FileIndex - 1]; 1029 StringRef FileName = Entry.Name.getAsCString().getValue(); 1030 if (Kind != FileLineInfoKind::AbsoluteFilePath || 1031 isPathAbsoluteOnWindowsOrPosix(FileName)) { 1032 Result = FileName; 1033 return true; 1034 } 1035 1036 SmallString<16> FilePath; 1037 uint64_t IncludeDirIndex = Entry.DirIdx; 1038 StringRef IncludeDir; 1039 // Be defensive about the contents of Entry. 1040 if (IncludeDirIndex > 0 && 1041 IncludeDirIndex <= Prologue.IncludeDirectories.size()) 1042 IncludeDir = Prologue.IncludeDirectories[IncludeDirIndex - 1] 1043 .getAsCString() 1044 .getValue(); 1045 1046 // We may still need to append compilation directory of compile unit. 1047 // We know that FileName is not absolute, the only way to have an 1048 // absolute path at this point would be if IncludeDir is absolute. 1049 if (CompDir && Kind == FileLineInfoKind::AbsoluteFilePath && 1050 !isPathAbsoluteOnWindowsOrPosix(IncludeDir)) 1051 sys::path::append(FilePath, CompDir); 1052 1053 // sys::path::append skips empty strings. 1054 sys::path::append(FilePath, IncludeDir, FileName); 1055 Result = FilePath.str(); 1056 return true; 1057 } 1058 1059 bool DWARFDebugLine::LineTable::getFileLineInfoForAddress( 1060 object::SectionedAddress Address, const char *CompDir, 1061 FileLineInfoKind Kind, DILineInfo &Result) const { 1062 // Get the index of row we're looking for in the line table. 1063 uint32_t RowIndex = lookupAddress(Address); 1064 if (RowIndex == -1U) 1065 return false; 1066 // Take file number and line/column from the row. 1067 const auto &Row = Rows[RowIndex]; 1068 if (!getFileNameByIndex(Row.File, CompDir, Kind, Result.FileName)) 1069 return false; 1070 Result.Line = Row.Line; 1071 Result.Column = Row.Column; 1072 Result.Discriminator = Row.Discriminator; 1073 Result.Source = getSourceByIndex(Row.File, Kind); 1074 return true; 1075 } 1076 1077 // We want to supply the Unit associated with a .debug_line[.dwo] table when 1078 // we dump it, if possible, but still dump the table even if there isn't a Unit. 1079 // Therefore, collect up handles on all the Units that point into the 1080 // line-table section. 1081 static DWARFDebugLine::SectionParser::LineToUnitMap 1082 buildLineToUnitMap(DWARFDebugLine::SectionParser::cu_range CUs, 1083 DWARFDebugLine::SectionParser::tu_range TUs) { 1084 DWARFDebugLine::SectionParser::LineToUnitMap LineToUnit; 1085 for (const auto &CU : CUs) 1086 if (auto CUDIE = CU->getUnitDIE()) 1087 if (auto StmtOffset = toSectionOffset(CUDIE.find(DW_AT_stmt_list))) 1088 LineToUnit.insert(std::make_pair(*StmtOffset, &*CU)); 1089 for (const auto &TU : TUs) 1090 if (auto TUDIE = TU->getUnitDIE()) 1091 if (auto StmtOffset = toSectionOffset(TUDIE.find(DW_AT_stmt_list))) 1092 LineToUnit.insert(std::make_pair(*StmtOffset, &*TU)); 1093 return LineToUnit; 1094 } 1095 1096 DWARFDebugLine::SectionParser::SectionParser(DWARFDataExtractor &Data, 1097 const DWARFContext &C, 1098 cu_range CUs, tu_range TUs) 1099 : DebugLineData(Data), Context(C) { 1100 LineToUnit = buildLineToUnitMap(CUs, TUs); 1101 if (!DebugLineData.isValidOffset(Offset)) 1102 Done = true; 1103 } 1104 1105 bool DWARFDebugLine::Prologue::totalLengthIsValid() const { 1106 return TotalLength == 0xffffffff || TotalLength < 0xffffff00; 1107 } 1108 1109 DWARFDebugLine::LineTable DWARFDebugLine::SectionParser::parseNext( 1110 function_ref<void(Error)> RecoverableErrorCallback, 1111 function_ref<void(Error)> UnrecoverableErrorCallback, raw_ostream *OS) { 1112 assert(DebugLineData.isValidOffset(Offset) && 1113 "parsing should have terminated"); 1114 DWARFUnit *U = prepareToParse(Offset); 1115 uint32_t OldOffset = Offset; 1116 LineTable LT; 1117 if (Error Err = LT.parse(DebugLineData, &Offset, Context, U, 1118 RecoverableErrorCallback, OS)) 1119 UnrecoverableErrorCallback(std::move(Err)); 1120 moveToNextTable(OldOffset, LT.Prologue); 1121 return LT; 1122 } 1123 1124 void DWARFDebugLine::SectionParser::skip( 1125 function_ref<void(Error)> ErrorCallback) { 1126 assert(DebugLineData.isValidOffset(Offset) && 1127 "parsing should have terminated"); 1128 DWARFUnit *U = prepareToParse(Offset); 1129 uint32_t OldOffset = Offset; 1130 LineTable LT; 1131 if (Error Err = LT.Prologue.parse(DebugLineData, &Offset, Context, U)) 1132 ErrorCallback(std::move(Err)); 1133 moveToNextTable(OldOffset, LT.Prologue); 1134 } 1135 1136 DWARFUnit *DWARFDebugLine::SectionParser::prepareToParse(uint32_t Offset) { 1137 DWARFUnit *U = nullptr; 1138 auto It = LineToUnit.find(Offset); 1139 if (It != LineToUnit.end()) 1140 U = It->second; 1141 DebugLineData.setAddressSize(U ? U->getAddressByteSize() : 0); 1142 return U; 1143 } 1144 1145 void DWARFDebugLine::SectionParser::moveToNextTable(uint32_t OldOffset, 1146 const Prologue &P) { 1147 // If the length field is not valid, we don't know where the next table is, so 1148 // cannot continue to parse. Mark the parser as done, and leave the Offset 1149 // value as it currently is. This will be the end of the bad length field. 1150 if (!P.totalLengthIsValid()) { 1151 Done = true; 1152 return; 1153 } 1154 1155 Offset = OldOffset + P.TotalLength + P.sizeofTotalLength(); 1156 if (!DebugLineData.isValidOffset(Offset)) { 1157 Done = true; 1158 } 1159 } 1160