aboutsummaryrefslogtreecommitdiff
path: root/intrinsics/riscv64_to_x86_64/intrinsic_def.json
blob: 831beb5142a434169a2acd9bf5e2d8fe27eb6bf0 (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
{
  "License": [
    "Copyright (C) 2023 The Android Open Source Project",
    "",
    "Licensed under the Apache License, Version 2.0 (the “License”);",
    "you may not use this file except in compliance with the License.",
    "You may obtain a copy of the License at",
    "",
    "     http://www.apache.org/licenses/LICENSE-2.0",
    "",
    "Unless required by applicable law or agreed to in writing, software",
    "distributed under the License is distributed on an “AS IS” BASIS,",
    "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.",
    "See the License for the specific language governing permissions and",
    "limitations under the License."
  ],
  "Aadd": {
    "comment": "Averaging add (scalar).",
    "class": "template",
    "variants": [
      "int8_t",
      "uint8_t",
      "int16_t",
      "uint16_t",
      "int32_t",
      "uint32_t",
      "int64_t",
      "uint64_t"
    ],
    "in": [ "int8_t", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "Adduw": {
    "comment": "Add unsigned word",
    "class": "scalar",
    "in": [ "uint32_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "AmoAdd": {
    "comment": "Atomic add, like __atomic_fetch_add. Three template arguments: type, aq, rl.",
    "class": "template",
    "variants": [
      "int32_t, false, false",
      "int32_t, false, true",
      "int32_t, true, false",
      "int32_t, true, true",
      "int64_t, false, false",
      "int64_t, false, true",
      "int64_t, true, false",
      "int64_t, true, true"
    ],
    "in": [ "int64_t", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Atomic instruction. Should be volatile.",
    "has_side_effects": true
  },
  "AmoAnd": {
    "comment": "Atomic and, like __atomic_fetch_and. Three template arguments: type, aq, rl.",
    "class": "template",
    "variants": [
      "int32_t, false, false",
      "int32_t, false, true",
      "int32_t, true, false",
      "int32_t, true, true",
      "int64_t, false, false",
      "int64_t, false, true",
      "int64_t, true, false",
      "int64_t, true, true"
    ],
    "in": [ "int64_t", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Atomic instruction. Should be volatile.",
    "has_side_effects": true
  },
  "AmoMax": {
    "comment": "Atomic maximum, like __atomic_fetch_max. Three template arguments: type, aq, rl.",
    "class": "template",
    "variants": [
      "int32_t, false, false",
      "int32_t, false, true",
      "int32_t, true, false",
      "int32_t, true, true",
      "int64_t, false, false",
      "int64_t, false, true",
      "int64_t, true, false",
      "int64_t, true, true",
      "uint32_t, false, false",
      "uint32_t, false, true",
      "uint32_t, true, false",
      "uint32_t, true, true",
      "uint64_t, false, false",
      "uint64_t, false, true",
      "uint64_t, true, false",
      "uint64_t, true, true"
    ],
    "in": [ "int64_t", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Atomic instruction. Should be volatile.",
    "has_side_effects": true
  },
  "AmoMin": {
    "comment": "Atomic minimum, like __atomic_fetch_min. Three template arguments: type, aq, rl.",
    "class": "template",
    "variants": [
      "int32_t, false, false",
      "int32_t, false, true",
      "int32_t, true, false",
      "int32_t, true, true",
      "int64_t, false, false",
      "int64_t, false, true",
      "int64_t, true, false",
      "int64_t, true, true",
      "uint32_t, false, false",
      "uint32_t, false, true",
      "uint32_t, true, false",
      "uint32_t, true, true",
      "uint64_t, false, false",
      "uint64_t, false, true",
      "uint64_t, true, false",
      "uint64_t, true, true"
    ],
    "in": [ "int64_t", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Atomic instruction. Should be volatile.",
    "has_side_effects": true
  },
  "AmoOr": {
    "comment": "Atomic or, like __atomic_fetch_or. Three template arguments: type, aq, rl.",
    "class": "template",
    "variants": [
      "int32_t, false, false",
      "int32_t, false, true",
      "int32_t, true, false",
      "int32_t, true, true",
      "int64_t, false, false",
      "int64_t, false, true",
      "int64_t, true, false",
      "int64_t, true, true"
    ],
    "in": [ "int64_t", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Atomic instruction. Should be volatile.",
    "has_side_effects": true
  },
  "AmoSwap": {
    "comment": "Atomic exchange, like __atomic_exchange_n. Three template arguments: type, aq, rl.",
    "class": "template",
    "variants": [
      "int32_t, false, false",
      "int32_t, false, true",
      "int32_t, true, false",
      "int32_t, true, true",
      "int64_t, false, false",
      "int64_t, false, true",
      "int64_t, true, false",
      "int64_t, true, true"
    ],
    "in": [ "int64_t", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Atomic instruction. Should be volatile.",
    "has_side_effects": true
  },
  "AmoXor": {
    "comment": "Atomic exclusive or, like __atomic_fetch_xor. Three template arguments: type, aq, rl.",
    "class": "template",
    "variants": [
      "int32_t, false, false",
      "int32_t, false, true",
      "int32_t, true, false",
      "int32_t, true, true",
      "int64_t, false, false",
      "int64_t, false, true",
      "int64_t, true, false",
      "int64_t, true, true"
    ],
    "in": [ "int64_t", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Atomic instruction. Should be volatile.",
    "has_side_effects": true
  },
  "Asub": {
    "comment": "Averaging subtract (scalar).",
    "class": "template",
    "variants": [
      "int8_t",
      "uint8_t",
      "int16_t",
      "uint16_t",
      "int32_t",
      "uint32_t",
      "int64_t",
      "uint64_t"
    ],
    "in": [ "int8_t", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "Bclr": {
    "comment": "Single bit clear register",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Bclri": {
    "comment": "Single bit clear immediate",
    "class": "scalar",
    "in": [ "uint64_t", "uimm8" ],
    "out": [ "uint64_t" ]
  },
  "Bext": {
    "comment": "Single bit extract register",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Bexti": {
    "comment": "Single bit extract immediate",
    "class": "scalar",
    "in": [ "uint64_t", "uimm8" ],
    "out": [ "uint64_t" ]
  },
  "Binv": {
    "comment": "Single bit invert register",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Binvi": {
    "comment": "Single bit invert immediate",
    "class": "scalar",
    "in": [ "uint64_t", "uimm8" ],
    "out": [ "uint64_t" ]
  },
  "Bset": {
    "comment": "Single bit set register",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Bseti": {
    "comment": "Single bit set immediate",
    "class": "scalar",
    "in": [ "uint64_t", "uimm8" ],
    "out": [ "uint64_t" ]
  },
  "CPUClockCount": {
    "comment": "Get current CPU clock count",
    "class": "scalar",
    "in": [],
    "out": [ "uint64_t" ]
  },
  "CanonicalizeNan": {
    "comment": "Unbox small floating-point value from NaN",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0" ],
    "out": [ "Type0" ]
  },
  "Clz": {
    "comment": "Count leading zeros. Note: works like lzcnt, supports zero input!",
    "class": "template",
    "variants": [ "int32_t", "int64_t" ],
    "in": [ "Type0" ],
    "out": [ "int64_t" ]
  },
  "Cpop": {
    "comment": "Count set bits",
    "class": "template",
    "variants": [ "int32_t", "int64_t" ],
    "in": [ "Type0" ],
    "out": [ "int64_t" ]
  },
  "Ctz": {
    "comment": "Count trailing zeros. Note: works like tzcnt, supports zero input!",
    "class": "template",
    "variants": [ "int32_t", "int64_t" ],
    "in": [ "Type0" ],
    "out": [ "int64_t" ]
  },
  "Div": {
    "comment": "Integer division",
    "class": "template",
    "variants": [
      "int8_t",
      "uint8_t",
      "int16_t",
      "uint16_t",
      "int32_t",
      "uint32_t",
      "int64_t",
      "uint64_t"
    ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FAdd": {
    "comment": "Floating point addition",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FAddHostRounding": {
    "comment": "Fused multiply-addition (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FClass": {
    "comment": "Classify float number in 10 classes as defined by RISC-V",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0" ],
    "out": [ "uint64_t" ],
    "side_effects_comment": "Classification of value, doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FCvtFloatToFloat": {
    "comment": "Convert float to float",
    "class": "template",
    "variants": [ "Float32, Float64", "Float64, Float32" ],
    "in": [ "imm8", "int8_t", "Type1" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Conversion of value, doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FCvtFloatToInteger": {
    "comment": "Convert float to integer",
    "class": "template",
    "variants": [
      "int32_t, Float32",
      "int32_t, Float64",
      "int64_t, Float32",
      "int64_t, Float64",
      "uint32_t, Float32",
      "uint32_t, Float64",
      "uint64_t, Float32",
      "uint64_t, Float64"
    ],
    "in": [ "imm8", "int8_t", "Type1" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Conversion of value, doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FCvtFloatToIntegerHostRounding": {
    "comment": "Convert float to integer",
    "class": "template",
    "variants": [ "int32_t, Float32", "int32_t, Float64", "int64_t, Float32", "int64_t, Float64" ],
    "in": [ "Type1" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Conversion of value, doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FCvtIntegerToFloat": {
    "comment": "Convert integer to float",
    "class": "template",
    "variants": [
      "Float32, int32_t",
      "Float32, int64_t",
      "Float32, uint32_t",
      "Float32, uint64_t",
      "Float64, int32_t",
      "Float64, int64_t",
      "Float64, uint32_t",
      "Float64, uint64_t"
    ],
    "in": [ "imm8", "int8_t", "Type1" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Conversion of value, doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FDiv": {
    "comment": "Floating point division",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FDivHostRounding": {
    "comment": "Floating point division (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FeGetExceptions": {
    "comment": "Read exceptions state from x87 status word and MXCSR.",
    "class": "scalar",
    "in": [],
    "out": [ "uint64_t" ],
    "side_effects_comment": "Reads state from host CPU. State may be affected to floating point instructions.",
    "has_side_effects": true
  },
  "FeSetExceptions": {
    "comment": "Store exceptions state into x87 status word and MXCSR. Only low five bits are set on input!",
    "class": "scalar",
    "in": [ "uint64_t" ],
    "out": [],
    "side_effects_comment": "Stores state to host CPU. State may be affected to floating point instructions.",
    "has_side_effects": true
  },
  "FeSetExceptionsAndRound": {
    "comment": "Store exceptions state into x87 status word and MXCSR. Only low five bits are set on input!",
    "class": "scalar",
    "in": [ "uint64_t", "uint8_t" ],
    "out": [],
    "side_effects_comment": "Stores state to host CPU. State may be affected to floating point instructions.",
    "has_side_effects": true
  },
  "FeSetExceptionsImm": {
    "comment": "Store exceptions state into x87 status word and MXCSR. Only low five bits are set on input!",
    "class": "scalar",
    "in": [ "uimm8" ],
    "out": [],
    "side_effects_comment": "Stores state to host CPU. State may be affected to floating point instructions.",
    "has_side_effects": true
  },
  "FeSetExceptionsAndRoundImm": {
    "comment": "Store exceptions state into x87 status word and MXCSR. Only low five bits are set on input!",
    "class": "scalar",
    "in": [ "uimm8" ],
    "out": [],
    "side_effects_comment": "Stores state to host CPU. State may be affected to floating point instructions.",
    "has_side_effects": true
  },
  "FeSetRound": {
    "comment": "Store guest rounding mode in the host FPU state. Only low three bits are set on input!",
    "class": "scalar",
    "in": [ "uint64_t" ],
    "out": [],
    "has_side_effects": true
  },
  "FeSetRoundImm": {
    "comment": "Store guest rounding mode in the host FPU state. Only low three bits are set on input!",
    "class": "scalar",
    "in": [ "uimm8" ],
    "out": [],
    "has_side_effects": true
  },
  "FMAdd": {
    "comment": "Fused multiply-addition",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FMAddHostRounding": {
    "comment": "Fused multiply-addition (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FMSub": {
    "comment": "Fused multiply-subtraction",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FMSubHostRounding": {
    "comment": "Fused multiply-subtraction (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FMax": {
    "comment": "Maximum from two floats",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FMin": {
    "comment": "Minimum from two floats",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FMul": {
    "comment": "Floating point multiplication",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FMulHostRounding": {
    "comment": "Floating point multiplication (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FNMAdd": {
    "comment": "Fused negated multiply-addition",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FNMAddHostRounding": {
    "comment": "Fused negated multiply-addition (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FNMSub": {
    "comment": "Fused negated multiply-subtraction",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FNMSubHostRounding": {
    "comment": "Fused negated multiply-subtraction (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FSgnj": {
    "comment": "Copy sign of one float to another",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Special conversion. Doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FSgnjn": {
    "comment": "Copy negated sign of one float to another",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Special conversion. Doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FSgnjx": {
    "comment": "Xor two sign bits of two floats and return",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Special conversion. Doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FSqrt": {
    "comment": "Square root",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0" ],
    "out": [ "Type0" ]
  },
  "FSqrtHostRounding": {
    "comment": "Square root (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32" ],
    "in": [ "Type0" ],
    "out": [ "Type0" ]
  },
  "FSub": {
    "comment": "Floating point subtraction",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "imm8", "int8_t", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "FSubHostRounding": {
    "comment": "Floating point subtraction (uses host dynamic rounding)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "Feq": {
    "comment": "Floating point comparison for \u201cequal\u201d (quiet comparison)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "int64_t" ]
  },
  "Fle": {
    "comment": "Floating point comparison for \u201cless of equal\u201d (signaling comparison)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "int64_t" ]
  },
  "Flt": {
    "comment": "Floating point comparison for \u201cless\u201d (quiet comparison)",
    "class": "template",
    "variants": [ "Float32", "Float64" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "int64_t" ]
  },
  "FmvFloatToInteger": {
    "comment": "Move floating point register to integer register",
    "class": "template",
    "variants": [ "int32_t, Float32", "int64_t, Float64" ],
    "in": [ "Type1" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Conversion of value, doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "FmvIntegerToFloat": {
    "comment": "Move floating point register to integer register",
    "class": "template",
    "variants": [ "Float32, int32_t", "Float64, int64_t" ],
    "in": [ "Type1" ],
    "out": [ "Type0" ],
    "side_effects_comment": "Conversion of value, doesn't set exceptions bits.",
    "has_side_effects": false
  },
  "Max": {
    "comment": "Returns the larger of two integers.",
    "class": "template",
    "variants": [ "int64_t", "uint64_t" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "Min": {
    "comment": "Returns the smaller of two integers.",
    "class": "template",
    "variants": [ "int64_t", "uint64_t" ],
    "in": [ "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "NanBox": {
    "comment": [
      "NaN-box small floating-point value into NaN.",
      "Note: we pass input value as Float64 but top half may contain garbage.",
      "This is needed because otherwise FPRegToFloat would be used to check it."
    ],
    "class": "template",
    "variants": [ "Float32" ],
    "in": [ "Float64" ],
    "out": [ "Float64" ]
  },
  "Orcb": {
    "comment": "OR-Combine, byte granule.",
    "class": "scalar",
    "in": [ "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Rev8": {
    "comment": "Byte reverse.",
    "class": "scalar",
    "in": [ "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Rol": {
    "comment": "Rotate left.",
    "class": "template",
    "variants": [ "int64_t", "int32_t" ],
    "in": [ "Type0", "int8_t" ],
    "out": [ "Type0" ]
  },
  "Ror": {
    "comment": "Rotate right.",
    "class": "template",
    "variants": [ "int64_t", "int32_t" ],
    "in": [ "Type0", "int8_t" ],
    "out": [ "Type0" ]
  },
  "Roundoff": {
    "comment": "Fixed point conversion with rounding (but without narrowing).",
    "class": "template",
    "variants": [
      "int8_t",
      "uint8_t",
      "int16_t",
      "uint16_t",
      "int32_t",
      "uint32_t",
      "int64_t",
      "uint64_t"
    ],
    "in": [ "int8_t", "Type0", "Type0" ],
    "out": [ "Type0" ]
  },
  "Sext": {
    "comment": "Sign-extends to 64bit",
    "class": "template",
    "variants": [ "int8_t", "int16_t" ],
    "in": [ "Type0" ],
    "out": [ "int64_t" ]
  },
  "Sh1add": {
    "comment": "Shift left and add",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Sh1adduw": {
    "comment": "Shift unsigned word left and add",
    "class": "scalar",
    "in": [ "uint32_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Sh2add": {
    "comment": "Shift left by 2 and add",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Sh2adduw": {
    "comment": "Shift unsigned word left by 2 and add",
    "class": "scalar",
    "in": [ "uint32_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Sh3add": {
    "comment": "Shift left by 3 and add",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Sh3adduw": {
    "comment": "Shift unsigned word left by 3 and add",
    "class": "scalar",
    "in": [ "uint32_t", "uint64_t" ],
    "out": [ "uint64_t" ]
  },
  "Slliuw": {
    "comment": "Shift left unsigned word immediate",
    "class": "scalar",
    "in": [ "uint32_t", "uimm8" ],
    "out": [ "uint64_t" ]
  },
  "UnboxNan": {
    "comment": "Unbox small floating-point value from NaN",
    "class": "template",
    "variants": [ "Float32" ],
    "in": [ "Float64" ],
    "out": [ "Type0" ]
  },
  "Vsetivli": {
    "comment": "Test vtype and set vl accordingly.",
    "class": "scalar",
    "in": [ "uimm8", "uimm16" ],
    "out": [ "uint64_t", "uint64_t" ]
  },
  "Vsetvl": {
    "comment": "Test vtype and set vl accordingly.",
    "class": "scalar",
    "in": [ "uint64_t", "uint64_t" ],
    "out": [ "uint64_t", "uint64_t" ]
  },
  "Vsetvli": {
    "comment": "Test vtype and set vl accordingly.",
    "class": "scalar",
    "in": [ "uint64_t", "uimm16" ],
    "out": [ "uint64_t", "uint64_t" ]
  },
  "Vsetvlmax": {
    "comment": "Test vtype and set vl accordingly.",
    "class": "scalar",
    "in": [ "uint64_t" ],
    "out": [ "uint64_t", "uint64_t" ]
  },
  "Vsetvlimax": {
    "comment": "Test vtype and set vl accordingly.",
    "class": "scalar",
    "in": [ "uimm16" ],
    "out": [ "uint64_t", "uint64_t" ]
  },
  "Vtestvl": {
    "comment": "Test vl and keep it or reset it and vtype.",
    "class": "scalar",
    "in": [ "uint8_t", "uint64_t", "uint64_t" ],
    "out": [ "uint64_t", "uint64_t" ]
  },
  "Vtestvli": {
    "comment": "Test vl and keep it or reset it and vtype.",
    "class": "scalar",
    "in": [ "uint8_t", "uint64_t", "uimm16" ],
    "out": [ "uint64_t", "uint64_t" ]
  },
  "Zexth": {
    "comment": "Zero-extend half word",
    "class": "scalar",
    "in": [ "int16_t" ],
    "out": [ "int64_t" ]
  }
}