cairo_lang_sierra_ap_change/
compute.rs

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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
use cairo_lang_sierra::algorithm::topological_order::get_topological_ordering;
use cairo_lang_sierra::extensions::core::{CoreLibfunc, CoreType};
use cairo_lang_sierra::extensions::gas::CostTokenType;
use cairo_lang_sierra::ids::{ConcreteTypeId, FunctionId};
use cairo_lang_sierra::program::{Program, Statement, StatementIdx};
use cairo_lang_sierra::program_registry::ProgramRegistry;
use cairo_lang_sierra_type_size::{TypeSizeMap, get_type_size_map};
use cairo_lang_utils::casts::IntoOrPanic;
use cairo_lang_utils::ordered_hash_map::OrderedHashMap;
use cairo_lang_utils::unordered_hash_map::{Entry, UnorderedHashMap};

use crate::ap_change_info::ApChangeInfo;
use crate::core_libfunc_ap_change::{self, InvocationApChangeInfoProvider};
use crate::{ApChange, ApChangeError};

/// Helper to implement the `InvocationApChangeInfoProvider` for the equation generation.
struct InvocationApChangeInfoProviderForEqGen<'a, TokenUsages: Fn(CostTokenType) -> usize> {
    /// Registry for providing the sizes of the types.
    type_sizes: &'a TypeSizeMap,
    /// Closure providing the token usages for the invocation.
    token_usages: TokenUsages,
}

impl<TokenUsages: Fn(CostTokenType) -> usize> InvocationApChangeInfoProvider
    for InvocationApChangeInfoProviderForEqGen<'_, TokenUsages>
{
    fn type_size(&self, ty: &ConcreteTypeId) -> usize {
        self.type_sizes[ty].into_or_panic()
    }

    fn token_usages(&self, token_type: CostTokenType) -> usize {
        (self.token_usages)(token_type)
    }
}

/// A base to start ap tracking from.
#[derive(Clone, Debug)]
enum ApTrackingBase {
    FunctionStart(FunctionId),
    #[expect(dead_code)]
    EnableStatement(StatementIdx),
}

/// The information for ap tracking of a statement.
#[derive(Clone, Debug)]
struct ApTrackingInfo {
    /// The base tracking from.
    base: ApTrackingBase,
    /// The ap-change from the base.
    ap_change: usize,
}

/// Helper for calculating the ap-changes of a program.
struct ApChangeCalcHelper<'a, TokenUsages: Fn(StatementIdx, CostTokenType) -> usize> {
    /// The program.
    program: &'a Program,
    /// The program registry.
    registry: ProgramRegistry<CoreType, CoreLibfunc>,
    /// Registry for providing the sizes of the types.
    type_sizes: TypeSizeMap,
    /// Closure providing the token usages for the invocation.
    token_usages: TokenUsages,
    /// The size of allocated locals until the statement.
    locals_size: UnorderedHashMap<StatementIdx, usize>,
    /// The lower bound of a ap-change to the furthest return per statement.
    known_ap_change_to_return: UnorderedHashMap<StatementIdx, usize>,
    /// The ap_change of functions with known ap changes.
    function_ap_change: OrderedHashMap<FunctionId, usize>,
    /// The ap tracking information per statement.
    tracking_info: UnorderedHashMap<StatementIdx, ApTrackingInfo>,
    /// The effective ap change from the statement's base.
    effective_ap_change_from_base: UnorderedHashMap<StatementIdx, usize>,
    /// The variables for ap alignment.
    variable_values: OrderedHashMap<StatementIdx, usize>,
}
impl<'a, TokenUsages: Fn(StatementIdx, CostTokenType) -> usize>
    ApChangeCalcHelper<'a, TokenUsages>
{
    /// Creates a new helper.
    fn new(program: &'a Program, token_usages: TokenUsages) -> Result<Self, ApChangeError> {
        let registry = ProgramRegistry::<CoreType, CoreLibfunc>::new(program)?;
        let type_sizes = get_type_size_map(program, &registry).unwrap();
        Ok(Self {
            program,
            registry,
            type_sizes,
            token_usages,
            locals_size: Default::default(),
            known_ap_change_to_return: Default::default(),
            function_ap_change: Default::default(),
            tracking_info: Default::default(),
            effective_ap_change_from_base: Default::default(),
            variable_values: Default::default(),
        })
    }

    /// Calculates the locals size and function ap changes.
    fn calc_locals_and_function_ap_changes(&mut self) -> Result<(), ApChangeError> {
        let ordering = self.known_ap_change_topological_order()?;
        for idx in ordering.iter().rev() {
            self.calc_locals_for_statement(*idx)?;
        }
        for idx in ordering {
            self.calc_known_ap_change_for_statement(idx)?;
        }
        self.function_ap_change = self
            .program
            .funcs
            .iter()
            .filter_map(|f| {
                self.known_ap_change_to_return
                    .get(&f.entry_point)
                    .cloned()
                    .map(|ap_change| (f.id.clone(), ap_change))
            })
            .collect();
        Ok(())
    }

    /// Calculates the locals size for a statement.
    fn calc_locals_for_statement(&mut self, idx: StatementIdx) -> Result<(), ApChangeError> {
        for (ap_change, target) in self.get_branches(idx)? {
            match ap_change {
                ApChange::AtLocalsFinalization(x) => {
                    self.locals_size.insert(target, self.get_statement_locals(idx) + x);
                }
                ApChange::Unknown | ApChange::FinalizeLocals => {}
                ApChange::FromMetadata
                | ApChange::FunctionCall(_)
                | ApChange::EnableApTracking
                | ApChange::Known(_)
                | ApChange::DisableApTracking => {
                    if let Some(locals) = self.locals_size.get(&idx) {
                        self.locals_size.insert(target, *locals);
                    }
                }
            }
        }
        Ok(())
    }

    /// Calculates the lower bound of a ap-change to the furthest return per statement.
    /// If it is unknown does not set it.
    fn calc_known_ap_change_for_statement(
        &mut self,
        idx: StatementIdx,
    ) -> Result<(), ApChangeError> {
        let mut max_change = 0;
        for (ap_change, target) in self.get_branches(idx)? {
            let Some(target_ap_change) = self.known_ap_change_to_return.get(&target) else {
                return Ok(());
            };
            if let Some(ap_change) = self.branch_ap_change(idx, &ap_change, |id| {
                self.known_ap_change_to_return.get(&self.func_entry_point(id).ok()?).cloned()
            }) {
                max_change = max_change.max(target_ap_change + ap_change);
            } else {
                return Ok(());
            };
        }
        self.known_ap_change_to_return.insert(idx, max_change);
        Ok(())
    }

    /// Returns the topological ordering of the program statements for fully known ap-changes.
    fn known_ap_change_topological_order(&self) -> Result<Vec<StatementIdx>, ApChangeError> {
        get_topological_ordering(
            false,
            (0..self.program.statements.len()).map(StatementIdx),
            self.program.statements.len(),
            |idx| {
                let mut res = vec![];
                for (ap_change, target) in self.get_branches(idx)? {
                    res.push(target);
                    if let ApChange::FunctionCall(id) = ap_change {
                        res.push(self.func_entry_point(&id)?);
                    }
                }
                Ok(res)
            },
            ApChangeError::StatementOutOfBounds,
            |_| unreachable!("Cycle isn't an error."),
        )
    }

    /// Returns the topological ordering of the program statements where tracked ap changes give the
    /// ordering.
    fn tracked_ap_change_topological_order(&self) -> Result<Vec<StatementIdx>, ApChangeError> {
        get_topological_ordering(
            false,
            (0..self.program.statements.len()).map(StatementIdx),
            self.program.statements.len(),
            |idx| {
                Ok(self
                    .get_branches(idx)?
                    .into_iter()
                    .flat_map(|(ap_change, target)| match ap_change {
                        ApChange::Unknown => None,
                        ApChange::FunctionCall(id) => {
                            if self.function_ap_change.contains_key(&id) {
                                Some(target)
                            } else {
                                None
                            }
                        }
                        ApChange::Known(_)
                        | ApChange::DisableApTracking
                        | ApChange::FromMetadata
                        | ApChange::AtLocalsFinalization(_)
                        | ApChange::FinalizeLocals
                        | ApChange::EnableApTracking => Some(target),
                    })
                    .collect())
            },
            ApChangeError::StatementOutOfBounds,
            |_| unreachable!("Cycle isn't an error."),
        )
    }

    /// Calculates the tracking information for a statement.
    fn calc_tracking_info_for_statement(&mut self, idx: StatementIdx) -> Result<(), ApChangeError> {
        for (ap_change, target) in self.get_branches(idx)? {
            if matches!(ap_change, ApChange::EnableApTracking) {
                self.tracking_info.insert(target, ApTrackingInfo {
                    base: ApTrackingBase::EnableStatement(idx),
                    ap_change: 0,
                });
                continue;
            }
            let Some(mut base_info) = self.tracking_info.get(&idx).cloned() else {
                continue;
            };
            if let Some(ap_change) = self
                .branch_ap_change(idx, &ap_change, |id| self.function_ap_change.get(id).cloned())
            {
                base_info.ap_change += ap_change;
            } else {
                continue;
            }
            match self.tracking_info.entry(target) {
                Entry::Occupied(e) => {
                    e.into_mut().ap_change = e.get().ap_change.max(base_info.ap_change);
                }
                Entry::Vacant(e) => {
                    e.insert(base_info);
                }
            }
        }
        Ok(())
    }

    /// Calculates the effective ap change for a statement, and the variables for ap alignment.
    fn calc_effective_ap_change_and_variables_per_statement(
        &mut self,
        idx: StatementIdx,
    ) -> Result<(), ApChangeError> {
        let Some(base_info) = self.tracking_info.get(&idx).cloned() else {
            return Ok(());
        };
        if matches!(self.program.get_statement(&idx), Some(Statement::Return(_))) {
            if let ApTrackingBase::FunctionStart(id) = base_info.base {
                if let Some(func_change) = self.function_ap_change.get(&id) {
                    self.effective_ap_change_from_base.insert(idx, *func_change);
                }
            }
            return Ok(());
        }
        let mut source_ap_change = None;
        let mut paths_ap_change = vec![];
        for (ap_change, target) in self.get_branches(idx)? {
            if matches!(ap_change, ApChange::EnableApTracking) {
                continue;
            }
            let Some(change) = self
                .branch_ap_change(idx, &ap_change, |id| self.function_ap_change.get(id).cloned())
            else {
                source_ap_change = Some(base_info.ap_change);
                continue;
            };
            let Some(target_ap_change) = self.effective_ap_change_from_base.get(&target) else {
                continue;
            };
            let calc_ap_change = target_ap_change - change;
            paths_ap_change.push((target, calc_ap_change));
            if let Some(source_ap_change) = &mut source_ap_change {
                *source_ap_change = (*source_ap_change).min(calc_ap_change);
            } else {
                source_ap_change = Some(calc_ap_change);
            }
        }
        if let Some(source_ap_change) = source_ap_change {
            self.effective_ap_change_from_base.insert(idx, source_ap_change);
            for (target, path_ap_change) in paths_ap_change {
                if path_ap_change != source_ap_change {
                    self.variable_values.insert(target, path_ap_change - source_ap_change);
                }
            }
        }
        Ok(())
    }

    /// Gets the actual ap-change of a branch.
    fn branch_ap_change(
        &self,
        idx: StatementIdx,
        ap_change: &ApChange,
        func_ap_change: impl Fn(&FunctionId) -> Option<usize>,
    ) -> Option<usize> {
        match ap_change {
            ApChange::Unknown | ApChange::DisableApTracking => None,
            ApChange::Known(x) => Some(*x),
            ApChange::FromMetadata
            | ApChange::AtLocalsFinalization(_)
            | ApChange::EnableApTracking => Some(0),
            ApChange::FinalizeLocals => Some(self.get_statement_locals(idx)),
            ApChange::FunctionCall(id) => func_ap_change(id).map(|x| 2 + x),
        }
    }

    /// Returns the locals size for a statement.
    fn get_statement_locals(&self, idx: StatementIdx) -> usize {
        self.locals_size.get(&idx).cloned().unwrap_or_default()
    }

    /// Returns the branches of a statement.
    fn get_branches(
        &self,
        idx: StatementIdx,
    ) -> Result<Vec<(ApChange, StatementIdx)>, ApChangeError> {
        Ok(match self.program.get_statement(&idx).unwrap() {
            Statement::Invocation(invocation) => {
                let libfunc = self.registry.get_libfunc(&invocation.libfunc_id)?;
                core_libfunc_ap_change::core_libfunc_ap_change(
                    libfunc,
                    &InvocationApChangeInfoProviderForEqGen {
                        type_sizes: &self.type_sizes,
                        token_usages: |token_type| (self.token_usages)(idx, token_type),
                    },
                )
                .into_iter()
                .zip(&invocation.branches)
                .map(|(ap_change, branch_info)| (ap_change, idx.next(&branch_info.target)))
                .collect()
            }
            Statement::Return(_) => vec![],
        })
    }

    /// Returns the entry point of a function.
    fn func_entry_point(&self, id: &FunctionId) -> Result<StatementIdx, ApChangeError> {
        Ok(self.registry.get_function(id)?.entry_point)
    }
}

/// Calculates ap change information for a given program.
pub fn calc_ap_changes<TokenUsages: Fn(StatementIdx, CostTokenType) -> usize>(
    program: &Program,
    token_usages: TokenUsages,
) -> Result<ApChangeInfo, ApChangeError> {
    let mut helper = ApChangeCalcHelper::new(program, token_usages)?;
    helper.calc_locals_and_function_ap_changes()?;
    let ap_tracked_topological_ordering = helper.tracked_ap_change_topological_order()?;
    // Setting tracking info for function entry points.
    for f in &program.funcs {
        helper.tracking_info.insert(f.entry_point, ApTrackingInfo {
            base: ApTrackingBase::FunctionStart(f.id.clone()),
            ap_change: 0,
        });
    }
    for idx in ap_tracked_topological_ordering.iter().rev() {
        helper.calc_tracking_info_for_statement(*idx)?;
    }
    for idx in ap_tracked_topological_ordering {
        helper.calc_effective_ap_change_and_variables_per_statement(idx)?;
    }
    Ok(ApChangeInfo {
        variable_values: helper.variable_values,
        function_ap_change: helper.function_ap_change,
    })
}