Enum cretonne_codegen::result::CtonError [] [src]

pub enum CtonError {
    InvalidInput,
    Verifier(Error),
    ImplLimitExceeded,
    CodeTooLarge,
}

A compilation error.

When Cretonne fails to compile a function, it will return one of these error codes.

Variants

The input is invalid.

This error code is used by a WebAssembly translator when it encounters invalid WebAssembly code. This should never happen for validated WebAssembly code.

An IR verifier error.

This always represents a bug, either in the code that generated IR for Cretonne, or a bug in Cretonne itself.

An implementation limit was exceeded.

Cretonne can compile very large and complicated functions, but the implementation has limits that cause compilation to fail when they are exceeded.

The code size for the function is too large.

Different target ISAs may impose a limit on the size of a compiled function. If that limit is exceeded, compilation fails.

Trait Implementations

impl Fail for CtonError
[src]

[src]

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

[src]

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

[src]

Provides context for this failure. Read more

[src]

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more

Important traits for Causes<'f>
[src]

Returns a iterator over the causes of this Fail with itself as the first item and the root_cause as the final item. Read more

[src]

Returns the "root cause" of this Fail - the last value in the cause chain which does not return an underlying cause. Read more

impl Display for CtonError
[src]

[src]

Formats the value using the given formatter. Read more

impl Debug for CtonError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for CtonError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for CtonError
[src]

impl From<Error> for CtonError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for CtonError

impl Sync for CtonError