-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSAMPLE.sc
More file actions
301 lines (255 loc) · 3.89 KB
/
Copy pathSAMPLE.sc
File metadata and controls
301 lines (255 loc) · 3.89 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
293
294
295
296
297
298
299
300
#-- StoneCutter source file for ISA=BasicRISC.ISA
# Instruction Formats
instformat Arith.if(reg[GPR] ra,reg[GPR] rb,reg[GPR] rt,enc opc,
enc func,imm imm)
instformat ReadCtrl.if(reg[GPR] ra,reg[CTRL] rb,reg[GPR] rt,
enc opc,enc func,imm imm)
instformat WriteCtrl.if(reg[GPR] ra,reg[GPR] rb,reg[CTRL] rt,
enc opc,enc func,imm imm)
# Register Class Definitions
regclass GPR( u64 r0, u64 r1, u64 r2, u64 r3, u64 r4, u64 r5,
u64 r6, u64 r7, u64 r8, u64 r9, u64 r10, u64 r11,
u64 r12, u64 r13, u64 r14, u64 r15, u64 r16, u64 r17,
u64 r18, u64 r19, u64 r20, u64 r21, u64 r22, u64 r23,
u64 r24, u64 r25, u64 r26, u64 r27, u64 r28, u64 r29,
u64 r30, u64 r31 )
regclass CTRL( u64 pc[PC], u64 exc, u64 ne, u64 eq, u64 gt, u64 lt,
u64 gte, u64 lte, u64 sp, u64 fp, u64 rp )
# Instruction Definitions
# add
def add:Arith.if( ra rb rt imm )
{
rt = ra + rb
}
# sub
def sub:Arith.if( ra rb rt imm )
{
rt = ra - rb
}
# mul
def mul:Arith.if( ra rb rt imm )
{
rt = ra * rb
}
# div
def div:Arith.if( ra rb rt imm )
{
rt = ra / rb
}
# divu
def divu:Arith.if( ra rb rt imm )
{
rt = ra / rb
}
# sll
def sll:Arith.if( ra rb rt imm )
{
rt = ra << rb
}
# srl
def srl:Arith.if( ra rb rt imm )
{
rt = ra >> rb
}
# sra
def sra:Arith.if( ra rb rt imm )
{
rt = ra >> rb
}
# and
def and:Arith.if( ra rb rt imm )
{
rt = ra & rb
}
# or
def or:Arith.if( ra rb rt imm )
{
rt = ra | rb
}
# nand
def nand:Arith.if( ra rb rt imm )
{
rt = NOT(ra & rb)
}
# nor
def nor:Arith.if( ra rb rt imm )
{
rt = NOT(ra | rb)
}
# xor
def xor:Arith.if( ra rb rt imm )
{
rt = ra ^ rb
}
# cmp.ne
def cmp.ne:Arith.if( ra rb rt imm )
{
if( ra != rb ){
rt = 2
}else{
rt = 0
}
}
# cmp.eq
def cmp.eq:Arith.if( ra rb rt imm )
{
if( ra == rb ){
rt = 3
}else{
rt = 0
}
}
# cmp.gt
def cmp.gt:Arith.if( ra rb rt imm )
{
if( ra > rb ){
rt = 4
}else{
rt = 0
}
}
# cmp.lt
def cmp.lt:Arith.if( ra rb rt imm )
{
if( ra < rb ){
rt = 5
}else{
rt = 0
}
}
# cmp.gte
def cmp.gte:Arith.if( ra rb rt imm )
{
if( ra >= rb ){
rt = 6
}else{
rt = 0
}
}
# cmp.lte
def cmp.lte:Arith.if( ra rb rt imm )
{
if( ra <= rb ){
rt = 7
}else{
rt = 0
}
}
# lb
def lb:Arith.if( ra rb rt imm )
{
rt = SEXT(LOADELEM(ra+imm,8),7)
}
# lh
def lh:Arith.if( ra rb rt imm )
{
rt = SEXT(LOADELEM(ra+imm,16),15)
}
# lw
def lw:Arith.if( ra rb rt imm )
{
rt = SEXT(LOADELEM(ra+imm,32),31)
}
# ld
def ld:Arith.if( ra rb rt imm )
{
rt = LOADELEM(ra+imm,64)
}
# sb
def sb:Arith.if( ra rb rt imm )
{
STOREELEM(ra,rt+imm,8)
}
# sh
def sh:Arith.if( ra rb rt imm )
{
STOREELEM(SEXT(ra,15),rt+imm,16)
}
# sw
def sw:Arith.if( ra rb rt imm )
{
STOREELEM(SEXT(ra,31),rt+imm,32)
}
# sd
def sd:Arith.if( ra rb rt imm )
{
STOREELEM(ra,rt+imm,64)
}
# lbu
def lbu:Arith.if( ra rb rt imm )
{
rt = ZEXT(LOADELEM(ra+imm,8),7)
}
# lhu
def lhu:Arith.if( ra rb rt imm )
{
rt = ZEXT(LOADELEM(ra+imm,16),15)
}
# lwu
def lwu:Arith.if( ra rb rt imm )
{
rt = ZEXT(LOADELEM(ra+imm,32),31)
}
# sbu
def sbu:Arith.if( ra rb rt imm )
{
STOREELEM(ZEXT(ra,7),rt+imm,8)
}
# shu
def shu:Arith.if( ra rb rt imm )
{
STOREELEM(ZEXT(ra,15),rt+imm,16)
}
# swu
def swu:Arith.if( ra rb rt imm )
{
STOREELEM(ZEXT(ra,31),rt+imm,32)
}
# not
def not:Arith.if( ra rb rt imm )
{
rt = NOT(ra)
}
# bra
def bra:Arith.if( ra rb rt imm )
{
pc = rt
}
# br
def br:Arith.if( ra rb rt imm )
{
pc = pc + rt
}
# cadd
def cadd:ReadCtrl.if( ra rb rt imm )
{
rt = ra + rb
}
# brac
def brac:ReadCtrl.if( ra rb rt imm )
{
if( ra == rb ){
pc = rt
}else{
pc = pc + 4
}
}
# brc
def brc:ReadCtrl.if( ra rb rt imm )
{
if( ra == rb ){
pc = pc + rt
}else{
pc = pc + 4
}
}
# ladd
def ladd:WriteCtrl.if( ra rb rt imm )
{
rt = ra + rb
}
# brr
def brr:WriteCtrl.if( ra rb rt imm )
{
pc = rt
}