Lines Matching refs:DebugLineData

183 parseV2DirFileTables(const DWARFDataExtractor &DebugLineData,  in parseV2DirFileTables()  argument
190 StringRef S = DebugLineData.getCStrRef(OffsetPtr, &Err); in parseV2DirFileTables()
209 StringRef Name = DebugLineData.getCStrRef(OffsetPtr, &Err); in parseV2DirFileTables()
216 FileEntry.DirIdx = DebugLineData.getULEB128(OffsetPtr, &Err); in parseV2DirFileTables()
217 FileEntry.ModTime = DebugLineData.getULEB128(OffsetPtr, &Err); in parseV2DirFileTables()
218 FileEntry.Length = DebugLineData.getULEB128(OffsetPtr, &Err); in parseV2DirFileTables()
237 parseV5EntryFormat(const DWARFDataExtractor &DebugLineData, uint64_t *OffsetPtr, in parseV5EntryFormat() argument
241 int FormatCount = DebugLineData.getU8(OffsetPtr, &Err); in parseV5EntryFormat()
246 dwarf::LineNumberEntryFormat(DebugLineData.getULEB128(OffsetPtr, &Err)); in parseV5EntryFormat()
247 Descriptor.Form = dwarf::Form(DebugLineData.getULEB128(OffsetPtr, &Err)); in parseV5EntryFormat()
268 parseV5DirFileTables(const DWARFDataExtractor &DebugLineData, in parseV5DirFileTables() argument
276 parseV5EntryFormat(DebugLineData, OffsetPtr, nullptr); in parseV5DirFileTables()
281 uint64_t DirEntryCount = DebugLineData.getULEB128(OffsetPtr); in parseV5DirFileTables()
287 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
294 if (!Value.skipValue(DebugLineData, OffsetPtr, FormParams)) in parseV5DirFileTables()
304 parseV5EntryFormat(DebugLineData, OffsetPtr, &ContentTypes); in parseV5DirFileTables()
309 uint64_t FileEntryCount = DebugLineData.getULEB128(OffsetPtr); in parseV5DirFileTables()
314 if (!Value.extractValue(DebugLineData, OffsetPtr, FormParams, &Ctx, U)) in parseV5DirFileTables()
360 DWARFDataExtractor DebugLineData, uint64_t *OffsetPtr, in parse() argument
368 DebugLineData.getInitialLength(Cursor); in parse()
370 DebugLineData = in parse()
371 DWARFDataExtractor(DebugLineData, Cursor.tell() + TotalLength); in parse()
372 FormParams.Version = DebugLineData.getU16(Cursor); in parse()
386 FormParams.AddrSize = DebugLineData.getU8(Cursor); in parse()
387 assert((!Cursor || DebugLineData.getAddressSize() == 0 || in parse()
388 DebugLineData.getAddressSize() == getAddressSize()) && in parse()
390 SegSelectorSize = DebugLineData.getU8(Cursor); in parse()
394 DebugLineData.getRelocatedValue(Cursor, sizeofPrologueLength()); in parse()
396 DebugLineData = DWARFDataExtractor(DebugLineData, EndPrologueOffset); in parse()
397 MinInstLength = DebugLineData.getU8(Cursor); in parse()
399 MaxOpsPerInst = DebugLineData.getU8(Cursor); in parse()
400 DefaultIsStmt = DebugLineData.getU8(Cursor); in parse()
401 LineBase = DebugLineData.getU8(Cursor); in parse()
402 LineRange = DebugLineData.getU8(Cursor); in parse()
403 OpcodeBase = DebugLineData.getU8(Cursor); in parse()
417 uint8_t OpLen = DebugLineData.getU8(Cursor); in parse()
434 ? parseV5DirFileTables(DebugLineData, OffsetPtr, FormParams, Ctx, U, in parse()
436 : parseV2DirFileTables(DebugLineData, OffsetPtr, ContentTypes, in parse()
581 DWARFDataExtractor &DebugLineData, uint64_t Offset, const DWARFContext &Ctx, in getOrParseLineTable() argument
583 if (!DebugLineData.isValidOffset(Offset)) in getOrParseLineTable()
593 LT->parse(DebugLineData, &Offset, Ctx, U, RecoverableErrorHandler)) in getOrParseLineTable()
725 DWARFDataExtractor &DebugLineData, uint64_t *OffsetPtr, in parse() argument
735 Prologue.parse(DebugLineData, OffsetPtr, RecoverableErrorHandler, Ctx, U); in parse()
752 if (!DebugLineData.isValidOffsetForDataOfSize(DebugLineOffset, in parse()
754 assert(DebugLineData.size() > DebugLineOffset && in parse()
756 uint64_t BytesRemaining = DebugLineData.size() - DebugLineOffset; in parse()
770 DWARFDataExtractor TableData(DebugLineData, EndOffset); in parse()
1434 : DebugLineData(Data), Context(C) { in SectionParser()
1436 if (!DebugLineData.isValidOffset(Offset)) in SectionParser()
1448 assert(DebugLineData.isValidOffset(Offset) && in parseNext()
1453 if (Error Err = LT.parse(DebugLineData, &Offset, Context, U, in parseNext()
1463 assert(DebugLineData.isValidOffset(Offset) && in skip()
1468 if (Error Err = LT.Prologue.parse(DebugLineData, &Offset, in skip()
1479 DebugLineData.setAddressSize(U ? U->getAddressByteSize() : 0); in prepareToParse()
1494 if (!DebugLineData.isValidOffset(Offset)) { in moveToNextTable()