-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.h
105 lines (92 loc) · 1.99 KB
/
common.h
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
#ifndef H_COMMON
#define H_COMMON
#include <string>
#include <iostream>
#include <deque>
#include <unordered_map>
#include <vector>
#include <math.h>
using namespace std;
// global macros
#define REGISTER_COUNT 32
#define ZERO_REGISTER_NAME "$0"
// enumerations
enum InstructionType {
FLD,
FSD,
ADD,
ADDI,
SLT,
FADD,
FSUB,
FMUL,
FDIV,
BNE
};
enum BranchPredictionType {
WEAK_TAKEN,
STRONG_TAKEN,
WEAK_NOT_TAKEN,
STRONG_NOT_TAKEN
};
enum StageType {
FETCH,
DECODE,
ISSUE,
EXECUTE,
MEMORY,
WRITE_BACK
};
enum InstructionStatusType {
ISSUED,
EXECUTING,
WRITING_RESULT,
COMMIT
};
enum ModuleType {
BRANCH_PREDICTOR,
ALU
};
// structs
struct Instruction {
int address;
InstructionType opcode;
string rd;
string rs;
string rt;
int immediate;
};
struct ROBStatus {
bool busy = false;
Instruction instruction; // opcode = type, rd = dest
InstructionStatusType status;
double value = NAN;
string entryName;
int countLatency = -1;
};
struct RSStatus {
bool busy = false;
Instruction instruction;
string vj = "";
string vk = "";
string qj = "";
string qk = "";
string destination;
int a = -1;
};
// helpers
bool operator==(Instruction const &lhs, Instruction const &rhs);
bool operator!=(Instruction const &lhs, Instruction const &rhs);
string toUpper(string inpString);
InstructionType getInstructionTypeFromString(const string inpString);
string getStringFromInstructionType(const InstructionType inpInstrType);
void printInstruction(Instruction inpInstr);
void printInstructions(deque<Instruction> inpInstrs);
bool containsOffset(const string inpString);
int getOffset(const string inpString);
string trimOffset(const string inpString);
string appendOffset(const string inpString, const int offset);
void printROBStatus(ROBStatus inpEntry);
void printRSStatus(RSStatus inpRs);
string getRSNameFromInstructionType(InstructionType inpInstrType);
#endif