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
// Copyright (C) 2019-2022 Aleo Systems Inc.
// This file is part of the snarkVM library.
// The snarkVM library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The snarkVM library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the snarkVM library. If not, see <https://www.gnu.org/licenses/>.
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 a call operation (i.e. `call`).
Call,
/// The opcode is for a cast operation (i.e. `cast`).
Cast,
/// 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 finalize operation (i.e. `finalize`).
Finalize(&'static str),
/// The opcode is for a hash operation (i.e. `hash.psd4`).
Hash(&'static str),
/// The opcode for an 'is' operation (i.e. `is.eq`).
Is(&'static str),
/// The opcode is for a literal operation (i.e. `add`).
Literal(&'static str),
}
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::Call => &"call",
Opcode::Cast => &"cast",
Opcode::Command(opcode) => opcode,
Opcode::Commit(opcode) => opcode,
Opcode::Finalize(opcode) => opcode,
Opcode::Hash(opcode) => opcode,
Opcode::Is(opcode) => opcode,
Opcode::Literal(opcode) => opcode,
}
}
}
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 {
// write!(f, "{}", *self)
match self {
Self::Assert(opcode) => write!(f, "{opcode}"),
Self::Call => write!(f, "{}", self.deref()),
Self::Cast => write!(f, "{}", self.deref()),
Self::Command(opcode) => write!(f, "{opcode}"),
Self::Commit(opcode) => write!(f, "{opcode}"),
Self::Finalize(opcode) => write!(f, "{opcode}"),
Self::Hash(opcode) => write!(f, "{opcode}"),
Self::Is(opcode) => write!(f, "{opcode}"),
Self::Literal(opcode) => write!(f, "{opcode}"),
}
}
}