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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
use cairo_lang_eq_solver::Expr;
use cairo_lang_sierra::extensions::builtin_cost::CostTokenType;
use cairo_lang_sierra::extensions::core::{CoreLibfunc, CoreType};
use cairo_lang_sierra::extensions::ConcreteType;
use cairo_lang_sierra::ids::{ConcreteLibfuncId, ConcreteTypeId, FunctionId};
use cairo_lang_sierra::program::{Program, StatementIdx};
use cairo_lang_sierra::program_registry::{ProgramRegistry, ProgramRegistryError};
use cairo_lang_utils::ordered_hash_map::OrderedHashMap;
use core_libfunc_cost_base::InvocationCostInfoProvider;
use core_libfunc_cost_expr::CostExprMap;
use cost_expr::Var;
use gas_info::GasInfo;
use generate_equations::StatementFutureCost;
use thiserror::Error;
pub mod core_libfunc_cost;
mod core_libfunc_cost_base;
mod core_libfunc_cost_expr;
mod cost_expr;
pub mod gas_info;
mod generate_equations;
mod starknet_libfunc_cost_base;
#[cfg(test)]
mod test;
#[derive(Error, Debug, Eq, PartialEq)]
pub enum CostError {
#[error("error from the program registry")]
ProgramRegistryError(#[from] Box<ProgramRegistryError>),
#[error("found an illegal statement index during cost calculations")]
StatementOutOfBounds(StatementIdx),
#[error("failed solving the symbol tables")]
SolvingGasEquationFailed,
}
struct InvocationCostInfoProviderForEqGen<
'a,
TokenUsages: Fn(CostTokenType) -> usize,
ApChangeVarValue: Fn() -> usize,
> {
registry: &'a ProgramRegistry<CoreType, CoreLibfunc>,
token_usages: TokenUsages,
ap_change_var_value: ApChangeVarValue,
}
impl<'a, TokenUsages: Fn(CostTokenType) -> usize, ApChangeVarValue: Fn() -> usize>
InvocationCostInfoProvider
for InvocationCostInfoProviderForEqGen<'a, TokenUsages, ApChangeVarValue>
{
fn type_size(&self, ty: &ConcreteTypeId) -> usize {
self.registry.get_type(ty).unwrap().info().size as usize
}
fn token_usages(&self, token_type: CostTokenType) -> usize {
(self.token_usages)(token_type)
}
fn ap_change_var_value(&self) -> usize {
(self.ap_change_var_value)()
}
}
pub fn calc_gas_precost_info(
program: &Program,
function_set_costs: OrderedHashMap<FunctionId, OrderedHashMap<CostTokenType, i32>>,
) -> Result<GasInfo, CostError> {
let registry = ProgramRegistry::<CoreType, CoreLibfunc>::new(program)?;
calc_gas_info_inner(
program,
|statement_future_cost, idx, libfunc_id| -> Vec<OrderedHashMap<CostTokenType, Expr<Var>>> {
let libfunc = registry
.get_libfunc(libfunc_id)
.expect("Program registery creation would have already failed.");
core_libfunc_cost_expr::core_libfunc_precost_expr(statement_future_cost, idx, libfunc)
},
function_set_costs,
®istry,
)
}
pub fn calc_gas_postcost_info<ApChangeVarValue: Fn(StatementIdx) -> usize>(
program: &Program,
function_set_costs: OrderedHashMap<FunctionId, OrderedHashMap<CostTokenType, i32>>,
precost_gas_info: &GasInfo,
ap_change_var_value: ApChangeVarValue,
) -> Result<GasInfo, CostError> {
let registry = ProgramRegistry::<CoreType, CoreLibfunc>::new(program)?;
calc_gas_info_inner(
program,
|statement_future_cost, idx, libfunc_id| {
let libfunc = registry
.get_libfunc(libfunc_id)
.expect("Program registery creation would have already failed.");
core_libfunc_cost_expr::core_libfunc_postcost_expr(
statement_future_cost,
idx,
libfunc,
&InvocationCostInfoProviderForEqGen {
registry: ®istry,
token_usages: |token_type| {
precost_gas_info.variable_values[(*idx, token_type)] as usize
},
ap_change_var_value: || ap_change_var_value(*idx),
},
)
},
function_set_costs,
®istry,
)
}
fn calc_gas_info_inner<
GetCost: Fn(&mut dyn StatementFutureCost, &StatementIdx, &ConcreteLibfuncId) -> Vec<CostExprMap>,
>(
program: &Program,
get_cost: GetCost,
function_set_costs: OrderedHashMap<FunctionId, OrderedHashMap<CostTokenType, i32>>,
registry: &ProgramRegistry<CoreType, CoreLibfunc>,
) -> Result<GasInfo, CostError> {
let mut equations = generate_equations::generate_equations(program, get_cost)?;
for (func_id, cost_terms) in function_set_costs {
for token_type in CostTokenType::iter() {
equations[*token_type].push(
Expr::from_var(Var::StatementFuture(
registry.get_function(&func_id)?.entry_point,
*token_type,
)) - Expr::from_const(cost_terms.get(token_type).copied().unwrap_or_default()),
);
}
}
let mut variable_values = OrderedHashMap::default();
let mut function_costs = OrderedHashMap::default();
for (token_type, token_equations) in equations {
let solution = cairo_lang_eq_solver::try_solve_equations(token_equations)
.ok_or(CostError::SolvingGasEquationFailed)?;
for func in &program.funcs {
let id = &func.id;
if !function_costs.contains_key(id) {
function_costs.insert(id.clone(), OrderedHashMap::default());
}
let value = solution[Var::StatementFuture(func.entry_point, token_type)];
if value != 0 {
function_costs.get_mut(id).unwrap().insert(token_type, value);
}
}
for (var, value) in solution {
if let Var::LibfuncImplicitGasVariable(idx, var_token_type) = var {
assert_eq!(
token_type, var_token_type,
"Unexpected variable of type {var_token_type:?} while handling {token_type:?}."
);
variable_values.insert((idx, var_token_type), value);
}
}
}
Ok(GasInfo { variable_values, function_costs })
}