2018-06-04 10:19:50 +02:00
|
|
|
// Copyright 2015-2018 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;
|
2018-01-10 13:35:18 +01:00
|
|
|
extern crate ethereum_types;
|
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-11-10 19:04:55 +01:00
|
|
|
extern crate keccak_hash as hash;
|
2017-10-15 13:40:00 +02:00
|
|
|
extern crate memory_cache;
|
2017-07-12 13:09:17 +02:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
2018-01-03 10:51:39 +01:00
|
|
|
#[cfg_attr(feature = "evm-debug", macro_use)]
|
2017-07-12 13:09:17 +02:00
|
|
|
extern crate log;
|
|
|
|
|
|
|
|
#[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
|
|
|
|
2016-01-11 22:32:01 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
2018-06-05 11:28:35 +02:00
|
|
|
#[cfg(all(feature = "benches", test))]
|
2016-07-05 15:15:44 +02:00
|
|
|
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;
|