Home
last modified time | relevance | path

Searched defs:BPFLineInfo (Results 1 – 1 of 1) sorted by relevance

/llvm-project/llvm/include/llvm/DebugInfo/BTF/
H A DBTF.h250 struct BPFLineInfo { struct
251 uint32_t InsnOffset; ///< Byte offset in this section
252 uint32_t FileNameOff; ///< File name index in the .BTF string table
253 uint32_t LineOff; ///< Line index in the .BTF string table
254 uint32_t LineCol; ///< Line num: line_col >> 10,
256 uint32_t getLine() const { return LineCol >> 10; } in getLine()
257 uint32_t getCol() const { return LineCol & 0x3ff; } in getCol()