#[cfg(not(feature = "std"))]
use alloc::{
format,
string::{String, ToString},
};
use core::fmt::{Display, Formatter};
use cairo_lang_utils::bigint::BigIntAsHex;
use indoc::formatdoc;
use crate::operand::{CellRef, DerefOrImmediate, ResOperand};
#[cfg(test)]
mod test;
#[derive(Debug, Eq, PartialEq, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize), serde(untagged))]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
#[cfg_attr(
feature = "parity-scale-codec",
derive(parity_scale_codec::Encode, parity_scale_codec::Decode)
)]
pub enum Hint {
#[cfg_attr(feature = "parity-scale-codec", codec(index = 0))]
Core(CoreHintBase),
#[cfg_attr(feature = "parity-scale-codec", codec(index = 1))]
Starknet(StarknetHint),
}
impl Hint {
pub fn representing_string(&self) -> String {
format!("{:?}", self)
}
}
impl From<CoreHint> for Hint {
fn from(value: CoreHint) -> Self {
Hint::Core(value.into())
}
}
impl From<StarknetHint> for Hint {
fn from(value: StarknetHint) -> Self {
Hint::Starknet(value)
}
}
pub trait PythonicHint {
fn get_pythonic_hint(&self) -> String;
}
impl PythonicHint for Hint {
fn get_pythonic_hint(&self) -> String {
match self {
Hint::Core(hint) => hint.get_pythonic_hint(),
Hint::Starknet(hint) => hint.get_pythonic_hint(),
}
}
}
#[derive(Debug, Eq, PartialEq, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
#[cfg_attr(
feature = "parity-scale-codec",
derive(parity_scale_codec::Encode, parity_scale_codec::Decode)
)]
pub enum StarknetHint {
#[cfg_attr(feature = "parity-scale-codec", codec(index = 0))]
SystemCall { system: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 1))]
#[cfg_attr(feature = "schemars", schemars(skip))]
Cheatcode {
selector: BigIntAsHex,
input_start: ResOperand,
input_end: ResOperand,
output_start: CellRef,
output_end: CellRef,
},
}
#[derive(Debug, Eq, PartialEq, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize), serde(untagged))]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
#[cfg_attr(
feature = "parity-scale-codec",
derive(parity_scale_codec::Encode, parity_scale_codec::Decode)
)]
pub enum CoreHintBase {
#[cfg_attr(feature = "parity-scale-codec", codec(index = 0))]
Core(CoreHint),
#[cfg_attr(feature = "parity-scale-codec", codec(index = 1))]
Deprecated(DeprecatedHint),
}
impl From<CoreHint> for CoreHintBase {
fn from(value: CoreHint) -> Self {
CoreHintBase::Core(value)
}
}
impl From<DeprecatedHint> for CoreHintBase {
fn from(value: DeprecatedHint) -> Self {
CoreHintBase::Deprecated(value)
}
}
#[derive(Debug, Eq, PartialEq, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
#[cfg_attr(
feature = "parity-scale-codec",
derive(parity_scale_codec::Encode, parity_scale_codec::Decode)
)]
pub enum CoreHint {
#[cfg_attr(feature = "parity-scale-codec", codec(index = 0))]
AllocSegment { dst: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 1))]
TestLessThan { lhs: ResOperand, rhs: ResOperand, dst: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 2))]
TestLessThanOrEqual { lhs: ResOperand, rhs: ResOperand, dst: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 28))]
TestLessThanOrEqualAddress { lhs: ResOperand, rhs: ResOperand, dst: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 3))]
WideMul128 { lhs: ResOperand, rhs: ResOperand, high: CellRef, low: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 4))]
DivMod { lhs: ResOperand, rhs: ResOperand, quotient: CellRef, remainder: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 5))]
Uint256DivMod {
dividend0: ResOperand,
dividend1: ResOperand,
divisor0: ResOperand,
divisor1: ResOperand,
quotient0: CellRef,
quotient1: CellRef,
remainder0: CellRef,
remainder1: CellRef,
},
#[cfg_attr(feature = "parity-scale-codec", codec(index = 6))]
Uint512DivModByUint256 {
dividend0: ResOperand,
dividend1: ResOperand,
dividend2: ResOperand,
dividend3: ResOperand,
divisor0: ResOperand,
divisor1: ResOperand,
quotient0: CellRef,
quotient1: CellRef,
quotient2: CellRef,
quotient3: CellRef,
remainder0: CellRef,
remainder1: CellRef,
},
#[cfg_attr(feature = "parity-scale-codec", codec(index = 7))]
SquareRoot { value: ResOperand, dst: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 8))]
Uint256SquareRoot {
value_low: ResOperand,
value_high: ResOperand,
sqrt0: CellRef,
sqrt1: CellRef,
remainder_low: CellRef,
remainder_high: CellRef,
sqrt_mul_2_minus_remainder_ge_u128: CellRef,
},
#[cfg_attr(feature = "parity-scale-codec", codec(index = 9))]
LinearSplit { value: ResOperand, scalar: ResOperand, max_x: ResOperand, x: CellRef, y: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 10))]
AllocFelt252Dict { segment_arena_ptr: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 11))]
Felt252DictEntryInit { dict_ptr: ResOperand, key: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 12))]
Felt252DictEntryUpdate { dict_ptr: ResOperand, value: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 13))]
GetSegmentArenaIndex { dict_end_ptr: ResOperand, dict_index: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 14))]
InitSquashData {
dict_accesses: ResOperand,
ptr_diff: ResOperand,
n_accesses: ResOperand,
big_keys: CellRef,
first_key: CellRef,
},
#[cfg_attr(feature = "parity-scale-codec", codec(index = 15))]
GetCurrentAccessIndex { range_check_ptr: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 16))]
ShouldSkipSquashLoop { should_skip_loop: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 17))]
GetCurrentAccessDelta { index_delta_minus1: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 18))]
ShouldContinueSquashLoop { should_continue: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 19))]
GetNextDictKey { next_key: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 20))]
AssertLeFindSmallArcs { range_check_ptr: ResOperand, a: ResOperand, b: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 21))]
AssertLeIsFirstArcExcluded { skip_exclude_a_flag: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 22))]
AssertLeIsSecondArcExcluded { skip_exclude_b_minus_a: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 23))]
RandomEcPoint { x: CellRef, y: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 24))]
FieldSqrt { val: ResOperand, sqrt: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 25))]
DebugPrint { start: ResOperand, end: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 26))]
AllocConstantSize { size: ResOperand, dst: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 27))]
U256InvModN {
b0: ResOperand,
b1: ResOperand,
n0: ResOperand,
n1: ResOperand,
g0_or_no_inv: CellRef,
g1_option: CellRef,
s_or_r0: CellRef,
s_or_r1: CellRef,
t_or_k0: CellRef,
t_or_k1: CellRef,
},
#[cfg_attr(feature = "parity-scale-codec", codec(index = 29))]
EvalCircuit {
n_add_mods: ResOperand,
add_mod_builtin: ResOperand,
n_mul_mods: ResOperand,
mul_mod_builtin: ResOperand,
},
}
#[derive(Debug, Eq, PartialEq, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
#[cfg_attr(
feature = "parity-scale-codec",
derive(parity_scale_codec::Encode, parity_scale_codec::Decode)
)]
pub enum DeprecatedHint {
#[cfg_attr(feature = "parity-scale-codec", codec(index = 0))]
AssertCurrentAccessIndicesIsEmpty,
#[cfg_attr(feature = "parity-scale-codec", codec(index = 1))]
AssertAllAccessesUsed { n_used_accesses: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 2))]
AssertAllKeysUsed,
#[cfg_attr(feature = "parity-scale-codec", codec(index = 3))]
AssertLeAssertThirdArcExcluded,
#[cfg_attr(feature = "parity-scale-codec", codec(index = 4))]
AssertLtAssertValidInput { a: ResOperand, b: ResOperand },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 5))]
Felt252DictRead { dict_ptr: ResOperand, key: ResOperand, value_dst: CellRef },
#[cfg_attr(feature = "parity-scale-codec", codec(index = 6))]
Felt252DictWrite { dict_ptr: ResOperand, key: ResOperand, value: ResOperand },
}
struct DerefOrImmediateFormatter<'a>(&'a DerefOrImmediate);
impl Display for DerefOrImmediateFormatter<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self.0 {
DerefOrImmediate::Deref(d) => write!(f, "memory{d}"),
DerefOrImmediate::Immediate(i) => write!(f, "{}", i.value),
}
}
}
struct ResOperandAsIntegerFormatter<'a>(&'a ResOperand);
impl Display for ResOperandAsIntegerFormatter<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self.0 {
ResOperand::Deref(d) => write!(f, "memory{d}"),
ResOperand::DoubleDeref(d, i) => write!(f, "memory[memory{d} + {i}]"),
ResOperand::Immediate(i) => write!(f, "{}", i.value),
ResOperand::BinOp(bin_op) => {
write!(
f,
"(memory{} {} {}) % PRIME",
bin_op.a,
bin_op.op,
DerefOrImmediateFormatter(&bin_op.b)
)
}
}
}
}
struct ResOperandAsAddressFormatter<'a>(&'a ResOperand);
impl Display for ResOperandAsAddressFormatter<'_> {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self.0 {
ResOperand::Deref(d) => write!(f, "memory{d}"),
ResOperand::DoubleDeref(d, i) => write!(f, "memory[memory{d} + {i}]"),
ResOperand::Immediate(i) => {
unreachable!("Address cannot be an immediate: {}.", i.value)
}
ResOperand::BinOp(bin_op) => {
write!(
f,
"memory{} {} {}",
bin_op.a,
bin_op.op,
DerefOrImmediateFormatter(&bin_op.b)
)
}
}
}
}
impl PythonicHint for CoreHintBase {
fn get_pythonic_hint(&self) -> String {
match self {
CoreHintBase::Core(hint) => hint.get_pythonic_hint(),
CoreHintBase::Deprecated(_) => {
unreachable!("Deprecated hints do not have a pythonic version.")
}
}
}
}
impl PythonicHint for CoreHint {
fn get_pythonic_hint(&self) -> String {
match self {
CoreHint::AllocSegment { dst } => format!("memory{dst} = segments.add()"),
CoreHint::AllocFelt252Dict { segment_arena_ptr } => {
let segment_arena_ptr = ResOperandAsAddressFormatter(segment_arena_ptr);
formatdoc! {"
if '__dict_manager' not in globals():
from starkware.cairo.common.dict import DictManager
__dict_manager = DictManager()
if '__segment_index_to_arena_index' not in globals():
# A map from the relocatable value segment index to the index in the
# arena.
__segment_index_to_arena_index = {{}}
# {segment_arena_ptr} is the address of the next SegmentArenaBuiltin.
# memory[{segment_arena_ptr} - 2] is the number of allocated segments.
index = memory[{segment_arena_ptr} - 2]
segment_start = __dict_manager.new_default_dict(
segments, 0, temp_segment=index > 0
)
# Update '__segment_index_to_arena_index'.
__segment_index_to_arena_index[segment_start.segment_index] = index
# Update 'SegmentInfo::start'.
# memory[{segment_arena_ptr} - 3] is the address of the segment arena infos
# segment. index * 3 is added to get the address of the new SegmentInfo.
memory[memory[{segment_arena_ptr} - 3] + index * 3] = segment_start
"}
}
CoreHint::Felt252DictEntryInit { dict_ptr, key } => {
let (dict_ptr, key) =
(ResOperandAsAddressFormatter(dict_ptr), ResOperandAsIntegerFormatter(key));
formatdoc! {"
dict_tracker = __dict_manager.get_tracker({dict_ptr})
dict_tracker.current_ptr += 3
memory[{dict_ptr} + 1] = dict_tracker.data[{key}]
"}
}
CoreHint::Felt252DictEntryUpdate { dict_ptr, value } => {
let (dict_ptr, value) =
(ResOperandAsAddressFormatter(dict_ptr), ResOperandAsIntegerFormatter(value));
formatdoc! {"
dict_tracker = __dict_manager.get_tracker({dict_ptr})
dict_tracker.data[memory[{dict_ptr} - 3]] = {value}
"}
}
CoreHint::TestLessThan { lhs, rhs, dst } => {
format!(
"memory{dst} = {} < {}",
ResOperandAsIntegerFormatter(lhs),
ResOperandAsIntegerFormatter(rhs)
)
}
CoreHint::TestLessThanOrEqual { lhs, rhs, dst } => format!(
"memory{dst} = {} <= {}",
ResOperandAsIntegerFormatter(lhs),
ResOperandAsIntegerFormatter(rhs)
),
CoreHint::TestLessThanOrEqualAddress { lhs, rhs, dst } => format!(
"memory{dst} = {} <= {}",
ResOperandAsAddressFormatter(lhs),
ResOperandAsAddressFormatter(rhs)
),
CoreHint::WideMul128 { lhs, rhs, high, low } => format!(
"(memory{high}, memory{low}) = divmod({} * {}, 2**128)",
ResOperandAsIntegerFormatter(lhs),
ResOperandAsIntegerFormatter(rhs)
),
CoreHint::DivMod { lhs, rhs, quotient, remainder } => format!(
"(memory{quotient}, memory{remainder}) = divmod({}, {})",
ResOperandAsIntegerFormatter(lhs),
ResOperandAsIntegerFormatter(rhs)
),
CoreHint::Uint256DivMod {
dividend0,
dividend1,
quotient0,
quotient1,
divisor0,
divisor1,
remainder0,
remainder1,
} => {
let (dividend0, dividend1, divisor0, divisor1) = (
ResOperandAsIntegerFormatter(dividend0),
ResOperandAsIntegerFormatter(dividend1),
ResOperandAsIntegerFormatter(divisor0),
ResOperandAsIntegerFormatter(divisor1),
);
formatdoc! {"
dividend = {dividend0} + {dividend1} * 2**128
divisor = {divisor0} + {divisor1} * 2**128
quotient, remainder = divmod(dividend, divisor)
memory{quotient0} = quotient & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
memory{quotient1} = quotient >> 128
memory{remainder0} = remainder & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
memory{remainder1} = remainder >> 128
"}
}
CoreHint::Uint512DivModByUint256 {
dividend0,
dividend1,
dividend2,
dividend3,
divisor0,
divisor1,
quotient0,
quotient1,
quotient2,
quotient3,
remainder0,
remainder1,
} => {
let [dividend0, dividend1, dividend2, dividend3, divisor0, divisor1] =
[dividend0, dividend1, dividend2, dividend3, divisor0, divisor1]
.map(ResOperandAsIntegerFormatter);
formatdoc! {"
dividend = {dividend0} + {dividend1} * 2**128 + {dividend2} * 2**256 + \
{dividend3} * 2**384
divisor = {divisor0} + {divisor1} * 2**128
quotient, remainder = divmod(dividend, divisor)
memory{quotient0} = quotient & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
memory{quotient1} = (quotient >> 128) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
memory{quotient2} = (quotient >> 256) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
memory{quotient3} = quotient >> 384
memory{remainder0} = remainder & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
memory{remainder1} = remainder >> 128
"}
}
CoreHint::SquareRoot { value, dst } => {
let value = ResOperandAsIntegerFormatter(value);
formatdoc! {"
import math
memory{dst} = math.isqrt({value})
"}
}
CoreHint::Uint256SquareRoot {
value_low,
value_high,
sqrt0,
sqrt1,
remainder_low,
remainder_high,
sqrt_mul_2_minus_remainder_ge_u128,
} => {
let (value_low, value_high) = (
ResOperandAsIntegerFormatter(value_low),
ResOperandAsIntegerFormatter(value_high),
);
formatdoc! {"
import math;
value = {value_low} + {value_high} * 2**128
root = math.isqrt(value)
remainder = value - root ** 2
memory{sqrt0} = root & 0xFFFFFFFFFFFFFFFF
memory{sqrt1} = root >> 64
memory{remainder_low} = remainder & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
memory{remainder_high} = remainder >> 128
memory{sqrt_mul_2_minus_remainder_ge_u128} = root * 2 - remainder >= 2**128
"}
}
CoreHint::LinearSplit { value, scalar, max_x, x, y } => {
let (value, scalar, max_x) = (
ResOperandAsIntegerFormatter(value),
ResOperandAsIntegerFormatter(scalar),
ResOperandAsIntegerFormatter(max_x),
);
formatdoc! {"
(value, scalar) = ({value}, {scalar})
x = min(value // scalar, {max_x})
y = value - x * scalar
memory{x} = x
memory{y} = y
"}
}
CoreHint::RandomEcPoint { x, y } => {
formatdoc! {"
from starkware.crypto.signature.signature import ALPHA, BETA, FIELD_PRIME
from starkware.python.math_utils import random_ec_point
(memory{x}, memory{y}) = random_ec_point(FIELD_PRIME, ALPHA, BETA)
"}
}
CoreHint::FieldSqrt { val, sqrt } => {
let val = ResOperandAsIntegerFormatter(val);
formatdoc! {"
from starkware.crypto.signature.signature import FIELD_PRIME
from starkware.python.math_utils import is_quad_residue, sqrt
val = {val}
if is_quad_residue(val, FIELD_PRIME):
memory{sqrt} = sqrt(val, FIELD_PRIME)
else:
memory{sqrt} = sqrt(val * 3, FIELD_PRIME)
"}
}
CoreHint::GetCurrentAccessIndex { range_check_ptr } => {
let rc = ResOperandAsAddressFormatter(range_check_ptr);
formatdoc! {"
current_access_indices = sorted(access_indices[key])[::-1]
current_access_index = current_access_indices.pop()
memory[{rc}] = current_access_index
"}
}
CoreHint::ShouldSkipSquashLoop { should_skip_loop } => {
format!("memory{should_skip_loop} = 0 if current_access_indices else 1")
}
CoreHint::GetCurrentAccessDelta { index_delta_minus1 } => formatdoc! {"
new_access_index = current_access_indices.pop()
memory{index_delta_minus1} = new_access_index - current_access_index - 1
current_access_index = new_access_index
"},
CoreHint::ShouldContinueSquashLoop { should_continue } => {
format!("memory{should_continue} = 1 if current_access_indices else 0")
}
CoreHint::GetNextDictKey { next_key } => formatdoc! {"
assert len(keys) > 0, 'No keys left but remaining_accesses > 0.'
memory{next_key} = key = keys.pop()
"},
CoreHint::GetSegmentArenaIndex { dict_end_ptr, dict_index } => {
let dict_end_ptr = ResOperandAsAddressFormatter(dict_end_ptr);
formatdoc! {"
memory{dict_index} = __segment_index_to_arena_index[
{dict_end_ptr}.segment_index
]
"}
}
CoreHint::InitSquashData {
dict_accesses,
ptr_diff,
n_accesses,
big_keys,
first_key,
} => {
let (dict_accesses, ptr_diff, n_accesses) = (
ResOperandAsAddressFormatter(dict_accesses),
ResOperandAsIntegerFormatter(ptr_diff),
ResOperandAsIntegerFormatter(n_accesses),
);
formatdoc! {"
dict_access_size = 3
address = {dict_accesses}
assert {ptr_diff} % dict_access_size == 0, 'Accesses array size must be \
divisible by DictAccess.SIZE'
n_accesses = {n_accesses}
if '__squash_dict_max_size' in globals():
assert n_accesses <= __squash_dict_max_size, f'squash_dict() can only be \
used with n_accesses<={{__squash_dict_max_size}}. ' f'Got: \
n_accesses={{n_accesses}}.'
# A map from key to the list of indices accessing it.
access_indices = {{}}
for i in range(n_accesses):
key = memory[address + dict_access_size * i]
access_indices.setdefault(key, []).append(i)
# Descending list of keys.
keys = sorted(access_indices.keys(), reverse=True)
# Are the keys used bigger than range_check bound.
memory{big_keys} = 1 if keys[0] >= range_check_builtin.bound else 0
memory{first_key} = key = keys.pop()
"}
}
CoreHint::AssertLeFindSmallArcs { range_check_ptr, a, b } => {
let (range_check_ptr, a, b) = (
ResOperandAsAddressFormatter(range_check_ptr),
ResOperandAsIntegerFormatter(a),
ResOperandAsIntegerFormatter(b),
);
formatdoc! {"
import itertools
from starkware.cairo.common.math_utils import assert_integer
assert_integer({a})
assert_integer({b})
a = {a} % PRIME
b = {b} % PRIME
assert a <= b, f'a = {{a}} is not less than or equal to b = {{b}}.'
# Find an arc less than PRIME / 3, and another less than PRIME / 2.
lengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]
lengths_and_indices.sort()
assert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] \
<= PRIME // 2
excluded = lengths_and_indices[2][1]
memory[{range_check_ptr} + 1], memory[{range_check_ptr} + 0] = (
divmod(lengths_and_indices[0][0], 3544607988759775765608368578435044694))
memory[{range_check_ptr} + 3], memory[{range_check_ptr} + 2] = (
divmod(lengths_and_indices[1][0], 5316911983139663648412552867652567041))
"}
}
CoreHint::AssertLeIsFirstArcExcluded { skip_exclude_a_flag } => {
format!("memory{skip_exclude_a_flag} = 1 if excluded != 0 else 0",)
}
CoreHint::AssertLeIsSecondArcExcluded { skip_exclude_b_minus_a } => {
format!("memory{skip_exclude_b_minus_a} = 1 if excluded != 1 else 0",)
}
CoreHint::DebugPrint { start, end } => {
let [start, end] = [start, end].map(ResOperandAsAddressFormatter);
formatdoc! {"
curr = {start}
end = {end}
while curr != end:
print(hex(memory[curr]))
curr += 1
"}
}
CoreHint::AllocConstantSize { size, dst } => {
let size = ResOperandAsIntegerFormatter(size);
formatdoc! {"
if '__boxed_segment' not in globals():
__boxed_segment = segments.add()
memory{dst} = __boxed_segment
__boxed_segment += {size}
"}
}
CoreHint::U256InvModN {
b0,
b1,
n0,
n1,
g0_or_no_inv,
g1_option,
s_or_r0,
s_or_r1,
t_or_k0,
t_or_k1,
} => {
let [b0, b1, n0, n1] = [b0, b1, n0, n1].map(ResOperandAsIntegerFormatter);
formatdoc! {"
from starkware.python.math_utils import igcdex
b = {b0} + ({b1} << 128)
n = {n0} + ({n1} << 128)
(_, r, g) = igcdex(n, b)
if n == 1:
memory{g0_or_no_inv} = 1
memory{g1_option} = 0
memory{s_or_r0} = {b0}
memory{s_or_r1} = {b1}
memory{t_or_k0} = 1
memory{t_or_k1} = 0
elif g != 1:
if g % 2 == 0:
g = 2
s = b // g
t = n // g
memory{g0_or_no_inv} = g & 0xffffffffffffffffffffffffffffffff
memory{g1_option} = g >> 128
memory{s_or_r0} = s & 0xffffffffffffffffffffffffffffffff
memory{s_or_r1} = s >> 128
memory{t_or_k0} = t & 0xffffffffffffffffffffffffffffffff
memory{t_or_k1} = t >> 128
else:
r %= n
k = (r * b - 1) // n
memory{g0_or_no_inv} = 0
memory{s_or_r0} = r & 0xffffffffffffffffffffffffffffffff
memory{s_or_r1} = r >> 128
memory{t_or_k0} = k & 0xffffffffffffffffffffffffffffffff
memory{t_or_k1} = k >> 128
"}
}
CoreHint::EvalCircuit { n_add_mods, add_mod_builtin, n_mul_mods, mul_mod_builtin } => {
let n_add_mods = ResOperandAsIntegerFormatter(n_add_mods);
let add_mod_builtin = ResOperandAsAddressFormatter(add_mod_builtin);
let n_mul_mods = ResOperandAsIntegerFormatter(n_mul_mods);
let mul_mod_builtin = ResOperandAsAddressFormatter(mul_mod_builtin);
formatdoc! {"
from starkware.cairo.lang.builtins.modulo.mod_builtin_runner import ModBuiltinRunner
ModBuiltinRunner.fill_memory(
memory=memory,
add_mod=({add_mod_builtin}, builtin_runners[\"add_mod_builtin\"], {n_add_mods}),
mul_mod=({mul_mod_builtin}, builtin_runners[\"mul_mod_builtin\"], {n_mul_mods}),
)
"}
}
}
}
}
impl PythonicHint for StarknetHint {
fn get_pythonic_hint(&self) -> String {
match self {
StarknetHint::SystemCall { system } => {
format!(
"syscall_handler.syscall(syscall_ptr={})",
ResOperandAsAddressFormatter(system)
)
}
StarknetHint::Cheatcode { .. } => "raise NotImplementedError".to_string(),
}
}
}