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
Verifier(VerifierErrors)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.
ImplLimitExceededAn 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.
CodeTooLargeThe 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]
impl Debug for CodegenErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for CodegenError[src]
impl PartialEq for CodegenErrorfn eq(&self, other: &CodegenError) -> bool[src]
fn eq(&self, other: &CodegenError) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &CodegenError) -> bool[src]
fn ne(&self, other: &CodegenError) -> boolThis method tests for !=.
impl Eq for CodegenError[src]
impl Eq for CodegenErrorimpl From<VerifierErrors> for CodegenError[src]
impl From<VerifierErrors> for CodegenErrorfn from(e: VerifierErrors) -> Self[src]
fn from(e: VerifierErrors) -> SelfPerforms the conversion.
Auto Trait Implementations
impl Send for CodegenError
impl Send for CodegenErrorimpl Sync for CodegenError
impl Sync for CodegenError