-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipeRegField.C
More file actions
74 lines (67 loc) · 1.15 KB
/
PipeRegField.C
File metadata and controls
74 lines (67 loc) · 1.15 KB
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
#include <cstdint>
#include "PipeRegField.h"
/*
* PipeRegField constructor
*
* initialize the PipeRegField
* default value is 0 if no parameter is given
*/
PipeRegField::PipeRegField(int state)
{
input = 0;
this->state = state;
}
/*
* setInput
*
* @param value to be stored in input data field
*
*/
void PipeRegField::setInput(uint64_t input)
{
this->input = input;
}
/*
* getOutput
*
* @return the state data field
*/
uint64_t PipeRegField::getOutput()
{
return state;
}
/*
* normal
*
* simulates the normal control signal applied
* to a pipelined register by setting state
* to the input
*/
void PipeRegField::normal()
{
state = input;
}
/*
* stall
*
* simulates a stall by not changing the value
* of the pipelined register
*
*/
void PipeRegField::stall()
{
//do nothing
}
/*
* bubble
*
* simulates a bubble by changing the pipeline
* register field to the appropriate value for
* a nop instruction (SAOK, RNONE, INOP)
*
* @param value to set state to (SAOK, RNONE, or INOP)
*/
void PipeRegField::bubble(int state)
{
this->state = state;
}