1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use fuel_types::Word;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum GasUnit {
Atom(Word),
Arithmetic(Word),
ArithmeticExpensive(Word),
RegisterWrite(Word),
Branching(Word),
MemoryOwnership(Word),
MemoryWrite(Word),
Accumulated(Word),
Undefined,
}
impl GasUnit {
pub const fn cost(&self) -> Word {
use GasUnit::*;
match self {
Atom(1) => self.unit_price(),
Arithmetic(1) => self.unit_price(),
ArithmeticExpensive(1) => self.unit_price(),
RegisterWrite(1) => self.unit_price(),
Branching(1) => self.unit_price(),
MemoryOwnership(1) => self.unit_price(),
MemoryWrite(1) => self.unit_price(),
Undefined => self.unit_price(),
Atom(n) => *n * Atom(1).cost(),
Arithmetic(n) => *n * Arithmetic(1).cost(),
ArithmeticExpensive(n) => *n * ArithmeticExpensive(1).cost(),
RegisterWrite(n) => *n * RegisterWrite(1).cost(),
Branching(n) => *n * Branching(1).cost(),
MemoryOwnership(n) => *n * MemoryOwnership(1).cost(),
MemoryWrite(n) => *n * MemoryWrite(1).cost(),
Accumulated(c) => *c,
}
}
pub const fn unit_price(&self) -> Word {
use GasUnit::*;
match self {
Atom(_) => 1,
Arithmetic(_) => 5,
ArithmeticExpensive(_) => 7,
RegisterWrite(_) => 2,
Branching(_) => 10,
MemoryOwnership(_) => 9,
MemoryWrite(_) => 8,
Undefined => 20,
Accumulated(c) => *c,
}
}
pub const fn join(self, other: Self) -> Self {
Self::Accumulated(self.cost() + other.cost())
}
}