-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathc.mcs
335 lines (327 loc) · 4.34 KB
/
c.mcs
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
; Comba/KCM Macros for C
;
; ** if mr_qltype is defined in mirdef.h use c2.mcs **
;
; Scheduled Version
;
; Note that:
; mr_small is a word length unsigned type
; mr_large is a double word length unsigned type
;
; Triple register is extra|sum
; The test "extra+=(sum<pp1);" checks whether the carry bit was set
; Note that this maps nicely to the MIPs SLT (Set if Less Than)
; assembly language instruction
; See makemcs.txt for more information about this file
;
MACRO PMUL_START
carry=0;
ENDM
MACRO PMUL
u=(mr_large)a[%d]*sn+carry;
carry=(mr_small)(u>>MIRACL);
b[%d]=0;
c[%d]=(mr_small)u;
ENDM
MACRO PMUL_END
u=(mr_large)carry*sn;
b[0]=(mr_small)u;
b[1]=(mr_small)(u>>MIRACL);
ENDM
MACRO MUL_START
extra=0;
sum=0;
ENDM
;
; STEP macros
;
MACRO STEP
pp1=(mr_large)a[%d]*b[%d];
sum+=pp1;
extra+=(sum<pp1);
ENDM
MACRO STEP1M
pp1=(mr_large)a[%d]*b[%d];
ENDM
MACRO STEP1A
sum+=pp1;
extra+=(sum<pp1);
ENDM
MACRO STEP2M
pp2=(mr_large)a[%d]*b[%d];
ENDM
MACRO STEP2A
sum+=pp2;
extra+=(sum<pp2);
ENDM
;
; MFIN macro
;
MACRO MFIN
c[%d]=(mr_small)sum;
sum=(sum>>MIRACL)|((mr_large)extra<<MIRACL);
extra=0;
ENDM
;
; LAST
;
MACRO LAST
pp1=(mr_large)a[%d]*b[%d];
sum+=pp1;
ENDM
;
; MULE
;
MACRO MUL_END
c[%d]=(mr_small)sum;
ENDM
;
; SQR_START
;
MACRO SQR_START
extra=0;
sum=0;
ENDM
;
; DSTEP
;
MACRO DSTEP
pp1=(mr_large)a[%d]*a[%d];
sum+=pp1;
extra+=(sum<pp1);
sum+=pp1;
extra+=(sum<pp1);
ENDM
MACRO DSTEP1M
pp1=(mr_large)a[%d]*a[%d];
ENDM
MACRO DSTEP1A
sum+=pp1;
extra+=(sum<pp1);
sum+=pp1;
extra+=(sum<pp1);
ENDM
MACRO DSTEP2M
pp2=(mr_large)a[%d]*a[%d];
ENDM
MACRO DSTEP2A
sum+=pp2;
extra+=(sum<pp2);
sum+=pp2;
extra+=(sum<pp2);
ENDM
;
; SELF
;
MACRO SELF
pp1=(mr_large)a[%d];
pp1*=pp1;
sum+=pp1;
extra+=(sum<pp1);
ENDM
;
; SFIN
;
MACRO SFIN
c[%d]=(mr_small)sum;
sum=(sum>>MIRACL)|((mr_large)extra<<MIRACL);
extra=0;
ENDM
;
; SQR_END
;
MACRO SQR_END
c[%d]=(mr_small)sum;
ENDM
;
; REDC_START
;
MACRO REDC_START
extra=0;
sum=a[0];
ENDM
;
; RFINU macro
;
MACRO RFINU
sp=(mr_small)sum*ndash;
a[%d]=sp;
pp1=(mr_large)sp*b[0];
sum+=pp1;
extra+=(sum<pp1);
sum=(sum>>MIRACL)|((mr_large)extra<<MIRACL);
extra=0;
sum+=(mr_large)a[%d+1];
ENDM
;
; RFIND macro
;
MACRO RFIND
a[%d]=(mr_small)sum;
sum=(sum>>MIRACL)|((mr_large)extra<<MIRACL);
extra=0;
sum+=(mr_large)a[%d+1];
ENDM
;
; REDC_END macro
;
MACRO REDC_END
a[%d]=(mr_small)sum;
a[%d+1]=(mr_small)(sum>>MIRACL);
ENDM
;
; ADD_START macro
;
MACRO ADD_START
u=(mr_large)a[0]+b[0];
c[0]=(mr_small)u;
carry=(mr_small)(u>>MIRACL);
ENDM
;
; ADD macro - c[.]=a[.]+b[.]
;
MACRO ADD
u=(mr_large)carry+a[%d]+b[%d];
c[%d]=(mr_small)u;
carry=(mr_small)(u>>MIRACL);
ENDM
;
; ADD_END macro.
;
MACRO ADD_END
ENDM
;
; DOUBLE_START macro
;
MACRO DOUBLE_START
u=(mr_large)a[0]+a[0];
a[0]=(mr_small)u;
carry=(mr_small)(u>>MIRACL);
ENDM
;
; DOUBLE macro
;
MACRO DOUBLE
u=(mr_large)a[%d];
u+=u; u+=carry;
a[%d]=(mr_small)u;
carry=(mr_small)(u>>MIRACL);
ENDM
;
; DOUBLE_END
;
MACRO DOUBLE_END
ENDM
;
; INC_START macro. Do first one.
;
MACRO INC_START
u=(mr_large)a[0]+b[0];
a[0]=(mr_small)u;
carry=(mr_small)(u>>MIRACL);
ENDM
;
; INC macro a[.]+=b[.]
;
MACRO INC
u=(mr_large)carry+a[%d]+b[%d];
a[%d]=(mr_small)u;
carry=(mr_small)(u>>MIRACL);
ENDM
MACRO INC_END
ENDM
MACRO SUB_START
u=(mr_large)a[0]-b[0];
c[0]=(mr_small)u;
carry=0-(mr_small)(u>>MIRACL);
ENDM
;
; SUB macro - c[.]=a[.]-b[.]
;
MACRO SUB
u=(mr_large)a[%d]-b[%d]-carry;
c[%d]=(mr_small)u;
carry=0-(mr_small)(u>>MIRACL);
ENDM
MACRO SUB_END
ENDM
;
; DEC_START macro
;
MACRO DEC_START
u=(mr_large)a[0]-b[0];
a[0]=(mr_small)u;
carry=0-(mr_small)(u>>MIRACL);
ENDM
;
; DEC macro a[.]-=b[.]
;
MACRO DEC
u=(mr_large)a[%d]-b[%d]-carry;
a[%d]=(mr_small)u;
carry=0-(mr_small)(u>>MIRACL);
ENDM
;
; DEC_END macro
;
MACRO DEC_END
ENDM
;
; KADD_START macro. Zero Carry
;
MACRO KADD_START
carry=0;
k%d:
ENDM
;
; KASL macro
;
MACRO KASL
n--;
if (n==0) goto k%d;
a+=%d;
b+=%d;
c+=%d;
goto k%d;
k%d:
ENDM
;
; KADD_END macro
;
MACRO KADD_END
ENDM
;
; KINC_START macro
;
MACRO KINC_START
carry=0;
k%d:
ENDM
;
; KIDL macro
;
MACRO KIDL
n--;
if (n==0) goto k%d;
a+=%d;
b+=%d;
goto k%d;
k%d:
ENDM
;
; KINC_END macro
;
MACRO KINC_END
ENDM
;
; KDEC_START macro. Zero carry
;
MACRO KDEC_START
carry=0;
k%d:
ENDM
;
; KDEC_END macro
;
MACRO KDEC_END
ENDM