Struct hazardflow_rustc::options::HazardflowArgs
source · pub struct HazardflowArgs {
pub(crate) system_task: bool,
pub(crate) wire_cache: bool,
pub(crate) deadcode: bool,
pub(crate) inline_always: bool,
pub(crate) integrate: bool,
pub(crate) detect_comb_loop: bool,
pub(crate) target: Vec<String>,
pub(crate) merge: bool,
}
Expand description
Hazardflow Compiler Command line arguments
Fields§
§system_task: bool
Compiles debug information such as display!
or assert!
in generated Verilog
wire_cache: bool
Performs wire-cache optimiation
deadcode: bool
Performs deadcode elimination
inline_always: bool
Performs always-block inlining
integrate: bool
Integrates into a top module
detect_comb_loop: bool
Integrates into a top module
target: Vec<String>
Compiler Targets
merge: bool
Merge all modules into a single file
Implementations§
Trait Implementations§
source§impl Args for HazardflowArgs
impl Args for HazardflowArgs
source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
source§impl CommandFactory for HazardflowArgs
impl CommandFactory for HazardflowArgs
source§impl Debug for HazardflowArgs
impl Debug for HazardflowArgs
source§impl FromArgMatches for HazardflowArgs
impl FromArgMatches for HazardflowArgs
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.source§impl Parser for HazardflowArgs
impl Parser for HazardflowArgs
source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error
source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Update from iterator, exit on error
Auto Trait Implementations§
impl RefUnwindSafe for HazardflowArgs
impl Send for HazardflowArgs
impl Sync for HazardflowArgs
impl Unpin for HazardflowArgs
impl UnwindSafe for HazardflowArgs
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