Welcome to mirror list, hosted at ThFree Co, Russian Federation.

smartmac.h « sys « a29khif « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c870fa2a1e35e23ed1aa6c778824ddb14b5dfca (plain)
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
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
; @(#)smartmac.h	1.2 90/10/14 20:56:14, AMD
; start of smartmac.h file
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Copyright 1988, 1989, 1990 Advanced Micro Devices, Inc.
;
; This software is the property of Advanced Micro Devices, Inc  (AMD)  which
; specifically  grants the user the right to modify, use and distribute this
; software provided this notice is not removed or altered.  All other rights
; are reserved by AMD.
;
; AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS
; SOFTWARE.  IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL
; DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR
; USE OF THIS SOFTWARE.
;
; So that all may benefit from your experience, please report  any  problems
; or  suggestions about this software to the 29K Technical Support Center at
; 800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131  in  the  UK,  or
; 0031-11-1129 in Japan, toll free.  The direct dial number is 512-462-4118.
;
; Advanced Micro Devices, Inc.
; 29K Support Products
; Mail Stop 573
; 5900 E. Ben White Blvd.
; Austin, TX 78741
; 800-292-9263
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; 
  .title "AM29000 Smart Macro Package"
;
;    Floating point package for AMD 29000 family
;
;    Copyright 1988 Advanced Micro Devices, Inc.
;
;    All rights reserved
;
;    Developed for AMD by Quantitative Technology Corporation
;                         8700 SW Creekside Place Suite D
;                         Beaverton OR 97005
;                         (503) 626-3081
;
;    Version information :
;
;        Version 1.0 - 1 June 1988   - Larry Westerman (smart_macros.h)
; 
; Revision 1.4  89/02/01  18:26:03  jimh
; Changed to relect the new symbols from Bob Perlman, and the new include file.s
; 
; Revision 1.3  89/01/31  10:13:34  jimh
; Updated to use symbols from Bob Perlmans fpsymbol.h file.  This is
; an extensive change.
; 
; Revision 1.2  89/01/26  09:23:50  jimh
; This version checked in previous to substituting Bob Perlman's floating
; point symbols.
; 
; Revision 1.1  89/01/24  13:23:29  jim
; Initial revision
; Replaces smart_macros.h ver 1.11.
; 
; 
; 
;
;  NOTES:
;
;    This package makes the following assumptions about the use of these
;    smart macros:
;
;      1.  These macros will be after the entry code for a transcendental
;          routine.  This entry code will move the original function arguments
;          (by value, if the target language is FORTRAN) into the global
;          registers t0/t1 and t2/t3 (t0 and t2 for single precision
;          routines).
;      2.  The sources of all operands will be one register from the
;          following list:
;            t0 or  t2  - the source is one of the original input operands
;            rtn0       - the source is rtn0, which should be used as the
;                         source for all constant values to be sent to the
;                         AM29027 (when used)
;            FP0 - FP7  - the source is one of the fp registers
;      3.  The destination of all operations will be a register from the
;          following list:
;            rtn0       - the destination is the function return value
;            FP0 - FP7  - the destination is one of the fp registers
;      4.  The additional registers available for temporary use are
;          t4, lrp, and slp.  
;
;    These register definitions are all taken from the file "proregs.a"
;    which was supplied by AMD.  NOTE that the FP0-FP7 registers, for the
;    Am29000 version of the file, overlap with the rtn0-rtn15 registers, so
;    that FP0 corresponds to rtn0/rtn1, FP1 to rtn2/rtn3, and so forth.
;
 .equ ERROR,0
 .equ NO_ERROR,1

 .equ DOUBLE_FUNCTION,0
 .equ SINGLE_FUNCTION,1

 .equ T_OPERATION,0
 .equ Q_OPERATION,1

 .equ R_SOURCE_29000,0
 .equ R_SOURCE_29027,1

 .equ S_SOURCE_29000,0
 .equ S_SOURCE_29027,1

 .equ DESTINATION_29000, 0
 .equ DESTINATION_29027, 1

;
; SMART MACRO : mfadd
;
; FUNCTION : single-precision floating point addition
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mfadd,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mfadd: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE
  ;
  ; For 29027 mode, perform full suite of checking
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_S_S | CP_P_PLUS_T
     .set OPERATION_TYPE, T_OPERATION
     perform_single_operation destination,operand1,operand2
     read_single_result destination
    ;
    ; Save the instruction for the next macro invocation
    ;
     .set PREVIOUS_INSTRUCTION, CURRENT_INSTRUCTION

   .else
  ;
  ; For 29000 mode, simply produce equivalent trap-inducing instruction
  ;
     fadd destination,operand1,operand2

   .endif

 .endm        ; end of mfadd macro definition

;
; SMART MACRO : mfsub
;
; FUNCTION : single-precision floating point subtraction
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mfsub,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mfsub: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE
  ;
  ; For 29027 mode, perform full suite of checking
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_S_S | CP_P_MINUS_T
     .set OPERATION_TYPE, T_OPERATION
     perform_single_operation destination,operand1,operand2
     read_single_result destination
    ;
    ; Save the instruction for the next macro invocation
    ;
     .set PREVIOUS_INSTRUCTION, CURRENT_INSTRUCTION

   .else
  ;
  ; For 29000 mode, simply produce equivalent trap-inducing instruction
  ;
     fsub destination,operand1,operand2

   .endif

 .endm        ; end of mfsub macro definition

;
; SMART MACRO : mfmul
;
; FUNCTION : single-precision floating point multiplication
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mfmul,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mfmul: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE
  ;
  ; For 29027 mode, perform full suite of checking
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_S_S | CP_P_TIMES_Q
     .set OPERATION_TYPE, Q_OPERATION
     perform_single_operation destination,operand1,operand2
     read_single_result destination
    ;
    ; Save the instruction for the next macro invocation
    ;
     .set PREVIOUS_INSTRUCTION, CURRENT_INSTRUCTION

   .else
  ;
  ; For 29000 mode, simply produce equivalent trap-inducing instruction
  ;
     fmul destination,operand1,operand2

   .endif

 .endm        ; end of mfmul macro definition

;
; SMART MACRO : mfdiv
;
; FUNCTION : single-precision floating point divide
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mfdiv,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mfdiv: missing parameter(s)"
     .exitm
   .endif

  ;
  ; Generate the trap instruction in all cases
  ;
   fdiv destination, operand1, operand2

 .endm        ; end of mfdiv macro definition


;
; SMART MACRO : mdadd
;
; FUNCTION : double-precision floating point addition
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mdadd,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mdadd: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE
  ;
  ; For 29027 mode, perform full suite of checking
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_D_D | CP_P_PLUS_T
     .set OPERATION_TYPE, T_OPERATION
     perform_double_operation destination,operand1,operand2
     read_double_result destination
    ;
    ; Save the instruction for the next macro invocation
    ;
     .set PREVIOUS_INSTRUCTION, CURRENT_INSTRUCTION

   .else
  ;
  ; For 29000 mode, simply produce equivalent trap-inducing instruction
  ;
     dadd destination,operand1,operand2

   .endif

 .endm        ; end of mdadd macro definition

;
; SMART MACRO : mdsub
;
; FUNCTION : double-precision floating point subtraction
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mdsub,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mdsub: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE
  ;
  ; For 29027 mode, perform full suite of checking
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_D_D | CP_P_MINUS_T
     .set OPERATION_TYPE, T_OPERATION
     perform_double_operation destination,operand1,operand2
     read_double_result destination
    ;
    ; Save the instruction for the next macro invocation
    ;
     .set PREVIOUS_INSTRUCTION, CURRENT_INSTRUCTION

   .else
  ;
  ; For 29000 mode, simply produce equivalent trap-inducing instruction
  ;
     dsub destination,operand1,operand2

   .endif

 .endm        ; end of mdsub macro definition

;
; SMART MACRO : mdmul
;
; FUNCTION : double-precision floating point multiplication
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mdmul,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mdmul: missing parameter(s)"
     .exitm
   .endif
   
   .ifdef _29027_MODE
 ;
 ; For 29027 mode, perform full suite of checking
 ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_D_D | CP_P_TIMES_Q
     .set OPERATION_TYPE, Q_OPERATION
     perform_double_operation destination,operand1,operand2
     read_double_result destination
   ;
   ; Save the instruction for the next macro invocation
   ;
     .set PREVIOUS_INSTRUCTION, CURRENT_INSTRUCTION

   .else
 ;
 ; For 29000 mode, simply produce equivalent trap-inducing instruction
 ;
     dmul destination,operand1,operand2

   .endif

 .endm        ; end of mdmul macro definition

;
; SMART MACRO : mddiv
;
; FUNCTION : double-precision floating point divide
;
; Required arguments : destination - one of possible destinations
;                      operand1    - one of possible sources
;                      operand2    - one of possible sources
;
 .macro mddiv,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "mddiv: missing parameter(s)"
     .exitm
   .endif

 ;
 ; Generate the trap instruction in all cases
 ;
   ddiv destination, operand1, operand2

 .endm        ; end of mfdiv macro definition

;
;  SMART MACRO: mconvert
;
;  FUNCTION: Floating point/integer conversion
;
;  PARAMETERS:  destination           -  one of the possible destinations
;               source                -  one of the possible sources
;               sign_flag             -  one of SIGNED or UNSIGNED
;               rounding_mode         -  one of ROUND_TO_NEAREST, ROUND_TO_PLUS,
;                                         ROUND_TO_MINUS, ROUND_TO_ZERO
;               destination_precision -  one of FORMAT_INTEGER, FORMAT_DOUBLE,
;                                         or FORMAT_SINGLE
;               source_precision      -  one of FORMAT_INTEGER, FORMAT_DOUBLE,
;                                         or FORMAT_SINGLE
;
 .macro mconvert, destination, source, sign_flag, rounding_mode, destination_precision, source_precision

   .if $narg!=6
     .err
     .print "mconvert: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE   
  ;
  ; Generate in line 29027 code
  ;
     initialize_previous_instruction
     .if ( destination_precision == FORMAT_INTEGER )
       .set CURRENT_INSTRUCTION, CP_CONVERT_T_TO_INT
       select_T_operand source
       .if ( source_precision == FORMAT_DOUBLE )
         .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_S_D
       .else
         .if ( source_precision == FORMAT_SINGLE )
           .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_S_S
         .else
           .err
           .print "mconvert: invalid source type"
           .exitm
         .endif
       .endif
     .else
       .if ( destination_precision == FORMAT_DOUBLE )
         .if ( source_precision == FORMAT_SINGLE )
           .set CURRENT_INSTRUCTION, CP_PASS_P | CP_P_EQ_R | CP_D_S
           select_P_operand source
         .else
           .if ( source_precision == FORMAT_INTEGER )
             .set CURRENT_INSTRUCTION, CP_I_CONVERT_T_TO_FLOAT | CP_D_S
             select_T_operand source
           .else
             .err
             .print "mconvert: invalid source type"
             .exitm
           .endif
         .endif
       .else
         .if ( destination_precision == FORMAT_SINGLE )
           .if ( source_precision == FORMAT_DOUBLE )
             .set CURRENT_INSTRUCTION, CP_PASS_P | CP_P_EQ_R | CP_S_D
             select_P_operand source
           .else
             .if ( source_precision == FORMAT_INTEGER )
               .set CURRENT_INSTRUCTION, CP_I_CONVERT_T_TO_FLOAT | CP_S_S
               select_T_operand source
             .else
               .err
               .print "mconvert: invalid source type"
               .exitm
             .endif
           .endif
         .else
           .err
           .print "mconvert: invalid destination type "
           .exitm
         .endif
       .endif
     .endif
    ;
    ; Perform the operation, using a 29027 dummy register as the second
    ; source operand, to avoid writing any data inappropriately to the
    ; 29027
    ;
     select_destination destination
     .set S_SOURCE, S_SOURCE_29027
     .if ( source_precision == FORMAT_DOUBLE )
       write_and_execute_double_operation source, FP0
     .else
       write_and_execute_single_operation source, FP0
     .endif
     .if ( destination_precision == FORMAT_DOUBLE )
       read_double_result destination
     .else
       .if ( destination_precision == FORMAT_SINGLE )
         read_single_result destination
       .else
         read_integer_result destination
       .endif
     .endif
   .else
  ;
  ; For 29000 mode (the default) just invoke the trap-inducing instruction
  ;
     convert destination,source,sign_flag,rounding_mode,destination_precision,source_precision
  
   .endif

 .endm       ; end of mfeq macro definition

;
;  SMART MACRO: mfeq
;
;  FUNCTION: Single precision, floating point compare
;
;  PARAMETERS:  destination  -  one of the possible destinations
;               operand1     -  one of the possible sources
;               operand2     -  one of the possible sources
;
 .macro mfeq, destination, operand1, operand2

   .if $narg!=3
     .err
     .print "mfeq: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE   
  ;
  ; Generate in line 29027 code
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_S_S  | CP_COMPARE_P_AND_T
     .set OPERATION_TYPE,  T_OPERATION
     select_destination destination
    ;
    ; 29027 registers are not valid destinations for compare operations
    ; If the destination is a 29000 register, write the appropriate
    ; Boolean value to that register.
    ;
     .if ( DESTINATION == DESTINATION_29027 )
       .err
       .print "29027 destinations invalid for compares - @destination@"
       .exitm
     .else
       perform_single_operation destination, operand1, operand2
       cp_read_flags destination
       srl  destination,  destination, CP_EQUAL_FLAG_POSITION
       sll  destination,  destination,  31
     .endif

   .else
  ;
  ; For 29000 mode (the default) just invoke the trap-inducing instruction
  ;
     feq destination,operand1,operand2

   .endif

 .endm       ; end of mfeq macro definition

;
;  SMART MACRO: mfge
;
;  FUNCTION: Single precision, floating point compare
;
;  PARAMETERS:  destination  -  one of the possible destinations
;               operand1     -  one of the possible sources
;               operand2     -  one of the possible sources
;
 .macro mfge, destination, operand1, operand2

   .if $narg!=3
     .err
     .print "mfge: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE   
  ;
  ; Generate in line 29027 code
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_S_S  | CP_COMPARE_P_AND_T
     .set OPERATION_TYPE,  T_OPERATION
     select_destination destination
    ;
    ; 29027 registers are not valid destinations for compare operations
    ; If the destination is a 29000 register, write the appropriate
    ; Boolean value to that register.
    ;
     .if ( DESTINATION == DESTINATION_29027 )
       .err
       .print "29027 destinations invalid for compares - @destination@"
       .exitm
     .else
        perform_single_operation destination, operand1, operand2
        cp_read_flags destination
        and   destination, destination, CP_EQUAL_FLAG | CP_GREATER_THAN_FLAG
        cpneq destination, destination, 0x0
     .endif

   .else
  ;
  ; For 29000 mode (the default) just invoke the trap-inducing instruction
  ;
     fge destination,operand1,operand2

   .endif

 .endm       ; end of mfge macro definition

;
;  SMART MACRO: mfgt
;
;  FUNCTION: Single precision, floating point compare
;
;  PARAMETERS:  destination  -  one of the possible destinations
;               operand1     -  one of the possible sources
;               operand2     -  one of the possible sources
;
 .macro mfgt, destination, operand1, operand2

   .if $narg!=3
     .err
     .print "mfgt: missing parameter(s)"
     .exitm
   .endif

   .ifdef _29027_MODE   
  ;
  ; Generate in line 29027 code
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_S_S  | CP_COMPARE_P_AND_T
     .set OPERATION_TYPE,  T_OPERATION
     select_destination destination
    ;
    ; 29027 registers are not valid destinations for compare operations
    ; If the destination is a 29000 register, write the appropriate
    ; Boolean value to that register.
    ;
     .if ( DESTINATION == DESTINATION_29027 )
       .err
       .print "29027 destinations invalid for compares - @destination@"
       .exitm
     .else
        perform_single_operation destination, operand1, operand2
        cp_read_flags destination
        srl  destination,  destination, CP_GREATER_THAN_FLAG_POSITION
        sll  destination,  destination,  31
     .endif

   .else
  ;
  ; For 29000 mode (the default) just invoke the trap-inducing instruction
  ;
     fgt destination,operand1,operand2

   .endif

 .endm       ; end of mfgt macro definition

;
;  SMART MACRO: mdeq
;
;  FUNCTION: Double precision, floating point compare
;
;  PARAMETERS:  destination  -  one of the possible destinations
;               operand1     -  one of the possible sources
;               operand2     -  one of the possible sources
;
 .macro mdeq, destination, operand1, operand2

   .if $narg!=3
     .err
     .print "mdeq: missing parameter(s)"
     .exitm
   .endif


   .ifdef _29027_MODE   
  ;
  ; Generate in line 29027 code
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_D_D  | CP_COMPARE_P_AND_T
     .set OPERATION_TYPE,  T_OPERATION
     select_destination destination
    ;
    ; 29027 registers are not valid destinations for compare operations
    ; If the destination is a 29000 register, write the appropriate
    ; Boolean value to that register.
    ;
     .if ( DESTINATION == DESTINATION_29027 )
       .err
       .print "29027 destinations invalid for compare - @destination@"
       .exitm
     .else
       perform_double_operation destination, operand1, operand2
       cp_read_flags destination
       srl  destination,  destination, CP_EQUAL_FLAG_POSITION
       sll  destination,  destination,  31
     .endif
   .else
  ;
  ; For 29000 mode (the default) just invoke the trap-inducing instruction
  ;
     deq destination,operand1,operand2

   .endif

 .endm        ; end of mdeq macro definition

;
;  SMART MACRO: mdge
;
;  FUNCTION: Double precision, floating point compare
;
;  PARAMETERS:  destination  -  one of the possible destinations
;               operand1     -  one of the possible sources
;               operand2     -  one of the possible sources
;
 .macro mdge, destination, operand1, operand2

   .if $narg!=3
     .err
     .print "mdge: missing parameter(s)"
     .exitm
   .endif


   .ifdef _29027_MODE   
  ;
  ; Generate in line 29027 code
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_D_D  | CP_COMPARE_P_AND_T
     .set OPERATION_TYPE,  T_OPERATION
     select_destination destination
    ;
    ; 29027 registers are not valid destinations for compare operations
    ; If the destination is a 29000 register, write the appropriate
    ; Boolean value to that register.
    ;
     .if ( DESTINATION == DESTINATION_29027 )
       .err
       .print "29027 destinations invalid for compare - @destination@"
       .exitm
     .else
       perform_double_operation destination, operand1, operand2
       cp_read_flags destination
       and   destination,  destination,  CP_EQUAL_FLAG | CP_GREATER_THAN_FLAG
       cpneq destination,  destination,  0x0
     .endif
   .else
  ;
  ; For 29000 mode (the default) just invoke the trap-inducing instruction
  ;
     dge destination,operand1,operand2

   .endif

 .endm        ; end of mdge macro definition

;
;  SMART MACRO: mdgt
;
;  FUNCTION: Double precision, floating point compare
;
;  PARAMETERS:  destination  -  one of the possible destinations
;               operand1     -  one of the possible sources
;               operand2     -  one of the possible sources
;
 .macro mdgt, destination, operand1, operand2

   .if $narg!=3
     .err
     .print "mdgt: missing parameter(s)"
     .exitm
   .endif


   .ifdef _29027_MODE   
  ;
  ; Generate in line 29027 code
  ;
     initialize_previous_instruction
     .set CURRENT_INSTRUCTION, CP_D_D  | CP_COMPARE_P_AND_T
     .set OPERATION_TYPE,  T_OPERATION
     select_destination destination
    ;
    ; 29027 registers are not valid destinations for compare operations
    ; If the destination is a 29000 register, write the appropriate
    ; Boolean value to that register.
    ;
     .if ( DESTINATION == DESTINATION_29027 )
       .err
       .print "29027 destinations invalid for compare - @destination@"
       .exitm
     .else
       perform_double_operation destination, operand1, operand2
       cp_read_flags destination
       srl  destination,  destination,  CP_GREATER_THAN_FLAG_POSITION
       sll  destination,  destination,  31
     .endif
   .else
  ;
  ; For 29000 mode (the default) just invoke the trap-inducing instruction
  ;
     dgt destination,operand1,operand2

   .endif

 .endm    ; end of mdgt macro definition

;
; MACRO NAME : perform_double_operation
;
; FUNCTION : After the instruction base is set up, do the appropriate checking
;            to send the instruction if necessary, send the double-precision
;            operands if necessary, and start the operation
;
; PARAMETERS : destination - one of possible destination operands
;              operand1    - one of possible source operands
;              operand2    - one of possible source operands
;
 .macro perform_double_operation,destination,operand1,operand2

   .if $narg!=3
     .err
     .print "perform_double_operation: missing parameter(s)"
     .exitm
   .endif

  ;
  ; Start defining the instruction
  ;
   select_destination destination
   select_P_operand   operand1
   select_S_operand   operand2

   write_and_execute_double_operation operand1, operand2

 .endm      ; End of perform_double_operation macro definition

;
; MACRO NAME : perform_single_operation
;
; FUNCTION : After the instruction base is set up, do the appropriate checking
;            to send the instruction if necessary, send the single-precision
;            operands if necessary and start the operation
;
; PARAMETERS : destination - one of possible destination operands
;              operand1    - one of possible source operands
;              operand2    - one of possible source operands
;
 .macro perform_single_operation,destination,operand1,operand2

  ;
  ; Start defining the instruction
  ;
   select_destination destination
   select_P_operand operand1
   select_S_operand operand2
   write_and_execute_single_operation operand1,operand2

 .endm      ; End of perform_single_operation macro definition

;
; MACRO NAME : write_and_execute_double_operation
;
; FUNCTION : Write the instruction and operands for a double-precision
;            operation, and start the operation
;
; PARAMETER : operand1 - first operand of double-precision operation
;             operand2 - second operand of operation
;
 .macro write_and_execute_double_operation,operand1,operand2
   .if ( ( R_SOURCE == R_SOURCE_29027 ) && ( S_SOURCE == S_SOURCE_29027 ) )
  ;
  ; If both sources are within the 29027, write the instruction
  ; and start the operation
  ;
       const  t4, CURRENT_INSTRUCTION
       consth t4, CURRENT_INSTRUCTION
       cp_write_inst t4, START
   .else
  ;
  ; One or both of the sources must be written first, so check the
  ; previous instruction
  ;
       const  t4, CURRENT_INSTRUCTION
       consth t4, CURRENT_INSTRUCTION
       cp_write_inst t4
     .if ( R_SOURCE == R_SOURCE_29000 ) && ( S_SOURCE == S_SOURCE_29027 )
       .ifeqs "@operand1@","t0"
         cp_write_r t0, t1, START
       .else
         .ifeqs "@operand1@","t2"
           cp_write_r t2, t3, START
         .else
           .ifeqs "@operand1@","rtn0"
             cp_write_r rtn0, rtn1, START
           .else
             .err
             .print "Invalid source for double operation - @operand1@"
             .exitm
           .endif
         .endif
       .endif
     .endif
     .if ( R_SOURCE == R_SOURCE_29027 ) && ( S_SOURCE == S_SOURCE_29000 )
       .ifeqs "@operand2@","t0"
         cp_write_s t0, t1, START
       .else
         .ifeqs "@operand2@","t2"
           cp_write_s t2, t3, START
         .else
           .ifeqs "@operand2@","rtn0"
             cp_write_s rtn0, rtn1, START
           .else
             .err
             .print "Invalid source for double operation - @operand1@"
             .exitm
           .endif
         .endif
       .endif
     .endif
     .if ( R_SOURCE == R_SOURCE_29000 ) && ( S_SOURCE == S_SOURCE_29000 )
       .ifeqs "@operand1@","t0"
         cp_write_r t0, t1
       .else
         .ifeqs "@operand1@","t2"
           cp_write_r t2, t3
         .else
           .ifeqs "@operand1@","rtn0"
             cp_write_r rtn0, rtn1
           .else
             .err
             .print "Invalid source for double operation - @operand1@"
             .exitm
           .endif
         .endif
       .endif
       .ifeqs "@operand2@","t0"
         cp_write_s t0, t1, START
       .else
         .ifeqs "@operand2@","t2"
           cp_write_s t2, t3, START
         .else
           .ifeqs "@operand2@","rtn0"
             cp_write_s rtn0, rtn1, START
           .else
             .err
             .print "Invalid source for double operation - @operand1@"
             .exitm
           .endif
         .endif
       .endif
     .endif
   .endif

 .endm       ; end of write_and_execute_double_operation macro definition

;
; MACRO NAME : write_and_execute_single_operation
;
; FUNCTION : If necessary, read the result from the 29027 into a
;            register on the 29000
;
; PARAMETER : operand1 - first source for single-precision operation
;             operand2 - second source for operation
;
 .macro write_and_execute_single_operation,operand1,operand2

   .if ( ( R_SOURCE == R_SOURCE_29027 ) && ( S_SOURCE == S_SOURCE_29027 ) )
  ;
  ; If both sources are within the 29027, write the instruction
  ; and start the operation
  ;
       const  t4, CURRENT_INSTRUCTION
       consth t4, CURRENT_INSTRUCTION
       cp_write_inst t4, START
   .else
  ;
  ; One or both of the sources must be written first, so check the
  ; previous instruction
  ;
     const  t4,CURRENT_INSTRUCTION
     consth t4,CURRENT_INSTRUCTION
     cp_write_inst t4, START
     .if ( R_SOURCE == R_SOURCE_29000 ) && ( S_SOURCE == S_SOURCE_29027 )
       cp_write_r operand1, operand1, START
     .endif
     .if ( R_SOURCE == R_SOURCE_29027 ) && ( S_SOURCE == S_SOURCE_29000 )
       cp_write_s operand2, operand2, START
     .endif
     .if ( R_SOURCE == R_SOURCE_29000 ) && ( S_SOURCE == S_SOURCE_29000 )
       cp_write_rs operand1, operand2, START
     .endif
   .endif

 .endm      ; End of write_and_execute_single_operation macro definition

;
; MACRO NAME : read_double_result
;
; FUNCTION : If necessary, read the result from the 29027 into a
;            register on the 29000
;
; PARAMETER : destination - one of the possible destination registers
;
 .macro read_double_result,destination
   .if ( DESTINATION == DESTINATION_29000 )
  ;
  ; If the destination is not within the 29027 register file, read
  ; the result and store it into the correct register in the 29000
  ;
     .ifeqs "@destination@","rtn0"
       cp_read_dp rtn0, rtn1
     .else
       .err
       .print "Invalid destination for double result - @destination@"
       .exitm
     .endif
   .endif

 .endm       ; End of read_double_result macro definition

;
; MACRO NAME : read_single_result
;
; FUNCTION : If necessary, read the result from the 29027 into a
;            register on the 29000
;
; PARAMETER : destination
;
 .macro read_single_result,destination

   .if ( DESTINATION == DESTINATION_29000 )
  ;
  ; If the destination is not within the 29027 register file, read
  ; the result and store it into the correct register in the 29000
  ;
     .ifeqs "@destination@","rtn0"
       cp_read_sp rtn0
     .else
       .err
       .print "Invalid destination for single result - @destination@"
       .exitm
     .endif
   .endif

 .endm       ; End of read_single_result macro definition

;
; MACRO NAME : read_integer_result
;
; FUNCTION : If necessary, read the result from the 29027 into a
;            register on the 29000
;
; PARAMETER : destination
;
 .macro read_integer_result,destination

   .if ( DESTINATION == DESTINATION_29000 )
  ;
  ; If the destination is not within the 29027 register file, read
  ; the result and store it into the correct register in the 29000
  ;
     .ifeqs "@destination@","rtn0"
       cp_read_int rtn0
     .else
       .err
       .print "Invalid destination for single result - @destination@"
       .exitm
     .endif
   .endif

 .endm       ; End of read_integer_result macro definition

;
; MACRO NAME : select_P_operand
;
; FUNCTION : Given an operand, determine if the operand is from the
;            register file, and if so, set the appropriate bits in
;            the current instruction word.  In addition, set the
;            variable R_SOURCE to 0 for local register file, or 1 for
;            floating-point register file.
;
; PARAMETER : operand1 - one of the possible source operands
;
 .macro select_P_operand,operand1
   .ifeqs "@operand1@","t0"
     .set R_SOURCE,R_SOURCE_29000
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_R
     .exitm
   .endif
   .ifeqs "@operand1@","t2"
     .set R_SOURCE,R_SOURCE_29000
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_R
     .exitm
   .endif
   .ifeqs "@operand1@","rtn0"
     .set R_SOURCE,R_SOURCE_29000
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_R
     .exitm
   .endif
   .ifeqs "@operand1@","FP0"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF0
     .exitm
   .endif
   .ifeqs "@operand1@","FP1"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF1
     .exitm
   .endif
   .ifeqs "@operand1@","FP2"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF2
     .exitm
   .endif
   .ifeqs "@operand1@","FP3"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF3
     .exitm
   .endif
   .ifeqs "@operand1@","FP4"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF4
     .exitm
   .endif
   .ifeqs "@operand1@","FP5"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF5
     .exitm
   .endif
   .ifeqs "@operand1@","FP6"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF6
     .exitm
   .endif
   .ifeqs "@operand1@","FP7"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_P_EQ_RF7
     .exitm
   .endif
   .err
   .print "@operand1@ - Invalid operand"

 .endm        ; end of select_P_operand macro definition

;
; MACRO NAME : select_S_operand
;
; FUNCTION : Given an operand, determine if the operand is from the
;            register file, and if so, set the appropriate bits in
;            the current instruction word.  In addition, set the
;            variable S_SOURCE to S_SOURCE_29000 or S_SOURCE_29027
;            as appropriate
;
; PARAMETER : operand2 - one of the possible source operands
;
 .macro select_S_operand,operand2
   .ifeqs "@operand2@","t0"
     .set S_SOURCE,S_SOURCE_29000
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_S
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_S
     .endif     
     .exitm
   .endif
   .ifeqs "@operand2@","t2"
     .set S_SOURCE,S_SOURCE_29000
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_S
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_S
     .endif     
     .exitm
   .endif
   .ifeqs "@operand2@","rtn0"
     .set S_SOURCE,S_SOURCE_29000
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_S
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_S
     .endif     
     .exitm
   .endif
   .ifeqs "@operand2@","FP0"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF0
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF0
     .endif
     .exitm
   .endif
   .ifeqs "@operand2@","FP1"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF1
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF1
     .endif
     .exitm
   .endif
   .ifeqs "@operand2@","FP2"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF2
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF2
     .endif
     .exitm
   .endif
   .ifeqs "@operand2@","FP3"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF3
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF3
     .endif
     .exitm
   .endif
   .ifeqs "@operand2@","FP4"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF4
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF4
     .endif
     .exitm
   .endif
   .ifeqs "@operand2@","FP5"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF5
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF5
     .endif
     .exitm
   .endif
   .ifeqs "@operand2@","FP6"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF6
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF6
     .endif
     .exitm
   .endif
   .ifeqs "@operand2@","FP7"
     .set S_SOURCE,S_SOURCE_29027
     .if ( OPERATION_TYPE == T_OPERATION )
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF7
     .else
       .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_Q_EQ_RF7
     .endif
     .exitm
   .endif
   .err
   .print "@operand2@ - Invalid operand"

 .endm        ; end of select_S_operand macro definition

;
; MACRO NAME : select_T_operand
;
; FUNCTION : Given an operand, determine if the operand is from the
;            register file, and if so, set the appropriate bits in
;            the current instruction word, to read the corresponding
;            source into the T operand.  In addition, set the
;            variable R_SOURCE to 0 for local register file, or 1 for
;            floating-point register file.
;
; PARAMETER : operand1 - one of the possible source operands
;
 .macro select_T_operand,operand1
   .ifeqs "@operand1@","t0"
     .set R_SOURCE,R_SOURCE_29000
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_R
     .exitm
   .endif
   .ifeqs "@operand1@","t2"
     .set R_SOURCE,R_SOURCE_29000
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_R
     .exitm
   .endif
   .ifeqs "@operand1@","rtn0"
     .set R_SOURCE,R_SOURCE_29000
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_R
     .exitm
   .endif
   .ifeqs "@operand1@","FP0"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF0
     .exitm
   .endif
   .ifeqs "@operand1@","FP1"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF1
     .exitm
   .endif
   .ifeqs "@operand1@","FP2"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF2
     .exitm
   .endif
   .ifeqs "@operand1@","FP3"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF3
     .exitm
   .endif
   .ifeqs "@operand1@","FP4"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF4
     .exitm
   .endif
   .ifeqs "@operand1@","FP5"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF5
     .exitm
   .endif
   .ifeqs "@operand1@","FP6"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF6
     .exitm
   .endif
   .ifeqs "@operand1@","FP7"
     .set R_SOURCE,R_SOURCE_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_T_EQ_RF7
     .exitm
   .endif
   .err
   .print "@operand1@ - Invalid operand"

 .endm        ; end of select_T_operand macro definition

;
; MACRO NAME : select_destination
;
; FUNCTION : Given a destination, determine if the operand is from the
;            register file, and if so, set the appropriate bits in
;            the current instruction word.  In addition, set the
;            variable DESTINATION to DESTINATION_29000 or
;            DESTINATION_29027 as appropriate
;
; PARAMETER : destination - one of the possible destination operands
;
 .macro select_destination,destination
   .ifeqs "@destination@","rtn0"
     .set DESTINATION,DESTINATION_29000
     .exitm
   .endif
   .ifeqs "@destination@","FP0"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF0
     .exitm
   .endif
   .ifeqs "@destination@","FP1"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF1
     .exitm
   .endif
   .ifeqs "@destination@","FP2"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF2
     .exitm
   .endif
   .ifeqs "@destination@","FP3"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF3
     .exitm
   .endif
   .ifeqs "@destination@","FP4"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF4
     .exitm
   .endif
   .ifeqs "@destination@","FP5"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF5
     .exitm
   .endif
   .ifeqs "@destination@","FP6"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF6
     .exitm
   .endif
   .ifeqs "@destination@","FP7"
     .set DESTINATION,DESTINATION_29027
     .set CURRENT_INSTRUCTION, CURRENT_INSTRUCTION | CP_DEST_EQ_RF7
     .exitm
   .endif
   .err
   .print "@destination@ - Invalid operand"

 .endm        ; end of select_destination macro definition

; MACRO NAME : initialize_previous_instruction
;
; FUNCTION : Make sure the previous instruction is defined and set to zero
;
 .macro initialize_previous_instruction

   .ifndef PREVIOUS_INSTRUCTION
  ;
  ; Make sure that the previous instruction variable is initialized
  ;
     .set PREVIOUS_INSTRUCTION,0
   .endif

 .endm        ; end of initialize_previous_instruction macro definition


; MACRO NAME : prepare_function_parameters
;
; FUNCTION : To place the input parameters into the correct position for
;            use by the function body.  When the target language is
;            FORTRAN, the values of the input arguments are read from the
;            supplied addresses and moved to the t0-t3 temporary area.
;            When the target language is C or Pascal, the values of the
;            input arguments are simply moved to the t0-t3 temporary area.
;
 .macro prepare_function_parameters,arg1,arg2

   .if $narg==0
     .err
     .print "Missing function argument(s)"
     .exitm
   .endif

   .if $narg>2
     .err
     .print "Too many function arguments
     .exitm
   .endif

   .if $narg>=1
     .if $isreg(@arg1)
       .ifdef FORTRAN
         load 0,0,t0,arg1
         .if ( FUNCTION_TYPE == DOUBLE_FUNCTION )
           add t1,arg1,4
           load 0,0,t1,t1
         .endif
       .else
         add t0,arg1,0
         .if ( FUNCTION_TYPE == DOUBLE_FUNCTION )
           add t1,%%(&arg1+1),0
         .endif         
       .endif
     .else
       .err
       .print "Function argument not register - @arg1@"
     .endif
   .endif
   .if $narg==2
     .if $isreg (@arg2)
       .ifdef FORTRAN
         load 0,0,t2,arg2
         .if ( FUNCTION_TYPE == DOUBLE_FUNCTION )
           add t3,arg2,4
           load 0,0,t3,t3
         .endif
       .else
         add t2,arg2,0
         .if ( FUNCTION_TYPE == DOUBLE_FUNCTION )
           add t3,%%(&arg2+1),0
         .endif
       .endif
     .else
       .err
       .print "Function argument not register - @arg2@"
     .endif
   .endif

 .endm ; end of prepare_function_parameters macro definition

; end of smartmac.h file