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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
|
/* libgcc1 routines for 68000 w/o floating-point hardware,
calling the Sun3 floating point support routines. */
/* Copyright (C) 1992 Free Software Foundation, Inc.
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
In addition to the permissions in the GNU General Public License, the
Free Software Foundation gives you unlimited permission to link the
compiled version of this file with other programs, and to distribute
those programs without any restriction coming from the use of this
file. (The General Public License restrictions do apply in other
respects; for example, they cover modification of the file, and
distribution when not linked into another program.)
This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* As a special exception, if you link this library with files
compiled with GCC to produce an executable, this does not cause
the resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why
the executable file might be covered by the GNU General Public License. */
#ifdef L_mulsi3
.text
.proc
.globl SYM (__mulsi3)
SYM (__mulsi3):
movew sp@(4), d0 /* x0 -> d0 */
muluw sp@(10), d0 /* x0*y1 */
movew sp@(6), d1 /* x1 -> d1 */
muluw sp@(8), d1 /* x1*y0 */
addw d1, d0
swap d0
clrw d0
movew sp@(6), d1 /* x1 -> d1 */
muluw sp@(10), d1 /* x1*y1 */
addl d1, d0
rts
#endif /* L_mulsi3 */
#ifdef L_udivsi3
.text
.proc
.globl SYM (__udivsi3)
SYM (__udivsi3):
movel d2, sp@-
movel sp@(12), d1 /* d1 = divisor */
movel sp@(8), d0 /* d0 = dividend */
cmpl #0x10000, d1 /* divisor >= 2 ^ 16 ? */
jcc L3 /* then try next algorithm */
movel d0, d2
clrw d2
swap d2
divu d1, d2 /* high quotient in lower word */
movew d2, d0 /* save high quotient */
swap d0
movew sp@(10), d2 /* get low dividend + high rest */
divu d1, d2 /* low quotient */
movew d2, d0
jra L6
L3: movel d1, d2 /* use d2 as divisor backup */
L4: lsrl #1, d1 /* shift divisor */
lsrl #1, d0 /* shift dividend */
cmpl #0x10000, d1 /* still divisor >= 2 ^ 16 ? */
jcc L4
divu d1, d0 /* now we have 16 bit divisor */
andl #0xffff, d0 /* mask out divisor, ignore remainder */
/* Muliply the 16 bit tentative quotient with the 32 bit divisor. Because of
the operand ranges, this might give a 33 bit product. If this product is
greater than the dividend, the tentative quotient was too large. */
movel d2, d1
mulu d0, d1 /* low part, 32 bits */
swap d2
mulu d0, d2 /* high part, at most 17 bits */
swap d2 /* align high part with low part */
btst #0, d2 /* high part 17 bits? */
jne L5 /* if 17 bits, quotient was too large */
addl d2, d1 /* add parts */
jcs L5 /* if sum is 33 bits, quotient was too large */
cmpl sp@(8), d1 /* compare the sum with the dividend */
jls L6 /* if sum > dividend, quotient was too large */
L5: subql #1, d0 /* adjust quotient */
L6: movel sp@+, d2
rts
#endif /* L_udivsi3 */
#ifdef L_divsi3
.text
.proc
.globl SYM (__divsi3)
SYM (__divsi3):
movel d2, sp@-
moveb #1, d2 /* sign of result stored in d2 (=1 or =-1) */
movel sp@(12), d1 /* d1 = divisor */
jpl L1
negl d1
negb d2 /* change sign because divisor <0 */
L1: movel sp@(8), d0 /* d0 = dividend */
jpl L2
negl d0
negb d2
L2: movel d1, sp@-
movel d0, sp@-
jbsr SYM (__udivsi3) /* divide abs(dividend) by abs(divisor) */
addql #8, sp
tstb d2
jpl L3
negl d0
L3: movel sp@+, d2
rts
#endif /* L_divsi3 */
#ifdef L_umodsi3
.text
.proc
.globl SYM (__umodsi3)
SYM (__umodsi3):
movel sp@(8), d1 /* d1 = divisor */
movel sp@(4), d0 /* d0 = dividend */
movel d1, sp@-
movel d0, sp@-
jbsr SYM (__udivsi3)
addql #8, sp
movel sp@(8), d1 /* d1 = divisor */
movel d1, sp@-
movel d0, sp@-
jbsr SYM (__mulsi3) /* d0 = (a/b)*b */
addql #8, sp
movel sp@(4), d1 /* d1 = dividend */
subl d0, d1 /* d1 = a - (a/b)*b */
movel d1, d0
rts
#endif /* L_umodsi3 */
#ifdef L_modsi3
.text
.proc
.globl SYM (__modsi3)
SYM (__modsi3):
movel sp@(8), d1 /* d1 = divisor */
movel sp@(4), d0 /* d0 = dividend */
movel d1, sp@-
movel d0, sp@-
jbsr SYM (__divsi3)
addql #8, sp
movel sp@(8), d1 /* d1 = divisor */
movel d1, sp@-
movel d0, sp@-
jbsr SYM (__mulsi3) /* d0 = (a/b)*b */
addql #8, sp
movel sp@(4), d1 /* d1 = dividend */
subl d0, d1 /* d1 = a - (a/b)*b */
movel d1, d0
rts
#endif /* L_modsi3 */
#ifdef L_divdf3
LL0:
.data
.data
.text
.proc
|#PROC# 07
LF17 = 8
LS17 = 0
LFF17 = 8
LSS17 = 0
LV17 = 8
.text
.globl ___divdf3
___divdf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
lea a6@(16),a0
jbsr Fdivd
movl d0,a6@(-8)
movl d1,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_divdf3 */
#ifdef L_muldf3
LL0:
.data
.data
.text
.proc
|#PROC# 07
LF17 = 8
LS17 = 0
LFF17 = 8
LSS17 = 0
LV17 = 8
.text
.globl ___muldf3
___muldf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
lea a6@(16),a0
jbsr Fmuld
movl d0,a6@(-8)
movl d1,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_muldf3 */
#ifdef L_negdf2
LL0:
.data
.data
.text
.proc
|#PROC# 07
LF17 = 8
LS17 = 0
LFF17 = 8
LSS17 = 0
LV17 = 8
.text
.globl ___negdf2
___negdf2:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),a6@(-4)
bchg #31,d0
movl d0,a6@(-8)
movl a6@(-4),d1
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_negdf2 */
#ifdef L_adddf3
LL0:
.data
.data
.text
.proc
|#PROC# 07
LF17 = 8
LS17 = 0
LFF17 = 8
LSS17 = 0
LV17 = 8
.text
.globl ___adddf3
___adddf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
lea a6@(16),a0
jbsr Faddd
movl d0,a6@(-8)
movl d1,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_adddf3 */
#ifdef L_subdf3
LL0:
.data
.data
.text
.proc
|#PROC# 07
LF17 = 8
LS17 = 0
LFF17 = 8
LSS17 = 0
LV17 = 8
.text
.globl ___subdf3
___subdf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
lea a6@(16),a0
jbsr Fsubd
movl d0,a6@(-8)
movl d1,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_subdf3 */
#ifdef L_fixdfsi
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 4
LS17 = 128
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___fixdfsi
___fixdfsi:
|#PROLOGUE# 0
link a6,#-4
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
jbsr Fintd
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_fixdfsi */
#ifdef L_fixsfsi
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 4
LS17 = 128
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___fixsfsi
___fixsfsi:
|#PROLOGUE# 0
link a6,#-4
|#PROLOGUE# 1
movl a6@(8),d0
jbsr Fints
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_fixsfsi */
#ifdef L_floatsidf
LL0:
.data
.data
.text
.proc
|#PROC# 07
LF17 = 8
LS17 = 0
LFF17 = 8
LSS17 = 0
LV17 = 8
.text
.globl ___floatsidf
___floatsidf:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
jbsr Ffltd
movl d0,a6@(-8)
movl d1,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_floatsidf */
#ifdef L_floatsisf
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 128
LFF17 = 4
LSS17 = 0
LV17 = 4
.text
.globl ___floatsisf
___floatsisf:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
jbsr Fflts
movl d0,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_floatsisf */
#ifdef L_truncdfsf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 128
LFF17 = 4
LSS17 = 0
LV17 = 4
.text
.globl ___truncdfsf2
___truncdfsf2:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
jbsr Fdtos
movl d0,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_truncdfsf2 */
#ifdef L_extendsfdf2
LL0:
.data
.data
.text
.proc
|#PROC# 07
LF17 = 8
LS17 = 0
LFF17 = 8
LSS17 = 0
LV17 = 8
.text
.globl ___extendsfdf2
___extendsfdf2:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
jbsr Fstod
movl d0,a6@(-8)
movl d1,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_extendsfdf2 */
#ifdef L_addsf3
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 128
LFF17 = 4
LSS17 = 0
LV17 = 4
.text
.globl ___addsf3
___addsf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
jbsr Fadds
movl d0,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_addsf3 */
#ifdef L_negsf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 128
LFF17 = 4
LSS17 = 0
LV17 = 4
.text
.globl ___negsf2
___negsf2:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
bchg #31,d0
movl d0,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_negsf2 */
#ifdef L_subsf3
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 128
LFF17 = 4
LSS17 = 0
LV17 = 4
.text
.globl ___subsf3
___subsf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
jbsr Fsubs
movl d0,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_subsf3 */
#ifdef L_mulsf3
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 128
LFF17 = 4
LSS17 = 0
LV17 = 4
.text
.globl ___mulsf3
___mulsf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
jbsr Fmuls
movl d0,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_mulsf3 */
#ifdef L_divsf3
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 128
LFF17 = 4
LSS17 = 0
LV17 = 4
.text
.globl ___divsf3
___divsf3:
|#PROLOGUE# 0
link a6,#-8
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
jbsr Fdivs
movl d0,a6@(-4)
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_divsf3 */
#ifdef L_eqdf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 4
LS17 = 128
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___eqdf2
___eqdf2:
|#PROLOGUE# 0
link a6,#-4
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
lea a6@(16),a0
jbsr Fcmpd
jfeq L77003
moveq #1,d0
jra L77005
L77003:
moveq #0,d0
L77005:
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_eqdf2 */
#ifdef L_nedf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___nedf2
___nedf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
moveq #0,d7
lea a6@(16),a0
jbsr Fcmpd
sfneq d7
negb d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_nedf2 */
#ifdef L_gtdf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___gtdf2
___gtdf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
moveq #0,d7
lea a6@(16),a0
jbsr Fcmpd
sfgt d7
negb d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_gtdf2 */
#ifdef L_gedf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___gedf2
___gedf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
moveq #0,d7
lea a6@(16),a0
jbsr Fcmpd
sfge d7
negb d7
subql #1,d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_gedf2 */
#ifdef L_ltdf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___ltdf2
___ltdf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
moveq #0,d7
lea a6@(16),a0
jbsr Fcmpd
sflt d7
negb d7
negl d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_ltdf2 */
#ifdef L_ledf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___ledf2
___ledf2:
|#PROLOGUE# 0
link a6,#-8
movl d2,sp@
|#PROLOGUE# 1
movl a6@(8),d0
movl a6@(12),d1
moveq #0,d2
lea a6@(16),a0
jbsr Fcmpd
sfle d2
negb d2
moveq #1,d0
subl d2,d0
|#PROLOGUE# 2
movl a6@(-8),d2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_ledf2 */
#ifdef L_eqsf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 4
LS17 = 128
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___eqsf2
___eqsf2:
|#PROLOGUE# 0
link a6,#-4
|#PROLOGUE# 1
movl a6@(12),d1
movl a6@(8),d0
jbsr Fcmps
jfeq L77003
moveq #1,d0
jra L77005
L77003:
moveq #0,d0
L77005:
|#PROLOGUE# 2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_eqsf2 */
#ifdef L_nesf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___nesf2
___nesf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(12),d1
movl a6@(8),d0
moveq #0,d7
jbsr Fcmps
sfneq d7
negb d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_nesf2 */
#ifdef L_gtsf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___gtsf2
___gtsf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(12),d1
movl a6@(8),d0
moveq #0,d7
jbsr Fcmps
sfgt d7
negb d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_gtsf2 */
#ifdef L_gesf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___gesf2
___gesf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(12),d1
movl a6@(8),d0
moveq #0,d7
jbsr Fcmps
sfge d7
negb d7
subql #1,d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_gesf2 */
#ifdef L_ltsf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___ltsf2
___ltsf2:
|#PROLOGUE# 0
link a6,#-8
movl d7,sp@
|#PROLOGUE# 1
movl a6@(12),d1
movl a6@(8),d0
moveq #0,d7
jbsr Fcmps
sflt d7
negb d7
negl d7
movl d7,d0
|#PROLOGUE# 2
movl a6@(-8),d7
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_ltsf2 */
#ifdef L_lesf2
LL0:
.data
.data
.text
.proc
|#PROC# 04
LF17 = 8
LS17 = 132
LFF17 = 0
LSS17 = 0
LV17 = 0
.text
.globl ___lesf2
___lesf2:
|#PROLOGUE# 0
link a6,#-8
movl d2,sp@
|#PROLOGUE# 1
movl a6@(12),d1
movl a6@(8),d0
moveq #0,d2
jbsr Fcmps
sfle d2
negb d2
moveq #1,d0
subl d2,d0
|#PROLOGUE# 2
movl a6@(-8),d2
unlk a6
|#PROLOGUE# 3
rts
#endif /* L_lesf2 */
|