Enum cretonne_codegen::CodegenError[][src]

pub enum CodegenError {
    Verifier(VerifierError),
    ImplLimitExceeded,
    CodeTooLarge,
}

A compilation error.

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

Variants

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 CodegenError
[src]

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

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

Provides context for this failure. Read more

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

Important traits for Causes<'f>

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

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 CodegenError
[src]

Formats the value using the given formatter. Read more

impl Debug for CodegenError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CodegenError
[src]

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

This method tests for !=.

impl Eq for CodegenError
[src]

impl From<VerifierError> for CodegenError
[src]

Performs the conversion.

Auto Trait Implementations