Home
last modified time | relevance | path

Searched refs:LineCol (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/BTF/
H A DBTF.h254 uint32_t LineCol; ///< Line num: line_col >> 10, member
256 uint32_t getLine() const { return LineCol >> 10; } in getLine()
257 uint32_t getCol() const { return LineCol & 0x3ff; } in getCol()
/src/contrib/llvm-project/llvm/lib/DebugInfo/BTF/
H A DBTFParser.cpp323 uint32_t LineCol = Extractor.getU32(C); in parseLineInfo() local
326 Lines.push_back({InsnOff, FileNameOff, LineOff, LineCol}); in parseLineInfo()