PROLEAD
A Probing-Based Leakage Detection Tool for Hardware and Software
Loading...
Searching...
No Matches
shift_types.h
Go to the documentation of this file.
1#pragma once
2
3#include <ostream>
4
5namespace mulator
6{
7
8 enum class ShiftType
9 {
10 LSL,
11 LSR,
12 ASR,
13 ROR,
14 RRX
15 };
16
17 std::string to_string(const ShiftType& x);
18 std::ostream& operator<<(std::ostream& os, const ShiftType& x);
19
20}
std::string to_string(const Architecture &x)
std::ostream & operator<<(std::ostream &os, const Architecture &x)