Home
last modified time | relevance | path

Searched refs:LineData (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DLine.h36 LineInfo(uint32_t LineData) : LineData(LineData) {} in LineInfo() argument
38 uint32_t getStartLine() const { return LineData & StartLineMask; } in getStartLine()
41 return (LineData & EndLineDeltaMask) >> EndLineDeltaShift; in getLineDelta()
46 bool isStatement() const { return (LineData & StatementFlag) != 0; } in isStatement()
48 uint32_t getRawData() const { return LineData; } in getRawData()
59 uint32_t LineData;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DLine.cpp15 LineData = StartLine & StartLineMask; in LineInfo()
17 LineData |= (LineDelta << EndLineDeltaShift) & EndLineDeltaMask; in LineInfo()
19 LineData |= StatementFlag; in LineInfo()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp395 unsigned LineData = J->getLine(); in emitLineTableForFunction() local
397 LineData |= LineInfo::StatementFlag; in emitLineTableForFunction()
398 OS.emitInt32(LineData); in emitLineTableForFunction()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp600 DWARFDataExtractor LineData(DICtx.getDWARFObj(), in collectObjectSources() local
603 DWARFDebugLine::SectionParser Parser(LineData, DICtx, DICtx.normal_units()); in collectObjectSources()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1199 DWARFDataExtractor LineData(*DObj, DObj->getLineSection(), isLittleEndian(), in dump() local
1201 DWARFDebugLine::SectionParser Parser(LineData, *this, normal_units()); in dump()
1208 DWARFDataExtractor LineData(*DObj, DObj->getLineDWOSection(), in dump() local
1210 DWARFDebugLine::SectionParser Parser(LineData, *this, dwo_units()); in dump()