Struct ittapi_sys::_iJIT_Method_Update
source · [−]#[repr(C)]pub struct _iJIT_Method_Update {
pub load_address: *mut c_void,
pub size: c_uint,
pub type_: iJIT_SegmentType,
pub data_format: *const c_char,
}
Expand description
@brief Description of a dynamic update of the content within JIT-compiled method @details The JIT engine may generate the methods that are updated at runtime partially by mixed (data + executable code) content. When you use the iJIT_Method_Update structure to describe the update of the content within a JIT-compiled method, use iJVM_EVENT_TYPE_METHOD_UPDATE_V2 as an event type to report it.
On the first Update event, VTune Amplifier copies the original code range reported by the iJVM_EVENT_TYPE_METHOD_LOAD event, then modifies it with the supplied bytes and adds the modified range to the original method. For next update events, VTune Amplifier does the same but it uses the latest modified version of a code region for update. Eventually, VTune Amplifier GUI displays multiple code ranges for the method reported by the iJVM_EVENT_TYPE_METHOD_LOAD event. Notes:
- Multiple update events with different types for the same trace are allowed but they must be reported for the same code ranges. Example, @code [– data—] Allowed [– code –] Allowed [code] Ignored [– data—] Allowed [– code –] Allowed [———— trace ———] @endcode
- The types of previously reported events can be changed but they must be reported for the same code ranges. Example, @code [– data—] Allowed [– code –] Allowed [– data—] Allowed [– code –] Allowed [———— trace ———] @endcode
Fields
load_address: *mut c_void
<\brief Start address of the update within a method
size: c_uint
<\brief The update size
type_: iJIT_SegmentType
<\brief Type of the update
data_format: *const c_char
<\brief C string that contains a format string that follows the same specifications as format in printf. The format string is used for iJIT_CT_CODE only and cannot be NULL. Format can be changed on the fly.
Trait Implementations
sourceimpl Clone for _iJIT_Method_Update
impl Clone for _iJIT_Method_Update
sourcefn clone(&self) -> _iJIT_Method_Update
fn clone(&self) -> _iJIT_Method_Update
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for _iJIT_Method_Update
impl Debug for _iJIT_Method_Update
impl Copy for _iJIT_Method_Update
Auto Trait Implementations
impl RefUnwindSafe for _iJIT_Method_Update
impl !Send for _iJIT_Method_Update
impl !Sync for _iJIT_Method_Update
impl Unpin for _iJIT_Method_Update
impl UnwindSafe for _iJIT_Method_Update
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more