Home
last modified time | relevance | path

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

/freebsd-src/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-src/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-src/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp392 unsigned LineData = J->getLine(); in emitLineTableForFunction()
394 LineData |= LineInfo::StatementFlag; in emitLineTableForFunction()
395 OS.emitInt32(LineData); in emitLineTableForFunction() local
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp630 DWARFDataExtractor LineData(DICtx.getDWARFObj(), in createRegInfo()
633 DWARFDebugLine::SectionParser Parser(LineData, DICtx, DICtx.normal_units()); in createRegInfo()
600 DWARFDataExtractor LineData(DICtx.getDWARFObj(), collectObjectSources() local
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1200 DWARFDataExtractor LineData(*DObj, DObj->getLineSection(), isLittleEndian(), in dump()
1202 DWARFDebugLine::SectionParser Parser(LineData, *this, normal_units()); in dump()
1209 DWARFDataExtractor LineData(*DObj, DObj->getLineDWOSection(), in dump()
1211 DWARFDebugLine::SectionParser Parser(LineData, *this, dwo_units()); in dump()
1199 DWARFDataExtractor LineData(*DObj, DObj->getLineSection(), isLittleEndian(), dump() local
1208 DWARFDataExtractor LineData(*DObj, DObj->getLineDWOSection(), dump() local