snarkvm_synthesizer_program/function/mod.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
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
mod input;
use input::*;
mod output;
use output::*;
mod bytes;
mod parse;
use crate::{
finalize::FinalizeCore,
traits::{CommandTrait, InstructionTrait},
};
use console::{
network::prelude::*,
program::{Identifier, Register, ValueType, Variant},
};
use indexmap::IndexSet;
#[derive(Clone, PartialEq, Eq)]
pub struct FunctionCore<N: Network, Instruction: InstructionTrait<N>, Command: CommandTrait<N>> {
/// The name of the function.
name: Identifier<N>,
/// The input statements, added in order of the input registers.
/// Input assignments are ensured to match the ordering of the input statements.
inputs: IndexSet<Input<N>>,
/// The instructions, in order of execution.
instructions: Vec<Instruction>,
/// The output statements, in order of the desired output.
outputs: IndexSet<Output<N>>,
/// The optional finalize logic.
finalize_logic: Option<FinalizeCore<N, Command>>,
}
impl<N: Network, Instruction: InstructionTrait<N>, Command: CommandTrait<N>> FunctionCore<N, Instruction, Command> {
/// Initializes a new function with the given name.
pub fn new(name: Identifier<N>) -> Self {
Self { name, inputs: IndexSet::new(), instructions: Vec::new(), outputs: IndexSet::new(), finalize_logic: None }
}
/// Returns the name of the function.
pub const fn name(&self) -> &Identifier<N> {
&self.name
}
/// Returns the function inputs.
pub const fn inputs(&self) -> &IndexSet<Input<N>> {
&self.inputs
}
/// Returns the function input types.
pub fn input_types(&self) -> Vec<ValueType<N>> {
self.inputs.iter().map(|input| input.value_type()).cloned().collect()
}
/// Returns the function input type variants.
pub fn input_variants(&self) -> Vec<Variant> {
self.inputs.iter().map(|input| input.value_type().variant()).collect()
}
/// Returns the function instructions.
pub fn instructions(&self) -> &[Instruction] {
&self.instructions
}
/// Returns the function outputs.
pub const fn outputs(&self) -> &IndexSet<Output<N>> {
&self.outputs
}
/// Returns the function output types.
pub fn output_types(&self) -> Vec<ValueType<N>> {
self.outputs.iter().map(|output| output.value_type()).cloned().collect()
}
/// Returns the function output type variants.
pub fn output_variants(&self) -> Vec<Variant> {
self.outputs.iter().map(|output| output.value_type().variant()).collect()
}
/// Returns the function finalize logic.
pub const fn finalize_logic(&self) -> Option<&FinalizeCore<N, Command>> {
self.finalize_logic.as_ref()
}
}
impl<N: Network, Instruction: InstructionTrait<N>, Command: CommandTrait<N>> FunctionCore<N, Instruction, Command> {
/// Adds the input statement to the function.
///
/// # Errors
/// This method will halt if there are instructions or output statements already.
/// This method will halt if the maximum number of inputs has been reached.
/// This method will halt if the input statement was previously added.
/// This method will halt if a finalize logic has been added.
#[inline]
fn add_input(&mut self, input: Input<N>) -> Result<()> {
// Ensure there are no instructions or output statements in memory.
ensure!(self.instructions.is_empty(), "Cannot add inputs after instructions have been added");
ensure!(self.outputs.is_empty(), "Cannot add inputs after outputs have been added");
// Ensure the maximum number of inputs has not been exceeded.
ensure!(self.inputs.len() < N::MAX_INPUTS, "Cannot add more than {} inputs", N::MAX_INPUTS);
// Ensure the input statement was not previously added.
ensure!(!self.inputs.contains(&input), "Cannot add duplicate input statement");
// Ensure a finalize logic has not been added.
ensure!(self.finalize_logic.is_none(), "Cannot add instructions after finalize logic has been added");
// Ensure the input register is a locator.
ensure!(matches!(input.register(), Register::Locator(..)), "Input register must be a locator");
// Insert the input statement.
self.inputs.insert(input);
Ok(())
}
/// Adds the given instruction to the function.
///
/// # Errors
/// This method will halt if there are output statements already.
/// This method will halt if the maximum number of instructions has been reached.
/// This method will halt if a finalize logic has been added.
#[inline]
pub fn add_instruction(&mut self, instruction: Instruction) -> Result<()> {
// Ensure that there are no output statements in memory.
ensure!(self.outputs.is_empty(), "Cannot add instructions after outputs have been added");
// Ensure the maximum number of instructions has not been exceeded.
ensure!(
self.instructions.len() < N::MAX_INSTRUCTIONS,
"Cannot add more than {} instructions",
N::MAX_INSTRUCTIONS
);
// Ensure a finalize logic has not been added.
ensure!(self.finalize_logic.is_none(), "Cannot add instructions after finalize logic has been added");
// Ensure the destination register is a locator.
for register in instruction.destinations() {
ensure!(matches!(register, Register::Locator(..)), "Destination register must be a locator");
}
// Insert the instruction.
self.instructions.push(instruction);
Ok(())
}
/// Adds the output statement to the function.
///
/// # Errors
/// This method will halt if the maximum number of outputs has been reached.
/// This method will halt if a finalize logic has been added.
#[inline]
fn add_output(&mut self, output: Output<N>) -> Result<()> {
// Ensure the maximum number of outputs has not been exceeded.
ensure!(self.outputs.len() < N::MAX_OUTPUTS, "Cannot add more than {} outputs", N::MAX_OUTPUTS);
// Ensure the output statement was not previously added.
ensure!(!self.outputs.contains(&output), "Cannot add duplicate output statement");
// Ensure that the finalize logic has not been added.
ensure!(self.finalize_logic.is_none(), "Cannot add instructions after finalize logic has been added");
// Insert the output statement.
self.outputs.insert(output);
Ok(())
}
/// Adds the finalize scope to the function.
///
/// # Errors
/// This method will halt if a finalize scope has already been added.
/// This method will halt if name in the finalize scope does not match the function name.
/// This method will halt if the maximum number of finalize inputs has been reached.
/// This method will halt if the number of finalize operands does not match the number of finalize inputs.
#[inline]
fn add_finalize(&mut self, finalize: FinalizeCore<N, Command>) -> Result<()> {
// Ensure there is no finalize scope in memory.
ensure!(self.finalize_logic.is_none(), "Cannot add multiple finalize scopes to function '{}'", self.name);
// Ensure the finalize scope name matches the function name.
ensure!(*finalize.name() == self.name, "Finalize scope name must match function name '{}'", self.name);
// Ensure the number of finalize inputs has not been exceeded.
ensure!(finalize.inputs().len() <= N::MAX_INPUTS, "Cannot add more than {} inputs to finalize", N::MAX_INPUTS);
// Insert the finalize scope.
self.finalize_logic = Some(finalize);
Ok(())
}
}
impl<N: Network, Instruction: InstructionTrait<N>, Command: CommandTrait<N>> TypeName
for FunctionCore<N, Instruction, Command>
{
/// Returns the type name as a string.
#[inline]
fn type_name() -> &'static str {
"function"
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{Function, Instruction};
type CurrentNetwork = console::network::MainnetV0;
#[test]
fn test_add_input() {
// Initialize a new function instance.
let name = Identifier::from_str("function_core_test").unwrap();
let mut function = Function::<CurrentNetwork>::new(name);
// Ensure that an input can be added.
let input = Input::<CurrentNetwork>::from_str("input r0 as field.private;").unwrap();
assert!(function.add_input(input.clone()).is_ok());
// Ensure that adding a duplicate input will fail.
assert!(function.add_input(input).is_err());
// Ensure that adding more than the maximum number of inputs will fail.
for i in 1..CurrentNetwork::MAX_INPUTS * 2 {
let input = Input::<CurrentNetwork>::from_str(&format!("input r{i} as field.private;")).unwrap();
match function.inputs.len() < CurrentNetwork::MAX_INPUTS {
true => assert!(function.add_input(input).is_ok()),
false => assert!(function.add_input(input).is_err()),
}
}
}
#[test]
fn test_add_instruction() {
// Initialize a new function instance.
let name = Identifier::from_str("function_core_test").unwrap();
let mut function = Function::<CurrentNetwork>::new(name);
// Ensure that an instruction can be added.
let instruction = Instruction::<CurrentNetwork>::from_str("add r0 r1 into r2;").unwrap();
assert!(function.add_instruction(instruction).is_ok());
// Ensure that adding more than the maximum number of instructions will fail.
for i in 3..CurrentNetwork::MAX_INSTRUCTIONS * 2 {
let instruction = Instruction::<CurrentNetwork>::from_str(&format!("add r0 r1 into r{i};")).unwrap();
match function.instructions.len() < CurrentNetwork::MAX_INSTRUCTIONS {
true => assert!(function.add_instruction(instruction).is_ok()),
false => assert!(function.add_instruction(instruction).is_err()),
}
}
}
#[test]
fn test_add_output() {
// Initialize a new function instance.
let name = Identifier::from_str("function_core_test").unwrap();
let mut function = Function::<CurrentNetwork>::new(name);
// Ensure that an output can be added.
let output = Output::<CurrentNetwork>::from_str("output r0 as field.private;").unwrap();
assert!(function.add_output(output).is_ok());
// Ensure that adding more than the maximum number of outputs will fail.
for i in 1..CurrentNetwork::MAX_OUTPUTS * 2 {
let output = Output::<CurrentNetwork>::from_str(&format!("output r{i} as field.private;")).unwrap();
match function.outputs.len() < CurrentNetwork::MAX_OUTPUTS {
true => assert!(function.add_output(output).is_ok()),
false => assert!(function.add_output(output).is_err()),
}
}
}
}