Enum cranelift_codegen::CodegenError[][src]

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

A compilation error.

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

Variants

A list of IR verifier errors.

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

An implementation limit was exceeded.

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

Performs the conversion.

Auto Trait Implementations