1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//! Result and error types representing the outcome of compiling a function.

use verifier;
use std::error::Error as StdError;
use std::fmt;

/// A compilation error.
///
/// When Cretonne fails to compile a function, it will return one of these error codes.
#[derive(Debug, PartialEq, Eq)]
pub enum CtonError {
    /// 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.
    InvalidInput,

    /// An IL verifier error.
    ///
    /// This always represents a bug, either in the code that generated IL for Cretonne, or a bug
    /// in Cretonne itself.
    Verifier(verifier::Error),

    /// An implementation limit was exceeded.
    ///
    /// Cretonne can compile very large and complicated functions, but the [implementation has
    /// limits][limits] that cause compilation to fail when they are exceeded.
    ///
    /// [limits]: https://cretonne.readthedocs.io/en/latest/langref.html#implementation-limits
    ImplLimitExceeded,

    /// 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.
    CodeTooLarge,
}

/// A Cretonne compilation result.
pub type CtonResult = Result<(), CtonError>;

impl fmt::Display for CtonError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match *self {
            CtonError::Verifier(ref e) => write!(f, "Verifier error: {}", e),
            CtonError::InvalidInput |
            CtonError::ImplLimitExceeded |
            CtonError::CodeTooLarge => f.write_str(self.description()),
        }
    }
}

impl StdError for CtonError {
    fn description(&self) -> &str {
        match *self {
            CtonError::InvalidInput => "Invalid input code",
            CtonError::Verifier(ref e) => &e.message,
            CtonError::ImplLimitExceeded => "Implementation limit exceeded",
            CtonError::CodeTooLarge => "Code for function is too large",
        }
    }
    fn cause(&self) -> Option<&StdError> {
        match *self {
            CtonError::Verifier(ref e) => Some(e),
            CtonError::InvalidInput |
            CtonError::ImplLimitExceeded |
            CtonError::CodeTooLarge => None,
        }
    }
}

impl From<verifier::Error> for CtonError {
    fn from(e: verifier::Error) -> CtonError {
        CtonError::Verifier(e)
    }
}