Searched refs:LineData (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DLine.cpp15 LineData = StartLine & StartLineMask;
17 LineData |= (LineDelta << EndLineDeltaShift) & EndLineDeltaMask;
19 LineData |= StatementFlag;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h37 LineInfo(uint32_t LineData) : LineData(LineData) {} argument
39 uint32_t getStartLine() const { return LineData & StartLineMask; }
42 return (LineData & EndLineDeltaMask) >> EndLineDeltaShift;
47 bool isStatement() const { return (LineData & StatementFlag) != 0; }
49 uint32_t getRawData() const { return LineData; }
60 uint32_t LineData; variable
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DGCOV.h350 // Therefore this typedef allows LineData.Functions to store multiple
358 struct LineData { struct in class:llvm::FileInfo
359 LineData() = default;
404 StringMap<LineData> LineInfo;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFStreamer.h119 void translateLineTable(DataExtractor LineData, uint64_t Offset) override;
H A DDWARFLinker.h148 virtual void translateLineTable(DataExtractor LineData, uint64_t Offset) = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp371 unsigned LineData = J->getLine(); local
373 LineData |= LineInfo::StatementFlag;
374 OS.emitInt32(LineData);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp645 const LineData &Line = LineInfo[Filename];
751 const LineData &line = LineInfo[source.filename];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp530 DWARFDataExtractor LineData(*DObj, DObj->getLineSection(), isLittleEndian(),
532 DWARFDebugLine::SectionParser Parser(LineData, *this, compile_units(),
540 DWARFDataExtractor LineData(*DObj, DObj->getLineDWOSection(),
542 DWARFDebugLine::SectionParser Parser(LineData, *this, dwo_compile_units(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp1722 StringRef LineData = OrigDwarf.getDWARFObj().getLineSection().Data; local
1728 Params, LineData.slice(*StmtList + 4, PrologueEnd),

Completed in 261 milliseconds