forked from eva-cam/EvaCAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BasicDecoder.cpp
150 lines (138 loc) · 4.98 KB
/
BasicDecoder.cpp
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#include "BasicDecoder.h"
#include "formula.h"
#include "global.h"
BasicDecoder::BasicDecoder() {
// TODO Auto-generated constructor stub
initialized = false;
}
BasicDecoder::~BasicDecoder() {
// TODO Auto-generated destructor stub
}
void BasicDecoder::Initialize(int _numAddressBit, double _capLoad, double _resLoad){
/*if (initialized)
cout << "Warning: Already initialized!" << endl;*/
/* might be re-initialized by predecodeblock */
if (_numAddressBit == 1) {
numNandInput = 0;
}
else {
numNandInput = _numAddressBit;
}
capLoad = _capLoad;
resLoad = _resLoad;
if (numNandInput == 0) {
numNandGate = 0;
double logicEffortInv = 1;
double widthInvN = MIN_NMOS_SIZE * tech->featureSize;
double widthInvP = tech->pnSizeRatio * MIN_NMOS_SIZE * tech->featureSize;
double capInv = CalculateGateCap(widthInvN, *tech) + CalculateGateCap(widthInvP, *tech);
outputDriver.Initialize(logicEffortInv, capInv, capLoad, resLoad, true, latency_first, 0); /* Always Latency First */
}
else{
double logicEffortNand;
double capNand;
if (numNandInput == 2) { /* NAND2 */
numNandGate = 4;
widthNandN = 2 * MIN_NMOS_SIZE * tech->featureSize;
logicEffortNand = (2+tech->pnSizeRatio) / (1+tech->pnSizeRatio);
} else { /* NAND3 */
numNandGate = 8;
widthNandN = 3 * MIN_NMOS_SIZE * tech->featureSize;
logicEffortNand = (3+tech->pnSizeRatio) / (1+tech->pnSizeRatio);
}
widthNandP = tech->pnSizeRatio * MIN_NMOS_SIZE * tech->featureSize;
capNand = CalculateGateCap(widthNandN, *tech) + CalculateGateCap(widthNandP, *tech);
outputDriver.Initialize(logicEffortNand, capNand, capLoad, resLoad, true, latency_first, 0); /* Always Latency First */
}
initialized = true;
}
void BasicDecoder::CalculateArea() {
if (!initialized) {
cout << "[Basic Decoder] Error: Require initialization first!" << endl;
} else {
outputDriver.CalculateArea();
if (numNandInput == 0){
height = 2 * outputDriver.height;
width = outputDriver.width;
}
else {
double hNand, wNand;
CalculateGateArea(NAND, numNandInput, widthNandN, widthNandP, tech->featureSize*40, *tech, &hNand, &wNand);
height = MAX(hNand, outputDriver.height);
width = wNand + outputDriver.width;
height *= numNandGate;
}
area = height * width;
}
}
void BasicDecoder::CalculateRC() {
if (!initialized) {
cout << "[Basic Decoder] Error: Require initialization first!" << endl;
} else {
outputDriver.CalculateRC();
if (numNandInput > 0) {
CalculateGateCapacitance(NAND, numNandInput, widthNandN, widthNandP, tech->featureSize * MAX_TRANSISTOR_HEIGHT, *tech, &capNandInput, &capNandOutput);
}
}
}
void BasicDecoder::CalculateLatency(double _rampInput) {
if (!initialized) {
cout << "[Basic Decoder] Error: Require initialization first!" << endl;
} else {
rampInput = _rampInput;
if (numNandInput == 0) {
outputDriver.CalculateLatency(rampInput);
readLatency = outputDriver.readLatency;
writeLatency = readLatency;
} else {
double resPullDown;
double capLoad;
double tr; /* time constant */
double gm; /* transconductance */
double beta; /* for horowitz calculation */
double rampInputForDriver;
resPullDown = CalculateOnResistance(widthNandN, NMOS, inputParameter->temperature, *tech) * numNandInput;
capLoad = capNandOutput + outputDriver.capInput[0];
tr = resPullDown * capLoad;
gm = CalculateTransconductance(widthNandN, NMOS, *tech);
beta = 1 / (resPullDown * gm);
readLatency = horowitz(tr, beta, rampInput, &rampInputForDriver);
outputDriver.CalculateLatency(rampInputForDriver);
readLatency += outputDriver.readLatency;
writeLatency = readLatency;
}
rampOutput = outputDriver.rampOutput;
}
}
void BasicDecoder::CalculatePower() {
if (!initialized) {
cout << "[Basic Decoder] Error: Require initialization first!" << endl;
} else {
outputDriver.CalculatePower();
double capLoad;
if (numNandInput == 0) {
leakage = 2 * outputDriver.leakage;
capLoad = outputDriver.capInput[0] + outputDriver.capOutput[0];
readDynamicEnergy = capLoad * tech->vdd * tech->vdd;
readDynamicEnergy += outputDriver.readDynamicEnergy;
readDynamicEnergy *= 1; /* only one row is activated each time */
writeDynamicEnergy = readDynamicEnergy;
} else {
/* Leakage power */
leakage = CalculateGateLeakage(NAND, numNandInput, widthNandN, widthNandP,
inputParameter->temperature, *tech) * tech->vdd;
leakage += outputDriver.leakage;
leakage *= numNandGate;
/* Dynamic energy */
capLoad = capNandOutput + outputDriver.capInput[0];
readDynamicEnergy = capLoad * tech->vdd * tech->vdd;
readDynamicEnergy += outputDriver.readDynamicEnergy;
readDynamicEnergy *= 1; /* only one row is activated each time */
writeDynamicEnergy = readDynamicEnergy;
}
}
}
void BasicDecoder::PrintProperty() {
cout << numNandInput << " to " << numNandGate << " Decoder Properties:" << endl;
FunctionUnit::PrintProperty();
}