pub struct LicmStatsExt {
pub loops_analyzed: usize,
pub candidates_found: usize,
pub hoisted: usize,
pub sunk: usize,
pub rejected: usize,
pub speculative_hoists: usize,
}Expand description
LICM pass statistics (extended)
Fields§
§loops_analyzed: usize§candidates_found: usize§hoisted: usize§sunk: usize§rejected: usize§speculative_hoists: usizeTrait Implementations§
Source§impl Clone for LicmStatsExt
impl Clone for LicmStatsExt
Source§fn clone(&self) -> LicmStatsExt
fn clone(&self) -> LicmStatsExt
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LicmStatsExt
impl Debug for LicmStatsExt
Source§impl Default for LicmStatsExt
impl Default for LicmStatsExt
Source§fn default() -> LicmStatsExt
fn default() -> LicmStatsExt
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LicmStatsExt
impl RefUnwindSafe for LicmStatsExt
impl Send for LicmStatsExt
impl Sync for LicmStatsExt
impl Unpin for LicmStatsExt
impl UnsafeUnpin for LicmStatsExt
impl UnwindSafe for LicmStatsExt
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more