-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSample16BitALUTest.java
More file actions
292 lines (263 loc) · 8.88 KB
/
Sample16BitALUTest.java
File metadata and controls
292 lines (263 loc) · 8.88 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import org.junit.Assert;
import org.junit.Test;
import java.beans.Transient;
import java.util.function.BiFunction;
import static edu.gvsu.dlunit.DLUnit.*;
/**
* Jack Darnell and Thanh Tran
*/
public class Sample16BitALUTest {
public static class OpCodes {
public static final int ADDU = 0;
public static final int SUBU = 1;
public static final int AND = 2;
public static final int OR = 3;
public static final int NOT = 4;
public static final int XOR = 5;
public static final int LUI = 6;
public static final int SLTU = 7;
public static final int ADD = 8;
public static final int SUB = 9;
public static final int SLT = 15;
}
@Test
public void testAddu() {
setPinUnsigned("InputA", 53400);
setPinUnsigned("InputB", 53500);
setPinUnsigned("Op", OpCodes.ADDU);
run();
Assert.assertEquals("Addition Output", (53400 + 53500) % 65536, readPinUnsigned("Output"));
// Overflow for unsigned addition is false by definition
Assert.assertEquals("Addition Overflow", false, readPin("Overflow"));
}
@Test
public void testAddu2() {
setPinUnsigned("InputA", 123);
setPinUnsigned("InputB", 456);
setPinUnsigned("Op", OpCodes.ADDU);
run();
Assert.assertEquals("Addition Output", (123 + 456) % 65536, readPinUnsigned("Output"));
// Overflow for unsigned addition is false by definition
Assert.assertEquals("Addition Overflow", false, readPin("Overflow"));
}
@Test
public void testAddition() {
setPinSigned("InputA", 23);
setPinSigned("InputB", 44);
setPinUnsigned("Op", OpCodes.ADD);
run();
Assert.assertEquals("Addition Output", 23 + 44, readPinSigned("Output"));
Assert.assertEquals("Addition Overflow", false, readPin("Overflow"));
}
@Test
public void testAddition2() {
setPinSigned("InputA", -23);
setPinSigned("InputB", 44);
setPinUnsigned("Op", OpCodes.ADD);
run();
Assert.assertEquals("Addition Output", -23 + 44, readPinSigned("Output"));
Assert.assertEquals("Addition Overflow", false, readPin("Overflow"));
}
@Test
public void testAddition3() {
setPinSigned("InputA", -23);
setPinSigned("InputB", -78);
setPinUnsigned("Op", OpCodes.ADD);
run();
Assert.assertEquals("Addition Output", -23 + -78, readPinSigned("Output"));
Assert.assertEquals("Addition Overflow", false, readPin("Overflow"));
}
@Test
public void testSubtraction() {
setPinSigned("InputA", 24);
setPinSigned("InputB", 45);
setPinUnsigned("Op", OpCodes.SUB);
run();
Assert.assertEquals("Subtraction Output", 24 - 45, readPinSigned("Output"));
Assert.assertEquals("Subtraction Overflow", false, readPin("Overflow"));
}
@Test
public void testSubtraction2() {
setPinSigned("InputA", -24);
setPinSigned("InputB", 45);
setPinUnsigned("Op", OpCodes.SUB);
run();
Assert.assertEquals("Subtraction Output", -24 - 45, readPinSigned("Output"));
Assert.assertEquals("Subtraction Overflow", false, readPin("Overflow"));
}
@Test
public void testSubtraction3() {
setPinSigned("InputA", 24);
setPinSigned("InputB", -45);
setPinUnsigned("Op", OpCodes.SUB);
run();
Assert.assertEquals("Subtraction Output", 24 - (-45), readPinSigned("Output"));
Assert.assertEquals("Subtraction Overflow", false, readPin("Overflow"));
}
@Test
public void testSubtraction4() {
setPinSigned("InputA", 5000);
setPinSigned("InputB", -10000);
setPinUnsigned("Op", OpCodes.SUB);
run();
Assert.assertEquals("Subtraction Output", 5000 - (-10000), readPinSigned("Output"));
Assert.assertEquals("Subtraction Overflow", false, readPin("Overflow"));
}
@Test
public void ltSigned() {
setPinSigned("InputA", 5);
setPinSigned("InputB", 6);
setPinUnsigned("Op", OpCodes.SLT);
run();
Assert.assertEquals("Signed Less Than Output", 1, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
@Test
public void ltSigned2() {
setPinSigned("InputA", -20);
setPinSigned("InputB", 6);
setPinUnsigned("Op", OpCodes.SLT);
run();
Assert.assertEquals("Signed Less Than Output", 1, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
@Test
public void ltSigned3() {
setPinSigned("InputA", 32767);
setPinSigned("InputB", -1);
setPinUnsigned("Op", OpCodes.SLT);
run();
Assert.assertEquals("Signed Less Than Output", 0, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
@Test
public void ltSigned4() {
setPinSigned("InputA", 8);
setPinSigned("InputB", 6);
setPinUnsigned("Op", OpCodes.SLT);
run();
Assert.assertEquals("Signed Less Than Output", 0, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
@Test
public void ltSigned5() {
setPinSigned("InputA", -100);
setPinSigned("InputB", -200);
setPinUnsigned("Op", OpCodes.SLT);
run();
Assert.assertEquals("Signed Less Than Output", 0, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
@Test
public void ltSigned6() {
setPinSigned("InputA", -500);
setPinSigned("InputB", -20);
setPinUnsigned("Op", OpCodes.SLT);
run();
Assert.assertEquals("Signed Less Than Output", 1, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
//CHECK OVERFLOW FOR LT
public static void verifySigned(long a, long b, boolean checkOverflow) {
long expected = (a < b) ? 1 : 0;
setPinSigned("InputA", a);
setPinSigned("InputB", b);
setPinUnsigned("Op", OpCodes.SLT);
run();
String message = String.format(" of %d < %d (signed) ", a, b);
Assert.assertEquals("Output" + message, expected, readPinUnsigned("Output"));
if (checkOverflow) {
Assert.assertEquals("Overflow" + message, false, readPin("Overflow"));
}
}
@Test
public void ltSigned_allPairs() {
long[] values = {-32768, -32767, -1, 0, 1, 32766, 32767};
for (long a : values) {
for (long b : values) {
verifySigned(a, b, true);
}
}
}
public static void verifyUnsigned(long a, long b, boolean checkOverflow) {
long expected = (a < b) ? 1 : 0;
setPinUnsigned("InputA", a);
setPinUnsigned("InputB", b);
setPinUnsigned("Op", OpCodes.SLTU);
run();
String message = String.format(" of %d < %d (unsigned) ", a, b);
Assert.assertEquals("Output" + message, expected, readPinUnsigned("Output"));
if (checkOverflow) {
Assert.assertEquals("Overflow" + message, false, readPin("Overflow"));
}
}
@Test
public void ltUnsigned_allPairs() {
long[] values = {0, 1, 2, 65534, 65535};
for (long a : values) {
for (long b : values) {
verifyUnsigned(a, b, true);
}
}
}
private void verifyLogic(String name, int op, long a, long b, BiFunction<Long, Long, Long> func) {
setPinUnsigned("InputA", a);
setPinUnsigned("InputB", b);
setPinUnsigned("Op", op);
run();
String message = String.format("0x%x %s 0x%x", a, name, b);
Assert.assertEquals(message, (long)func.apply(a, b), readPinUnsigned("Output"));
Assert.assertFalse(message + " overflow", readPin("Overflow"));
}
@Test
public void testAnd() {
verifyLogic("and", OpCodes.AND, 0xFF00, 0x0F0F, (a, b) -> a & b);
}
@Test
public void testAnd2() {
verifyLogic("and", OpCodes.AND, 0xFFA0, 0xAFF0, (a, b) -> a & b);
}
@Test
public void testOr() {
verifyLogic("or", OpCodes.OR, 0xFF00, 0x0F0F, (a, b) -> a | b);
}
@Test
public void testOr2() {
verifyLogic("or", OpCodes.OR, 0xFFAA, 0xAFAF, (a, b) -> a | b);
}
@Test
public void testXor() {
verifyLogic("xor", OpCodes.XOR, 0xFFA0, 0x0F0F, (a, b) -> a ^ b);
}
@Test
public void testXor2() {
verifyLogic("xor", OpCodes.XOR, 0x00AA, 0xAFAF, (a, b) -> a ^ b);
}
@Test
public void testlui(){
setPinSigned("InputA", 0x0001);
setPinSigned("InputB", -1);
setPinUnsigned("Op", OpCodes.LUI);
run();
Assert.assertEquals("Signed Less Than Output", 0x0100, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
@Test
public void testlui2(){
setPinSigned("InputA", 0x1111);
setPinSigned("InputB", -1);
setPinUnsigned("Op", OpCodes.LUI);
run();
Assert.assertEquals("Signed Less Than Output", 0x1100, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
@Test
public void testlui3(){
setPinSigned("InputA", 0x2200);
setPinSigned("InputB", -1);
setPinUnsigned("Op", OpCodes.LUI);
run();
Assert.assertEquals("Signed Less Than Output", 0x0000, readPinSigned("Output"));
Assert.assertEquals("Signed Less Than Overflow", false, readPin("Overflow"));
}
}