2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-12-23 13:49:45 +01:00
|
|
|
//! Ethereum virtual machine.
|
|
|
|
|
2017-07-12 13:09:17 +02:00
|
|
|
extern crate bit_set;
|
|
|
|
extern crate ethcore_util as util;
|
2017-09-04 16:36:49 +02:00
|
|
|
extern crate ethcore_bigint as bigint;
|
2017-09-02 20:09:13 +02:00
|
|
|
extern crate parking_lot;
|
2017-08-30 16:04:47 +02:00
|
|
|
extern crate heapsize;
|
2017-08-01 12:37:57 +02:00
|
|
|
extern crate vm;
|
2017-08-30 19:18:28 +02:00
|
|
|
extern crate hash;
|
2017-07-12 13:09:17 +02:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
|
|
|
extern crate log;
|
|
|
|
|
|
|
|
#[cfg(feature = "jit")]
|
|
|
|
extern crate evmjit;
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
extern crate rustc_hex;
|
|
|
|
|
2015-12-28 22:37:15 +01:00
|
|
|
pub mod evm;
|
2016-01-13 00:13:09 +01:00
|
|
|
pub mod interpreter;
|
2017-05-30 19:31:43 +02:00
|
|
|
|
2017-07-12 13:09:17 +02:00
|
|
|
#[macro_use]
|
|
|
|
pub mod factory;
|
2017-05-30 19:31:43 +02:00
|
|
|
mod vmtype;
|
2016-01-13 00:13:09 +01:00
|
|
|
mod instructions;
|
2017-07-12 13:09:17 +02:00
|
|
|
|
2015-12-23 13:02:01 +01:00
|
|
|
#[cfg(feature = "jit" )]
|
2015-12-29 12:37:38 +01:00
|
|
|
mod jit;
|
2015-12-23 13:02:01 +01:00
|
|
|
|
2016-01-11 22:32:01 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
2016-07-05 15:15:44 +02:00
|
|
|
#[cfg(all(feature="benches", test))]
|
|
|
|
mod benches;
|
2016-01-11 22:32:01 +01:00
|
|
|
|
2017-08-01 12:37:57 +02:00
|
|
|
pub use vm::{
|
|
|
|
Schedule, CleanDustMode, EnvInfo, CallType, ActionParams, Ext,
|
|
|
|
ContractCreateResult, MessageCallResult, CreateContractAddress,
|
|
|
|
GasLeft, ReturnData
|
|
|
|
};
|
|
|
|
pub use self::evm::{Finalize, FinalizationResult, CostType};
|
2017-06-09 12:31:03 +02:00
|
|
|
pub use self::instructions::{InstructionInfo, INSTRUCTIONS, push_bytes};
|
2017-05-30 19:31:43 +02:00
|
|
|
pub use self::vmtype::VMType;
|
|
|
|
pub use self::factory::Factory;
|