Struct ittapi_sys::_LineNumberInfo
source · #[repr(C)]pub struct _LineNumberInfo {
pub Offset: c_uint,
pub LineNumber: c_uint,
}
Expand description
@brief Description of a single entry in the line number information of a code region. @details A table of line number entries gives information about how the reported code region is mapped to source file. Intel(R) VTune(TM) Amplifier uses line number information to attribute the samples (virtual address) to a line number. \n It is acceptable to report different code addresses for the same source line: @code Offset LineNumber 1 2 12 4 15 2 18 1 21 30
VTune Amplifier constructs the following table using the client data
Code subrange Line number 0-1 2 1-12 4 12-15 2 15-18 1 18-21 30 @endcode
Fields§
§Offset: c_uint
<\brief Offset from the begining of the code region.
LineNumber: c_uint
<\brief Matching source line number offset (from beginning of source file).
Trait Implementations§
source§impl Clone for _LineNumberInfo
impl Clone for _LineNumberInfo
source§fn clone(&self) -> _LineNumberInfo
fn clone(&self) -> _LineNumberInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more