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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
|
/*********************************************************************/
/* Copyright 2009, 2010 The University of Texas at Austin. */
/* All rights reserved. */
/* */
/* Redistribution and use in source and binary forms, with or */
/* without modification, are permitted provided that the following */
/* conditions are met: */
/* */
/* 1. Redistributions of source code must retain the above */
/* copyright notice, this list of conditions and the following */
/* disclaimer. */
/* */
/* 2. Redistributions in binary form must reproduce the above */
/* copyright notice, this list of conditions and the following */
/* disclaimer in the documentation and/or other materials */
/* provided with the distribution. */
/* */
/* THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY OF TEXAS AT */
/* AUSTIN ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, */
/* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF */
/* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
/* DISCLAIMED. IN NO EVENT SHALL THE UNIVERSITY OF TEXAS AT */
/* AUSTIN OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, */
/* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
/* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE */
/* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR */
/* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF */
/* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
/* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT */
/* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
/* POSSIBILITY OF SUCH DAMAGE. */
/* */
/* The views and conclusions contained in the software and */
/* documentation are those of the authors and should not be */
/* interpreted as representing official policies, either expressed */
/* or implied, of The University of Texas at Austin. */
/*********************************************************************/
#define ASSEMBLER
#include "common.h"
#ifdef PENTIUM
#define P 88
#endif
#ifndef P
#define P 1000
#endif
#define STACK 16
#define ARGS 24
#define NLDA 0 + STACK(%esp)
#define XP 4 + STACK(%esp)
#define MIN_M 8 + STACK(%esp)
#define J 12 + STACK(%esp)
#define IS 16 + STACK(%esp)
#define M 4 + STACK + ARGS(%esp)
#define N 8 + STACK + ARGS(%esp)
#define K 12 + STACK + ARGS(%esp)
#define ALPHA 16 + STACK + ARGS(%esp)
#ifdef DOUBLE
#define A 24 + STACK + ARGS(%esp)
#define LDA 28 + STACK + ARGS(%esp)
#define X 32 + STACK + ARGS(%esp)
#define INCX 36 + STACK + ARGS(%esp)
#define Y 40 + STACK + ARGS(%esp)
#define INCY 44 + STACK + ARGS(%esp)
#define BUFFER 48 + STACK + ARGS(%esp)
#else
#define A 20 + STACK + ARGS(%esp)
#define LDA 24 + STACK + ARGS(%esp)
#define X 28 + STACK + ARGS(%esp)
#define INCX 32 + STACK + ARGS(%esp)
#define Y 36 + STACK + ARGS(%esp)
#define INCY 40 + STACK + ARGS(%esp)
#define BUFFER 44 + STACK + ARGS(%esp)
#endif
PROLOGUE
subl $ARGS, %esp
pushl %ebp
pushl %edi
pushl %esi
pushl %ebx
PROFCODE
FLD ALPHA
movl X, %edi # X
movl $0, IS
movl M, %ebx
movl N, %eax
testl %ebx, %ebx
jle .L79
testl %eax, %eax
jle .L79
movl INCX, %esi
leal (,%esi,SIZE), %esi
movl %esi, INCX
movl INCY, %esi
leal (, %esi, SIZE), %esi
movl %esi, INCY
movl LDA, %ebx
imull %ebx, %eax
movl $P, %esi
subl %eax, %esi
leal (, %esi, SIZE), %esi
movl %esi, NLDA
leal (,%ebx,SIZE), %esi
movl %esi, LDA
ALIGN_2
.L32:
movl IS, %esi
movl $P, %edx
movl M, %eax
subl %esi, %eax
cmpl %edx, %eax
#ifdef PENTIUM
jle .L33
movl %edx, %eax
.L33:
#else
cmovg %edx, %eax
#endif
movl %eax, MIN_M
movl IS, %ecx
leal (%edi,%ecx,SIZE), %ecx # xp = x + is
movl INCX, %ebx
movl %ecx, XP
cmpl $SIZE, %ebx
je .L34
movl BUFFER, %esi
movl MIN_M, %ecx
movl %esi, XP
sarl $2, %ecx
jle .L35
ALIGN_3
.L36:
FLD (%edi)
addl %ebx, %edi
FST 0 * SIZE(%esi)
FLD (%edi)
addl %ebx, %edi
FST 1 * SIZE(%esi)
FLD (%edi)
addl %ebx, %edi
FST 2 * SIZE(%esi)
FLD (%edi)
addl %ebx, %edi
FST 3 * SIZE(%esi)
addl $4 * SIZE, %esi
decl %ecx
jg .L36
ALIGN_3
.L35:
movl MIN_M, %ecx
andl $3,%ecx
jle .L34
ALIGN_2
.L42:
FLD (%edi)
addl %ebx, %edi
FST (%esi)
addl $SIZE, %esi
decl %ecx
jg .L42
ALIGN_3
/* Main Routine */
.L34:
movl Y, %ebp # coffset = y
movl N, %esi
sarl $2, %esi
movl %esi, J
jle .L47
ALIGN_3
.L48:
movl A, %ebx # a_offset = a
fldz
movl LDA, %edx
fldz
leal (%ebx, %edx), %ecx # a_offset2 = a + lda
fldz
leal (%ebx, %edx, 4), %eax
fldz
movl %eax, A
movl XP, %esi
FLD (%esi)
movl MIN_M, %eax
sarl $2,%eax
jle .L51
ALIGN_3
#define PRESIZE 8
.L80:
#ifdef PENTIUM3
prefetcht0 PRESIZE * SIZE(%ebx, %edx, 2)
FLD 0 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
prefetcht0 PRESIZE * SIZE(%ecx)
faddp %st,%st(2) # ct1 += at1
FLD 0 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
prefetcht0 PRESIZE * SIZE(%ecx, %edx, 2)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
prefetcht0 PRESIZE * SIZE(%ebx)
FLD 0 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FLD 0 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
fmulp %st, %st(1)
faddp %st,%st(4)
FLD 1 * SIZE(%esi)
FLD 1 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD 1 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD 1 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FLD 1 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
fmulp %st, %st(1)
faddp %st,%st(4)
FLD 2 * SIZE(%esi)
FLD 2 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD 2 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD 2 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FLD 2 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
fmulp %st, %st(1)
faddp %st,%st(4)
FLD 3 * SIZE(%esi)
FLD 3 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD 3 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD 3 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FLD 3 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
fmulp %st, %st(1)
addl $4 * SIZE, %ebx
faddp %st,%st(4)
addl $4 * SIZE, %ecx
FLD 4 * SIZE(%esi)
addl $4 * SIZE, %esi
#else
#if defined(HAS_PREFETCH)
prefetcht0 PRESIZE * SIZE(%ebx)
prefetcht0 PRESIZE * SIZE(%ebx, %edx, 2)
prefetcht0 PRESIZE * SIZE(%ecx)
prefetcht0 PRESIZE * SIZE(%ecx, %edx, 2)
#endif
FLD 0 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD 0 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD 0 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FMUL 0 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
faddp %st,%st(4)
FLD 1 * SIZE(%esi)
FLD 1 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD 1 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD 1 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FMUL 1 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
faddp %st,%st(4)
FLD 2 * SIZE(%esi)
FLD 2 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD 2 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD 2 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FMUL 2 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
faddp %st,%st(4)
FLD 3 * SIZE(%esi)
FLD 3 * SIZE(%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD 3 * SIZE(%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD 3 * SIZE(%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FMUL 3 * SIZE(%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
faddp %st,%st(4)
FLD 4 * SIZE(%esi)
addl $4 * SIZE, %ebx
addl $4 * SIZE, %ecx
addl $4 * SIZE, %esi
#endif
decl %eax
jg .L80
ALIGN_3
.L51:
movl MIN_M, %eax
andl $3, %eax
je .L81
ALIGN_3
.L52:
FLD (%ebx) # at = *(a_offset + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(2) # ct1 += at1
FLD (%ecx) # at1 = *(a_offset2 + 0 * lda)
fmul %st(1),%st # at1 *= bt1
faddp %st,%st(3) # ct2 += at1
FLD (%ebx, %edx, 2) # at = *(a_offset + 2 * lda)
fmul %st(1),%st
faddp %st,%st(4)
FMUL (%ecx, %edx, 2) # at1 = *(a_offset2 + 2 * lda)
faddp %st,%st(4)
FLD 1 * SIZE(%esi)
addl $SIZE, %ebx
addl $SIZE, %ecx
addl $SIZE, %esi
decl %eax
jg .L52
ALIGN_3
.L81:
#ifndef C_SUN
ffreep %st(0)
#else
.byte 0xdf
.byte 0xc0
#endif
fxch %st(4)
fmul %st, %st(4)
fmul %st, %st(1)
fmul %st, %st(2)
fmul %st, %st(3)
fxch %st(4)
movl INCY, %eax
FADD (%ebp)
FST (%ebp)
addl %eax, %ebp
FADD (%ebp)
FST (%ebp)
addl %eax, %ebp
FADD (%ebp)
FST (%ebp)
addl %eax, %ebp
FADD (%ebp)
FST (%ebp)
addl %eax, %ebp
decl J
jg .L48
ALIGN_3
.L47:
movl N, %esi
andl $3,%esi
movl %esi, J
jle .L60
ALIGN_2
.L61:
movl A, %ebx # a_offset = a
fldz # ct1 = ZERO
movl LDA, %edx
fldz # ct1 = ZERO
addl %ebx, %edx
fldz # ct1 = ZERO
movl %edx, A
fldz # ct1 = ZERO
movl XP, %esi
movl MIN_M, %eax
sarl $3,%eax
jle .L64
ALIGN_3
.L65:
#ifdef HAS_PREFETCH
prefetcht0 PRESIZE * 2 * SIZE(%ebx)
prefetcht0 PRESIZE * 2 * SIZE(%ebx)
#endif
FLD 0 * SIZE(%esi)
FMUL 0 * SIZE(%ebx)
faddp %st,%st(1)
FLD 1 * SIZE(%esi)
FMUL 1 * SIZE(%ebx)
faddp %st,%st(2)
FLD 2 * SIZE(%esi)
FMUL 2 * SIZE(%ebx)
faddp %st,%st(3)
FLD 3 * SIZE(%esi)
FMUL 3 * SIZE(%ebx)
faddp %st,%st(4)
FLD 4 * SIZE(%esi)
FMUL 4 * SIZE(%ebx)
faddp %st,%st(1)
FLD 5 * SIZE(%esi)
FMUL 5 * SIZE(%ebx)
faddp %st,%st(2)
FLD 6 * SIZE(%esi)
FMUL 6 * SIZE(%ebx)
faddp %st,%st(3)
FLD 7 * SIZE(%esi)
FMUL 7 * SIZE(%ebx)
faddp %st,%st(4)
addl $8 * SIZE, %esi
addl $8 * SIZE, %ebx
decl %eax
jg .L65
ALIGN_3
.L64:
movl MIN_M, %eax
andl $7, %eax
jle .L70
ALIGN_3
.L71:
FLD (%esi)
FMUL (%ebx)
faddp %st,%st(1)
addl $SIZE, %esi
addl $SIZE, %ebx
decl %eax
jg .L71
ALIGN_3
.L70:
faddp %st, %st(1)
faddp %st, %st(1)
faddp %st, %st(1)
fmul %st(1),%st
FADD (%ebp)
FST (%ebp)
addl INCY, %ebp
decl J
jg .L61
ALIGN_3
.L60:
movl A, %ebx
addl NLDA, %ebx
movl %ebx, A
addl $P, IS
movl M, %esi
cmpl %esi, IS
jl .L32
ALIGN_3
.L79:
#ifndef C_SUN
ffreep %st(0)
#else
.byte 0xdf
.byte 0xc0
#endif
popl %ebx
popl %esi
popl %edi
popl %ebp
addl $ARGS, %esp
ret
EPILOGUE
|