openethereum/ethcore/evm/src/factory.rs

97 lines
2.5 KiB
Rust
Raw Normal View History

// 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
//!
use std::sync::Arc;
use vm::Vm;
use ethereum_types::U256;
use super::interpreter::SharedCache;
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.
#[derive(Clone)]
2016-01-14 13:36:45 +01:00
pub struct Factory {
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
/// Might choose implementation depending on supplied gas.
pub fn create(&self, gas: &U256) -> Box<Vm> {
2016-02-03 15:57:17 +01:00
match self.evm {
VMType::Interpreter => if Self::can_fit_in_usize(gas) {
Box::new(super::interpreter::Interpreter::<usize>::new(self.evm_cache.clone()))
} else {
Box::new(super::interpreter::Interpreter::<U256>::new(self.evm_cache.clone()))
2016-02-03 15:57:17 +01: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 {
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
}
}
fn can_fit_in_usize(gas: &U256) -> bool {
gas == &U256::from(gas.low_u64() as usize)
}
2016-01-19 11:10:38 +01: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 {
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() {
let _vm = Factory::default().create(&U256::zero());
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(
($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 17:08:57 +01:00
/// Create ignored tests by injecting different VM factories
#[macro_export]
macro_rules! evm_test_ignore(
($name_test: ident: $name_int: ident) => {
#[test]
#[ignore]
#[cfg(feature = "ignored-tests")]
fn $name_int() {
2016-10-07 12:18:42 +02:00
$name_test(Factory::new(VMType::Interpreter, 1024 * 32));
}
}
);