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
// Copyright (C) 2019-2023 Aleo Systems Inc.
// 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.
use console::network::prelude::*;
/// The `Opcode` enum stores the mnemonic for the instruction.
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
pub enum Opcode {
/// The opcode is for a assert operation (i.e. `assert`).
Assert(&'static str),
/// The opcode is for an async call operation (i.e. `async`).
Async,
/// The opcode is for a call operation (i.e. `call`).
Call,
/// The opcode is for a cast operation (i.e. `cast`).
Cast(&'static str),
/// The opcode is for a finalize command (i.e. `increment`).
Command(&'static str),
/// The opcode is for a commit operation (i.e. `commit.psd4`).
Commit(&'static str),
/// The opcode is for a hash operation (i.e. `hash.psd4`).
Hash(&'static str),
/// The opcode is for an 'is' operation (i.e. `is.eq`).
Is(&'static str),
/// The opcode is for a literal operation (i.e. `add`).
Literal(&'static str),
/// The opcode is for signature verification (i.e. `sign.verify`).
Sign,
}
impl Deref for Opcode {
type Target = &'static str;
/// Returns the opcode as a string.
fn deref(&self) -> &Self::Target {
match self {
Opcode::Assert(opcode) => opcode,
Opcode::Async => &"async",
Opcode::Call => &"call",
Opcode::Cast(opcode) => opcode,
Opcode::Command(opcode) => opcode,
Opcode::Commit(opcode) => opcode,
Opcode::Hash(opcode) => opcode,
Opcode::Is(opcode) => opcode,
Opcode::Literal(opcode) => opcode,
Opcode::Sign => &"sign.verify",
}
}
}
impl Debug for Opcode {
/// Prints the opcode as a string.
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
Display::fmt(self, f)
}
}
impl Display for Opcode {
/// Prints the opcode as a string, i.e. `add`.
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match self {
Self::Assert(opcode) => write!(f, "{opcode}"),
Self::Async => write!(f, "{}", self.deref()),
Self::Call => write!(f, "{}", self.deref()),
Self::Cast(opcode) => write!(f, "{opcode}"),
Self::Command(opcode) => write!(f, "{opcode}"),
Self::Commit(opcode) => write!(f, "{opcode}"),
Self::Hash(opcode) => write!(f, "{opcode}"),
Self::Is(opcode) => write!(f, "{opcode}"),
Self::Literal(opcode) => write!(f, "{opcode}"),
Self::Sign => write!(f, "{}", self.deref()),
}
}
}