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
#![cfg_attr(not(feature = "std"), no_std)]

#![feature(alloc)]
#![feature(nll)]
#![feature(core_intrinsics)]
#![feature(underscore_lifetimes)]
#![feature(test)]

#[cfg(test)]
extern crate test;

#[cfg(not(feature = "std"))]
#[macro_use]
extern crate alloc;

extern crate serde;

#[macro_use]
extern crate serde_derive;

#[cfg(not(feature = "std"))]
extern crate bincode_no_std;
#[cfg(not(feature = "std"))]
use bincode_no_std as bincode;

#[cfg(feature = "std")]
extern crate bincode;

#[macro_use]
extern crate lazy_static;

#[cfg(feature = "jit")]
extern crate llvm_sys;

#[cfg(feature = "jit")]
extern crate smallvec;

#[cfg(feature = "jit")]
extern crate libc;

#[cfg(feature = "trans")]
extern crate parity_wasm;

extern crate byteorder;

#[cfg(feature = "trans")]
pub mod trans;

#[cfg(feature = "jit")]
pub mod jit;

#[cfg(feature = "jit")]
pub mod platform;

#[cfg(feature = "std")]
mod prelude;

#[cfg(not(feature = "std"))]
mod prelude_no_std;
#[cfg(not(feature = "std"))]
use prelude_no_std as prelude;

pub mod opcode;
pub mod executor;
pub mod module;
pub mod int_ops;
pub mod value;
pub mod resolver;
pub mod fp_ops;
pub mod cfgraph;
pub mod optimizers;
pub mod ssa;
pub mod hetrans;