Struct inkwell::passes::PassBuilderOptions
source · pub struct PassBuilderOptions { /* private fields */ }
Implementations§
source§impl PassBuilderOptions
impl PassBuilderOptions
sourcepub fn as_mut_ptr(&self) -> LLVMPassBuilderOptionsRef
pub fn as_mut_ptr(&self) -> LLVMPassBuilderOptionsRef
Acquires the underlying raw pointer belonging to this PassBuilderOptions
type.
sourcepub fn set_verify_each(&self, value: bool)
pub fn set_verify_each(&self, value: bool)
Toggle adding the VerifierPass for the PassBuilder, ensuring all functions inside the module is valid.
sourcepub fn set_debug_logging(&self, value: bool)
pub fn set_debug_logging(&self, value: bool)
Toggle debug logging when running the PassBuilder.
pub fn set_loop_interleaving(&self, value: bool)
pub fn set_loop_vectorization(&self, value: bool)
pub fn set_loop_slp_vectorization(&self, value: bool)
pub fn set_loop_unrolling(&self, value: bool)
pub fn set_forget_all_scev_in_loop_unroll(&self, value: bool)
pub fn set_licm_mssa_opt_cap(&self, value: u32)
pub fn set_licm_mssa_no_acc_for_promotion_cap(&self, value: u32)
pub fn set_call_graph_profile(&self, value: bool)
pub fn set_merge_functions(&self, value: bool)
Trait Implementations§
source§impl Debug for PassBuilderOptions
impl Debug for PassBuilderOptions
Auto Trait Implementations§
impl RefUnwindSafe for PassBuilderOptions
impl !Send for PassBuilderOptions
impl !Sync for PassBuilderOptions
impl Unpin for PassBuilderOptions
impl UnwindSafe for PassBuilderOptions
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