Struct cranelift_codegen::settings::Flags[][src]

pub struct Flags { /* fields omitted */ }

Flags group shared.

Methods

impl Flags
[src]

Create flags shared settings group.

impl Flags
[src]

User-defined settings.

Get a view of the boolean predicates.

Optimization level:

  • default: Very profitable optimizations enabled, none slow.
  • best: Enable all optimizations
  • fastest: Optimize for compile time by disabling most optimizations.

Run the Cranelift IR verifier at strategic times during compilation.

This makes compilation slower but catches many bugs. The verifier is disabled by default, except when reading Cranelift IR from a text file.

Default calling convention:

  • fast: not-ABI-stable convention for best performance
  • cold: not-ABI-stable convention for infrequently executed code
  • system_v: System V-style convention used on many platforms
  • windows_fastcall: Windows "fastcall" convention, also used for x64 and ARM
  • baldrdash: SpiderMonkey WebAssembly convention
  • probestack: specialized convention for the probestack function

The default calling convention may be overridden by individual functions.

Enable Position-Independent Code generation

Use colocated libcalls.

Generate code that assumes that libcalls can be declared "colocated", meaning they will be defined along with the current function, such that they can use more efficient addressing.

Generate functions with at most a single return instruction at the end of the function.

This guarantees that functions do not have any internal return instructions. Either they never return, or they have a single return instruction at the end.

Generate explicit checks around native division instructions to avoid their trapping.

This is primarily used by SpiderMonkey which doesn't install a signal handler for SIGFPE, but expects a SIGILL trap for division by zero.

On ISAs like ARM where the native division instructions don't trap, this setting has no effect - explicit checks are always inserted.

Enable the use of floating-point instructions

Disabling use of floating-point instructions is not yet implemented.

Enable NaN canonicalization

This replaces NaNs with a single canonical value, for users requiring entirely deterministic WebAssembly computation. This is not required by the WebAssembly spec, so it is not enabled by default.

Enable the use of SIMD instructions.

Enable the use of atomic instructions

Number of pointer-sized words pushed by the baldrdash prologue.

Functions with the baldrdash calling convention don't generate their own prologue and epilogue. They depend on externally generated code that pushes a fixed number of words in the prologue and restores them in the epilogue.

This setting configures the number of pointer-sized words pushed on the stack when the Cranelift-generated code is entered. This includes the pushed return address on x86.

Emit not-yet-relocated function addresses as all-ones bit patterns.

Enable the use of stack probes, for calling conventions which support this functionality.

Set this to true of the stack probe function modifies the stack pointer itself.

The log2 of the size of the stack guard region.

Stack frames larger than this size will have stack overflow checked by calling the probestack function.

The default is 12, which translates to a size of 4096.

Trait Implementations

impl Clone for Flags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Flags
[src]

Formats the value using the given formatter. Read more

impl<'a> From<&'a Flags> for FlagsOrIsa<'a>
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Flags

impl Sync for Flags