macro_rules! try_or_fail {
( $e:expr ) => {
match $e {
Ok(v) => v,
Err(e) => return Control::Exit(e.into()),
}
};
}
macro_rules! pop {
( $machine:expr, $( $x:ident ),* ) => (
$(
let $x = match $machine.machine.stack_mut().pop() {
Ok(value) => value,
Err(e) => return Control::Exit(e.into()),
};
)*
);
}
macro_rules! pop_u256 {
( $machine:expr, $( $x:ident ),* ) => (
$(
let $x = match $machine.machine.stack_mut().pop() {
Ok(value) => U256::from_big_endian(&value[..]),
Err(e) => return Control::Exit(e.into()),
};
)*
);
}
macro_rules! push {
( $machine:expr, $( $x:expr ),* ) => (
$(
match $machine.machine.stack_mut().push($x) {
Ok(()) => (),
Err(e) => return Control::Exit(e.into()),
}
)*
)
}
macro_rules! push_u256 {
( $machine:expr, $( $x:expr ),* ) => (
$(
let value = H256::from($x.to_big_endian());
match $machine.machine.stack_mut().push(value) {
Ok(()) => (),
Err(e) => return Control::Exit(e.into()),
}
)*
)
}
macro_rules! as_usize_or_fail {
( $v:expr ) => {{
if $v > U256::from(usize::MAX) {
return Control::Exit(ExitFatal::NotSupported.into());
}
$v.as_usize()
}};
( $v:expr, $reason:expr ) => {{
if $v > U256::from(usize::MAX) {
return Control::Exit($reason.into());
}
$v.as_usize()
}};
}