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-30 12:46:10 +01:00
|
|
|
//! Evm factory.
|
2016-02-02 15:55:44 +01:00
|
|
|
//!
|
2016-10-02 18:45:36 +02:00
|
|
|
use std::sync::Arc;
|
2018-10-02 16:33:19 +02:00
|
|
|
use vm::{Exec, Schedule};
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::U256;
|
2018-08-13 22:06:15 +02:00
|
|
|
use super::vm::ActionParams;
|
2016-10-02 18:45:36 +02:00
|
|
|
use super::interpreter::SharedCache;
|
2017-05-30 19:31:43 +02:00
|
|
|
use super::vmtype::VMType;
|
2016-01-14 13:36:45 +01:00
|
|
|
|
2016-01-11 02:42:02 +01:00
|
|
|
/// Evm factory. Creates appropriate Evm.
|
2016-08-24 16:53:36 +02:00
|
|
|
#[derive(Clone)]
|
2016-01-14 13:36:45 +01:00
|
|
|
pub struct Factory {
|
2016-10-02 18:45:36 +02:00
|
|
|
evm: VMType,
|
|
|
|
evm_cache: Arc<SharedCache>,
|
2016-01-14 13:36:45 +01:00
|
|
|
}
|
2015-12-29 12:37:38 +01:00
|
|
|
|
2016-01-11 19:01:42 +01:00
|
|
|
impl Factory {
|
2016-01-16 17:08:57 +01:00
|
|
|
/// Create fresh instance of VM
|
2016-07-05 15:15:44 +02:00
|
|
|
/// Might choose implementation depending on supplied gas.
|
2018-10-02 16:33:19 +02:00
|
|
|
pub fn create(&self, params: ActionParams, schedule: &Schedule, depth: usize) -> Box<Exec> {
|
2016-02-03 15:57:17 +01:00
|
|
|
match self.evm {
|
2018-08-13 22:06:15 +02:00
|
|
|
VMType::Interpreter => if Self::can_fit_in_usize(¶ms.gas) {
|
|
|
|
Box::new(super::interpreter::Interpreter::<usize>::new(params, self.evm_cache.clone(), schedule, depth))
|
2016-07-05 15:15:44 +02:00
|
|
|
} else {
|
2018-08-13 22:06:15 +02:00
|
|
|
Box::new(super::interpreter::Interpreter::<U256>::new(params, self.evm_cache.clone(), schedule, depth))
|
2016-02-03 15:57:17 +01:00
|
|
|
}
|
2016-05-19 00:44:49 +02:00
|
|
|
}
|
2016-02-03 15:57:17 +01:00
|
|
|
}
|
|
|
|
|
2016-10-07 12:18:42 +02:00
|
|
|
/// Create new instance of specific `VMType` factory, with a size in bytes
|
|
|
|
/// for caching jump destinations.
|
|
|
|
pub fn new(evm: VMType, cache_size: usize) -> Self {
|
2016-01-14 13:36:45 +01:00
|
|
|
Factory {
|
2016-10-02 18:45:36 +02:00
|
|
|
evm: evm,
|
2016-10-07 12:18:42 +02:00
|
|
|
evm_cache: Arc::new(SharedCache::new(cache_size)),
|
2016-01-14 13:36:45 +01:00
|
|
|
}
|
|
|
|
}
|
2016-07-05 15:15:44 +02:00
|
|
|
|
2018-02-19 12:27:42 +01:00
|
|
|
fn can_fit_in_usize(gas: &U256) -> bool {
|
|
|
|
gas == &U256::from(gas.low_u64() as usize)
|
2016-07-05 15:15:44 +02:00
|
|
|
}
|
2016-01-19 11:10:38 +01:00
|
|
|
}
|
2016-05-19 00:44:49 +02:00
|
|
|
|
2016-01-19 11:10:38 +01:00
|
|
|
impl Default for Factory {
|
2016-01-14 13:36:45 +01:00
|
|
|
/// Returns native rust evm factory
|
2016-01-19 11:10:38 +01:00
|
|
|
fn default() -> Factory {
|
2016-01-14 13:36:45 +01:00
|
|
|
Factory {
|
2016-10-02 18:45:36 +02:00
|
|
|
evm: VMType::Interpreter,
|
|
|
|
evm_cache: Arc::new(SharedCache::default()),
|
2016-01-14 13:36:45 +01:00
|
|
|
}
|
2015-12-29 12:37:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_create_vm() {
|
2018-08-13 22:06:15 +02:00
|
|
|
use vm::Ext;
|
|
|
|
use vm::tests::FakeExt;
|
|
|
|
use bytes::Bytes;
|
|
|
|
|
|
|
|
let mut params = ActionParams::default();
|
|
|
|
params.code = Some(Arc::new(Bytes::default()));
|
|
|
|
let ext = FakeExt::new();
|
|
|
|
let _vm = Factory::default().create(params, ext.schedule(), ext.depth());
|
2015-12-29 12:37:38 +01:00
|
|
|
}
|
2016-01-14 16:17:44 +01:00
|
|
|
|
2016-01-16 17:08:57 +01:00
|
|
|
/// Create tests by injecting different VM factories
|
2016-01-14 16:17:44 +01:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! evm_test(
|
2018-04-04 11:07:49 +02:00
|
|
|
($name_test: ident: $name_int: ident) => {
|
2016-01-14 16:17:44 +01:00
|
|
|
#[test]
|
|
|
|
fn $name_int() {
|
2016-10-07 12:18:42 +02:00
|
|
|
$name_test(Factory::new(VMType::Interpreter, 1024 * 32));
|
2016-01-14 16:17:44 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2016-01-16 04:59:53 +01:00
|
|
|
|
2016-01-16 17:08:57 +01:00
|
|
|
/// Create ignored tests by injecting different VM factories
|
2016-01-16 04:59:53 +01:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! evm_test_ignore(
|
2018-04-04 11:07:49 +02:00
|
|
|
($name_test: ident: $name_int: ident) => {
|
2016-01-16 04:59:53 +01:00
|
|
|
#[test]
|
|
|
|
#[ignore]
|
2016-02-08 22:54:33 +01:00
|
|
|
#[cfg(feature = "ignored-tests")]
|
2016-01-16 04:59:53 +01:00
|
|
|
fn $name_int() {
|
2016-10-07 12:18:42 +02:00
|
|
|
$name_test(Factory::new(VMType::Interpreter, 1024 * 32));
|
2016-01-16 04:59:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|