Enum cretonne::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 IL verifier error.

This always represents a bug, either in the code that generated IL 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 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 Display for CtonError
[src]

[src]

Formats the value using the given formatter. Read more

impl StdError for CtonError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl From<Error> for CtonError
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for CtonError

impl Sync for CtonError