reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    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
 1492
 1493
 1494
 1495
 1496
 1497
 1498
 1499
 1500
 1501
 1502
 1503
 1504
 1505
 1506
 1507
 1508
 1509
 1510
 1511
 1512
 1513
 1514
 1515
 1516
 1517
 1518
 1519
 1520
 1521
 1522
 1523
 1524
 1525
 1526
 1527
 1528
 1529
 1530
 1531
 1532
 1533
 1534
 1535
 1536
 1537
 1538
 1539
 1540
 1541
 1542
 1543
 1544
 1545
 1546
 1547
 1548
 1549
 1550
 1551
 1552
 1553
 1554
 1555
 1556
 1557
 1558
 1559
 1560
 1561
 1562
 1563
 1564
 1565
 1566
 1567
 1568
 1569
 1570
 1571
 1572
 1573
 1574
 1575
 1576
 1577
 1578
 1579
 1580
 1581
 1582
 1583
 1584
 1585
 1586
 1587
 1588
 1589
 1590
 1591
 1592
 1593
 1594
 1595
 1596
 1597
 1598
 1599
 1600
 1601
 1602
 1603
 1604
 1605
 1606
 1607
 1608
 1609
 1610
 1611
 1612
 1613
 1614
 1615
 1616
 1617
 1618
 1619
 1620
 1621
 1622
 1623
 1624
 1625
 1626
 1627
 1628
 1629
 1630
 1631
 1632
 1633
 1634
 1635
 1636
 1637
 1638
 1639
 1640
 1641
 1642
 1643
 1644
 1645
 1646
 1647
 1648
 1649
 1650
 1651
 1652
 1653
 1654
 1655
 1656
 1657
 1658
 1659
 1660
 1661
 1662
 1663
 1664
 1665
 1666
 1667
 1668
 1669
 1670
 1671
 1672
 1673
 1674
 1675
 1676
 1677
 1678
 1679
 1680
 1681
 1682
 1683
 1684
 1685
 1686
 1687
 1688
 1689
 1690
 1691
 1692
 1693
 1694
 1695
 1696
 1697
 1698
 1699
 1700
 1701
 1702
 1703
 1704
 1705
 1706
 1707
 1708
 1709
 1710
 1711
 1712
 1713
 1714
 1715
 1716
 1717
 1718
 1719
 1720
 1721
 1722
 1723
 1724
 1725
 1726
 1727
 1728
 1729
 1730
 1731
 1732
 1733
 1734
 1735
 1736
 1737
 1738
 1739
 1740
 1741
 1742
 1743
 1744
 1745
 1746
 1747
 1748
 1749
 1750
 1751
 1752
 1753
 1754
 1755
 1756
 1757
 1758
 1759
 1760
 1761
 1762
 1763
 1764
 1765
 1766
 1767
 1768
 1769
 1770
 1771
 1772
 1773
 1774
 1775
 1776
 1777
 1778
 1779
 1780
 1781
 1782
 1783
 1784
 1785
 1786
 1787
 1788
 1789
 1790
 1791
 1792
 1793
 1794
 1795
 1796
 1797
 1798
 1799
 1800
 1801
 1802
 1803
 1804
 1805
 1806
 1807
 1808
 1809
 1810
 1811
 1812
 1813
 1814
 1815
 1816
 1817
 1818
 1819
 1820
 1821
 1822
 1823
 1824
 1825
 1826
 1827
 1828
 1829
 1830
 1831
 1832
 1833
 1834
 1835
 1836
 1837
 1838
 1839
 1840
 1841
 1842
 1843
 1844
 1845
 1846
 1847
 1848
 1849
 1850
 1851
 1852
 1853
 1854
 1855
 1856
 1857
 1858
 1859
 1860
 1861
 1862
 1863
 1864
 1865
 1866
 1867
 1868
 1869
 1870
 1871
 1872
 1873
 1874
 1875
 1876
 1877
 1878
 1879
 1880
 1881
 1882
 1883
 1884
 1885
 1886
 1887
 1888
 1889
 1890
 1891
 1892
 1893
 1894
 1895
 1896
 1897
 1898
 1899
 1900
 1901
 1902
 1903
 1904
 1905
 1906
 1907
 1908
 1909
 1910
 1911
 1912
 1913
 1914
 1915
 1916
 1917
 1918
 1919
 1920
 1921
 1922
 1923
 1924
 1925
 1926
 1927
 1928
 1929
 1930
 1931
 1932
 1933
 1934
 1935
 1936
 1937
 1938
 1939
 1940
 1941
 1942
 1943
 1944
 1945
 1946
 1947
 1948
 1949
 1950
 1951
 1952
 1953
 1954
 1955
 1956
 1957
 1958
 1959
 1960
 1961
 1962
 1963
 1964
 1965
 1966
 1967
 1968
 1969
 1970
 1971
 1972
 1973
 1974
 1975
 1976
 1977
 1978
 1979
 1980
 1981
 1982
 1983
 1984
 1985
 1986
 1987
 1988
 1989
 1990
 1991
 1992
 1993
 1994
 1995
 1996
 1997
 1998
 1999
 2000
 2001
 2002
 2003
 2004
 2005
 2006
 2007
 2008
 2009
 2010
 2011
 2012
 2013
 2014
 2015
 2016
 2017
 2018
 2019
 2020
 2021
 2022
 2023
 2024
 2025
 2026
 2027
 2028
 2029
 2030
 2031
 2032
 2033
 2034
 2035
 2036
 2037
 2038
 2039
 2040
 2041
 2042
 2043
 2044
 2045
 2046
 2047
 2048
 2049
 2050
 2051
 2052
 2053
 2054
 2055
 2056
 2057
 2058
 2059
 2060
 2061
 2062
 2063
 2064
 2065
 2066
 2067
 2068
 2069
 2070
 2071
 2072
 2073
 2074
 2075
 2076
 2077
 2078
 2079
 2080
 2081
 2082
 2083
 2084
 2085
 2086
 2087
 2088
 2089
 2090
 2091
 2092
 2093
 2094
 2095
 2096
 2097
 2098
 2099
 2100
 2101
 2102
 2103
 2104
 2105
 2106
 2107
 2108
 2109
 2110
 2111
 2112
 2113
 2114
 2115
 2116
 2117
 2118
 2119
 2120
 2121
 2122
 2123
 2124
 2125
 2126
 2127
 2128
 2129
 2130
 2131
 2132
 2133
 2134
 2135
 2136
 2137
 2138
 2139
 2140
 2141
 2142
 2143
 2144
 2145
 2146
 2147
 2148
 2149
 2150
 2151
 2152
 2153
 2154
 2155
 2156
 2157
 2158
 2159
 2160
 2161
 2162
 2163
 2164
 2165
 2166
 2167
 2168
 2169
 2170
 2171
 2172
 2173
 2174
 2175
 2176
 2177
 2178
 2179
 2180
 2181
 2182
 2183
 2184
 2185
 2186
 2187
 2188
 2189
 2190
 2191
 2192
 2193
 2194
 2195
 2196
 2197
 2198
 2199
 2200
 2201
 2202
 2203
 2204
 2205
 2206
 2207
 2208
 2209
 2210
 2211
 2212
 2213
 2214
 2215
 2216
 2217
 2218
 2219
 2220
 2221
 2222
 2223
 2224
 2225
 2226
 2227
 2228
 2229
 2230
 2231
 2232
 2233
 2234
 2235
 2236
 2237
 2238
 2239
 2240
 2241
 2242
 2243
 2244
 2245
 2246
 2247
 2248
 2249
 2250
 2251
 2252
 2253
 2254
 2255
 2256
 2257
 2258
 2259
 2260
 2261
 2262
 2263
 2264
 2265
 2266
 2267
 2268
 2269
 2270
 2271
 2272
 2273
 2274
 2275
 2276
 2277
 2278
 2279
 2280
 2281
 2282
 2283
 2284
 2285
 2286
 2287
 2288
 2289
 2290
 2291
 2292
 2293
 2294
 2295
 2296
 2297
 2298
 2299
 2300
 2301
 2302
 2303
 2304
 2305
 2306
 2307
 2308
 2309
 2310
 2311
 2312
 2313
 2314
 2315
 2316
 2317
 2318
 2319
 2320
 2321
 2322
 2323
 2324
 2325
 2326
 2327
 2328
 2329
 2330
 2331
 2332
 2333
 2334
 2335
 2336
 2337
 2338
 2339
 2340
 2341
 2342
 2343
 2344
 2345
 2346
 2347
 2348
 2349
 2350
 2351
 2352
 2353
 2354
 2355
 2356
 2357
 2358
 2359
 2360
 2361
 2362
 2363
 2364
 2365
 2366
 2367
 2368
 2369
 2370
 2371
 2372
 2373
 2374
 2375
 2376
 2377
 2378
 2379
 2380
 2381
 2382
 2383
 2384
 2385
 2386
 2387
 2388
 2389
 2390
 2391
 2392
 2393
 2394
 2395
 2396
 2397
 2398
 2399
 2400
 2401
 2402
 2403
 2404
 2405
 2406
 2407
 2408
 2409
 2410
 2411
 2412
 2413
 2414
 2415
 2416
 2417
 2418
 2419
 2420
 2421
 2422
 2423
 2424
 2425
 2426
 2427
 2428
 2429
 2430
 2431
 2432
 2433
 2434
 2435
 2436
 2437
 2438
 2439
 2440
 2441
 2442
 2443
 2444
 2445
 2446
 2447
 2448
 2449
 2450
 2451
 2452
 2453
 2454
 2455
 2456
 2457
 2458
 2459
 2460
 2461
 2462
 2463
 2464
 2465
 2466
 2467
 2468
 2469
 2470
 2471
 2472
 2473
 2474
 2475
 2476
 2477
 2478
 2479
 2480
 2481
 2482
 2483
 2484
 2485
 2486
 2487
 2488
 2489
 2490
 2491
 2492
 2493
 2494
 2495
 2496
 2497
 2498
 2499
 2500
 2501
 2502
 2503
 2504
 2505
 2506
 2507
 2508
 2509
 2510
 2511
 2512
 2513
 2514
 2515
 2516
 2517
 2518
 2519
 2520
 2521
 2522
 2523
 2524
 2525
 2526
 2527
 2528
 2529
 2530
 2531
 2532
 2533
 2534
 2535
 2536
 2537
 2538
 2539
 2540
 2541
 2542
 2543
 2544
 2545
 2546
 2547
 2548
 2549
 2550
 2551
 2552
 2553
 2554
 2555
 2556
 2557
 2558
 2559
 2560
 2561
 2562
 2563
 2564
 2565
 2566
 2567
 2568
 2569
 2570
 2571
 2572
 2573
 2574
 2575
 2576
 2577
 2578
 2579
 2580
 2581
 2582
 2583
 2584
 2585
 2586
 2587
 2588
 2589
 2590
 2591
 2592
 2593
 2594
 2595
 2596
 2597
 2598
 2599
 2600
 2601
 2602
 2603
 2604
 2605
 2606
 2607
 2608
 2609
 2610
 2611
 2612
 2613
 2614
 2615
 2616
 2617
 2618
 2619
 2620
 2621
 2622
 2623
 2624
 2625
 2626
 2627
 2628
 2629
 2630
 2631
 2632
 2633
 2634
 2635
 2636
 2637
 2638
 2639
 2640
 2641
 2642
 2643
 2644
 2645
 2646
 2647
 2648
 2649
 2650
 2651
 2652
 2653
 2654
 2655
 2656
 2657
 2658
 2659
 2660
 2661
 2662
 2663
 2664
 2665
 2666
 2667
 2668
 2669
 2670
 2671
 2672
 2673
 2674
 2675
 2676
 2677
 2678
 2679
 2680
 2681
 2682
 2683
 2684
 2685
 2686
 2687
 2688
 2689
 2690
 2691
 2692
 2693
 2694
 2695
 2696
 2697
 2698
 2699
 2700
 2701
 2702
 2703
 2704
 2705
 2706
 2707
 2708
 2709
 2710
 2711
 2712
 2713
 2714
 2715
 2716
 2717
 2718
 2719
 2720
 2721
 2722
 2723
 2724
 2725
 2726
 2727
 2728
 2729
 2730
 2731
 2732
 2733
 2734
 2735
 2736
 2737
 2738
 2739
 2740
 2741
 2742
 2743
 2744
 2745
 2746
 2747
 2748
 2749
 2750
 2751
 2752
 2753
 2754
 2755
 2756
 2757
 2758
 2759
 2760
 2761
 2762
 2763
 2764
 2765
 2766
 2767
 2768
 2769
 2770
 2771
 2772
 2773
 2774
 2775
 2776
 2777
 2778
 2779
 2780
 2781
 2782
 2783
 2784
 2785
 2786
 2787
 2788
 2789
 2790
 2791
 2792
 2793
 2794
 2795
 2796
 2797
 2798
 2799
 2800
 2801
 2802
 2803
 2804
 2805
 2806
 2807
 2808
 2809
 2810
 2811
 2812
 2813
 2814
 2815
 2816
 2817
 2818
 2819
 2820
 2821
 2822
 2823
 2824
 2825
 2826
 2827
 2828
 2829
 2830
 2831
 2832
 2833
 2834
 2835
 2836
 2837
 2838
 2839
 2840
 2841
 2842
 2843
 2844
 2845
 2846
 2847
 2848
 2849
 2850
 2851
 2852
 2853
 2854
 2855
 2856
 2857
 2858
 2859
 2860
 2861
 2862
 2863
 2864
 2865
 2866
 2867
 2868
 2869
 2870
 2871
 2872
 2873
 2874
 2875
 2876
 2877
 2878
 2879
 2880
 2881
 2882
 2883
 2884
 2885
 2886
 2887
 2888
 2889
 2890
 2891
 2892
 2893
 2894
 2895
 2896
 2897
 2898
 2899
 2900
 2901
 2902
 2903
 2904
 2905
 2906
 2907
 2908
 2909
 2910
 2911
 2912
 2913
 2914
 2915
 2916
 2917
 2918
 2919
 2920
 2921
 2922
 2923
 2924
 2925
 2926
 2927
 2928
 2929
 2930
 2931
 2932
 2933
 2934
 2935
 2936
 2937
 2938
 2939
 2940
 2941
 2942
 2943
 2944
 2945
 2946
 2947
 2948
 2949
 2950
 2951
 2952
 2953
 2954
 2955
 2956
 2957
 2958
 2959
 2960
 2961
 2962
 2963
 2964
 2965
 2966
 2967
 2968
 2969
 2970
 2971
 2972
 2973
 2974
 2975
 2976
 2977
 2978
 2979
 2980
 2981
 2982
 2983
 2984
 2985
 2986
 2987
 2988
 2989
 2990
 2991
 2992
 2993
 2994
 2995
 2996
 2997
 2998
 2999
 3000
 3001
 3002
 3003
 3004
 3005
 3006
 3007
 3008
 3009
 3010
 3011
 3012
 3013
 3014
 3015
 3016
 3017
 3018
 3019
 3020
 3021
 3022
 3023
 3024
 3025
 3026
 3027
 3028
 3029
 3030
 3031
 3032
 3033
 3034
 3035
 3036
 3037
 3038
 3039
 3040
 3041
 3042
 3043
 3044
 3045
 3046
 3047
 3048
 3049
 3050
 3051
 3052
 3053
 3054
 3055
 3056
 3057
 3058
 3059
 3060
 3061
 3062
 3063
 3064
 3065
 3066
 3067
 3068
 3069
 3070
 3071
 3072
 3073
 3074
 3075
 3076
 3077
 3078
 3079
 3080
 3081
 3082
 3083
 3084
 3085
 3086
 3087
 3088
 3089
 3090
 3091
 3092
 3093
 3094
 3095
 3096
 3097
 3098
 3099
 3100
 3101
 3102
 3103
 3104
 3105
 3106
 3107
 3108
 3109
 3110
 3111
 3112
 3113
 3114
 3115
 3116
 3117
 3118
 3119
 3120
 3121
 3122
 3123
 3124
 3125
 3126
 3127
 3128
 3129
 3130
 3131
 3132
 3133
 3134
 3135
 3136
 3137
 3138
 3139
 3140
 3141
 3142
 3143
 3144
 3145
 3146
 3147
 3148
 3149
 3150
 3151
 3152
 3153
 3154
 3155
 3156
 3157
 3158
 3159
 3160
 3161
 3162
 3163
 3164
 3165
 3166
 3167
 3168
 3169
 3170
 3171
 3172
 3173
 3174
 3175
 3176
 3177
 3178
 3179
 3180
 3181
 3182
 3183
 3184
 3185
 3186
 3187
 3188
 3189
 3190
 3191
 3192
 3193
 3194
 3195
 3196
 3197
 3198
 3199
 3200
 3201
 3202
 3203
 3204
 3205
 3206
 3207
 3208
 3209
 3210
 3211
 3212
 3213
 3214
 3215
 3216
 3217
 3218
 3219
 3220
 3221
 3222
 3223
 3224
 3225
 3226
 3227
 3228
 3229
 3230
 3231
 3232
 3233
 3234
 3235
 3236
 3237
 3238
 3239
 3240
 3241
 3242
 3243
 3244
 3245
 3246
 3247
 3248
 3249
 3250
 3251
 3252
 3253
 3254
 3255
 3256
 3257
 3258
 3259
 3260
 3261
 3262
 3263
 3264
 3265
 3266
 3267
 3268
 3269
 3270
 3271
 3272
 3273
 3274
 3275
 3276
 3277
 3278
 3279
 3280
 3281
 3282
 3283
 3284
 3285
 3286
 3287
 3288
 3289
 3290
 3291
 3292
 3293
 3294
 3295
 3296
 3297
 3298
 3299
 3300
 3301
 3302
 3303
 3304
 3305
 3306
 3307
 3308
 3309
 3310
 3311
 3312
 3313
 3314
 3315
 3316
 3317
 3318
 3319
 3320
 3321
 3322
 3323
 3324
 3325
 3326
 3327
 3328
 3329
 3330
 3331
 3332
 3333
 3334
 3335
 3336
 3337
 3338
 3339
 3340
 3341
 3342
 3343
 3344
 3345
 3346
 3347
 3348
 3349
 3350
 3351
 3352
 3353
 3354
 3355
 3356
 3357
 3358
 3359
 3360
 3361
 3362
 3363
 3364
 3365
 3366
 3367
 3368
 3369
 3370
 3371
 3372
 3373
 3374
 3375
 3376
 3377
 3378
 3379
 3380
 3381
 3382
 3383
 3384
 3385
 3386
 3387
 3388
 3389
 3390
 3391
 3392
 3393
 3394
 3395
 3396
 3397
 3398
 3399
 3400
 3401
 3402
 3403
 3404
 3405
 3406
 3407
 3408
 3409
 3410
 3411
 3412
 3413
 3414
 3415
 3416
 3417
 3418
 3419
 3420
 3421
 3422
 3423
 3424
 3425
 3426
 3427
 3428
 3429
 3430
 3431
 3432
 3433
 3434
 3435
 3436
 3437
 3438
 3439
 3440
 3441
 3442
 3443
 3444
 3445
 3446
 3447
 3448
 3449
 3450
 3451
 3452
 3453
 3454
 3455
 3456
 3457
 3458
 3459
 3460
 3461
 3462
 3463
 3464
 3465
 3466
 3467
 3468
 3469
 3470
 3471
 3472
 3473
 3474
 3475
 3476
 3477
 3478
 3479
 3480
 3481
 3482
 3483
 3484
 3485
 3486
 3487
 3488
 3489
 3490
 3491
 3492
 3493
 3494
 3495
 3496
 3497
 3498
 3499
 3500
 3501
 3502
 3503
 3504
 3505
 3506
 3507
 3508
 3509
 3510
 3511
 3512
 3513
 3514
 3515
 3516
 3517
 3518
 3519
 3520
 3521
 3522
 3523
 3524
 3525
 3526
 3527
 3528
 3529
 3530
 3531
 3532
 3533
 3534
 3535
 3536
 3537
 3538
 3539
 3540
 3541
 3542
 3543
 3544
 3545
 3546
 3547
 3548
 3549
 3550
 3551
 3552
 3553
 3554
 3555
 3556
 3557
 3558
 3559
 3560
 3561
 3562
 3563
 3564
 3565
 3566
 3567
 3568
 3569
 3570
 3571
 3572
 3573
 3574
 3575
 3576
 3577
 3578
 3579
 3580
 3581
 3582
 3583
 3584
 3585
 3586
 3587
 3588
 3589
 3590
 3591
 3592
 3593
 3594
 3595
 3596
 3597
 3598
 3599
 3600
 3601
 3602
 3603
 3604
 3605
 3606
 3607
 3608
 3609
 3610
 3611
 3612
 3613
 3614
 3615
 3616
 3617
 3618
 3619
 3620
 3621
 3622
 3623
 3624
 3625
 3626
 3627
 3628
 3629
 3630
 3631
 3632
 3633
 3634
 3635
 3636
 3637
 3638
 3639
 3640
 3641
 3642
 3643
 3644
 3645
 3646
 3647
 3648
 3649
 3650
 3651
 3652
 3653
 3654
 3655
 3656
 3657
 3658
 3659
 3660
 3661
 3662
 3663
 3664
 3665
 3666
 3667
 3668
 3669
 3670
 3671
 3672
 3673
 3674
 3675
 3676
 3677
 3678
 3679
 3680
 3681
 3682
 3683
 3684
 3685
 3686
 3687
 3688
 3689
 3690
 3691
 3692
 3693
 3694
 3695
 3696
 3697
 3698
 3699
 3700
 3701
 3702
 3703
 3704
 3705
 3706
 3707
 3708
 3709
 3710
 3711
 3712
 3713
 3714
 3715
 3716
 3717
 3718
 3719
 3720
 3721
 3722
 3723
 3724
 3725
 3726
 3727
 3728
 3729
 3730
 3731
 3732
 3733
 3734
 3735
 3736
 3737
 3738
 3739
 3740
 3741
 3742
 3743
 3744
 3745
 3746
 3747
 3748
 3749
 3750
 3751
 3752
 3753
 3754
 3755
 3756
 3757
 3758
 3759
 3760
 3761
 3762
 3763
 3764
 3765
 3766
 3767
 3768
 3769
 3770
 3771
 3772
 3773
 3774
 3775
 3776
 3777
 3778
 3779
 3780
 3781
 3782
 3783
 3784
 3785
 3786
 3787
 3788
 3789
 3790
 3791
 3792
 3793
 3794
 3795
 3796
 3797
 3798
 3799
 3800
 3801
 3802
 3803
 3804
 3805
 3806
 3807
 3808
 3809
 3810
 3811
 3812
 3813
 3814
 3815
 3816
 3817
 3818
 3819
 3820
 3821
 3822
 3823
 3824
 3825
 3826
 3827
 3828
 3829
 3830
 3831
 3832
 3833
 3834
 3835
 3836
 3837
 3838
 3839
 3840
 3841
 3842
 3843
 3844
 3845
 3846
 3847
 3848
 3849
 3850
 3851
 3852
 3853
 3854
 3855
 3856
 3857
 3858
 3859
 3860
 3861
 3862
 3863
 3864
 3865
 3866
 3867
 3868
 3869
 3870
 3871
 3872
 3873
 3874
 3875
 3876
 3877
 3878
 3879
 3880
 3881
 3882
 3883
 3884
 3885
 3886
 3887
 3888
 3889
 3890
 3891
 3892
 3893
 3894
 3895
 3896
 3897
 3898
 3899
 3900
 3901
 3902
 3903
 3904
 3905
 3906
 3907
 3908
 3909
 3910
 3911
 3912
 3913
 3914
 3915
 3916
 3917
 3918
 3919
 3920
 3921
 3922
 3923
 3924
 3925
 3926
 3927
 3928
 3929
 3930
 3931
 3932
 3933
 3934
 3935
 3936
 3937
 3938
 3939
 3940
 3941
 3942
 3943
 3944
 3945
 3946
 3947
 3948
 3949
 3950
 3951
 3952
 3953
 3954
 3955
 3956
 3957
 3958
 3959
 3960
 3961
 3962
 3963
 3964
 3965
 3966
 3967
 3968
 3969
 3970
 3971
 3972
 3973
 3974
 3975
 3976
 3977
 3978
 3979
 3980
 3981
 3982
 3983
 3984
 3985
 3986
 3987
 3988
 3989
 3990
 3991
 3992
 3993
 3994
 3995
 3996
 3997
 3998
 3999
 4000
 4001
 4002
 4003
 4004
 4005
 4006
 4007
 4008
 4009
 4010
 4011
 4012
 4013
 4014
 4015
 4016
 4017
 4018
 4019
 4020
 4021
 4022
 4023
 4024
 4025
 4026
 4027
 4028
 4029
 4030
 4031
 4032
 4033
 4034
 4035
 4036
 4037
 4038
 4039
 4040
 4041
 4042
 4043
 4044
 4045
 4046
 4047
 4048
 4049
 4050
 4051
 4052
 4053
 4054
 4055
 4056
 4057
 4058
 4059
 4060
 4061
 4062
 4063
 4064
 4065
 4066
 4067
 4068
 4069
 4070
 4071
 4072
 4073
 4074
 4075
 4076
 4077
 4078
 4079
 4080
 4081
 4082
 4083
 4084
 4085
 4086
 4087
 4088
 4089
 4090
 4091
 4092
 4093
 4094
 4095
 4096
 4097
 4098
 4099
 4100
 4101
 4102
 4103
 4104
 4105
 4106
 4107
 4108
 4109
 4110
 4111
 4112
 4113
 4114
 4115
 4116
 4117
 4118
 4119
 4120
 4121
 4122
 4123
 4124
 4125
 4126
 4127
 4128
 4129
 4130
 4131
 4132
 4133
 4134
 4135
 4136
 4137
 4138
 4139
 4140
 4141
 4142
 4143
 4144
 4145
 4146
 4147
 4148
 4149
 4150
 4151
 4152
 4153
 4154
 4155
 4156
 4157
 4158
 4159
 4160
 4161
 4162
 4163
 4164
 4165
 4166
 4167
 4168
 4169
 4170
 4171
 4172
 4173
 4174
 4175
 4176
 4177
 4178
 4179
 4180
 4181
 4182
 4183
 4184
 4185
 4186
 4187
 4188
 4189
 4190
 4191
 4192
 4193
 4194
 4195
 4196
 4197
 4198
 4199
 4200
 4201
 4202
 4203
 4204
 4205
 4206
 4207
 4208
 4209
 4210
 4211
 4212
 4213
 4214
 4215
 4216
 4217
 4218
 4219
 4220
 4221
 4222
 4223
 4224
 4225
 4226
 4227
 4228
 4229
 4230
 4231
 4232
 4233
 4234
 4235
 4236
 4237
 4238
 4239
 4240
 4241
 4242
 4243
 4244
 4245
 4246
 4247
 4248
 4249
 4250
 4251
 4252
 4253
 4254
 4255
 4256
 4257
 4258
 4259
 4260
 4261
 4262
 4263
 4264
 4265
 4266
 4267
 4268
 4269
 4270
 4271
 4272
 4273
 4274
 4275
 4276
 4277
 4278
 4279
 4280
 4281
 4282
 4283
 4284
 4285
 4286
 4287
 4288
 4289
 4290
 4291
 4292
 4293
 4294
 4295
 4296
 4297
 4298
 4299
 4300
 4301
 4302
 4303
 4304
 4305
 4306
 4307
 4308
 4309
 4310
 4311
 4312
 4313
 4314
 4315
 4316
 4317
 4318
 4319
 4320
 4321
 4322
 4323
 4324
 4325
 4326
 4327
 4328
 4329
 4330
 4331
 4332
 4333
 4334
 4335
 4336
 4337
 4338
 4339
 4340
 4341
 4342
 4343
 4344
 4345
 4346
 4347
 4348
 4349
 4350
 4351
 4352
 4353
 4354
 4355
 4356
 4357
 4358
 4359
 4360
 4361
 4362
 4363
 4364
 4365
 4366
 4367
 4368
 4369
 4370
 4371
 4372
 4373
 4374
 4375
 4376
 4377
 4378
 4379
 4380
 4381
 4382
 4383
 4384
 4385
 4386
 4387
 4388
 4389
 4390
 4391
 4392
 4393
 4394
 4395
 4396
 4397
 4398
 4399
 4400
 4401
 4402
 4403
 4404
 4405
 4406
 4407
 4408
 4409
 4410
 4411
 4412
 4413
 4414
 4415
 4416
 4417
 4418
 4419
 4420
 4421
 4422
 4423
 4424
 4425
 4426
 4427
 4428
 4429
 4430
 4431
 4432
 4433
 4434
 4435
 4436
 4437
 4438
 4439
 4440
 4441
 4442
 4443
 4444
 4445
 4446
 4447
 4448
 4449
 4450
 4451
 4452
 4453
 4454
 4455
 4456
 4457
 4458
 4459
 4460
 4461
 4462
 4463
 4464
 4465
 4466
 4467
 4468
 4469
 4470
 4471
 4472
 4473
 4474
 4475
 4476
 4477
 4478
 4479
 4480
 4481
 4482
 4483
 4484
 4485
 4486
 4487
 4488
 4489
 4490
 4491
 4492
 4493
 4494
 4495
 4496
 4497
 4498
 4499
 4500
 4501
 4502
 4503
 4504
 4505
 4506
 4507
 4508
 4509
 4510
 4511
 4512
 4513
 4514
 4515
 4516
 4517
 4518
 4519
 4520
 4521
 4522
 4523
 4524
 4525
 4526
 4527
 4528
 4529
 4530
 4531
 4532
 4533
 4534
 4535
 4536
 4537
 4538
 4539
 4540
 4541
 4542
 4543
 4544
 4545
 4546
 4547
 4548
 4549
 4550
 4551
 4552
 4553
 4554
 4555
 4556
 4557
 4558
 4559
 4560
 4561
 4562
 4563
 4564
 4565
 4566
 4567
 4568
 4569
 4570
 4571
 4572
 4573
 4574
 4575
 4576
 4577
 4578
 4579
 4580
 4581
 4582
 4583
 4584
 4585
 4586
 4587
 4588
 4589
 4590
 4591
 4592
 4593
 4594
 4595
 4596
 4597
 4598
 4599
 4600
 4601
 4602
 4603
 4604
 4605
 4606
 4607
 4608
 4609
 4610
 4611
 4612
 4613
 4614
 4615
 4616
 4617
 4618
 4619
 4620
 4621
 4622
 4623
 4624
 4625
 4626
 4627
 4628
 4629
 4630
 4631
 4632
 4633
 4634
 4635
 4636
 4637
 4638
 4639
 4640
 4641
 4642
 4643
 4644
 4645
 4646
 4647
 4648
 4649
 4650
 4651
 4652
 4653
 4654
 4655
 4656
 4657
 4658
 4659
 4660
 4661
 4662
 4663
 4664
 4665
 4666
 4667
 4668
 4669
 4670
 4671
 4672
 4673
 4674
 4675
 4676
 4677
 4678
 4679
 4680
 4681
 4682
 4683
 4684
 4685
 4686
 4687
 4688
 4689
 4690
 4691
 4692
 4693
 4694
 4695
 4696
 4697
 4698
 4699
 4700
 4701
 4702
 4703
 4704
 4705
 4706
 4707
 4708
 4709
 4710
 4711
 4712
 4713
 4714
 4715
 4716
 4717
 4718
 4719
 4720
 4721
 4722
 4723
 4724
 4725
 4726
 4727
 4728
 4729
 4730
 4731
 4732
 4733
 4734
 4735
 4736
 4737
 4738
 4739
 4740
 4741
 4742
 4743
 4744
 4745
 4746
 4747
 4748
 4749
 4750
 4751
 4752
 4753
 4754
 4755
 4756
 4757
 4758
 4759
 4760
 4761
 4762
 4763
 4764
 4765
 4766
 4767
 4768
 4769
 4770
 4771
 4772
 4773
 4774
 4775
 4776
 4777
 4778
 4779
 4780
 4781
 4782
 4783
 4784
 4785
 4786
 4787
 4788
 4789
 4790
 4791
 4792
 4793
 4794
 4795
 4796
 4797
 4798
 4799
 4800
 4801
 4802
 4803
 4804
 4805
 4806
 4807
 4808
 4809
 4810
 4811
 4812
 4813
 4814
 4815
 4816
 4817
 4818
 4819
 4820
 4821
 4822
 4823
 4824
 4825
 4826
 4827
 4828
 4829
 4830
 4831
 4832
 4833
 4834
 4835
 4836
 4837
 4838
 4839
 4840
 4841
 4842
 4843
 4844
 4845
 4846
 4847
 4848
 4849
 4850
 4851
 4852
 4853
 4854
 4855
 4856
 4857
 4858
 4859
 4860
 4861
 4862
 4863
 4864
 4865
 4866
 4867
 4868
 4869
 4870
 4871
 4872
 4873
 4874
 4875
 4876
 4877
 4878
 4879
 4880
 4881
 4882
 4883
 4884
 4885
 4886
 4887
 4888
 4889
 4890
 4891
 4892
 4893
 4894
 4895
 4896
 4897
 4898
 4899
 4900
 4901
 4902
 4903
 4904
 4905
 4906
 4907
 4908
 4909
 4910
 4911
 4912
 4913
 4914
 4915
 4916
 4917
 4918
 4919
 4920
 4921
 4922
 4923
 4924
 4925
 4926
 4927
 4928
 4929
 4930
 4931
 4932
 4933
 4934
 4935
 4936
 4937
 4938
 4939
 4940
 4941
 4942
 4943
 4944
 4945
 4946
 4947
 4948
 4949
 4950
 4951
 4952
 4953
 4954
 4955
 4956
 4957
 4958
 4959
 4960
 4961
 4962
 4963
 4964
 4965
 4966
 4967
 4968
 4969
 4970
 4971
 4972
 4973
 4974
 4975
 4976
 4977
 4978
 4979
 4980
 4981
 4982
 4983
 4984
 4985
 4986
 4987
 4988
 4989
 4990
 4991
 4992
 4993
 4994
 4995
 4996
 4997
 4998
 4999
 5000
 5001
 5002
 5003
 5004
 5005
 5006
 5007
 5008
 5009
 5010
 5011
 5012
 5013
 5014
 5015
 5016
 5017
 5018
 5019
 5020
 5021
 5022
 5023
 5024
 5025
 5026
 5027
 5028
 5029
 5030
 5031
 5032
 5033
 5034
 5035
 5036
 5037
 5038
 5039
 5040
 5041
 5042
 5043
 5044
 5045
 5046
 5047
 5048
 5049
 5050
 5051
 5052
 5053
 5054
 5055
 5056
 5057
 5058
 5059
 5060
 5061
 5062
 5063
 5064
 5065
 5066
 5067
 5068
 5069
 5070
 5071
 5072
 5073
 5074
 5075
 5076
 5077
 5078
 5079
 5080
 5081
 5082
 5083
 5084
 5085
 5086
 5087
 5088
 5089
 5090
 5091
 5092
 5093
 5094
 5095
 5096
 5097
 5098
 5099
 5100
 5101
 5102
 5103
 5104
 5105
 5106
 5107
 5108
 5109
 5110
 5111
 5112
 5113
 5114
 5115
 5116
 5117
 5118
 5119
 5120
 5121
 5122
 5123
 5124
 5125
 5126
 5127
 5128
 5129
 5130
 5131
 5132
 5133
 5134
 5135
 5136
 5137
 5138
 5139
 5140
 5141
 5142
 5143
 5144
 5145
 5146
 5147
 5148
 5149
 5150
 5151
 5152
 5153
 5154
 5155
 5156
 5157
 5158
 5159
 5160
 5161
 5162
 5163
 5164
 5165
 5166
 5167
 5168
 5169
 5170
 5171
 5172
 5173
 5174
 5175
 5176
 5177
 5178
 5179
 5180
 5181
 5182
 5183
 5184
 5185
 5186
 5187
 5188
 5189
 5190
 5191
 5192
 5193
 5194
 5195
 5196
 5197
 5198
 5199
 5200
 5201
 5202
 5203
 5204
 5205
 5206
 5207
 5208
 5209
 5210
 5211
 5212
 5213
 5214
 5215
 5216
 5217
 5218
 5219
 5220
 5221
 5222
 5223
 5224
 5225
 5226
 5227
 5228
 5229
 5230
 5231
 5232
 5233
 5234
 5235
 5236
 5237
 5238
 5239
 5240
 5241
 5242
 5243
 5244
 5245
 5246
 5247
 5248
 5249
 5250
 5251
 5252
 5253
 5254
 5255
 5256
 5257
 5258
 5259
 5260
 5261
 5262
 5263
 5264
 5265
 5266
 5267
 5268
 5269
 5270
 5271
 5272
 5273
 5274
 5275
 5276
 5277
 5278
 5279
 5280
 5281
 5282
 5283
 5284
 5285
 5286
 5287
 5288
 5289
 5290
 5291
 5292
 5293
 5294
 5295
 5296
 5297
 5298
 5299
 5300
 5301
 5302
 5303
 5304
 5305
 5306
 5307
 5308
 5309
 5310
 5311
 5312
 5313
 5314
 5315
 5316
 5317
 5318
 5319
 5320
 5321
 5322
 5323
 5324
 5325
 5326
 5327
 5328
 5329
 5330
 5331
 5332
 5333
 5334
 5335
 5336
 5337
 5338
 5339
 5340
 5341
 5342
 5343
 5344
 5345
 5346
 5347
 5348
 5349
 5350
 5351
 5352
 5353
 5354
 5355
 5356
 5357
 5358
 5359
 5360
 5361
 5362
 5363
 5364
 5365
 5366
 5367
 5368
 5369
 5370
 5371
 5372
 5373
 5374
 5375
 5376
 5377
 5378
 5379
 5380
 5381
 5382
 5383
 5384
 5385
 5386
 5387
 5388
 5389
 5390
 5391
 5392
 5393
 5394
 5395
 5396
 5397
 5398
 5399
 5400
 5401
 5402
 5403
 5404
 5405
 5406
 5407
 5408
 5409
 5410
 5411
 5412
 5413
 5414
 5415
 5416
 5417
 5418
 5419
 5420
 5421
 5422
 5423
 5424
 5425
 5426
 5427
 5428
 5429
 5430
 5431
 5432
 5433
 5434
 5435
 5436
 5437
 5438
 5439
 5440
 5441
 5442
 5443
 5444
 5445
 5446
 5447
 5448
 5449
 5450
 5451
 5452
 5453
 5454
 5455
 5456
 5457
 5458
 5459
 5460
 5461
 5462
 5463
 5464
 5465
 5466
 5467
 5468
 5469
 5470
 5471
 5472
 5473
 5474
 5475
 5476
 5477
 5478
 5479
 5480
 5481
 5482
 5483
 5484
 5485
 5486
 5487
 5488
 5489
 5490
 5491
 5492
 5493
 5494
 5495
 5496
 5497
 5498
 5499
 5500
 5501
 5502
 5503
 5504
 5505
 5506
 5507
 5508
 5509
 5510
 5511
 5512
 5513
 5514
 5515
 5516
 5517
 5518
 5519
 5520
 5521
 5522
 5523
 5524
 5525
 5526
 5527
 5528
 5529
 5530
 5531
 5532
 5533
 5534
 5535
 5536
 5537
 5538
 5539
 5540
 5541
 5542
 5543
 5544
 5545
 5546
 5547
 5548
 5549
 5550
 5551
 5552
 5553
 5554
 5555
 5556
 5557
 5558
 5559
 5560
 5561
 5562
 5563
 5564
 5565
 5566
 5567
 5568
 5569
 5570
 5571
 5572
 5573
 5574
 5575
 5576
 5577
 5578
 5579
 5580
 5581
 5582
 5583
 5584
 5585
 5586
 5587
 5588
 5589
 5590
 5591
 5592
 5593
 5594
 5595
 5596
 5597
 5598
 5599
 5600
 5601
 5602
 5603
 5604
 5605
 5606
 5607
 5608
 5609
 5610
 5611
 5612
 5613
 5614
 5615
 5616
 5617
 5618
 5619
 5620
 5621
 5622
 5623
 5624
 5625
 5626
 5627
 5628
 5629
 5630
 5631
 5632
 5633
 5634
 5635
 5636
 5637
 5638
 5639
 5640
 5641
 5642
 5643
 5644
 5645
 5646
 5647
 5648
 5649
 5650
 5651
 5652
 5653
 5654
 5655
 5656
 5657
 5658
 5659
 5660
 5661
 5662
 5663
 5664
 5665
 5666
 5667
 5668
 5669
 5670
 5671
 5672
 5673
 5674
 5675
 5676
 5677
 5678
 5679
 5680
 5681
 5682
 5683
 5684
 5685
 5686
 5687
 5688
 5689
 5690
 5691
 5692
 5693
 5694
 5695
 5696
 5697
 5698
 5699
 5700
 5701
 5702
 5703
 5704
 5705
 5706
 5707
 5708
 5709
 5710
 5711
 5712
 5713
 5714
 5715
 5716
 5717
 5718
 5719
 5720
 5721
 5722
 5723
 5724
 5725
 5726
 5727
 5728
 5729
 5730
 5731
 5732
 5733
 5734
 5735
 5736
 5737
 5738
 5739
 5740
 5741
 5742
 5743
 5744
 5745
 5746
 5747
 5748
 5749
 5750
 5751
 5752
 5753
 5754
 5755
 5756
 5757
 5758
 5759
 5760
 5761
 5762
 5763
 5764
 5765
 5766
 5767
 5768
 5769
 5770
 5771
 5772
 5773
 5774
 5775
 5776
 5777
 5778
 5779
 5780
 5781
 5782
 5783
 5784
 5785
 5786
 5787
 5788
 5789
 5790
 5791
 5792
 5793
 5794
 5795
 5796
 5797
 5798
 5799
 5800
 5801
 5802
 5803
 5804
 5805
 5806
 5807
 5808
 5809
 5810
 5811
 5812
 5813
 5814
 5815
 5816
 5817
 5818
 5819
 5820
 5821
 5822
 5823
 5824
 5825
 5826
 5827
 5828
 5829
 5830
 5831
 5832
 5833
 5834
 5835
 5836
 5837
 5838
 5839
 5840
 5841
 5842
 5843
 5844
 5845
 5846
 5847
 5848
 5849
 5850
 5851
 5852
 5853
 5854
 5855
 5856
 5857
 5858
 5859
 5860
 5861
 5862
 5863
 5864
 5865
 5866
 5867
 5868
 5869
 5870
 5871
 5872
 5873
 5874
 5875
 5876
 5877
 5878
 5879
 5880
 5881
 5882
 5883
 5884
 5885
 5886
 5887
 5888
 5889
 5890
 5891
 5892
 5893
 5894
 5895
 5896
 5897
 5898
 5899
 5900
 5901
 5902
 5903
 5904
 5905
 5906
 5907
 5908
 5909
 5910
 5911
 5912
 5913
 5914
 5915
 5916
 5917
 5918
 5919
 5920
 5921
 5922
 5923
 5924
 5925
 5926
 5927
 5928
 5929
 5930
 5931
 5932
 5933
 5934
 5935
 5936
 5937
 5938
 5939
 5940
 5941
 5942
 5943
 5944
 5945
 5946
 5947
 5948
 5949
 5950
 5951
 5952
 5953
 5954
 5955
 5956
 5957
 5958
 5959
 5960
 5961
 5962
 5963
 5964
 5965
 5966
 5967
 5968
 5969
 5970
 5971
 5972
 5973
 5974
 5975
 5976
 5977
 5978
 5979
 5980
 5981
 5982
 5983
 5984
 5985
 5986
 5987
 5988
 5989
 5990
 5991
 5992
 5993
 5994
 5995
 5996
 5997
 5998
 5999
 6000
 6001
 6002
 6003
 6004
 6005
 6006
 6007
 6008
 6009
 6010
 6011
 6012
 6013
 6014
 6015
 6016
 6017
 6018
 6019
 6020
 6021
 6022
 6023
 6024
 6025
 6026
 6027
 6028
 6029
 6030
 6031
 6032
 6033
 6034
 6035
 6036
 6037
 6038
 6039
 6040
 6041
 6042
 6043
 6044
 6045
 6046
 6047
 6048
 6049
 6050
 6051
 6052
 6053
 6054
 6055
 6056
 6057
 6058
 6059
 6060
 6061
 6062
 6063
 6064
 6065
 6066
 6067
 6068
 6069
 6070
 6071
 6072
 6073
 6074
 6075
 6076
 6077
 6078
 6079
 6080
 6081
 6082
 6083
 6084
 6085
 6086
 6087
 6088
 6089
 6090
 6091
 6092
 6093
 6094
 6095
 6096
 6097
 6098
 6099
 6100
 6101
 6102
 6103
 6104
 6105
 6106
 6107
 6108
 6109
 6110
 6111
 6112
 6113
 6114
 6115
 6116
 6117
 6118
 6119
 6120
 6121
 6122
 6123
 6124
 6125
 6126
 6127
 6128
 6129
 6130
 6131
 6132
 6133
 6134
 6135
 6136
 6137
 6138
 6139
 6140
 6141
 6142
 6143
 6144
 6145
 6146
 6147
 6148
 6149
 6150
 6151
 6152
 6153
 6154
 6155
 6156
 6157
 6158
 6159
 6160
 6161
 6162
 6163
 6164
 6165
 6166
 6167
 6168
 6169
 6170
 6171
 6172
 6173
 6174
 6175
 6176
 6177
 6178
 6179
 6180
 6181
 6182
 6183
 6184
 6185
 6186
 6187
 6188
 6189
 6190
 6191
 6192
 6193
 6194
 6195
 6196
 6197
 6198
 6199
 6200
 6201
 6202
 6203
 6204
 6205
 6206
 6207
 6208
 6209
 6210
 6211
 6212
 6213
 6214
 6215
 6216
 6217
 6218
 6219
 6220
 6221
 6222
 6223
 6224
 6225
 6226
 6227
 6228
 6229
 6230
 6231
 6232
 6233
 6234
 6235
 6236
 6237
 6238
 6239
 6240
 6241
 6242
 6243
 6244
 6245
 6246
 6247
 6248
 6249
 6250
 6251
 6252
 6253
 6254
 6255
 6256
 6257
 6258
 6259
 6260
 6261
 6262
 6263
 6264
 6265
 6266
 6267
 6268
 6269
 6270
 6271
 6272
 6273
 6274
 6275
 6276
 6277
 6278
 6279
 6280
 6281
 6282
 6283
 6284
 6285
 6286
 6287
 6288
 6289
 6290
 6291
 6292
 6293
 6294
 6295
 6296
 6297
 6298
 6299
 6300
 6301
 6302
 6303
 6304
 6305
 6306
 6307
 6308
 6309
 6310
 6311
 6312
 6313
 6314
 6315
 6316
 6317
 6318
 6319
 6320
 6321
 6322
 6323
 6324
 6325
 6326
 6327
 6328
 6329
 6330
 6331
 6332
 6333
 6334
 6335
 6336
 6337
 6338
 6339
 6340
 6341
 6342
 6343
 6344
 6345
 6346
 6347
 6348
 6349
 6350
 6351
 6352
 6353
 6354
 6355
 6356
 6357
 6358
 6359
 6360
 6361
 6362
 6363
 6364
 6365
 6366
 6367
 6368
 6369
 6370
 6371
 6372
 6373
 6374
 6375
 6376
 6377
 6378
 6379
 6380
 6381
 6382
 6383
 6384
 6385
 6386
 6387
 6388
 6389
 6390
 6391
 6392
 6393
 6394
 6395
 6396
 6397
 6398
 6399
 6400
 6401
 6402
 6403
 6404
 6405
 6406
 6407
 6408
 6409
 6410
 6411
 6412
 6413
 6414
 6415
 6416
 6417
 6418
 6419
 6420
 6421
 6422
 6423
 6424
 6425
 6426
 6427
 6428
 6429
 6430
 6431
 6432
 6433
 6434
 6435
 6436
 6437
 6438
 6439
 6440
 6441
 6442
 6443
 6444
 6445
 6446
 6447
 6448
 6449
 6450
 6451
 6452
 6453
 6454
 6455
 6456
 6457
 6458
 6459
 6460
 6461
 6462
 6463
 6464
 6465
 6466
 6467
 6468
 6469
 6470
 6471
 6472
 6473
 6474
 6475
 6476
 6477
 6478
 6479
 6480
 6481
 6482
 6483
 6484
 6485
 6486
 6487
 6488
 6489
 6490
 6491
 6492
 6493
 6494
 6495
 6496
 6497
 6498
 6499
 6500
 6501
 6502
 6503
 6504
 6505
 6506
 6507
 6508
 6509
 6510
 6511
 6512
 6513
 6514
 6515
 6516
 6517
 6518
 6519
 6520
 6521
 6522
 6523
 6524
 6525
 6526
 6527
 6528
 6529
 6530
 6531
 6532
 6533
 6534
 6535
 6536
 6537
 6538
 6539
 6540
 6541
 6542
 6543
 6544
 6545
 6546
 6547
 6548
 6549
 6550
 6551
 6552
 6553
 6554
 6555
 6556
 6557
 6558
 6559
 6560
 6561
 6562
 6563
 6564
 6565
 6566
 6567
 6568
 6569
 6570
 6571
 6572
 6573
 6574
 6575
 6576
 6577
 6578
 6579
 6580
 6581
 6582
 6583
 6584
 6585
 6586
 6587
 6588
 6589
 6590
 6591
 6592
 6593
 6594
 6595
 6596
 6597
 6598
 6599
 6600
 6601
 6602
 6603
 6604
 6605
 6606
 6607
 6608
 6609
 6610
 6611
 6612
 6613
 6614
 6615
 6616
 6617
 6618
 6619
 6620
 6621
 6622
 6623
 6624
 6625
 6626
 6627
 6628
 6629
 6630
 6631
 6632
 6633
 6634
 6635
 6636
 6637
 6638
 6639
 6640
 6641
 6642
 6643
 6644
 6645
 6646
 6647
 6648
 6649
 6650
 6651
 6652
 6653
 6654
 6655
 6656
 6657
 6658
 6659
 6660
 6661
 6662
 6663
 6664
 6665
 6666
 6667
 6668
 6669
 6670
 6671
 6672
 6673
 6674
 6675
 6676
 6677
 6678
 6679
 6680
 6681
 6682
 6683
 6684
 6685
 6686
 6687
 6688
 6689
 6690
 6691
 6692
 6693
 6694
 6695
 6696
 6697
 6698
 6699
 6700
 6701
 6702
 6703
 6704
 6705
 6706
 6707
 6708
 6709
 6710
 6711
 6712
 6713
 6714
 6715
 6716
 6717
 6718
 6719
 6720
 6721
 6722
 6723
 6724
 6725
 6726
 6727
 6728
 6729
 6730
 6731
 6732
 6733
 6734
 6735
 6736
 6737
 6738
 6739
 6740
 6741
 6742
 6743
 6744
 6745
 6746
 6747
 6748
 6749
 6750
 6751
 6752
 6753
 6754
 6755
 6756
 6757
 6758
 6759
 6760
 6761
 6762
 6763
 6764
 6765
 6766
 6767
 6768
 6769
 6770
 6771
 6772
 6773
 6774
 6775
 6776
 6777
 6778
 6779
 6780
 6781
 6782
 6783
 6784
 6785
 6786
 6787
 6788
 6789
 6790
 6791
 6792
 6793
 6794
 6795
 6796
 6797
 6798
 6799
 6800
 6801
 6802
 6803
 6804
 6805
 6806
 6807
 6808
 6809
 6810
 6811
 6812
 6813
 6814
 6815
 6816
 6817
 6818
 6819
 6820
 6821
 6822
 6823
 6824
 6825
 6826
 6827
 6828
 6829
 6830
 6831
 6832
 6833
 6834
 6835
 6836
 6837
 6838
 6839
 6840
 6841
 6842
 6843
 6844
 6845
 6846
 6847
 6848
 6849
 6850
 6851
 6852
 6853
 6854
 6855
 6856
 6857
 6858
 6859
 6860
 6861
 6862
 6863
 6864
 6865
 6866
 6867
 6868
 6869
 6870
 6871
 6872
 6873
 6874
 6875
 6876
 6877
 6878
 6879
 6880
 6881
 6882
 6883
 6884
 6885
 6886
 6887
 6888
 6889
 6890
 6891
 6892
 6893
 6894
 6895
 6896
 6897
 6898
 6899
 6900
 6901
 6902
 6903
 6904
 6905
 6906
 6907
 6908
 6909
 6910
 6911
 6912
 6913
 6914
 6915
 6916
 6917
 6918
 6919
 6920
 6921
 6922
 6923
 6924
 6925
 6926
 6927
 6928
 6929
 6930
 6931
 6932
 6933
 6934
 6935
 6936
 6937
 6938
 6939
 6940
 6941
 6942
 6943
 6944
 6945
 6946
 6947
 6948
 6949
 6950
 6951
 6952
 6953
 6954
 6955
 6956
 6957
 6958
 6959
 6960
 6961
 6962
 6963
 6964
 6965
 6966
 6967
 6968
 6969
 6970
 6971
 6972
 6973
 6974
 6975
 6976
 6977
 6978
 6979
 6980
 6981
 6982
 6983
 6984
 6985
 6986
 6987
 6988
 6989
 6990
 6991
 6992
 6993
 6994
 6995
 6996
 6997
 6998
 6999
 7000
 7001
 7002
 7003
 7004
 7005
 7006
 7007
 7008
 7009
 7010
 7011
 7012
 7013
 7014
 7015
 7016
 7017
 7018
 7019
 7020
 7021
 7022
 7023
 7024
 7025
 7026
 7027
 7028
 7029
 7030
 7031
 7032
 7033
 7034
 7035
 7036
 7037
 7038
 7039
 7040
 7041
 7042
 7043
 7044
 7045
 7046
 7047
 7048
 7049
 7050
 7051
 7052
 7053
 7054
 7055
 7056
 7057
 7058
 7059
 7060
 7061
 7062
 7063
 7064
 7065
 7066
 7067
 7068
 7069
 7070
 7071
 7072
 7073
 7074
 7075
 7076
 7077
 7078
 7079
 7080
 7081
 7082
 7083
 7084
 7085
 7086
 7087
 7088
 7089
 7090
 7091
 7092
 7093
 7094
 7095
 7096
 7097
 7098
 7099
 7100
 7101
 7102
 7103
 7104
 7105
 7106
 7107
 7108
 7109
 7110
 7111
 7112
 7113
 7114
 7115
 7116
 7117
 7118
 7119
 7120
 7121
 7122
 7123
 7124
 7125
 7126
 7127
 7128
 7129
 7130
 7131
 7132
 7133
 7134
 7135
 7136
 7137
 7138
 7139
 7140
 7141
 7142
 7143
 7144
 7145
 7146
 7147
 7148
 7149
 7150
 7151
 7152
 7153
 7154
 7155
 7156
 7157
 7158
 7159
 7160
 7161
 7162
 7163
 7164
 7165
 7166
 7167
 7168
 7169
 7170
 7171
 7172
 7173
 7174
 7175
 7176
 7177
 7178
 7179
 7180
 7181
 7182
 7183
 7184
 7185
 7186
 7187
 7188
 7189
 7190
 7191
 7192
 7193
 7194
 7195
 7196
 7197
 7198
 7199
 7200
 7201
 7202
 7203
 7204
 7205
 7206
 7207
 7208
 7209
 7210
 7211
 7212
 7213
 7214
 7215
 7216
 7217
 7218
 7219
 7220
 7221
 7222
 7223
 7224
 7225
 7226
 7227
 7228
 7229
 7230
 7231
 7232
 7233
 7234
 7235
 7236
 7237
 7238
 7239
 7240
 7241
 7242
 7243
 7244
 7245
 7246
 7247
 7248
 7249
 7250
 7251
 7252
 7253
 7254
 7255
 7256
 7257
 7258
 7259
 7260
 7261
 7262
 7263
 7264
 7265
 7266
 7267
 7268
 7269
 7270
 7271
 7272
 7273
 7274
 7275
 7276
 7277
 7278
 7279
 7280
 7281
 7282
 7283
 7284
 7285
 7286
 7287
 7288
 7289
 7290
 7291
 7292
 7293
 7294
 7295
 7296
 7297
 7298
 7299
 7300
 7301
 7302
 7303
 7304
 7305
 7306
 7307
 7308
 7309
 7310
 7311
 7312
 7313
 7314
 7315
 7316
 7317
 7318
 7319
 7320
 7321
 7322
 7323
 7324
 7325
 7326
 7327
 7328
 7329
 7330
 7331
 7332
 7333
 7334
 7335
 7336
 7337
 7338
 7339
 7340
 7341
 7342
 7343
 7344
 7345
 7346
 7347
 7348
 7349
 7350
 7351
 7352
 7353
 7354
 7355
 7356
 7357
 7358
 7359
 7360
 7361
 7362
 7363
 7364
 7365
 7366
 7367
 7368
 7369
 7370
 7371
 7372
 7373
 7374
 7375
 7376
 7377
 7378
 7379
 7380
 7381
 7382
 7383
 7384
 7385
 7386
 7387
 7388
 7389
 7390
 7391
 7392
 7393
 7394
 7395
 7396
 7397
 7398
 7399
 7400
 7401
 7402
 7403
 7404
 7405
 7406
 7407
 7408
 7409
 7410
 7411
 7412
 7413
 7414
 7415
 7416
 7417
 7418
 7419
 7420
 7421
 7422
 7423
 7424
 7425
 7426
 7427
 7428
 7429
 7430
 7431
 7432
 7433
 7434
 7435
 7436
 7437
 7438
 7439
 7440
 7441
 7442
 7443
 7444
 7445
 7446
 7447
 7448
 7449
 7450
 7451
 7452
 7453
 7454
 7455
 7456
 7457
 7458
 7459
 7460
 7461
 7462
 7463
 7464
 7465
 7466
 7467
 7468
 7469
 7470
 7471
 7472
 7473
 7474
 7475
 7476
 7477
 7478
 7479
 7480
 7481
 7482
 7483
 7484
 7485
 7486
 7487
 7488
 7489
 7490
 7491
 7492
 7493
 7494
 7495
 7496
 7497
 7498
 7499
 7500
 7501
 7502
 7503
 7504
 7505
 7506
 7507
 7508
 7509
 7510
 7511
 7512
 7513
 7514
 7515
 7516
 7517
 7518
 7519
 7520
 7521
 7522
 7523
 7524
 7525
 7526
 7527
 7528
 7529
 7530
 7531
 7532
 7533
 7534
 7535
 7536
 7537
 7538
 7539
 7540
 7541
 7542
 7543
 7544
 7545
 7546
 7547
 7548
 7549
 7550
 7551
 7552
 7553
 7554
 7555
 7556
 7557
 7558
 7559
 7560
 7561
 7562
 7563
 7564
 7565
 7566
 7567
 7568
 7569
 7570
 7571
 7572
 7573
 7574
 7575
 7576
 7577
 7578
 7579
 7580
 7581
 7582
 7583
 7584
 7585
 7586
 7587
 7588
 7589
 7590
 7591
 7592
 7593
 7594
 7595
 7596
 7597
 7598
 7599
 7600
 7601
 7602
 7603
 7604
 7605
 7606
 7607
 7608
 7609
 7610
 7611
 7612
 7613
 7614
 7615
 7616
 7617
 7618
 7619
 7620
 7621
 7622
 7623
 7624
 7625
 7626
 7627
 7628
 7629
 7630
 7631
 7632
 7633
 7634
 7635
 7636
 7637
 7638
 7639
 7640
 7641
 7642
 7643
 7644
 7645
 7646
 7647
 7648
 7649
 7650
 7651
 7652
 7653
 7654
 7655
 7656
 7657
 7658
 7659
 7660
 7661
 7662
 7663
 7664
 7665
 7666
 7667
 7668
 7669
 7670
 7671
 7672
 7673
 7674
 7675
 7676
 7677
 7678
 7679
 7680
 7681
 7682
 7683
 7684
 7685
 7686
 7687
 7688
 7689
 7690
 7691
 7692
 7693
 7694
 7695
 7696
 7697
 7698
 7699
 7700
 7701
 7702
 7703
 7704
 7705
 7706
 7707
 7708
 7709
 7710
 7711
 7712
 7713
 7714
 7715
 7716
 7717
 7718
 7719
 7720
 7721
 7722
 7723
 7724
 7725
 7726
 7727
 7728
 7729
 7730
 7731
 7732
 7733
 7734
 7735
 7736
 7737
 7738
 7739
 7740
 7741
 7742
 7743
 7744
 7745
 7746
 7747
 7748
 7749
 7750
 7751
 7752
 7753
 7754
 7755
 7756
 7757
 7758
 7759
 7760
 7761
 7762
 7763
 7764
 7765
 7766
 7767
 7768
 7769
 7770
 7771
 7772
 7773
 7774
 7775
 7776
 7777
 7778
 7779
 7780
 7781
 7782
 7783
 7784
 7785
 7786
 7787
 7788
 7789
 7790
 7791
 7792
 7793
 7794
 7795
 7796
 7797
 7798
 7799
 7800
 7801
 7802
 7803
 7804
 7805
 7806
 7807
 7808
 7809
 7810
 7811
 7812
 7813
 7814
 7815
 7816
 7817
 7818
 7819
 7820
 7821
 7822
 7823
 7824
 7825
 7826
 7827
 7828
 7829
 7830
 7831
 7832
 7833
 7834
 7835
 7836
 7837
 7838
 7839
 7840
 7841
 7842
 7843
 7844
 7845
 7846
 7847
 7848
 7849
 7850
 7851
 7852
 7853
 7854
 7855
 7856
 7857
 7858
 7859
 7860
 7861
 7862
 7863
 7864
 7865
 7866
 7867
 7868
 7869
 7870
 7871
 7872
 7873
 7874
 7875
 7876
 7877
 7878
 7879
 7880
 7881
 7882
 7883
 7884
 7885
 7886
 7887
 7888
 7889
 7890
 7891
 7892
 7893
 7894
 7895
 7896
 7897
 7898
 7899
 7900
 7901
 7902
 7903
 7904
 7905
 7906
 7907
 7908
 7909
 7910
 7911
 7912
 7913
 7914
 7915
 7916
 7917
 7918
 7919
 7920
 7921
 7922
 7923
 7924
 7925
 7926
 7927
 7928
 7929
 7930
 7931
 7932
 7933
 7934
 7935
 7936
 7937
 7938
 7939
 7940
 7941
 7942
 7943
 7944
 7945
 7946
 7947
 7948
 7949
 7950
 7951
 7952
 7953
 7954
 7955
 7956
 7957
 7958
 7959
 7960
 7961
 7962
 7963
 7964
 7965
 7966
 7967
 7968
 7969
 7970
 7971
 7972
 7973
 7974
 7975
 7976
 7977
 7978
 7979
 7980
 7981
 7982
 7983
 7984
 7985
 7986
 7987
 7988
 7989
 7990
 7991
 7992
 7993
 7994
 7995
 7996
 7997
 7998
 7999
 8000
 8001
 8002
 8003
 8004
 8005
 8006
 8007
 8008
 8009
 8010
 8011
 8012
 8013
 8014
 8015
 8016
 8017
 8018
 8019
 8020
 8021
 8022
 8023
 8024
 8025
 8026
 8027
 8028
 8029
 8030
 8031
 8032
 8033
 8034
 8035
 8036
 8037
 8038
 8039
 8040
 8041
 8042
 8043
 8044
 8045
 8046
 8047
 8048
 8049
 8050
 8051
 8052
 8053
 8054
 8055
 8056
 8057
 8058
 8059
 8060
 8061
 8062
 8063
 8064
 8065
 8066
 8067
 8068
 8069
 8070
 8071
 8072
 8073
 8074
 8075
 8076
 8077
 8078
 8079
 8080
 8081
 8082
 8083
 8084
 8085
 8086
 8087
 8088
 8089
 8090
 8091
 8092
 8093
 8094
 8095
 8096
 8097
 8098
 8099
 8100
 8101
 8102
 8103
 8104
 8105
 8106
 8107
 8108
 8109
 8110
 8111
 8112
 8113
 8114
 8115
 8116
 8117
 8118
 8119
 8120
 8121
 8122
 8123
 8124
 8125
 8126
 8127
 8128
 8129
 8130
 8131
 8132
 8133
 8134
 8135
 8136
 8137
 8138
 8139
 8140
 8141
 8142
 8143
 8144
 8145
 8146
 8147
 8148
 8149
 8150
 8151
 8152
 8153
 8154
 8155
 8156
 8157
 8158
 8159
 8160
 8161
 8162
 8163
 8164
 8165
 8166
 8167
 8168
 8169
 8170
 8171
 8172
 8173
 8174
 8175
 8176
 8177
 8178
 8179
 8180
 8181
 8182
 8183
 8184
 8185
 8186
 8187
 8188
 8189
 8190
 8191
 8192
 8193
 8194
 8195
 8196
 8197
 8198
 8199
 8200
 8201
 8202
 8203
 8204
 8205
 8206
 8207
 8208
 8209
 8210
 8211
 8212
 8213
 8214
 8215
 8216
 8217
 8218
 8219
 8220
 8221
 8222
 8223
 8224
 8225
 8226
 8227
 8228
 8229
 8230
 8231
 8232
 8233
 8234
 8235
 8236
 8237
 8238
 8239
 8240
 8241
 8242
 8243
 8244
 8245
 8246
 8247
 8248
 8249
 8250
 8251
 8252
 8253
 8254
 8255
 8256
 8257
 8258
 8259
 8260
 8261
 8262
 8263
 8264
 8265
 8266
 8267
 8268
 8269
 8270
 8271
 8272
 8273
 8274
 8275
 8276
 8277
 8278
 8279
 8280
 8281
 8282
 8283
 8284
 8285
 8286
 8287
 8288
 8289
 8290
 8291
 8292
 8293
 8294
 8295
 8296
 8297
 8298
 8299
 8300
 8301
 8302
 8303
 8304
 8305
 8306
 8307
 8308
 8309
 8310
 8311
 8312
 8313
 8314
 8315
 8316
 8317
 8318
 8319
 8320
 8321
 8322
 8323
 8324
 8325
 8326
 8327
 8328
 8329
 8330
 8331
 8332
 8333
 8334
 8335
 8336
 8337
 8338
 8339
 8340
 8341
 8342
 8343
 8344
 8345
 8346
 8347
 8348
 8349
 8350
 8351
 8352
 8353
 8354
 8355
 8356
 8357
 8358
 8359
 8360
 8361
 8362
 8363
 8364
 8365
 8366
 8367
 8368
 8369
 8370
 8371
 8372
 8373
 8374
 8375
 8376
 8377
 8378
 8379
 8380
 8381
 8382
 8383
 8384
 8385
 8386
 8387
 8388
 8389
 8390
 8391
 8392
 8393
 8394
 8395
 8396
 8397
 8398
 8399
 8400
 8401
 8402
 8403
 8404
 8405
 8406
 8407
 8408
 8409
 8410
 8411
 8412
 8413
 8414
 8415
 8416
 8417
 8418
 8419
 8420
 8421
 8422
 8423
 8424
 8425
 8426
 8427
 8428
 8429
 8430
 8431
 8432
 8433
 8434
 8435
 8436
 8437
 8438
 8439
 8440
 8441
 8442
 8443
 8444
 8445
 8446
 8447
 8448
 8449
 8450
 8451
 8452
 8453
 8454
 8455
 8456
 8457
 8458
 8459
 8460
 8461
 8462
 8463
 8464
 8465
 8466
 8467
 8468
 8469
 8470
 8471
 8472
 8473
 8474
 8475
 8476
 8477
 8478
 8479
 8480
 8481
 8482
 8483
 8484
 8485
 8486
 8487
 8488
 8489
 8490
 8491
 8492
 8493
 8494
 8495
 8496
 8497
 8498
 8499
 8500
 8501
 8502
 8503
 8504
 8505
 8506
 8507
 8508
 8509
 8510
 8511
 8512
 8513
 8514
 8515
 8516
 8517
 8518
 8519
 8520
 8521
 8522
 8523
 8524
 8525
 8526
 8527
 8528
 8529
 8530
 8531
 8532
 8533
 8534
 8535
 8536
 8537
 8538
 8539
 8540
 8541
 8542
 8543
 8544
 8545
 8546
 8547
 8548
 8549
 8550
 8551
 8552
 8553
 8554
 8555
 8556
 8557
 8558
 8559
 8560
 8561
 8562
 8563
 8564
 8565
 8566
 8567
 8568
 8569
 8570
 8571
 8572
 8573
 8574
 8575
 8576
 8577
 8578
 8579
 8580
 8581
 8582
 8583
 8584
 8585
 8586
 8587
 8588
 8589
 8590
 8591
 8592
 8593
 8594
 8595
 8596
 8597
 8598
 8599
 8600
 8601
 8602
 8603
 8604
 8605
 8606
 8607
 8608
 8609
 8610
 8611
 8612
 8613
 8614
 8615
 8616
 8617
 8618
 8619
 8620
 8621
 8622
 8623
 8624
 8625
 8626
 8627
 8628
 8629
 8630
 8631
 8632
 8633
 8634
 8635
 8636
 8637
 8638
 8639
 8640
 8641
 8642
 8643
 8644
 8645
 8646
 8647
 8648
 8649
 8650
 8651
 8652
 8653
 8654
 8655
 8656
 8657
 8658
 8659
 8660
 8661
 8662
 8663
 8664
 8665
 8666
 8667
 8668
 8669
 8670
 8671
 8672
 8673
 8674
 8675
 8676
 8677
 8678
 8679
 8680
 8681
 8682
 8683
 8684
 8685
 8686
 8687
 8688
 8689
 8690
 8691
 8692
 8693
 8694
 8695
 8696
 8697
 8698
 8699
 8700
 8701
 8702
 8703
 8704
 8705
 8706
 8707
 8708
 8709
 8710
 8711
 8712
 8713
 8714
 8715
 8716
 8717
 8718
 8719
 8720
 8721
 8722
 8723
 8724
 8725
 8726
 8727
 8728
 8729
 8730
 8731
 8732
 8733
 8734
 8735
 8736
 8737
 8738
 8739
 8740
 8741
 8742
 8743
 8744
 8745
 8746
 8747
 8748
 8749
 8750
 8751
 8752
 8753
 8754
 8755
 8756
 8757
 8758
 8759
 8760
 8761
 8762
 8763
 8764
 8765
 8766
 8767
 8768
 8769
 8770
 8771
 8772
 8773
 8774
 8775
 8776
 8777
 8778
 8779
 8780
 8781
 8782
 8783
 8784
 8785
 8786
 8787
 8788
 8789
 8790
 8791
 8792
 8793
 8794
 8795
 8796
 8797
 8798
 8799
 8800
 8801
 8802
 8803
 8804
 8805
 8806
 8807
 8808
 8809
 8810
 8811
 8812
 8813
 8814
 8815
 8816
 8817
 8818
 8819
 8820
 8821
 8822
 8823
 8824
 8825
 8826
 8827
 8828
 8829
 8830
 8831
 8832
 8833
 8834
 8835
 8836
 8837
 8838
 8839
 8840
 8841
 8842
 8843
 8844
 8845
 8846
 8847
 8848
 8849
 8850
 8851
 8852
 8853
 8854
 8855
 8856
 8857
 8858
 8859
 8860
 8861
 8862
 8863
 8864
 8865
 8866
 8867
 8868
 8869
 8870
 8871
 8872
 8873
 8874
 8875
 8876
 8877
 8878
 8879
 8880
 8881
 8882
 8883
 8884
 8885
 8886
 8887
 8888
 8889
 8890
 8891
 8892
 8893
 8894
 8895
 8896
 8897
 8898
 8899
 8900
 8901
 8902
 8903
 8904
 8905
 8906
 8907
 8908
 8909
 8910
 8911
 8912
 8913
 8914
 8915
 8916
 8917
 8918
 8919
 8920
 8921
 8922
 8923
 8924
 8925
 8926
 8927
 8928
 8929
 8930
 8931
 8932
 8933
 8934
 8935
 8936
 8937
 8938
 8939
 8940
 8941
 8942
 8943
 8944
 8945
 8946
 8947
 8948
 8949
 8950
 8951
 8952
 8953
 8954
 8955
 8956
 8957
 8958
 8959
 8960
 8961
 8962
 8963
 8964
 8965
 8966
 8967
 8968
 8969
 8970
 8971
 8972
 8973
 8974
 8975
 8976
 8977
 8978
 8979
 8980
 8981
 8982
 8983
 8984
 8985
 8986
 8987
 8988
 8989
 8990
 8991
 8992
 8993
 8994
 8995
 8996
 8997
 8998
 8999
 9000
 9001
 9002
 9003
 9004
 9005
 9006
 9007
 9008
 9009
 9010
 9011
 9012
 9013
 9014
 9015
 9016
 9017
 9018
 9019
 9020
 9021
 9022
 9023
 9024
 9025
 9026
 9027
 9028
 9029
 9030
 9031
 9032
 9033
 9034
 9035
 9036
 9037
 9038
 9039
 9040
 9041
 9042
 9043
 9044
 9045
 9046
 9047
 9048
 9049
 9050
 9051
 9052
 9053
 9054
 9055
 9056
 9057
 9058
 9059
 9060
 9061
 9062
 9063
 9064
 9065
 9066
 9067
 9068
 9069
 9070
 9071
 9072
 9073
 9074
 9075
 9076
 9077
 9078
 9079
 9080
 9081
 9082
 9083
 9084
 9085
 9086
 9087
 9088
 9089
 9090
 9091
 9092
 9093
 9094
 9095
 9096
 9097
 9098
 9099
 9100
 9101
 9102
 9103
 9104
 9105
 9106
 9107
 9108
 9109
 9110
 9111
 9112
 9113
 9114
 9115
 9116
 9117
 9118
 9119
 9120
 9121
 9122
 9123
 9124
 9125
 9126
 9127
 9128
 9129
 9130
 9131
 9132
 9133
 9134
 9135
 9136
 9137
 9138
 9139
 9140
 9141
 9142
 9143
 9144
 9145
 9146
 9147
 9148
 9149
 9150
 9151
 9152
 9153
 9154
 9155
 9156
 9157
 9158
 9159
 9160
 9161
 9162
 9163
 9164
 9165
 9166
 9167
 9168
 9169
 9170
 9171
 9172
 9173
 9174
 9175
 9176
 9177
 9178
 9179
 9180
 9181
 9182
 9183
 9184
 9185
 9186
 9187
 9188
 9189
 9190
 9191
 9192
 9193
 9194
 9195
 9196
 9197
 9198
 9199
 9200
 9201
 9202
 9203
 9204
 9205
 9206
 9207
 9208
 9209
 9210
 9211
 9212
 9213
 9214
 9215
 9216
 9217
 9218
 9219
 9220
 9221
 9222
 9223
 9224
 9225
 9226
 9227
 9228
 9229
 9230
 9231
 9232
 9233
 9234
 9235
 9236
 9237
 9238
 9239
 9240
 9241
 9242
 9243
 9244
 9245
 9246
 9247
 9248
 9249
 9250
 9251
 9252
 9253
 9254
 9255
 9256
 9257
 9258
 9259
 9260
 9261
 9262
 9263
 9264
 9265
 9266
 9267
 9268
 9269
 9270
 9271
 9272
 9273
 9274
 9275
 9276
 9277
 9278
 9279
 9280
 9281
 9282
 9283
 9284
 9285
 9286
 9287
 9288
 9289
 9290
 9291
 9292
 9293
 9294
 9295
 9296
 9297
 9298
 9299
 9300
 9301
 9302
 9303
 9304
 9305
 9306
 9307
 9308
 9309
 9310
 9311
 9312
 9313
 9314
 9315
 9316
 9317
 9318
 9319
 9320
 9321
 9322
 9323
 9324
 9325
 9326
 9327
 9328
 9329
 9330
 9331
 9332
 9333
 9334
 9335
 9336
 9337
 9338
 9339
 9340
 9341
 9342
 9343
 9344
 9345
 9346
 9347
 9348
 9349
 9350
 9351
 9352
 9353
 9354
 9355
 9356
 9357
 9358
 9359
 9360
 9361
 9362
 9363
 9364
 9365
 9366
 9367
 9368
 9369
 9370
 9371
 9372
 9373
 9374
 9375
 9376
 9377
 9378
 9379
 9380
 9381
 9382
 9383
 9384
 9385
 9386
 9387
 9388
 9389
 9390
 9391
 9392
 9393
 9394
 9395
 9396
 9397
 9398
 9399
 9400
 9401
 9402
 9403
 9404
 9405
 9406
 9407
 9408
 9409
 9410
 9411
 9412
 9413
 9414
 9415
 9416
 9417
 9418
 9419
 9420
 9421
 9422
 9423
 9424
 9425
 9426
 9427
 9428
 9429
 9430
 9431
 9432
 9433
 9434
 9435
 9436
 9437
 9438
 9439
 9440
 9441
 9442
 9443
 9444
 9445
 9446
 9447
 9448
 9449
 9450
 9451
 9452
 9453
 9454
 9455
 9456
 9457
 9458
 9459
 9460
 9461
 9462
 9463
 9464
 9465
 9466
 9467
 9468
 9469
 9470
 9471
 9472
 9473
 9474
 9475
 9476
 9477
 9478
 9479
 9480
 9481
 9482
 9483
 9484
 9485
 9486
 9487
 9488
 9489
 9490
 9491
 9492
 9493
 9494
 9495
 9496
 9497
 9498
 9499
 9500
 9501
 9502
 9503
 9504
 9505
 9506
 9507
 9508
 9509
 9510
 9511
 9512
 9513
 9514
 9515
 9516
 9517
 9518
 9519
 9520
 9521
 9522
 9523
 9524
 9525
 9526
 9527
 9528
 9529
 9530
 9531
 9532
 9533
 9534
 9535
 9536
 9537
 9538
 9539
 9540
 9541
 9542
 9543
 9544
 9545
 9546
 9547
 9548
 9549
 9550
 9551
 9552
 9553
 9554
 9555
 9556
 9557
 9558
 9559
 9560
 9561
 9562
 9563
 9564
 9565
 9566
 9567
 9568
 9569
 9570
 9571
 9572
 9573
 9574
 9575
 9576
 9577
 9578
 9579
 9580
 9581
 9582
 9583
 9584
 9585
 9586
 9587
 9588
 9589
 9590
 9591
 9592
 9593
 9594
 9595
 9596
 9597
 9598
 9599
 9600
 9601
 9602
 9603
 9604
 9605
 9606
 9607
 9608
 9609
 9610
 9611
 9612
 9613
 9614
 9615
 9616
 9617
 9618
 9619
 9620
 9621
 9622
 9623
 9624
 9625
 9626
 9627
 9628
 9629
 9630
 9631
 9632
 9633
 9634
 9635
 9636
 9637
 9638
 9639
 9640
 9641
 9642
 9643
 9644
 9645
 9646
 9647
 9648
 9649
 9650
 9651
 9652
 9653
 9654
 9655
 9656
 9657
 9658
 9659
 9660
 9661
 9662
 9663
 9664
 9665
 9666
 9667
 9668
 9669
 9670
 9671
 9672
 9673
 9674
 9675
 9676
 9677
 9678
 9679
 9680
 9681
 9682
 9683
 9684
 9685
 9686
 9687
 9688
 9689
 9690
 9691
 9692
 9693
 9694
 9695
 9696
 9697
 9698
 9699
 9700
 9701
 9702
 9703
 9704
 9705
 9706
 9707
 9708
 9709
 9710
 9711
 9712
 9713
 9714
 9715
 9716
 9717
 9718
 9719
 9720
 9721
 9722
 9723
 9724
 9725
 9726
 9727
 9728
 9729
 9730
 9731
 9732
 9733
 9734
 9735
 9736
 9737
 9738
 9739
 9740
 9741
 9742
 9743
 9744
 9745
 9746
 9747
 9748
 9749
 9750
 9751
 9752
 9753
 9754
 9755
 9756
 9757
 9758
 9759
 9760
 9761
 9762
 9763
 9764
 9765
 9766
 9767
 9768
 9769
 9770
 9771
 9772
 9773
 9774
 9775
 9776
 9777
 9778
 9779
 9780
 9781
 9782
 9783
 9784
 9785
 9786
 9787
 9788
 9789
 9790
 9791
 9792
 9793
 9794
 9795
 9796
 9797
 9798
 9799
 9800
 9801
 9802
 9803
 9804
 9805
 9806
 9807
 9808
 9809
 9810
 9811
 9812
 9813
 9814
 9815
 9816
 9817
 9818
 9819
 9820
 9821
 9822
 9823
 9824
 9825
 9826
 9827
 9828
 9829
 9830
 9831
 9832
 9833
 9834
 9835
 9836
 9837
 9838
 9839
 9840
 9841
 9842
 9843
 9844
 9845
 9846
 9847
 9848
 9849
 9850
 9851
 9852
 9853
 9854
 9855
 9856
 9857
 9858
 9859
 9860
 9861
 9862
 9863
 9864
 9865
 9866
 9867
 9868
 9869
 9870
 9871
 9872
 9873
 9874
 9875
 9876
 9877
 9878
 9879
 9880
 9881
 9882
 9883
 9884
 9885
 9886
 9887
 9888
 9889
 9890
 9891
 9892
 9893
 9894
 9895
 9896
 9897
 9898
 9899
 9900
 9901
 9902
 9903
 9904
 9905
 9906
 9907
 9908
 9909
 9910
 9911
 9912
 9913
 9914
 9915
 9916
 9917
 9918
 9919
 9920
 9921
 9922
 9923
 9924
 9925
 9926
 9927
 9928
 9929
 9930
 9931
 9932
 9933
 9934
 9935
 9936
 9937
 9938
 9939
 9940
 9941
 9942
 9943
 9944
 9945
 9946
 9947
 9948
 9949
 9950
 9951
 9952
 9953
 9954
 9955
 9956
 9957
 9958
 9959
 9960
 9961
 9962
 9963
 9964
 9965
 9966
 9967
 9968
 9969
 9970
 9971
 9972
 9973
 9974
 9975
 9976
 9977
 9978
 9979
 9980
 9981
 9982
 9983
 9984
 9985
 9986
 9987
 9988
 9989
 9990
 9991
 9992
 9993
 9994
 9995
 9996
 9997
 9998
 9999
10000
10001
10002
10003
10004
10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
10021
10022
10023
10024
10025
10026
10027
10028
10029
10030
10031
10032
10033
10034
10035
10036
10037
10038
10039
10040
10041
10042
10043
10044
10045
10046
10047
10048
10049
10050
10051
10052
10053
10054
10055
10056
10057
10058
10059
10060
10061
10062
10063
10064
10065
10066
10067
10068
10069
10070
10071
10072
10073
10074
10075
10076
10077
10078
10079
10080
10081
10082
10083
10084
10085
10086
10087
10088
10089
10090
10091
10092
10093
10094
10095
10096
10097
10098
10099
10100
10101
10102
10103
10104
10105
10106
10107
10108
10109
10110
10111
10112
10113
10114
10115
10116
10117
10118
10119
10120
10121
10122
10123
10124
10125
10126
10127
10128
10129
10130
10131
10132
10133
10134
10135
10136
10137
10138
10139
10140
10141
10142
10143
10144
10145
10146
10147
10148
10149
10150
10151
10152
10153
10154
10155
10156
10157
10158
10159
10160
10161
10162
10163
10164
10165
10166
10167
10168
10169
10170
10171
10172
10173
10174
10175
10176
10177
10178
10179
10180
10181
10182
10183
10184
10185
10186
10187
10188
10189
10190
10191
10192
10193
10194
10195
10196
10197
10198
10199
10200
10201
10202
10203
10204
10205
10206
10207
10208
10209
10210
10211
10212
10213
10214
10215
10216
10217
10218
10219
10220
10221
10222
10223
10224
10225
10226
10227
10228
10229
10230
10231
10232
10233
10234
10235
10236
10237
10238
10239
10240
10241
10242
10243
10244
10245
10246
10247
10248
10249
10250
10251
10252
10253
10254
10255
10256
10257
10258
10259
10260
10261
10262
10263
10264
10265
10266
10267
10268
10269
10270
10271
10272
10273
10274
10275
10276
10277
10278
10279
10280
10281
10282
10283
10284
10285
10286
10287
10288
10289
10290
10291
10292
10293
10294
10295
10296
10297
10298
10299
10300
10301
10302
10303
10304
10305
10306
10307
10308
10309
10310
10311
10312
10313
10314
10315
10316
10317
10318
10319
10320
10321
10322
10323
10324
10325
10326
10327
10328
10329
10330
10331
10332
10333
10334
10335
10336
10337
10338
10339
10340
10341
10342
10343
10344
10345
10346
10347
10348
10349
10350
10351
10352
10353
10354
10355
10356
10357
10358
10359
10360
10361
10362
10363
10364
10365
10366
10367
10368
10369
10370
10371
10372
10373
10374
10375
10376
10377
10378
10379
10380
10381
10382
10383
10384
10385
10386
10387
10388
10389
10390
10391
10392
10393
10394
10395
10396
10397
10398
10399
10400
10401
10402
10403
10404
10405
10406
10407
10408
10409
10410
10411
10412
10413
10414
10415
10416
10417
10418
10419
10420
10421
10422
10423
10424
10425
10426
10427
10428
10429
10430
10431
10432
10433
10434
10435
10436
10437
10438
10439
10440
10441
10442
10443
10444
10445
10446
10447
10448
10449
10450
10451
10452
10453
10454
10455
10456
10457
10458
10459
10460
10461
10462
10463
10464
10465
10466
10467
10468
10469
10470
10471
10472
10473
10474
10475
10476
10477
10478
10479
10480
10481
10482
10483
10484
10485
10486
10487
10488
10489
10490
10491
10492
10493
10494
10495
10496
10497
10498
10499
10500
10501
10502
10503
10504
10505
10506
10507
10508
10509
10510
10511
10512
10513
10514
10515
10516
10517
10518
10519
10520
10521
10522
10523
10524
10525
10526
10527
10528
10529
10530
10531
10532
10533
10534
10535
10536
10537
10538
10539
10540
10541
10542
10543
10544
10545
10546
10547
10548
10549
10550
10551
10552
10553
10554
10555
10556
10557
10558
10559
10560
10561
10562
10563
10564
10565
10566
10567
10568
10569
10570
10571
10572
10573
10574
10575
10576
10577
10578
10579
10580
10581
10582
10583
10584
10585
10586
10587
10588
10589
10590
10591
10592
10593
10594
10595
10596
10597
10598
10599
10600
10601
10602
10603
10604
10605
10606
10607
10608
10609
10610
10611
10612
10613
10614
10615
10616
10617
10618
10619
10620
10621
10622
10623
10624
10625
10626
10627
10628
10629
10630
10631
10632
10633
10634
10635
10636
10637
10638
10639
10640
10641
10642
10643
10644
10645
10646
10647
10648
10649
10650
10651
10652
10653
10654
10655
10656
10657
10658
10659
10660
10661
10662
10663
10664
10665
10666
10667
10668
10669
10670
10671
10672
10673
10674
10675
10676
10677
10678
10679
10680
10681
10682
10683
10684
10685
10686
10687
10688
10689
10690
10691
10692
10693
10694
10695
10696
10697
10698
10699
10700
10701
10702
10703
10704
10705
10706
10707
10708
10709
10710
10711
10712
10713
10714
10715
10716
10717
10718
10719
10720
10721
10722
10723
10724
10725
10726
10727
10728
10729
10730
10731
10732
10733
10734
10735
10736
10737
10738
10739
10740
10741
10742
10743
10744
10745
10746
10747
10748
10749
10750
10751
10752
10753
10754
10755
10756
10757
10758
10759
10760
10761
10762
10763
10764
10765
10766
10767
10768
10769
10770
10771
10772
10773
10774
10775
10776
10777
10778
10779
10780
10781
10782
10783
10784
10785
10786
10787
10788
10789
10790
10791
10792
10793
10794
10795
10796
10797
10798
10799
10800
10801
10802
10803
10804
10805
10806
10807
10808
10809
10810
10811
10812
10813
10814
10815
10816
10817
10818
10819
10820
10821
10822
10823
10824
10825
10826
10827
10828
10829
10830
10831
10832
10833
10834
10835
10836
10837
10838
10839
10840
10841
10842
10843
10844
10845
10846
10847
10848
10849
10850
10851
10852
10853
10854
10855
10856
10857
10858
10859
10860
10861
10862
10863
10864
10865
10866
10867
10868
10869
10870
10871
10872
10873
10874
10875
10876
10877
10878
10879
10880
10881
10882
10883
10884
10885
10886
10887
10888
10889
10890
10891
10892
10893
10894
10895
10896
10897
10898
10899
10900
10901
10902
10903
10904
10905
10906
10907
10908
10909
10910
10911
10912
10913
10914
10915
10916
10917
10918
10919
10920
10921
10922
10923
10924
10925
10926
10927
10928
10929
10930
10931
10932
10933
10934
10935
10936
10937
10938
10939
10940
10941
10942
10943
10944
10945
10946
10947
10948
10949
10950
10951
10952
10953
10954
10955
10956
10957
10958
10959
10960
10961
10962
10963
10964
10965
10966
10967
10968
10969
10970
10971
10972
10973
10974
10975
10976
10977
10978
10979
10980
10981
10982
10983
10984
10985
10986
10987
10988
10989
10990
10991
10992
10993
10994
10995
10996
10997
10998
10999
11000
11001
11002
11003
11004
11005
11006
11007
11008
11009
11010
11011
11012
11013
11014
11015
11016
11017
11018
11019
11020
11021
11022
11023
11024
11025
11026
11027
11028
11029
11030
11031
11032
11033
11034
11035
11036
11037
11038
11039
11040
11041
11042
11043
11044
11045
11046
11047
11048
11049
11050
11051
11052
11053
11054
11055
11056
11057
11058
11059
11060
11061
11062
11063
11064
11065
11066
11067
11068
11069
11070
11071
11072
11073
11074
11075
11076
11077
11078
11079
11080
11081
11082
11083
11084
11085
11086
11087
11088
11089
11090
11091
11092
11093
11094
11095
11096
11097
11098
11099
11100
11101
11102
11103
11104
11105
11106
11107
11108
11109
11110
11111
11112
11113
11114
11115
11116
11117
11118
11119
11120
11121
11122
11123
11124
11125
11126
11127
11128
11129
11130
11131
11132
11133
11134
11135
11136
11137
11138
11139
11140
11141
11142
11143
11144
11145
11146
11147
11148
11149
11150
11151
11152
11153
11154
11155
11156
11157
11158
11159
11160
11161
11162
11163
11164
11165
11166
11167
11168
11169
11170
11171
11172
11173
11174
11175
11176
11177
11178
11179
11180
11181
11182
11183
11184
11185
11186
11187
11188
11189
11190
11191
11192
11193
11194
11195
11196
11197
11198
11199
11200
11201
11202
11203
11204
11205
11206
11207
11208
11209
11210
11211
11212
11213
11214
11215
11216
11217
11218
11219
11220
11221
11222
11223
11224
11225
11226
11227
11228
11229
11230
11231
11232
11233
11234
11235
11236
11237
11238
11239
11240
11241
11242
11243
11244
11245
11246
11247
11248
11249
11250
11251
11252
11253
11254
11255
11256
11257
11258
11259
11260
11261
11262
11263
11264
11265
11266
11267
11268
11269
11270
11271
11272
11273
11274
11275
11276
11277
11278
11279
11280
11281
11282
11283
11284
11285
11286
11287
11288
11289
11290
11291
11292
11293
11294
11295
11296
11297
11298
11299
11300
11301
11302
11303
11304
11305
11306
11307
11308
11309
11310
11311
11312
11313
11314
11315
11316
11317
11318
11319
11320
11321
11322
11323
11324
11325
11326
11327
11328
11329
11330
11331
11332
11333
11334
11335
11336
11337
11338
11339
11340
11341
11342
11343
11344
11345
11346
11347
11348
11349
11350
11351
11352
11353
11354
11355
11356
11357
11358
11359
11360
11361
11362
11363
11364
11365
11366
11367
11368
11369
11370
11371
11372
11373
11374
11375
11376
11377
11378
11379
11380
11381
11382
11383
11384
11385
11386
11387
11388
11389
11390
11391
11392
11393
11394
11395
11396
11397
11398
11399
11400
11401
11402
11403
11404
11405
11406
11407
11408
11409
11410
11411
11412
11413
11414
11415
11416
11417
11418
11419
11420
11421
11422
11423
11424
11425
11426
11427
11428
11429
11430
11431
11432
11433
11434
11435
11436
11437
11438
11439
11440
11441
11442
11443
11444
11445
11446
11447
11448
11449
11450
11451
11452
11453
11454
11455
11456
11457
11458
11459
11460
11461
11462
11463
11464
11465
11466
11467
11468
11469
11470
11471
11472
11473
11474
11475
11476
11477
11478
11479
11480
11481
11482
11483
11484
11485
11486
11487
11488
11489
11490
11491
11492
11493
11494
11495
11496
11497
11498
11499
11500
11501
11502
11503
11504
11505
11506
11507
11508
11509
11510
11511
11512
11513
11514
11515
11516
11517
11518
11519
11520
11521
11522
11523
11524
11525
11526
11527
11528
11529
11530
11531
11532
11533
11534
11535
11536
11537
11538
11539
11540
11541
11542
11543
11544
11545
11546
11547
11548
11549
11550
11551
11552
11553
11554
11555
11556
11557
11558
11559
11560
11561
11562
11563
11564
11565
11566
11567
11568
11569
11570
11571
11572
11573
11574
11575
11576
11577
11578
11579
11580
11581
11582
11583
11584
11585
11586
11587
11588
11589
11590
11591
11592
11593
11594
11595
11596
11597
11598
11599
11600
11601
11602
11603
11604
11605
11606
11607
11608
11609
11610
11611
11612
11613
11614
11615
11616
11617
11618
11619
11620
11621
11622
11623
11624
11625
11626
11627
11628
11629
11630
11631
11632
11633
11634
11635
11636
11637
11638
11639
11640
11641
11642
11643
11644
11645
11646
11647
11648
11649
11650
11651
11652
11653
11654
11655
11656
11657
11658
11659
11660
11661
11662
11663
11664
11665
11666
11667
11668
11669
11670
11671
11672
11673
11674
11675
11676
11677
11678
11679
11680
11681
11682
11683
11684
11685
11686
11687
11688
11689
11690
11691
11692
11693
11694
11695
11696
11697
11698
11699
11700
11701
11702
11703
11704
11705
11706
11707
11708
11709
11710
11711
11712
11713
11714
11715
11716
11717
11718
11719
11720
11721
11722
11723
11724
11725
11726
11727
11728
11729
11730
11731
11732
11733
11734
11735
11736
11737
11738
11739
11740
11741
11742
11743
11744
11745
11746
11747
11748
11749
11750
11751
11752
11753
11754
11755
11756
11757
11758
11759
11760
11761
11762
11763
11764
11765
11766
11767
11768
11769
11770
11771
11772
11773
11774
11775
11776
11777
11778
11779
11780
11781
11782
11783
11784
11785
11786
11787
11788
11789
11790
11791
11792
11793
11794
11795
11796
11797
11798
11799
11800
11801
11802
11803
11804
11805
11806
11807
11808
11809
11810
11811
11812
11813
11814
11815
11816
11817
11818
11819
11820
11821
11822
11823
11824
11825
11826
11827
11828
11829
11830
11831
11832
11833
11834
11835
11836
11837
11838
11839
11840
11841
11842
11843
11844
11845
11846
11847
11848
11849
11850
11851
11852
11853
11854
11855
11856
11857
11858
11859
11860
11861
11862
11863
11864
11865
11866
11867
11868
11869
11870
11871
11872
11873
11874
11875
11876
11877
11878
11879
11880
11881
11882
11883
11884
11885
11886
11887
11888
11889
11890
11891
11892
11893
11894
11895
11896
11897
11898
11899
11900
11901
11902
11903
11904
11905
11906
11907
11908
11909
11910
11911
11912
11913
11914
11915
11916
11917
11918
11919
11920
11921
11922
11923
11924
11925
11926
11927
11928
11929
11930
11931
11932
11933
11934
11935
11936
11937
11938
11939
11940
11941
11942
11943
11944
11945
11946
11947
11948
11949
11950
11951
11952
11953
11954
11955
11956
11957
11958
11959
11960
11961
11962
11963
11964
11965
11966
11967
11968
11969
11970
11971
11972
11973
11974
11975
11976
11977
11978
11979
11980
11981
11982
11983
11984
11985
11986
11987
11988
11989
11990
11991
11992
11993
11994
11995
11996
11997
11998
11999
12000
12001
12002
12003
12004
12005
12006
12007
12008
12009
12010
12011
12012
12013
12014
12015
12016
12017
12018
12019
12020
12021
12022
12023
12024
12025
12026
12027
12028
12029
12030
12031
12032
12033
12034
12035
12036
12037
12038
12039
12040
12041
12042
12043
12044
12045
12046
12047
12048
12049
12050
12051
12052
12053
12054
12055
12056
12057
12058
12059
12060
12061
12062
12063
12064
12065
12066
12067
12068
12069
12070
12071
12072
12073
12074
12075
12076
12077
12078
12079
12080
12081
12082
12083
12084
12085
12086
12087
12088
12089
12090
12091
12092
12093
12094
12095
12096
12097
12098
12099
12100
12101
12102
12103
12104
12105
12106
12107
12108
12109
12110
12111
12112
12113
12114
12115
12116
12117
12118
12119
12120
12121
12122
12123
12124
12125
12126
12127
12128
12129
12130
12131
12132
12133
12134
12135
12136
12137
12138
12139
12140
12141
12142
12143
12144
12145
12146
12147
12148
12149
12150
12151
12152
12153
12154
12155
12156
12157
12158
12159
12160
12161
12162
12163
12164
12165
12166
12167
12168
12169
12170
12171
12172
12173
12174
12175
12176
12177
12178
12179
12180
12181
12182
12183
12184
12185
12186
12187
12188
12189
12190
12191
12192
12193
12194
12195
12196
12197
12198
12199
12200
12201
12202
12203
12204
12205
12206
12207
12208
12209
12210
12211
12212
12213
12214
12215
12216
12217
12218
12219
12220
12221
12222
12223
12224
12225
12226
12227
12228
12229
12230
12231
12232
12233
12234
12235
12236
12237
12238
12239
12240
12241
12242
12243
12244
12245
12246
12247
12248
12249
12250
12251
12252
12253
12254
12255
12256
12257
12258
12259
12260
12261
12262
12263
12264
12265
12266
12267
12268
12269
12270
12271
12272
12273
12274
12275
12276
12277
12278
12279
12280
12281
12282
12283
12284
12285
12286
12287
12288
12289
12290
12291
12292
12293
12294
12295
12296
12297
12298
12299
12300
12301
12302
12303
12304
12305
12306
12307
12308
12309
12310
12311
12312
12313
12314
12315
12316
12317
12318
12319
12320
12321
12322
12323
12324
12325
12326
12327
12328
12329
12330
12331
12332
12333
12334
12335
12336
12337
12338
12339
12340
12341
12342
12343
12344
12345
12346
12347
12348
12349
12350
12351
12352
12353
12354
12355
12356
12357
12358
12359
12360
12361
12362
12363
12364
12365
12366
12367
12368
12369
12370
12371
12372
12373
12374
12375
12376
12377
12378
12379
12380
12381
12382
12383
12384
12385
12386
12387
12388
12389
12390
12391
12392
12393
12394
12395
12396
12397
12398
12399
12400
12401
12402
12403
12404
12405
12406
12407
12408
12409
12410
12411
12412
12413
12414
12415
12416
12417
12418
12419
12420
12421
12422
12423
12424
12425
12426
12427
12428
12429
12430
12431
12432
12433
12434
12435
12436
12437
12438
12439
12440
12441
12442
12443
12444
12445
12446
12447
12448
12449
12450
12451
12452
12453
12454
12455
12456
12457
12458
12459
12460
12461
12462
12463
12464
12465
12466
12467
12468
12469
12470
12471
12472
12473
12474
12475
12476
12477
12478
12479
12480
12481
12482
12483
12484
12485
12486
12487
12488
12489
12490
12491
12492
12493
12494
12495
12496
12497
12498
12499
12500
12501
12502
12503
12504
12505
12506
12507
12508
12509
12510
12511
12512
12513
12514
12515
12516
12517
12518
12519
12520
12521
12522
12523
12524
12525
12526
12527
12528
12529
12530
12531
12532
12533
12534
12535
12536
12537
12538
12539
12540
12541
12542
12543
12544
12545
12546
12547
12548
12549
12550
12551
12552
12553
12554
12555
12556
12557
12558
12559
12560
12561
12562
12563
12564
12565
12566
12567
12568
12569
12570
12571
12572
12573
12574
12575
12576
12577
12578
12579
12580
12581
12582
12583
12584
12585
12586
12587
12588
12589
12590
12591
12592
12593
12594
12595
12596
12597
12598
12599
12600
12601
12602
12603
12604
12605
12606
12607
12608
12609
12610
12611
12612
12613
12614
12615
12616
12617
12618
12619
12620
12621
12622
12623
12624
12625
12626
12627
12628
12629
12630
12631
12632
12633
12634
12635
12636
12637
12638
12639
12640
12641
12642
12643
12644
12645
12646
12647
12648
12649
12650
12651
12652
12653
12654
12655
12656
12657
12658
12659
12660
12661
12662
12663
12664
12665
12666
12667
12668
12669
12670
12671
12672
12673
12674
12675
12676
12677
12678
12679
12680
12681
12682
12683
12684
12685
12686
12687
12688
12689
12690
12691
12692
12693
12694
12695
12696
12697
12698
12699
12700
12701
12702
12703
12704
12705
12706
12707
12708
12709
12710
12711
12712
12713
12714
12715
12716
12717
12718
12719
12720
12721
12722
12723
12724
12725
12726
12727
12728
12729
12730
12731
12732
12733
12734
12735
12736
12737
12738
12739
12740
12741
12742
12743
12744
12745
12746
12747
12748
12749
12750
12751
12752
12753
12754
12755
12756
12757
12758
12759
12760
12761
12762
12763
12764
12765
12766
12767
12768
12769
12770
12771
12772
12773
12774
12775
12776
12777
12778
12779
12780
12781
12782
12783
12784
12785
12786
12787
12788
12789
12790
12791
12792
12793
12794
12795
12796
12797
12798
12799
12800
12801
12802
12803
12804
12805
12806
12807
12808
12809
12810
12811
12812
12813
12814
12815
12816
12817
12818
12819
12820
12821
12822
12823
12824
12825
12826
12827
12828
12829
12830
12831
12832
12833
12834
12835
12836
12837
12838
12839
12840
12841
12842
12843
12844
12845
12846
12847
12848
12849
12850
12851
12852
12853
12854
12855
12856
12857
12858
12859
12860
12861
12862
12863
12864
12865
12866
12867
12868
12869
12870
12871
12872
12873
12874
12875
12876
12877
12878
12879
12880
12881
12882
12883
12884
12885
12886
12887
12888
12889
12890
12891
12892
12893
12894
12895
12896
12897
12898
12899
12900
12901
12902
12903
12904
12905
12906
12907
12908
12909
12910
12911
12912
12913
12914
12915
12916
12917
12918
12919
12920
12921
12922
12923
12924
12925
12926
12927
12928
12929
12930
12931
12932
12933
12934
12935
12936
12937
12938
12939
12940
12941
12942
12943
12944
12945
12946
12947
12948
12949
12950
12951
12952
12953
12954
12955
12956
12957
12958
12959
12960
12961
12962
12963
12964
12965
12966
12967
12968
12969
12970
12971
12972
12973
12974
12975
12976
12977
12978
12979
12980
12981
12982
12983
12984
12985
12986
12987
12988
12989
12990
12991
12992
12993
12994
12995
12996
12997
12998
12999
13000
13001
13002
13003
13004
13005
13006
13007
13008
13009
13010
13011
13012
13013
13014
13015
13016
13017
13018
13019
13020
13021
13022
13023
13024
13025
13026
13027
13028
13029
13030
13031
13032
13033
13034
13035
13036
13037
13038
13039
13040
13041
13042
13043
13044
13045
13046
13047
13048
13049
13050
13051
13052
13053
13054
13055
13056
13057
13058
13059
13060
13061
13062
13063
13064
13065
13066
13067
13068
13069
13070
13071
13072
13073
13074
13075
13076
13077
13078
13079
13080
13081
13082
13083
13084
13085
13086
13087
13088
13089
13090
13091
13092
13093
13094
13095
13096
13097
13098
13099
13100
13101
13102
13103
13104
13105
13106
13107
13108
13109
13110
13111
13112
13113
13114
13115
13116
13117
13118
13119
13120
13121
13122
13123
13124
13125
13126
13127
13128
13129
13130
13131
13132
13133
13134
13135
13136
13137
13138
13139
13140
13141
13142
13143
13144
13145
13146
13147
13148
13149
13150
13151
13152
13153
13154
13155
13156
13157
13158
13159
13160
13161
13162
13163
13164
13165
13166
13167
13168
13169
13170
13171
13172
13173
13174
13175
13176
13177
13178
13179
13180
13181
13182
13183
13184
13185
13186
13187
13188
13189
13190
13191
13192
13193
13194
13195
13196
13197
13198
13199
13200
13201
13202
13203
13204
13205
13206
13207
13208
13209
13210
13211
13212
13213
13214
13215
13216
13217
13218
13219
13220
13221
13222
13223
13224
13225
13226
13227
13228
13229
13230
13231
13232
13233
13234
13235
13236
13237
13238
13239
13240
13241
13242
13243
13244
13245
13246
13247
13248
13249
13250
13251
13252
13253
13254
13255
13256
13257
13258
13259
13260
13261
13262
13263
13264
13265
13266
13267
13268
13269
13270
13271
13272
13273
13274
13275
13276
13277
13278
13279
13280
13281
13282
13283
13284
13285
13286
13287
13288
13289
13290
13291
13292
13293
13294
13295
13296
13297
13298
13299
13300
13301
13302
13303
13304
13305
13306
13307
13308
13309
13310
13311
13312
13313
13314
13315
13316
13317
13318
13319
13320
13321
13322
13323
13324
13325
13326
13327
13328
13329
13330
13331
13332
13333
13334
13335
13336
13337
13338
13339
13340
13341
13342
13343
13344
13345
13346
13347
13348
13349
13350
13351
13352
13353
13354
13355
13356
13357
13358
13359
13360
13361
13362
13363
13364
13365
13366
13367
13368
13369
13370
13371
13372
13373
13374
13375
13376
13377
13378
13379
13380
13381
13382
13383
13384
13385
13386
13387
13388
13389
13390
13391
13392
13393
13394
13395
13396
13397
13398
13399
13400
13401
13402
13403
13404
13405
13406
13407
13408
13409
13410
13411
13412
13413
13414
13415
13416
13417
13418
13419
13420
13421
13422
13423
13424
13425
13426
13427
13428
13429
13430
13431
13432
13433
13434
13435
13436
13437
13438
13439
13440
13441
13442
13443
13444
13445
13446
13447
13448
13449
13450
13451
13452
13453
13454
13455
13456
13457
13458
13459
13460
13461
13462
13463
13464
13465
13466
13467
13468
13469
13470
13471
13472
13473
13474
13475
13476
13477
13478
13479
13480
13481
13482
13483
13484
13485
13486
13487
13488
13489
13490
13491
13492
13493
13494
13495
13496
13497
13498
13499
13500
13501
13502
13503
13504
13505
13506
13507
13508
13509
13510
13511
13512
13513
13514
13515
13516
13517
13518
13519
13520
13521
13522
13523
13524
13525
13526
13527
13528
13529
13530
13531
13532
13533
13534
13535
13536
13537
13538
13539
13540
13541
13542
13543
13544
13545
13546
13547
13548
13549
13550
13551
13552
13553
13554
13555
13556
13557
13558
13559
13560
13561
13562
13563
13564
13565
13566
13567
13568
13569
13570
13571
13572
13573
13574
13575
13576
13577
13578
13579
13580
13581
13582
13583
13584
13585
13586
13587
13588
13589
13590
13591
13592
13593
13594
13595
13596
13597
13598
13599
13600
13601
13602
13603
13604
13605
13606
13607
13608
13609
13610
13611
13612
13613
13614
13615
13616
13617
13618
13619
13620
13621
13622
13623
13624
13625
13626
13627
13628
13629
13630
13631
13632
13633
13634
13635
13636
13637
13638
13639
13640
13641
13642
13643
13644
13645
13646
13647
13648
13649
13650
13651
13652
13653
13654
13655
13656
13657
13658
13659
13660
13661
13662
13663
13664
13665
13666
13667
13668
13669
13670
13671
13672
13673
13674
13675
13676
13677
13678
13679
13680
13681
13682
13683
13684
13685
13686
13687
13688
13689
13690
13691
13692
13693
13694
13695
13696
13697
13698
13699
13700
13701
13702
13703
13704
13705
13706
13707
13708
13709
13710
13711
13712
13713
13714
13715
13716
13717
13718
13719
13720
13721
13722
13723
13724
13725
13726
13727
13728
13729
13730
13731
13732
13733
13734
13735
13736
13737
13738
13739
13740
13741
13742
13743
13744
13745
13746
13747
13748
13749
13750
13751
13752
13753
13754
13755
13756
13757
13758
13759
13760
13761
13762
13763
13764
13765
13766
13767
13768
13769
13770
13771
13772
13773
13774
13775
13776
13777
13778
13779
13780
13781
13782
13783
13784
13785
13786
13787
13788
13789
13790
13791
13792
13793
13794
13795
13796
13797
13798
13799
13800
13801
13802
13803
13804
13805
13806
13807
13808
13809
13810
13811
13812
13813
13814
13815
13816
13817
13818
13819
13820
13821
13822
13823
13824
13825
13826
13827
13828
13829
13830
13831
13832
13833
13834
13835
13836
13837
13838
13839
13840
13841
13842
13843
13844
13845
13846
13847
13848
13849
13850
13851
13852
13853
13854
13855
13856
13857
13858
13859
13860
13861
13862
13863
13864
13865
13866
13867
13868
13869
13870
13871
13872
13873
13874
13875
13876
13877
13878
13879
13880
13881
13882
13883
13884
13885
13886
13887
13888
13889
13890
13891
13892
13893
13894
13895
13896
13897
13898
13899
13900
13901
13902
13903
13904
13905
13906
13907
13908
13909
13910
13911
13912
13913
13914
13915
13916
13917
13918
13919
13920
13921
13922
13923
13924
13925
13926
13927
13928
13929
13930
13931
13932
13933
13934
13935
13936
13937
13938
13939
13940
13941
13942
13943
13944
13945
13946
13947
13948
13949
13950
13951
13952
13953
13954
13955
13956
13957
13958
13959
13960
13961
13962
13963
13964
13965
13966
13967
13968
13969
13970
13971
13972
13973
13974
13975
13976
13977
13978
13979
13980
13981
13982
13983
13984
13985
13986
13987
13988
13989
13990
13991
13992
13993
13994
13995
13996
13997
13998
13999
14000
14001
14002
14003
14004
14005
14006
14007
14008
14009
14010
14011
14012
14013
14014
14015
14016
14017
14018
14019
14020
14021
14022
14023
14024
14025
14026
14027
14028
14029
14030
14031
14032
14033
14034
14035
14036
14037
14038
14039
14040
14041
14042
14043
14044
14045
14046
14047
14048
14049
14050
14051
14052
14053
14054
14055
14056
14057
14058
14059
14060
14061
14062
14063
14064
14065
14066
14067
14068
14069
14070
14071
14072
14073
14074
14075
14076
14077
14078
14079
14080
14081
14082
14083
14084
14085
14086
14087
14088
14089
14090
14091
14092
14093
14094
14095
14096
14097
14098
14099
14100
14101
14102
14103
14104
14105
14106
14107
14108
14109
14110
14111
14112
14113
14114
14115
14116
14117
14118
14119
14120
14121
14122
14123
14124
14125
14126
14127
14128
14129
14130
14131
14132
14133
14134
14135
14136
14137
14138
14139
14140
14141
14142
14143
14144
14145
14146
14147
14148
14149
14150
14151
14152
14153
14154
14155
14156
14157
14158
14159
14160
14161
14162
14163
14164
14165
14166
14167
14168
14169
14170
14171
14172
14173
14174
14175
14176
14177
14178
14179
14180
14181
14182
14183
14184
14185
14186
14187
14188
14189
14190
14191
14192
14193
14194
14195
14196
14197
14198
14199
14200
14201
14202
14203
14204
14205
14206
14207
14208
14209
14210
14211
14212
14213
14214
14215
14216
14217
14218
14219
14220
14221
14222
14223
14224
14225
14226
14227
14228
14229
14230
14231
14232
14233
14234
14235
14236
14237
14238
14239
14240
14241
14242
14243
14244
14245
14246
14247
14248
14249
14250
14251
14252
14253
14254
14255
14256
14257
14258
14259
14260
14261
14262
14263
14264
14265
14266
14267
14268
14269
14270
14271
14272
14273
14274
14275
14276
14277
14278
14279
14280
14281
14282
14283
14284
14285
14286
14287
14288
14289
14290
14291
14292
14293
14294
14295
14296
14297
14298
14299
14300
14301
14302
14303
14304
14305
14306
14307
14308
14309
14310
14311
14312
14313
14314
14315
14316
14317
14318
14319
14320
14321
14322
14323
14324
14325
14326
14327
14328
14329
14330
14331
14332
14333
14334
14335
14336
14337
14338
14339
14340
14341
14342
14343
14344
14345
14346
14347
14348
14349
14350
14351
14352
14353
14354
14355
14356
14357
14358
14359
14360
14361
14362
14363
14364
14365
14366
14367
14368
14369
14370
14371
14372
14373
14374
14375
14376
14377
14378
14379
14380
14381
14382
14383
14384
14385
14386
14387
14388
14389
14390
14391
14392
14393
14394
14395
14396
14397
14398
14399
14400
14401
14402
14403
14404
14405
14406
14407
14408
14409
14410
14411
14412
14413
14414
14415
14416
14417
14418
14419
14420
14421
14422
14423
14424
14425
14426
14427
14428
14429
14430
14431
14432
14433
14434
14435
14436
14437
14438
14439
14440
14441
14442
14443
14444
14445
14446
14447
14448
14449
14450
14451
14452
14453
14454
14455
14456
14457
14458
14459
14460
14461
14462
14463
14464
14465
14466
14467
14468
14469
14470
14471
14472
14473
14474
14475
14476
14477
14478
14479
14480
14481
14482
14483
14484
14485
14486
14487
14488
14489
14490
14491
14492
14493
14494
14495
14496
14497
14498
14499
14500
14501
14502
14503
14504
14505
14506
14507
14508
14509
14510
14511
14512
14513
14514
14515
14516
14517
14518
14519
14520
14521
14522
14523
14524
14525
14526
14527
14528
14529
14530
14531
14532
14533
14534
14535
14536
14537
14538
14539
14540
14541
14542
14543
14544
14545
14546
14547
14548
14549
14550
14551
14552
14553
14554
14555
14556
14557
14558
14559
14560
14561
14562
14563
14564
14565
14566
14567
14568
14569
14570
14571
14572
14573
14574
14575
14576
14577
14578
14579
14580
14581
14582
14583
14584
14585
14586
14587
14588
14589
14590
14591
14592
14593
14594
14595
14596
14597
14598
14599
14600
14601
14602
14603
14604
14605
14606
14607
14608
14609
14610
14611
14612
14613
14614
14615
14616
14617
14618
14619
14620
14621
14622
14623
14624
14625
14626
14627
14628
14629
14630
14631
14632
14633
14634
14635
14636
14637
14638
14639
14640
14641
14642
14643
14644
14645
14646
14647
14648
14649
14650
14651
14652
14653
14654
14655
14656
14657
14658
14659
14660
14661
14662
14663
14664
14665
14666
14667
14668
14669
14670
14671
14672
14673
14674
14675
14676
14677
14678
14679
14680
14681
14682
14683
14684
14685
14686
14687
14688
14689
14690
14691
14692
14693
14694
14695
14696
14697
14698
14699
14700
14701
14702
14703
14704
14705
14706
14707
14708
14709
14710
14711
14712
14713
14714
14715
14716
14717
14718
14719
14720
14721
14722
14723
14724
14725
14726
14727
14728
14729
14730
14731
14732
14733
14734
14735
14736
14737
14738
14739
14740
14741
14742
14743
14744
14745
14746
14747
14748
14749
14750
14751
14752
14753
14754
14755
14756
14757
14758
14759
14760
14761
14762
14763
14764
14765
14766
14767
14768
14769
14770
14771
14772
14773
14774
14775
14776
14777
14778
14779
14780
14781
14782
14783
14784
14785
14786
14787
14788
14789
14790
14791
14792
14793
14794
14795
14796
14797
14798
14799
14800
14801
14802
14803
14804
14805
14806
14807
14808
14809
14810
14811
14812
14813
14814
14815
14816
14817
14818
14819
14820
14821
14822
14823
14824
14825
14826
14827
14828
14829
14830
14831
14832
14833
14834
14835
14836
14837
14838
14839
14840
14841
14842
14843
14844
14845
14846
14847
14848
14849
14850
14851
14852
14853
14854
14855
14856
14857
14858
14859
14860
14861
14862
14863
14864
14865
14866
14867
14868
14869
14870
14871
14872
14873
14874
14875
14876
14877
14878
14879
14880
14881
14882
14883
14884
14885
14886
14887
14888
14889
14890
14891
14892
14893
14894
14895
14896
14897
14898
14899
14900
14901
14902
14903
14904
14905
14906
14907
14908
14909
14910
14911
14912
14913
14914
14915
14916
14917
14918
14919
14920
14921
14922
14923
14924
14925
14926
14927
14928
14929
14930
14931
14932
14933
14934
14935
14936
14937
14938
14939
14940
14941
14942
14943
14944
14945
14946
14947
14948
14949
14950
14951
14952
14953
14954
14955
14956
14957
14958
14959
14960
14961
14962
14963
14964
14965
14966
14967
14968
14969
14970
14971
14972
14973
14974
14975
14976
14977
14978
14979
14980
14981
14982
14983
14984
14985
14986
14987
14988
14989
14990
14991
14992
14993
14994
14995
14996
14997
14998
14999
15000
15001
15002
15003
15004
15005
15006
15007
15008
15009
15010
15011
15012
15013
15014
15015
15016
15017
15018
15019
15020
15021
15022
15023
15024
15025
15026
15027
15028
15029
15030
15031
15032
15033
15034
15035
15036
15037
15038
15039
15040
15041
15042
15043
15044
15045
15046
15047
15048
15049
15050
15051
15052
15053
15054
15055
15056
15057
15058
15059
15060
15061
15062
15063
15064
15065
15066
15067
15068
15069
15070
15071
15072
15073
15074
15075
15076
15077
15078
15079
15080
15081
15082
15083
15084
15085
15086
15087
15088
15089
15090
15091
15092
15093
15094
15095
15096
15097
15098
15099
15100
15101
15102
15103
15104
15105
15106
15107
15108
15109
15110
15111
15112
15113
15114
15115
15116
15117
15118
15119
15120
15121
15122
15123
15124
15125
15126
15127
15128
15129
15130
15131
15132
15133
15134
15135
15136
15137
15138
15139
15140
15141
15142
15143
15144
15145
15146
15147
15148
15149
15150
15151
15152
15153
15154
15155
15156
15157
15158
15159
15160
15161
15162
15163
15164
15165
15166
15167
15168
15169
15170
15171
15172
15173
15174
15175
15176
15177
15178
15179
15180
15181
15182
15183
15184
15185
15186
15187
15188
15189
15190
15191
15192
15193
15194
15195
15196
15197
15198
15199
15200
15201
15202
15203
15204
15205
15206
15207
15208
15209
15210
15211
15212
15213
15214
15215
15216
15217
15218
15219
15220
15221
15222
15223
15224
15225
15226
15227
15228
15229
15230
15231
15232
15233
15234
15235
15236
15237
15238
15239
15240
15241
15242
15243
15244
15245
15246
15247
15248
15249
15250
15251
15252
15253
15254
15255
15256
15257
15258
15259
15260
15261
15262
15263
15264
15265
15266
15267
15268
15269
15270
15271
15272
15273
15274
15275
15276
15277
15278
15279
15280
15281
15282
15283
15284
15285
15286
15287
15288
15289
15290
15291
15292
15293
15294
15295
15296
15297
15298
15299
15300
15301
15302
15303
15304
15305
15306
15307
15308
15309
15310
15311
15312
15313
15314
15315
15316
15317
15318
15319
15320
15321
15322
15323
15324
15325
15326
15327
15328
15329
15330
15331
15332
15333
15334
15335
15336
15337
15338
15339
15340
15341
15342
15343
15344
15345
15346
15347
15348
15349
15350
15351
15352
15353
15354
15355
15356
15357
15358
15359
15360
15361
15362
15363
15364
15365
15366
15367
15368
15369
15370
15371
15372
15373
15374
15375
15376
15377
15378
15379
15380
15381
15382
15383
15384
15385
15386
15387
15388
15389
15390
15391
15392
15393
15394
15395
15396
15397
15398
15399
15400
15401
15402
15403
15404
15405
15406
15407
15408
15409
15410
15411
15412
15413
15414
15415
15416
15417
15418
15419
15420
15421
15422
15423
15424
15425
15426
15427
15428
15429
15430
15431
15432
15433
15434
15435
15436
15437
15438
15439
15440
15441
15442
15443
15444
15445
15446
15447
15448
15449
15450
15451
15452
15453
15454
15455
15456
15457
15458
15459
15460
15461
15462
15463
15464
15465
15466
15467
15468
15469
15470
15471
15472
15473
15474
15475
15476
15477
15478
15479
15480
15481
15482
15483
15484
15485
15486
15487
15488
15489
15490
15491
15492
15493
15494
15495
15496
15497
15498
15499
15500
15501
15502
15503
15504
15505
15506
15507
15508
15509
15510
15511
15512
15513
15514
15515
15516
15517
15518
15519
15520
15521
15522
15523
15524
15525
15526
15527
15528
15529
15530
15531
15532
15533
15534
15535
15536
15537
15538
15539
15540
15541
15542
15543
15544
15545
15546
15547
15548
15549
15550
15551
15552
15553
15554
15555
15556
15557
15558
15559
15560
15561
15562
15563
15564
15565
15566
15567
15568
15569
15570
15571
15572
15573
15574
15575
15576
15577
15578
15579
15580
15581
15582
15583
15584
15585
15586
15587
15588
15589
15590
15591
15592
15593
15594
15595
15596
15597
15598
15599
15600
15601
15602
15603
15604
15605
15606
15607
15608
15609
15610
15611
15612
15613
15614
15615
15616
15617
15618
15619
15620
15621
15622
15623
15624
15625
15626
15627
15628
15629
15630
15631
15632
15633
15634
15635
15636
15637
15638
15639
15640
15641
15642
15643
15644
15645
15646
15647
15648
15649
15650
15651
15652
15653
15654
15655
15656
15657
15658
15659
15660
15661
15662
15663
15664
15665
15666
15667
15668
15669
15670
15671
15672
15673
15674
15675
15676
15677
15678
15679
15680
15681
15682
15683
15684
15685
15686
15687
15688
15689
15690
15691
15692
15693
15694
15695
15696
15697
15698
15699
15700
15701
15702
15703
15704
15705
15706
15707
15708
15709
15710
15711
15712
15713
15714
15715
15716
15717
15718
15719
15720
15721
15722
15723
15724
15725
15726
15727
15728
15729
15730
15731
15732
15733
15734
15735
15736
15737
15738
15739
15740
15741
15742
15743
15744
15745
15746
15747
15748
15749
15750
15751
15752
15753
15754
15755
15756
15757
15758
15759
15760
15761
15762
15763
15764
15765
15766
15767
15768
15769
15770
15771
15772
15773
15774
15775
15776
15777
15778
15779
15780
15781
15782
15783
15784
15785
15786
15787
15788
15789
15790
15791
15792
15793
15794
15795
15796
15797
15798
15799
15800
15801
15802
15803
15804
15805
15806
15807
15808
15809
15810
15811
15812
15813
15814
15815
15816
15817
15818
15819
15820
15821
15822
15823
15824
15825
15826
15827
15828
15829
15830
15831
15832
15833
15834
15835
15836
15837
15838
15839
15840
15841
15842
15843
15844
15845
15846
15847
15848
15849
15850
15851
15852
15853
15854
15855
15856
15857
15858
15859
15860
15861
15862
15863
15864
15865
15866
15867
15868
15869
15870
15871
15872
15873
15874
15875
15876
15877
15878
15879
15880
15881
15882
15883
15884
15885
15886
15887
15888
15889
15890
15891
15892
15893
15894
15895
15896
15897
15898
15899
15900
15901
15902
15903
15904
15905
15906
15907
15908
15909
15910
15911
15912
15913
15914
15915
15916
15917
15918
15919
15920
15921
15922
15923
15924
15925
15926
15927
15928
15929
15930
15931
15932
15933
15934
15935
15936
15937
15938
15939
15940
15941
15942
15943
15944
15945
15946
15947
15948
15949
15950
15951
15952
15953
15954
15955
15956
15957
15958
15959
15960
15961
15962
15963
15964
15965
15966
15967
15968
15969
15970
15971
15972
15973
15974
15975
15976
15977
15978
15979
15980
15981
15982
15983
15984
15985
15986
15987
15988
15989
15990
15991
15992
15993
15994
15995
15996
15997
15998
15999
16000
16001
16002
16003
16004
16005
16006
16007
16008
16009
16010
16011
16012
16013
16014
16015
16016
16017
16018
16019
16020
16021
16022
16023
16024
16025
16026
16027
16028
16029
16030
16031
16032
16033
16034
16035
16036
16037
16038
16039
16040
16041
16042
16043
16044
16045
16046
16047
16048
16049
16050
16051
16052
16053
16054
16055
16056
16057
16058
16059
16060
16061
16062
16063
16064
16065
16066
16067
16068
16069
16070
16071
16072
16073
16074
16075
16076
16077
16078
16079
16080
16081
16082
16083
16084
16085
16086
16087
16088
16089
16090
16091
16092
16093
16094
16095
16096
16097
16098
16099
16100
16101
16102
16103
16104
16105
16106
16107
16108
16109
16110
16111
16112
16113
16114
16115
16116
16117
16118
16119
16120
16121
16122
16123
16124
16125
16126
16127
16128
16129
16130
16131
16132
16133
16134
16135
16136
16137
16138
16139
16140
16141
16142
16143
16144
16145
16146
16147
16148
16149
16150
16151
16152
16153
16154
16155
16156
16157
16158
16159
16160
16161
16162
16163
16164
16165
16166
16167
16168
16169
16170
16171
16172
16173
16174
16175
16176
16177
16178
16179
16180
16181
16182
16183
16184
16185
16186
16187
16188
16189
16190
16191
16192
16193
16194
16195
16196
16197
16198
16199
16200
16201
16202
16203
16204
16205
16206
16207
16208
16209
16210
16211
16212
16213
16214
16215
16216
16217
16218
16219
16220
16221
16222
16223
16224
16225
16226
16227
16228
16229
16230
16231
16232
16233
16234
16235
16236
16237
16238
16239
16240
16241
16242
16243
16244
16245
16246
16247
16248
16249
16250
16251
16252
16253
16254
16255
16256
16257
16258
16259
16260
16261
16262
16263
16264
16265
16266
16267
16268
16269
16270
16271
16272
16273
16274
16275
16276
16277
16278
16279
16280
16281
16282
16283
16284
16285
16286
16287
16288
16289
16290
16291
16292
16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
16303
16304
16305
16306
16307
16308
16309
16310
16311
16312
16313
16314
16315
16316
16317
16318
16319
16320
16321
16322
16323
16324
16325
16326
16327
16328
16329
16330
16331
16332
16333
16334
16335
16336
16337
16338
16339
16340
16341
16342
16343
16344
16345
16346
16347
16348
16349
16350
16351
16352
16353
16354
16355
16356
16357
16358
16359
16360
16361
16362
16363
16364
16365
16366
16367
16368
16369
16370
16371
16372
16373
16374
16375
16376
16377
16378
16379
16380
16381
16382
16383
16384
16385
16386
16387
16388
16389
16390
16391
16392
16393
16394
16395
16396
16397
16398
16399
16400
16401
16402
16403
16404
16405
16406
16407
16408
16409
16410
16411
16412
16413
16414
16415
16416
16417
16418
16419
16420
16421
16422
16423
16424
16425
16426
16427
16428
16429
16430
16431
16432
16433
16434
16435
16436
16437
16438
16439
16440
16441
16442
16443
16444
16445
16446
16447
16448
16449
16450
16451
16452
16453
16454
16455
16456
16457
16458
16459
16460
16461
16462
16463
16464
16465
16466
16467
16468
16469
16470
16471
16472
16473
16474
16475
16476
16477
16478
16479
16480
16481
16482
16483
16484
16485
16486
16487
16488
16489
16490
16491
16492
16493
16494
16495
16496
16497
16498
16499
16500
16501
16502
16503
16504
16505
16506
16507
16508
16509
16510
16511
16512
16513
16514
16515
16516
16517
16518
16519
16520
16521
16522
16523
16524
16525
16526
16527
16528
16529
16530
16531
16532
16533
16534
16535
16536
16537
16538
16539
16540
16541
16542
16543
16544
16545
16546
16547
16548
16549
16550
16551
16552
16553
16554
16555
16556
16557
16558
16559
16560
16561
16562
16563
16564
16565
16566
16567
16568
16569
16570
16571
16572
16573
16574
16575
16576
16577
16578
16579
16580
16581
16582
16583
16584
16585
16586
16587
16588
16589
16590
16591
16592
16593
16594
16595
16596
16597
16598
16599
16600
16601
16602
16603
16604
16605
16606
16607
16608
16609
16610
16611
16612
16613
16614
16615
16616
16617
16618
16619
16620
16621
16622
16623
16624
16625
16626
16627
16628
16629
16630
16631
16632
16633
16634
16635
16636
16637
16638
16639
16640
16641
16642
16643
16644
16645
16646
16647
16648
16649
16650
16651
16652
16653
16654
16655
16656
16657
16658
16659
16660
16661
16662
16663
16664
16665
16666
16667
16668
16669
16670
16671
16672
16673
16674
16675
16676
16677
16678
16679
16680
16681
16682
16683
16684
16685
16686
16687
16688
16689
16690
16691
16692
16693
16694
16695
16696
16697
16698
16699
16700
16701
16702
16703
16704
16705
16706
16707
16708
16709
16710
16711
16712
16713
16714
16715
16716
16717
16718
16719
16720
16721
16722
16723
16724
16725
16726
16727
16728
16729
16730
16731
16732
16733
16734
16735
16736
16737
16738
16739
16740
16741
16742
16743
16744
16745
16746
16747
16748
16749
16750
16751
16752
16753
16754
16755
16756
16757
16758
16759
16760
16761
16762
16763
16764
16765
16766
16767
16768
16769
16770
16771
16772
16773
16774
16775
16776
16777
16778
16779
16780
16781
16782
16783
16784
16785
16786
16787
16788
16789
16790
16791
16792
16793
16794
16795
16796
16797
16798
16799
16800
16801
16802
16803
16804
16805
16806
16807
16808
16809
16810
16811
16812
16813
16814
16815
16816
16817
16818
16819
16820
16821
16822
16823
16824
16825
16826
16827
16828
16829
16830
16831
16832
16833
16834
16835
16836
16837
16838
16839
16840
16841
16842
16843
16844
16845
16846
16847
16848
16849
16850
16851
16852
16853
16854
16855
16856
16857
16858
16859
16860
16861
16862
16863
16864
16865
16866
16867
16868
16869
16870
16871
16872
16873
16874
16875
16876
16877
16878
16879
16880
16881
16882
16883
16884
16885
16886
16887
16888
16889
16890
16891
16892
16893
16894
16895
16896
16897
16898
16899
16900
16901
16902
16903
16904
16905
16906
16907
16908
16909
16910
16911
16912
16913
16914
16915
16916
16917
16918
16919
16920
16921
16922
16923
16924
16925
16926
16927
16928
16929
16930
16931
16932
16933
16934
16935
16936
16937
16938
16939
16940
16941
16942
16943
16944
16945
16946
16947
16948
16949
16950
16951
16952
16953
16954
16955
16956
16957
16958
16959
16960
16961
16962
16963
16964
16965
16966
16967
16968
16969
16970
16971
16972
16973
16974
16975
16976
16977
16978
16979
16980
16981
16982
16983
16984
16985
16986
16987
16988
16989
16990
16991
16992
16993
16994
16995
16996
16997
16998
16999
17000
17001
17002
17003
17004
17005
17006
17007
17008
17009
17010
17011
17012
17013
17014
17015
17016
17017
17018
17019
17020
17021
17022
17023
17024
17025
17026
17027
17028
17029
17030
17031
17032
17033
17034
17035
17036
17037
17038
17039
17040
17041
17042
17043
17044
17045
17046
17047
17048
17049
17050
17051
17052
17053
17054
17055
17056
17057
17058
17059
17060
17061
17062
17063
17064
17065
17066
17067
17068
17069
17070
17071
17072
17073
17074
17075
17076
17077
17078
17079
17080
17081
17082
17083
17084
17085
17086
17087
17088
17089
17090
17091
17092
17093
17094
17095
17096
17097
17098
17099
17100
17101
17102
17103
17104
17105
17106
17107
17108
17109
17110
17111
17112
17113
17114
17115
17116
17117
17118
17119
17120
17121
17122
17123
17124
17125
17126
17127
17128
17129
17130
17131
17132
17133
17134
17135
17136
17137
17138
17139
17140
17141
17142
17143
17144
17145
17146
17147
17148
17149
17150
17151
17152
17153
17154
17155
17156
17157
17158
17159
17160
17161
17162
17163
17164
17165
17166
17167
17168
17169
17170
17171
17172
17173
17174
17175
17176
17177
17178
17179
17180
17181
17182
17183
17184
17185
17186
17187
17188
17189
17190
17191
17192
17193
17194
17195
17196
17197
17198
17199
17200
17201
17202
17203
17204
17205
17206
17207
17208
17209
17210
17211
17212
17213
17214
17215
17216
17217
17218
17219
17220
17221
17222
17223
17224
17225
17226
17227
17228
17229
17230
17231
17232
17233
17234
17235
17236
17237
17238
17239
17240
17241
17242
17243
17244
17245
17246
17247
17248
17249
17250
17251
17252
17253
17254
17255
17256
17257
17258
17259
17260
17261
17262
17263
17264
17265
17266
17267
17268
17269
17270
17271
17272
17273
17274
17275
17276
17277
17278
17279
17280
17281
17282
17283
17284
17285
17286
17287
17288
17289
17290
17291
17292
17293
17294
17295
17296
17297
17298
17299
17300
17301
17302
17303
17304
17305
17306
17307
17308
17309
17310
17311
17312
17313
17314
17315
17316
17317
17318
17319
17320
17321
17322
17323
17324
17325
17326
17327
17328
17329
17330
17331
17332
17333
17334
17335
17336
17337
17338
17339
17340
17341
17342
17343
17344
17345
17346
17347
17348
17349
17350
17351
17352
17353
17354
17355
17356
17357
17358
17359
17360
17361
17362
17363
17364
17365
17366
17367
17368
17369
17370
17371
17372
17373
17374
17375
17376
17377
17378
17379
17380
17381
17382
17383
17384
17385
17386
17387
17388
17389
17390
17391
17392
17393
17394
17395
17396
17397
17398
17399
17400
17401
17402
17403
17404
17405
17406
17407
17408
17409
17410
17411
17412
17413
17414
17415
17416
17417
17418
17419
17420
17421
17422
17423
17424
17425
17426
17427
17428
17429
17430
17431
17432
17433
17434
17435
17436
17437
17438
17439
17440
17441
17442
17443
17444
17445
17446
17447
17448
17449
17450
17451
17452
17453
17454
17455
17456
17457
17458
17459
17460
17461
17462
17463
17464
17465
17466
17467
17468
17469
17470
17471
17472
17473
17474
17475
17476
17477
17478
17479
17480
17481
17482
17483
17484
17485
17486
17487
17488
17489
17490
17491
17492
17493
17494
17495
17496
17497
17498
17499
17500
17501
17502
17503
17504
17505
17506
17507
17508
17509
17510
17511
17512
17513
17514
17515
17516
17517
17518
17519
17520
17521
17522
17523
17524
17525
17526
17527
17528
17529
17530
17531
17532
17533
17534
17535
17536
17537
17538
17539
17540
17541
17542
17543
17544
17545
17546
17547
17548
17549
17550
17551
17552
17553
17554
17555
17556
17557
17558
17559
17560
17561
17562
17563
17564
17565
17566
17567
17568
17569
17570
17571
17572
17573
17574
17575
17576
17577
17578
17579
17580
17581
17582
17583
17584
17585
17586
17587
17588
17589
17590
17591
17592
17593
17594
17595
17596
17597
17598
17599
17600
17601
17602
17603
17604
17605
17606
17607
17608
17609
17610
17611
17612
17613
17614
17615
17616
17617
17618
17619
17620
17621
17622
17623
17624
17625
17626
17627
17628
17629
17630
17631
17632
17633
17634
17635
17636
17637
17638
17639
17640
17641
17642
17643
17644
17645
17646
17647
17648
17649
17650
17651
17652
17653
17654
17655
17656
17657
17658
17659
17660
17661
17662
17663
17664
17665
17666
17667
17668
17669
17670
17671
17672
17673
17674
17675
17676
17677
17678
17679
17680
17681
17682
17683
17684
17685
17686
17687
17688
17689
17690
17691
17692
17693
17694
17695
17696
17697
17698
17699
17700
17701
17702
17703
17704
17705
17706
17707
17708
17709
17710
17711
17712
17713
17714
17715
17716
17717
17718
17719
17720
17721
17722
17723
17724
17725
17726
17727
17728
17729
17730
17731
17732
17733
17734
17735
17736
17737
17738
17739
17740
17741
17742
17743
17744
17745
17746
17747
17748
17749
17750
17751
17752
17753
17754
17755
17756
17757
17758
17759
17760
17761
17762
17763
17764
17765
17766
17767
17768
17769
17770
17771
17772
17773
17774
17775
17776
17777
17778
17779
17780
17781
17782
17783
17784
17785
17786
17787
17788
17789
17790
17791
17792
17793
17794
17795
17796
17797
17798
17799
17800
17801
17802
17803
17804
17805
17806
17807
17808
17809
17810
17811
17812
17813
17814
17815
17816
17817
17818
17819
17820
17821
17822
17823
17824
17825
17826
17827
17828
17829
17830
17831
17832
17833
17834
17835
17836
17837
17838
17839
17840
17841
17842
17843
17844
17845
17846
17847
17848
17849
17850
17851
17852
17853
17854
17855
17856
17857
17858
17859
17860
17861
17862
17863
17864
17865
17866
17867
17868
17869
17870
17871
17872
17873
17874
17875
17876
17877
17878
17879
17880
17881
17882
17883
17884
17885
17886
17887
17888
17889
17890
17891
17892
17893
17894
17895
17896
17897
17898
17899
17900
17901
17902
17903
17904
17905
17906
17907
17908
17909
17910
17911
17912
17913
17914
17915
17916
17917
17918
17919
17920
17921
17922
17923
17924
17925
17926
17927
17928
17929
17930
17931
17932
17933
17934
17935
17936
17937
17938
17939
17940
17941
17942
17943
17944
17945
17946
17947
17948
17949
17950
17951
17952
17953
17954
17955
17956
17957
17958
17959
17960
17961
17962
17963
17964
17965
17966
17967
17968
17969
17970
17971
17972
17973
17974
17975
17976
17977
17978
17979
17980
17981
17982
17983
17984
17985
17986
17987
17988
17989
17990
17991
17992
17993
17994
17995
17996
17997
17998
17999
18000
18001
18002
18003
18004
18005
18006
18007
18008
18009
18010
18011
18012
18013
18014
18015
18016
18017
18018
18019
18020
18021
18022
18023
18024
18025
18026
18027
18028
18029
18030
18031
18032
18033
18034
18035
18036
18037
18038
18039
18040
18041
18042
18043
18044
18045
18046
18047
18048
18049
18050
18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
18061
18062
18063
18064
18065
18066
18067
18068
18069
18070
18071
18072
18073
18074
18075
18076
18077
18078
18079
18080
18081
18082
18083
18084
18085
18086
18087
18088
18089
18090
18091
18092
18093
18094
18095
18096
18097
18098
18099
18100
18101
18102
18103
18104
18105
18106
18107
18108
18109
18110
18111
18112
18113
18114
18115
18116
18117
18118
18119
18120
18121
18122
18123
18124
18125
18126
18127
18128
18129
18130
18131
18132
18133
18134
18135
18136
18137
18138
18139
18140
18141
18142
18143
18144
18145
18146
18147
18148
18149
18150
18151
18152
18153
18154
18155
18156
18157
18158
18159
18160
18161
18162
18163
18164
18165
18166
18167
18168
18169
18170
18171
18172
18173
18174
18175
18176
18177
18178
18179
18180
18181
18182
18183
18184
18185
18186
18187
18188
18189
18190
18191
18192
18193
18194
18195
18196
18197
18198
18199
18200
18201
18202
18203
18204
18205
18206
18207
18208
18209
18210
18211
18212
18213
18214
18215
18216
18217
18218
18219
18220
18221
18222
18223
18224
18225
18226
18227
18228
18229
18230
18231
18232
18233
18234
18235
18236
18237
18238
18239
18240
18241
18242
18243
18244
18245
18246
18247
18248
18249
18250
18251
18252
18253
18254
18255
18256
18257
18258
18259
18260
18261
18262
18263
18264
18265
18266
18267
18268
18269
18270
18271
18272
18273
18274
18275
18276
18277
18278
18279
18280
18281
18282
18283
18284
18285
18286
18287
18288
18289
18290
18291
18292
18293
18294
18295
18296
18297
18298
18299
18300
18301
18302
18303
18304
18305
18306
18307
18308
18309
18310
18311
18312
18313
18314
18315
18316
18317
18318
18319
18320
18321
18322
18323
18324
18325
18326
18327
18328
18329
18330
18331
18332
18333
18334
18335
18336
18337
18338
18339
18340
18341
18342
18343
18344
18345
18346
18347
18348
18349
18350
18351
18352
18353
18354
18355
18356
18357
18358
18359
18360
18361
18362
18363
18364
18365
18366
18367
18368
18369
18370
18371
18372
18373
18374
18375
18376
18377
18378
18379
18380
18381
18382
18383
18384
18385
18386
18387
18388
18389
18390
18391
18392
18393
18394
18395
18396
18397
18398
18399
18400
18401
18402
18403
18404
18405
18406
18407
18408
18409
18410
18411
18412
18413
18414
18415
18416
18417
18418
18419
18420
18421
18422
18423
18424
18425
18426
18427
18428
18429
18430
18431
18432
18433
18434
18435
18436
18437
18438
18439
18440
18441
18442
18443
18444
18445
18446
18447
18448
18449
18450
18451
18452
18453
18454
18455
18456
18457
18458
18459
18460
18461
18462
18463
18464
18465
18466
18467
18468
18469
18470
18471
18472
18473
18474
18475
18476
18477
18478
18479
18480
18481
18482
18483
18484
18485
18486
18487
18488
18489
18490
18491
18492
18493
18494
18495
18496
18497
18498
18499
18500
18501
18502
18503
18504
18505
18506
18507
18508
18509
18510
18511
18512
18513
18514
18515
18516
18517
18518
18519
18520
18521
18522
18523
18524
18525
18526
18527
18528
18529
18530
18531
18532
18533
18534
18535
18536
18537
18538
18539
18540
18541
18542
18543
18544
18545
18546
18547
18548
18549
18550
18551
18552
18553
18554
18555
18556
18557
18558
18559
18560
18561
18562
18563
18564
18565
18566
18567
18568
18569
18570
18571
18572
18573
18574
18575
18576
18577
18578
18579
18580
18581
18582
18583
18584
18585
18586
18587
18588
18589
18590
18591
18592
18593
18594
18595
18596
18597
18598
18599
18600
18601
18602
18603
18604
18605
18606
18607
18608
18609
18610
18611
18612
18613
18614
18615
18616
18617
18618
18619
18620
18621
18622
18623
18624
18625
18626
18627
18628
18629
18630
18631
18632
18633
18634
18635
18636
18637
18638
18639
18640
18641
18642
18643
18644
18645
18646
18647
18648
18649
18650
18651
18652
18653
18654
18655
18656
18657
18658
18659
18660
18661
18662
18663
18664
18665
18666
18667
18668
18669
18670
18671
18672
18673
18674
18675
18676
18677
18678
18679
18680
18681
18682
18683
18684
18685
18686
18687
18688
18689
18690
18691
18692
18693
18694
18695
18696
18697
18698
18699
18700
18701
18702
18703
18704
18705
18706
18707
18708
18709
18710
18711
18712
18713
18714
18715
18716
18717
18718
18719
18720
18721
18722
18723
18724
18725
18726
18727
18728
18729
18730
18731
18732
18733
18734
18735
18736
18737
18738
18739
18740
18741
18742
18743
18744
18745
18746
18747
18748
18749
18750
18751
18752
18753
18754
18755
18756
18757
18758
18759
18760
18761
18762
18763
18764
18765
18766
18767
18768
18769
18770
18771
18772
18773
18774
18775
18776
18777
18778
18779
18780
18781
18782
18783
18784
18785
18786
18787
18788
18789
18790
18791
18792
18793
18794
18795
18796
18797
18798
18799
18800
18801
18802
18803
18804
18805
18806
18807
18808
18809
18810
18811
18812
18813
18814
18815
18816
18817
18818
18819
18820
18821
18822
18823
18824
18825
18826
18827
18828
18829
18830
18831
18832
18833
18834
18835
18836
18837
18838
18839
18840
18841
18842
18843
18844
18845
18846
18847
18848
18849
18850
18851
18852
18853
18854
18855
18856
18857
18858
18859
18860
18861
18862
18863
18864
18865
18866
18867
18868
18869
18870
18871
18872
18873
18874
18875
18876
18877
18878
18879
18880
18881
18882
18883
18884
18885
18886
18887
18888
18889
18890
18891
18892
18893
18894
18895
18896
18897
18898
18899
18900
18901
18902
18903
18904
18905
18906
18907
18908
18909
18910
18911
18912
18913
18914
18915
18916
18917
18918
18919
18920
18921
18922
18923
18924
18925
18926
18927
18928
18929
18930
18931
18932
18933
18934
18935
18936
18937
18938
18939
18940
18941
18942
18943
18944
18945
18946
18947
18948
18949
18950
18951
18952
18953
18954
18955
18956
18957
18958
18959
18960
18961
18962
18963
18964
18965
18966
18967
18968
18969
18970
18971
18972
18973
18974
18975
18976
18977
18978
18979
18980
18981
18982
18983
18984
18985
18986
18987
18988
18989
18990
18991
18992
18993
18994
18995
18996
18997
18998
18999
19000
19001
19002
19003
19004
19005
19006
19007
19008
19009
19010
19011
19012
19013
19014
19015
19016
19017
19018
19019
19020
19021
19022
19023
19024
19025
19026
19027
19028
19029
19030
19031
19032
19033
19034
19035
19036
19037
19038
19039
19040
19041
19042
19043
19044
19045
19046
19047
19048
19049
19050
19051
19052
19053
19054
19055
19056
19057
19058
19059
19060
19061
19062
19063
19064
19065
19066
19067
19068
19069
19070
19071
19072
19073
19074
19075
19076
19077
19078
19079
19080
19081
19082
19083
19084
19085
19086
19087
19088
19089
19090
19091
19092
19093
19094
19095
19096
19097
19098
19099
19100
19101
19102
19103
19104
19105
19106
19107
19108
19109
19110
19111
19112
19113
19114
19115
19116
19117
19118
19119
19120
19121
19122
19123
19124
19125
19126
19127
19128
19129
19130
19131
19132
19133
19134
19135
19136
19137
19138
19139
19140
19141
19142
19143
19144
19145
19146
19147
19148
19149
19150
19151
19152
19153
19154
19155
19156
19157
19158
19159
19160
19161
19162
19163
19164
19165
19166
19167
19168
19169
19170
19171
19172
19173
19174
19175
19176
19177
19178
19179
19180
19181
19182
19183
19184
19185
19186
19187
19188
19189
19190
19191
19192
19193
19194
19195
19196
19197
19198
19199
19200
19201
19202
19203
19204
19205
19206
19207
19208
19209
19210
19211
19212
19213
19214
19215
19216
19217
19218
19219
19220
19221
19222
19223
19224
19225
19226
19227
19228
19229
19230
19231
19232
19233
19234
19235
19236
19237
19238
19239
19240
19241
19242
19243
19244
19245
19246
19247
19248
19249
19250
19251
19252
19253
19254
19255
19256
19257
19258
19259
19260
19261
19262
19263
19264
19265
19266
19267
19268
19269
19270
19271
19272
19273
19274
19275
19276
19277
19278
19279
19280
19281
19282
19283
19284
19285
19286
19287
19288
19289
19290
19291
19292
19293
19294
19295
19296
19297
19298
19299
19300
19301
19302
19303
19304
19305
19306
19307
19308
19309
19310
19311
19312
19313
19314
19315
19316
19317
19318
19319
19320
19321
19322
19323
19324
19325
19326
19327
19328
19329
19330
19331
19332
19333
19334
19335
19336
19337
19338
19339
19340
19341
19342
19343
19344
19345
19346
19347
19348
19349
19350
19351
19352
19353
19354
19355
19356
19357
19358
19359
19360
19361
19362
19363
19364
19365
19366
19367
19368
19369
19370
19371
19372
19373
19374
19375
19376
19377
19378
19379
19380
19381
19382
19383
19384
19385
19386
19387
19388
19389
19390
19391
19392
19393
19394
19395
19396
19397
19398
19399
19400
19401
19402
19403
19404
19405
19406
19407
19408
19409
19410
19411
19412
19413
19414
19415
19416
19417
19418
19419
19420
19421
19422
19423
19424
19425
19426
19427
19428
19429
19430
19431
19432
19433
19434
19435
19436
19437
19438
19439
19440
19441
19442
19443
19444
19445
19446
19447
19448
19449
19450
19451
19452
19453
19454
19455
19456
19457
19458
19459
19460
19461
19462
19463
19464
19465
19466
19467
19468
19469
19470
19471
19472
19473
19474
19475
19476
19477
19478
19479
19480
19481
19482
19483
19484
19485
19486
19487
19488
19489
19490
19491
19492
19493
19494
19495
19496
19497
19498
19499
19500
19501
19502
19503
19504
19505
19506
19507
19508
19509
19510
19511
19512
19513
19514
19515
19516
19517
19518
19519
19520
19521
19522
19523
19524
19525
19526
19527
19528
19529
19530
19531
19532
19533
19534
19535
19536
19537
19538
19539
19540
19541
19542
19543
19544
19545
19546
19547
19548
19549
19550
19551
19552
19553
19554
19555
19556
19557
19558
19559
19560
19561
19562
19563
19564
19565
19566
19567
19568
19569
19570
19571
19572
19573
19574
19575
19576
19577
19578
19579
19580
19581
19582
19583
19584
19585
19586
19587
19588
19589
19590
19591
19592
19593
19594
19595
19596
19597
19598
19599
19600
19601
19602
19603
19604
19605
19606
19607
19608
19609
19610
19611
19612
19613
19614
19615
19616
19617
19618
19619
19620
19621
19622
19623
19624
19625
19626
19627
19628
19629
19630
19631
19632
19633
19634
19635
19636
19637
19638
19639
19640
19641
19642
19643
19644
19645
19646
19647
19648
19649
19650
19651
19652
19653
19654
19655
19656
19657
19658
19659
19660
19661
19662
19663
19664
19665
19666
19667
19668
19669
19670
19671
19672
19673
19674
19675
19676
19677
19678
19679
19680
19681
19682
19683
19684
19685
19686
19687
19688
19689
19690
19691
19692
19693
19694
19695
19696
19697
19698
19699
19700
19701
19702
19703
19704
19705
19706
19707
19708
19709
19710
19711
19712
19713
19714
19715
19716
19717
19718
19719
19720
19721
19722
19723
19724
19725
19726
19727
19728
19729
19730
19731
19732
19733
19734
19735
19736
19737
19738
19739
19740
19741
19742
19743
19744
19745
19746
19747
19748
19749
19750
19751
19752
19753
19754
19755
19756
19757
19758
19759
19760
19761
19762
19763
19764
19765
19766
19767
19768
19769
19770
19771
19772
19773
19774
19775
19776
19777
19778
19779
19780
19781
19782
19783
19784
19785
19786
19787
19788
19789
19790
19791
19792
19793
19794
19795
19796
19797
19798
19799
19800
19801
19802
19803
19804
19805
19806
19807
19808
19809
19810
19811
19812
19813
19814
19815
19816
19817
19818
19819
19820
19821
19822
19823
19824
19825
19826
19827
19828
19829
19830
19831
19832
19833
19834
19835
19836
19837
19838
19839
19840
19841
19842
19843
19844
19845
19846
19847
19848
19849
19850
19851
19852
19853
19854
19855
19856
19857
19858
19859
19860
19861
19862
19863
19864
19865
19866
19867
19868
19869
19870
19871
19872
19873
19874
19875
19876
19877
19878
19879
19880
19881
19882
19883
19884
19885
19886
19887
19888
19889
19890
19891
19892
19893
19894
19895
19896
19897
19898
19899
19900
19901
19902
19903
19904
19905
19906
19907
19908
19909
19910
19911
19912
19913
19914
19915
19916
19917
19918
19919
19920
19921
19922
19923
19924
19925
19926
19927
19928
19929
19930
19931
19932
19933
19934
19935
19936
19937
19938
19939
19940
19941
19942
19943
19944
19945
19946
19947
19948
19949
19950
19951
19952
19953
19954
19955
19956
19957
19958
19959
19960
19961
19962
19963
19964
19965
19966
19967
19968
19969
19970
19971
19972
19973
19974
19975
19976
19977
19978
19979
19980
19981
19982
19983
19984
19985
19986
19987
19988
19989
19990
19991
19992
19993
19994
19995
19996
19997
19998
19999
20000
20001
20002
20003
20004
20005
20006
20007
20008
20009
20010
20011
20012
20013
20014
20015
20016
20017
20018
20019
20020
20021
20022
20023
20024
20025
20026
20027
20028
20029
20030
20031
20032
20033
20034
20035
20036
20037
20038
20039
20040
20041
20042
20043
20044
20045
20046
20047
20048
20049
20050
20051
20052
20053
20054
20055
20056
20057
20058
20059
20060
20061
20062
20063
20064
20065
20066
20067
20068
20069
20070
20071
20072
20073
20074
20075
20076
20077
20078
20079
20080
20081
20082
20083
20084
20085
20086
20087
20088
20089
20090
20091
20092
20093
20094
20095
20096
20097
20098
20099
20100
20101
20102
20103
20104
20105
20106
20107
20108
20109
20110
20111
20112
20113
20114
20115
20116
20117
20118
20119
20120
20121
20122
20123
20124
20125
20126
20127
20128
20129
20130
20131
20132
20133
20134
20135
20136
20137
20138
20139
20140
20141
20142
20143
20144
20145
20146
20147
20148
20149
20150
20151
20152
20153
20154
20155
20156
20157
20158
20159
20160
20161
20162
20163
20164
20165
20166
20167
20168
20169
20170
20171
20172
20173
20174
20175
20176
20177
20178
20179
20180
20181
20182
20183
20184
20185
20186
20187
20188
20189
20190
20191
20192
20193
20194
20195
20196
20197
20198
20199
20200
20201
20202
20203
20204
20205
20206
20207
20208
20209
20210
20211
20212
20213
20214
20215
20216
20217
20218
20219
20220
20221
20222
20223
20224
20225
20226
20227
20228
20229
20230
20231
20232
20233
20234
20235
20236
20237
20238
20239
20240
20241
20242
20243
20244
20245
20246
20247
20248
20249
20250
20251
20252
20253
20254
20255
20256
20257
20258
20259
20260
20261
20262
20263
20264
20265
20266
20267
20268
20269
20270
20271
20272
20273
20274
20275
20276
20277
20278
20279
20280
20281
20282
20283
20284
20285
20286
20287
20288
20289
20290
20291
20292
20293
20294
20295
20296
20297
20298
20299
20300
20301
20302
20303
20304
20305
20306
20307
20308
20309
20310
20311
20312
20313
20314
20315
20316
20317
20318
20319
20320
20321
20322
20323
20324
20325
20326
20327
20328
20329
20330
20331
20332
20333
20334
20335
20336
20337
20338
20339
20340
20341
20342
20343
20344
20345
20346
20347
20348
20349
20350
20351
20352
20353
20354
20355
20356
20357
20358
20359
20360
20361
20362
20363
20364
20365
20366
20367
20368
20369
20370
20371
20372
20373
20374
20375
20376
20377
20378
20379
20380
20381
20382
20383
20384
20385
20386
20387
20388
20389
20390
20391
20392
20393
20394
20395
20396
20397
20398
20399
20400
20401
20402
20403
20404
20405
20406
20407
20408
20409
20410
20411
20412
20413
20414
20415
20416
20417
20418
20419
20420
20421
20422
20423
20424
20425
20426
20427
20428
20429
20430
20431
20432
20433
20434
20435
20436
20437
20438
20439
20440
20441
20442
20443
20444
20445
20446
20447
20448
20449
20450
20451
20452
20453
20454
20455
20456
20457
20458
20459
20460
20461
20462
20463
20464
20465
20466
20467
20468
20469
20470
20471
20472
20473
20474
20475
20476
20477
20478
20479
20480
20481
20482
20483
20484
20485
20486
20487
20488
20489
20490
20491
20492
20493
20494
20495
20496
20497
20498
20499
20500
20501
20502
20503
20504
20505
20506
20507
20508
20509
20510
20511
20512
20513
20514
20515
20516
20517
20518
20519
20520
20521
20522
20523
20524
20525
20526
20527
20528
20529
20530
20531
20532
20533
20534
20535
20536
20537
20538
20539
20540
20541
20542
20543
20544
20545
20546
20547
20548
20549
20550
20551
20552
20553
20554
20555
20556
20557
20558
20559
20560
20561
20562
20563
20564
20565
20566
20567
20568
20569
20570
20571
20572
20573
20574
20575
20576
20577
20578
20579
20580
20581
20582
20583
20584
20585
20586
20587
20588
20589
20590
20591
20592
20593
20594
20595
20596
20597
20598
20599
20600
20601
20602
20603
20604
20605
20606
20607
20608
20609
20610
20611
20612
20613
20614
20615
20616
20617
20618
20619
20620
20621
20622
20623
20624
20625
20626
20627
20628
20629
20630
20631
20632
20633
20634
20635
20636
20637
20638
20639
20640
20641
20642
20643
20644
20645
20646
20647
20648
20649
20650
20651
20652
20653
20654
20655
20656
20657
20658
20659
20660
20661
20662
20663
20664
20665
20666
20667
20668
20669
20670
20671
20672
20673
20674
20675
20676
20677
20678
20679
20680
20681
20682
20683
20684
20685
20686
20687
20688
20689
20690
20691
20692
20693
20694
20695
20696
20697
20698
20699
20700
20701
20702
20703
20704
20705
20706
20707
20708
20709
20710
20711
20712
20713
20714
20715
20716
20717
20718
20719
20720
20721
20722
20723
20724
20725
20726
20727
20728
20729
20730
20731
20732
20733
20734
20735
20736
20737
20738
20739
20740
20741
20742
20743
20744
20745
20746
20747
20748
20749
20750
20751
20752
20753
20754
20755
20756
20757
20758
20759
20760
20761
20762
20763
20764
20765
20766
20767
20768
20769
20770
20771
20772
20773
20774
20775
20776
20777
20778
20779
20780
20781
20782
20783
20784
20785
20786
20787
20788
20789
20790
20791
20792
20793
20794
20795
20796
20797
20798
20799
20800
20801
20802
20803
20804
20805
20806
20807
20808
20809
20810
20811
20812
20813
20814
20815
20816
20817
20818
20819
20820
20821
20822
20823
20824
20825
20826
20827
20828
20829
20830
20831
20832
20833
20834
20835
20836
20837
20838
20839
20840
20841
20842
20843
20844
20845
20846
20847
20848
20849
20850
20851
20852
20853
20854
20855
20856
20857
20858
20859
20860
20861
20862
20863
20864
20865
20866
20867
20868
20869
20870
20871
20872
20873
20874
20875
20876
20877
20878
20879
20880
20881
20882
20883
20884
20885
20886
20887
20888
20889
20890
20891
20892
20893
20894
20895
20896
20897
20898
20899
20900
20901
20902
20903
20904
20905
20906
20907
20908
20909
20910
20911
20912
20913
20914
20915
20916
20917
20918
20919
20920
20921
20922
20923
20924
20925
20926
20927
20928
20929
20930
20931
20932
20933
20934
20935
20936
20937
20938
20939
20940
20941
20942
20943
20944
20945
20946
20947
20948
20949
20950
20951
20952
20953
20954
20955
20956
20957
20958
20959
20960
20961
20962
20963
20964
20965
20966
20967
20968
20969
20970
20971
20972
20973
20974
20975
20976
20977
20978
20979
20980
20981
20982
20983
20984
20985
20986
20987
20988
20989
20990
20991
20992
20993
20994
20995
20996
20997
20998
20999
21000
21001
21002
21003
21004
21005
21006
21007
21008
21009
21010
21011
21012
21013
21014
21015
21016
21017
21018
21019
21020
21021
21022
21023
21024
21025
21026
21027
21028
21029
21030
21031
21032
21033
21034
21035
21036
21037
21038
21039
21040
21041
21042
21043
21044
21045
21046
21047
21048
21049
21050
21051
21052
21053
21054
21055
21056
21057
21058
21059
21060
21061
21062
21063
21064
21065
21066
21067
21068
21069
21070
21071
21072
21073
21074
21075
21076
21077
21078
21079
21080
21081
21082
21083
21084
21085
21086
21087
21088
21089
21090
21091
21092
21093
21094
21095
21096
21097
21098
21099
21100
21101
21102
21103
21104
21105
21106
21107
21108
21109
21110
21111
21112
21113
21114
21115
21116
21117
21118
21119
21120
21121
21122
21123
21124
21125
21126
21127
21128
21129
21130
21131
21132
21133
21134
21135
21136
21137
21138
21139
21140
21141
21142
21143
21144
21145
21146
21147
21148
21149
21150
21151
21152
21153
21154
21155
21156
21157
21158
21159
21160
21161
21162
21163
21164
21165
21166
21167
21168
21169
21170
21171
21172
21173
21174
21175
21176
21177
21178
21179
21180
21181
21182
21183
21184
21185
21186
21187
21188
21189
21190
21191
21192
21193
21194
21195
21196
21197
21198
21199
21200
21201
21202
21203
21204
21205
21206
21207
21208
21209
21210
21211
21212
21213
21214
21215
21216
21217
21218
21219
21220
21221
21222
21223
21224
21225
21226
21227
21228
21229
21230
21231
21232
21233
21234
21235
21236
21237
21238
21239
21240
21241
21242
21243
21244
21245
21246
21247
21248
21249
21250
21251
21252
21253
21254
21255
21256
21257
21258
21259
21260
21261
21262
21263
21264
21265
21266
21267
21268
21269
21270
21271
21272
21273
21274
21275
21276
21277
21278
21279
21280
21281
21282
21283
21284
21285
21286
21287
21288
21289
21290
21291
21292
21293
21294
21295
21296
21297
21298
21299
21300
21301
21302
21303
21304
21305
21306
21307
21308
21309
21310
21311
21312
21313
21314
21315
21316
21317
21318
21319
21320
21321
21322
21323
21324
21325
21326
21327
21328
21329
21330
21331
21332
21333
21334
21335
21336
21337
21338
21339
21340
21341
21342
21343
21344
21345
21346
21347
21348
21349
21350
21351
21352
21353
21354
21355
21356
21357
21358
21359
21360
21361
21362
21363
21364
21365
21366
21367
21368
21369
21370
21371
21372
21373
21374
21375
21376
21377
21378
21379
21380
21381
21382
21383
21384
21385
21386
21387
21388
21389
21390
21391
21392
21393
21394
21395
21396
21397
21398
21399
21400
21401
21402
21403
21404
21405
21406
21407
21408
21409
21410
21411
21412
21413
21414
21415
21416
21417
21418
21419
21420
21421
21422
21423
21424
21425
21426
21427
21428
21429
21430
21431
21432
21433
21434
21435
21436
21437
21438
21439
21440
21441
21442
21443
21444
21445
21446
21447
21448
21449
21450
21451
21452
21453
21454
21455
21456
21457
21458
21459
21460
21461
21462
21463
21464
21465
21466
21467
21468
21469
21470
21471
21472
21473
21474
21475
21476
21477
21478
21479
21480
21481
21482
21483
21484
21485
21486
21487
21488
21489
21490
21491
21492
21493
21494
21495
21496
21497
21498
21499
21500
21501
21502
21503
21504
21505
21506
21507
21508
21509
21510
21511
21512
21513
21514
21515
21516
21517
21518
21519
21520
21521
21522
21523
21524
21525
21526
21527
21528
21529
21530
21531
21532
21533
21534
21535
21536
21537
21538
21539
21540
21541
21542
21543
21544
21545
21546
21547
21548
21549
21550
21551
21552
21553
21554
21555
21556
21557
21558
21559
21560
21561
21562
21563
21564
21565
21566
21567
21568
21569
21570
21571
21572
21573
21574
21575
21576
21577
21578
21579
21580
21581
21582
21583
21584
21585
21586
21587
21588
21589
21590
21591
21592
21593
21594
21595
21596
21597
21598
21599
21600
21601
21602
21603
21604
21605
21606
21607
21608
21609
21610
21611
21612
21613
21614
21615
21616
21617
21618
21619
21620
21621
21622
21623
21624
21625
21626
21627
21628
21629
21630
21631
21632
21633
21634
21635
21636
21637
21638
21639
21640
21641
21642
21643
21644
21645
21646
21647
21648
21649
21650
21651
21652
21653
21654
21655
21656
21657
21658
21659
21660
21661
21662
21663
21664
21665
21666
21667
21668
21669
21670
21671
21672
21673
21674
21675
21676
21677
21678
21679
21680
21681
21682
21683
21684
21685
21686
21687
21688
21689
21690
21691
21692
21693
21694
21695
21696
21697
21698
21699
21700
21701
21702
21703
21704
21705
21706
21707
21708
21709
21710
21711
21712
21713
21714
21715
21716
21717
21718
21719
21720
21721
21722
21723
21724
21725
21726
21727
21728
21729
21730
21731
21732
21733
21734
21735
21736
21737
21738
21739
21740
21741
21742
21743
21744
21745
21746
21747
21748
21749
21750
21751
21752
21753
21754
21755
21756
21757
21758
21759
21760
21761
21762
21763
21764
21765
21766
21767
21768
21769
21770
21771
21772
21773
21774
21775
21776
21777
21778
21779
21780
21781
21782
21783
21784
21785
21786
21787
21788
21789
21790
21791
21792
21793
21794
21795
21796
21797
21798
21799
21800
21801
21802
21803
21804
21805
21806
21807
21808
21809
21810
21811
21812
21813
21814
21815
21816
21817
21818
21819
21820
21821
21822
21823
21824
21825
21826
21827
21828
21829
21830
21831
21832
21833
21834
21835
21836
21837
21838
21839
21840
21841
21842
21843
21844
21845
21846
21847
21848
21849
21850
21851
21852
21853
21854
21855
21856
21857
21858
21859
21860
21861
21862
21863
21864
21865
21866
21867
21868
21869
21870
21871
21872
21873
21874
21875
21876
21877
21878
21879
21880
21881
21882
21883
21884
21885
21886
21887
21888
21889
21890
21891
21892
21893
21894
21895
21896
21897
21898
21899
21900
21901
21902
21903
21904
21905
21906
21907
21908
21909
21910
21911
21912
21913
21914
21915
21916
21917
21918
21919
21920
21921
21922
21923
21924
21925
21926
21927
21928
21929
21930
21931
21932
21933
21934
21935
21936
21937
21938
21939
21940
21941
21942
21943
21944
21945
21946
21947
21948
21949
21950
21951
21952
21953
21954
21955
21956
21957
21958
21959
21960
21961
21962
21963
21964
21965
21966
21967
21968
21969
21970
21971
21972
21973
21974
21975
21976
21977
21978
21979
21980
21981
21982
21983
21984
21985
21986
21987
21988
21989
21990
21991
21992
21993
21994
21995
21996
21997
21998
21999
22000
22001
22002
22003
22004
22005
22006
22007
22008
22009
22010
22011
22012
22013
22014
22015
22016
22017
22018
22019
22020
22021
22022
22023
22024
22025
22026
22027
22028
22029
22030
22031
22032
22033
22034
22035
22036
22037
22038
22039
22040
22041
22042
22043
22044
22045
22046
22047
22048
22049
22050
22051
22052
22053
22054
22055
22056
22057
22058
22059
22060
22061
22062
22063
22064
22065
22066
22067
22068
22069
22070
22071
22072
22073
22074
22075
22076
22077
22078
22079
22080
22081
22082
22083
22084
22085
22086
22087
22088
22089
22090
22091
22092
22093
22094
22095
22096
22097
22098
22099
22100
22101
22102
22103
22104
22105
22106
22107
22108
22109
22110
22111
22112
22113
22114
22115
22116
22117
22118
22119
22120
22121
22122
22123
22124
22125
22126
22127
22128
22129
22130
22131
22132
22133
22134
22135
22136
22137
22138
22139
22140
22141
22142
22143
22144
22145
22146
22147
22148
22149
22150
22151
22152
22153
22154
22155
22156
22157
22158
22159
22160
22161
22162
22163
22164
22165
22166
22167
22168
22169
22170
22171
22172
22173
22174
22175
22176
22177
22178
22179
22180
22181
22182
22183
22184
22185
22186
22187
22188
22189
22190
22191
22192
22193
22194
22195
22196
22197
22198
22199
22200
22201
22202
22203
22204
22205
22206
22207
22208
22209
22210
22211
22212
22213
22214
22215
22216
22217
22218
22219
22220
22221
22222
22223
22224
22225
22226
22227
22228
22229
22230
22231
22232
22233
22234
22235
22236
22237
22238
22239
22240
22241
22242
22243
22244
22245
22246
22247
22248
22249
22250
22251
22252
22253
22254
22255
22256
22257
22258
22259
22260
22261
22262
22263
22264
22265
22266
22267
22268
22269
22270
22271
22272
22273
22274
22275
22276
22277
22278
22279
22280
22281
22282
22283
22284
22285
22286
22287
22288
22289
22290
22291
22292
22293
22294
22295
22296
22297
22298
22299
22300
22301
22302
22303
22304
22305
22306
22307
22308
22309
22310
22311
22312
22313
22314
22315
22316
22317
22318
22319
22320
22321
22322
22323
22324
22325
22326
22327
22328
22329
22330
22331
22332
22333
22334
22335
22336
22337
22338
22339
22340
22341
22342
22343
22344
22345
22346
22347
22348
22349
22350
22351
22352
22353
22354
22355
22356
22357
22358
22359
22360
22361
22362
22363
22364
22365
22366
22367
22368
22369
22370
22371
22372
22373
22374
22375
22376
22377
22378
22379
22380
22381
22382
22383
22384
22385
22386
22387
22388
22389
22390
22391
22392
22393
22394
22395
22396
22397
22398
22399
22400
22401
22402
22403
22404
22405
22406
22407
22408
22409
22410
22411
22412
22413
22414
22415
22416
22417
22418
22419
22420
22421
22422
22423
22424
22425
22426
22427
22428
22429
22430
22431
22432
22433
22434
22435
22436
22437
22438
22439
22440
22441
22442
22443
22444
22445
22446
22447
22448
22449
22450
22451
22452
22453
22454
22455
22456
22457
22458
22459
22460
22461
22462
22463
22464
22465
22466
22467
22468
22469
22470
22471
22472
22473
22474
22475
22476
22477
22478
22479
22480
22481
22482
22483
22484
22485
22486
22487
22488
22489
22490
22491
22492
22493
22494
22495
22496
22497
22498
22499
22500
22501
22502
22503
22504
22505
22506
22507
22508
22509
22510
22511
22512
22513
22514
22515
22516
22517
22518
22519
22520
22521
22522
22523
22524
22525
22526
22527
22528
22529
22530
22531
22532
22533
22534
22535
22536
22537
22538
22539
22540
22541
22542
22543
22544
22545
22546
22547
22548
22549
22550
22551
22552
22553
22554
22555
22556
22557
22558
22559
22560
22561
22562
22563
22564
22565
22566
22567
22568
22569
22570
22571
22572
22573
22574
22575
22576
22577
22578
22579
22580
22581
22582
22583
22584
22585
22586
22587
22588
22589
22590
22591
22592
22593
22594
22595
22596
22597
22598
22599
22600
22601
22602
22603
22604
22605
22606
22607
22608
22609
22610
22611
22612
22613
22614
22615
22616
22617
22618
22619
22620
22621
22622
22623
22624
22625
22626
22627
22628
22629
22630
22631
22632
22633
22634
22635
22636
22637
22638
22639
22640
22641
22642
22643
22644
22645
22646
22647
22648
22649
22650
22651
22652
22653
22654
22655
22656
22657
22658
22659
22660
22661
22662
22663
22664
22665
22666
22667
22668
22669
22670
22671
22672
22673
22674
22675
22676
22677
22678
22679
22680
22681
22682
22683
22684
22685
22686
22687
22688
22689
22690
22691
22692
22693
22694
22695
22696
22697
22698
22699
22700
22701
22702
22703
22704
22705
22706
22707
22708
22709
22710
22711
22712
22713
22714
22715
22716
22717
22718
22719
22720
22721
22722
22723
22724
22725
22726
22727
22728
22729
22730
22731
22732
22733
22734
22735
22736
22737
22738
22739
22740
22741
22742
22743
22744
22745
22746
22747
22748
22749
22750
22751
22752
22753
22754
22755
22756
22757
22758
22759
22760
22761
22762
22763
22764
22765
22766
22767
22768
22769
22770
22771
22772
22773
22774
22775
22776
22777
22778
22779
22780
22781
22782
22783
22784
22785
22786
22787
22788
22789
22790
22791
22792
22793
22794
22795
22796
22797
22798
22799
22800
22801
22802
22803
22804
22805
22806
22807
22808
22809
22810
22811
22812
22813
22814
22815
22816
22817
22818
22819
22820
22821
22822
22823
22824
22825
22826
22827
22828
22829
22830
22831
22832
22833
22834
22835
22836
22837
22838
22839
22840
22841
22842
22843
22844
22845
22846
22847
22848
22849
22850
22851
22852
22853
22854
22855
22856
22857
22858
22859
22860
22861
22862
22863
22864
22865
22866
22867
22868
22869
22870
22871
22872
22873
22874
22875
22876
22877
22878
22879
22880
22881
22882
22883
22884
22885
22886
22887
22888
22889
22890
22891
22892
22893
22894
22895
22896
22897
22898
22899
22900
22901
22902
22903
22904
22905
22906
22907
22908
22909
22910
22911
22912
22913
22914
22915
22916
22917
22918
22919
22920
22921
22922
22923
22924
22925
22926
22927
22928
22929
22930
22931
22932
22933
22934
22935
22936
22937
22938
22939
22940
22941
22942
22943
22944
22945
22946
22947
22948
22949
22950
22951
22952
22953
22954
22955
22956
22957
22958
22959
22960
22961
22962
22963
22964
22965
22966
22967
22968
22969
22970
22971
22972
22973
22974
22975
22976
22977
22978
22979
22980
22981
22982
22983
22984
22985
22986
22987
22988
22989
22990
22991
22992
22993
22994
22995
22996
22997
22998
22999
23000
23001
23002
23003
23004
23005
23006
23007
23008
23009
23010
23011
23012
23013
23014
23015
23016
23017
23018
23019
23020
23021
23022
23023
23024
23025
23026
23027
23028
23029
23030
23031
23032
23033
23034
23035
23036
23037
23038
23039
23040
23041
23042
23043
23044
23045
23046
23047
23048
23049
23050
23051
23052
23053
23054
23055
23056
23057
23058
23059
23060
23061
23062
23063
23064
23065
23066
23067
23068
23069
23070
23071
23072
23073
23074
23075
23076
23077
23078
23079
23080
23081
23082
23083
23084
23085
23086
23087
23088
23089
23090
23091
23092
23093
23094
23095
23096
23097
23098
23099
23100
23101
23102
23103
23104
23105
23106
23107
23108
23109
23110
23111
23112
23113
23114
23115
23116
23117
23118
23119
23120
23121
23122
23123
23124
23125
23126
23127
23128
23129
23130
23131
23132
23133
23134
23135
23136
23137
23138
23139
23140
23141
23142
23143
23144
23145
23146
23147
23148
23149
23150
23151
23152
23153
23154
23155
23156
23157
23158
23159
23160
23161
23162
23163
23164
23165
23166
23167
23168
23169
23170
23171
23172
23173
23174
23175
23176
23177
23178
23179
23180
23181
23182
23183
23184
23185
23186
23187
23188
23189
23190
23191
23192
23193
23194
23195
23196
23197
23198
23199
23200
23201
23202
23203
23204
23205
23206
23207
23208
23209
23210
23211
23212
23213
23214
23215
23216
23217
23218
23219
23220
23221
23222
23223
23224
23225
23226
23227
23228
23229
23230
23231
23232
23233
23234
23235
23236
23237
23238
23239
23240
23241
23242
23243
23244
23245
23246
23247
23248
23249
23250
23251
23252
23253
23254
23255
23256
23257
23258
23259
23260
23261
23262
23263
23264
23265
23266
23267
23268
23269
23270
23271
23272
23273
23274
23275
23276
23277
23278
23279
23280
23281
23282
23283
23284
23285
23286
23287
23288
23289
23290
23291
23292
23293
23294
23295
23296
23297
23298
23299
23300
23301
23302
23303
23304
23305
23306
23307
23308
23309
23310
23311
23312
23313
23314
23315
23316
23317
23318
23319
23320
23321
23322
23323
23324
23325
23326
23327
23328
23329
23330
23331
23332
23333
23334
23335
23336
23337
23338
23339
23340
23341
23342
23343
23344
23345
23346
23347
23348
23349
23350
23351
23352
23353
23354
23355
23356
23357
23358
23359
23360
23361
23362
23363
23364
23365
23366
23367
23368
23369
23370
23371
23372
23373
23374
23375
23376
23377
23378
23379
23380
23381
23382
23383
23384
23385
23386
23387
23388
23389
23390
23391
23392
23393
23394
23395
23396
23397
23398
23399
23400
23401
23402
23403
23404
23405
23406
23407
23408
23409
23410
23411
23412
23413
23414
23415
23416
23417
23418
23419
23420
23421
23422
23423
23424
23425
23426
23427
23428
23429
23430
23431
23432
23433
23434
23435
23436
23437
23438
23439
23440
23441
23442
23443
23444
23445
23446
23447
23448
23449
23450
23451
23452
23453
23454
23455
23456
23457
23458
23459
23460
23461
23462
23463
23464
23465
23466
23467
23468
23469
23470
23471
23472
23473
23474
23475
23476
23477
23478
23479
23480
23481
23482
23483
23484
23485
23486
23487
23488
23489
23490
23491
23492
23493
23494
23495
23496
23497
23498
23499
23500
23501
23502
23503
23504
23505
23506
23507
23508
23509
23510
23511
23512
23513
23514
23515
23516
23517
23518
23519
23520
23521
23522
23523
23524
23525
23526
23527
23528
23529
23530
23531
23532
23533
23534
23535
23536
23537
23538
23539
23540
23541
23542
23543
23544
23545
23546
23547
23548
23549
23550
23551
23552
23553
23554
23555
23556
23557
23558
23559
23560
23561
23562
23563
23564
23565
23566
23567
23568
23569
23570
23571
23572
23573
23574
23575
23576
23577
23578
23579
23580
23581
23582
23583
23584
23585
23586
23587
23588
23589
23590
23591
23592
23593
23594
23595
23596
23597
23598
23599
23600
23601
23602
23603
23604
23605
23606
23607
23608
23609
23610
23611
23612
23613
23614
23615
23616
23617
23618
23619
23620
23621
23622
23623
23624
23625
23626
23627
23628
23629
23630
23631
23632
23633
23634
23635
23636
23637
23638
23639
23640
23641
23642
23643
23644
23645
23646
23647
23648
23649
23650
23651
23652
23653
23654
23655
23656
23657
23658
23659
23660
23661
23662
23663
23664
23665
23666
23667
23668
23669
23670
23671
23672
23673
23674
23675
23676
23677
23678
23679
23680
23681
23682
23683
23684
23685
23686
23687
23688
23689
23690
23691
23692
23693
23694
23695
23696
23697
23698
23699
23700
23701
23702
23703
23704
23705
23706
23707
23708
23709
23710
23711
23712
23713
23714
23715
23716
23717
23718
23719
23720
23721
23722
23723
23724
23725
23726
23727
23728
23729
23730
23731
23732
23733
23734
23735
23736
23737
23738
23739
23740
23741
23742
23743
23744
23745
23746
23747
23748
23749
23750
23751
23752
23753
23754
23755
23756
23757
23758
23759
23760
23761
23762
23763
23764
23765
23766
23767
23768
23769
23770
23771
23772
23773
23774
23775
23776
23777
23778
23779
23780
23781
23782
23783
23784
23785
23786
23787
23788
23789
23790
23791
23792
23793
23794
23795
23796
23797
23798
23799
23800
23801
23802
23803
23804
23805
23806
23807
23808
23809
23810
23811
23812
23813
23814
23815
23816
23817
23818
23819
23820
23821
23822
23823
23824
23825
23826
23827
23828
23829
23830
23831
23832
23833
23834
23835
23836
23837
23838
23839
23840
23841
23842
23843
23844
23845
23846
23847
23848
23849
23850
23851
23852
23853
23854
23855
23856
23857
23858
23859
23860
23861
23862
23863
23864
23865
23866
23867
23868
23869
23870
23871
23872
23873
23874
23875
23876
23877
23878
23879
23880
23881
23882
23883
23884
23885
23886
23887
23888
23889
23890
23891
23892
23893
23894
23895
23896
23897
23898
23899
23900
23901
23902
23903
23904
23905
23906
23907
23908
23909
23910
23911
23912
23913
23914
23915
23916
23917
23918
23919
23920
23921
23922
23923
23924
23925
23926
23927
23928
23929
23930
23931
23932
23933
23934
23935
23936
23937
23938
23939
23940
23941
23942
23943
23944
23945
23946
23947
23948
23949
23950
23951
23952
23953
23954
23955
23956
23957
23958
23959
23960
23961
23962
23963
23964
23965
23966
23967
23968
23969
23970
23971
23972
23973
23974
23975
23976
23977
23978
23979
23980
23981
23982
23983
23984
23985
23986
23987
23988
23989
23990
23991
23992
23993
23994
23995
23996
23997
23998
23999
24000
24001
24002
24003
24004
24005
24006
24007
24008
24009
24010
24011
24012
24013
24014
24015
24016
24017
24018
24019
24020
24021
24022
24023
24024
24025
24026
24027
24028
24029
24030
24031
24032
24033
24034
24035
24036
24037
24038
24039
24040
24041
24042
24043
24044
24045
24046
24047
24048
24049
24050
24051
24052
24053
24054
24055
24056
24057
24058
24059
24060
24061
24062
24063
24064
24065
24066
24067
24068
24069
24070
24071
24072
24073
24074
24075
24076
24077
24078
24079
24080
24081
24082
24083
24084
24085
24086
24087
24088
24089
24090
24091
24092
24093
24094
24095
24096
24097
24098
24099
24100
24101
24102
24103
24104
24105
24106
24107
24108
24109
24110
24111
24112
24113
24114
24115
24116
24117
24118
24119
24120
24121
24122
24123
24124
24125
24126
24127
24128
24129
24130
24131
24132
24133
24134
24135
24136
24137
24138
24139
24140
24141
24142
24143
24144
24145
24146
24147
24148
24149
24150
24151
24152
24153
24154
24155
24156
24157
24158
24159
24160
24161
24162
24163
24164
24165
24166
24167
24168
24169
24170
24171
24172
24173
24174
24175
24176
24177
24178
24179
24180
24181
24182
24183
24184
24185
24186
24187
24188
24189
24190
24191
24192
24193
24194
24195
24196
24197
24198
24199
24200
24201
24202
24203
24204
24205
24206
24207
24208
24209
24210
24211
24212
24213
24214
24215
24216
24217
24218
24219
24220
24221
24222
24223
24224
24225
24226
24227
24228
24229
24230
24231
24232
24233
24234
24235
24236
24237
24238
24239
24240
24241
24242
24243
24244
24245
24246
24247
24248
24249
24250
24251
24252
24253
24254
24255
24256
24257
24258
24259
24260
24261
24262
24263
24264
24265
24266
24267
24268
24269
24270
24271
24272
24273
24274
24275
24276
24277
24278
24279
24280
24281
24282
24283
24284
24285
24286
24287
24288
24289
24290
24291
24292
24293
24294
24295
24296
24297
24298
24299
24300
24301
24302
24303
24304
24305
24306
24307
24308
24309
24310
24311
24312
24313
24314
24315
24316
24317
24318
24319
24320
24321
24322
24323
24324
24325
24326
24327
24328
24329
24330
24331
24332
24333
24334
24335
24336
24337
24338
24339
24340
24341
24342
24343
24344
24345
24346
24347
24348
24349
24350
24351
24352
24353
24354
24355
24356
24357
24358
24359
24360
24361
24362
24363
24364
24365
24366
24367
24368
24369
24370
24371
24372
24373
24374
24375
24376
24377
24378
24379
24380
24381
24382
24383
24384
24385
24386
24387
24388
24389
24390
24391
24392
24393
24394
24395
24396
24397
24398
24399
24400
24401
24402
24403
24404
24405
24406
24407
24408
24409
24410
24411
24412
24413
24414
24415
24416
24417
24418
24419
24420
24421
24422
24423
24424
24425
24426
24427
24428
24429
24430
24431
24432
24433
24434
24435
24436
24437
24438
24439
24440
24441
24442
24443
24444
24445
24446
24447
24448
24449
24450
24451
24452
24453
24454
24455
24456
24457
24458
24459
24460
24461
24462
24463
24464
24465
24466
24467
24468
24469
24470
24471
24472
24473
24474
24475
24476
24477
24478
24479
24480
24481
24482
24483
24484
24485
24486
24487
24488
24489
24490
24491
24492
24493
24494
24495
24496
24497
24498
24499
24500
24501
24502
24503
24504
24505
24506
24507
24508
24509
24510
24511
24512
24513
24514
24515
24516
24517
24518
24519
24520
24521
24522
24523
24524
24525
24526
24527
24528
24529
24530
24531
24532
24533
24534
24535
24536
24537
24538
24539
24540
24541
24542
24543
24544
24545
24546
24547
24548
24549
24550
24551
24552
24553
24554
24555
24556
24557
24558
24559
24560
24561
24562
24563
24564
24565
24566
24567
24568
24569
24570
24571
24572
24573
24574
24575
24576
24577
24578
24579
24580
24581
24582
24583
24584
24585
24586
24587
24588
24589
24590
24591
24592
24593
24594
24595
24596
24597
24598
24599
24600
24601
24602
24603
24604
24605
24606
24607
24608
24609
24610
24611
24612
24613
24614
24615
24616
24617
24618
24619
24620
24621
24622
24623
24624
24625
24626
24627
24628
24629
24630
24631
24632
24633
24634
24635
24636
24637
24638
24639
24640
24641
24642
24643
24644
24645
24646
24647
24648
24649
24650
24651
24652
24653
24654
24655
24656
24657
24658
24659
24660
24661
24662
24663
24664
24665
24666
24667
24668
24669
24670
24671
24672
24673
24674
24675
24676
24677
24678
24679
24680
24681
24682
24683
24684
24685
24686
24687
24688
24689
24690
24691
24692
24693
24694
24695
24696
24697
24698
24699
24700
24701
24702
24703
24704
24705
24706
24707
24708
24709
24710
24711
24712
24713
24714
24715
24716
24717
24718
24719
24720
24721
24722
24723
24724
24725
24726
24727
24728
24729
24730
24731
24732
24733
24734
24735
24736
24737
24738
24739
24740
24741
24742
24743
24744
24745
24746
24747
24748
24749
24750
24751
24752
24753
24754
24755
24756
24757
24758
24759
24760
24761
24762
24763
24764
24765
24766
24767
24768
24769
24770
24771
24772
24773
24774
24775
24776
24777
24778
24779
24780
24781
24782
24783
24784
24785
24786
24787
24788
24789
24790
24791
24792
24793
24794
24795
24796
24797
24798
24799
24800
24801
24802
24803
24804
24805
24806
24807
24808
24809
24810
24811
24812
24813
24814
24815
24816
24817
24818
24819
24820
24821
24822
24823
24824
24825
24826
24827
24828
24829
24830
24831
24832
24833
24834
24835
24836
24837
24838
24839
24840
24841
24842
24843
24844
24845
24846
24847
24848
24849
24850
24851
24852
24853
24854
24855
24856
24857
24858
24859
24860
24861
24862
24863
24864
24865
24866
24867
24868
24869
24870
24871
24872
24873
24874
24875
24876
24877
24878
24879
24880
24881
24882
24883
24884
24885
24886
24887
24888
24889
24890
24891
24892
24893
24894
24895
24896
24897
24898
24899
24900
24901
24902
24903
24904
24905
24906
24907
24908
24909
24910
24911
24912
24913
24914
24915
24916
24917
24918
24919
24920
24921
24922
24923
24924
24925
24926
24927
24928
24929
24930
24931
24932
24933
24934
24935
24936
24937
24938
24939
24940
24941
24942
24943
24944
24945
24946
24947
24948
24949
24950
24951
24952
24953
24954
24955
24956
24957
24958
24959
24960
24961
24962
24963
24964
24965
24966
24967
24968
24969
24970
24971
24972
24973
24974
24975
24976
24977
24978
24979
24980
24981
24982
24983
24984
24985
24986
24987
24988
24989
24990
24991
24992
24993
24994
24995
24996
24997
24998
24999
25000
25001
25002
25003
25004
25005
25006
25007
25008
25009
25010
25011
25012
25013
25014
25015
25016
25017
25018
25019
25020
25021
25022
25023
25024
25025
25026
25027
25028
25029
25030
25031
25032
25033
25034
25035
25036
25037
25038
25039
25040
25041
25042
25043
25044
25045
25046
25047
25048
25049
25050
25051
25052
25053
25054
25055
25056
25057
25058
25059
25060
25061
25062
25063
25064
25065
25066
25067
25068
25069
25070
25071
25072
25073
25074
25075
25076
25077
25078
25079
25080
25081
25082
25083
25084
25085
25086
25087
25088
25089
25090
25091
25092
25093
25094
25095
25096
25097
25098
25099
25100
25101
25102
25103
25104
25105
25106
25107
25108
25109
25110
25111
25112
25113
25114
25115
25116
25117
25118
25119
25120
25121
25122
25123
25124
25125
25126
25127
25128
25129
25130
25131
25132
25133
25134
25135
25136
25137
25138
25139
25140
25141
25142
25143
25144
25145
25146
25147
25148
25149
25150
25151
25152
25153
25154
25155
25156
25157
25158
25159
25160
25161
25162
25163
25164
25165
25166
25167
25168
25169
25170
25171
25172
25173
25174
25175
25176
25177
25178
25179
25180
25181
25182
25183
25184
25185
25186
25187
25188
25189
25190
25191
25192
25193
25194
25195
25196
25197
25198
25199
25200
25201
25202
25203
25204
25205
25206
25207
25208
25209
25210
25211
25212
25213
25214
25215
25216
25217
25218
25219
25220
25221
25222
25223
25224
25225
25226
25227
25228
25229
25230
25231
25232
25233
25234
25235
25236
25237
25238
25239
25240
25241
25242
25243
25244
25245
25246
25247
25248
25249
25250
25251
25252
25253
25254
25255
25256
25257
25258
25259
25260
25261
25262
25263
25264
25265
25266
25267
25268
25269
25270
25271
25272
25273
25274
25275
25276
25277
25278
25279
25280
25281
25282
25283
25284
25285
25286
25287
25288
25289
25290
25291
25292
25293
25294
25295
25296
25297
25298
25299
25300
25301
25302
25303
25304
25305
25306
25307
25308
25309
25310
25311
25312
25313
25314
25315
25316
25317
25318
25319
25320
25321
25322
25323
25324
25325
25326
25327
25328
25329
25330
25331
25332
25333
25334
25335
25336
25337
25338
25339
25340
25341
25342
25343
25344
25345
25346
25347
25348
25349
25350
25351
25352
25353
25354
25355
25356
25357
25358
25359
25360
25361
25362
25363
25364
25365
25366
25367
25368
25369
25370
25371
25372
25373
25374
25375
25376
25377
25378
25379
25380
25381
25382
25383
25384
25385
25386
25387
25388
25389
25390
25391
25392
25393
25394
25395
25396
25397
25398
25399
25400
25401
25402
25403
25404
25405
25406
25407
25408
25409
25410
25411
25412
25413
25414
25415
25416
25417
25418
25419
25420
25421
25422
25423
25424
25425
25426
25427
25428
25429
25430
25431
25432
25433
25434
25435
25436
25437
25438
25439
25440
25441
25442
25443
25444
25445
25446
25447
25448
25449
25450
25451
25452
25453
25454
25455
25456
25457
25458
25459
25460
25461
25462
25463
25464
25465
25466
25467
25468
25469
25470
25471
25472
25473
25474
25475
25476
25477
25478
25479
25480
25481
25482
25483
25484
25485
25486
25487
25488
25489
25490
25491
25492
25493
25494
25495
25496
25497
25498
25499
25500
25501
25502
25503
25504
25505
25506
25507
25508
25509
25510
25511
25512
25513
25514
25515
25516
25517
25518
25519
25520
25521
25522
25523
25524
25525
25526
25527
25528
25529
25530
25531
25532
25533
25534
25535
25536
25537
25538
25539
25540
25541
25542
25543
25544
25545
25546
25547
25548
25549
25550
25551
25552
25553
25554
25555
25556
25557
25558
25559
25560
25561
25562
25563
25564
25565
25566
25567
25568
25569
25570
25571
25572
25573
25574
25575
25576
25577
25578
25579
25580
25581
25582
25583
25584
25585
25586
25587
25588
25589
25590
25591
25592
25593
25594
25595
25596
25597
25598
25599
25600
25601
25602
25603
25604
25605
25606
25607
25608
25609
25610
25611
25612
25613
25614
25615
25616
25617
25618
25619
25620
25621
25622
25623
25624
25625
25626
25627
25628
25629
25630
25631
25632
25633
25634
25635
25636
25637
25638
25639
25640
25641
25642
25643
25644
25645
25646
25647
25648
25649
25650
25651
25652
25653
25654
25655
25656
25657
25658
25659
25660
25661
25662
25663
25664
25665
25666
25667
25668
25669
25670
25671
25672
25673
25674
25675
25676
25677
25678
25679
25680
25681
25682
25683
25684
25685
25686
25687
25688
25689
25690
25691
25692
25693
25694
25695
25696
25697
25698
25699
25700
25701
25702
25703
25704
25705
25706
25707
25708
25709
25710
25711
25712
25713
25714
25715
25716
25717
25718
25719
25720
25721
25722
25723
25724
25725
25726
25727
25728
25729
25730
25731
25732
25733
25734
25735
25736
25737
25738
25739
25740
25741
25742
25743
25744
25745
25746
25747
25748
25749
25750
25751
25752
25753
25754
25755
25756
25757
25758
25759
25760
25761
25762
25763
25764
25765
25766
25767
25768
25769
25770
25771
25772
25773
25774
25775
25776
25777
25778
25779
25780
25781
25782
25783
25784
25785
25786
25787
25788
25789
25790
25791
25792
25793
25794
25795
25796
25797
25798
25799
25800
25801
25802
25803
25804
25805
25806
25807
25808
25809
25810
25811
25812
25813
25814
25815
25816
25817
25818
25819
25820
25821
25822
25823
25824
25825
25826
25827
25828
25829
25830
25831
25832
25833
25834
25835
25836
25837
25838
25839
25840
25841
25842
25843
25844
25845
25846
25847
25848
25849
25850
25851
25852
25853
25854
25855
25856
25857
25858
25859
25860
25861
25862
25863
25864
25865
25866
25867
25868
25869
25870
25871
25872
25873
25874
25875
25876
25877
25878
25879
25880
25881
25882
25883
25884
25885
25886
25887
25888
25889
25890
25891
25892
25893
25894
25895
25896
25897
25898
25899
25900
25901
25902
25903
25904
25905
25906
25907
25908
25909
25910
25911
25912
25913
25914
25915
25916
25917
25918
25919
25920
25921
25922
25923
25924
25925
25926
25927
25928
25929
25930
25931
25932
25933
25934
25935
25936
25937
25938
25939
25940
25941
25942
25943
25944
25945
25946
25947
25948
25949
25950
25951
25952
25953
25954
25955
25956
25957
25958
25959
25960
25961
25962
25963
25964
25965
25966
25967
25968
25969
25970
25971
25972
25973
25974
25975
25976
25977
25978
25979
25980
25981
25982
25983
25984
25985
25986
25987
25988
25989
25990
25991
25992
25993
25994
25995
25996
25997
25998
25999
26000
26001
26002
26003
26004
26005
26006
26007
26008
26009
26010
26011
26012
26013
26014
26015
26016
26017
26018
26019
26020
26021
26022
26023
26024
26025
26026
26027
26028
26029
26030
26031
26032
26033
26034
26035
26036
26037
26038
26039
26040
26041
26042
26043
26044
26045
26046
26047
26048
26049
26050
26051
26052
26053
26054
26055
26056
26057
26058
26059
26060
26061
26062
26063
26064
26065
26066
26067
26068
26069
26070
26071
26072
26073
26074
26075
26076
26077
26078
26079
26080
26081
26082
26083
26084
26085
26086
26087
26088
26089
26090
26091
26092
26093
26094
26095
26096
26097
26098
26099
26100
26101
26102
26103
26104
26105
26106
26107
26108
26109
26110
26111
26112
26113
26114
26115
26116
26117
26118
26119
26120
26121
26122
26123
26124
26125
26126
26127
26128
26129
26130
26131
26132
26133
26134
26135
26136
26137
26138
26139
26140
26141
26142
26143
26144
26145
26146
26147
26148
26149
26150
26151
26152
26153
26154
26155
26156
26157
26158
26159
26160
26161
26162
26163
26164
26165
26166
26167
26168
26169
26170
26171
26172
26173
26174
26175
26176
26177
26178
26179
26180
26181
26182
26183
26184
26185
26186
26187
26188
26189
26190
26191
26192
26193
26194
26195
26196
26197
26198
26199
26200
26201
26202
26203
26204
26205
26206
26207
26208
26209
26210
26211
26212
26213
26214
26215
26216
26217
26218
26219
26220
26221
26222
26223
26224
26225
26226
26227
26228
26229
26230
26231
26232
26233
26234
26235
26236
26237
26238
26239
26240
26241
26242
26243
26244
26245
26246
26247
26248
26249
26250
26251
26252
26253
26254
26255
26256
26257
26258
26259
26260
26261
26262
26263
26264
26265
26266
26267
26268
26269
26270
26271
26272
26273
26274
26275
26276
26277
26278
26279
26280
26281
26282
26283
26284
26285
26286
26287
26288
26289
26290
26291
26292
26293
26294
26295
26296
26297
26298
26299
26300
26301
26302
26303
26304
26305
26306
26307
26308
26309
26310
26311
26312
26313
26314
26315
26316
26317
26318
26319
26320
26321
26322
26323
26324
26325
26326
26327
26328
26329
26330
26331
26332
26333
26334
26335
26336
26337
26338
26339
26340
26341
26342
26343
26344
26345
26346
26347
26348
26349
26350
26351
26352
26353
26354
26355
26356
26357
26358
26359
26360
26361
26362
26363
26364
26365
26366
26367
26368
26369
26370
26371
26372
26373
26374
26375
26376
26377
26378
26379
26380
26381
26382
26383
26384
26385
26386
26387
26388
26389
26390
26391
26392
26393
26394
26395
26396
26397
26398
26399
26400
26401
26402
26403
26404
26405
26406
26407
26408
26409
26410
26411
26412
26413
26414
26415
26416
26417
26418
26419
26420
26421
26422
26423
26424
26425
26426
26427
26428
26429
26430
26431
26432
26433
26434
26435
26436
26437
26438
26439
26440
26441
26442
26443
26444
26445
26446
26447
26448
26449
26450
26451
26452
26453
26454
26455
26456
26457
26458
26459
26460
26461
26462
26463
26464
26465
26466
26467
26468
26469
26470
26471
26472
26473
26474
26475
26476
26477
26478
26479
26480
26481
26482
26483
26484
26485
26486
26487
26488
26489
26490
26491
26492
26493
26494
26495
26496
26497
26498
26499
26500
26501
26502
26503
26504
26505
26506
26507
26508
26509
26510
26511
26512
26513
26514
26515
26516
26517
26518
26519
26520
26521
26522
26523
26524
26525
26526
26527
26528
26529
26530
26531
26532
26533
26534
26535
26536
26537
26538
26539
26540
26541
26542
26543
26544
26545
26546
26547
26548
26549
26550
26551
26552
26553
26554
26555
26556
26557
26558
26559
26560
26561
26562
26563
26564
26565
26566
26567
26568
26569
26570
26571
26572
26573
26574
26575
26576
26577
26578
26579
26580
26581
26582
26583
26584
26585
26586
26587
26588
26589
26590
26591
26592
26593
26594
26595
26596
26597
26598
26599
26600
26601
26602
26603
26604
26605
26606
26607
26608
26609
26610
26611
26612
26613
26614
26615
26616
26617
26618
26619
26620
26621
26622
26623
26624
26625
26626
26627
26628
26629
26630
26631
26632
26633
26634
26635
26636
26637
26638
26639
26640
26641
26642
26643
26644
26645
26646
26647
26648
26649
26650
26651
26652
26653
26654
26655
26656
26657
26658
26659
26660
26661
26662
26663
26664
26665
26666
26667
26668
26669
26670
26671
26672
26673
26674
26675
26676
26677
26678
26679
26680
26681
26682
26683
26684
26685
26686
26687
26688
26689
26690
26691
26692
26693
26694
26695
26696
26697
26698
26699
26700
26701
26702
26703
26704
26705
26706
26707
26708
26709
26710
26711
26712
26713
26714
26715
26716
26717
26718
26719
26720
26721
26722
26723
26724
26725
26726
26727
26728
26729
26730
26731
26732
26733
26734
26735
26736
26737
26738
26739
26740
26741
26742
26743
26744
26745
26746
26747
26748
26749
26750
26751
26752
26753
26754
26755
26756
26757
26758
26759
26760
26761
26762
26763
26764
26765
26766
26767
26768
26769
26770
26771
26772
26773
26774
26775
26776
26777
26778
26779
26780
26781
26782
26783
26784
26785
26786
26787
26788
26789
26790
26791
26792
26793
26794
26795
26796
26797
26798
26799
26800
26801
26802
26803
26804
26805
26806
26807
26808
26809
26810
26811
26812
26813
26814
26815
26816
26817
26818
26819
26820
26821
26822
26823
26824
26825
26826
26827
26828
26829
26830
26831
26832
26833
26834
26835
26836
26837
26838
26839
26840
26841
26842
26843
26844
26845
26846
26847
26848
26849
26850
26851
26852
26853
26854
26855
26856
26857
26858
26859
26860
26861
26862
26863
26864
26865
26866
26867
26868
26869
26870
26871
26872
26873
26874
26875
26876
26877
26878
26879
26880
26881
26882
26883
26884
26885
26886
26887
26888
26889
26890
26891
26892
26893
26894
26895
26896
26897
26898
26899
26900
26901
26902
26903
26904
26905
26906
26907
26908
26909
26910
26911
26912
26913
26914
26915
26916
26917
26918
26919
26920
26921
26922
26923
26924
26925
26926
26927
26928
26929
26930
26931
26932
26933
26934
26935
26936
26937
26938
26939
26940
26941
26942
26943
26944
26945
26946
26947
26948
26949
26950
26951
26952
26953
26954
26955
26956
26957
26958
26959
26960
26961
26962
26963
26964
26965
26966
26967
26968
26969
26970
26971
26972
26973
26974
26975
26976
26977
26978
26979
26980
26981
26982
26983
26984
26985
26986
26987
26988
26989
26990
26991
26992
26993
26994
26995
26996
26997
26998
26999
27000
27001
27002
27003
27004
27005
27006
27007
27008
27009
27010
27011
27012
27013
27014
27015
27016
27017
27018
27019
27020
27021
27022
27023
27024
27025
27026
27027
27028
27029
27030
27031
27032
27033
27034
27035
27036
27037
27038
27039
27040
27041
27042
27043
27044
27045
27046
27047
27048
27049
27050
27051
27052
27053
27054
27055
27056
27057
27058
27059
27060
27061
27062
27063
27064
27065
27066
27067
27068
27069
27070
27071
27072
27073
27074
27075
27076
27077
27078
27079
27080
27081
27082
27083
27084
27085
27086
27087
27088
27089
27090
27091
27092
27093
27094
27095
27096
27097
27098
27099
27100
27101
27102
27103
27104
27105
27106
27107
27108
27109
27110
27111
27112
27113
27114
27115
27116
27117
27118
27119
27120
27121
27122
27123
27124
27125
27126
27127
27128
27129
27130
27131
27132
27133
27134
27135
27136
27137
27138
27139
27140
27141
27142
27143
27144
27145
27146
27147
27148
27149
27150
27151
27152
27153
27154
27155
27156
27157
27158
27159
27160
27161
27162
27163
27164
27165
27166
27167
27168
27169
27170
27171
27172
27173
27174
27175
27176
27177
27178
27179
27180
27181
27182
27183
27184
27185
27186
27187
27188
27189
27190
27191
27192
27193
27194
27195
27196
27197
27198
27199
27200
27201
27202
27203
27204
27205
27206
27207
27208
27209
27210
27211
27212
27213
27214
27215
27216
27217
27218
27219
27220
27221
27222
27223
27224
27225
27226
27227
27228
27229
27230
27231
27232
27233
27234
27235
27236
27237
27238
27239
27240
27241
27242
27243
27244
27245
27246
27247
27248
27249
27250
27251
27252
27253
27254
27255
27256
27257
27258
27259
27260
27261
27262
27263
27264
27265
27266
27267
27268
27269
27270
27271
27272
27273
27274
27275
27276
27277
27278
27279
27280
27281
27282
27283
27284
27285
27286
27287
27288
27289
27290
27291
27292
27293
27294
27295
27296
27297
27298
27299
27300
27301
27302
27303
27304
27305
27306
27307
27308
27309
27310
27311
27312
27313
27314
27315
27316
27317
27318
27319
27320
27321
27322
27323
27324
27325
27326
27327
27328
27329
27330
27331
27332
27333
27334
27335
27336
27337
27338
27339
27340
27341
27342
27343
27344
27345
27346
27347
27348
27349
27350
27351
27352
27353
27354
27355
27356
27357
27358
27359
27360
27361
27362
27363
27364
27365
27366
27367
27368
27369
27370
27371
27372
27373
27374
27375
27376
27377
27378
27379
27380
27381
27382
27383
27384
27385
27386
27387
27388
27389
27390
27391
27392
27393
27394
27395
27396
27397
27398
27399
27400
27401
27402
27403
27404
27405
27406
27407
27408
27409
27410
27411
27412
27413
27414
27415
27416
27417
27418
27419
27420
27421
27422
27423
27424
27425
27426
27427
27428
27429
27430
27431
27432
27433
27434
27435
27436
27437
27438
27439
27440
27441
27442
27443
27444
27445
27446
27447
27448
27449
27450
27451
27452
27453
27454
27455
27456
27457
27458
27459
27460
27461
27462
27463
27464
27465
27466
27467
27468
27469
27470
27471
27472
27473
27474
27475
27476
27477
27478
27479
27480
27481
27482
27483
27484
27485
27486
27487
27488
27489
27490
27491
27492
27493
27494
27495
27496
27497
27498
27499
27500
27501
27502
27503
27504
27505
27506
27507
27508
27509
27510
27511
27512
27513
27514
27515
27516
27517
27518
27519
27520
27521
27522
27523
27524
27525
27526
27527
27528
27529
27530
27531
27532
27533
27534
27535
27536
27537
27538
27539
27540
27541
27542
27543
27544
27545
27546
27547
27548
27549
27550
27551
27552
27553
27554
27555
27556
27557
27558
27559
27560
27561
27562
27563
27564
27565
27566
27567
27568
27569
27570
27571
27572
27573
27574
27575
27576
27577
27578
27579
27580
27581
27582
27583
27584
27585
27586
27587
27588
27589
27590
27591
27592
27593
27594
27595
27596
27597
27598
27599
27600
27601
27602
27603
27604
27605
27606
27607
27608
27609
27610
27611
27612
27613
27614
27615
27616
27617
27618
27619
27620
27621
27622
27623
27624
27625
27626
27627
27628
27629
27630
27631
27632
27633
27634
27635
27636
27637
27638
27639
27640
27641
27642
27643
27644
27645
27646
27647
27648
27649
27650
27651
27652
27653
27654
27655
27656
27657
27658
27659
27660
27661
27662
27663
27664
27665
27666
27667
27668
27669
27670
27671
27672
27673
27674
27675
27676
27677
27678
27679
27680
27681
27682
27683
27684
27685
27686
27687
27688
27689
27690
27691
27692
27693
27694
27695
27696
27697
27698
27699
27700
27701
27702
27703
27704
27705
27706
27707
27708
27709
27710
27711
27712
27713
27714
27715
27716
27717
27718
27719
27720
27721
27722
27723
27724
27725
27726
27727
27728
27729
27730
27731
27732
27733
27734
27735
27736
27737
27738
27739
27740
27741
27742
27743
27744
27745
27746
27747
27748
27749
27750
27751
27752
27753
27754
27755
27756
27757
27758
27759
27760
27761
27762
27763
27764
27765
27766
27767
27768
27769
27770
27771
27772
27773
27774
27775
27776
27777
27778
27779
27780
27781
27782
27783
27784
27785
27786
27787
27788
27789
27790
27791
27792
27793
27794
27795
27796
27797
27798
27799
27800
27801
27802
27803
27804
27805
27806
27807
27808
27809
27810
27811
27812
27813
27814
27815
27816
27817
27818
27819
27820
27821
27822
27823
27824
27825
27826
27827
27828
27829
27830
27831
27832
27833
27834
27835
27836
27837
27838
27839
27840
27841
27842
27843
27844
27845
27846
27847
27848
27849
27850
27851
27852
27853
27854
27855
27856
27857
27858
27859
27860
27861
27862
27863
27864
27865
27866
27867
27868
27869
27870
27871
27872
27873
27874
27875
27876
27877
27878
27879
27880
27881
27882
27883
27884
27885
27886
27887
27888
27889
27890
27891
27892
27893
27894
27895
27896
27897
27898
27899
27900
27901
27902
27903
27904
27905
27906
27907
27908
27909
27910
27911
27912
27913
27914
27915
27916
27917
27918
27919
27920
27921
27922
27923
27924
27925
27926
27927
27928
27929
27930
27931
27932
27933
27934
27935
27936
27937
27938
27939
27940
27941
27942
27943
27944
27945
27946
27947
27948
27949
27950
27951
27952
27953
27954
27955
27956
27957
27958
27959
27960
27961
27962
27963
27964
27965
27966
27967
27968
27969
27970
27971
27972
27973
27974
27975
27976
27977
27978
27979
27980
27981
27982
27983
27984
27985
27986
27987
27988
27989
27990
27991
27992
27993
27994
27995
27996
27997
27998
27999
28000
28001
28002
28003
28004
28005
28006
28007
28008
28009
28010
28011
28012
28013
28014
28015
28016
28017
28018
28019
28020
28021
28022
28023
28024
28025
28026
28027
28028
28029
28030
28031
28032
28033
28034
28035
28036
28037
28038
28039
28040
28041
28042
28043
28044
28045
28046
28047
28048
28049
28050
28051
28052
28053
28054
28055
28056
28057
28058
28059
28060
28061
28062
28063
28064
28065
28066
28067
28068
28069
28070
28071
28072
28073
28074
28075
28076
28077
28078
28079
28080
28081
28082
28083
28084
28085
28086
28087
28088
28089
28090
28091
28092
28093
28094
28095
28096
28097
28098
28099
28100
28101
28102
28103
28104
28105
28106
28107
28108
28109
28110
28111
28112
28113
28114
28115
28116
28117
28118
28119
28120
28121
28122
28123
28124
28125
28126
28127
28128
28129
28130
28131
28132
28133
28134
28135
28136
28137
28138
28139
28140
28141
28142
28143
28144
28145
28146
28147
28148
28149
28150
28151
28152
28153
28154
28155
28156
28157
28158
28159
28160
28161
28162
28163
28164
28165
28166
28167
28168
28169
28170
28171
28172
28173
28174
28175
28176
28177
28178
28179
28180
28181
28182
28183
28184
28185
28186
28187
28188
28189
28190
28191
28192
28193
28194
28195
28196
28197
28198
28199
28200
28201
28202
28203
28204
28205
28206
28207
28208
28209
28210
28211
28212
28213
28214
28215
28216
28217
28218
28219
28220
28221
28222
28223
28224
28225
28226
28227
28228
28229
28230
28231
28232
28233
28234
28235
28236
28237
28238
28239
28240
28241
28242
28243
28244
28245
28246
28247
28248
28249
28250
28251
28252
28253
28254
28255
28256
28257
28258
28259
28260
28261
28262
28263
28264
28265
28266
28267
28268
28269
28270
28271
28272
28273
28274
28275
28276
28277
28278
28279
28280
28281
28282
28283
28284
28285
28286
28287
28288
28289
28290
28291
28292
28293
28294
28295
28296
28297
28298
28299
28300
28301
28302
28303
28304
28305
28306
28307
28308
28309
28310
28311
28312
28313
28314
28315
28316
28317
28318
28319
28320
28321
28322
28323
28324
28325
28326
28327
28328
28329
28330
28331
28332
28333
28334
28335
28336
28337
28338
28339
28340
28341
28342
28343
28344
28345
28346
28347
28348
28349
28350
28351
28352
28353
28354
28355
28356
28357
28358
28359
28360
28361
28362
28363
28364
28365
28366
28367
28368
28369
28370
28371
28372
28373
28374
28375
28376
28377
28378
28379
28380
28381
28382
28383
28384
28385
28386
28387
28388
28389
28390
28391
28392
28393
28394
28395
28396
28397
28398
28399
28400
28401
28402
28403
28404
28405
28406
28407
28408
28409
28410
28411
28412
28413
28414
28415
28416
28417
28418
28419
28420
28421
28422
28423
28424
28425
28426
28427
28428
28429
28430
28431
28432
28433
28434
28435
28436
28437
28438
28439
28440
28441
28442
28443
28444
28445
28446
28447
28448
28449
28450
28451
28452
28453
28454
28455
28456
28457
28458
28459
28460
28461
28462
28463
28464
28465
28466
28467
28468
28469
28470
28471
28472
28473
28474
28475
28476
28477
28478
28479
28480
28481
28482
28483
28484
28485
28486
28487
28488
28489
28490
28491
28492
28493
28494
28495
28496
28497
28498
28499
28500
28501
28502
28503
28504
28505
28506
28507
28508
28509
28510
28511
28512
28513
28514
28515
28516
28517
28518
28519
28520
28521
28522
28523
28524
28525
28526
28527
28528
28529
28530
28531
28532
28533
28534
28535
28536
28537
28538
28539
28540
28541
28542
28543
28544
28545
28546
28547
28548
28549
28550
28551
28552
28553
28554
28555
28556
28557
28558
28559
28560
28561
28562
28563
28564
28565
28566
28567
28568
28569
28570
28571
28572
28573
28574
28575
28576
28577
28578
28579
28580
28581
28582
28583
28584
28585
28586
28587
28588
28589
28590
28591
28592
28593
28594
28595
28596
28597
28598
28599
28600
28601
28602
28603
28604
28605
28606
28607
28608
28609
28610
28611
28612
28613
28614
28615
28616
28617
28618
28619
28620
28621
28622
28623
28624
28625
28626
28627
28628
28629
28630
28631
28632
28633
28634
28635
28636
28637
28638
28639
28640
28641
28642
28643
28644
28645
28646
28647
28648
28649
28650
28651
28652
28653
28654
28655
28656
28657
28658
28659
28660
28661
28662
28663
28664
28665
28666
28667
28668
28669
28670
28671
28672
28673
28674
28675
28676
28677
28678
28679
28680
28681
28682
28683
28684
28685
28686
28687
28688
28689
28690
28691
28692
28693
28694
28695
28696
28697
28698
28699
28700
28701
28702
28703
28704
28705
28706
28707
28708
28709
28710
28711
28712
28713
28714
28715
28716
28717
28718
28719
28720
28721
28722
28723
28724
28725
28726
28727
28728
28729
28730
28731
28732
28733
28734
28735
28736
28737
28738
28739
28740
28741
28742
28743
28744
28745
28746
28747
28748
28749
28750
28751
28752
28753
28754
28755
28756
28757
28758
28759
28760
28761
28762
28763
28764
28765
28766
28767
28768
28769
28770
28771
28772
28773
28774
28775
28776
28777
28778
28779
28780
28781
28782
28783
28784
28785
28786
28787
28788
28789
28790
28791
28792
28793
28794
28795
28796
28797
28798
28799
28800
28801
28802
28803
28804
28805
28806
28807
28808
28809
28810
28811
28812
28813
28814
28815
28816
28817
28818
28819
28820
28821
28822
28823
28824
28825
28826
28827
28828
28829
28830
28831
28832
28833
28834
28835
28836
28837
28838
28839
28840
28841
28842
28843
28844
28845
28846
28847
28848
28849
28850
28851
28852
28853
28854
28855
28856
28857
28858
28859
28860
28861
28862
28863
28864
28865
28866
28867
28868
28869
28870
28871
28872
28873
28874
28875
28876
28877
28878
28879
28880
28881
28882
28883
28884
28885
28886
28887
28888
28889
28890
28891
28892
28893
28894
28895
28896
28897
28898
28899
28900
28901
28902
28903
28904
28905
28906
28907
28908
28909
28910
28911
28912
28913
28914
28915
28916
28917
28918
28919
28920
28921
28922
28923
28924
28925
28926
28927
28928
28929
28930
28931
28932
28933
28934
28935
28936
28937
28938
28939
28940
28941
28942
28943
28944
28945
28946
28947
28948
28949
28950
28951
28952
28953
28954
28955
28956
28957
28958
28959
28960
28961
28962
28963
28964
28965
28966
28967
28968
28969
28970
28971
28972
28973
28974
28975
28976
28977
28978
28979
28980
28981
28982
28983
28984
28985
28986
28987
28988
28989
28990
28991
28992
28993
28994
28995
28996
28997
28998
28999
29000
29001
29002
29003
29004
29005
29006
29007
29008
29009
29010
29011
29012
29013
29014
29015
29016
29017
29018
29019
29020
29021
29022
29023
29024
29025
29026
29027
29028
29029
29030
29031
29032
29033
29034
29035
29036
29037
29038
29039
29040
29041
29042
29043
29044
29045
29046
29047
29048
29049
29050
29051
29052
29053
29054
29055
29056
29057
29058
29059
29060
29061
29062
29063
29064
29065
29066
29067
29068
29069
29070
29071
29072
29073
29074
29075
29076
29077
29078
29079
29080
29081
29082
29083
29084
29085
29086
29087
29088
29089
29090
29091
29092
29093
29094
29095
29096
29097
29098
29099
29100
29101
29102
29103
29104
29105
29106
29107
29108
29109
29110
29111
29112
29113
29114
29115
29116
29117
29118
29119
29120
29121
29122
29123
29124
29125
29126
29127
29128
29129
29130
29131
29132
29133
29134
29135
29136
29137
29138
29139
29140
29141
29142
29143
29144
29145
29146
29147
29148
29149
29150
29151
29152
29153
29154
29155
29156
29157
29158
29159
29160
29161
29162
29163
29164
29165
29166
29167
29168
29169
29170
29171
29172
29173
29174
29175
29176
29177
29178
29179
29180
29181
29182
29183
29184
29185
29186
29187
29188
29189
29190
29191
29192
29193
29194
29195
29196
29197
29198
29199
29200
29201
29202
29203
29204
29205
29206
29207
29208
29209
29210
29211
29212
29213
29214
29215
29216
29217
29218
29219
29220
29221
29222
29223
29224
29225
29226
29227
29228
29229
29230
29231
29232
29233
29234
29235
29236
29237
29238
29239
29240
29241
29242
29243
29244
29245
29246
29247
29248
29249
29250
29251
29252
29253
29254
29255
29256
29257
29258
29259
29260
29261
29262
29263
29264
29265
29266
29267
29268
29269
29270
29271
29272
29273
29274
29275
29276
29277
29278
29279
29280
29281
29282
29283
29284
29285
29286
29287
29288
29289
29290
29291
29292
29293
29294
29295
29296
29297
29298
29299
29300
29301
29302
29303
29304
29305
29306
29307
29308
29309
29310
29311
29312
29313
29314
29315
29316
29317
29318
29319
29320
29321
29322
29323
29324
29325
29326
29327
29328
29329
29330
29331
29332
29333
29334
29335
29336
29337
29338
29339
29340
29341
29342
29343
29344
29345
29346
29347
29348
29349
29350
29351
29352
29353
29354
29355
29356
29357
29358
29359
29360
29361
29362
29363
29364
29365
29366
29367
29368
29369
29370
29371
29372
29373
29374
29375
29376
29377
29378
29379
29380
29381
29382
29383
29384
29385
29386
29387
29388
29389
29390
29391
29392
29393
29394
29395
29396
29397
29398
29399
29400
29401
29402
29403
29404
29405
29406
29407
29408
29409
29410
29411
29412
29413
29414
29415
29416
29417
29418
29419
29420
29421
29422
29423
29424
29425
29426
29427
29428
29429
29430
29431
29432
29433
29434
29435
29436
29437
29438
29439
29440
29441
29442
29443
29444
29445
29446
29447
29448
29449
29450
29451
29452
29453
29454
29455
29456
29457
29458
29459
29460
29461
29462
29463
29464
29465
29466
29467
29468
29469
29470
29471
29472
29473
29474
29475
29476
29477
29478
29479
29480
29481
29482
29483
29484
29485
29486
29487
29488
29489
29490
29491
29492
29493
29494
29495
29496
29497
29498
29499
29500
29501
29502
29503
29504
29505
29506
29507
29508
29509
29510
29511
29512
29513
29514
29515
29516
29517
29518
29519
29520
29521
29522
29523
29524
29525
29526
29527
29528
29529
29530
29531
29532
29533
29534
29535
29536
29537
29538
29539
29540
29541
29542
29543
29544
29545
29546
29547
29548
29549
29550
29551
29552
29553
29554
29555
29556
29557
29558
29559
29560
29561
29562
29563
29564
29565
29566
29567
29568
29569
29570
29571
29572
29573
29574
29575
29576
29577
29578
29579
29580
29581
29582
29583
29584
29585
29586
29587
29588
29589
29590
29591
29592
29593
29594
29595
29596
29597
29598
29599
29600
29601
29602
29603
29604
29605
29606
29607
29608
29609
29610
29611
29612
29613
29614
29615
29616
29617
29618
29619
29620
29621
29622
29623
29624
29625
29626
29627
29628
29629
29630
29631
29632
29633
29634
29635
29636
29637
29638
29639
29640
29641
29642
29643
29644
29645
29646
29647
29648
29649
29650
29651
29652
29653
29654
29655
29656
29657
29658
29659
29660
29661
29662
29663
29664
29665
29666
29667
29668
29669
29670
29671
29672
29673
29674
29675
29676
29677
29678
29679
29680
29681
29682
29683
29684
29685
29686
29687
29688
29689
29690
29691
29692
29693
29694
29695
29696
29697
29698
29699
29700
29701
29702
29703
29704
29705
29706
29707
29708
29709
29710
29711
29712
29713
29714
29715
29716
29717
29718
29719
29720
29721
29722
29723
29724
29725
29726
29727
29728
29729
29730
29731
29732
29733
29734
29735
29736
29737
29738
29739
29740
29741
29742
29743
29744
29745
29746
29747
29748
29749
29750
29751
29752
29753
29754
29755
29756
29757
29758
29759
29760
29761
29762
29763
29764
29765
29766
29767
29768
29769
29770
29771
29772
29773
29774
29775
29776
29777
29778
29779
29780
29781
29782
29783
29784
29785
29786
29787
29788
29789
29790
29791
29792
29793
29794
29795
29796
29797
29798
29799
29800
29801
29802
29803
29804
29805
29806
29807
29808
29809
29810
29811
29812
29813
29814
29815
29816
29817
29818
29819
29820
29821
29822
29823
29824
29825
29826
29827
29828
29829
29830
29831
29832
29833
29834
29835
29836
29837
29838
29839
29840
29841
29842
29843
29844
29845
29846
29847
29848
29849
29850
29851
29852
29853
29854
29855
29856
29857
29858
29859
29860
29861
29862
29863
29864
29865
29866
29867
29868
29869
29870
29871
29872
29873
29874
29875
29876
29877
29878
29879
29880
29881
29882
29883
29884
29885
29886
29887
29888
29889
29890
29891
29892
29893
29894
29895
29896
29897
29898
29899
29900
29901
29902
29903
29904
29905
29906
29907
29908
29909
29910
29911
29912
29913
29914
29915
29916
29917
29918
29919
29920
29921
29922
29923
29924
29925
29926
29927
29928
29929
29930
29931
29932
29933
29934
29935
29936
29937
29938
29939
29940
29941
29942
29943
29944
29945
29946
29947
29948
29949
29950
29951
29952
29953
29954
29955
29956
29957
29958
29959
29960
29961
29962
29963
29964
29965
29966
29967
29968
29969
29970
29971
29972
29973
29974
29975
29976
29977
29978
29979
29980
29981
29982
29983
29984
29985
29986
29987
29988
29989
29990
29991
29992
29993
29994
29995
29996
29997
29998
29999
30000
30001
30002
30003
30004
30005
30006
30007
30008
30009
30010
30011
30012
30013
30014
30015
30016
30017
30018
30019
30020
30021
30022
30023
30024
30025
30026
30027
30028
30029
30030
30031
30032
30033
30034
30035
30036
30037
30038
30039
30040
30041
30042
30043
30044
30045
30046
30047
30048
30049
30050
30051
30052
30053
30054
30055
30056
30057
30058
30059
30060
30061
30062
30063
30064
30065
30066
30067
30068
30069
30070
30071
30072
30073
30074
30075
30076
30077
30078
30079
30080
30081
30082
30083
30084
30085
30086
30087
30088
30089
30090
30091
30092
30093
30094
30095
30096
30097
30098
30099
30100
30101
30102
30103
30104
30105
30106
30107
30108
30109
30110
30111
30112
30113
30114
30115
30116
30117
30118
30119
30120
30121
30122
30123
30124
30125
30126
30127
30128
30129
30130
30131
30132
30133
30134
30135
30136
30137
30138
30139
30140
30141
30142
30143
30144
30145
30146
30147
30148
30149
30150
30151
30152
30153
30154
30155
30156
30157
30158
30159
30160
30161
30162
30163
30164
30165
30166
30167
30168
30169
30170
30171
30172
30173
30174
30175
30176
30177
30178
30179
30180
30181
30182
30183
30184
30185
30186
30187
30188
30189
30190
30191
30192
30193
30194
30195
30196
30197
30198
30199
30200
30201
30202
30203
30204
30205
30206
30207
30208
30209
30210
30211
30212
30213
30214
30215
30216
30217
30218
30219
30220
30221
30222
30223
30224
30225
30226
30227
30228
30229
30230
30231
30232
30233
30234
30235
30236
30237
30238
30239
30240
30241
30242
30243
30244
30245
30246
30247
30248
30249
30250
30251
30252
30253
30254
30255
30256
30257
30258
30259
30260
30261
30262
30263
30264
30265
30266
30267
30268
30269
30270
30271
30272
30273
30274
30275
30276
30277
30278
30279
30280
30281
30282
30283
30284
30285
30286
30287
30288
30289
30290
30291
30292
30293
30294
30295
30296
30297
30298
30299
30300
30301
30302
30303
30304
30305
30306
30307
30308
30309
30310
30311
30312
30313
30314
30315
30316
30317
30318
30319
30320
30321
30322
30323
30324
30325
30326
30327
30328
30329
30330
30331
30332
30333
30334
30335
30336
30337
30338
30339
30340
30341
30342
30343
30344
30345
30346
30347
30348
30349
30350
30351
30352
30353
30354
30355
30356
30357
30358
30359
30360
30361
30362
30363
30364
30365
30366
30367
30368
30369
30370
30371
30372
30373
30374
30375
30376
30377
30378
30379
30380
30381
30382
30383
30384
30385
30386
30387
30388
30389
30390
30391
30392
30393
30394
30395
30396
30397
30398
30399
30400
30401
30402
30403
30404
30405
30406
30407
30408
30409
30410
30411
30412
30413
30414
30415
30416
30417
30418
30419
30420
30421
30422
30423
30424
30425
30426
30427
30428
30429
30430
30431
30432
30433
30434
30435
30436
30437
30438
30439
30440
30441
30442
30443
30444
30445
30446
30447
30448
30449
30450
30451
30452
30453
30454
30455
30456
30457
30458
30459
30460
30461
30462
30463
30464
30465
30466
30467
30468
30469
30470
30471
30472
30473
30474
30475
30476
30477
30478
30479
30480
30481
30482
30483
30484
30485
30486
30487
30488
30489
30490
30491
30492
30493
30494
30495
30496
30497
30498
30499
30500
30501
30502
30503
30504
30505
30506
30507
30508
30509
30510
30511
30512
30513
30514
30515
30516
30517
30518
30519
30520
30521
30522
30523
30524
30525
30526
30527
30528
30529
30530
30531
30532
30533
30534
30535
30536
30537
30538
30539
30540
30541
30542
30543
30544
30545
30546
30547
30548
30549
30550
30551
30552
30553
30554
30555
30556
30557
30558
30559
30560
30561
30562
30563
30564
30565
30566
30567
30568
30569
30570
30571
30572
30573
30574
30575
30576
30577
30578
30579
30580
30581
30582
30583
30584
30585
30586
30587
30588
30589
30590
30591
30592
30593
30594
30595
30596
30597
30598
30599
30600
30601
30602
30603
30604
30605
30606
30607
30608
30609
30610
30611
30612
30613
30614
30615
30616
30617
30618
30619
30620
30621
30622
30623
30624
30625
30626
30627
30628
30629
30630
30631
30632
30633
30634
30635
30636
30637
30638
30639
30640
30641
30642
30643
30644
30645
30646
30647
30648
30649
30650
30651
30652
30653
30654
30655
30656
30657
30658
30659
30660
30661
30662
30663
30664
30665
30666
30667
30668
30669
30670
30671
30672
30673
30674
30675
30676
30677
30678
30679
30680
30681
30682
30683
30684
30685
30686
30687
30688
30689
30690
30691
30692
30693
30694
30695
30696
30697
30698
30699
30700
30701
30702
30703
30704
30705
30706
30707
30708
30709
30710
30711
30712
30713
30714
30715
30716
30717
30718
30719
30720
30721
30722
30723
30724
30725
30726
30727
30728
30729
30730
30731
30732
30733
30734
30735
30736
30737
30738
30739
30740
30741
30742
30743
30744
30745
30746
30747
30748
30749
30750
30751
30752
30753
30754
30755
30756
30757
30758
30759
30760
30761
30762
30763
30764
30765
30766
30767
30768
30769
30770
30771
30772
30773
30774
30775
30776
30777
30778
30779
30780
30781
30782
30783
30784
30785
30786
30787
30788
30789
30790
30791
30792
30793
30794
30795
30796
30797
30798
30799
30800
30801
30802
30803
30804
30805
30806
30807
30808
30809
30810
30811
30812
30813
30814
30815
30816
30817
30818
30819
30820
30821
30822
30823
30824
30825
30826
30827
30828
30829
30830
30831
30832
30833
30834
30835
30836
30837
30838
30839
30840
30841
30842
30843
30844
30845
30846
30847
30848
30849
30850
30851
30852
30853
30854
30855
30856
30857
30858
30859
30860
30861
30862
30863
30864
30865
30866
30867
30868
30869
30870
30871
30872
30873
30874
30875
30876
30877
30878
30879
30880
30881
30882
30883
30884
30885
30886
30887
30888
30889
30890
30891
30892
30893
30894
30895
30896
30897
30898
30899
30900
30901
30902
30903
30904
30905
30906
30907
30908
30909
30910
30911
30912
30913
30914
30915
30916
30917
30918
30919
30920
30921
30922
30923
30924
30925
30926
30927
30928
30929
30930
30931
30932
30933
30934
30935
30936
30937
30938
30939
30940
30941
30942
30943
30944
30945
30946
30947
30948
30949
30950
30951
30952
30953
30954
30955
30956
30957
30958
30959
30960
30961
30962
30963
30964
30965
30966
30967
30968
30969
30970
30971
30972
30973
30974
30975
30976
30977
30978
30979
30980
30981
30982
30983
30984
30985
30986
30987
30988
30989
30990
30991
30992
30993
30994
30995
30996
30997
30998
30999
31000
31001
31002
31003
31004
31005
31006
31007
31008
31009
31010
31011
31012
31013
31014
31015
31016
31017
31018
31019
31020
31021
31022
31023
31024
31025
31026
31027
31028
31029
31030
31031
31032
31033
31034
31035
31036
31037
31038
31039
31040
31041
31042
31043
31044
31045
31046
31047
31048
31049
31050
31051
31052
31053
31054
31055
31056
31057
31058
31059
31060
31061
31062
31063
31064
31065
31066
31067
31068
31069
31070
31071
31072
31073
31074
31075
31076
31077
31078
31079
31080
31081
31082
31083
31084
31085
31086
31087
31088
31089
31090
31091
31092
31093
31094
31095
31096
31097
31098
31099
31100
31101
31102
31103
31104
31105
31106
31107
31108
31109
31110
31111
31112
31113
31114
31115
31116
31117
31118
31119
31120
31121
31122
31123
31124
31125
31126
31127
31128
31129
31130
31131
31132
31133
31134
31135
31136
31137
31138
31139
31140
31141
31142
31143
31144
31145
31146
31147
31148
31149
31150
31151
31152
31153
31154
31155
31156
31157
31158
31159
31160
31161
31162
31163
31164
31165
31166
31167
31168
31169
31170
31171
31172
31173
31174
31175
31176
31177
31178
31179
31180
31181
31182
31183
31184
31185
31186
31187
31188
31189
31190
31191
31192
31193
31194
31195
31196
31197
31198
31199
31200
31201
31202
31203
31204
31205
31206
31207
31208
31209
31210
31211
31212
31213
31214
31215
31216
31217
31218
31219
31220
31221
31222
31223
31224
31225
31226
31227
31228
31229
31230
31231
31232
31233
31234
31235
31236
31237
31238
31239
31240
31241
31242
31243
31244
31245
31246
31247
31248
31249
31250
31251
31252
31253
31254
31255
31256
31257
31258
31259
31260
31261
31262
31263
31264
31265
31266
31267
31268
31269
31270
31271
31272
31273
31274
31275
31276
31277
31278
31279
31280
31281
31282
31283
31284
31285
31286
31287
31288
31289
31290
31291
31292
31293
31294
31295
31296
31297
31298
31299
31300
31301
31302
31303
31304
31305
31306
31307
31308
31309
31310
31311
31312
31313
31314
31315
31316
31317
31318
31319
31320
31321
31322
31323
31324
31325
31326
31327
31328
31329
31330
31331
31332
31333
31334
31335
31336
31337
31338
31339
31340
31341
31342
31343
31344
31345
31346
31347
31348
31349
31350
31351
31352
31353
31354
31355
31356
31357
31358
31359
31360
31361
31362
31363
31364
31365
31366
31367
31368
31369
31370
31371
31372
31373
31374
31375
31376
31377
31378
31379
31380
31381
31382
31383
31384
31385
31386
31387
31388
31389
31390
31391
31392
31393
31394
31395
31396
31397
31398
31399
31400
31401
31402
31403
31404
31405
31406
31407
31408
31409
31410
31411
31412
31413
31414
31415
31416
31417
31418
31419
31420
31421
31422
31423
31424
31425
31426
31427
31428
31429
31430
31431
31432
31433
31434
31435
31436
31437
31438
31439
31440
31441
31442
31443
31444
31445
31446
31447
31448
31449
31450
31451
31452
31453
31454
31455
31456
31457
31458
31459
31460
31461
31462
31463
31464
31465
31466
31467
31468
31469
31470
31471
31472
31473
31474
31475
31476
31477
31478
31479
31480
31481
31482
31483
31484
31485
31486
31487
31488
31489
31490
31491
31492
31493
31494
31495
31496
31497
31498
31499
31500
31501
31502
31503
31504
31505
31506
31507
31508
31509
31510
31511
31512
31513
31514
31515
31516
31517
31518
31519
31520
31521
31522
31523
31524
31525
31526
31527
31528
31529
31530
31531
31532
31533
31534
31535
31536
31537
31538
31539
31540
31541
31542
31543
31544
31545
31546
31547
31548
31549
31550
31551
31552
31553
31554
31555
31556
31557
31558
31559
31560
31561
31562
31563
31564
31565
31566
31567
31568
31569
31570
31571
31572
31573
31574
31575
31576
31577
31578
31579
31580
31581
31582
31583
31584
31585
31586
31587
31588
31589
31590
31591
31592
31593
31594
31595
31596
31597
31598
31599
31600
31601
31602
31603
31604
31605
31606
31607
31608
31609
31610
31611
31612
31613
31614
31615
31616
31617
31618
31619
31620
31621
31622
31623
31624
31625
31626
31627
31628
31629
31630
31631
31632
31633
31634
31635
31636
31637
31638
31639
31640
31641
31642
31643
31644
31645
31646
31647
31648
31649
31650
31651
31652
31653
31654
31655
31656
31657
31658
31659
31660
31661
31662
31663
31664
31665
31666
31667
31668
31669
31670
31671
31672
31673
31674
31675
31676
31677
31678
31679
31680
31681
31682
31683
31684
31685
31686
31687
31688
31689
31690
31691
31692
31693
31694
31695
31696
31697
31698
31699
31700
31701
31702
31703
31704
31705
31706
31707
31708
31709
31710
31711
31712
31713
31714
31715
31716
31717
31718
31719
31720
31721
31722
31723
31724
31725
31726
31727
31728
31729
31730
31731
31732
31733
31734
31735
31736
31737
31738
31739
31740
31741
31742
31743
31744
31745
31746
31747
31748
31749
31750
31751
31752
31753
31754
31755
31756
31757
31758
31759
31760
31761
31762
31763
31764
31765
31766
31767
31768
31769
31770
31771
31772
31773
31774
31775
31776
31777
31778
31779
31780
31781
31782
31783
31784
31785
31786
31787
31788
31789
31790
31791
31792
31793
31794
31795
31796
31797
31798
31799
31800
31801
31802
31803
31804
31805
31806
31807
31808
31809
31810
31811
31812
31813
31814
31815
31816
31817
31818
31819
31820
31821
31822
31823
31824
31825
31826
31827
31828
31829
31830
31831
31832
31833
31834
31835
31836
31837
31838
31839
31840
31841
31842
31843
31844
31845
31846
31847
31848
31849
31850
31851
31852
31853
31854
31855
31856
31857
31858
31859
31860
31861
31862
31863
31864
31865
31866
31867
31868
31869
31870
31871
31872
31873
31874
31875
31876
31877
31878
31879
31880
31881
31882
31883
31884
31885
31886
31887
31888
31889
31890
31891
31892
31893
31894
31895
31896
31897
31898
31899
31900
31901
31902
31903
31904
31905
31906
31907
31908
31909
31910
31911
31912
31913
31914
31915
31916
31917
31918
31919
31920
31921
31922
31923
31924
31925
31926
31927
31928
31929
31930
31931
31932
31933
31934
31935
31936
31937
31938
31939
31940
31941
31942
31943
31944
31945
31946
31947
31948
31949
31950
31951
31952
31953
31954
31955
31956
31957
31958
31959
31960
31961
31962
31963
31964
31965
31966
31967
31968
31969
31970
31971
31972
31973
31974
31975
31976
31977
31978
31979
31980
31981
31982
31983
31984
31985
31986
31987
31988
31989
31990
31991
31992
31993
31994
31995
31996
31997
31998
31999
32000
32001
32002
32003
32004
32005
32006
32007
32008
32009
32010
32011
32012
32013
32014
32015
32016
32017
32018
32019
32020
32021
32022
32023
32024
32025
32026
32027
32028
32029
32030
32031
32032
32033
32034
32035
32036
32037
32038
32039
32040
32041
32042
32043
32044
32045
32046
32047
32048
32049
32050
32051
32052
32053
32054
32055
32056
32057
32058
32059
32060
32061
32062
32063
32064
32065
32066
32067
32068
32069
32070
32071
32072
32073
32074
32075
32076
32077
32078
32079
32080
32081
32082
32083
32084
32085
32086
32087
32088
32089
32090
32091
32092
32093
32094
32095
32096
32097
32098
32099
32100
32101
32102
32103
32104
32105
32106
32107
32108
32109
32110
32111
32112
32113
32114
32115
32116
32117
32118
32119
32120
32121
32122
32123
32124
32125
32126
32127
32128
32129
32130
32131
32132
32133
32134
32135
32136
32137
32138
32139
32140
32141
32142
32143
32144
32145
32146
32147
32148
32149
32150
32151
32152
32153
32154
32155
32156
32157
32158
32159
32160
32161
32162
32163
32164
32165
32166
32167
32168
32169
32170
32171
32172
32173
32174
32175
32176
32177
32178
32179
32180
32181
32182
32183
32184
32185
32186
32187
32188
32189
32190
32191
32192
32193
32194
32195
32196
32197
32198
32199
32200
32201
32202
32203
32204
32205
32206
32207
32208
32209
32210
32211
32212
32213
32214
32215
32216
32217
32218
32219
32220
32221
32222
32223
32224
32225
32226
32227
32228
32229
32230
32231
32232
32233
32234
32235
32236
32237
32238
32239
32240
32241
32242
32243
32244
32245
32246
32247
32248
32249
32250
32251
32252
32253
32254
32255
32256
32257
32258
32259
32260
32261
32262
32263
32264
32265
32266
32267
32268
32269
32270
32271
32272
32273
32274
32275
32276
32277
32278
32279
32280
32281
32282
32283
32284
32285
32286
32287
32288
32289
32290
32291
32292
32293
32294
32295
32296
32297
32298
32299
32300
32301
32302
32303
32304
32305
32306
32307
32308
32309
32310
32311
32312
32313
32314
32315
32316
32317
32318
32319
32320
32321
32322
32323
32324
32325
32326
32327
32328
32329
32330
32331
32332
32333
32334
32335
32336
32337
32338
32339
32340
32341
32342
32343
32344
32345
32346
32347
32348
32349
32350
32351
32352
32353
32354
32355
32356
32357
32358
32359
32360
32361
32362
32363
32364
32365
32366
32367
32368
32369
32370
32371
32372
32373
32374
32375
32376
32377
32378
32379
32380
32381
32382
32383
32384
32385
32386
32387
32388
32389
32390
32391
32392
32393
32394
32395
32396
32397
32398
32399
32400
32401
32402
32403
32404
32405
32406
32407
32408
32409
32410
32411
32412
32413
32414
32415
32416
32417
32418
32419
32420
32421
32422
32423
32424
32425
32426
32427
32428
32429
32430
32431
32432
32433
32434
32435
32436
32437
32438
32439
32440
32441
32442
32443
32444
32445
32446
32447
32448
32449
32450
32451
32452
32453
32454
32455
32456
32457
32458
32459
32460
32461
32462
32463
32464
32465
32466
32467
32468
32469
32470
32471
32472
32473
32474
32475
32476
32477
32478
32479
32480
32481
32482
32483
32484
32485
32486
32487
32488
32489
32490
32491
32492
32493
32494
32495
32496
32497
32498
32499
32500
32501
32502
32503
32504
32505
32506
32507
32508
32509
32510
32511
32512
32513
32514
32515
32516
32517
32518
32519
32520
32521
32522
32523
32524
32525
32526
32527
32528
32529
32530
32531
32532
32533
32534
32535
32536
32537
32538
32539
32540
32541
32542
32543
32544
32545
32546
32547
32548
32549
32550
32551
32552
32553
32554
32555
32556
32557
32558
32559
32560
32561
32562
32563
32564
32565
32566
32567
32568
32569
32570
32571
32572
32573
32574
32575
32576
32577
32578
32579
32580
32581
32582
32583
32584
32585
32586
32587
32588
32589
32590
32591
32592
32593
32594
32595
32596
32597
32598
32599
32600
32601
32602
32603
32604
32605
32606
32607
32608
32609
32610
32611
32612
32613
32614
32615
32616
32617
32618
32619
32620
32621
32622
32623
32624
32625
32626
32627
32628
32629
32630
32631
32632
32633
32634
32635
32636
32637
32638
32639
32640
32641
32642
32643
32644
32645
32646
32647
32648
32649
32650
32651
32652
32653
32654
32655
32656
32657
32658
32659
32660
32661
32662
32663
32664
32665
32666
32667
32668
32669
32670
32671
32672
32673
32674
32675
32676
32677
32678
32679
32680
32681
32682
32683
32684
32685
32686
32687
32688
32689
32690
32691
32692
32693
32694
32695
32696
32697
32698
32699
32700
32701
32702
32703
32704
32705
32706
32707
32708
32709
32710
32711
32712
32713
32714
32715
32716
32717
32718
32719
32720
32721
32722
32723
32724
32725
32726
32727
32728
32729
32730
32731
32732
32733
32734
32735
32736
32737
32738
32739
32740
32741
32742
32743
32744
32745
32746
32747
32748
32749
32750
32751
32752
32753
32754
32755
32756
32757
32758
32759
32760
32761
32762
32763
32764
32765
32766
32767
32768
32769
32770
32771
32772
32773
32774
32775
32776
32777
32778
32779
32780
32781
32782
32783
32784
32785
32786
32787
32788
32789
32790
32791
32792
32793
32794
32795
32796
32797
32798
32799
32800
32801
32802
32803
32804
32805
32806
32807
32808
32809
32810
32811
32812
32813
32814
32815
32816
32817
32818
32819
32820
32821
32822
32823
32824
32825
32826
32827
32828
32829
32830
32831
32832
32833
32834
32835
32836
32837
32838
32839
32840
32841
32842
32843
32844
32845
32846
32847
32848
32849
32850
32851
32852
32853
32854
32855
32856
32857
32858
32859
32860
32861
32862
32863
32864
32865
32866
32867
32868
32869
32870
32871
32872
32873
32874
32875
32876
32877
32878
32879
32880
32881
32882
32883
32884
32885
32886
32887
32888
32889
32890
32891
32892
32893
32894
32895
32896
32897
32898
32899
32900
32901
32902
32903
32904
32905
32906
32907
32908
32909
32910
32911
32912
32913
32914
32915
32916
32917
32918
32919
32920
32921
32922
32923
32924
32925
32926
32927
32928
32929
32930
32931
32932
32933
32934
32935
32936
32937
32938
32939
32940
32941
32942
32943
32944
32945
32946
32947
32948
32949
32950
32951
32952
32953
32954
32955
32956
32957
32958
32959
32960
32961
32962
32963
32964
32965
32966
32967
32968
32969
32970
32971
32972
32973
32974
32975
32976
32977
32978
32979
32980
32981
32982
32983
32984
32985
32986
32987
32988
32989
32990
32991
32992
32993
32994
32995
32996
32997
32998
32999
33000
33001
33002
33003
33004
33005
33006
33007
33008
33009
33010
33011
33012
33013
33014
33015
33016
33017
33018
33019
33020
33021
33022
33023
33024
33025
33026
33027
33028
33029
33030
33031
33032
33033
33034
33035
33036
33037
33038
33039
33040
33041
33042
33043
33044
33045
33046
33047
33048
33049
33050
33051
33052
33053
33054
33055
33056
33057
33058
33059
33060
33061
33062
33063
33064
33065
33066
33067
33068
33069
33070
33071
33072
33073
33074
33075
33076
33077
33078
33079
33080
33081
33082
33083
33084
33085
33086
33087
33088
33089
33090
33091
33092
33093
33094
33095
33096
33097
33098
33099
33100
33101
33102
33103
33104
33105
33106
33107
33108
33109
33110
33111
33112
33113
33114
33115
33116
33117
33118
33119
33120
33121
33122
33123
33124
33125
33126
33127
33128
33129
33130
33131
33132
33133
33134
33135
33136
33137
33138
33139
33140
33141
33142
33143
33144
33145
33146
33147
33148
33149
33150
33151
33152
33153
33154
33155
33156
33157
33158
33159
33160
33161
33162
33163
33164
33165
33166
33167
33168
33169
33170
33171
33172
33173
33174
33175
33176
33177
33178
33179
33180
33181
33182
33183
33184
33185
33186
33187
33188
33189
33190
33191
33192
33193
33194
33195
33196
33197
33198
33199
33200
33201
33202
33203
33204
33205
33206
33207
33208
33209
33210
33211
33212
33213
33214
33215
33216
33217
33218
33219
33220
33221
33222
33223
33224
33225
33226
33227
33228
33229
33230
33231
33232
33233
33234
33235
33236
33237
33238
33239
33240
33241
33242
33243
33244
33245
33246
33247
33248
33249
33250
33251
33252
33253
33254
33255
33256
33257
33258
33259
33260
33261
33262
33263
33264
33265
33266
33267
33268
33269
33270
33271
33272
33273
33274
33275
33276
33277
33278
33279
33280
33281
33282
33283
33284
33285
33286
33287
33288
33289
33290
33291
33292
33293
33294
33295
33296
33297
33298
33299
33300
33301
33302
33303
33304
33305
33306
33307
33308
33309
33310
33311
33312
33313
33314
33315
33316
33317
33318
33319
33320
33321
33322
33323
33324
33325
33326
33327
33328
33329
33330
33331
33332
33333
33334
33335
33336
33337
33338
33339
33340
33341
33342
33343
33344
33345
33346
33347
33348
33349
33350
33351
33352
33353
33354
33355
33356
33357
33358
33359
33360
33361
33362
33363
33364
33365
33366
33367
33368
33369
33370
33371
33372
33373
33374
33375
33376
33377
33378
33379
33380
33381
33382
33383
33384
33385
33386
33387
33388
33389
33390
33391
33392
33393
33394
33395
33396
33397
33398
33399
33400
33401
33402
33403
33404
33405
33406
33407
33408
33409
33410
33411
33412
33413
33414
33415
33416
33417
33418
33419
33420
33421
33422
33423
33424
33425
33426
33427
33428
33429
33430
33431
33432
33433
33434
33435
33436
33437
33438
33439
33440
33441
33442
33443
33444
33445
33446
33447
33448
33449
33450
33451
33452
33453
33454
33455
33456
33457
33458
33459
33460
33461
33462
33463
33464
33465
33466
33467
33468
33469
33470
33471
33472
33473
33474
33475
33476
33477
33478
33479
33480
33481
33482
33483
33484
33485
33486
33487
33488
33489
33490
33491
33492
33493
33494
33495
33496
33497
33498
33499
33500
33501
33502
33503
33504
33505
33506
33507
33508
33509
33510
33511
33512
33513
33514
33515
33516
33517
33518
33519
33520
33521
33522
33523
33524
33525
33526
33527
33528
33529
33530
33531
33532
33533
33534
33535
33536
33537
33538
33539
33540
33541
33542
33543
33544
33545
33546
33547
33548
33549
33550
33551
33552
33553
33554
33555
33556
33557
33558
33559
33560
33561
33562
33563
33564
33565
33566
33567
33568
33569
33570
33571
33572
33573
33574
33575
33576
33577
33578
33579
33580
33581
33582
33583
33584
33585
33586
33587
33588
33589
33590
33591
33592
33593
33594
33595
33596
33597
33598
33599
33600
33601
33602
33603
33604
33605
33606
33607
33608
33609
33610
33611
33612
33613
33614
33615
33616
33617
33618
33619
33620
33621
33622
33623
33624
33625
33626
33627
33628
33629
33630
33631
33632
33633
33634
33635
33636
33637
33638
33639
33640
33641
33642
33643
33644
33645
33646
33647
33648
33649
33650
33651
33652
33653
33654
33655
33656
33657
33658
33659
33660
33661
33662
33663
33664
33665
33666
33667
33668
33669
33670
33671
33672
33673
33674
33675
33676
33677
33678
33679
33680
33681
33682
33683
33684
33685
33686
33687
33688
33689
33690
33691
33692
33693
33694
33695
33696
33697
33698
33699
33700
33701
33702
33703
33704
33705
33706
33707
33708
33709
33710
33711
33712
33713
33714
33715
33716
33717
33718
33719
33720
33721
33722
33723
33724
33725
33726
33727
33728
33729
33730
33731
33732
33733
33734
33735
33736
33737
33738
33739
33740
33741
33742
33743
33744
33745
33746
33747
33748
33749
33750
33751
33752
33753
33754
33755
33756
33757
33758
33759
33760
33761
33762
33763
33764
33765
33766
33767
33768
33769
33770
33771
33772
33773
33774
33775
33776
33777
33778
33779
33780
33781
33782
33783
33784
33785
33786
33787
33788
33789
33790
33791
33792
33793
33794
33795
33796
33797
33798
33799
33800
33801
33802
33803
33804
33805
33806
33807
33808
33809
33810
33811
33812
33813
33814
33815
33816
33817
33818
33819
33820
33821
33822
33823
33824
33825
33826
33827
33828
33829
33830
33831
33832
33833
33834
33835
33836
33837
33838
33839
33840
33841
33842
33843
33844
33845
33846
33847
33848
33849
33850
33851
33852
33853
33854
33855
33856
33857
33858
33859
33860
33861
33862
33863
33864
33865
33866
33867
33868
33869
33870
33871
33872
33873
33874
33875
33876
33877
33878
33879
33880
33881
33882
33883
33884
33885
33886
33887
33888
33889
33890
33891
33892
33893
33894
33895
33896
33897
33898
33899
33900
33901
33902
33903
33904
33905
33906
33907
33908
33909
33910
33911
33912
33913
33914
33915
33916
33917
33918
33919
33920
33921
33922
33923
33924
33925
33926
33927
33928
33929
33930
33931
33932
33933
33934
33935
33936
33937
33938
33939
33940
33941
33942
33943
33944
33945
33946
33947
33948
33949
33950
33951
33952
33953
33954
33955
33956
33957
33958
33959
33960
33961
33962
33963
33964
33965
33966
33967
33968
33969
33970
33971
33972
33973
33974
33975
33976
33977
33978
33979
33980
33981
33982
33983
33984
33985
33986
33987
33988
33989
33990
33991
33992
33993
33994
33995
33996
33997
33998
33999
34000
34001
34002
34003
34004
34005
34006
34007
34008
34009
34010
34011
34012
34013
34014
34015
34016
34017
34018
34019
34020
34021
34022
34023
34024
34025
34026
34027
34028
34029
34030
34031
34032
34033
34034
34035
34036
34037
34038
34039
34040
34041
34042
34043
34044
34045
34046
34047
34048
34049
34050
34051
34052
34053
34054
34055
34056
34057
34058
34059
34060
34061
34062
34063
34064
34065
34066
34067
34068
34069
34070
34071
34072
34073
34074
34075
34076
34077
34078
34079
34080
34081
34082
34083
34084
34085
34086
34087
34088
34089
34090
34091
34092
34093
34094
34095
34096
34097
34098
34099
34100
34101
34102
34103
34104
34105
34106
34107
34108
34109
34110
34111
34112
34113
34114
34115
34116
34117
34118
34119
34120
34121
34122
34123
34124
34125
34126
34127
34128
34129
34130
34131
34132
34133
34134
34135
34136
34137
34138
34139
34140
34141
34142
34143
34144
34145
34146
34147
34148
34149
34150
34151
34152
34153
34154
34155
34156
34157
34158
34159
34160
34161
34162
34163
34164
34165
34166
34167
34168
34169
34170
34171
34172
34173
34174
34175
34176
34177
34178
34179
34180
34181
34182
34183
34184
34185
34186
34187
34188
34189
34190
34191
34192
34193
34194
34195
34196
34197
34198
34199
34200
34201
34202
34203
34204
34205
34206
34207
34208
34209
34210
34211
34212
34213
34214
34215
34216
34217
34218
34219
34220
34221
34222
34223
34224
34225
34226
34227
34228
34229
34230
34231
34232
34233
34234
34235
34236
34237
34238
34239
34240
34241
34242
34243
34244
34245
34246
34247
34248
34249
34250
34251
34252
34253
34254
34255
34256
34257
34258
34259
34260
34261
34262
34263
34264
34265
34266
34267
34268
34269
34270
34271
34272
34273
34274
34275
34276
34277
34278
34279
34280
34281
34282
34283
34284
34285
34286
34287
34288
34289
34290
34291
34292
34293
34294
34295
34296
34297
34298
34299
34300
34301
34302
34303
34304
34305
34306
34307
34308
34309
34310
34311
34312
34313
34314
34315
34316
34317
34318
34319
34320
34321
34322
34323
34324
34325
34326
34327
34328
34329
34330
34331
34332
34333
34334
34335
34336
34337
34338
34339
34340
34341
34342
34343
34344
34345
34346
34347
34348
34349
34350
34351
34352
34353
34354
34355
34356
34357
34358
34359
34360
34361
34362
34363
34364
34365
34366
34367
34368
34369
34370
34371
34372
34373
34374
34375
34376
34377
34378
34379
34380
34381
34382
34383
34384
34385
34386
34387
34388
34389
34390
34391
34392
34393
34394
34395
34396
34397
34398
34399
34400
34401
34402
34403
34404
34405
34406
34407
34408
34409
34410
34411
34412
34413
34414
34415
34416
34417
34418
34419
34420
34421
34422
34423
34424
34425
34426
34427
34428
34429
34430
34431
34432
34433
34434
34435
34436
34437
34438
34439
34440
34441
34442
34443
34444
34445
34446
34447
34448
34449
34450
34451
34452
34453
34454
34455
34456
34457
34458
34459
34460
34461
34462
34463
34464
34465
34466
34467
34468
34469
34470
34471
34472
34473
34474
34475
34476
34477
34478
34479
34480
34481
34482
34483
34484
34485
34486
34487
34488
34489
34490
34491
34492
34493
34494
34495
34496
34497
34498
34499
34500
34501
34502
34503
34504
34505
34506
34507
34508
34509
34510
34511
34512
34513
34514
34515
34516
34517
34518
34519
34520
34521
34522
34523
34524
34525
34526
34527
34528
34529
34530
34531
34532
34533
34534
34535
34536
34537
34538
34539
34540
34541
34542
34543
34544
34545
34546
34547
34548
34549
34550
34551
34552
34553
34554
34555
34556
34557
34558
34559
34560
34561
34562
34563
34564
34565
34566
34567
34568
34569
34570
34571
34572
34573
34574
34575
34576
34577
34578
34579
34580
34581
34582
34583
34584
34585
34586
34587
34588
34589
34590
34591
34592
34593
34594
34595
34596
34597
34598
34599
34600
34601
34602
34603
34604
34605
34606
34607
34608
34609
34610
34611
34612
34613
34614
34615
34616
34617
34618
34619
34620
34621
34622
34623
34624
34625
34626
34627
34628
34629
34630
34631
34632
34633
34634
34635
34636
34637
34638
34639
34640
34641
34642
34643
34644
34645
34646
34647
34648
34649
34650
34651
34652
34653
34654
34655
34656
34657
34658
34659
34660
34661
34662
34663
34664
34665
34666
34667
34668
34669
34670
34671
34672
34673
34674
34675
34676
34677
34678
34679
34680
34681
34682
34683
34684
34685
34686
34687
34688
34689
34690
34691
34692
34693
34694
34695
34696
34697
34698
34699
34700
34701
34702
34703
34704
34705
34706
34707
34708
34709
34710
34711
34712
34713
34714
34715
34716
34717
34718
34719
34720
34721
34722
34723
34724
34725
34726
34727
34728
34729
34730
34731
34732
34733
34734
34735
34736
34737
34738
34739
34740
34741
34742
34743
34744
34745
34746
34747
34748
34749
34750
34751
34752
34753
34754
34755
34756
34757
34758
34759
34760
34761
34762
34763
34764
34765
34766
34767
34768
34769
34770
34771
34772
34773
34774
34775
34776
34777
34778
34779
34780
34781
34782
34783
34784
34785
34786
34787
34788
34789
34790
34791
34792
34793
34794
34795
34796
34797
34798
34799
34800
34801
34802
34803
34804
34805
34806
34807
34808
34809
34810
34811
34812
34813
34814
34815
34816
34817
34818
34819
34820
34821
34822
34823
34824
34825
34826
34827
34828
34829
34830
34831
34832
34833
34834
34835
34836
34837
34838
34839
34840
34841
34842
34843
34844
34845
34846
34847
34848
34849
34850
34851
34852
34853
34854
34855
34856
34857
34858
34859
34860
34861
34862
34863
34864
34865
34866
34867
34868
34869
34870
34871
34872
34873
34874
34875
34876
34877
34878
34879
34880
34881
34882
34883
34884
34885
34886
34887
34888
34889
34890
34891
34892
34893
34894
34895
34896
34897
34898
34899
34900
34901
34902
34903
34904
34905
34906
34907
34908
34909
34910
34911
34912
34913
34914
34915
34916
34917
34918
34919
34920
34921
34922
34923
34924
34925
34926
34927
34928
34929
34930
34931
34932
34933
34934
34935
34936
34937
34938
34939
34940
34941
34942
34943
34944
34945
34946
34947
34948
34949
34950
34951
34952
34953
34954
34955
34956
34957
34958
34959
34960
34961
34962
34963
34964
34965
34966
34967
34968
34969
34970
34971
34972
34973
34974
34975
34976
34977
34978
34979
34980
34981
34982
34983
34984
34985
34986
34987
34988
34989
34990
34991
34992
34993
34994
34995
34996
34997
34998
34999
35000
35001
35002
35003
35004
35005
35006
35007
35008
35009
35010
35011
35012
35013
35014
35015
35016
35017
35018
35019
35020
35021
35022
35023
35024
35025
35026
35027
35028
35029
35030
35031
35032
35033
35034
35035
35036
35037
35038
35039
35040
35041
35042
35043
35044
35045
35046
35047
35048
35049
35050
35051
35052
35053
35054
35055
35056
35057
35058
35059
35060
35061
35062
35063
35064
35065
35066
35067
35068
35069
35070
35071
35072
35073
35074
35075
35076
35077
35078
35079
35080
35081
35082
35083
35084
35085
35086
35087
35088
35089
35090
35091
35092
35093
35094
35095
35096
35097
35098
35099
35100
35101
35102
35103
35104
35105
35106
35107
35108
35109
35110
35111
35112
35113
35114
35115
35116
35117
35118
35119
35120
35121
35122
35123
35124
35125
35126
35127
35128
35129
35130
35131
35132
35133
35134
35135
35136
35137
35138
35139
35140
35141
35142
35143
35144
35145
35146
35147
35148
35149
35150
35151
35152
35153
35154
35155
35156
35157
35158
35159
35160
35161
35162
35163
35164
35165
35166
35167
35168
35169
35170
35171
35172
35173
35174
35175
35176
35177
35178
35179
35180
35181
35182
35183
35184
35185
35186
35187
35188
35189
35190
35191
35192
35193
35194
35195
35196
35197
35198
35199
35200
35201
35202
35203
35204
35205
35206
35207
35208
35209
35210
35211
35212
35213
35214
35215
35216
35217
35218
35219
35220
35221
35222
35223
35224
35225
35226
35227
35228
35229
35230
35231
35232
35233
35234
35235
35236
35237
35238
35239
35240
35241
35242
35243
35244
35245
35246
35247
35248
35249
35250
35251
35252
35253
35254
35255
35256
35257
35258
35259
35260
35261
35262
35263
35264
35265
35266
35267
35268
35269
35270
35271
35272
35273
35274
35275
35276
35277
35278
35279
35280
35281
35282
35283
35284
35285
35286
35287
35288
35289
35290
35291
35292
35293
35294
35295
35296
35297
35298
35299
35300
35301
35302
35303
35304
35305
35306
35307
35308
35309
35310
35311
35312
35313
35314
35315
35316
35317
35318
35319
35320
35321
35322
35323
35324
35325
35326
35327
35328
35329
35330
35331
35332
35333
35334
35335
35336
35337
35338
35339
35340
35341
35342
35343
35344
35345
35346
35347
35348
35349
35350
35351
35352
35353
35354
35355
35356
35357
35358
35359
35360
35361
35362
35363
35364
35365
35366
35367
35368
35369
35370
35371
35372
35373
35374
35375
35376
35377
35378
35379
35380
35381
35382
35383
35384
35385
35386
35387
35388
35389
35390
35391
35392
35393
35394
35395
35396
35397
35398
35399
35400
35401
35402
35403
35404
35405
35406
35407
35408
35409
35410
35411
35412
35413
35414
35415
35416
35417
35418
35419
35420
35421
35422
35423
35424
35425
35426
35427
35428
35429
35430
35431
35432
35433
35434
35435
35436
35437
35438
35439
35440
35441
35442
35443
35444
35445
35446
35447
35448
35449
35450
35451
35452
35453
35454
35455
35456
35457
35458
35459
35460
35461
35462
35463
35464
35465
35466
35467
35468
35469
35470
35471
35472
35473
35474
35475
35476
35477
35478
35479
35480
35481
35482
35483
35484
35485
35486
35487
35488
35489
35490
35491
35492
35493
35494
35495
35496
35497
35498
35499
35500
35501
35502
35503
35504
35505
35506
35507
35508
35509
35510
35511
35512
35513
35514
35515
35516
35517
35518
35519
35520
35521
35522
35523
35524
35525
35526
35527
35528
35529
35530
35531
35532
35533
35534
35535
35536
35537
35538
35539
35540
35541
35542
35543
35544
35545
35546
35547
35548
35549
35550
35551
35552
35553
35554
35555
35556
35557
35558
35559
35560
35561
35562
35563
35564
35565
35566
35567
35568
35569
35570
35571
35572
35573
35574
35575
35576
35577
35578
35579
35580
35581
35582
35583
35584
35585
35586
35587
35588
35589
35590
35591
35592
35593
35594
35595
35596
35597
35598
35599
35600
35601
35602
35603
35604
35605
35606
35607
35608
35609
35610
35611
35612
35613
35614
35615
35616
35617
35618
35619
35620
35621
35622
35623
35624
35625
35626
35627
35628
35629
35630
35631
35632
35633
35634
35635
35636
35637
35638
35639
35640
35641
35642
35643
35644
35645
35646
35647
35648
35649
35650
35651
35652
35653
35654
35655
35656
35657
35658
35659
35660
35661
35662
35663
35664
35665
35666
35667
35668
35669
35670
35671
35672
35673
35674
35675
35676
35677
35678
35679
35680
35681
35682
35683
35684
35685
35686
35687
35688
35689
35690
35691
35692
35693
35694
35695
35696
35697
35698
35699
35700
35701
35702
35703
35704
35705
35706
35707
35708
35709
35710
35711
35712
35713
35714
35715
35716
35717
35718
35719
35720
35721
35722
35723
35724
35725
35726
35727
35728
35729
35730
35731
35732
35733
35734
35735
35736
35737
35738
35739
35740
35741
35742
35743
35744
35745
35746
35747
35748
35749
35750
35751
35752
35753
35754
35755
35756
35757
35758
35759
35760
35761
35762
35763
35764
35765
35766
35767
35768
35769
35770
35771
35772
35773
35774
35775
35776
35777
35778
35779
35780
35781
35782
35783
35784
35785
35786
35787
35788
35789
35790
35791
35792
35793
35794
35795
35796
35797
35798
35799
35800
35801
35802
35803
35804
35805
35806
35807
35808
35809
35810
35811
35812
35813
35814
35815
35816
35817
35818
35819
35820
35821
35822
35823
35824
35825
35826
35827
35828
35829
35830
35831
35832
35833
35834
35835
35836
35837
35838
35839
35840
35841
35842
35843
35844
35845
35846
35847
35848
35849
35850
35851
35852
35853
35854
35855
35856
35857
35858
35859
35860
35861
35862
35863
35864
35865
35866
35867
35868
35869
35870
35871
35872
35873
35874
35875
35876
35877
35878
35879
35880
35881
35882
35883
35884
35885
35886
35887
35888
35889
35890
35891
35892
35893
35894
35895
35896
35897
35898
35899
35900
35901
35902
35903
35904
35905
35906
35907
35908
35909
35910
35911
35912
35913
35914
35915
35916
35917
35918
35919
35920
35921
35922
35923
35924
35925
35926
35927
35928
35929
35930
35931
35932
35933
35934
35935
35936
35937
35938
35939
35940
35941
35942
35943
35944
35945
35946
35947
35948
35949
35950
35951
35952
35953
35954
35955
35956
35957
35958
35959
35960
35961
35962
35963
35964
35965
35966
35967
35968
35969
35970
35971
35972
35973
35974
35975
35976
35977
35978
35979
35980
35981
35982
35983
35984
35985
35986
35987
35988
35989
35990
35991
35992
35993
35994
35995
35996
35997
35998
35999
36000
36001
36002
36003
36004
36005
36006
36007
36008
36009
36010
36011
36012
36013
36014
36015
36016
36017
36018
36019
36020
36021
36022
36023
36024
36025
36026
36027
36028
36029
36030
36031
36032
36033
36034
36035
36036
36037
36038
36039
36040
36041
36042
36043
36044
36045
36046
36047
36048
36049
36050
36051
36052
36053
36054
36055
36056
36057
36058
36059
36060
36061
36062
36063
36064
36065
36066
36067
36068
36069
36070
36071
36072
36073
36074
36075
36076
36077
36078
36079
36080
36081
36082
36083
36084
36085
36086
36087
36088
36089
36090
36091
36092
36093
36094
36095
36096
36097
36098
36099
36100
36101
36102
36103
36104
36105
36106
36107
36108
36109
36110
36111
36112
36113
36114
36115
36116
36117
36118
36119
36120
36121
36122
36123
36124
36125
36126
36127
36128
36129
36130
36131
36132
36133
36134
36135
36136
36137
36138
36139
36140
36141
36142
36143
36144
36145
36146
36147
36148
36149
36150
36151
36152
36153
36154
36155
36156
36157
36158
36159
36160
36161
36162
36163
36164
36165
36166
36167
36168
36169
36170
36171
36172
36173
36174
36175
36176
36177
36178
36179
36180
36181
36182
36183
36184
36185
36186
36187
36188
36189
36190
36191
36192
36193
36194
36195
36196
36197
36198
36199
36200
36201
36202
36203
36204
36205
36206
36207
36208
36209
36210
36211
36212
36213
36214
36215
36216
36217
36218
36219
36220
36221
36222
36223
36224
36225
36226
36227
36228
36229
36230
36231
36232
36233
36234
36235
36236
36237
36238
36239
36240
36241
36242
36243
36244
36245
36246
36247
36248
36249
36250
36251
36252
36253
36254
36255
36256
36257
36258
36259
36260
36261
36262
36263
36264
36265
36266
36267
36268
36269
36270
36271
36272
36273
36274
36275
36276
36277
36278
36279
36280
36281
36282
36283
36284
36285
36286
36287
36288
36289
36290
36291
36292
36293
36294
36295
36296
36297
36298
36299
36300
36301
36302
36303
36304
36305
36306
36307
36308
36309
36310
36311
36312
36313
36314
36315
36316
36317
36318
36319
36320
36321
36322
36323
36324
36325
36326
36327
36328
36329
36330
36331
36332
36333
36334
36335
36336
36337
36338
36339
36340
36341
36342
36343
36344
36345
36346
36347
36348
36349
36350
36351
36352
36353
36354
36355
36356
36357
36358
36359
36360
36361
36362
36363
36364
36365
36366
36367
36368
36369
36370
36371
36372
36373
36374
36375
36376
36377
36378
36379
36380
36381
36382
36383
36384
36385
36386
36387
36388
36389
36390
36391
36392
36393
36394
36395
36396
36397
36398
36399
36400
36401
36402
36403
36404
36405
36406
36407
36408
36409
36410
36411
36412
36413
36414
36415
36416
36417
36418
36419
36420
36421
36422
36423
36424
36425
36426
36427
36428
36429
36430
36431
36432
36433
36434
36435
36436
36437
36438
36439
36440
36441
36442
36443
36444
36445
36446
36447
36448
36449
36450
36451
36452
36453
36454
36455
36456
36457
36458
36459
36460
36461
36462
36463
36464
36465
36466
36467
36468
36469
36470
36471
36472
36473
36474
36475
36476
36477
36478
36479
36480
36481
36482
36483
36484
36485
36486
36487
36488
36489
36490
36491
36492
36493
36494
36495
36496
36497
36498
36499
36500
36501
36502
36503
36504
36505
36506
36507
36508
36509
36510
36511
36512
36513
36514
36515
36516
36517
36518
36519
36520
36521
36522
36523
36524
36525
36526
36527
36528
36529
36530
36531
36532
36533
36534
36535
36536
36537
36538
36539
36540
36541
36542
36543
36544
36545
36546
36547
36548
36549
36550
36551
36552
36553
36554
36555
36556
36557
36558
36559
36560
36561
36562
36563
36564
36565
36566
36567
36568
36569
36570
36571
36572
36573
36574
36575
36576
36577
36578
36579
36580
36581
36582
36583
36584
36585
36586
36587
36588
36589
36590
36591
36592
36593
36594
36595
36596
36597
36598
36599
36600
36601
36602
36603
36604
36605
36606
36607
36608
36609
36610
36611
36612
36613
36614
36615
36616
36617
36618
36619
36620
36621
36622
36623
36624
36625
36626
36627
36628
36629
36630
36631
36632
36633
36634
36635
36636
36637
36638
36639
36640
36641
36642
36643
36644
36645
36646
36647
36648
36649
36650
36651
36652
36653
36654
36655
36656
36657
36658
36659
36660
36661
36662
36663
36664
36665
36666
36667
36668
36669
36670
36671
36672
36673
36674
36675
36676
36677
36678
36679
36680
36681
36682
36683
36684
36685
36686
36687
36688
36689
36690
36691
36692
36693
36694
36695
36696
36697
36698
36699
36700
36701
36702
36703
36704
36705
36706
36707
36708
36709
36710
36711
36712
36713
36714
36715
36716
36717
36718
36719
36720
36721
36722
36723
36724
36725
36726
36727
36728
36729
36730
36731
36732
36733
36734
36735
36736
36737
36738
36739
36740
36741
36742
36743
36744
36745
36746
36747
36748
36749
36750
36751
36752
36753
36754
36755
36756
36757
36758
36759
36760
36761
36762
36763
36764
36765
36766
36767
36768
36769
36770
36771
36772
36773
36774
36775
36776
36777
36778
36779
36780
36781
36782
36783
36784
36785
36786
36787
36788
36789
36790
36791
36792
36793
36794
36795
36796
36797
36798
36799
36800
36801
36802
36803
36804
36805
36806
36807
36808
36809
36810
36811
36812
36813
36814
36815
36816
36817
36818
36819
36820
36821
36822
36823
36824
36825
36826
36827
36828
36829
36830
36831
36832
36833
36834
36835
36836
36837
36838
36839
36840
36841
36842
36843
36844
36845
36846
36847
36848
36849
36850
36851
36852
36853
36854
36855
36856
36857
36858
36859
36860
36861
36862
36863
36864
36865
36866
36867
36868
36869
36870
36871
36872
36873
36874
36875
36876
36877
36878
36879
36880
36881
36882
36883
36884
36885
36886
36887
36888
36889
36890
36891
36892
36893
36894
36895
36896
36897
36898
36899
36900
36901
36902
36903
36904
36905
36906
36907
36908
36909
36910
36911
36912
36913
36914
36915
36916
36917
36918
36919
36920
36921
36922
36923
36924
36925
36926
36927
36928
36929
36930
36931
36932
36933
36934
36935
36936
36937
36938
36939
36940
36941
36942
36943
36944
36945
36946
36947
36948
36949
36950
36951
36952
36953
36954
36955
36956
36957
36958
36959
36960
36961
36962
36963
36964
36965
36966
36967
36968
36969
36970
36971
36972
36973
36974
36975
36976
36977
36978
36979
36980
36981
36982
36983
36984
36985
36986
36987
36988
36989
36990
36991
36992
36993
36994
36995
36996
36997
36998
36999
37000
37001
37002
37003
37004
37005
37006
37007
37008
37009
37010
37011
37012
37013
37014
37015
37016
37017
37018
37019
37020
37021
37022
37023
37024
37025
37026
37027
37028
37029
37030
37031
37032
37033
37034
37035
37036
37037
37038
37039
37040
37041
37042
37043
37044
37045
37046
37047
37048
37049
37050
37051
37052
37053
37054
37055
37056
37057
37058
37059
37060
37061
37062
37063
37064
37065
37066
37067
37068
37069
37070
37071
37072
37073
37074
37075
37076
37077
37078
37079
37080
37081
37082
37083
37084
37085
37086
37087
37088
37089
37090
37091
37092
37093
37094
37095
37096
37097
37098
37099
37100
37101
37102
37103
37104
37105
37106
37107
37108
37109
37110
37111
37112
37113
37114
37115
37116
37117
37118
37119
37120
37121
37122
37123
37124
37125
37126
37127
37128
37129
37130
37131
37132
37133
37134
37135
37136
37137
37138
37139
37140
37141
37142
37143
37144
37145
37146
37147
37148
37149
37150
37151
37152
37153
37154
37155
37156
37157
37158
37159
37160
37161
37162
37163
37164
37165
37166
37167
37168
37169
37170
37171
37172
37173
37174
37175
37176
37177
37178
37179
37180
37181
37182
37183
37184
37185
37186
37187
37188
37189
37190
37191
37192
37193
37194
37195
37196
37197
37198
37199
37200
37201
37202
37203
37204
37205
37206
37207
37208
37209
37210
37211
37212
37213
37214
37215
37216
37217
37218
37219
37220
37221
37222
37223
37224
37225
37226
37227
37228
37229
37230
37231
37232
37233
37234
37235
37236
37237
37238
37239
37240
37241
37242
37243
37244
37245
37246
37247
37248
37249
37250
37251
37252
37253
37254
37255
37256
37257
37258
37259
37260
37261
37262
37263
37264
37265
37266
37267
37268
37269
37270
37271
37272
37273
37274
37275
37276
37277
37278
37279
37280
37281
37282
37283
37284
37285
37286
37287
37288
37289
37290
37291
37292
37293
37294
37295
37296
37297
37298
37299
37300
37301
37302
37303
37304
37305
37306
37307
37308
37309
37310
37311
37312
37313
37314
37315
37316
37317
37318
37319
37320
37321
37322
37323
37324
37325
37326
37327
37328
37329
37330
37331
37332
37333
37334
37335
37336
37337
37338
37339
37340
37341
37342
37343
37344
37345
37346
37347
37348
37349
37350
37351
37352
37353
37354
37355
37356
37357
37358
37359
37360
37361
37362
37363
37364
37365
37366
37367
37368
37369
37370
37371
37372
37373
37374
37375
37376
37377
37378
37379
37380
37381
37382
37383
37384
37385
37386
37387
37388
37389
37390
37391
37392
37393
37394
37395
37396
37397
37398
37399
37400
37401
37402
37403
37404
37405
37406
37407
37408
37409
37410
37411
37412
37413
37414
37415
37416
37417
37418
37419
37420
37421
37422
37423
37424
37425
37426
37427
37428
37429
37430
37431
37432
37433
37434
37435
37436
37437
37438
37439
37440
37441
37442
37443
37444
37445
37446
37447
37448
37449
37450
37451
37452
37453
37454
37455
37456
37457
37458
37459
37460
37461
37462
37463
37464
37465
37466
37467
37468
37469
37470
37471
37472
37473
37474
37475
37476
37477
37478
37479
37480
37481
37482
37483
37484
37485
37486
37487
37488
37489
37490
37491
37492
37493
37494
37495
37496
37497
37498
37499
37500
37501
37502
37503
37504
37505
37506
37507
37508
37509
37510
37511
37512
37513
37514
37515
37516
37517
37518
37519
37520
37521
37522
37523
37524
37525
37526
37527
37528
37529
37530
37531
37532
37533
37534
37535
37536
37537
37538
37539
37540
37541
37542
37543
37544
37545
37546
37547
37548
37549
37550
37551
37552
37553
37554
37555
37556
37557
37558
37559
37560
37561
37562
37563
37564
37565
37566
37567
37568
37569
37570
37571
37572
37573
37574
37575
37576
37577
37578
37579
37580
37581
37582
37583
37584
37585
37586
37587
37588
37589
37590
37591
37592
37593
37594
37595
37596
37597
37598
37599
37600
37601
37602
37603
37604
37605
37606
37607
37608
37609
37610
37611
37612
37613
37614
37615
37616
37617
37618
37619
37620
37621
37622
37623
37624
37625
37626
37627
37628
37629
37630
37631
37632
37633
37634
37635
37636
37637
37638
37639
37640
37641
37642
37643
37644
37645
37646
37647
37648
37649
37650
37651
37652
37653
37654
37655
37656
37657
37658
37659
37660
37661
37662
37663
37664
37665
37666
37667
37668
37669
37670
37671
37672
37673
37674
37675
37676
37677
37678
37679
37680
37681
37682
37683
37684
37685
37686
37687
37688
37689
37690
37691
37692
37693
37694
37695
37696
37697
37698
37699
37700
37701
37702
37703
37704
37705
37706
37707
37708
37709
37710
37711
37712
37713
37714
37715
37716
37717
37718
37719
37720
37721
37722
37723
37724
37725
37726
37727
37728
37729
37730
37731
37732
37733
37734
37735
37736
37737
37738
37739
37740
37741
37742
37743
37744
37745
37746
37747
37748
37749
37750
37751
37752
37753
37754
37755
37756
37757
37758
37759
37760
37761
37762
37763
37764
37765
37766
37767
37768
37769
37770
37771
37772
37773
37774
37775
37776
37777
37778
37779
37780
37781
37782
37783
37784
37785
37786
37787
37788
37789
37790
37791
37792
37793
37794
37795
37796
37797
37798
37799
37800
37801
37802
37803
37804
37805
37806
37807
37808
37809
37810
37811
37812
37813
37814
37815
37816
37817
37818
37819
37820
37821
37822
37823
37824
37825
37826
37827
37828
37829
37830
37831
37832
37833
37834
37835
37836
37837
37838
37839
37840
37841
37842
37843
37844
37845
37846
37847
37848
37849
37850
37851
37852
37853
37854
37855
37856
37857
37858
37859
37860
37861
37862
37863
37864
37865
37866
37867
37868
37869
37870
37871
37872
37873
37874
37875
37876
37877
37878
37879
37880
37881
37882
37883
37884
37885
37886
37887
37888
37889
37890
37891
37892
37893
37894
37895
37896
37897
37898
37899
37900
37901
37902
37903
37904
37905
37906
37907
37908
37909
37910
37911
37912
37913
37914
37915
37916
37917
37918
37919
37920
37921
37922
37923
37924
37925
37926
37927
37928
37929
37930
37931
37932
37933
37934
37935
37936
37937
37938
37939
37940
37941
37942
37943
37944
37945
37946
37947
37948
37949
37950
37951
37952
37953
37954
37955
37956
37957
37958
37959
37960
37961
37962
37963
37964
37965
37966
37967
37968
37969
37970
37971
37972
37973
37974
37975
37976
37977
37978
37979
37980
37981
37982
37983
37984
37985
37986
37987
37988
37989
37990
37991
37992
37993
37994
37995
37996
37997
37998
37999
38000
38001
38002
38003
38004
38005
38006
38007
38008
38009
38010
38011
38012
38013
38014
38015
38016
38017
38018
38019
38020
38021
38022
38023
38024
38025
38026
38027
38028
38029
38030
38031
38032
38033
38034
38035
38036
38037
38038
38039
38040
38041
38042
38043
38044
38045
38046
38047
38048
38049
38050
38051
38052
38053
38054
38055
38056
38057
38058
38059
38060
38061
38062
38063
38064
38065
38066
38067
38068
38069
38070
38071
38072
38073
38074
38075
38076
38077
38078
38079
38080
38081
38082
38083
38084
38085
38086
38087
38088
38089
38090
38091
38092
38093
38094
38095
38096
38097
38098
38099
38100
38101
38102
38103
38104
38105
38106
38107
38108
38109
38110
38111
38112
38113
38114
38115
38116
38117
38118
38119
38120
38121
38122
38123
38124
38125
38126
38127
38128
38129
38130
38131
38132
38133
38134
38135
38136
38137
38138
38139
38140
38141
38142
38143
38144
38145
38146
38147
38148
38149
38150
38151
38152
38153
38154
38155
38156
38157
38158
38159
38160
38161
38162
38163
38164
38165
38166
38167
38168
38169
38170
38171
38172
38173
38174
38175
38176
38177
38178
38179
38180
38181
38182
38183
38184
38185
38186
38187
38188
38189
38190
38191
38192
38193
38194
38195
38196
38197
38198
38199
38200
38201
38202
38203
38204
38205
38206
38207
38208
38209
38210
38211
38212
38213
38214
38215
38216
38217
38218
38219
38220
38221
38222
38223
38224
38225
38226
38227
38228
38229
38230
38231
38232
38233
38234
38235
38236
38237
38238
38239
38240
38241
38242
38243
38244
38245
38246
38247
38248
38249
38250
38251
38252
38253
38254
38255
38256
38257
38258
38259
38260
38261
38262
38263
38264
38265
38266
38267
38268
38269
38270
38271
38272
38273
38274
38275
38276
38277
38278
38279
38280
38281
38282
38283
38284
38285
38286
38287
38288
38289
38290
38291
38292
38293
38294
38295
38296
38297
38298
38299
38300
38301
38302
38303
38304
38305
38306
38307
38308
38309
38310
38311
38312
38313
38314
38315
38316
38317
38318
38319
38320
38321
38322
38323
38324
38325
38326
38327
38328
38329
38330
38331
38332
38333
38334
38335
38336
38337
38338
38339
38340
38341
38342
38343
38344
38345
38346
38347
38348
38349
38350
38351
38352
38353
38354
38355
38356
38357
38358
38359
38360
38361
38362
38363
38364
38365
38366
38367
38368
38369
38370
38371
38372
38373
38374
38375
38376
38377
38378
38379
38380
38381
38382
38383
38384
38385
38386
38387
38388
38389
38390
38391
38392
38393
38394
38395
38396
38397
38398
38399
38400
38401
38402
38403
38404
38405
38406
38407
38408
38409
38410
38411
38412
38413
38414
38415
38416
38417
38418
38419
38420
38421
38422
38423
38424
38425
38426
38427
38428
38429
38430
38431
38432
38433
38434
38435
38436
38437
38438
38439
38440
38441
38442
38443
38444
38445
38446
38447
38448
38449
38450
38451
38452
38453
38454
38455
38456
38457
38458
38459
38460
38461
38462
38463
38464
38465
38466
38467
38468
38469
38470
38471
38472
38473
38474
38475
38476
38477
38478
38479
38480
38481
38482
38483
38484
38485
38486
38487
38488
38489
38490
38491
38492
38493
38494
38495
38496
38497
38498
38499
38500
38501
38502
38503
38504
38505
38506
38507
38508
38509
38510
38511
38512
38513
38514
38515
38516
38517
38518
38519
38520
38521
38522
38523
38524
38525
38526
38527
38528
38529
38530
38531
38532
38533
38534
38535
38536
38537
38538
38539
38540
38541
38542
38543
38544
38545
38546
38547
38548
38549
38550
38551
38552
38553
38554
38555
38556
38557
38558
38559
38560
38561
38562
38563
38564
38565
38566
38567
38568
38569
38570
38571
38572
38573
38574
38575
38576
38577
38578
38579
38580
38581
38582
38583
38584
38585
38586
38587
38588
38589
38590
38591
38592
38593
38594
38595
38596
38597
38598
38599
38600
38601
38602
38603
38604
38605
38606
38607
38608
38609
38610
38611
38612
38613
38614
38615
38616
38617
38618
38619
38620
38621
38622
38623
38624
38625
38626
38627
38628
38629
38630
38631
38632
38633
38634
38635
38636
38637
38638
38639
38640
38641
38642
38643
38644
38645
38646
38647
38648
38649
38650
38651
38652
38653
38654
38655
38656
38657
38658
38659
38660
38661
38662
38663
38664
38665
38666
38667
38668
38669
38670
38671
38672
38673
38674
38675
38676
38677
38678
38679
38680
38681
38682
38683
38684
38685
38686
38687
38688
38689
38690
38691
38692
38693
38694
38695
38696
38697
38698
38699
38700
38701
38702
38703
38704
38705
38706
38707
38708
38709
38710
38711
38712
38713
38714
38715
38716
38717
38718
38719
38720
38721
38722
38723
38724
38725
38726
38727
38728
38729
38730
38731
38732
38733
38734
38735
38736
38737
38738
38739
38740
38741
38742
38743
38744
38745
38746
38747
38748
38749
38750
38751
38752
38753
38754
38755
38756
38757
38758
38759
38760
38761
38762
38763
38764
38765
38766
38767
38768
38769
38770
38771
38772
38773
38774
38775
38776
38777
38778
38779
38780
38781
38782
38783
38784
38785
38786
38787
38788
38789
38790
38791
38792
38793
38794
38795
38796
38797
38798
38799
38800
38801
38802
38803
38804
38805
38806
38807
38808
38809
38810
38811
38812
38813
38814
38815
38816
38817
38818
38819
38820
38821
38822
38823
38824
38825
38826
38827
38828
38829
38830
38831
38832
38833
38834
38835
38836
38837
38838
38839
38840
38841
38842
38843
38844
38845
38846
38847
38848
38849
38850
38851
38852
38853
38854
38855
38856
38857
38858
38859
38860
38861
38862
38863
38864
38865
38866
38867
38868
38869
38870
38871
38872
38873
38874
38875
38876
38877
38878
38879
38880
38881
38882
38883
38884
38885
38886
38887
38888
38889
38890
38891
38892
38893
38894
38895
38896
38897
38898
38899
38900
38901
38902
38903
38904
38905
38906
38907
38908
38909
38910
38911
38912
38913
38914
38915
38916
38917
38918
38919
38920
38921
38922
38923
38924
38925
38926
38927
38928
38929
38930
38931
38932
38933
38934
38935
38936
38937
38938
38939
38940
38941
38942
38943
38944
38945
38946
38947
38948
38949
38950
38951
38952
38953
38954
38955
38956
38957
38958
38959
38960
38961
38962
38963
38964
38965
38966
38967
38968
38969
38970
38971
38972
38973
38974
38975
38976
38977
38978
38979
38980
38981
38982
38983
38984
38985
38986
38987
38988
38989
38990
38991
38992
38993
38994
38995
38996
38997
38998
38999
39000
39001
39002
39003
39004
39005
39006
39007
39008
39009
39010
39011
39012
39013
39014
39015
39016
39017
39018
39019
39020
39021
39022
39023
39024
39025
39026
39027
39028
39029
39030
39031
39032
39033
39034
39035
39036
39037
39038
39039
39040
39041
39042
39043
39044
39045
39046
39047
39048
39049
39050
39051
39052
39053
39054
39055
39056
39057
39058
39059
39060
39061
39062
39063
39064
39065
39066
39067
39068
39069
39070
39071
39072
39073
39074
39075
39076
39077
39078
39079
39080
39081
39082
39083
39084
39085
39086
39087
39088
39089
39090
39091
39092
39093
39094
39095
39096
39097
39098
39099
39100
39101
39102
39103
39104
39105
39106
39107
39108
39109
39110
39111
39112
39113
39114
39115
39116
39117
39118
39119
39120
39121
39122
39123
39124
39125
39126
39127
39128
39129
39130
39131
39132
39133
39134
39135
39136
39137
39138
39139
39140
39141
39142
39143
39144
39145
39146
39147
39148
39149
39150
39151
39152
39153
39154
39155
39156
39157
39158
39159
39160
39161
39162
39163
39164
39165
39166
39167
39168
39169
39170
39171
39172
39173
39174
39175
39176
39177
39178
39179
39180
39181
39182
39183
39184
39185
39186
39187
39188
39189
39190
39191
39192
39193
39194
39195
39196
39197
39198
39199
39200
39201
39202
39203
39204
39205
39206
39207
39208
39209
39210
39211
39212
39213
39214
39215
39216
39217
39218
39219
39220
39221
39222
39223
39224
39225
39226
39227
39228
39229
39230
39231
39232
39233
39234
39235
39236
39237
39238
39239
39240
39241
39242
39243
39244
39245
39246
39247
39248
39249
39250
39251
39252
39253
39254
39255
39256
39257
39258
39259
39260
39261
39262
39263
39264
39265
39266
39267
39268
39269
39270
39271
39272
39273
39274
39275
39276
39277
39278
39279
39280
39281
39282
39283
39284
39285
39286
39287
39288
39289
39290
39291
39292
39293
39294
39295
39296
39297
39298
39299
39300
39301
39302
39303
39304
39305
39306
39307
39308
39309
39310
39311
39312
39313
39314
39315
39316
39317
39318
39319
39320
39321
39322
39323
39324
39325
39326
39327
39328
39329
39330
39331
39332
39333
39334
39335
39336
39337
39338
39339
39340
39341
39342
39343
39344
39345
39346
39347
39348
39349
39350
39351
39352
39353
39354
39355
39356
39357
39358
39359
39360
39361
39362
39363
39364
39365
39366
39367
39368
39369
39370
39371
39372
39373
39374
39375
39376
39377
39378
39379
39380
39381
39382
39383
39384
39385
39386
39387
39388
39389
39390
39391
39392
39393
39394
39395
39396
39397
39398
39399
39400
39401
39402
39403
39404
39405
39406
39407
39408
39409
39410
39411
39412
39413
39414
39415
39416
39417
39418
39419
39420
39421
39422
39423
39424
39425
39426
39427
39428
39429
39430
39431
39432
39433
39434
39435
39436
39437
39438
39439
39440
39441
39442
39443
39444
39445
39446
39447
39448
39449
39450
39451
39452
39453
39454
39455
39456
39457
39458
39459
39460
39461
39462
39463
39464
39465
39466
39467
39468
39469
39470
39471
39472
39473
39474
39475
39476
39477
39478
39479
39480
39481
39482
39483
39484
39485
39486
39487
39488
39489
39490
39491
39492
39493
39494
39495
39496
39497
39498
39499
39500
39501
39502
39503
39504
39505
39506
39507
39508
39509
39510
39511
39512
39513
39514
39515
39516
39517
39518
39519
39520
39521
39522
39523
39524
39525
39526
39527
39528
39529
39530
39531
39532
39533
39534
39535
39536
39537
39538
39539
39540
39541
39542
39543
39544
39545
39546
39547
39548
39549
39550
39551
39552
39553
39554
39555
39556
39557
39558
39559
39560
39561
39562
39563
39564
39565
39566
39567
39568
39569
39570
39571
39572
39573
39574
39575
39576
39577
39578
39579
39580
39581
39582
39583
39584
39585
39586
39587
39588
39589
39590
39591
39592
39593
39594
39595
39596
39597
39598
39599
39600
39601
39602
39603
39604
39605
39606
39607
39608
39609
39610
39611
39612
39613
39614
39615
39616
39617
39618
39619
39620
39621
39622
39623
39624
39625
39626
39627
39628
39629
39630
39631
39632
39633
39634
39635
39636
39637
39638
39639
39640
39641
39642
39643
39644
39645
39646
39647
39648
39649
39650
39651
39652
39653
39654
39655
39656
39657
39658
39659
39660
39661
39662
39663
39664
39665
39666
39667
39668
39669
39670
39671
39672
39673
39674
39675
39676
39677
39678
39679
39680
39681
39682
39683
39684
39685
39686
39687
39688
39689
39690
39691
39692
39693
39694
39695
39696
39697
39698
39699
39700
39701
39702
39703
39704
39705
39706
39707
39708
39709
39710
39711
39712
39713
39714
39715
39716
39717
39718
39719
39720
39721
39722
39723
39724
39725
39726
39727
39728
39729
39730
39731
39732
39733
39734
39735
39736
39737
39738
39739
39740
39741
39742
39743
39744
39745
39746
39747
39748
39749
39750
39751
39752
39753
39754
39755
39756
39757
39758
39759
39760
39761
39762
39763
39764
39765
39766
39767
39768
39769
39770
39771
39772
39773
39774
39775
39776
39777
39778
39779
39780
39781
39782
39783
39784
39785
39786
39787
39788
39789
39790
39791
39792
39793
39794
39795
39796
39797
39798
39799
39800
39801
39802
39803
39804
39805
39806
39807
39808
39809
39810
39811
39812
39813
39814
39815
39816
39817
39818
39819
39820
39821
39822
39823
39824
39825
39826
39827
39828
39829
39830
39831
39832
39833
39834
39835
39836
39837
39838
39839
39840
39841
39842
39843
39844
39845
39846
39847
39848
39849
39850
39851
39852
39853
39854
39855
39856
39857
39858
39859
39860
39861
39862
39863
39864
39865
39866
39867
39868
39869
39870
39871
39872
39873
39874
39875
39876
39877
39878
39879
39880
39881
39882
39883
39884
39885
39886
39887
39888
39889
39890
39891
39892
39893
39894
39895
39896
39897
39898
39899
39900
39901
39902
39903
39904
39905
39906
39907
39908
39909
39910
39911
39912
39913
39914
39915
39916
39917
39918
39919
39920
39921
39922
39923
39924
39925
39926
39927
39928
39929
39930
39931
39932
39933
39934
39935
39936
39937
39938
39939
39940
39941
39942
39943
39944
39945
39946
39947
39948
39949
39950
39951
39952
39953
39954
39955
39956
39957
39958
39959
39960
39961
39962
39963
39964
39965
39966
39967
39968
39969
39970
39971
39972
39973
39974
39975
39976
39977
39978
39979
39980
39981
39982
39983
39984
39985
39986
39987
39988
39989
39990
39991
39992
39993
39994
39995
39996
39997
39998
39999
40000
40001
40002
40003
40004
40005
40006
40007
40008
40009
40010
40011
40012
40013
40014
40015
40016
40017
40018
40019
40020
40021
40022
40023
40024
40025
40026
40027
40028
40029
40030
40031
40032
40033
40034
40035
40036
40037
40038
40039
40040
40041
40042
40043
40044
40045
40046
40047
40048
40049
40050
40051
40052
40053
40054
40055
40056
40057
40058
40059
40060
40061
40062
40063
40064
40065
40066
40067
40068
40069
40070
40071
40072
40073
40074
40075
40076
40077
40078
40079
40080
40081
40082
40083
40084
40085
40086
40087
40088
40089
40090
40091
40092
40093
40094
40095
40096
40097
40098
40099
40100
40101
40102
40103
40104
40105
40106
40107
40108
40109
40110
40111
40112
40113
40114
40115
40116
40117
40118
40119
40120
40121
40122
40123
40124
40125
40126
40127
40128
40129
40130
40131
40132
40133
40134
40135
40136
40137
40138
40139
40140
40141
40142
40143
40144
40145
40146
40147
40148
40149
40150
40151
40152
40153
40154
40155
40156
40157
40158
40159
40160
40161
40162
40163
40164
40165
40166
40167
40168
40169
40170
40171
40172
40173
40174
40175
40176
40177
40178
40179
40180
40181
40182
40183
40184
40185
40186
40187
40188
40189
40190
40191
40192
40193
40194
40195
40196
40197
40198
40199
40200
40201
40202
40203
40204
40205
40206
40207
40208
40209
40210
40211
40212
40213
40214
40215
40216
40217
40218
40219
40220
40221
40222
40223
40224
40225
40226
40227
40228
40229
40230
40231
40232
40233
40234
40235
40236
40237
40238
40239
40240
40241
40242
40243
40244
40245
40246
40247
40248
40249
40250
40251
40252
40253
40254
40255
40256
40257
40258
40259
40260
40261
40262
40263
40264
40265
40266
40267
40268
40269
40270
40271
40272
40273
40274
40275
40276
40277
40278
40279
40280
40281
40282
40283
40284
40285
40286
40287
40288
40289
40290
40291
40292
40293
40294
40295
40296
40297
40298
40299
40300
40301
40302
40303
40304
40305
40306
40307
40308
40309
40310
40311
40312
40313
40314
40315
40316
40317
40318
40319
40320
40321
40322
40323
40324
40325
40326
40327
40328
40329
40330
40331
40332
40333
40334
40335
40336
40337
40338
40339
40340
40341
40342
40343
40344
40345
40346
40347
40348
40349
40350
40351
40352
40353
40354
40355
40356
40357
40358
40359
40360
40361
40362
40363
40364
40365
40366
40367
40368
40369
40370
40371
40372
40373
40374
40375
40376
40377
40378
40379
40380
40381
40382
40383
40384
40385
40386
40387
40388
40389
40390
40391
40392
40393
40394
40395
40396
40397
40398
40399
40400
40401
40402
40403
40404
40405
40406
40407
40408
40409
40410
40411
40412
40413
40414
40415
40416
40417
40418
40419
40420
40421
40422
40423
40424
40425
40426
40427
40428
40429
40430
40431
40432
40433
40434
40435
40436
40437
40438
40439
40440
40441
40442
40443
40444
40445
40446
40447
40448
40449
40450
40451
40452
40453
40454
40455
40456
40457
40458
40459
40460
40461
40462
40463
40464
40465
40466
40467
40468
40469
40470
40471
40472
40473
40474
40475
40476
40477
40478
40479
40480
40481
40482
40483
40484
40485
40486
40487
40488
40489
40490
40491
40492
40493
40494
40495
40496
40497
40498
40499
40500
40501
40502
40503
40504
40505
40506
40507
40508
40509
40510
40511
40512
40513
40514
40515
40516
40517
40518
40519
40520
40521
40522
40523
40524
40525
40526
40527
40528
40529
40530
40531
40532
40533
40534
40535
40536
40537
40538
40539
40540
40541
40542
40543
40544
40545
40546
40547
40548
40549
40550
40551
40552
40553
40554
40555
40556
40557
40558
40559
40560
40561
40562
40563
40564
40565
40566
40567
40568
40569
40570
40571
40572
40573
40574
40575
40576
40577
40578
40579
40580
40581
40582
40583
40584
40585
40586
40587
40588
40589
40590
40591
40592
40593
40594
40595
40596
40597
40598
40599
40600
40601
40602
40603
40604
40605
40606
40607
40608
40609
40610
40611
40612
40613
40614
40615
40616
40617
40618
40619
40620
40621
40622
40623
40624
40625
40626
40627
40628
40629
40630
40631
40632
40633
40634
40635
40636
40637
40638
40639
40640
40641
40642
40643
40644
40645
40646
40647
40648
40649
40650
40651
40652
40653
40654
40655
40656
40657
40658
40659
40660
40661
40662
40663
40664
40665
40666
40667
40668
40669
40670
40671
40672
40673
40674
40675
40676
40677
40678
40679
40680
40681
40682
40683
40684
40685
40686
40687
40688
40689
40690
40691
40692
40693
40694
40695
40696
40697
40698
40699
40700
40701
40702
40703
40704
40705
40706
40707
40708
40709
40710
40711
40712
40713
40714
40715
40716
40717
40718
40719
40720
40721
40722
40723
40724
40725
40726
40727
40728
40729
40730
40731
40732
40733
40734
40735
40736
40737
40738
40739
40740
40741
40742
40743
40744
40745
40746
40747
40748
40749
40750
40751
40752
40753
40754
40755
40756
40757
40758
40759
40760
40761
40762
40763
40764
40765
40766
40767
40768
40769
40770
40771
40772
40773
40774
40775
40776
40777
40778
40779
40780
40781
40782
40783
40784
40785
40786
40787
40788
40789
40790
40791
40792
40793
40794
40795
40796
40797
40798
40799
40800
40801
40802
40803
40804
40805
40806
40807
40808
40809
40810
40811
40812
40813
40814
40815
40816
40817
40818
40819
40820
40821
40822
40823
40824
40825
40826
40827
40828
40829
40830
40831
40832
40833
40834
40835
40836
40837
40838
40839
40840
40841
40842
40843
40844
40845
40846
40847
40848
40849
40850
40851
40852
40853
40854
40855
40856
40857
40858
40859
40860
40861
40862
40863
40864
40865
40866
40867
40868
40869
40870
40871
40872
40873
40874
40875
40876
40877
40878
40879
40880
40881
40882
40883
40884
40885
40886
40887
40888
40889
40890
40891
40892
40893
40894
40895
40896
40897
40898
40899
40900
40901
40902
40903
40904
40905
40906
40907
40908
40909
40910
40911
40912
40913
40914
40915
40916
40917
40918
40919
40920
40921
40922
40923
40924
40925
40926
40927
40928
40929
40930
40931
40932
40933
40934
40935
40936
40937
40938
40939
40940
40941
40942
40943
40944
40945
40946
40947
40948
40949
40950
40951
40952
40953
40954
40955
40956
40957
40958
40959
40960
40961
40962
40963
40964
40965
40966
40967
40968
40969
40970
40971
40972
40973
40974
40975
40976
40977
40978
40979
40980
40981
40982
40983
40984
40985
40986
40987
40988
40989
40990
40991
40992
40993
40994
40995
40996
40997
40998
40999
41000
41001
41002
41003
41004
41005
41006
41007
41008
41009
41010
41011
41012
41013
41014
41015
41016
41017
41018
41019
41020
41021
41022
41023
41024
41025
41026
41027
41028
41029
41030
41031
41032
41033
41034
41035
41036
41037
41038
41039
41040
41041
41042
41043
41044
41045
41046
41047
41048
41049
41050
41051
41052
41053
41054
41055
41056
41057
41058
41059
41060
41061
41062
41063
41064
41065
41066
41067
41068
41069
41070
41071
41072
41073
41074
41075
41076
41077
41078
41079
41080
41081
41082
41083
41084
41085
41086
41087
41088
41089
41090
41091
41092
41093
41094
41095
41096
41097
41098
41099
41100
41101
41102
41103
41104
41105
41106
41107
41108
41109
41110
41111
41112
41113
41114
41115
41116
41117
41118
41119
41120
41121
41122
41123
41124
41125
41126
41127
41128
41129
41130
41131
41132
41133
41134
41135
41136
41137
41138
41139
41140
41141
41142
41143
41144
41145
41146
41147
41148
41149
41150
41151
41152
41153
41154
41155
41156
41157
41158
41159
41160
41161
41162
41163
41164
41165
41166
41167
41168
41169
41170
41171
41172
41173
41174
41175
41176
41177
41178
41179
41180
41181
41182
41183
41184
41185
41186
41187
41188
41189
41190
41191
41192
41193
41194
41195
41196
41197
41198
41199
41200
41201
41202
41203
41204
41205
41206
41207
41208
41209
41210
41211
41212
41213
41214
41215
41216
41217
41218
41219
41220
41221
41222
41223
41224
41225
41226
41227
41228
41229
41230
41231
41232
41233
41234
41235
41236
41237
41238
41239
41240
41241
41242
41243
41244
41245
41246
41247
41248
41249
41250
41251
41252
41253
41254
41255
41256
41257
41258
41259
41260
41261
41262
41263
41264
41265
41266
41267
41268
41269
41270
41271
41272
41273
41274
41275
41276
41277
41278
41279
41280
41281
41282
41283
41284
41285
41286
41287
41288
41289
41290
41291
41292
41293
41294
41295
41296
41297
41298
41299
41300
41301
41302
41303
41304
41305
41306
41307
41308
41309
41310
41311
41312
41313
41314
41315
41316
41317
41318
41319
41320
41321
41322
41323
41324
41325
41326
41327
41328
41329
41330
41331
41332
41333
41334
41335
41336
41337
41338
41339
41340
41341
41342
41343
41344
41345
41346
41347
41348
41349
41350
41351
41352
41353
41354
41355
41356
41357
41358
41359
41360
41361
41362
41363
41364
41365
41366
41367
41368
41369
41370
41371
41372
41373
41374
41375
41376
41377
41378
41379
41380
41381
41382
41383
41384
41385
41386
41387
41388
41389
41390
41391
41392
41393
41394
41395
41396
41397
41398
41399
41400
41401
41402
41403
41404
41405
41406
41407
41408
41409
41410
41411
41412
41413
41414
41415
41416
41417
41418
41419
41420
41421
41422
41423
41424
41425
41426
41427
41428
41429
41430
41431
41432
41433
41434
41435
41436
41437
41438
41439
41440
41441
41442
41443
41444
41445
41446
41447
41448
41449
41450
41451
41452
41453
41454
41455
41456
41457
41458
41459
41460
41461
41462
41463
41464
41465
41466
41467
41468
41469
41470
41471
41472
41473
41474
41475
41476
41477
41478
41479
41480
41481
41482
41483
41484
41485
41486
41487
41488
41489
41490
41491
41492
41493
41494
41495
41496
41497
41498
41499
41500
41501
41502
41503
41504
41505
41506
41507
41508
41509
41510
41511
41512
41513
41514
41515
41516
41517
41518
41519
41520
41521
41522
41523
41524
41525
41526
41527
41528
41529
41530
41531
41532
41533
41534
41535
41536
41537
41538
41539
41540
41541
41542
41543
41544
41545
41546
41547
41548
41549
41550
41551
41552
41553
41554
41555
41556
41557
41558
41559
41560
41561
41562
41563
41564
41565
41566
41567
41568
41569
41570
41571
41572
41573
41574
41575
41576
41577
41578
41579
41580
41581
41582
41583
41584
41585
41586
41587
41588
41589
41590
41591
41592
41593
41594
41595
41596
41597
41598
41599
41600
41601
41602
41603
41604
41605
41606
41607
41608
41609
41610
41611
41612
41613
41614
41615
41616
41617
41618
41619
41620
41621
41622
41623
41624
41625
41626
41627
41628
41629
41630
41631
41632
41633
41634
41635
41636
41637
41638
41639
41640
41641
41642
41643
41644
41645
41646
41647
41648
41649
41650
41651
41652
41653
41654
41655
41656
41657
41658
41659
41660
41661
41662
41663
41664
41665
41666
41667
41668
41669
41670
41671
41672
41673
41674
41675
41676
41677
41678
41679
41680
41681
41682
41683
41684
41685
41686
41687
41688
41689
41690
41691
41692
41693
41694
41695
41696
41697
41698
41699
41700
41701
41702
41703
41704
41705
41706
41707
41708
41709
41710
41711
41712
41713
41714
41715
41716
41717
41718
41719
41720
41721
41722
41723
41724
41725
41726
41727
41728
41729
41730
41731
41732
41733
41734
41735
41736
41737
41738
41739
41740
41741
41742
41743
41744
41745
41746
41747
41748
41749
41750
41751
41752
41753
41754
41755
41756
41757
41758
41759
41760
41761
41762
41763
41764
41765
41766
41767
41768
41769
41770
41771
41772
41773
41774
41775
41776
41777
41778
41779
41780
41781
41782
41783
41784
41785
41786
41787
41788
41789
41790
41791
41792
41793
41794
41795
41796
41797
41798
41799
41800
41801
41802
41803
41804
41805
41806
41807
41808
41809
41810
41811
41812
41813
41814
41815
41816
41817
41818
41819
41820
41821
41822
41823
41824
41825
41826
41827
41828
41829
41830
41831
41832
41833
41834
41835
41836
41837
41838
41839
41840
41841
41842
41843
41844
41845
41846
41847
41848
41849
41850
41851
41852
41853
41854
41855
41856
41857
41858
41859
41860
41861
41862
41863
41864
41865
41866
41867
41868
41869
41870
41871
41872
41873
41874
41875
41876
41877
41878
41879
41880
41881
41882
41883
41884
41885
41886
41887
41888
41889
41890
41891
41892
41893
41894
41895
41896
41897
41898
41899
41900
41901
41902
41903
41904
41905
41906
41907
41908
41909
41910
41911
41912
41913
41914
41915
41916
41917
41918
41919
41920
41921
41922
41923
41924
41925
41926
41927
41928
41929
41930
41931
41932
41933
41934
41935
41936
41937
41938
41939
41940
41941
41942
41943
41944
41945
41946
41947
41948
41949
41950
41951
41952
41953
41954
41955
41956
41957
41958
41959
41960
41961
41962
41963
41964
41965
41966
41967
41968
41969
41970
41971
41972
41973
41974
41975
41976
41977
41978
41979
41980
41981
41982
41983
41984
41985
41986
41987
41988
41989
41990
41991
41992
41993
41994
41995
41996
41997
41998
41999
42000
42001
42002
42003
42004
42005
42006
42007
42008
42009
42010
42011
42012
42013
42014
42015
42016
42017
42018
42019
42020
42021
42022
42023
42024
42025
42026
42027
42028
42029
42030
42031
42032
42033
42034
42035
42036
42037
42038
42039
42040
42041
42042
42043
42044
42045
42046
42047
42048
42049
42050
42051
42052
42053
42054
42055
42056
42057
42058
42059
42060
42061
42062
42063
42064
42065
42066
42067
42068
42069
42070
42071
42072
42073
42074
42075
42076
42077
42078
42079
42080
42081
42082
42083
42084
42085
42086
42087
42088
42089
42090
42091
42092
42093
42094
42095
42096
42097
42098
42099
42100
42101
42102
42103
42104
42105
42106
42107
42108
42109
42110
42111
42112
42113
42114
42115
42116
42117
42118
42119
42120
42121
42122
42123
42124
42125
42126
42127
42128
42129
42130
42131
42132
42133
42134
42135
42136
42137
42138
42139
42140
42141
42142
42143
42144
42145
42146
42147
42148
42149
42150
42151
42152
42153
42154
42155
42156
42157
42158
42159
42160
42161
42162
42163
42164
42165
42166
42167
42168
42169
42170
42171
42172
42173
42174
42175
42176
42177
42178
42179
42180
42181
42182
42183
42184
42185
42186
42187
42188
42189
42190
42191
42192
42193
42194
42195
42196
42197
42198
42199
42200
42201
42202
42203
42204
42205
42206
42207
42208
42209
42210
42211
42212
42213
42214
42215
42216
42217
42218
42219
42220
42221
42222
42223
42224
42225
42226
42227
42228
42229
42230
42231
42232
42233
42234
42235
42236
42237
42238
42239
42240
42241
42242
42243
42244
42245
42246
42247
42248
42249
42250
42251
42252
42253
42254
42255
42256
42257
42258
42259
42260
42261
42262
42263
42264
42265
42266
42267
42268
42269
42270
42271
42272
42273
42274
42275
42276
42277
42278
42279
42280
42281
42282
42283
42284
42285
42286
42287
42288
42289
42290
42291
42292
42293
42294
42295
42296
42297
42298
42299
42300
42301
42302
42303
42304
42305
42306
42307
42308
42309
42310
42311
42312
42313
42314
42315
42316
42317
42318
42319
42320
42321
42322
42323
42324
42325
42326
42327
42328
42329
42330
42331
42332
42333
42334
42335
42336
42337
42338
42339
42340
42341
42342
42343
42344
42345
42346
42347
42348
42349
42350
42351
42352
42353
42354
42355
42356
42357
42358
42359
42360
42361
42362
42363
42364
42365
42366
42367
42368
42369
42370
42371
42372
42373
42374
42375
42376
42377
42378
42379
42380
42381
42382
42383
42384
42385
42386
42387
42388
42389
42390
42391
42392
42393
42394
42395
42396
42397
42398
42399
42400
42401
42402
42403
42404
42405
42406
42407
42408
42409
42410
42411
42412
42413
42414
42415
42416
42417
42418
42419
42420
42421
42422
42423
42424
42425
42426
42427
42428
42429
42430
42431
42432
42433
42434
42435
42436
42437
42438
42439
42440
42441
42442
42443
42444
42445
42446
42447
42448
42449
42450
42451
42452
42453
42454
42455
42456
42457
42458
42459
42460
42461
42462
42463
42464
42465
42466
42467
42468
42469
42470
42471
42472
42473
42474
42475
42476
42477
42478
42479
42480
42481
42482
42483
42484
42485
42486
42487
42488
42489
42490
42491
42492
42493
42494
42495
42496
42497
42498
42499
42500
42501
42502
42503
42504
42505
42506
42507
42508
42509
42510
42511
42512
42513
42514
42515
42516
42517
42518
42519
42520
42521
42522
42523
42524
42525
42526
42527
42528
42529
42530
42531
42532
42533
42534
42535
42536
42537
42538
42539
42540
42541
42542
42543
42544
42545
42546
42547
42548
42549
42550
42551
42552
42553
42554
42555
42556
42557
42558
42559
42560
42561
42562
42563
42564
42565
42566
42567
42568
42569
42570
42571
42572
42573
42574
42575
42576
42577
42578
42579
42580
42581
42582
42583
42584
42585
42586
42587
42588
42589
42590
42591
42592
42593
42594
42595
42596
42597
42598
42599
42600
42601
42602
42603
42604
42605
42606
42607
42608
42609
42610
42611
42612
42613
42614
42615
42616
42617
42618
42619
42620
42621
42622
42623
42624
42625
42626
42627
42628
42629
42630
42631
42632
42633
42634
42635
42636
42637
42638
42639
42640
42641
42642
42643
42644
42645
42646
42647
42648
42649
42650
42651
42652
42653
42654
42655
42656
42657
42658
42659
42660
42661
42662
42663
42664
42665
42666
42667
42668
42669
42670
42671
42672
42673
42674
42675
42676
42677
42678
42679
42680
42681
42682
42683
42684
42685
42686
42687
42688
42689
42690
42691
42692
42693
42694
42695
42696
42697
42698
42699
42700
42701
42702
42703
42704
42705
42706
42707
42708
42709
42710
42711
42712
42713
42714
42715
42716
42717
42718
42719
42720
42721
42722
42723
42724
42725
42726
42727
42728
42729
42730
42731
42732
42733
42734
42735
42736
42737
42738
42739
42740
42741
42742
42743
42744
42745
42746
42747
42748
42749
42750
42751
42752
42753
42754
42755
42756
42757
42758
42759
42760
42761
42762
42763
42764
42765
42766
42767
42768
42769
42770
42771
42772
42773
42774
42775
42776
42777
42778
42779
42780
42781
42782
42783
42784
42785
42786
42787
42788
42789
42790
42791
42792
42793
42794
42795
42796
42797
42798
42799
42800
42801
42802
42803
42804
42805
42806
42807
42808
42809
42810
42811
42812
42813
42814
42815
42816
42817
42818
42819
42820
42821
42822
42823
42824
42825
42826
42827
42828
42829
42830
42831
42832
42833
42834
42835
42836
42837
42838
42839
42840
42841
42842
42843
42844
42845
42846
42847
42848
42849
42850
42851
42852
42853
42854
42855
42856
42857
42858
42859
42860
42861
42862
42863
42864
42865
42866
42867
42868
42869
42870
42871
42872
42873
42874
42875
42876
42877
42878
42879
42880
42881
42882
42883
42884
42885
42886
42887
42888
42889
42890
42891
42892
42893
42894
42895
42896
42897
42898
42899
42900
42901
42902
42903
42904
42905
42906
42907
42908
42909
42910
42911
42912
42913
42914
42915
42916
42917
42918
42919
42920
42921
42922
42923
42924
42925
42926
42927
42928
42929
42930
42931
42932
42933
42934
42935
42936
42937
42938
42939
42940
42941
42942
42943
42944
42945
42946
42947
42948
42949
42950
42951
42952
42953
42954
42955
42956
42957
42958
42959
42960
42961
42962
42963
42964
42965
42966
42967
42968
42969
42970
42971
42972
42973
42974
42975
42976
42977
42978
42979
42980
42981
42982
42983
42984
42985
42986
42987
42988
42989
42990
42991
42992
42993
42994
42995
42996
42997
42998
42999
43000
43001
43002
43003
43004
43005
43006
43007
43008
43009
43010
43011
43012
43013
43014
43015
43016
43017
43018
43019
43020
43021
43022
43023
43024
43025
43026
43027
43028
43029
43030
43031
43032
43033
43034
43035
43036
43037
43038
43039
43040
43041
43042
43043
43044
43045
43046
43047
43048
43049
43050
43051
43052
43053
43054
43055
43056
43057
43058
43059
43060
43061
43062
43063
43064
43065
43066
43067
43068
43069
43070
43071
43072
43073
43074
43075
43076
43077
43078
43079
43080
43081
43082
43083
43084
43085
43086
43087
43088
43089
43090
43091
43092
43093
43094
43095
43096
43097
43098
43099
43100
43101
43102
43103
43104
43105
43106
43107
43108
43109
43110
43111
43112
43113
43114
43115
43116
43117
43118
43119
43120
43121
43122
43123
43124
43125
43126
43127
43128
43129
43130
43131
43132
43133
43134
43135
43136
43137
43138
43139
43140
43141
43142
43143
43144
43145
43146
43147
43148
43149
43150
43151
43152
43153
43154
43155
43156
43157
43158
43159
43160
43161
43162
43163
43164
43165
43166
43167
43168
43169
43170
43171
43172
43173
43174
43175
43176
43177
43178
43179
43180
43181
43182
43183
43184
43185
43186
43187
43188
43189
43190
43191
43192
43193
43194
43195
43196
43197
43198
43199
43200
43201
43202
43203
43204
43205
43206
43207
43208
43209
43210
43211
43212
43213
43214
43215
43216
43217
43218
43219
43220
43221
43222
43223
43224
43225
43226
43227
43228
43229
43230
43231
43232
43233
43234
43235
43236
43237
43238
43239
43240
43241
43242
43243
43244
43245
43246
43247
43248
43249
43250
43251
43252
43253
43254
43255
43256
43257
43258
43259
43260
43261
43262
43263
43264
43265
43266
43267
43268
43269
43270
43271
43272
43273
43274
43275
43276
43277
43278
43279
43280
43281
43282
43283
43284
43285
43286
43287
43288
43289
43290
43291
43292
43293
43294
43295
43296
43297
43298
43299
43300
43301
43302
43303
43304
43305
43306
43307
43308
43309
43310
43311
43312
43313
43314
43315
43316
43317
43318
43319
43320
43321
43322
43323
43324
43325
43326
43327
43328
43329
43330
43331
43332
43333
43334
43335
43336
43337
43338
43339
43340
43341
43342
43343
43344
43345
43346
43347
43348
43349
43350
43351
43352
43353
43354
43355
43356
43357
43358
43359
43360
43361
43362
43363
43364
43365
43366
43367
43368
43369
43370
43371
43372
43373
43374
43375
43376
43377
43378
43379
43380
43381
43382
43383
43384
43385
43386
43387
43388
43389
43390
43391
43392
43393
43394
43395
43396
43397
43398
43399
43400
43401
43402
43403
43404
43405
43406
43407
43408
43409
43410
43411
43412
43413
43414
43415
43416
43417
43418
43419
43420
43421
43422
43423
43424
43425
43426
43427
43428
43429
43430
43431
43432
43433
43434
43435
43436
43437
43438
43439
43440
43441
43442
43443
43444
43445
43446
43447
43448
43449
43450
43451
43452
43453
43454
43455
43456
43457
43458
43459
43460
43461
43462
43463
43464
43465
43466
43467
43468
43469
43470
43471
43472
43473
43474
43475
43476
43477
43478
43479
43480
43481
43482
43483
43484
43485
43486
43487
43488
43489
43490
43491
43492
43493
43494
43495
43496
43497
43498
43499
43500
43501
43502
43503
43504
43505
43506
43507
43508
43509
43510
43511
43512
43513
43514
43515
43516
43517
43518
43519
43520
43521
43522
43523
43524
43525
43526
43527
43528
43529
43530
43531
43532
43533
43534
43535
43536
43537
43538
43539
43540
43541
43542
43543
43544
43545
43546
43547
43548
43549
43550
43551
43552
43553
43554
43555
43556
43557
43558
43559
43560
43561
43562
43563
43564
43565
43566
43567
43568
43569
43570
43571
43572
43573
43574
43575
43576
43577
43578
43579
43580
43581
43582
43583
43584
43585
43586
43587
43588
43589
43590
43591
43592
43593
43594
43595
43596
43597
43598
43599
43600
43601
43602
43603
43604
43605
43606
43607
43608
43609
43610
43611
43612
43613
43614
43615
43616
43617
43618
43619
43620
43621
43622
43623
43624
43625
43626
43627
43628
43629
43630
43631
43632
43633
43634
43635
43636
43637
43638
43639
43640
43641
43642
43643
43644
43645
43646
43647
43648
43649
43650
43651
43652
43653
43654
43655
43656
43657
43658
43659
43660
43661
43662
43663
43664
43665
43666
43667
43668
43669
43670
43671
43672
43673
43674
43675
43676
43677
43678
43679
43680
43681
43682
43683
43684
43685
43686
43687
43688
43689
43690
43691
43692
43693
43694
43695
43696
43697
43698
43699
43700
43701
43702
43703
43704
43705
43706
43707
43708
43709
43710
43711
43712
43713
43714
43715
43716
43717
43718
43719
43720
43721
43722
43723
43724
43725
43726
43727
43728
43729
43730
43731
43732
43733
43734
43735
43736
43737
43738
43739
43740
43741
43742
43743
43744
43745
43746
43747
43748
43749
43750
43751
43752
43753
43754
43755
43756
43757
43758
43759
43760
43761
43762
43763
43764
43765
43766
43767
43768
43769
43770
43771
43772
43773
43774
43775
43776
43777
43778
43779
43780
43781
43782
43783
43784
43785
43786
43787
43788
43789
43790
43791
43792
43793
43794
43795
43796
43797
43798
43799
43800
43801
43802
43803
43804
43805
43806
43807
43808
43809
43810
43811
43812
43813
43814
43815
43816
43817
43818
43819
43820
43821
43822
43823
43824
43825
43826
43827
43828
43829
43830
43831
43832
43833
43834
43835
43836
43837
43838
43839
43840
43841
43842
43843
43844
43845
43846
43847
43848
43849
43850
43851
43852
43853
43854
43855
43856
43857
43858
43859
43860
43861
43862
43863
43864
43865
43866
43867
43868
43869
43870
43871
43872
43873
43874
43875
43876
43877
43878
43879
43880
43881
43882
43883
43884
43885
43886
43887
43888
43889
43890
43891
43892
43893
43894
43895
43896
43897
43898
43899
43900
43901
43902
43903
43904
43905
43906
43907
43908
43909
43910
43911
43912
43913
43914
43915
43916
43917
43918
43919
43920
43921
43922
43923
43924
43925
43926
43927
43928
43929
43930
43931
43932
43933
43934
43935
43936
43937
43938
43939
43940
43941
43942
43943
43944
43945
43946
43947
43948
43949
43950
43951
43952
43953
43954
43955
43956
43957
43958
43959
43960
43961
43962
43963
43964
43965
43966
43967
43968
43969
43970
43971
43972
43973
43974
43975
43976
43977
43978
43979
43980
43981
43982
43983
43984
43985
43986
43987
43988
43989
43990
43991
43992
43993
43994
43995
43996
43997
43998
43999
44000
44001
44002
44003
44004
44005
44006
44007
44008
44009
44010
44011
44012
44013
44014
44015
44016
44017
44018
44019
44020
44021
44022
44023
44024
44025
44026
44027
44028
44029
44030
44031
44032
44033
44034
44035
44036
44037
44038
44039
44040
44041
44042
44043
44044
44045
44046
44047
44048
44049
44050
44051
44052
44053
44054
44055
44056
44057
44058
44059
44060
44061
44062
44063
44064
44065
44066
44067
44068
44069
44070
44071
44072
44073
44074
44075
44076
44077
44078
44079
44080
44081
44082
44083
44084
44085
44086
44087
44088
44089
44090
44091
44092
44093
44094
44095
44096
44097
44098
44099
44100
44101
44102
44103
44104
44105
44106
44107
44108
44109
44110
44111
44112
44113
44114
44115
44116
44117
44118
44119
44120
44121
44122
44123
44124
44125
44126
44127
44128
44129
44130
44131
44132
44133
44134
44135
44136
44137
44138
44139
44140
44141
44142
44143
44144
44145
44146
44147
44148
44149
44150
44151
44152
44153
44154
44155
44156
44157
44158
44159
44160
44161
44162
44163
44164
44165
44166
44167
44168
44169
44170
44171
44172
44173
44174
44175
44176
44177
44178
44179
44180
44181
44182
44183
44184
44185
44186
44187
44188
44189
44190
44191
44192
44193
44194
44195
44196
44197
44198
44199
44200
44201
44202
44203
44204
44205
44206
44207
44208
44209
44210
44211
44212
44213
44214
44215
44216
44217
44218
44219
44220
44221
44222
44223
44224
44225
44226
44227
44228
44229
44230
44231
44232
44233
44234
44235
44236
44237
44238
44239
44240
44241
44242
44243
44244
44245
44246
44247
44248
44249
44250
44251
44252
44253
44254
44255
44256
44257
44258
44259
44260
44261
44262
44263
44264
44265
44266
44267
44268
44269
44270
44271
44272
44273
44274
44275
44276
44277
44278
44279
44280
44281
44282
44283
44284
44285
44286
44287
44288
44289
44290
44291
44292
44293
44294
44295
44296
44297
44298
44299
44300
44301
44302
44303
44304
44305
44306
44307
44308
44309
44310
44311
44312
44313
44314
44315
44316
44317
44318
44319
44320
44321
44322
44323
44324
44325
44326
44327
44328
44329
44330
44331
44332
44333
44334
44335
44336
44337
44338
44339
44340
44341
44342
44343
44344
44345
44346
44347
44348
44349
44350
44351
44352
44353
44354
44355
44356
44357
44358
44359
44360
44361
44362
44363
44364
44365
44366
44367
44368
44369
44370
44371
44372
44373
44374
44375
44376
44377
44378
44379
44380
44381
44382
44383
44384
44385
44386
44387
44388
44389
44390
44391
44392
44393
44394
44395
44396
44397
44398
44399
44400
44401
44402
44403
44404
44405
44406
44407
44408
44409
44410
44411
44412
44413
44414
44415
44416
44417
44418
44419
44420
44421
44422
44423
44424
44425
44426
44427
44428
44429
44430
44431
44432
44433
44434
44435
44436
44437
44438
44439
44440
44441
44442
44443
44444
44445
44446
44447
44448
44449
44450
44451
44452
44453
44454
44455
44456
44457
44458
44459
44460
44461
44462
44463
44464
44465
44466
44467
44468
44469
44470
44471
44472
44473
44474
44475
44476
44477
44478
44479
44480
44481
44482
44483
44484
44485
44486
44487
44488
44489
44490
44491
44492
44493
44494
44495
44496
44497
44498
44499
44500
44501
44502
44503
44504
44505
44506
44507
44508
44509
44510
44511
44512
44513
44514
44515
44516
44517
44518
44519
44520
44521
44522
44523
44524
44525
44526
44527
44528
44529
44530
44531
44532
44533
44534
44535
44536
44537
44538
44539
44540
44541
44542
44543
44544
44545
44546
44547
44548
44549
44550
44551
44552
44553
44554
44555
44556
44557
44558
44559
44560
44561
44562
44563
44564
44565
44566
44567
44568
44569
44570
44571
44572
44573
44574
44575
44576
44577
44578
44579
44580
44581
44582
44583
44584
44585
44586
44587
44588
44589
44590
44591
44592
44593
44594
44595
44596
44597
44598
44599
44600
44601
44602
44603
44604
44605
44606
44607
44608
44609
44610
44611
44612
44613
44614
44615
44616
44617
44618
44619
44620
44621
44622
44623
44624
44625
44626
44627
44628
44629
44630
44631
44632
44633
44634
44635
44636
44637
44638
44639
44640
44641
44642
44643
44644
44645
44646
44647
44648
44649
44650
44651
44652
44653
44654
44655
44656
44657
44658
44659
44660
44661
44662
44663
44664
44665
44666
44667
44668
44669
44670
44671
44672
44673
44674
44675
44676
44677
44678
44679
44680
44681
44682
44683
44684
44685
44686
44687
44688
44689
44690
44691
44692
44693
44694
44695
44696
44697
44698
44699
44700
44701
44702
44703
44704
44705
44706
44707
44708
44709
44710
44711
44712
44713
44714
44715
44716
44717
44718
44719
44720
44721
44722
44723
44724
44725
44726
44727
44728
44729
44730
44731
44732
44733
44734
44735
44736
44737
44738
44739
44740
44741
44742
44743
44744
44745
44746
44747
44748
44749
44750
44751
44752
44753
44754
44755
44756
44757
44758
44759
44760
44761
44762
44763
44764
44765
44766
44767
44768
44769
44770
44771
44772
44773
44774
44775
44776
44777
44778
44779
44780
44781
44782
44783
44784
44785
44786
44787
44788
44789
44790
44791
44792
44793
44794
44795
44796
44797
44798
44799
44800
44801
44802
44803
44804
44805
44806
44807
44808
44809
44810
44811
44812
44813
44814
44815
44816
44817
44818
44819
44820
44821
44822
44823
44824
44825
44826
44827
44828
44829
44830
44831
44832
44833
44834
44835
44836
44837
44838
44839
44840
44841
44842
44843
44844
44845
44846
44847
44848
44849
44850
44851
44852
44853
44854
44855
44856
44857
44858
44859
44860
44861
44862
44863
44864
44865
44866
44867
44868
44869
44870
44871
44872
44873
44874
44875
44876
44877
44878
44879
44880
44881
44882
44883
44884
44885
44886
44887
44888
44889
44890
44891
44892
44893
44894
44895
44896
44897
44898
44899
44900
44901
44902
44903
44904
44905
44906
44907
44908
44909
44910
44911
44912
44913
44914
44915
44916
44917
44918
44919
44920
44921
44922
44923
44924
44925
44926
44927
44928
44929
44930
44931
44932
44933
44934
44935
44936
44937
44938
44939
44940
44941
44942
44943
44944
44945
44946
44947
44948
44949
44950
44951
44952
44953
44954
44955
44956
44957
44958
44959
44960
44961
44962
44963
44964
44965
44966
44967
44968
44969
44970
44971
44972
44973
44974
44975
44976
44977
44978
44979
44980
44981
44982
44983
44984
44985
44986
44987
44988
44989
44990
44991
44992
44993
44994
44995
44996
44997
44998
44999
45000
45001
45002
45003
45004
45005
45006
45007
45008
45009
45010
45011
45012
45013
45014
45015
45016
45017
45018
45019
45020
45021
45022
45023
45024
/*===- TableGen'erated file -------------------------------------*- C++ -*-===*\
|*                                                                            *|
|* DAG Instruction Selector for the PPC target                                *|
|*                                                                            *|
|* Automatically generated file, do not edit!                                 *|
|*                                                                            *|
\*===----------------------------------------------------------------------===*/

// *** NOTE: This file is #included into the middle of the target
// *** instruction selector class.  These functions are really methods.

// If GET_DAGISEL_DECL is #defined with any value, only function
// declarations will be included when this file is included.
// If GET_DAGISEL_BODY is #defined, its value should be the name of
// the instruction selector class. Function bodies will be emitted
// and each function's name will be qualified with the name of the
// class.
//
// When neither of the GET_DAGISEL* macros is defined, the functions
// are emitted inline.

#if defined(GET_DAGISEL_DECL) && defined(GET_DAGISEL_BODY)
#error GET_DAGISEL_DECL and GET_DAGISEL_BODY cannot be both defined, undef both for inline definitions
#endif

#ifdef GET_DAGISEL_BODY
#define LOCAL_DAGISEL_STRINGIZE(X) LOCAL_DAGISEL_STRINGIZE_(X)
#define LOCAL_DAGISEL_STRINGIZE_(X) #X
static_assert(sizeof(LOCAL_DAGISEL_STRINGIZE(GET_DAGISEL_BODY)) > 1,
   "GET_DAGISEL_BODY is empty: it should be defined with the class name");
#undef LOCAL_DAGISEL_STRINGIZE_
#undef LOCAL_DAGISEL_STRINGIZE
#endif

#if !defined(GET_DAGISEL_DECL) && !defined(GET_DAGISEL_BODY)
#define DAGISEL_INLINE 1
#else
#define DAGISEL_INLINE 0
#endif

#if !DAGISEL_INLINE
#define DAGISEL_CLASS_COLONCOLON GET_DAGISEL_BODY ::
#else
#define DAGISEL_CLASS_COLONCOLON
#endif

#ifdef GET_DAGISEL_DECL
void SelectCode(SDNode *N);
#endif
#if defined(GET_DAGISEL_BODY) || DAGISEL_INLINE
void DAGISEL_CLASS_COLONCOLON SelectCode(SDNode *N)
{
  // Some target values are emitted as 2 bytes, TARGET_VAL handles
  // this.
  #define TARGET_VAL(X) X & 255, unsigned(X) >> 8
  static const unsigned char MatcherTable[] = {
/*     0*/  OPC_SwitchOpcode /*197 cases */, 97|128,38/*4961*/, TARGET_VAL(ISD::STORE),// ->4966
/*     5*/    OPC_RecordMemRef,
/*     6*/    OPC_RecordNode, // #0 = 'st' chained node
/*     7*/    OPC_Scope, 127|128,28/*3711*/, /*->3721*/ // 2 children in Scope
/*    10*/      OPC_MoveChild1,
/*    11*/      OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*    14*/      OPC_RecordChild0, // #1 = $S
/*    15*/      OPC_Scope, 78, /*->95*/ // 18 children in Scope
/*    17*/        OPC_CheckChild0Type, MVT::v16i8,
/*    19*/        OPC_CheckType, MVT::i32,
/*    21*/        OPC_Scope, 35, /*->58*/ // 2 children in Scope
/*    23*/          OPC_CheckChild1Integer, 7, 
/*    25*/          OPC_MoveParent,
/*    26*/          OPC_RecordChild2, // #2 = $dst
/*    27*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*    29*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*    31*/          OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*    33*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*    35*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*    38*/          OPC_EmitMergeInputChains1_0,
/*    39*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*    42*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*    50*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 6, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 7:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*    58*/        /*Scope*/ 35, /*->94*/
/*    59*/          OPC_CheckChild1Integer, 8, 
/*    61*/          OPC_MoveParent,
/*    62*/          OPC_RecordChild2, // #2 = $dst
/*    63*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*    65*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*    67*/          OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*    69*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*    71*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*    74*/          OPC_EmitMergeInputChains1_0,
/*    75*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*    78*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*    86*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 6, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 8:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*    94*/        0, /*End of Scope*/
/*    95*/      /*Scope*/ 78, /*->174*/
/*    96*/        OPC_CheckChild0Type, MVT::v8i16,
/*    98*/        OPC_CheckType, MVT::i32,
/*   100*/        OPC_Scope, 35, /*->137*/ // 2 children in Scope
/*   102*/          OPC_CheckChild1Integer, 3, 
/*   104*/          OPC_MoveParent,
/*   105*/          OPC_RecordChild2, // #2 = $dst
/*   106*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   108*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*   110*/          OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*   112*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*   114*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*   117*/          OPC_EmitMergeInputChains1_0,
/*   118*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*   121*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*   129*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 6, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                    // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*   137*/        /*Scope*/ 35, /*->173*/
/*   138*/          OPC_CheckChild1Integer, 4, 
/*   140*/          OPC_MoveParent,
/*   141*/          OPC_RecordChild2, // #2 = $dst
/*   142*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   144*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*   146*/          OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*   148*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*   150*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*   153*/          OPC_EmitMergeInputChains1_0,
/*   154*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*   157*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*   165*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 6, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                    // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*   173*/        0, /*End of Scope*/
/*   174*/      /*Scope*/ 109|128,5/*749*/, /*->925*/
/*   176*/        OPC_CheckChild1Integer, 1, 
/*   178*/        OPC_SwitchType /*4 cases */, 74|128,1/*202*/, MVT::i64,// ->384
/*   182*/          OPC_MoveParent,
/*   183*/          OPC_RecordChild2, // #2 = $src
/*   184*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   186*/          OPC_CheckPredicate, 4, // Predicate_store
/*   188*/          OPC_Scope, 52, /*->242*/ // 4 children in Scope
/*   190*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*   192*/            OPC_Scope, 23, /*->217*/ // 2 children in Scope
/*   194*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*   197*/              OPC_EmitMergeInputChains1_0,
/*   198*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   201*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   209*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 1:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2i64] }:$A, sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*   217*/            /*Scope*/ 23, /*->241*/
/*   218*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*   221*/              OPC_EmitMergeInputChains1_0,
/*   222*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   225*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   233*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 1:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2i64] }:$A, sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*   241*/            0, /*End of Scope*/
/*   242*/          /*Scope*/ 25, /*->268*/
/*   243*/            OPC_CheckPatternPredicate, 2, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*   245*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   248*/            OPC_EmitMergeInputChains1_0,
/*   249*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   252*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   260*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2i64] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   268*/          /*Scope*/ 76, /*->345*/
/*   269*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*   271*/            OPC_Scope, 35, /*->308*/ // 2 children in Scope
/*   273*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*   276*/              OPC_EmitMergeInputChains1_0,
/*   277*/              OPC_EmitInteger, MVT::i32, 2, 
/*   280*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   289*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   292*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   300*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 1:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$A, ?:{ *:[v2i64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*   308*/            /*Scope*/ 35, /*->344*/
/*   309*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*   312*/              OPC_EmitMergeInputChains1_0,
/*   313*/              OPC_EmitInteger, MVT::i32, 2, 
/*   316*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   325*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   328*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   336*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 1:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$A, ?:{ *:[v2i64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*   344*/            0, /*End of Scope*/
/*   345*/          /*Scope*/ 37, /*->383*/
/*   346*/            OPC_CheckPatternPredicate, 3, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*   348*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   351*/            OPC_EmitMergeInputChains1_0,
/*   352*/            OPC_EmitInteger, MVT::i32, 2, 
/*   355*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   364*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   367*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   375*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$A, ?:{ *:[v2i64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   383*/          0, /*End of Scope*/
/*   384*/        /*SwitchType*/ 76|128,1/*204*/, MVT::f64,// ->591
/*   387*/          OPC_CheckChild0Type, MVT::v2f64,
/*   389*/          OPC_MoveParent,
/*   390*/          OPC_RecordChild2, // #2 = $src
/*   391*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   393*/          OPC_CheckPredicate, 4, // Predicate_store
/*   395*/          OPC_Scope, 52, /*->449*/ // 4 children in Scope
/*   397*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*   399*/            OPC_Scope, 23, /*->424*/ // 2 children in Scope
/*   401*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*   404*/              OPC_EmitMergeInputChains1_0,
/*   405*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   408*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   416*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$A, sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*   424*/            /*Scope*/ 23, /*->448*/
/*   425*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*   428*/              OPC_EmitMergeInputChains1_0,
/*   429*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   432*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   440*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$A, sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*   448*/            0, /*End of Scope*/
/*   449*/          /*Scope*/ 25, /*->475*/
/*   450*/            OPC_CheckPatternPredicate, 2, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*   452*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   455*/            OPC_EmitMergeInputChains1_0,
/*   456*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   459*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   467*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   475*/          /*Scope*/ 76, /*->552*/
/*   476*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*   478*/            OPC_Scope, 35, /*->515*/ // 2 children in Scope
/*   480*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*   483*/              OPC_EmitMergeInputChains1_0,
/*   484*/              OPC_EmitInteger, MVT::i32, 2, 
/*   487*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   496*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   499*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   507*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*   515*/            /*Scope*/ 35, /*->551*/
/*   516*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*   519*/              OPC_EmitMergeInputChains1_0,
/*   520*/              OPC_EmitInteger, MVT::i32, 2, 
/*   523*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   532*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   535*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   543*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*   551*/            0, /*End of Scope*/
/*   552*/          /*Scope*/ 37, /*->590*/
/*   553*/            OPC_CheckPatternPredicate, 3, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*   555*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   558*/            OPC_EmitMergeInputChains1_0,
/*   559*/            OPC_EmitInteger, MVT::i32, 2, 
/*   562*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   571*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   574*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   582*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   590*/          0, /*End of Scope*/
/*   591*/        /*SwitchType*/ 0|128,2/*256*/, MVT::i32,// ->850
/*   594*/          OPC_Scope, 31, /*->627*/ // 4 children in Scope
/*   596*/            OPC_MoveParent,
/*   597*/            OPC_RecordChild2, // #2 = $src
/*   598*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   600*/            OPC_CheckPredicate, 4, // Predicate_store
/*   602*/            OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*   604*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   607*/            OPC_EmitMergeInputChains1_0,
/*   608*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   611*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   619*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v4i32] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   627*/          /*Scope*/ 88, /*->716*/
/*   628*/            OPC_CheckChild0Type, MVT::v16i8,
/*   630*/            OPC_MoveParent,
/*   631*/            OPC_RecordChild2, // #2 = $dst
/*   632*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   634*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*   636*/            OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*   638*/            OPC_Scope, 37, /*->677*/ // 2 children in Scope
/*   640*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*   642*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*   645*/              OPC_EmitMergeInputChains1_0,
/*   646*/              OPC_EmitInteger, MVT::i32, 10, 
/*   649*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   658*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*   661*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*   669*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 10:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*   677*/            /*Scope*/ 37, /*->715*/
/*   678*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*   680*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*   683*/              OPC_EmitMergeInputChains1_0,
/*   684*/              OPC_EmitInteger, MVT::i32, 7, 
/*   687*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   696*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*   699*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*   707*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 7:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*   715*/            0, /*End of Scope*/
/*   716*/          /*Scope*/ 88, /*->805*/
/*   717*/            OPC_CheckChild0Type, MVT::v8i16,
/*   719*/            OPC_MoveParent,
/*   720*/            OPC_RecordChild2, // #2 = $dst
/*   721*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   723*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*   725*/            OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*   727*/            OPC_Scope, 37, /*->766*/ // 2 children in Scope
/*   729*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*   731*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*   734*/              OPC_EmitMergeInputChains1_0,
/*   735*/              OPC_EmitInteger, MVT::i32, 12, 
/*   738*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   747*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*   750*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*   758*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                        // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 12:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*   766*/            /*Scope*/ 37, /*->804*/
/*   767*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*   769*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*   772*/              OPC_EmitMergeInputChains1_0,
/*   773*/              OPC_EmitInteger, MVT::i32, 6, 
/*   776*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   785*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*   788*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*   796*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                        // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 6:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*   804*/            0, /*End of Scope*/
/*   805*/          /*Scope*/ 43, /*->849*/
/*   806*/            OPC_MoveParent,
/*   807*/            OPC_RecordChild2, // #2 = $src
/*   808*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   810*/            OPC_CheckPredicate, 4, // Predicate_store
/*   812*/            OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*   814*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   817*/            OPC_EmitMergeInputChains1_0,
/*   818*/            OPC_EmitInteger, MVT::i32, 1, 
/*   821*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   830*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   833*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   841*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A, 1:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   849*/          0, /*End of Scope*/
/*   850*/        /*SwitchType*/ 72, MVT::f32,// ->924
/*   852*/          OPC_MoveParent,
/*   853*/          OPC_RecordChild2, // #2 = $src
/*   854*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   856*/          OPC_CheckPredicate, 4, // Predicate_store
/*   858*/          OPC_Scope, 25, /*->885*/ // 2 children in Scope
/*   860*/            OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*   862*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   865*/            OPC_EmitMergeInputChains1_0,
/*   866*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   869*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   877*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v4f32] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   885*/          /*Scope*/ 37, /*->923*/
/*   886*/            OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*   888*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   891*/            OPC_EmitMergeInputChains1_0,
/*   892*/            OPC_EmitInteger, MVT::i32, 1, 
/*   895*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*   904*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   907*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*   915*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 1:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$A, 1:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*   923*/          0, /*End of Scope*/
/*   924*/        0, // EndSwitchType
/*   925*/      /*Scope*/ 2|128,6/*770*/, /*->1697*/
/*   927*/        OPC_CheckChild1Integer, 0, 
/*   929*/        OPC_SwitchType /*4 cases */, 74|128,1/*202*/, MVT::i64,// ->1135
/*   933*/          OPC_MoveParent,
/*   934*/          OPC_RecordChild2, // #2 = $src
/*   935*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*   937*/          OPC_CheckPredicate, 4, // Predicate_store
/*   939*/          OPC_Scope, 52, /*->993*/ // 4 children in Scope
/*   941*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*   943*/            OPC_Scope, 23, /*->968*/ // 2 children in Scope
/*   945*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*   948*/              OPC_EmitMergeInputChains1_0,
/*   949*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   952*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   960*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 0:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2i64] }:$A, sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*   968*/            /*Scope*/ 23, /*->992*/
/*   969*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*   972*/              OPC_EmitMergeInputChains1_0,
/*   973*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*   976*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*   984*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 0:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2i64] }:$A, sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*   992*/            0, /*End of Scope*/
/*   993*/          /*Scope*/ 25, /*->1019*/
/*   994*/            OPC_CheckPatternPredicate, 3, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*   996*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*   999*/            OPC_EmitMergeInputChains1_0,
/*  1000*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1003*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*  1011*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2i64] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1019*/          /*Scope*/ 76, /*->1096*/
/*  1020*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  1022*/            OPC_Scope, 35, /*->1059*/ // 2 children in Scope
/*  1024*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*  1027*/              OPC_EmitMergeInputChains1_0,
/*  1028*/              OPC_EmitInteger, MVT::i32, 2, 
/*  1031*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1040*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1043*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1051*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 0:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$A, ?:{ *:[v2i64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*  1059*/            /*Scope*/ 35, /*->1095*/
/*  1060*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*  1063*/              OPC_EmitMergeInputChains1_0,
/*  1064*/              OPC_EmitInteger, MVT::i32, 2, 
/*  1067*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1076*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1079*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1087*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 0:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$A, ?:{ *:[v2i64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*  1095*/            0, /*End of Scope*/
/*  1096*/          /*Scope*/ 37, /*->1134*/
/*  1097*/            OPC_CheckPatternPredicate, 2, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*  1099*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1102*/            OPC_EmitMergeInputChains1_0,
/*  1103*/            OPC_EmitInteger, MVT::i32, 2, 
/*  1106*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1115*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1118*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1126*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$A, ?:{ *:[v2i64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1134*/          0, /*End of Scope*/
/*  1135*/        /*SwitchType*/ 76|128,1/*204*/, MVT::f64,// ->1342
/*  1138*/          OPC_CheckChild0Type, MVT::v2f64,
/*  1140*/          OPC_MoveParent,
/*  1141*/          OPC_RecordChild2, // #2 = $src
/*  1142*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1144*/          OPC_CheckPredicate, 4, // Predicate_store
/*  1146*/          OPC_Scope, 52, /*->1200*/ // 4 children in Scope
/*  1148*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1150*/            OPC_Scope, 23, /*->1175*/ // 2 children in Scope
/*  1152*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*  1155*/              OPC_EmitMergeInputChains1_0,
/*  1156*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1159*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*  1167*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$A, sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*  1175*/            /*Scope*/ 23, /*->1199*/
/*  1176*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*  1179*/              OPC_EmitMergeInputChains1_0,
/*  1180*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1183*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*  1191*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 6, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$A, sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*  1199*/            0, /*End of Scope*/
/*  1200*/          /*Scope*/ 25, /*->1226*/
/*  1201*/            OPC_CheckPatternPredicate, 3, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*  1203*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1206*/            OPC_EmitMergeInputChains1_0,
/*  1207*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1210*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*  1218*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1226*/          /*Scope*/ 76, /*->1303*/
/*  1227*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  1229*/            OPC_Scope, 35, /*->1266*/ // 2 children in Scope
/*  1231*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$src #3 #4
/*  1234*/              OPC_EmitMergeInputChains1_0,
/*  1235*/              OPC_EmitInteger, MVT::i32, 2, 
/*  1238*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1247*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1250*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1258*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }), iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (DFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$src)
/*  1266*/            /*Scope*/ 35, /*->1302*/
/*  1267*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$src #3 #4
/*  1270*/              OPC_EmitMergeInputChains1_0,
/*  1271*/              OPC_EmitInteger, MVT::i32, 2, 
/*  1274*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1283*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1286*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1294*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }), xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$src)
/*  1302*/            0, /*End of Scope*/
/*  1303*/          /*Scope*/ 37, /*->1341*/
/*  1304*/            OPC_CheckPatternPredicate, 2, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*  1306*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1309*/            OPC_EmitMergeInputChains1_0,
/*  1310*/            OPC_EmitInteger, MVT::i32, 2, 
/*  1313*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1322*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1325*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1333*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (XFSTOREf64 (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1341*/          0, /*End of Scope*/
/*  1342*/        /*SwitchType*/ 9|128,2/*265*/, MVT::i32,// ->1610
/*  1345*/          OPC_Scope, 88, /*->1435*/ // 3 children in Scope
/*  1347*/            OPC_CheckChild0Type, MVT::v16i8,
/*  1349*/            OPC_MoveParent,
/*  1350*/            OPC_RecordChild2, // #2 = $dst
/*  1351*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1353*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  1355*/            OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  1357*/            OPC_Scope, 37, /*->1396*/ // 2 children in Scope
/*  1359*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1361*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1364*/              OPC_EmitMergeInputChains1_0,
/*  1365*/              OPC_EmitInteger, MVT::i32, 9, 
/*  1368*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1377*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1380*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1388*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 9:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1396*/            /*Scope*/ 37, /*->1434*/
/*  1397*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  1399*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1402*/              OPC_EmitMergeInputChains1_0,
/*  1403*/              OPC_EmitInteger, MVT::i32, 8, 
/*  1406*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1415*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1418*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1426*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 8:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1434*/            0, /*End of Scope*/
/*  1435*/          /*Scope*/ 88, /*->1524*/
/*  1436*/            OPC_CheckChild0Type, MVT::v8i16,
/*  1438*/            OPC_MoveParent,
/*  1439*/            OPC_RecordChild2, // #2 = $dst
/*  1440*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1442*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  1444*/            OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  1446*/            OPC_Scope, 37, /*->1485*/ // 2 children in Scope
/*  1448*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1450*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1453*/              OPC_EmitMergeInputChains1_0,
/*  1454*/              OPC_EmitInteger, MVT::i32, 10, 
/*  1457*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1466*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1469*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1477*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                        // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 10:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1485*/            /*Scope*/ 37, /*->1523*/
/*  1486*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  1488*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1491*/              OPC_EmitMergeInputChains1_0,
/*  1492*/              OPC_EmitInteger, MVT::i32, 8, 
/*  1495*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1504*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1507*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1515*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                        // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 8:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1523*/            0, /*End of Scope*/
/*  1524*/          /*Scope*/ 84, /*->1609*/
/*  1525*/            OPC_MoveParent,
/*  1526*/            OPC_RecordChild2, // #2 = $src
/*  1527*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1529*/            OPC_CheckPredicate, 4, // Predicate_store
/*  1531*/            OPC_Scope, 37, /*->1570*/ // 2 children in Scope
/*  1533*/              OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1535*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1538*/              OPC_EmitMergeInputChains1_0,
/*  1539*/              OPC_EmitInteger, MVT::i32, 3, 
/*  1542*/              OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1551*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1554*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1562*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A, 3:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1570*/            /*Scope*/ 37, /*->1608*/
/*  1571*/              OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*  1573*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1576*/              OPC_EmitMergeInputChains1_0,
/*  1577*/              OPC_EmitInteger, MVT::i32, 2, 
/*  1580*/              OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1589*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1592*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1600*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1608*/            0, /*End of Scope*/
/*  1609*/          0, /*End of Scope*/
/*  1610*/        /*SwitchType*/ 84, MVT::f32,// ->1696
/*  1612*/          OPC_MoveParent,
/*  1613*/          OPC_RecordChild2, // #2 = $src
/*  1614*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1616*/          OPC_CheckPredicate, 4, // Predicate_store
/*  1618*/          OPC_Scope, 37, /*->1657*/ // 2 children in Scope
/*  1620*/            OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1622*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1625*/            OPC_EmitMergeInputChains1_0,
/*  1626*/            OPC_EmitInteger, MVT::i32, 3, 
/*  1629*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1638*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1641*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1649*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$A, 3:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1657*/          /*Scope*/ 37, /*->1695*/
/*  1658*/            OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*  1660*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1663*/            OPC_EmitMergeInputChains1_0,
/*  1664*/            OPC_EmitInteger, MVT::i32, 2, 
/*  1667*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1676*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1679*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1687*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 0:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1695*/          0, /*End of Scope*/
/*  1696*/        0, // EndSwitchType
/*  1697*/      /*Scope*/ 81|128,2/*337*/, /*->2036*/
/*  1699*/        OPC_CheckChild1Integer, 2, 
/*  1701*/        OPC_SwitchType /*2 cases */, 0|128,2/*256*/, MVT::i32,// ->1961
/*  1705*/          OPC_Scope, 31, /*->1738*/ // 4 children in Scope
/*  1707*/            OPC_MoveParent,
/*  1708*/            OPC_RecordChild2, // #2 = $src
/*  1709*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1711*/            OPC_CheckPredicate, 4, // Predicate_store
/*  1713*/            OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*  1715*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1718*/            OPC_EmitMergeInputChains1_0,
/*  1719*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1722*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*  1730*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v4i32] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1738*/          /*Scope*/ 88, /*->1827*/
/*  1739*/            OPC_CheckChild0Type, MVT::v16i8,
/*  1741*/            OPC_MoveParent,
/*  1742*/            OPC_RecordChild2, // #2 = $dst
/*  1743*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1745*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  1747*/            OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  1749*/            OPC_Scope, 37, /*->1788*/ // 2 children in Scope
/*  1751*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1753*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1756*/              OPC_EmitMergeInputChains1_0,
/*  1757*/              OPC_EmitInteger, MVT::i32, 11, 
/*  1760*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1769*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1772*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1780*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 11:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1788*/            /*Scope*/ 37, /*->1826*/
/*  1789*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  1791*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1794*/              OPC_EmitMergeInputChains1_0,
/*  1795*/              OPC_EmitInteger, MVT::i32, 6, 
/*  1798*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1807*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1810*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1818*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 6:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1826*/            0, /*End of Scope*/
/*  1827*/          /*Scope*/ 88, /*->1916*/
/*  1828*/            OPC_CheckChild0Type, MVT::v8i16,
/*  1830*/            OPC_MoveParent,
/*  1831*/            OPC_RecordChild2, // #2 = $dst
/*  1832*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1834*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  1836*/            OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  1838*/            OPC_Scope, 37, /*->1877*/ // 2 children in Scope
/*  1840*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1842*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1845*/              OPC_EmitMergeInputChains1_0,
/*  1846*/              OPC_EmitInteger, MVT::i32, 14, 
/*  1849*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1858*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1861*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1869*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                        // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 14:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1877*/            /*Scope*/ 37, /*->1915*/
/*  1878*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  1880*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  1883*/              OPC_EmitMergeInputChains1_0,
/*  1884*/              OPC_EmitInteger, MVT::i32, 4, 
/*  1887*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1896*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  1899*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1907*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                        // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 4:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  1915*/            0, /*End of Scope*/
/*  1916*/          /*Scope*/ 43, /*->1960*/
/*  1917*/            OPC_MoveParent,
/*  1918*/            OPC_RecordChild2, // #2 = $src
/*  1919*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1921*/            OPC_CheckPredicate, 4, // Predicate_store
/*  1923*/            OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1925*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1928*/            OPC_EmitMergeInputChains1_0,
/*  1929*/            OPC_EmitInteger, MVT::i32, 1, 
/*  1932*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  1941*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1944*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  1952*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A, 1:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1960*/          0, /*End of Scope*/
/*  1961*/        /*SwitchType*/ 72, MVT::f32,// ->2035
/*  1963*/          OPC_MoveParent,
/*  1964*/          OPC_RecordChild2, // #2 = $src
/*  1965*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  1967*/          OPC_CheckPredicate, 4, // Predicate_store
/*  1969*/          OPC_Scope, 25, /*->1996*/ // 2 children in Scope
/*  1971*/            OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*  1973*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  1976*/            OPC_EmitMergeInputChains1_0,
/*  1977*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  1980*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 5,  // Results = #6
/*  1988*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 6, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v4f32] }:$A, sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  1996*/          /*Scope*/ 37, /*->2034*/
/*  1997*/            OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*  1999*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  2002*/            OPC_EmitMergeInputChains1_0,
/*  2003*/            OPC_EmitInteger, MVT::i32, 1, 
/*  2006*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2015*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  2018*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2026*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 2:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$A, 1:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  2034*/          0, /*End of Scope*/
/*  2035*/        0, // EndSwitchType
/*  2036*/      /*Scope*/ 61|128,2/*317*/, /*->2355*/
/*  2038*/        OPC_CheckChild1Integer, 3, 
/*  2040*/        OPC_SwitchType /*2 cases */, 96|128,1/*224*/, MVT::i32,// ->2268
/*  2044*/          OPC_Scope, 88, /*->2134*/ // 3 children in Scope
/*  2046*/            OPC_CheckChild0Type, MVT::v16i8,
/*  2048*/            OPC_MoveParent,
/*  2049*/            OPC_RecordChild2, // #2 = $dst
/*  2050*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2052*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2054*/            OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  2056*/            OPC_Scope, 37, /*->2095*/ // 2 children in Scope
/*  2058*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2060*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2063*/              OPC_EmitMergeInputChains1_0,
/*  2064*/              OPC_EmitInteger, MVT::i32, 12, 
/*  2067*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2076*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2079*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2087*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 12:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2095*/            /*Scope*/ 37, /*->2133*/
/*  2096*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2098*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2101*/              OPC_EmitMergeInputChains1_0,
/*  2102*/              OPC_EmitInteger, MVT::i32, 5, 
/*  2105*/              OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                            MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2114*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2117*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2125*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                        // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 5:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2133*/            0, /*End of Scope*/
/*  2134*/          /*Scope*/ 47, /*->2182*/
/*  2135*/            OPC_CheckChild0Type, MVT::v8i16,
/*  2137*/            OPC_MoveParent,
/*  2138*/            OPC_RecordChild2, // #2 = $dst
/*  2139*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2141*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2143*/            OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  2145*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2147*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2150*/            OPC_EmitMergeInputChains1_0,
/*  2151*/            OPC_EmitInteger, MVT::i32, 2, 
/*  2154*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2163*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2166*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2174*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                      // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 2:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2182*/          /*Scope*/ 84, /*->2267*/
/*  2183*/            OPC_MoveParent,
/*  2184*/            OPC_RecordChild2, // #2 = $src
/*  2185*/            OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2187*/            OPC_CheckPredicate, 4, // Predicate_store
/*  2189*/            OPC_Scope, 37, /*->2228*/ // 2 children in Scope
/*  2191*/              OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2193*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  2196*/              OPC_EmitMergeInputChains1_0,
/*  2197*/              OPC_EmitInteger, MVT::i32, 2, 
/*  2200*/              OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2209*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  2212*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2220*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  2228*/            /*Scope*/ 37, /*->2266*/
/*  2229*/              OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*  2231*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  2234*/              OPC_EmitMergeInputChains1_0,
/*  2235*/              OPC_EmitInteger, MVT::i32, 3, 
/*  2238*/              OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                            MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2247*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  2250*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2258*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 8, 3, 4, 
                        // Src: (st (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                        // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A, 3:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  2266*/            0, /*End of Scope*/
/*  2267*/          0, /*End of Scope*/
/*  2268*/        /*SwitchType*/ 84, MVT::f32,// ->2354
/*  2270*/          OPC_MoveParent,
/*  2271*/          OPC_RecordChild2, // #2 = $src
/*  2272*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2274*/          OPC_CheckPredicate, 4, // Predicate_store
/*  2276*/          OPC_Scope, 37, /*->2315*/ // 2 children in Scope
/*  2278*/            OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2280*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  2283*/            OPC_EmitMergeInputChains1_0,
/*  2284*/            OPC_EmitInteger, MVT::i32, 2, 
/*  2287*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2296*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  2299*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2307*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$A, 2:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  2315*/          /*Scope*/ 37, /*->2353*/
/*  2316*/            OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*  2318*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$src #3 #4
/*  2321*/            OPC_EmitMergeInputChains1_0,
/*  2322*/            OPC_EmitInteger, MVT::i32, 3, 
/*  2325*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2334*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*  2337*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2345*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$A, 3:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 421
                      // Dst: (STIWX (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$A, 3:{ *:[i32] }), sub_64:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$src)
/*  2353*/          0, /*End of Scope*/
/*  2354*/        0, // EndSwitchType
/*  2355*/      /*Scope*/ 15|128,1/*143*/, /*->2500*/
/*  2357*/        OPC_CheckChild1Integer, 4, 
/*  2359*/        OPC_CheckType, MVT::i32,
/*  2361*/        OPC_Scope, 88, /*->2451*/ // 2 children in Scope
/*  2363*/          OPC_CheckChild0Type, MVT::v16i8,
/*  2365*/          OPC_MoveParent,
/*  2366*/          OPC_RecordChild2, // #2 = $dst
/*  2367*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2369*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2371*/          OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  2373*/          OPC_Scope, 37, /*->2412*/ // 2 children in Scope
/*  2375*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2377*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2380*/            OPC_EmitMergeInputChains1_0,
/*  2381*/            OPC_EmitInteger, MVT::i32, 13, 
/*  2384*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2393*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2396*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2404*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 4:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                      // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 13:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2412*/          /*Scope*/ 37, /*->2450*/
/*  2413*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2415*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2418*/            OPC_EmitMergeInputChains1_0,
/*  2419*/            OPC_EmitInteger, MVT::i32, 4, 
/*  2422*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2431*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2434*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2442*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 4:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                      // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 4:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2450*/          0, /*End of Scope*/
/*  2451*/        /*Scope*/ 47, /*->2499*/
/*  2452*/          OPC_CheckChild0Type, MVT::v8i16,
/*  2454*/          OPC_MoveParent,
/*  2455*/          OPC_RecordChild2, // #2 = $dst
/*  2456*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2458*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2460*/          OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  2462*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2464*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2467*/          OPC_EmitMergeInputChains1_0,
/*  2468*/          OPC_EmitInteger, MVT::i32, 2, 
/*  2471*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2480*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2483*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2491*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                    // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 2:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2499*/        0, /*End of Scope*/
/*  2500*/      /*Scope*/ 56|128,1/*184*/, /*->2686*/
/*  2502*/        OPC_CheckChild1Integer, 5, 
/*  2504*/        OPC_CheckType, MVT::i32,
/*  2506*/        OPC_Scope, 88, /*->2596*/ // 2 children in Scope
/*  2508*/          OPC_CheckChild0Type, MVT::v16i8,
/*  2510*/          OPC_MoveParent,
/*  2511*/          OPC_RecordChild2, // #2 = $dst
/*  2512*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2514*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2516*/          OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  2518*/          OPC_Scope, 37, /*->2557*/ // 2 children in Scope
/*  2520*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2522*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2525*/            OPC_EmitMergeInputChains1_0,
/*  2526*/            OPC_EmitInteger, MVT::i32, 14, 
/*  2529*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2538*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2541*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2549*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 5:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                      // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 14:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2557*/          /*Scope*/ 37, /*->2595*/
/*  2558*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2560*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2563*/            OPC_EmitMergeInputChains1_0,
/*  2564*/            OPC_EmitInteger, MVT::i32, 3, 
/*  2567*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2576*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2579*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2587*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 5:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                      // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 3:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2595*/          0, /*End of Scope*/
/*  2596*/        /*Scope*/ 88, /*->2685*/
/*  2597*/          OPC_CheckChild0Type, MVT::v8i16,
/*  2599*/          OPC_MoveParent,
/*  2600*/          OPC_RecordChild2, // #2 = $dst
/*  2601*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2603*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2605*/          OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  2607*/          OPC_Scope, 37, /*->2646*/ // 2 children in Scope
/*  2609*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2611*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2614*/            OPC_EmitMergeInputChains1_0,
/*  2615*/            OPC_EmitInteger, MVT::i32, 4, 
/*  2618*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2627*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2630*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2638*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                      // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 4:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2646*/          /*Scope*/ 37, /*->2684*/
/*  2647*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2649*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2652*/            OPC_EmitMergeInputChains1_0,
/*  2653*/            OPC_EmitInteger, MVT::i32, 14, 
/*  2656*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2665*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2668*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2676*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                      // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 14:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2684*/          0, /*End of Scope*/
/*  2685*/        0, /*End of Scope*/
/*  2686*/      /*Scope*/ 56|128,1/*184*/, /*->2872*/
/*  2688*/        OPC_CheckChild1Integer, 6, 
/*  2690*/        OPC_CheckType, MVT::i32,
/*  2692*/        OPC_Scope, 88, /*->2782*/ // 2 children in Scope
/*  2694*/          OPC_CheckChild0Type, MVT::v16i8,
/*  2696*/          OPC_MoveParent,
/*  2697*/          OPC_RecordChild2, // #2 = $dst
/*  2698*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2700*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2702*/          OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  2704*/          OPC_Scope, 37, /*->2743*/ // 2 children in Scope
/*  2706*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2708*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2711*/            OPC_EmitMergeInputChains1_0,
/*  2712*/            OPC_EmitInteger, MVT::i32, 15, 
/*  2715*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2724*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2727*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2735*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 6:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                      // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 15:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2743*/          /*Scope*/ 37, /*->2781*/
/*  2744*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2746*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2749*/            OPC_EmitMergeInputChains1_0,
/*  2750*/            OPC_EmitInteger, MVT::i32, 2, 
/*  2753*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2762*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2765*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2773*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 6:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                      // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 2:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2781*/          0, /*End of Scope*/
/*  2782*/        /*Scope*/ 88, /*->2871*/
/*  2783*/          OPC_CheckChild0Type, MVT::v8i16,
/*  2785*/          OPC_MoveParent,
/*  2786*/          OPC_RecordChild2, // #2 = $dst
/*  2787*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2789*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2791*/          OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  2793*/          OPC_Scope, 37, /*->2832*/ // 2 children in Scope
/*  2795*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2797*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2800*/            OPC_EmitMergeInputChains1_0,
/*  2801*/            OPC_EmitInteger, MVT::i32, 6, 
/*  2804*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2813*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2816*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2824*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                      // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 6:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2832*/          /*Scope*/ 37, /*->2870*/
/*  2833*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2835*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2838*/            OPC_EmitMergeInputChains1_0,
/*  2839*/            OPC_EmitInteger, MVT::i32, 12, 
/*  2842*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2851*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2854*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2862*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                      // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 12:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2870*/          0, /*End of Scope*/
/*  2871*/        0, /*End of Scope*/
/*  2872*/      /*Scope*/ 51, /*->2924*/
/*  2873*/        OPC_CheckChild1Integer, 8, 
/*  2875*/        OPC_CheckChild0Type, MVT::v16i8,
/*  2877*/        OPC_CheckType, MVT::i32,
/*  2879*/        OPC_MoveParent,
/*  2880*/        OPC_RecordChild2, // #2 = $dst
/*  2881*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2883*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2885*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  2887*/        OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2889*/        OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2892*/        OPC_EmitMergeInputChains1_0,
/*  2893*/        OPC_EmitInteger, MVT::i32, 1, 
/*  2896*/        OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                      MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2905*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2908*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2916*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 8, 3, 4, 
                  // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 8:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                  // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 1:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2924*/      /*Scope*/ 92, /*->3017*/
/*  2925*/        OPC_CheckChild1Integer, 9, 
/*  2927*/        OPC_CheckChild0Type, MVT::v16i8,
/*  2929*/        OPC_CheckType, MVT::i32,
/*  2931*/        OPC_MoveParent,
/*  2932*/        OPC_RecordChild2, // #2 = $dst
/*  2933*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  2935*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  2937*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  2939*/        OPC_Scope, 37, /*->2978*/ // 2 children in Scope
/*  2941*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  2943*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2946*/          OPC_EmitMergeInputChains1_0,
/*  2947*/          OPC_EmitInteger, MVT::i32, 2, 
/*  2950*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2959*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  2962*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  2970*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 9:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 2:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  2978*/        /*Scope*/ 37, /*->3016*/
/*  2979*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  2981*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  2984*/          OPC_EmitMergeInputChains1_0,
/*  2985*/          OPC_EmitInteger, MVT::i32, 15, 
/*  2988*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  2997*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3000*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3008*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 9:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 15:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3016*/        0, /*End of Scope*/
/*  3017*/      /*Scope*/ 92, /*->3110*/
/*  3018*/        OPC_CheckChild1Integer, 10, 
/*  3020*/        OPC_CheckChild0Type, MVT::v16i8,
/*  3022*/        OPC_CheckType, MVT::i32,
/*  3024*/        OPC_MoveParent,
/*  3025*/        OPC_RecordChild2, // #2 = $dst
/*  3026*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3028*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3030*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  3032*/        OPC_Scope, 37, /*->3071*/ // 2 children in Scope
/*  3034*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  3036*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3039*/          OPC_EmitMergeInputChains1_0,
/*  3040*/          OPC_EmitInteger, MVT::i32, 3, 
/*  3043*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3052*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3055*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3063*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 10:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 3:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3071*/        /*Scope*/ 37, /*->3109*/
/*  3072*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3074*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3077*/          OPC_EmitMergeInputChains1_0,
/*  3078*/          OPC_EmitInteger, MVT::i32, 14, 
/*  3081*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3090*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3093*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3101*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 10:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 14:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3109*/        0, /*End of Scope*/
/*  3110*/      /*Scope*/ 92, /*->3203*/
/*  3111*/        OPC_CheckChild1Integer, 11, 
/*  3113*/        OPC_CheckChild0Type, MVT::v16i8,
/*  3115*/        OPC_CheckType, MVT::i32,
/*  3117*/        OPC_MoveParent,
/*  3118*/        OPC_RecordChild2, // #2 = $dst
/*  3119*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3121*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3123*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  3125*/        OPC_Scope, 37, /*->3164*/ // 2 children in Scope
/*  3127*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  3129*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3132*/          OPC_EmitMergeInputChains1_0,
/*  3133*/          OPC_EmitInteger, MVT::i32, 4, 
/*  3136*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3145*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3148*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3156*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 11:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 4:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3164*/        /*Scope*/ 37, /*->3202*/
/*  3165*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3167*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3170*/          OPC_EmitMergeInputChains1_0,
/*  3171*/          OPC_EmitInteger, MVT::i32, 13, 
/*  3174*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3183*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3186*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3194*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 11:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 13:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3202*/        0, /*End of Scope*/
/*  3203*/      /*Scope*/ 92, /*->3296*/
/*  3204*/        OPC_CheckChild1Integer, 12, 
/*  3206*/        OPC_CheckChild0Type, MVT::v16i8,
/*  3208*/        OPC_CheckType, MVT::i32,
/*  3210*/        OPC_MoveParent,
/*  3211*/        OPC_RecordChild2, // #2 = $dst
/*  3212*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3214*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3216*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  3218*/        OPC_Scope, 37, /*->3257*/ // 2 children in Scope
/*  3220*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  3222*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3225*/          OPC_EmitMergeInputChains1_0,
/*  3226*/          OPC_EmitInteger, MVT::i32, 5, 
/*  3229*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3238*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3241*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3249*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 12:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 5:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3257*/        /*Scope*/ 37, /*->3295*/
/*  3258*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3260*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3263*/          OPC_EmitMergeInputChains1_0,
/*  3264*/          OPC_EmitInteger, MVT::i32, 12, 
/*  3267*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3276*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3279*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3287*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 12:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 12:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3295*/        0, /*End of Scope*/
/*  3296*/      /*Scope*/ 92, /*->3389*/
/*  3297*/        OPC_CheckChild1Integer, 13, 
/*  3299*/        OPC_CheckChild0Type, MVT::v16i8,
/*  3301*/        OPC_CheckType, MVT::i32,
/*  3303*/        OPC_MoveParent,
/*  3304*/        OPC_RecordChild2, // #2 = $dst
/*  3305*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3307*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3309*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  3311*/        OPC_Scope, 37, /*->3350*/ // 2 children in Scope
/*  3313*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  3315*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3318*/          OPC_EmitMergeInputChains1_0,
/*  3319*/          OPC_EmitInteger, MVT::i32, 6, 
/*  3322*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3331*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3334*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3342*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 13:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 6:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3350*/        /*Scope*/ 37, /*->3388*/
/*  3351*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3353*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3356*/          OPC_EmitMergeInputChains1_0,
/*  3357*/          OPC_EmitInteger, MVT::i32, 11, 
/*  3360*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3369*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3372*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3380*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 13:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 11:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3388*/        0, /*End of Scope*/
/*  3389*/      /*Scope*/ 92, /*->3482*/
/*  3390*/        OPC_CheckChild1Integer, 14, 
/*  3392*/        OPC_CheckChild0Type, MVT::v16i8,
/*  3394*/        OPC_CheckType, MVT::i32,
/*  3396*/        OPC_MoveParent,
/*  3397*/        OPC_RecordChild2, // #2 = $dst
/*  3398*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3400*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3402*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  3404*/        OPC_Scope, 37, /*->3443*/ // 2 children in Scope
/*  3406*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  3408*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3411*/          OPC_EmitMergeInputChains1_0,
/*  3412*/          OPC_EmitInteger, MVT::i32, 7, 
/*  3415*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3424*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3427*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3435*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 14:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 7:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3443*/        /*Scope*/ 37, /*->3481*/
/*  3444*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3446*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3449*/          OPC_EmitMergeInputChains1_0,
/*  3450*/          OPC_EmitInteger, MVT::i32, 10, 
/*  3453*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3462*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3465*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3473*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 14:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 10:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3481*/        0, /*End of Scope*/
/*  3482*/      /*Scope*/ 92, /*->3575*/
/*  3483*/        OPC_CheckChild1Integer, 15, 
/*  3485*/        OPC_CheckChild0Type, MVT::v16i8,
/*  3487*/        OPC_CheckType, MVT::i32,
/*  3489*/        OPC_MoveParent,
/*  3490*/        OPC_RecordChild2, // #2 = $dst
/*  3491*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3493*/        OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3495*/        OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  3497*/        OPC_Scope, 37, /*->3536*/ // 2 children in Scope
/*  3499*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  3501*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3504*/          OPC_EmitMergeInputChains1_0,
/*  3505*/          OPC_EmitInteger, MVT::i32, 8, 
/*  3508*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3517*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3520*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3528*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 15:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 8:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3536*/        /*Scope*/ 37, /*->3574*/
/*  3537*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3539*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3542*/          OPC_EmitMergeInputChains1_0,
/*  3543*/          OPC_EmitInteger, MVT::i32, 9, 
/*  3546*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3555*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3558*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3566*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 15:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 9:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3574*/        0, /*End of Scope*/
/*  3575*/      /*Scope*/ 15|128,1/*143*/, /*->3720*/
/*  3577*/        OPC_CheckChild1Integer, 7, 
/*  3579*/        OPC_CheckType, MVT::i32,
/*  3581*/        OPC_Scope, 88, /*->3671*/ // 2 children in Scope
/*  3583*/          OPC_CheckChild0Type, MVT::v8i16,
/*  3585*/          OPC_MoveParent,
/*  3586*/          OPC_RecordChild2, // #2 = $dst
/*  3587*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3589*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3591*/          OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  3593*/          OPC_Scope, 37, /*->3632*/ // 2 children in Scope
/*  3595*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*  3597*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3600*/            OPC_EmitMergeInputChains1_0,
/*  3601*/            OPC_EmitInteger, MVT::i32, 8, 
/*  3604*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3613*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3616*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3624*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 7:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                      // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 8:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3632*/          /*Scope*/ 37, /*->3670*/
/*  3633*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3635*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3638*/            OPC_EmitMergeInputChains1_0,
/*  3639*/            OPC_EmitInteger, MVT::i32, 10, 
/*  3642*/            OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3651*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3654*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3662*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHXv), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 8, 3, 4, 
                      // Src: (st (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 7:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 421
                      // Dst: (STXSIHXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, 10:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3670*/          0, /*End of Scope*/
/*  3671*/        /*Scope*/ 47, /*->3719*/
/*  3672*/          OPC_CheckChild0Type, MVT::v16i8,
/*  3674*/          OPC_MoveParent,
/*  3675*/          OPC_RecordChild2, // #2 = $dst
/*  3676*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3678*/          OPC_CheckPredicate, 1, // Predicate_truncstore
/*  3680*/          OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  3682*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  3684*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3687*/          OPC_EmitMergeInputChains1_0,
/*  3688*/          OPC_EmitInteger, MVT::i32, 1, 
/*  3691*/          OPC_EmitNode1, TARGET_VAL(PPC::VSLDOI), 0,
                        MVT::v16i8, 3/*#Ops*/, 1, 1, 5,  // Results = #6
/*  3700*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  3703*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 6, 7,  // Results = #8
/*  3711*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBXv), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 8, 3, 4, 
                    // Src: (st (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 7:{ *:[iPTR] }), xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 421
                    // Dst: (STXSIBXv (COPY_TO_REGCLASS:{ *:[v4i32] } (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, 1:{ *:[i32] }), VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  3719*/        0, /*End of Scope*/
/*  3720*/      0, /*End of Scope*/
/*  3721*/    /*Scope*/ 90|128,9/*1242*/, /*->4965*/
/*  3723*/      OPC_RecordChild1, // #1 = $rS
/*  3724*/      OPC_Scope, 72, /*->3798*/ // 10 children in Scope
/*  3726*/        OPC_CheckChild1Type, MVT::v2f64,
/*  3728*/        OPC_RecordChild2, // #2 = $dst
/*  3729*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3731*/        OPC_CheckPredicate, 4, // Predicate_store
/*  3733*/        OPC_Scope, 14, /*->3749*/ // 2 children in Scope
/*  3735*/          OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/*  3737*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3740*/          OPC_EmitMergeInputChains1_0,
/*  3741*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVD2X), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v2f64:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                    // Dst: (STXVD2X ?:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  3749*/        /*Scope*/ 47, /*->3797*/
/*  3750*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  3752*/          OPC_Scope, 12, /*->3766*/ // 3 children in Scope
/*  3754*/            OPC_CheckComplexPat, /*CP*/3, /*#*/2, // SelectAddrIdxX16:$dst #3 #4
/*  3757*/            OPC_EmitMergeInputChains1_0,
/*  3758*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st v2f64:{ *:[v2f64] }:$XT, xaddrX16:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                      // Dst: (STXVX v2f64:{ *:[v2f64] }:$XT, xaddrX16:{ *:[iPTR] }:$dst)
/*  3766*/          /*Scope*/ 14, /*->3781*/
/*  3767*/            OPC_CheckPredicate, 5, // Predicate_quadwOffsetStore
/*  3769*/            OPC_CheckComplexPat, /*CP*/4, /*#*/2, // SelectAddrImmX16:$dst #3 #4
/*  3772*/            OPC_EmitMergeInputChains1_0,
/*  3773*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXV), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st v2f64:{ *:[v2f64] }:$rS, iaddrX16:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_quadwOffsetStore>> - Complexity = 413
                      // Dst: (STXV ?:{ *:[v2f64] }:$rS, memrix16:{ *:[iPTR] }:$dst)
/*  3781*/          /*Scope*/ 14, /*->3796*/
/*  3782*/            OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetStore
/*  3784*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3787*/            OPC_EmitMergeInputChains1_0,
/*  3788*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st v2f64:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_nonQuadwOffsetStore>> - Complexity = 413
                      // Dst: (STXVX ?:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  3796*/          0, /*End of Scope*/
/*  3797*/        0, /*End of Scope*/
/*  3798*/      /*Scope*/ 58, /*->3857*/
/*  3799*/        OPC_CheckChild1Type, MVT::v2i64,
/*  3801*/        OPC_RecordChild2, // #2 = $dst
/*  3802*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3804*/        OPC_CheckPredicate, 4, // Predicate_store
/*  3806*/        OPC_Scope, 14, /*->3822*/ // 3 children in Scope
/*  3808*/          OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/*  3810*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3813*/          OPC_EmitMergeInputChains1_0,
/*  3814*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVD2X), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v2i64:{ *:[v2i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                    // Dst: (STXVD2X ?:{ *:[v2i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  3822*/        /*Scope*/ 16, /*->3839*/
/*  3823*/          OPC_CheckPredicate, 5, // Predicate_quadwOffsetStore
/*  3825*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  3827*/          OPC_CheckComplexPat, /*CP*/4, /*#*/2, // SelectAddrImmX16:$dst #3 #4
/*  3830*/          OPC_EmitMergeInputChains1_0,
/*  3831*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXV), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v2i64:{ *:[v2i64] }:$rS, iaddrX16:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_quadwOffsetStore>> - Complexity = 413
                    // Dst: (STXV ?:{ *:[v2i64] }:$rS, memrix16:{ *:[iPTR] }:$dst)
/*  3839*/        /*Scope*/ 16, /*->3856*/
/*  3840*/          OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetStore
/*  3842*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  3844*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3847*/          OPC_EmitMergeInputChains1_0,
/*  3848*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v2i64:{ *:[v2i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_nonQuadwOffsetStore>> - Complexity = 413
                    // Dst: (STXVX ?:{ *:[v2i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  3856*/        0, /*End of Scope*/
/*  3857*/      /*Scope*/ 73, /*->3931*/
/*  3858*/        OPC_CheckChild1Type, MVT::v4i32,
/*  3860*/        OPC_RecordChild2, // #2 = $dst
/*  3861*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3863*/        OPC_CheckPredicate, 4, // Predicate_store
/*  3865*/        OPC_Scope, 14, /*->3881*/ // 4 children in Scope
/*  3867*/          OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/*  3869*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3872*/          OPC_EmitMergeInputChains1_0,
/*  3873*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVW4X), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v4i32:{ *:[v4i32] }:$XT, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                    // Dst: (STXVW4X ?:{ *:[v4i32] }:$XT, xoaddr:{ *:[iPTR] }:$dst)
/*  3881*/        /*Scope*/ 16, /*->3898*/
/*  3882*/          OPC_CheckPredicate, 5, // Predicate_quadwOffsetStore
/*  3884*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  3886*/          OPC_CheckComplexPat, /*CP*/4, /*#*/2, // SelectAddrImmX16:$dst #3 #4
/*  3889*/          OPC_EmitMergeInputChains1_0,
/*  3890*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXV), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v4i32:{ *:[v4i32] }:$rS, iaddrX16:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_quadwOffsetStore>> - Complexity = 413
                    // Dst: (STXV ?:{ *:[v4i32] }:$rS, memrix16:{ *:[iPTR] }:$dst)
/*  3898*/        /*Scope*/ 16, /*->3915*/
/*  3899*/          OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetStore
/*  3901*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  3903*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3906*/          OPC_EmitMergeInputChains1_0,
/*  3907*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_nonQuadwOffsetStore>> - Complexity = 413
                    // Dst: (STXVX ?:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  3915*/        /*Scope*/ 14, /*->3930*/
/*  3916*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  3918*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3921*/          OPC_EmitMergeInputChains1_0,
/*  3922*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STVX), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (st v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                    // Dst: (STVX ?:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  3930*/        0, /*End of Scope*/
/*  3931*/      /*Scope*/ 79, /*->4011*/
/*  3932*/        OPC_CheckChild1Type, MVT::v4f32,
/*  3934*/        OPC_RecordChild2, // #2 = $dst
/*  3935*/        OPC_Scope, 55, /*->3992*/ // 2 children in Scope
/*  3937*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  3939*/          OPC_CheckPredicate, 4, // Predicate_store
/*  3941*/          OPC_Scope, 16, /*->3959*/ // 3 children in Scope
/*  3943*/            OPC_CheckPredicate, 5, // Predicate_quadwOffsetStore
/*  3945*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  3947*/            OPC_CheckComplexPat, /*CP*/4, /*#*/2, // SelectAddrImmX16:$dst #3 #4
/*  3950*/            OPC_EmitMergeInputChains1_0,
/*  3951*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXV), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st v4f32:{ *:[v4f32] }:$rS, iaddrX16:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_quadwOffsetStore>> - Complexity = 413
                      // Dst: (STXV ?:{ *:[v4f32] }:$rS, memrix16:{ *:[iPTR] }:$dst)
/*  3959*/          /*Scope*/ 16, /*->3976*/
/*  3960*/            OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetStore
/*  3962*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  3964*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3967*/            OPC_EmitMergeInputChains1_0,
/*  3968*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st v4f32:{ *:[v4f32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_nonQuadwOffsetStore>> - Complexity = 413
                      // Dst: (STXVX ?:{ *:[v4f32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  3976*/          /*Scope*/ 14, /*->3991*/
/*  3977*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  3979*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  3982*/            OPC_EmitMergeInputChains1_0,
/*  3983*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFSXs), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st qsrc:{ *:[v4f32] }:$FRT, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                      // Dst: (QVSTFSXs qsrc:{ *:[v4f32] }:$FRT, xoaddr:{ *:[iPTR] }:$dst)
/*  3991*/          0, /*End of Scope*/
/*  3992*/        /*Scope*/ 17, /*->4010*/
/*  3993*/          OPC_RecordChild3, // #3 = $ptroff
/*  3994*/          OPC_CheckPredicate, 4, // Predicate_istore
/*  3996*/          OPC_CheckPredicate, 7, // Predicate_pre_store
/*  3998*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  4000*/          OPC_EmitMergeInputChains1_0,
/*  4001*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVSTFSUX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                    // Src: (ist:{ *:[iPTR] } v4f32:{ *:[v4f32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 4
                    // Dst: (QVSTFSUX:{ *:[iPTR] } ?:{ *:[v4f32] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4010*/        0, /*End of Scope*/
/*  4011*/      /*Scope*/ 11|128,1/*139*/, /*->4152*/
/*  4013*/        OPC_CheckChild1Type, MVT::f32,
/*  4015*/        OPC_RecordChild2, // #2 = $dst
/*  4016*/        OPC_Scope, 98, /*->4116*/ // 2 children in Scope
/*  4018*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  4020*/          OPC_CheckPredicate, 4, // Predicate_store
/*  4022*/          OPC_Scope, 14, /*->4038*/ // 4 children in Scope
/*  4024*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  4026*/            OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$dst #3 #4
/*  4029*/            OPC_EmitMergeInputChains1_0,
/*  4030*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf32), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st f32:{ *:[f32] }:$XT, iaddrX4:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                      // Dst: (DFSTOREf32 f32:{ *:[f32] }:$XT, iaddrX4:{ *:[iPTR] }:$dst)
/*  4038*/          /*Scope*/ 14, /*->4053*/
/*  4039*/            OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*  4041*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  4044*/            OPC_EmitMergeInputChains1_0,
/*  4045*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf32), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st f32:{ *:[f32] }:$XT, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                      // Dst: (XFSTOREf32 f32:{ *:[f32] }:$XT, xoaddr:{ *:[iPTR] }:$dst)
/*  4053*/          /*Scope*/ 30, /*->4084*/
/*  4054*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/*  4056*/            OPC_Scope, 12, /*->4070*/ // 2 children in Scope
/*  4058*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$dst #3 #4
/*  4061*/              OPC_EmitMergeInputChains1_0,
/*  4062*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STFS), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f32:{ *:[f32] }:$rS, iaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (STFS f32:{ *:[f32] }:$rS, iaddr:{ *:[iPTR] }:$dst)
/*  4070*/            /*Scope*/ 12, /*->4083*/
/*  4071*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4074*/              OPC_EmitMergeInputChains1_0,
/*  4075*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STFSX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f32:{ *:[f32] }:$frS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (STFSX f32:{ *:[f32] }:$frS, xaddr:{ *:[iPTR] }:$dst)
/*  4083*/            0, /*End of Scope*/
/*  4084*/          /*Scope*/ 30, /*->4115*/
/*  4085*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/*  4087*/            OPC_Scope, 12, /*->4101*/ // 2 children in Scope
/*  4089*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$src #3 #4
/*  4092*/              OPC_EmitMergeInputChains1_0,
/*  4093*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::SPESTW), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f32:{ *:[f32] }:$rS, iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (SPESTW f32:{ *:[f32] }:$rS, iaddr:{ *:[iPTR] }:$src)
/*  4101*/            /*Scope*/ 12, /*->4114*/
/*  4102*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4105*/              OPC_EmitMergeInputChains1_0,
/*  4106*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::SPESTWX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f32:{ *:[f32] }:$rS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (SPESTWX f32:{ *:[f32] }:$rS, xaddr:{ *:[iPTR] }:$dst)
/*  4114*/            0, /*End of Scope*/
/*  4115*/          0, /*End of Scope*/
/*  4116*/        /*Scope*/ 34, /*->4151*/
/*  4117*/          OPC_RecordChild3, // #3 = $ptroff
/*  4118*/          OPC_CheckPredicate, 4, // Predicate_istore
/*  4120*/          OPC_CheckPredicate, 7, // Predicate_pre_store
/*  4122*/          OPC_Scope, 13, /*->4137*/ // 2 children in Scope
/*  4124*/            OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4127*/            OPC_EmitMergeInputChains1_0,
/*  4128*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STFSU), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                      // Src: (ist:{ *:[iPTR] } f32:{ *:[f32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 10
                      // Dst: (STFSU:{ *:[iPTR] } ?:{ *:[f32] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4137*/          /*Scope*/ 12, /*->4150*/
/*  4138*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/*  4140*/            OPC_EmitMergeInputChains1_0,
/*  4141*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STFSUX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                      // Src: (ist:{ *:[iPTR] } f32:{ *:[f32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 4
                      // Dst: (STFSUX:{ *:[iPTR] } ?:{ *:[f32] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4150*/          0, /*End of Scope*/
/*  4151*/        0, /*End of Scope*/
/*  4152*/      /*Scope*/ 11|128,1/*139*/, /*->4293*/
/*  4154*/        OPC_CheckChild1Type, MVT::f64,
/*  4156*/        OPC_RecordChild2, // #2 = $dst
/*  4157*/        OPC_Scope, 98, /*->4257*/ // 2 children in Scope
/*  4159*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  4161*/          OPC_CheckPredicate, 4, // Predicate_store
/*  4163*/          OPC_Scope, 14, /*->4179*/ // 4 children in Scope
/*  4165*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  4167*/            OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$dst #3 #4
/*  4170*/            OPC_EmitMergeInputChains1_0,
/*  4171*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::DFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st f64:{ *:[f64] }:$XT, iaddrX4:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                      // Dst: (DFSTOREf64 f64:{ *:[f64] }:$XT, iaddrX4:{ *:[iPTR] }:$dst)
/*  4179*/          /*Scope*/ 14, /*->4194*/
/*  4180*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*  4182*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  4185*/            OPC_EmitMergeInputChains1_0,
/*  4186*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::XFSTOREf64), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 413
                      // Dst: (XFSTOREf64 f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst)
/*  4194*/          /*Scope*/ 30, /*->4225*/
/*  4195*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/*  4197*/            OPC_Scope, 12, /*->4211*/ // 2 children in Scope
/*  4199*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$dst #3 #4
/*  4202*/              OPC_EmitMergeInputChains1_0,
/*  4203*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STFD), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f64:{ *:[f64] }:$rS, iaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (STFD f64:{ *:[f64] }:$rS, iaddr:{ *:[iPTR] }:$dst)
/*  4211*/            /*Scope*/ 12, /*->4224*/
/*  4212*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4215*/              OPC_EmitMergeInputChains1_0,
/*  4216*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STFDX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f64:{ *:[f64] }:$frS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (STFDX f64:{ *:[f64] }:$frS, xaddr:{ *:[iPTR] }:$dst)
/*  4224*/            0, /*End of Scope*/
/*  4225*/          /*Scope*/ 30, /*->4256*/
/*  4226*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/*  4228*/            OPC_Scope, 12, /*->4242*/ // 2 children in Scope
/*  4230*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$dst #3 #4
/*  4233*/              OPC_EmitMergeInputChains1_0,
/*  4234*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::EVSTDD), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f64:{ *:[f64] }:$RT, iaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (EVSTDD f64:{ *:[f64] }:$RT, iaddr:{ *:[iPTR] }:$dst)
/*  4242*/            /*Scope*/ 12, /*->4255*/
/*  4243*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4246*/              OPC_EmitMergeInputChains1_0,
/*  4247*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::EVSTDDX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st f64:{ *:[f64] }:$RT, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (EVSTDDX f64:{ *:[f64] }:$RT, xaddr:{ *:[iPTR] }:$dst)
/*  4255*/            0, /*End of Scope*/
/*  4256*/          0, /*End of Scope*/
/*  4257*/        /*Scope*/ 34, /*->4292*/
/*  4258*/          OPC_RecordChild3, // #3 = $ptroff
/*  4259*/          OPC_CheckPredicate, 4, // Predicate_istore
/*  4261*/          OPC_CheckPredicate, 7, // Predicate_pre_store
/*  4263*/          OPC_Scope, 13, /*->4278*/ // 2 children in Scope
/*  4265*/            OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4268*/            OPC_EmitMergeInputChains1_0,
/*  4269*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STFDU), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                      // Src: (ist:{ *:[iPTR] } f64:{ *:[f64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 10
                      // Dst: (STFDU:{ *:[iPTR] } ?:{ *:[f64] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4278*/          /*Scope*/ 12, /*->4291*/
/*  4279*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/*  4281*/            OPC_EmitMergeInputChains1_0,
/*  4282*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STFDUX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                      // Src: (ist:{ *:[iPTR] } f64:{ *:[f64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 4
                      // Dst: (STFDUX:{ *:[iPTR] } ?:{ *:[f64] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4291*/          0, /*End of Scope*/
/*  4292*/        0, /*End of Scope*/
/*  4293*/      /*Scope*/ 65, /*->4359*/
/*  4294*/        OPC_CheckChild1Type, MVT::f128,
/*  4296*/        OPC_RecordChild2, // #2 = $dst
/*  4297*/        OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  4299*/        OPC_CheckPredicate, 4, // Predicate_store
/*  4301*/        OPC_Scope, 27, /*->4330*/ // 2 children in Scope
/*  4303*/          OPC_CheckPredicate, 5, // Predicate_quadwOffsetStore
/*  4305*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  4307*/          OPC_CheckComplexPat, /*CP*/4, /*#*/2, // SelectAddrImmX16:$dst #3 #4
/*  4310*/          OPC_EmitMergeInputChains1_0,
/*  4311*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  4314*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*  4322*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXV), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 6, 3, 4, 
                    // Src: (st f128:{ *:[f128] }:$rS, iaddrX16:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_quadwOffsetStore>> - Complexity = 413
                    // Dst: (STXV (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f128] }:$rS, VSRC:{ *:[i32] }), memrix16:{ *:[iPTR] }:$dst)
/*  4330*/        /*Scope*/ 27, /*->4358*/
/*  4331*/          OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetStore
/*  4333*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  4335*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  4338*/          OPC_EmitMergeInputChains1_0,
/*  4339*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  4342*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*  4350*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain|OPFL_MemRefs,
                        3/*#Ops*/, 6, 3, 4, 
                    // Src: (st f128:{ *:[f128] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_nonQuadwOffsetStore>> - Complexity = 413
                    // Dst: (STXVX (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f128] }:$rS, VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  4358*/        0, /*End of Scope*/
/*  4359*/      /*Scope*/ 91|128,1/*219*/, /*->4580*/
/*  4361*/        OPC_CheckChild1Type, MVT::i32,
/*  4363*/        OPC_RecordChild2, // #2 = $dst
/*  4364*/        OPC_Scope, 104, /*->4470*/ // 2 children in Scope
/*  4366*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  4368*/          OPC_Scope, 34, /*->4404*/ // 4 children in Scope
/*  4370*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  4372*/            OPC_Scope, 14, /*->4388*/ // 2 children in Scope
/*  4374*/              OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  4376*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$dst #3 #4
/*  4379*/              OPC_EmitMergeInputChains1_0,
/*  4380*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STB), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i32:{ *:[i32] }:$rS, iaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 13
                        // Dst: (STB i32:{ *:[i32] }:$rS, iaddr:{ *:[iPTR] }:$dst)
/*  4388*/            /*Scope*/ 14, /*->4403*/
/*  4389*/              OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  4391*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$dst #3 #4
/*  4394*/              OPC_EmitMergeInputChains1_0,
/*  4395*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STH), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i32:{ *:[i32] }:$rS, iaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 13
                        // Dst: (STH i32:{ *:[i32] }:$rS, iaddr:{ *:[iPTR] }:$dst)
/*  4403*/            0, /*End of Scope*/
/*  4404*/          /*Scope*/ 14, /*->4419*/
/*  4405*/            OPC_CheckPredicate, 4, // Predicate_store
/*  4407*/            OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$dst #3 #4
/*  4410*/            OPC_EmitMergeInputChains1_0,
/*  4411*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STW), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st i32:{ *:[i32] }:$rS, iaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                      // Dst: (STW i32:{ *:[i32] }:$rS, iaddr:{ *:[iPTR] }:$dst)
/*  4419*/          /*Scope*/ 34, /*->4454*/
/*  4420*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  4422*/            OPC_Scope, 14, /*->4438*/ // 2 children in Scope
/*  4424*/              OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  4426*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4429*/              OPC_EmitMergeInputChains1_0,
/*  4430*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STBX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i32:{ *:[i32] }:$rS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 13
                        // Dst: (STBX i32:{ *:[i32] }:$rS, xaddr:{ *:[iPTR] }:$dst)
/*  4438*/            /*Scope*/ 14, /*->4453*/
/*  4439*/              OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  4441*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4444*/              OPC_EmitMergeInputChains1_0,
/*  4445*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STHX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i32:{ *:[i32] }:$rS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 13
                        // Dst: (STHX i32:{ *:[i32] }:$rS, xaddr:{ *:[iPTR] }:$dst)
/*  4453*/            0, /*End of Scope*/
/*  4454*/          /*Scope*/ 14, /*->4469*/
/*  4455*/            OPC_CheckPredicate, 4, // Predicate_store
/*  4457*/            OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4460*/            OPC_EmitMergeInputChains1_0,
/*  4461*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STWX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st i32:{ *:[i32] }:$rS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                      // Dst: (STWX i32:{ *:[i32] }:$rS, xaddr:{ *:[iPTR] }:$dst)
/*  4469*/          0, /*End of Scope*/
/*  4470*/        /*Scope*/ 108, /*->4579*/
/*  4471*/          OPC_RecordChild3, // #3 = $ptroff
/*  4472*/          OPC_Scope, 38, /*->4512*/ // 4 children in Scope
/*  4474*/            OPC_CheckPredicate, 1, // Predicate_itruncstore
/*  4476*/            OPC_CheckPredicate, 7, // Predicate_pre_truncst
/*  4478*/            OPC_Scope, 15, /*->4495*/ // 2 children in Scope
/*  4480*/              OPC_CheckPredicate, 2, // Predicate_pre_truncsti8
/*  4482*/              OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4485*/              OPC_EmitMergeInputChains1_0,
/*  4486*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STBU), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                        // Src: (ist:{ *:[iPTR] } i32:{ *:[i32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti8>> - Complexity = 10
                        // Dst: (STBU:{ *:[iPTR] } ?:{ *:[i32] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4495*/            /*Scope*/ 15, /*->4511*/
/*  4496*/              OPC_CheckPredicate, 3, // Predicate_pre_truncsti16
/*  4498*/              OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4501*/              OPC_EmitMergeInputChains1_0,
/*  4502*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STHU), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                        // Src: (ist:{ *:[iPTR] } i32:{ *:[i32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti16>> - Complexity = 10
                        // Dst: (STHU:{ *:[iPTR] } ?:{ *:[i32] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4511*/            0, /*End of Scope*/
/*  4512*/          /*Scope*/ 17, /*->4530*/
/*  4513*/            OPC_CheckPredicate, 4, // Predicate_istore
/*  4515*/            OPC_CheckPredicate, 7, // Predicate_pre_store
/*  4517*/            OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4520*/            OPC_EmitMergeInputChains1_0,
/*  4521*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STWU), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                      // Src: (ist:{ *:[iPTR] } i32:{ *:[i32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 10
                      // Dst: (STWU:{ *:[iPTR] } ?:{ *:[i32] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4530*/          /*Scope*/ 32, /*->4563*/
/*  4531*/            OPC_CheckPredicate, 1, // Predicate_itruncstore
/*  4533*/            OPC_CheckPredicate, 7, // Predicate_pre_truncst
/*  4535*/            OPC_Scope, 12, /*->4549*/ // 2 children in Scope
/*  4537*/              OPC_CheckPredicate, 2, // Predicate_pre_truncsti8
/*  4539*/              OPC_EmitMergeInputChains1_0,
/*  4540*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STBUX), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                        // Src: (ist:{ *:[iPTR] } i32:{ *:[i32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti8>> - Complexity = 4
                        // Dst: (STBUX:{ *:[iPTR] } ?:{ *:[i32] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4549*/            /*Scope*/ 12, /*->4562*/
/*  4550*/              OPC_CheckPredicate, 3, // Predicate_pre_truncsti16
/*  4552*/              OPC_EmitMergeInputChains1_0,
/*  4553*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STHUX), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                        // Src: (ist:{ *:[iPTR] } i32:{ *:[i32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti16>> - Complexity = 4
                        // Dst: (STHUX:{ *:[iPTR] } ?:{ *:[i32] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4562*/            0, /*End of Scope*/
/*  4563*/          /*Scope*/ 14, /*->4578*/
/*  4564*/            OPC_CheckPredicate, 4, // Predicate_istore
/*  4566*/            OPC_CheckPredicate, 7, // Predicate_pre_store
/*  4568*/            OPC_EmitMergeInputChains1_0,
/*  4569*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STWUX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                      // Src: (ist:{ *:[iPTR] } i32:{ *:[i32] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 4
                      // Dst: (STWUX:{ *:[iPTR] } ?:{ *:[i32] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4578*/          0, /*End of Scope*/
/*  4579*/        0, /*End of Scope*/
/*  4580*/      /*Scope*/ 39|128,2/*295*/, /*->4877*/
/*  4582*/        OPC_CheckChild1Type, MVT::i64,
/*  4584*/        OPC_RecordChild2, // #2 = $src
/*  4585*/        OPC_Scope, 19|128,1/*147*/, /*->4735*/ // 2 children in Scope
/*  4588*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  4590*/          OPC_Scope, 94, /*->4686*/ // 2 children in Scope
/*  4592*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  4594*/            OPC_Scope, 14, /*->4610*/ // 6 children in Scope
/*  4596*/              OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  4598*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$src #3 #4
/*  4601*/              OPC_EmitMergeInputChains1_0,
/*  4602*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STB8), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 13
                        // Dst: (STB8 i64:{ *:[i64] }:$rS, iaddr:{ *:[iPTR] }:$src)
/*  4610*/            /*Scope*/ 14, /*->4625*/
/*  4611*/              OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  4613*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$src #3 #4
/*  4616*/              OPC_EmitMergeInputChains1_0,
/*  4617*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STH8), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 13
                        // Dst: (STH8 i64:{ *:[i64] }:$rS, iaddr:{ *:[iPTR] }:$src)
/*  4625*/            /*Scope*/ 14, /*->4640*/
/*  4626*/              OPC_CheckPredicate, 8, // Predicate_truncstorei32
/*  4628*/              OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$src #3 #4
/*  4631*/              OPC_EmitMergeInputChains1_0,
/*  4632*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STW8), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei32>> - Complexity = 13
                        // Dst: (STW8 i64:{ *:[i64] }:$rS, iaddr:{ *:[iPTR] }:$src)
/*  4640*/            /*Scope*/ 14, /*->4655*/
/*  4641*/              OPC_CheckPredicate, 2, // Predicate_truncstorei8
/*  4643*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4646*/              OPC_EmitMergeInputChains1_0,
/*  4647*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STBX8), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei8>> - Complexity = 13
                        // Dst: (STBX8 i64:{ *:[i64] }:$rS, xaddr:{ *:[iPTR] }:$dst)
/*  4655*/            /*Scope*/ 14, /*->4670*/
/*  4656*/              OPC_CheckPredicate, 3, // Predicate_truncstorei16
/*  4658*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4661*/              OPC_EmitMergeInputChains1_0,
/*  4662*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STHX8), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei16>> - Complexity = 13
                        // Dst: (STHX8 i64:{ *:[i64] }:$rS, xaddr:{ *:[iPTR] }:$dst)
/*  4670*/            /*Scope*/ 14, /*->4685*/
/*  4671*/              OPC_CheckPredicate, 8, // Predicate_truncstorei32
/*  4673*/              OPC_CheckComplexPat, /*CP*/6, /*#*/2, // SelectAddrIdx:$dst #3 #4
/*  4676*/              OPC_EmitMergeInputChains1_0,
/*  4677*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STWX8), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, xaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorei32>> - Complexity = 13
                        // Dst: (STWX8 i64:{ *:[i64] }:$rS, xaddr:{ *:[iPTR] }:$dst)
/*  4685*/            0, /*End of Scope*/
/*  4686*/          /*Scope*/ 47, /*->4734*/
/*  4687*/            OPC_CheckPredicate, 4, // Predicate_store
/*  4689*/            OPC_Scope, 14, /*->4705*/ // 3 children in Scope
/*  4691*/              OPC_CheckPredicate, 9, // Predicate_aligned4store
/*  4693*/              OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$dst #3 #4
/*  4696*/              OPC_EmitMergeInputChains1_0,
/*  4697*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STD), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, iaddrX4:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_aligned4store>> - Complexity = 13
                        // Dst: (STD i64:{ *:[i64] }:$rS, iaddrX4:{ *:[iPTR] }:$dst)
/*  4705*/            /*Scope*/ 12, /*->4718*/
/*  4706*/              OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$dst #3 #4
/*  4709*/              OPC_EmitMergeInputChains1_0,
/*  4710*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STDX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, xaddrX4:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                        // Dst: (STDX i64:{ *:[i64] }:$rS, xaddrX4:{ *:[iPTR] }:$dst)
/*  4718*/            /*Scope*/ 14, /*->4733*/
/*  4719*/              OPC_CheckPredicate, 10, // Predicate_unaligned4store
/*  4721*/              OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  4724*/              OPC_EmitMergeInputChains1_0,
/*  4725*/              OPC_MorphNodeTo0, TARGET_VAL(PPC::STDX), 0|OPFL_Chain|OPFL_MemRefs,
                            3/*#Ops*/, 1, 3, 4, 
                        // Src: (st i64:{ *:[i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>><<P:Predicate_unaligned4store>> - Complexity = 13
                        // Dst: (STDX ?:{ *:[i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  4733*/            0, /*End of Scope*/
/*  4734*/          0, /*End of Scope*/
/*  4735*/        /*Scope*/ 11|128,1/*139*/, /*->4876*/
/*  4737*/          OPC_RecordChild3, // #3 = $ptroff
/*  4738*/          OPC_Scope, 54, /*->4794*/ // 4 children in Scope
/*  4740*/            OPC_CheckPredicate, 1, // Predicate_itruncstore
/*  4742*/            OPC_CheckPredicate, 7, // Predicate_pre_truncst
/*  4744*/            OPC_Scope, 15, /*->4761*/ // 3 children in Scope
/*  4746*/              OPC_CheckPredicate, 2, // Predicate_pre_truncsti8
/*  4748*/              OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4751*/              OPC_EmitMergeInputChains1_0,
/*  4752*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STBU8), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                        // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti8>> - Complexity = 10
                        // Dst: (STBU8:{ *:[iPTR] } ?:{ *:[i64] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4761*/            /*Scope*/ 15, /*->4777*/
/*  4762*/              OPC_CheckPredicate, 3, // Predicate_pre_truncsti16
/*  4764*/              OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4767*/              OPC_EmitMergeInputChains1_0,
/*  4768*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STHU8), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                        // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti16>> - Complexity = 10
                        // Dst: (STHU8:{ *:[iPTR] } ?:{ *:[i64] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4777*/            /*Scope*/ 15, /*->4793*/
/*  4778*/              OPC_CheckPredicate, 8, // Predicate_pre_truncsti32
/*  4780*/              OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4783*/              OPC_EmitMergeInputChains1_0,
/*  4784*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STWU8), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                        // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti32>> - Complexity = 10
                        // Dst: (STWU8:{ *:[iPTR] } ?:{ *:[i64] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4793*/            0, /*End of Scope*/
/*  4794*/          /*Scope*/ 19, /*->4814*/
/*  4795*/            OPC_CheckPredicate, 4, // Predicate_istore
/*  4797*/            OPC_CheckPredicate, 7, // Predicate_pre_store
/*  4799*/            OPC_CheckPredicate, 9, // Predicate_aligned4pre_store
/*  4801*/            OPC_CheckComplexPat, /*CP*/7, /*#*/3, // SelectAddrImmOffs:$ptroff #4
/*  4804*/            OPC_EmitMergeInputChains1_0,
/*  4805*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STDU), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 4, 2, 
                      // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iaddroff:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>><<P:Predicate_aligned4pre_store>> - Complexity = 10
                      // Dst: (STDU:{ *:[iPTR] } ?:{ *:[i64] }:$rS, iaddroff:{ *:[iPTR] }:$ptroff, ?:{ *:[iPTR] }:$ptrreg)
/*  4814*/          /*Scope*/ 45, /*->4860*/
/*  4815*/            OPC_CheckPredicate, 1, // Predicate_itruncstore
/*  4817*/            OPC_CheckPredicate, 7, // Predicate_pre_truncst
/*  4819*/            OPC_Scope, 12, /*->4833*/ // 3 children in Scope
/*  4821*/              OPC_CheckPredicate, 2, // Predicate_pre_truncsti8
/*  4823*/              OPC_EmitMergeInputChains1_0,
/*  4824*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STBUX8), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                        // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti8>> - Complexity = 4
                        // Dst: (STBUX8:{ *:[iPTR] } ?:{ *:[i64] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4833*/            /*Scope*/ 12, /*->4846*/
/*  4834*/              OPC_CheckPredicate, 3, // Predicate_pre_truncsti16
/*  4836*/              OPC_EmitMergeInputChains1_0,
/*  4837*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STHUX8), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                        // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti16>> - Complexity = 4
                        // Dst: (STHUX8:{ *:[iPTR] } ?:{ *:[i64] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4846*/            /*Scope*/ 12, /*->4859*/
/*  4847*/              OPC_CheckPredicate, 8, // Predicate_pre_truncsti32
/*  4849*/              OPC_EmitMergeInputChains1_0,
/*  4850*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::STWUX8), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                        // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncsti32>> - Complexity = 4
                        // Dst: (STWUX8:{ *:[iPTR] } ?:{ *:[i64] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4859*/            0, /*End of Scope*/
/*  4860*/          /*Scope*/ 14, /*->4875*/
/*  4861*/            OPC_CheckPredicate, 4, // Predicate_istore
/*  4863*/            OPC_CheckPredicate, 7, // Predicate_pre_store
/*  4865*/            OPC_EmitMergeInputChains1_0,
/*  4866*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::STDUX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                      // Src: (ist:{ *:[iPTR] } i64:{ *:[i64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 4
                      // Dst: (STDUX:{ *:[iPTR] } ?:{ *:[i64] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4875*/          0, /*End of Scope*/
/*  4876*/        0, /*End of Scope*/
/*  4877*/      /*Scope*/ 86, /*->4964*/
/*  4878*/        OPC_CheckChild1Type, MVT::v4f64,
/*  4880*/        OPC_RecordChild2, // #2 = $dst
/*  4881*/        OPC_Scope, 40, /*->4923*/ // 2 children in Scope
/*  4883*/          OPC_CheckPredicate, 0, // Predicate_unindexedstore
/*  4885*/          OPC_Scope, 16, /*->4903*/ // 2 children in Scope
/*  4887*/            OPC_CheckPredicate, 4, // Predicate_store
/*  4889*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  4891*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  4894*/            OPC_EmitMergeInputChains1_0,
/*  4895*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFDX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st qfrc:{ *:[v4f64] }:$FRT, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_store>> - Complexity = 13
                      // Dst: (QVSTFDX qfrc:{ *:[v4f64] }:$FRT, xoaddr:{ *:[iPTR] }:$dst)
/*  4903*/          /*Scope*/ 18, /*->4922*/
/*  4904*/            OPC_CheckPredicate, 1, // Predicate_truncstore
/*  4906*/            OPC_CheckPredicate, 11, // Predicate_truncstorev4f32
/*  4908*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  4910*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  4913*/            OPC_EmitMergeInputChains1_0,
/*  4914*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFSX), 0|OPFL_Chain|OPFL_MemRefs,
                          3/*#Ops*/, 1, 3, 4, 
                      // Src: (st qfrc:{ *:[v4f64] }:$FRT, xoaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedstore>><<P:Predicate_truncstore>><<P:Predicate_truncstorev4f32>> - Complexity = 13
                      // Dst: (QVSTFSX qfrc:{ *:[v4f64] }:$FRT, xoaddr:{ *:[iPTR] }:$dst)
/*  4922*/          0, /*End of Scope*/
/*  4923*/        /*Scope*/ 39, /*->4963*/
/*  4924*/          OPC_RecordChild3, // #3 = $ptroff
/*  4925*/          OPC_Scope, 16, /*->4943*/ // 2 children in Scope
/*  4927*/            OPC_CheckPredicate, 4, // Predicate_istore
/*  4929*/            OPC_CheckPredicate, 7, // Predicate_pre_store
/*  4931*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  4933*/            OPC_EmitMergeInputChains1_0,
/*  4934*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVSTFDUX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                      // Src: (ist:{ *:[iPTR] } v4f64:{ *:[v4f64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_istore>><<P:Predicate_pre_store>> - Complexity = 4
                      // Dst: (QVSTFDUX:{ *:[iPTR] } ?:{ *:[v4f64] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4943*/          /*Scope*/ 18, /*->4962*/
/*  4944*/            OPC_CheckPredicate, 1, // Predicate_itruncstore
/*  4946*/            OPC_CheckPredicate, 7, // Predicate_pre_truncst
/*  4948*/            OPC_CheckPredicate, 11, // Predicate_pre_truncstv4f32
/*  4950*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  4952*/            OPC_EmitMergeInputChains1_0,
/*  4953*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVSTFSUXs), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::iPTR, 3/*#Ops*/, 1, 2, 3, 
                      // Src: (ist:{ *:[iPTR] } v4f64:{ *:[v4f64] }:$rS, iPTR:{ *:[iPTR] }:$ptrreg, iPTR:{ *:[iPTR] }:$ptroff)<<P:Predicate_itruncstore>><<P:Predicate_pre_truncst>><<P:Predicate_pre_truncstv4f32>> - Complexity = 4
                      // Dst: (QVSTFSUXs:{ *:[iPTR] } ?:{ *:[v4f64] }:$rS, ?:{ *:[iPTR] }:$ptrreg, ?:{ *:[iPTR] }:$ptroff)
/*  4962*/          0, /*End of Scope*/
/*  4963*/        0, /*End of Scope*/
/*  4964*/      0, /*End of Scope*/
/*  4965*/    0, /*End of Scope*/
/*  4966*/  /*SwitchOpcode*/ 44|128,5/*684*/, TARGET_VAL(PPCISD::ST_VSR_SCAL_INT),// ->5654
/*  4970*/    OPC_RecordNode, // #0 = 'PPCstore_scal_int_from_vsr' chained node
/*  4971*/    OPC_MoveChild1,
/*  4972*/    OPC_SwitchOpcode /*2 cases */, 80|128,2/*336*/, TARGET_VAL(PPCISD::FP_TO_SINT_IN_VSR),// ->5313
/*  4977*/      OPC_RecordChild0, // #1 = $src
/*  4978*/      OPC_Scope, 21|128,1/*149*/, /*->5130*/ // 2 children in Scope
/*  4981*/        OPC_CheckChild0Type, MVT::f64,
/*  4983*/        OPC_MoveParent,
/*  4984*/        OPC_RecordChild2, // #2 = $dst
/*  4985*/        OPC_Scope, 23, /*->5010*/ // 4 children in Scope
/*  4987*/          OPC_CheckChild3Integer, 4, 
/*  4989*/          OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*  4991*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  4994*/          OPC_EmitMergeInputChains1_0,
/*  4995*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXWS), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5002*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain,
                        3/*#Ops*/, 5, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 4:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STIWX (XSCVDPSXWS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5010*/        /*Scope*/ 70, /*->5081*/
/*  5011*/          OPC_CheckChild3Integer, 8, 
/*  5013*/          OPC_Scope, 21, /*->5036*/ // 3 children in Scope
/*  5015*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5017*/            OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$dst #3 #4
/*  5020*/            OPC_EmitMergeInputChains1_0,
/*  5021*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                          MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5028*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSD), 0|OPFL_Chain,
                          3/*#Ops*/, 5, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), iaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSD (XSCVDPSXDS:{ *:[f64] } f64:{ *:[f64] }:$src), iaddrX4:{ *:[iPTR] }:$dst)
/*  5036*/          /*Scope*/ 21, /*->5058*/
/*  5037*/            OPC_CheckPatternPredicate, 14, // (!PPCSubTarget->hasP9Vector())
/*  5039*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5042*/            OPC_EmitMergeInputChains1_0,
/*  5043*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                          MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5050*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSDX), 0|OPFL_Chain,
                          3/*#Ops*/, 5, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSDX (XSCVDPSXDS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5058*/          /*Scope*/ 21, /*->5080*/
/*  5059*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5061*/            OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$dst #3 #4
/*  5064*/            OPC_EmitMergeInputChains1_0,
/*  5065*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                          MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5072*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSDX), 0|OPFL_Chain,
                          3/*#Ops*/, 5, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSDX (XSCVDPSXDS:{ *:[f64] } f64:{ *:[f64] }:$src), xaddrX4:{ *:[iPTR] }:$dst)
/*  5080*/          0, /*End of Scope*/
/*  5081*/        /*Scope*/ 23, /*->5105*/
/*  5082*/          OPC_CheckChild3Integer, 2, 
/*  5084*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5086*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5089*/          OPC_EmitMergeInputChains1_0,
/*  5090*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXWS), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5097*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHX), 0|OPFL_Chain,
                        3/*#Ops*/, 5, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 2:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIHX (XSCVDPSXWS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5105*/        /*Scope*/ 23, /*->5129*/
/*  5106*/          OPC_CheckChild3Integer, 1, 
/*  5108*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5110*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5113*/          OPC_EmitMergeInputChains1_0,
/*  5114*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXWS), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5121*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBX), 0|OPFL_Chain,
                        3/*#Ops*/, 5, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 1:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIBX (XSCVDPSXWS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5129*/        0, /*End of Scope*/
/*  5130*/      /*Scope*/ 52|128,1/*180*/, /*->5312*/
/*  5132*/        OPC_CheckChild0Type, MVT::f128,
/*  5134*/        OPC_MoveParent,
/*  5135*/        OPC_RecordChild2, // #2 = $dst
/*  5136*/        OPC_Scope, 68, /*->5206*/ // 4 children in Scope
/*  5138*/          OPC_CheckChild3Integer, 8, 
/*  5140*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5142*/          OPC_Scope, 30, /*->5174*/ // 2 children in Scope
/*  5144*/            OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$dst #3 #4
/*  5147*/            OPC_EmitMergeInputChains1_0,
/*  5148*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPSDZ), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5155*/            OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5158*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5166*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSD), 0|OPFL_Chain,
                          3/*#Ops*/, 7, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), iaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSD (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPSDZ:{ *:[f128] } f128:{ *:[f128] }:$src), VFRC:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$dst)
/*  5174*/          /*Scope*/ 30, /*->5205*/
/*  5175*/            OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$dst #3 #4
/*  5178*/            OPC_EmitMergeInputChains1_0,
/*  5179*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPSDZ), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5186*/            OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5189*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5197*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSDX), 0|OPFL_Chain,
                          3/*#Ops*/, 7, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSDX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPSDZ:{ *:[f128] } f128:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$dst)
/*  5205*/          0, /*End of Scope*/
/*  5206*/        /*Scope*/ 34, /*->5241*/
/*  5207*/          OPC_CheckChild3Integer, 4, 
/*  5209*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5211*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5214*/          OPC_EmitMergeInputChains1_0,
/*  5215*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPSWZ), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5222*/          OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5225*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5233*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIWX), 0|OPFL_Chain,
                        3/*#Ops*/, 7, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xoaddr:{ *:[iPTR] }:$dst, 4:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIWX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPSWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  5241*/        /*Scope*/ 34, /*->5276*/
/*  5242*/          OPC_CheckChild3Integer, 2, 
/*  5244*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5246*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5249*/          OPC_EmitMergeInputChains1_0,
/*  5250*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPSWZ), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5257*/          OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5260*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5268*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHX), 0|OPFL_Chain,
                        3/*#Ops*/, 7, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xoaddr:{ *:[iPTR] }:$dst, 2:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIHX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPSWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  5276*/        /*Scope*/ 34, /*->5311*/
/*  5277*/          OPC_CheckChild3Integer, 1, 
/*  5279*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5281*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5284*/          OPC_EmitMergeInputChains1_0,
/*  5285*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPSWZ), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5292*/          OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5295*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5303*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBX), 0|OPFL_Chain,
                        3/*#Ops*/, 7, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_sint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xoaddr:{ *:[iPTR] }:$dst, 1:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIBX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPSWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  5311*/        0, /*End of Scope*/
/*  5312*/      0, /*End of Scope*/
/*  5313*/    /*SwitchOpcode*/ 80|128,2/*336*/, TARGET_VAL(PPCISD::FP_TO_UINT_IN_VSR),// ->5653
/*  5317*/      OPC_RecordChild0, // #1 = $src
/*  5318*/      OPC_Scope, 21|128,1/*149*/, /*->5470*/ // 2 children in Scope
/*  5321*/        OPC_CheckChild0Type, MVT::f64,
/*  5323*/        OPC_MoveParent,
/*  5324*/        OPC_RecordChild2, // #2 = $dst
/*  5325*/        OPC_Scope, 23, /*->5350*/ // 4 children in Scope
/*  5327*/          OPC_CheckChild3Integer, 4, 
/*  5329*/          OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*  5331*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5334*/          OPC_EmitMergeInputChains1_0,
/*  5335*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXWS), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5342*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain,
                        3/*#Ops*/, 5, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 4:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STIWX (XSCVDPUXWS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5350*/        /*Scope*/ 70, /*->5421*/
/*  5351*/          OPC_CheckChild3Integer, 8, 
/*  5353*/          OPC_Scope, 21, /*->5376*/ // 3 children in Scope
/*  5355*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5357*/            OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$dst #3 #4
/*  5360*/            OPC_EmitMergeInputChains1_0,
/*  5361*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                          MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5368*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSD), 0|OPFL_Chain,
                          3/*#Ops*/, 5, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), iaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSD (XSCVDPUXDS:{ *:[f64] } f64:{ *:[f64] }:$src), iaddrX4:{ *:[iPTR] }:$dst)
/*  5376*/          /*Scope*/ 21, /*->5398*/
/*  5377*/            OPC_CheckPatternPredicate, 14, // (!PPCSubTarget->hasP9Vector())
/*  5379*/            OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5382*/            OPC_EmitMergeInputChains1_0,
/*  5383*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                          MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5390*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSDX), 0|OPFL_Chain,
                          3/*#Ops*/, 5, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSDX (XSCVDPUXDS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5398*/          /*Scope*/ 21, /*->5420*/
/*  5399*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5401*/            OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$dst #3 #4
/*  5404*/            OPC_EmitMergeInputChains1_0,
/*  5405*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                          MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5412*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSDX), 0|OPFL_Chain,
                          3/*#Ops*/, 5, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSDX (XSCVDPUXDS:{ *:[f64] } f64:{ *:[f64] }:$src), xaddrX4:{ *:[iPTR] }:$dst)
/*  5420*/          0, /*End of Scope*/
/*  5421*/        /*Scope*/ 23, /*->5445*/
/*  5422*/          OPC_CheckChild3Integer, 2, 
/*  5424*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5426*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5429*/          OPC_EmitMergeInputChains1_0,
/*  5430*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXWS), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5437*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHX), 0|OPFL_Chain,
                        3/*#Ops*/, 5, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 2:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIHX (XSCVDPUXWS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5445*/        /*Scope*/ 23, /*->5469*/
/*  5446*/          OPC_CheckChild3Integer, 1, 
/*  5448*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5450*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5453*/          OPC_EmitMergeInputChains1_0,
/*  5454*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXWS), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*  5461*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBX), 0|OPFL_Chain,
                        3/*#Ops*/, 5, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst, 1:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIBX (XSCVDPUXWS:{ *:[f64] } f64:{ *:[f64] }:$src), xoaddr:{ *:[iPTR] }:$dst)
/*  5469*/        0, /*End of Scope*/
/*  5470*/      /*Scope*/ 52|128,1/*180*/, /*->5652*/
/*  5472*/        OPC_CheckChild0Type, MVT::f128,
/*  5474*/        OPC_MoveParent,
/*  5475*/        OPC_RecordChild2, // #2 = $dst
/*  5476*/        OPC_Scope, 68, /*->5546*/ // 4 children in Scope
/*  5478*/          OPC_CheckChild3Integer, 8, 
/*  5480*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5482*/          OPC_Scope, 30, /*->5514*/ // 2 children in Scope
/*  5484*/            OPC_CheckComplexPat, /*CP*/1, /*#*/2, // SelectAddrImmX4:$dst #3 #4
/*  5487*/            OPC_EmitMergeInputChains1_0,
/*  5488*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPUDZ), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5495*/            OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5498*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5506*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSD), 0|OPFL_Chain,
                          3/*#Ops*/, 7, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), iaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSD (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPUDZ:{ *:[f128] } f128:{ *:[f128] }:$src), VFRC:{ *:[i32] }), iaddrX4:{ *:[iPTR] }:$dst)
/*  5514*/          /*Scope*/ 30, /*->5545*/
/*  5515*/            OPC_CheckComplexPat, /*CP*/2, /*#*/2, // SelectAddrIdxX4:$dst #3 #4
/*  5518*/            OPC_EmitMergeInputChains1_0,
/*  5519*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPUDZ), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5526*/            OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5529*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5537*/            OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSDX), 0|OPFL_Chain,
                          3/*#Ops*/, 7, 3, 4, 
                      // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xaddrX4:{ *:[iPTR] }:$dst, 8:{ *:[iPTR] }) - Complexity = 420
                      // Dst: (STXSDX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPUDZ:{ *:[f128] } f128:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xaddrX4:{ *:[iPTR] }:$dst)
/*  5545*/          0, /*End of Scope*/
/*  5546*/        /*Scope*/ 34, /*->5581*/
/*  5547*/          OPC_CheckChild3Integer, 4, 
/*  5549*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5551*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5554*/          OPC_EmitMergeInputChains1_0,
/*  5555*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPUWZ), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5562*/          OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5565*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5573*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIWX), 0|OPFL_Chain,
                        3/*#Ops*/, 7, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xoaddr:{ *:[iPTR] }:$dst, 4:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIWX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPUWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  5581*/        /*Scope*/ 34, /*->5616*/
/*  5582*/          OPC_CheckChild3Integer, 2, 
/*  5584*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5586*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5589*/          OPC_EmitMergeInputChains1_0,
/*  5590*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPUWZ), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5597*/          OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5600*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5608*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHX), 0|OPFL_Chain,
                        3/*#Ops*/, 7, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xoaddr:{ *:[iPTR] }:$dst, 2:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIHX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPUWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  5616*/        /*Scope*/ 34, /*->5651*/
/*  5617*/          OPC_CheckChild3Integer, 1, 
/*  5619*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5621*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5624*/          OPC_EmitMergeInputChains1_0,
/*  5625*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPUWZ), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 1,  // Results = #5
/*  5632*/          OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/*  5635*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 5, 6,  // Results = #7
/*  5643*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBX), 0|OPFL_Chain,
                        3/*#Ops*/, 7, 3, 4, 
                    // Src: (PPCstore_scal_int_from_vsr (PPCcv_fp_to_uint_in_vsr:{ *:[f64] } f128:{ *:[f128] }:$src), xoaddr:{ *:[iPTR] }:$dst, 1:{ *:[iPTR] }) - Complexity = 420
                    // Dst: (STXSIBX (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPUWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  5651*/        0, /*End of Scope*/
/*  5652*/      0, /*End of Scope*/
/*  5653*/    0, // EndSwitchOpcode
/*  5654*/  /*SwitchOpcode*/ 25|128,8/*1049*/, TARGET_VAL(ISD::INTRINSIC_VOID),// ->6707
/*  5658*/    OPC_RecordNode, // #0 = 'intrinsic_void' chained node
/*  5659*/    OPC_Scope, 53, /*->5714*/ // 43 children in Scope
/*  5661*/      OPC_CheckChild1Integer, 31|128,43/*5535*/, 
/*  5664*/      OPC_RecordChild2, // #1 = $rS
/*  5665*/      OPC_RecordChild3, // #2 = $dst
/*  5666*/      OPC_Scope, 14, /*->5682*/ // 2 children in Scope
/*  5668*/        OPC_CheckPatternPredicate, 15, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX())
/*  5670*/        OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5673*/        OPC_EmitMergeInputChains1_0,
/*  5674*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVD2X), 0|OPFL_Chain,
                      3/*#Ops*/, 1, 3, 4, 
                  // Src: (intrinsic_void 5535:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 417
                  // Dst: (STXVD2X ?:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  5682*/      /*Scope*/ 30, /*->5713*/
/*  5683*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5685*/        OPC_Scope, 12, /*->5699*/ // 2 children in Scope
/*  5687*/          OPC_CheckComplexPat, /*CP*/4, /*#*/2, // SelectAddrImmX16:$dst #3 #4
/*  5690*/          OPC_EmitMergeInputChains1_0,
/*  5691*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXV), 0|OPFL_Chain,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (intrinsic_void 5535:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$rS, iaddrX16:{ *:[iPTR] }:$dst) - Complexity = 417
                    // Dst: (STXV ?:{ *:[v2f64] }:$rS, memrix16:{ *:[iPTR] }:$dst)
/*  5699*/        /*Scope*/ 12, /*->5712*/
/*  5700*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5703*/          OPC_EmitMergeInputChains1_0,
/*  5704*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (intrinsic_void 5535:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 417
                    // Dst: (STXVX ?:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  5712*/        0, /*End of Scope*/
/*  5713*/      0, /*End of Scope*/
/*  5714*/    /*Scope*/ 53, /*->5768*/
/*  5715*/      OPC_CheckChild1Integer, 35|128,43/*5539*/, 
/*  5718*/      OPC_RecordChild2, // #1 = $rS
/*  5719*/      OPC_RecordChild3, // #2 = $dst
/*  5720*/      OPC_Scope, 14, /*->5736*/ // 2 children in Scope
/*  5722*/        OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/*  5724*/        OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5727*/        OPC_EmitMergeInputChains1_0,
/*  5728*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVW4X), 0|OPFL_Chain,
                      3/*#Ops*/, 1, 3, 4, 
                  // Src: (intrinsic_void 5539:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 417
                  // Dst: (STXVW4X ?:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  5736*/      /*Scope*/ 30, /*->5767*/
/*  5737*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5739*/        OPC_Scope, 12, /*->5753*/ // 2 children in Scope
/*  5741*/          OPC_CheckComplexPat, /*CP*/4, /*#*/2, // SelectAddrImmX16:$dst #3 #4
/*  5744*/          OPC_EmitMergeInputChains1_0,
/*  5745*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXV), 0|OPFL_Chain,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (intrinsic_void 5539:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$rS, iaddrX16:{ *:[iPTR] }:$dst) - Complexity = 417
                    // Dst: (STXV ?:{ *:[v4i32] }:$rS, memrix16:{ *:[iPTR] }:$dst)
/*  5753*/        /*Scope*/ 12, /*->5766*/
/*  5754*/          OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5757*/          OPC_EmitMergeInputChains1_0,
/*  5758*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVX), 0|OPFL_Chain,
                        3/*#Ops*/, 1, 3, 4, 
                    // Src: (intrinsic_void 5539:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 417
                    // Dst: (STXVX ?:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  5766*/        0, /*End of Scope*/
/*  5767*/      0, /*End of Scope*/
/*  5768*/    /*Scope*/ 17, /*->5786*/
/*  5769*/      OPC_CheckChild1Integer, 32|128,43/*5536*/, 
/*  5772*/      OPC_RecordChild2, // #1 = $rS
/*  5773*/      OPC_RecordChild3, // #2 = $dst
/*  5774*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5777*/      OPC_EmitMergeInputChains1_0,
/*  5778*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVD2X), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5536:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 417
                // Dst: (STXVD2X ?:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  5786*/    /*Scope*/ 17, /*->5804*/
/*  5787*/      OPC_CheckChild1Integer, 36|128,43/*5540*/, 
/*  5790*/      OPC_RecordChild2, // #1 = $rS
/*  5791*/      OPC_RecordChild3, // #2 = $dst
/*  5792*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5795*/      OPC_EmitMergeInputChains1_0,
/*  5796*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVW4X), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5540:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 417
                // Dst: (STXVW4X ?:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  5804*/    /*Scope*/ 20, /*->5825*/
/*  5805*/      OPC_CheckChild1Integer, 33|128,43/*5537*/, 
/*  5808*/      OPC_RecordChild2, // #1 = $XT
/*  5809*/      OPC_RecordChild3, // #2 = $dst
/*  5810*/      OPC_RecordChild4, // #3 = $rB
/*  5811*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5813*/      OPC_CheckComplexPat, /*CP*/8, /*#*/2, // SelectAddr:$dst #4
/*  5816*/      OPC_EmitMergeInputChains1_0,
/*  5817*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVL), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 4, 3, 
                // Src: (intrinsic_void 5537:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$XT, addr:{ *:[iPTR] }:$dst, i64:{ *:[i64] }:$rB) - Complexity = 414
                // Dst: (STXVL v4i32:{ *:[v4i32] }:$XT, addr:{ *:[iPTR] }:$dst, i64:{ *:[i64] }:$rB)
/*  5825*/    /*Scope*/ 20, /*->5846*/
/*  5826*/      OPC_CheckChild1Integer, 34|128,43/*5538*/, 
/*  5829*/      OPC_RecordChild2, // #1 = $XT
/*  5830*/      OPC_RecordChild3, // #2 = $dst
/*  5831*/      OPC_RecordChild4, // #3 = $rB
/*  5832*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  5834*/      OPC_CheckComplexPat, /*CP*/8, /*#*/2, // SelectAddr:$dst #4
/*  5837*/      OPC_EmitMergeInputChains1_0,
/*  5838*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVLL), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 4, 3, 
                // Src: (intrinsic_void 5538:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$XT, addr:{ *:[iPTR] }:$dst, i64:{ *:[i64] }:$rB) - Complexity = 414
                // Dst: (STXVLL v4i32:{ *:[v4i32] }:$XT, addr:{ *:[iPTR] }:$dst, i64:{ *:[i64] }:$rB)
/*  5846*/    /*Scope*/ 15, /*->5862*/
/*  5847*/      OPC_CheckChild1Integer, 22|128,42/*5398*/, 
/*  5850*/      OPC_RecordChild2, // #1 = $dst
/*  5851*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5854*/      OPC_EmitMergeInputChains1_0,
/*  5855*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBA), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_void 5398:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBA xoaddr:{ *:[iPTR] }:$dst)
/*  5862*/    /*Scope*/ 15, /*->5878*/
/*  5863*/      OPC_CheckChild1Integer, 24|128,42/*5400*/, 
/*  5866*/      OPC_RecordChild2, // #1 = $dst
/*  5867*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5870*/      OPC_EmitMergeInputChains1_0,
/*  5871*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBI), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_void 5400:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBI xoaddr:{ *:[iPTR] }:$dst)
/*  5878*/    /*Scope*/ 15, /*->5894*/
/*  5879*/      OPC_CheckChild1Integer, 25|128,42/*5401*/, 
/*  5882*/      OPC_RecordChild2, // #1 = $dst
/*  5883*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5886*/      OPC_EmitMergeInputChains1_0,
/*  5887*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBST), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_void 5401:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBST xoaddr:{ *:[iPTR] }:$dst)
/*  5894*/    /*Scope*/ 15, /*->5910*/
/*  5895*/      OPC_CheckChild1Integer, 28|128,42/*5404*/, 
/*  5898*/      OPC_RecordChild2, // #1 = $dst
/*  5899*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5902*/      OPC_EmitMergeInputChains1_0,
/*  5903*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBZ), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_void 5404:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBZ xoaddr:{ *:[iPTR] }:$dst)
/*  5910*/    /*Scope*/ 15, /*->5926*/
/*  5911*/      OPC_CheckChild1Integer, 29|128,42/*5405*/, 
/*  5914*/      OPC_RecordChild2, // #1 = $dst
/*  5915*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5918*/      OPC_EmitMergeInputChains1_0,
/*  5919*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBZL), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_void 5405:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBZL xoaddr:{ *:[iPTR] }:$dst)
/*  5926*/    /*Scope*/ 19, /*->5946*/
/*  5927*/      OPC_CheckChild1Integer, 26|128,42/*5402*/, 
/*  5930*/      OPC_RecordChild2, // #1 = $dst
/*  5931*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5934*/      OPC_EmitMergeInputChains1_0,
/*  5935*/      OPC_EmitInteger, MVT::i32, 0, 
/*  5938*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBT), 0|OPFL_Chain,
                    3/*#Ops*/, 4, 2, 3, 
                // Src: (intrinsic_void 5402:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBT 0:{ *:[i32] }, xoaddr:{ *:[iPTR] }:$dst)
/*  5946*/    /*Scope*/ 19, /*->5966*/
/*  5947*/      OPC_CheckChild1Integer, 27|128,42/*5403*/, 
/*  5950*/      OPC_RecordChild2, // #1 = $dst
/*  5951*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5954*/      OPC_EmitMergeInputChains1_0,
/*  5955*/      OPC_EmitInteger, MVT::i32, 0, 
/*  5958*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBTST), 0|OPFL_Chain,
                    3/*#Ops*/, 4, 2, 3, 
                // Src: (intrinsic_void 5403:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBTST 0:{ *:[i32] }, xoaddr:{ *:[iPTR] }:$dst)
/*  5966*/    /*Scope*/ 19, /*->5986*/
/*  5967*/      OPC_CheckChild1Integer, 23|128,42/*5399*/, 
/*  5970*/      OPC_RecordChild2, // #1 = $dst
/*  5971*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/*  5974*/      OPC_EmitMergeInputChains1_0,
/*  5975*/      OPC_EmitInteger, MVT::i32, 0, 
/*  5978*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBF), 0|OPFL_Chain,
                    3/*#Ops*/, 4, 2, 3, 
                // Src: (intrinsic_void 5399:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (DCBF 0:{ *:[i32] }, xoaddr:{ *:[iPTR] }:$dst)
/*  5986*/    /*Scope*/ 19, /*->6006*/
/*  5987*/      OPC_CheckChild1Integer, 90|128,40/*5210*/, 
/*  5990*/      OPC_RecordChild2, // #1 = $rS
/*  5991*/      OPC_RecordChild3, // #2 = $dst
/*  5992*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  5994*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  5997*/      OPC_EmitMergeInputChains1_0,
/*  5998*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STVEBX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5210:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (STVEBX v16i8:{ *:[v16i8] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6006*/    /*Scope*/ 19, /*->6026*/
/*  6007*/      OPC_CheckChild1Integer, 91|128,40/*5211*/, 
/*  6010*/      OPC_RecordChild2, // #1 = $rS
/*  6011*/      OPC_RecordChild3, // #2 = $dst
/*  6012*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6014*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6017*/      OPC_EmitMergeInputChains1_0,
/*  6018*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STVEHX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5211:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (STVEHX v8i16:{ *:[v8i16] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6026*/    /*Scope*/ 19, /*->6046*/
/*  6027*/      OPC_CheckChild1Integer, 92|128,40/*5212*/, 
/*  6030*/      OPC_RecordChild2, // #1 = $rS
/*  6031*/      OPC_RecordChild3, // #2 = $dst
/*  6032*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6034*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6037*/      OPC_EmitMergeInputChains1_0,
/*  6038*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STVEWX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5212:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (STVEWX v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6046*/    /*Scope*/ 19, /*->6066*/
/*  6047*/      OPC_CheckChild1Integer, 93|128,40/*5213*/, 
/*  6050*/      OPC_RecordChild2, // #1 = $rS
/*  6051*/      OPC_RecordChild3, // #2 = $dst
/*  6052*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6054*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6057*/      OPC_EmitMergeInputChains1_0,
/*  6058*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STVX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5213:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (STVX v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6066*/    /*Scope*/ 19, /*->6086*/
/*  6067*/      OPC_CheckChild1Integer, 94|128,40/*5214*/, 
/*  6070*/      OPC_RecordChild2, // #1 = $rS
/*  6071*/      OPC_RecordChild3, // #2 = $dst
/*  6072*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6074*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6077*/      OPC_EmitMergeInputChains1_0,
/*  6078*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STVXL), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5214:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (STVXL v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6086*/    /*Scope*/ 19, /*->6106*/
/*  6087*/      OPC_CheckChild1Integer, 121|128,42/*5497*/, 
/*  6090*/      OPC_RecordChild2, // #1 = $T
/*  6091*/      OPC_RecordChild3, // #2 = $dst
/*  6092*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6094*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6097*/      OPC_EmitMergeInputChains1_0,
/*  6098*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFDX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5497:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFDX ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6106*/    /*Scope*/ 19, /*->6126*/
/*  6107*/      OPC_CheckChild1Integer, 125|128,42/*5501*/, 
/*  6110*/      OPC_RecordChild2, // #1 = $T
/*  6111*/      OPC_RecordChild3, // #2 = $dst
/*  6112*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6114*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6117*/      OPC_EmitMergeInputChains1_0,
/*  6118*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFSX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5501:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFSX ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6126*/    /*Scope*/ 19, /*->6146*/
/*  6127*/      OPC_CheckChild1Integer, 118|128,42/*5494*/, 
/*  6130*/      OPC_RecordChild2, // #1 = $T
/*  6131*/      OPC_RecordChild3, // #2 = $dst
/*  6132*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6134*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6137*/      OPC_EmitMergeInputChains1_0,
/*  6138*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFCDXA), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5494:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFCDXA ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6146*/    /*Scope*/ 19, /*->6166*/
/*  6147*/      OPC_CheckChild1Integer, 117|128,42/*5493*/, 
/*  6150*/      OPC_RecordChild2, // #1 = $T
/*  6151*/      OPC_RecordChild3, // #2 = $dst
/*  6152*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6154*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6157*/      OPC_EmitMergeInputChains1_0,
/*  6158*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFCDX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5493:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFCDX ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6166*/    /*Scope*/ 19, /*->6186*/
/*  6167*/      OPC_CheckChild1Integer, 120|128,42/*5496*/, 
/*  6170*/      OPC_RecordChild2, // #1 = $T
/*  6171*/      OPC_RecordChild3, // #2 = $dst
/*  6172*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6174*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6177*/      OPC_EmitMergeInputChains1_0,
/*  6178*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFCSXA), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5496:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFCSXA ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6186*/    /*Scope*/ 19, /*->6206*/
/*  6187*/      OPC_CheckChild1Integer, 119|128,42/*5495*/, 
/*  6190*/      OPC_RecordChild2, // #1 = $T
/*  6191*/      OPC_RecordChild3, // #2 = $dst
/*  6192*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6194*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6197*/      OPC_EmitMergeInputChains1_0,
/*  6198*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFCSX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5495:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFCSX ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6206*/    /*Scope*/ 19, /*->6226*/
/*  6207*/      OPC_CheckChild1Integer, 122|128,42/*5498*/, 
/*  6210*/      OPC_RecordChild2, // #1 = $T
/*  6211*/      OPC_RecordChild3, // #2 = $dst
/*  6212*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6214*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6217*/      OPC_EmitMergeInputChains1_0,
/*  6218*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFDXA), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5498:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFDXA ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6226*/    /*Scope*/ 19, /*->6246*/
/*  6227*/      OPC_CheckChild1Integer, 124|128,42/*5500*/, 
/*  6230*/      OPC_RecordChild2, // #1 = $T
/*  6231*/      OPC_RecordChild3, // #2 = $dst
/*  6232*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6234*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6237*/      OPC_EmitMergeInputChains1_0,
/*  6238*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFIWXA), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5500:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFIWXA ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6246*/    /*Scope*/ 19, /*->6266*/
/*  6247*/      OPC_CheckChild1Integer, 123|128,42/*5499*/, 
/*  6250*/      OPC_RecordChild2, // #1 = $T
/*  6251*/      OPC_RecordChild3, // #2 = $dst
/*  6252*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6254*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6257*/      OPC_EmitMergeInputChains1_0,
/*  6258*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFIWX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5499:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFIWX ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6266*/    /*Scope*/ 19, /*->6286*/
/*  6267*/      OPC_CheckChild1Integer, 126|128,42/*5502*/, 
/*  6270*/      OPC_RecordChild2, // #1 = $T
/*  6271*/      OPC_RecordChild3, // #2 = $dst
/*  6272*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*  6274*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6277*/      OPC_EmitMergeInputChains1_0,
/*  6278*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::QVSTFSXA), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (intrinsic_void 5502:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 17
                // Dst: (QVSTFSXA ?:{ *:[v4f64] }:$T, xoaddr:{ *:[iPTR] }:$dst)
/*  6286*/    /*Scope*/ 20, /*->6307*/
/*  6287*/      OPC_CheckChild1Integer, 75|128,40/*5195*/, 
/*  6290*/      OPC_RecordChild2, // #1 = $STRM
/*  6291*/      OPC_MoveChild2,
/*  6292*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6295*/      OPC_MoveParent,
/*  6296*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6298*/      OPC_EmitMergeInputChains1_0,
/*  6299*/      OPC_EmitConvertToTarget, 1,
/*  6301*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DSS), 0|OPFL_Chain,
                    1/*#Ops*/, 2, 
                // Src: (intrinsic_void 5195:{ *:[iPTR] }, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                // Dst: (DSS (imm:{ *:[i32] }):$STRM)
/*  6307*/    /*Scope*/ 52, /*->6360*/
/*  6308*/      OPC_CheckChild1Integer, 77|128,40/*5197*/, 
/*  6311*/      OPC_RecordChild2, // #1 = $rA
/*  6312*/      OPC_Scope, 22, /*->6336*/ // 2 children in Scope
/*  6314*/        OPC_CheckChild2Type, MVT::i32,
/*  6316*/        OPC_RecordChild3, // #2 = $rB
/*  6317*/        OPC_RecordChild4, // #3 = $STRM
/*  6318*/        OPC_MoveChild4,
/*  6319*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6322*/        OPC_MoveParent,
/*  6323*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6325*/        OPC_EmitMergeInputChains1_0,
/*  6326*/        OPC_EmitConvertToTarget, 3,
/*  6328*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DST), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5197:{ *:[iPTR] }, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DST (imm:{ *:[i32] }):$STRM, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/*  6336*/      /*Scope*/ 22, /*->6359*/
/*  6337*/        OPC_CheckChild2Type, MVT::i64,
/*  6339*/        OPC_RecordChild3, // #2 = $rB
/*  6340*/        OPC_RecordChild4, // #3 = $STRM
/*  6341*/        OPC_MoveChild4,
/*  6342*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6345*/        OPC_MoveParent,
/*  6346*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6348*/        OPC_EmitMergeInputChains1_0,
/*  6349*/        OPC_EmitConvertToTarget, 3,
/*  6351*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DST64), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5197:{ *:[iPTR] }, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DST64 (imm:{ *:[i32] }):$STRM, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB)
/*  6359*/      0, /*End of Scope*/
/*  6360*/    /*Scope*/ 52, /*->6413*/
/*  6361*/      OPC_CheckChild1Integer, 80|128,40/*5200*/, 
/*  6364*/      OPC_RecordChild2, // #1 = $rA
/*  6365*/      OPC_Scope, 22, /*->6389*/ // 2 children in Scope
/*  6367*/        OPC_CheckChild2Type, MVT::i32,
/*  6369*/        OPC_RecordChild3, // #2 = $rB
/*  6370*/        OPC_RecordChild4, // #3 = $STRM
/*  6371*/        OPC_MoveChild4,
/*  6372*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6375*/        OPC_MoveParent,
/*  6376*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6378*/        OPC_EmitMergeInputChains1_0,
/*  6379*/        OPC_EmitConvertToTarget, 3,
/*  6381*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DSTT), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5200:{ *:[iPTR] }, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DSTT (imm:{ *:[i32] }):$STRM, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/*  6389*/      /*Scope*/ 22, /*->6412*/
/*  6390*/        OPC_CheckChild2Type, MVT::i64,
/*  6392*/        OPC_RecordChild3, // #2 = $rB
/*  6393*/        OPC_RecordChild4, // #3 = $STRM
/*  6394*/        OPC_MoveChild4,
/*  6395*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6398*/        OPC_MoveParent,
/*  6399*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6401*/        OPC_EmitMergeInputChains1_0,
/*  6402*/        OPC_EmitConvertToTarget, 3,
/*  6404*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DSTT64), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5200:{ *:[iPTR] }, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DSTT64 (imm:{ *:[i32] }):$STRM, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB)
/*  6412*/      0, /*End of Scope*/
/*  6413*/    /*Scope*/ 52, /*->6466*/
/*  6414*/      OPC_CheckChild1Integer, 78|128,40/*5198*/, 
/*  6417*/      OPC_RecordChild2, // #1 = $rA
/*  6418*/      OPC_Scope, 22, /*->6442*/ // 2 children in Scope
/*  6420*/        OPC_CheckChild2Type, MVT::i32,
/*  6422*/        OPC_RecordChild3, // #2 = $rB
/*  6423*/        OPC_RecordChild4, // #3 = $STRM
/*  6424*/        OPC_MoveChild4,
/*  6425*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6428*/        OPC_MoveParent,
/*  6429*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6431*/        OPC_EmitMergeInputChains1_0,
/*  6432*/        OPC_EmitConvertToTarget, 3,
/*  6434*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DSTST), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5198:{ *:[iPTR] }, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DSTST (imm:{ *:[i32] }):$STRM, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/*  6442*/      /*Scope*/ 22, /*->6465*/
/*  6443*/        OPC_CheckChild2Type, MVT::i64,
/*  6445*/        OPC_RecordChild3, // #2 = $rB
/*  6446*/        OPC_RecordChild4, // #3 = $STRM
/*  6447*/        OPC_MoveChild4,
/*  6448*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6451*/        OPC_MoveParent,
/*  6452*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6454*/        OPC_EmitMergeInputChains1_0,
/*  6455*/        OPC_EmitConvertToTarget, 3,
/*  6457*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DSTST64), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5198:{ *:[iPTR] }, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DSTST64 (imm:{ *:[i32] }):$STRM, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB)
/*  6465*/      0, /*End of Scope*/
/*  6466*/    /*Scope*/ 52, /*->6519*/
/*  6467*/      OPC_CheckChild1Integer, 79|128,40/*5199*/, 
/*  6470*/      OPC_RecordChild2, // #1 = $rA
/*  6471*/      OPC_Scope, 22, /*->6495*/ // 2 children in Scope
/*  6473*/        OPC_CheckChild2Type, MVT::i32,
/*  6475*/        OPC_RecordChild3, // #2 = $rB
/*  6476*/        OPC_RecordChild4, // #3 = $STRM
/*  6477*/        OPC_MoveChild4,
/*  6478*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6481*/        OPC_MoveParent,
/*  6482*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6484*/        OPC_EmitMergeInputChains1_0,
/*  6485*/        OPC_EmitConvertToTarget, 3,
/*  6487*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DSTSTT), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5199:{ *:[iPTR] }, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DSTSTT (imm:{ *:[i32] }):$STRM, i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/*  6495*/      /*Scope*/ 22, /*->6518*/
/*  6496*/        OPC_CheckChild2Type, MVT::i64,
/*  6498*/        OPC_RecordChild3, // #2 = $rB
/*  6499*/        OPC_RecordChild4, // #3 = $STRM
/*  6500*/        OPC_MoveChild4,
/*  6501*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  6504*/        OPC_MoveParent,
/*  6505*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6507*/        OPC_EmitMergeInputChains1_0,
/*  6508*/        OPC_EmitConvertToTarget, 3,
/*  6510*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DSTSTT64), 0|OPFL_Chain,
                      3/*#Ops*/, 4, 1, 2, 
                  // Src: (intrinsic_void 5199:{ *:[iPTR] }, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB, (imm:{ *:[i32] }):$STRM) - Complexity = 11
                  // Dst: (DSTSTT64 (imm:{ *:[i32] }):$STRM, i64:{ *:[i64] }:$rA, i32:{ *:[i32] }:$rB)
/*  6518*/      0, /*End of Scope*/
/*  6519*/    /*Scope*/ 27, /*->6547*/
/*  6520*/      OPC_CheckChild1Integer, 8|128,43/*5512*/, 
/*  6523*/      OPC_Scope, 12, /*->6537*/ // 2 children in Scope
/*  6525*/        OPC_CheckPatternPredicate, 16, // (!PPCSubTarget->hasOnlyMSYNC())
/*  6527*/        OPC_EmitMergeInputChains1_0,
/*  6528*/        OPC_EmitInteger, MVT::i32, 0, 
/*  6531*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::SYNC), 0|OPFL_Chain,
                      1/*#Ops*/, 1, 
                  // Src: (intrinsic_void 5512:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (SYNC 0:{ *:[i32] })
/*  6537*/      /*Scope*/ 8, /*->6546*/
/*  6538*/        OPC_CheckPatternPredicate, 17, // (PPCSubTarget->hasOnlyMSYNC())
/*  6540*/        OPC_EmitMergeInputChains1_0,
/*  6541*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::MSYNC), 0|OPFL_Chain,
                      0/*#Ops*/, 
                  // Src: (intrinsic_void 5512:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (MSYNC)
/*  6546*/      0, /*End of Scope*/
/*  6547*/    /*Scope*/ 27, /*->6575*/
/*  6548*/      OPC_CheckChild1Integer, 41|128,42/*5417*/, 
/*  6551*/      OPC_Scope, 12, /*->6565*/ // 2 children in Scope
/*  6553*/        OPC_CheckPatternPredicate, 16, // (!PPCSubTarget->hasOnlyMSYNC())
/*  6555*/        OPC_EmitMergeInputChains1_0,
/*  6556*/        OPC_EmitInteger, MVT::i32, 1, 
/*  6559*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::SYNC), 0|OPFL_Chain,
                      1/*#Ops*/, 1, 
                  // Src: (intrinsic_void 5417:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (SYNC 1:{ *:[i32] })
/*  6565*/      /*Scope*/ 8, /*->6574*/
/*  6566*/        OPC_CheckPatternPredicate, 17, // (PPCSubTarget->hasOnlyMSYNC())
/*  6568*/        OPC_EmitMergeInputChains1_0,
/*  6569*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::MSYNC), 0|OPFL_Chain,
                      0/*#Ops*/, 
                  // Src: (intrinsic_void 5417:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (MSYNC)
/*  6574*/      0, /*End of Scope*/
/*  6575*/    /*Scope*/ 28, /*->6604*/
/*  6576*/      OPC_CheckChild1Integer, 93|128,1/*221*/, 
/*  6579*/      OPC_RecordChild2, // #1 = $rS
/*  6580*/      OPC_Scope, 10, /*->6592*/ // 2 children in Scope
/*  6582*/        OPC_CheckChild2Type, MVT::i32,
/*  6584*/        OPC_EmitMergeInputChains1_0,
/*  6585*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MTCTRloop), 0|OPFL_Chain,
                      MVT::i32, 1/*#Ops*/, 1, 
                  // Src: (intrinsic_void 221:{ *:[iPTR] }, i32:{ *:[i32] }:$rS) - Complexity = 8
                  // Dst: (MTCTRloop:{ *:[i32] } i32:{ *:[i32] }:$rS)
/*  6592*/      /*Scope*/ 10, /*->6603*/
/*  6593*/        OPC_CheckChild2Type, MVT::i64,
/*  6595*/        OPC_EmitMergeInputChains1_0,
/*  6596*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MTCTR8loop), 0|OPFL_Chain,
                      MVT::i64, 1/*#Ops*/, 1, 
                  // Src: (intrinsic_void 221:{ *:[iPTR] }, i64:{ *:[i64] }:$rS) - Complexity = 8
                  // Dst: (MTCTR8loop:{ *:[i64] } i64:{ *:[i64] }:$rS)
/*  6603*/      0, /*End of Scope*/
/*  6604*/    /*Scope*/ 11, /*->6616*/
/*  6605*/      OPC_CheckChild1Integer, 76|128,40/*5196*/, 
/*  6608*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6610*/      OPC_EmitMergeInputChains1_0,
/*  6611*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DSSALL), 0|OPFL_Chain,
                    0/*#Ops*/, 
                // Src: (intrinsic_void 5196:{ *:[iPTR] }) - Complexity = 8
                // Dst: (DSSALL)
/*  6616*/    /*Scope*/ 13, /*->6630*/
/*  6617*/      OPC_CheckChild1Integer, 89|128,40/*5209*/, 
/*  6620*/      OPC_RecordChild2, // #1 = $vB
/*  6621*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*  6623*/      OPC_EmitMergeInputChains1_0,
/*  6624*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::MTVSCR), 0|OPFL_Chain,
                    1/*#Ops*/, 1, 
                // Src: (intrinsic_void 5209:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (MTVSCR v4i32:{ *:[v4i32] }:$vB)
/*  6630*/    /*Scope*/ 18, /*->6649*/
/*  6631*/      OPC_CheckChild1Integer, 1|128,43/*5505*/, 
/*  6634*/      OPC_RecordChild2, // #1 = $V
/*  6635*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/*  6637*/      OPC_EmitMergeInputChains1_0,
/*  6638*/      OPC_EmitInteger, MVT::i32, 2|128,1/*130*/, 
/*  6642*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::MTSPR8), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 1, 
                // Src: (intrinsic_void 5505:{ *:[iPTR] }, i64:{ *:[i64] }:$V) - Complexity = 8
                // Dst: (MTSPR8 130:{ *:[i32] }, ?:{ *:[i64] }:$V)
/*  6649*/    /*Scope*/ 18, /*->6668*/
/*  6650*/      OPC_CheckChild1Integer, 2|128,43/*5506*/, 
/*  6653*/      OPC_RecordChild2, // #1 = $V
/*  6654*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/*  6656*/      OPC_EmitMergeInputChains1_0,
/*  6657*/      OPC_EmitInteger, MVT::i32, 3|128,1/*131*/, 
/*  6661*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::MTSPR8), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 1, 
                // Src: (intrinsic_void 5506:{ *:[iPTR] }, i64:{ *:[i64] }:$V) - Complexity = 8
                // Dst: (MTSPR8 131:{ *:[i32] }, ?:{ *:[i64] }:$V)
/*  6668*/    /*Scope*/ 18, /*->6687*/
/*  6669*/      OPC_CheckChild1Integer, 3|128,43/*5507*/, 
/*  6672*/      OPC_RecordChild2, // #1 = $V
/*  6673*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/*  6675*/      OPC_EmitMergeInputChains1_0,
/*  6676*/      OPC_EmitInteger, MVT::i32, 0|128,1/*128*/, 
/*  6680*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::MTSPR8), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 1, 
                // Src: (intrinsic_void 5507:{ *:[iPTR] }, i64:{ *:[i64] }:$V) - Complexity = 8
                // Dst: (MTSPR8 128:{ *:[i32] }, ?:{ *:[i64] }:$V)
/*  6687*/    /*Scope*/ 18, /*->6706*/
/*  6688*/      OPC_CheckChild1Integer, 4|128,43/*5508*/, 
/*  6691*/      OPC_RecordChild2, // #1 = $V
/*  6692*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/*  6694*/      OPC_EmitMergeInputChains1_0,
/*  6695*/      OPC_EmitInteger, MVT::i32, 1|128,1/*129*/, 
/*  6699*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::MTSPR8), 0|OPFL_Chain,
                    2/*#Ops*/, 2, 1, 
                // Src: (intrinsic_void 5508:{ *:[iPTR] }, i64:{ *:[i64] }:$V) - Complexity = 8
                // Dst: (MTSPR8 129:{ *:[i32] }, ?:{ *:[i64] }:$V)
/*  6706*/    0, /*End of Scope*/
/*  6707*/  /*SwitchOpcode*/ 39, TARGET_VAL(PPCISD::STXSIX),// ->6749
/*  6710*/    OPC_RecordNode, // #0 = 'PPCstxsix' chained node
/*  6711*/    OPC_RecordChild1, // #1 = $XT
/*  6712*/    OPC_RecordChild2, // #2 = $dst
/*  6713*/    OPC_Scope, 16, /*->6731*/ // 2 children in Scope
/*  6715*/      OPC_CheckChild3Integer, 1, 
/*  6717*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  6719*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6722*/      OPC_EmitMergeInputChains1_0,
/*  6723*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIBX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCstxsix f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst, 1:{ *:[iPTR] }) - Complexity = 417
                // Dst: (STXSIBX f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst)
/*  6731*/    /*Scope*/ 16, /*->6748*/
/*  6732*/      OPC_CheckChild3Integer, 2, 
/*  6734*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*  6736*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6739*/      OPC_EmitMergeInputChains1_0,
/*  6740*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXSIHX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCstxsix f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst, 2:{ *:[iPTR] }) - Complexity = 417
                // Dst: (STXSIHX f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst)
/*  6748*/    0, /*End of Scope*/
/*  6749*/  /*SwitchOpcode*/ 17, TARGET_VAL(PPCISD::STXVD2X),// ->6769
/*  6752*/    OPC_RecordNode, // #0 = 'PPCstxvd2x' chained node
/*  6753*/    OPC_RecordChild1, // #1 = $rS
/*  6754*/    OPC_RecordChild2, // #2 = $dst
/*  6755*/    OPC_CheckPatternPredicate, 15, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX())
/*  6757*/    OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6760*/    OPC_EmitMergeInputChains1_0,
/*  6761*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVD2X), 0|OPFL_Chain,
                  3/*#Ops*/, 1, 3, 4, 
              // Src: (PPCstxvd2x v2f64:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
              // Dst: (STXVD2X ?:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6769*/  /*SwitchOpcode*/ 6|128,1/*134*/, TARGET_VAL(PPCISD::STORE_VEC_BE),// ->6907
/*  6773*/    OPC_RecordNode, // #0 = 'PPCst_vec_be' chained node
/*  6774*/    OPC_RecordChild1, // #1 = $rS
/*  6775*/    OPC_Scope, 17, /*->6794*/ // 6 children in Scope
/*  6777*/      OPC_CheckChild1Type, MVT::v2f64,
/*  6779*/      OPC_RecordChild2, // #2 = $dst
/*  6780*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*  6782*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6785*/      OPC_EmitMergeInputChains1_0,
/*  6786*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVD2X), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCst_vec_be v2f64:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
                // Dst: (STXVD2X ?:{ *:[v2f64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6794*/    /*Scope*/ 17, /*->6812*/
/*  6795*/      OPC_CheckChild1Type, MVT::v4f32,
/*  6797*/      OPC_RecordChild2, // #2 = $dst
/*  6798*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*  6800*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6803*/      OPC_EmitMergeInputChains1_0,
/*  6804*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVW4X), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCst_vec_be v4f32:{ *:[v4f32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
                // Dst: (STXVW4X ?:{ *:[v4f32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6812*/    /*Scope*/ 17, /*->6830*/
/*  6813*/      OPC_CheckChild1Type, MVT::v2i64,
/*  6815*/      OPC_RecordChild2, // #2 = $dst
/*  6816*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*  6818*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6821*/      OPC_EmitMergeInputChains1_0,
/*  6822*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVD2X), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCst_vec_be v2i64:{ *:[v2i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
                // Dst: (STXVD2X ?:{ *:[v2i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6830*/    /*Scope*/ 17, /*->6848*/
/*  6831*/      OPC_CheckChild1Type, MVT::v4i32,
/*  6833*/      OPC_RecordChild2, // #2 = $dst
/*  6834*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*  6836*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6839*/      OPC_EmitMergeInputChains1_0,
/*  6840*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVW4X), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCst_vec_be v4i32:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
                // Dst: (STXVW4X ?:{ *:[v4i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/*  6848*/    /*Scope*/ 28, /*->6877*/
/*  6849*/      OPC_CheckChild1Type, MVT::v8i16,
/*  6851*/      OPC_RecordChild2, // #2 = $dst
/*  6852*/      OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  6854*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6857*/      OPC_EmitMergeInputChains1_0,
/*  6858*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  6861*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*  6869*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVH8X), 0|OPFL_Chain,
                    3/*#Ops*/, 6, 3, 4, 
                // Src: (PPCst_vec_be v8i16:{ *:[v8i16] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
                // Dst: (STXVH8X (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$rS, VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  6877*/    /*Scope*/ 28, /*->6906*/
/*  6878*/      OPC_CheckChild1Type, MVT::v16i8,
/*  6880*/      OPC_RecordChild2, // #2 = $dst
/*  6881*/      OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*  6883*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6886*/      OPC_EmitMergeInputChains1_0,
/*  6887*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*  6890*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*  6898*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STXVB16X), 0|OPFL_Chain,
                    3/*#Ops*/, 6, 3, 4, 
                // Src: (PPCst_vec_be v16i8:{ *:[v16i8] }:$rS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
                // Dst: (STXVB16X (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$rS, VSRC:{ *:[i32] }), xoaddr:{ *:[iPTR] }:$dst)
/*  6906*/    0, /*End of Scope*/
/*  6907*/  /*SwitchOpcode*/ 35, TARGET_VAL(PPCISD::STFIWX),// ->6945
/*  6910*/    OPC_RecordNode, // #0 = 'PPCstfiwx' chained node
/*  6911*/    OPC_RecordChild1, // #1 = $XT
/*  6912*/    OPC_RecordChild2, // #2 = $dst
/*  6913*/    OPC_Scope, 14, /*->6929*/ // 2 children in Scope
/*  6915*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*  6917*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6920*/      OPC_EmitMergeInputChains1_0,
/*  6921*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STIWX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCstfiwx f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 412
                // Dst: (STIWX f64:{ *:[f64] }:$XT, xoaddr:{ *:[iPTR] }:$dst)
/*  6929*/    /*Scope*/ 14, /*->6944*/
/*  6930*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/*  6932*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/*  6935*/      OPC_EmitMergeInputChains1_0,
/*  6936*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STFIWX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCstfiwx f64:{ *:[f64] }:$frS, xoaddr:{ *:[iPTR] }:$dst) - Complexity = 12
                // Dst: (STFIWX f64:{ *:[f64] }:$frS, xoaddr:{ *:[iPTR] }:$dst)
/*  6944*/    0, /*End of Scope*/
/*  6945*/  /*SwitchOpcode*/ 85|128,77/*9941*/, TARGET_VAL(ISD::ANY_EXTEND),// ->16890
/*  6949*/    OPC_Scope, 117|128,76/*9845*/, /*->16797*/ // 2 children in Scope
/*  6952*/      OPC_MoveChild0,
/*  6953*/      OPC_SwitchOpcode /*2 cases */, 1|128,4/*513*/, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),// ->7471
/*  6958*/        OPC_RecordChild0, // #0 = $S
/*  6959*/        OPC_CheckType, MVT::i32,
/*  6961*/        OPC_Scope, 89|128,3/*473*/, /*->7437*/ // 2 children in Scope
/*  6964*/          OPC_CheckChild0Type, MVT::v8i16,
/*  6966*/          OPC_Scope, 49, /*->7017*/ // 9 children in Scope
/*  6968*/            OPC_CheckChild1Integer, 0, 
/*  6970*/            OPC_MoveParent,
/*  6971*/            OPC_CheckType, MVT::i64,
/*  6973*/            OPC_Scope, 20, /*->6995*/ // 2 children in Scope
/*  6975*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  6977*/              OPC_EmitInteger, MVT::i64, 0, 
/*  6980*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  6987*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  6995*/            /*Scope*/ 20, /*->7016*/
/*  6996*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  6998*/              OPC_EmitInteger, MVT::i64, 0, 
/*  7001*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7008*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7016*/            0, /*End of Scope*/
/*  7017*/          /*Scope*/ 49, /*->7067*/
/*  7018*/            OPC_CheckChild1Integer, 1, 
/*  7020*/            OPC_MoveParent,
/*  7021*/            OPC_CheckType, MVT::i64,
/*  7023*/            OPC_Scope, 20, /*->7045*/ // 2 children in Scope
/*  7025*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7027*/              OPC_EmitInteger, MVT::i64, 2, 
/*  7030*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7037*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 2:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7045*/            /*Scope*/ 20, /*->7066*/
/*  7046*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7048*/              OPC_EmitInteger, MVT::i64, 2, 
/*  7051*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7058*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 2:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7066*/            0, /*End of Scope*/
/*  7067*/          /*Scope*/ 49, /*->7117*/
/*  7068*/            OPC_CheckChild1Integer, 2, 
/*  7070*/            OPC_MoveParent,
/*  7071*/            OPC_CheckType, MVT::i64,
/*  7073*/            OPC_Scope, 20, /*->7095*/ // 2 children in Scope
/*  7075*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7077*/              OPC_EmitInteger, MVT::i64, 4, 
/*  7080*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7087*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7095*/            /*Scope*/ 20, /*->7116*/
/*  7096*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7098*/              OPC_EmitInteger, MVT::i64, 4, 
/*  7101*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7108*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7116*/            0, /*End of Scope*/
/*  7117*/          /*Scope*/ 49, /*->7167*/
/*  7118*/            OPC_CheckChild1Integer, 3, 
/*  7120*/            OPC_MoveParent,
/*  7121*/            OPC_CheckType, MVT::i64,
/*  7123*/            OPC_Scope, 20, /*->7145*/ // 2 children in Scope
/*  7125*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7127*/              OPC_EmitInteger, MVT::i64, 6, 
/*  7130*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7137*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 6:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7145*/            /*Scope*/ 20, /*->7166*/
/*  7146*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7148*/              OPC_EmitInteger, MVT::i64, 6, 
/*  7151*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7158*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 6:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7166*/            0, /*End of Scope*/
/*  7167*/          /*Scope*/ 49, /*->7217*/
/*  7168*/            OPC_CheckChild1Integer, 4, 
/*  7170*/            OPC_MoveParent,
/*  7171*/            OPC_CheckType, MVT::i64,
/*  7173*/            OPC_Scope, 20, /*->7195*/ // 2 children in Scope
/*  7175*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7177*/              OPC_EmitInteger, MVT::i64, 8, 
/*  7180*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7187*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7195*/            /*Scope*/ 20, /*->7216*/
/*  7196*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7198*/              OPC_EmitInteger, MVT::i64, 8, 
/*  7201*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7208*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7216*/            0, /*End of Scope*/
/*  7217*/          /*Scope*/ 49, /*->7267*/
/*  7218*/            OPC_CheckChild1Integer, 5, 
/*  7220*/            OPC_MoveParent,
/*  7221*/            OPC_CheckType, MVT::i64,
/*  7223*/            OPC_Scope, 20, /*->7245*/ // 2 children in Scope
/*  7225*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7227*/              OPC_EmitInteger, MVT::i64, 10, 
/*  7230*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7237*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 10:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7245*/            /*Scope*/ 20, /*->7266*/
/*  7246*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7248*/              OPC_EmitInteger, MVT::i64, 10, 
/*  7251*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7258*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 10:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7266*/            0, /*End of Scope*/
/*  7267*/          /*Scope*/ 49, /*->7317*/
/*  7268*/            OPC_CheckChild1Integer, 6, 
/*  7270*/            OPC_MoveParent,
/*  7271*/            OPC_CheckType, MVT::i64,
/*  7273*/            OPC_Scope, 20, /*->7295*/ // 2 children in Scope
/*  7275*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7277*/              OPC_EmitInteger, MVT::i64, 12, 
/*  7280*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7287*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7295*/            /*Scope*/ 20, /*->7316*/
/*  7296*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7298*/              OPC_EmitInteger, MVT::i64, 12, 
/*  7301*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7308*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7316*/            0, /*End of Scope*/
/*  7317*/          /*Scope*/ 49, /*->7367*/
/*  7318*/            OPC_CheckChild1Integer, 7, 
/*  7320*/            OPC_MoveParent,
/*  7321*/            OPC_CheckType, MVT::i64,
/*  7323*/            OPC_Scope, 20, /*->7345*/ // 2 children in Scope
/*  7325*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7327*/              OPC_EmitInteger, MVT::i64, 14, 
/*  7330*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7337*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 7:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 14:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7345*/            /*Scope*/ 20, /*->7366*/
/*  7346*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7348*/              OPC_EmitInteger, MVT::i64, 14, 
/*  7351*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/*  7358*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 2, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 7:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 14:{ *:[i64] }), ?:{ *:[v8i16] }:$S)
/*  7366*/            0, /*End of Scope*/
/*  7367*/          /*Scope*/ 68, /*->7436*/
/*  7368*/            OPC_RecordChild1, // #1 = $Idx
/*  7369*/            OPC_CheckChild1Type, MVT::i64,
/*  7371*/            OPC_MoveParent,
/*  7372*/            OPC_CheckType, MVT::i64,
/*  7374*/            OPC_Scope, 29, /*->7405*/ // 2 children in Scope
/*  7376*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7378*/              OPC_EmitInteger, MVT::i32, 1, 
/*  7381*/              OPC_EmitInteger, MVT::i32, 28, 
/*  7384*/              OPC_EmitInteger, MVT::i32, 30, 
/*  7387*/              OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                            MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/*  7397*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHRX), 0,
                            MVT::i64, 2/*#Ops*/, 5, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                        // Dst: (VEXTUHRX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 1:{ *:[i32] }, 28:{ *:[i32] }, 30:{ *:[i32] }), ?:{ *:[v8i16] }:$S)
/*  7405*/            /*Scope*/ 29, /*->7435*/
/*  7406*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7408*/              OPC_EmitInteger, MVT::i32, 1, 
/*  7411*/              OPC_EmitInteger, MVT::i32, 28, 
/*  7414*/              OPC_EmitInteger, MVT::i32, 30, 
/*  7417*/              OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                            MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/*  7427*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUHLX), 0,
                            MVT::i64, 2/*#Ops*/, 5, 0, 
                        // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                        // Dst: (VEXTUHLX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 1:{ *:[i32] }, 28:{ *:[i32] }, 30:{ *:[i32] }), ?:{ *:[v8i16] }:$S)
/*  7435*/            0, /*End of Scope*/
/*  7436*/          0, /*End of Scope*/
/*  7437*/        /*Scope*/ 32, /*->7470*/
/*  7438*/          OPC_CheckChild0Type, MVT::v16i8,
/*  7440*/          OPC_RecordChild1, // #1 = $Idx
/*  7441*/          OPC_CheckChild1Type, MVT::i64,
/*  7443*/          OPC_MoveParent,
/*  7444*/          OPC_CheckType, MVT::i64,
/*  7446*/          OPC_Scope, 10, /*->7458*/ // 2 children in Scope
/*  7448*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*  7450*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUBRX), 0,
                          MVT::i64, 2/*#Ops*/, 1, 0, 
                      // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                      // Dst: (VEXTUBRX:{ *:[i64] } ?:{ *:[i64] }:$Idx, ?:{ *:[v16i8] }:$S)
/*  7458*/          /*Scope*/ 10, /*->7469*/
/*  7459*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*  7461*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUBLX), 0,
                          MVT::i64, 2/*#Ops*/, 1, 0, 
                      // Src: (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                      // Dst: (VEXTUBLX:{ *:[i64] } ?:{ *:[i64] }:$Idx, ?:{ *:[v16i8] }:$S)
/*  7469*/          0, /*End of Scope*/
/*  7470*/        0, /*End of Scope*/
/*  7471*/      /*SwitchOpcode*/ 105|128,72/*9321*/, TARGET_VAL(ISD::SETCC),// ->16796
/*  7475*/        OPC_Scope, 118|128,6/*886*/, /*->8364*/ // 2 children in Scope
/*  7478*/          OPC_MoveChild0,
/*  7479*/          OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/*  7482*/          OPC_Scope, 87, /*->7571*/ // 8 children in Scope
/*  7484*/            OPC_RecordChild0, // #0 = $s1
/*  7485*/            OPC_MoveChild1,
/*  7486*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  7489*/            OPC_CheckChild0Integer, 1, 
/*  7491*/            OPC_RecordChild1, // #1 = $sa
/*  7492*/            OPC_CheckChild1Type, MVT::i32,
/*  7494*/            OPC_MoveParent,
/*  7495*/            OPC_SwitchType /*2 cases */, 36, MVT::i32,// ->7534
/*  7498*/              OPC_MoveParent,
/*  7499*/              OPC_CheckChild1Integer, 0, 
/*  7501*/              OPC_CheckChild2CondCode, ISD::SETNE,
/*  7503*/              OPC_MoveParent,
/*  7504*/              OPC_CheckType, MVT::i32,
/*  7506*/              OPC_EmitInteger, MVT::i32, 32, 
/*  7509*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3 #4
/*  7518*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7521*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7524*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 0, 3, 5, 6, 
                        // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/*  7534*/            /*SwitchType*/ 34, MVT::i64,// ->7570
/*  7536*/              OPC_MoveParent,
/*  7537*/              OPC_CheckChild1Integer, 0, 
/*  7539*/              OPC_CheckChild2CondCode, ISD::SETNE,
/*  7541*/              OPC_CheckType, MVT::i1,
/*  7543*/              OPC_MoveParent,
/*  7544*/              OPC_CheckType, MVT::i64,
/*  7546*/              OPC_EmitInteger, MVT::i32, 64, 
/*  7549*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3 #4
/*  7558*/              OPC_EmitInteger, MVT::i32, 63, 
/*  7561*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 0, 3, 5, 
                        // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/*  7570*/            0, // EndSwitchType
/*  7571*/          /*Scope*/ 87, /*->7659*/
/*  7572*/            OPC_MoveChild0,
/*  7573*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  7576*/            OPC_CheckChild0Integer, 1, 
/*  7578*/            OPC_RecordChild1, // #0 = $sa
/*  7579*/            OPC_CheckChild1Type, MVT::i32,
/*  7581*/            OPC_MoveParent,
/*  7582*/            OPC_RecordChild1, // #1 = $s1
/*  7583*/            OPC_SwitchType /*2 cases */, 36, MVT::i32,// ->7622
/*  7586*/              OPC_MoveParent,
/*  7587*/              OPC_CheckChild1Integer, 0, 
/*  7589*/              OPC_CheckChild2CondCode, ISD::SETNE,
/*  7591*/              OPC_MoveParent,
/*  7592*/              OPC_CheckType, MVT::i32,
/*  7594*/              OPC_EmitInteger, MVT::i32, 32, 
/*  7597*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3 #4
/*  7606*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7609*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7612*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 1, 3, 5, 6, 
                        // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/*  7622*/            /*SwitchType*/ 34, MVT::i64,// ->7658
/*  7624*/              OPC_MoveParent,
/*  7625*/              OPC_CheckChild1Integer, 0, 
/*  7627*/              OPC_CheckChild2CondCode, ISD::SETNE,
/*  7629*/              OPC_CheckType, MVT::i1,
/*  7631*/              OPC_MoveParent,
/*  7632*/              OPC_CheckType, MVT::i64,
/*  7634*/              OPC_EmitInteger, MVT::i32, 64, 
/*  7637*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3 #4
/*  7646*/              OPC_EmitInteger, MVT::i32, 63, 
/*  7649*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 1, 3, 5, 
                        // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/*  7658*/            0, // EndSwitchType
/*  7659*/          /*Scope*/ 19|128,1/*147*/, /*->7808*/
/*  7661*/            OPC_RecordChild0, // #0 = $s1
/*  7662*/            OPC_MoveChild1,
/*  7663*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  7666*/            OPC_CheckChild0Integer, 1, 
/*  7668*/            OPC_RecordChild1, // #1 = $sa
/*  7669*/            OPC_CheckChild1Type, MVT::i32,
/*  7671*/            OPC_MoveParent,
/*  7672*/            OPC_SwitchType /*2 cases */, 86, MVT::i64,// ->7761
/*  7675*/              OPC_MoveParent,
/*  7676*/              OPC_CheckChild1Integer, 0, 
/*  7678*/              OPC_Scope, 40, /*->7720*/ // 2 children in Scope
/*  7680*/                OPC_CheckChild2CondCode, ISD::SETNE,
/*  7682*/                OPC_MoveParent,
/*  7683*/                OPC_CheckType, MVT::i32,
/*  7685*/                OPC_EmitInteger, MVT::i32, 64, 
/*  7688*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3 #4
/*  7697*/                OPC_EmitInteger, MVT::i32, 63, 
/*  7700*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 3, 5,  // Results = #6
/*  7709*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  7712*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/*  7720*/              /*Scope*/ 39, /*->7760*/
/*  7721*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/*  7723*/                OPC_CheckType, MVT::i1,
/*  7725*/                OPC_MoveParent,
/*  7726*/                OPC_CheckType, MVT::i64,
/*  7728*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #2
/*  7736*/                OPC_EmitInteger, MVT::i32, 64, 
/*  7739*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/*  7748*/                OPC_EmitInteger, MVT::i32, 63, 
/*  7751*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 4, 6, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                          // Dst: (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/*  7760*/              0, /*End of Scope*/
/*  7761*/            /*SwitchType*/ 44, MVT::i32,// ->7807
/*  7763*/              OPC_MoveParent,
/*  7764*/              OPC_CheckChild1Integer, 0, 
/*  7766*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/*  7768*/              OPC_MoveParent,
/*  7769*/              OPC_CheckType, MVT::i32,
/*  7771*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                            MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #2
/*  7779*/              OPC_EmitInteger, MVT::i32, 32, 
/*  7782*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/*  7791*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7794*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7797*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 2, 4, 6, 7, 
                        // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/*  7807*/            0, // EndSwitchType
/*  7808*/          /*Scope*/ 19|128,1/*147*/, /*->7957*/
/*  7810*/            OPC_MoveChild0,
/*  7811*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  7814*/            OPC_CheckChild0Integer, 1, 
/*  7816*/            OPC_RecordChild1, // #0 = $sa
/*  7817*/            OPC_CheckChild1Type, MVT::i32,
/*  7819*/            OPC_MoveParent,
/*  7820*/            OPC_RecordChild1, // #1 = $s1
/*  7821*/            OPC_SwitchType /*2 cases */, 86, MVT::i64,// ->7910
/*  7824*/              OPC_MoveParent,
/*  7825*/              OPC_CheckChild1Integer, 0, 
/*  7827*/              OPC_Scope, 40, /*->7869*/ // 2 children in Scope
/*  7829*/                OPC_CheckChild2CondCode, ISD::SETNE,
/*  7831*/                OPC_MoveParent,
/*  7832*/                OPC_CheckType, MVT::i32,
/*  7834*/                OPC_EmitInteger, MVT::i32, 64, 
/*  7837*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3 #4
/*  7846*/                OPC_EmitInteger, MVT::i32, 63, 
/*  7849*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 3, 5,  // Results = #6
/*  7858*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  7861*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/*  7869*/              /*Scope*/ 39, /*->7909*/
/*  7870*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/*  7872*/                OPC_CheckType, MVT::i1,
/*  7874*/                OPC_MoveParent,
/*  7875*/                OPC_CheckType, MVT::i64,
/*  7877*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 1,  // Results = #2
/*  7885*/                OPC_EmitInteger, MVT::i32, 64, 
/*  7888*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/*  7897*/                OPC_EmitInteger, MVT::i32, 63, 
/*  7900*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 4, 6, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                          // Dst: (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/*  7909*/              0, /*End of Scope*/
/*  7910*/            /*SwitchType*/ 44, MVT::i32,// ->7956
/*  7912*/              OPC_MoveParent,
/*  7913*/              OPC_CheckChild1Integer, 0, 
/*  7915*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/*  7917*/              OPC_MoveParent,
/*  7918*/              OPC_CheckType, MVT::i32,
/*  7920*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                            MVT::i32, 2/*#Ops*/, 1, 1,  // Results = #2
/*  7928*/              OPC_EmitInteger, MVT::i32, 32, 
/*  7931*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/*  7940*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7943*/              OPC_EmitInteger, MVT::i32, 31, 
/*  7946*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 2, 4, 6, 7, 
                        // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/*  7956*/            0, // EndSwitchType
/*  7957*/          /*Scope*/ 124, /*->8082*/
/*  7958*/            OPC_RecordChild0, // #0 = $s1
/*  7959*/            OPC_MoveChild1,
/*  7960*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  7963*/            OPC_CheckChild0Integer, 1, 
/*  7965*/            OPC_RecordChild1, // #1 = $sa
/*  7966*/            OPC_CheckChild1Type, MVT::i32,
/*  7968*/            OPC_MoveParent,
/*  7969*/            OPC_SwitchType /*2 cases */, 56, MVT::i32,// ->8028
/*  7972*/              OPC_MoveParent,
/*  7973*/              OPC_CheckChild1Integer, 0, 
/*  7975*/              OPC_CheckChild2CondCode, ISD::SETNE,
/*  7977*/              OPC_CheckType, MVT::i1,
/*  7979*/              OPC_MoveParent,
/*  7980*/              OPC_CheckType, MVT::i64,
/*  7982*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                            MVT::i64, 0/*#Ops*/,  // Results = #2
/*  7988*/              OPC_EmitInteger, MVT::i32, 32, 
/*  7991*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/*  8000*/              OPC_EmitInteger, MVT::i32, 31, 
/*  8003*/              OPC_EmitInteger, MVT::i32, 31, 
/*  8006*/              OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 0, 4, 6, 7,  // Results = #8
/*  8016*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8019*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                            MVT::i64, 3/*#Ops*/, 2, 8, 9, 
                        // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8028*/            /*SwitchType*/ 51, MVT::i64,// ->8081
/*  8030*/              OPC_MoveParent,
/*  8031*/              OPC_CheckChild1Integer, 0, 
/*  8033*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/*  8035*/              OPC_MoveParent,
/*  8036*/              OPC_CheckType, MVT::i32,
/*  8038*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                            MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #2
/*  8046*/              OPC_EmitInteger, MVT::i32, 64, 
/*  8049*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/*  8058*/              OPC_EmitInteger, MVT::i32, 63, 
/*  8061*/              OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 2, 4, 6,  // Results = #7
/*  8070*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8073*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i32, 2/*#Ops*/, 7, 8, 
                        // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8081*/            0, // EndSwitchType
/*  8082*/          /*Scope*/ 124, /*->8207*/
/*  8083*/            OPC_MoveChild0,
/*  8084*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  8087*/            OPC_CheckChild0Integer, 1, 
/*  8089*/            OPC_RecordChild1, // #0 = $sa
/*  8090*/            OPC_CheckChild1Type, MVT::i32,
/*  8092*/            OPC_MoveParent,
/*  8093*/            OPC_RecordChild1, // #1 = $s1
/*  8094*/            OPC_SwitchType /*2 cases */, 56, MVT::i32,// ->8153
/*  8097*/              OPC_MoveParent,
/*  8098*/              OPC_CheckChild1Integer, 0, 
/*  8100*/              OPC_CheckChild2CondCode, ISD::SETNE,
/*  8102*/              OPC_CheckType, MVT::i1,
/*  8104*/              OPC_MoveParent,
/*  8105*/              OPC_CheckType, MVT::i64,
/*  8107*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                            MVT::i64, 0/*#Ops*/,  // Results = #2
/*  8113*/              OPC_EmitInteger, MVT::i32, 32, 
/*  8116*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/*  8125*/              OPC_EmitInteger, MVT::i32, 31, 
/*  8128*/              OPC_EmitInteger, MVT::i32, 31, 
/*  8131*/              OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 1, 4, 6, 7,  // Results = #8
/*  8141*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8144*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                            MVT::i64, 3/*#Ops*/, 2, 8, 9, 
                        // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8153*/            /*SwitchType*/ 51, MVT::i64,// ->8206
/*  8155*/              OPC_MoveParent,
/*  8156*/              OPC_CheckChild1Integer, 0, 
/*  8158*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/*  8160*/              OPC_MoveParent,
/*  8161*/              OPC_CheckType, MVT::i32,
/*  8163*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                            MVT::i64, 2/*#Ops*/, 1, 1,  // Results = #2
/*  8171*/              OPC_EmitInteger, MVT::i32, 64, 
/*  8174*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/*  8183*/              OPC_EmitInteger, MVT::i32, 63, 
/*  8186*/              OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 2, 4, 6,  // Results = #7
/*  8195*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8198*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i32, 2/*#Ops*/, 7, 8, 
                        // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8206*/            0, // EndSwitchType
/*  8207*/          /*Scope*/ 77, /*->8285*/
/*  8208*/            OPC_RecordChild0, // #0 = $s1
/*  8209*/            OPC_MoveChild1,
/*  8210*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  8213*/            OPC_CheckChild0Integer, 1, 
/*  8215*/            OPC_RecordChild1, // #1 = $sa
/*  8216*/            OPC_CheckChild1Type, MVT::i32,
/*  8218*/            OPC_MoveParent,
/*  8219*/            OPC_CheckType, MVT::i32,
/*  8221*/            OPC_MoveParent,
/*  8222*/            OPC_CheckChild1Integer, 0, 
/*  8224*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/*  8226*/            OPC_CheckType, MVT::i1,
/*  8228*/            OPC_MoveParent,
/*  8229*/            OPC_CheckType, MVT::i64,
/*  8231*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*  8237*/            OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                          MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #3
/*  8245*/            OPC_EmitInteger, MVT::i32, 32, 
/*  8248*/            OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                          MVT::i32, MVT::i32, 2/*#Ops*/, 1, 4,  // Results = #5 #6
/*  8257*/            OPC_EmitInteger, MVT::i32, 31, 
/*  8260*/            OPC_EmitInteger, MVT::i32, 31, 
/*  8263*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                          MVT::i32, 4/*#Ops*/, 3, 5, 7, 8,  // Results = #9
/*  8273*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8276*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 9, 10, 
                      // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                      // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8285*/          /*Scope*/ 77, /*->8363*/
/*  8286*/            OPC_MoveChild0,
/*  8287*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/*  8290*/            OPC_CheckChild0Integer, 1, 
/*  8292*/            OPC_RecordChild1, // #0 = $sa
/*  8293*/            OPC_CheckChild1Type, MVT::i32,
/*  8295*/            OPC_MoveParent,
/*  8296*/            OPC_RecordChild1, // #1 = $s1
/*  8297*/            OPC_CheckType, MVT::i32,
/*  8299*/            OPC_MoveParent,
/*  8300*/            OPC_CheckChild1Integer, 0, 
/*  8302*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/*  8304*/            OPC_CheckType, MVT::i1,
/*  8306*/            OPC_MoveParent,
/*  8307*/            OPC_CheckType, MVT::i64,
/*  8309*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*  8315*/            OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                          MVT::i32, 2/*#Ops*/, 1, 1,  // Results = #3
/*  8323*/            OPC_EmitInteger, MVT::i32, 32, 
/*  8326*/            OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                          MVT::i32, MVT::i32, 2/*#Ops*/, 0, 4,  // Results = #5 #6
/*  8335*/            OPC_EmitInteger, MVT::i32, 31, 
/*  8338*/            OPC_EmitInteger, MVT::i32, 31, 
/*  8341*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                          MVT::i32, 4/*#Ops*/, 3, 5, 7, 8,  // Results = #9
/*  8351*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8354*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 9, 10, 
                      // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                      // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8363*/          0, /*End of Scope*/
/*  8364*/        /*Scope*/ 109|128,65/*8429*/, /*->16795*/
/*  8366*/          OPC_RecordChild0, // #0 = $s1
/*  8367*/          OPC_Scope, 73|128,18/*2377*/, /*->10747*/ // 5 children in Scope
/*  8370*/            OPC_CheckChild0Type, MVT::i32,
/*  8372*/            OPC_Scope, 46|128,4/*558*/, /*->8933*/ // 3 children in Scope
/*  8375*/              OPC_CheckChild1Integer, 0, 
/*  8377*/              OPC_Scope, 24, /*->8403*/ // 12 children in Scope
/*  8379*/                OPC_CheckChild2CondCode, ISD::SETLT,
/*  8381*/                OPC_MoveParent,
/*  8382*/                OPC_CheckType, MVT::i32,
/*  8384*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8387*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8390*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8393*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 1, 2, 3, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  8403*/              /*Scope*/ 31, /*->8435*/
/*  8404*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/*  8406*/                OPC_MoveParent,
/*  8407*/                OPC_CheckType, MVT::i32,
/*  8409*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/*  8416*/                OPC_EmitInteger, MVT::i32, 27, 
/*  8419*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8422*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8425*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 1, 2, 3, 4, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  8435*/              /*Scope*/ 32, /*->8468*/
/*  8436*/                OPC_CheckChild2CondCode, ISD::SETGE,
/*  8438*/                OPC_MoveParent,
/*  8439*/                OPC_CheckType, MVT::i32,
/*  8441*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #1
/*  8449*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8452*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8455*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8458*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 1, 2, 3, 4, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  8468*/              /*Scope*/ 44, /*->8513*/
/*  8469*/                OPC_CheckChild2CondCode, ISD::SETLT,
/*  8471*/                OPC_CheckType, MVT::i1,
/*  8473*/                OPC_MoveParent,
/*  8474*/                OPC_CheckType, MVT::i64,
/*  8476*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  8482*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8485*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8488*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8491*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 2, 3, 4,  // Results = #5
/*  8501*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8504*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 5, 6, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8513*/              /*Scope*/ 39, /*->8553*/
/*  8514*/                OPC_CheckChild2CondCode, ISD::SETGT,
/*  8516*/                OPC_MoveParent,
/*  8517*/                OPC_CheckType, MVT::i32,
/*  8519*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/*  8526*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC), 0,
                              MVT::i32, 2/*#Ops*/, 1, 0,  // Results = #2
/*  8534*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8537*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8540*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8543*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (ANDC:{ *:[i32] } (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1), ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  8553*/              /*Scope*/ 39, /*->8593*/
/*  8554*/                OPC_CheckChild2CondCode, ISD::SETLE,
/*  8556*/                OPC_MoveParent,
/*  8557*/                OPC_CheckType, MVT::i32,
/*  8559*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/*  8566*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/*  8574*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8577*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8580*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8583*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (ORC:{ *:[i32] } ?:{ *:[i32] }:$s1, (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1)), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  8593*/              /*Scope*/ 51, /*->8645*/
/*  8594*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/*  8596*/                OPC_CheckType, MVT::i1,
/*  8598*/                OPC_MoveParent,
/*  8599*/                OPC_CheckType, MVT::i64,
/*  8601*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  8607*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/*  8614*/                OPC_EmitInteger, MVT::i32, 27, 
/*  8617*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8620*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8623*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5,  // Results = #6
/*  8633*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8636*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8645*/              /*Scope*/ 46, /*->8692*/
/*  8646*/                OPC_CheckChild2CondCode, ISD::SETNE,
/*  8648*/                OPC_MoveParent,
/*  8649*/                OPC_CheckType, MVT::i32,
/*  8651*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/*  8658*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/*  8665*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3
/*  8673*/                OPC_EmitInteger, MVT::i32, 27, 
/*  8676*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8679*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8682*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1)), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  8692*/              /*Scope*/ 52, /*->8745*/
/*  8693*/                OPC_CheckChild2CondCode, ISD::SETGE,
/*  8695*/                OPC_CheckType, MVT::i1,
/*  8697*/                OPC_MoveParent,
/*  8698*/                OPC_CheckType, MVT::i64,
/*  8700*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  8706*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #2
/*  8714*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8717*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8720*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8723*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5,  // Results = #6
/*  8733*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8736*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8745*/              /*Scope*/ 59, /*->8805*/
/*  8746*/                OPC_CheckChild2CondCode, ISD::SETGT,
/*  8748*/                OPC_CheckType, MVT::i1,
/*  8750*/                OPC_MoveParent,
/*  8751*/                OPC_CheckType, MVT::i64,
/*  8753*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  8759*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/*  8766*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC), 0,
                              MVT::i32, 2/*#Ops*/, 2, 0,  // Results = #3
/*  8774*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8777*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8780*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8783*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6,  // Results = #7
/*  8793*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8796*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 7, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (ANDC:{ *:[i32] } (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1), ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8805*/              /*Scope*/ 59, /*->8865*/
/*  8806*/                OPC_CheckChild2CondCode, ISD::SETLE,
/*  8808*/                OPC_CheckType, MVT::i1,
/*  8810*/                OPC_MoveParent,
/*  8811*/                OPC_CheckType, MVT::i64,
/*  8813*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  8819*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/*  8826*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  8834*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8837*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8840*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8843*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6,  // Results = #7
/*  8853*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8856*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 7, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (ORC:{ *:[i32] } ?:{ *:[i32] }:$s1, (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1)), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8865*/              /*Scope*/ 66, /*->8932*/
/*  8866*/                OPC_CheckChild2CondCode, ISD::SETNE,
/*  8868*/                OPC_CheckType, MVT::i1,
/*  8870*/                OPC_MoveParent,
/*  8871*/                OPC_CheckType, MVT::i64,
/*  8873*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  8879*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/*  8886*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #3
/*  8893*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*  8901*/                OPC_EmitInteger, MVT::i32, 27, 
/*  8904*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8907*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8910*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 4, 5, 6, 7,  // Results = #8
/*  8920*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  8923*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 8, 9, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1)), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  8932*/              0, /*End of Scope*/
/*  8933*/            /*Scope*/ 1|128,3/*385*/, /*->9320*/
/*  8935*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/*  8946*/              OPC_Scope, 24, /*->8972*/ // 8 children in Scope
/*  8948*/                OPC_CheckChild2CondCode, ISD::SETLE,
/*  8950*/                OPC_MoveParent,
/*  8951*/                OPC_CheckType, MVT::i32,
/*  8953*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8956*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8959*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8962*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 1, 2, 3, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  8972*/              /*Scope*/ 32, /*->9005*/
/*  8973*/                OPC_CheckChild2CondCode, ISD::SETGT,
/*  8975*/                OPC_MoveParent,
/*  8976*/                OPC_CheckType, MVT::i32,
/*  8978*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #1
/*  8986*/                OPC_EmitInteger, MVT::i32, 1, 
/*  8989*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8992*/                OPC_EmitInteger, MVT::i32, 31, 
/*  8995*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 1, 2, 3, 4, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  9005*/              /*Scope*/ 43, /*->9049*/
/*  9006*/                OPC_CheckChild2CondCode, ISD::SETLT,
/*  9008*/                OPC_MoveParent,
/*  9009*/                OPC_CheckType, MVT::i32,
/*  9011*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9014*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/*  9022*/                OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9030*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9033*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9036*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9039*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (AND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  9049*/              /*Scope*/ 43, /*->9093*/
/*  9050*/                OPC_CheckChild2CondCode, ISD::SETGE,
/*  9052*/                OPC_MoveParent,
/*  9053*/                OPC_CheckType, MVT::i32,
/*  9055*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9058*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/*  9066*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9074*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9077*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9080*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9083*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NAND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/*  9093*/              /*Scope*/ 44, /*->9138*/
/*  9094*/                OPC_CheckChild2CondCode, ISD::SETLE,
/*  9096*/                OPC_CheckType, MVT::i1,
/*  9098*/                OPC_MoveParent,
/*  9099*/                OPC_CheckType, MVT::i64,
/*  9101*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  9107*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9110*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9113*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9116*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 2, 3, 4,  // Results = #5
/*  9126*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  9129*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 5, 6, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  9138*/              /*Scope*/ 52, /*->9191*/
/*  9139*/                OPC_CheckChild2CondCode, ISD::SETGT,
/*  9141*/                OPC_CheckType, MVT::i1,
/*  9143*/                OPC_MoveParent,
/*  9144*/                OPC_CheckType, MVT::i64,
/*  9146*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  9152*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #2
/*  9160*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9163*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9166*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9169*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5,  // Results = #6
/*  9179*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  9182*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  9191*/              /*Scope*/ 63, /*->9255*/
/*  9192*/                OPC_CheckChild2CondCode, ISD::SETLT,
/*  9194*/                OPC_CheckType, MVT::i1,
/*  9196*/                OPC_MoveParent,
/*  9197*/                OPC_CheckType, MVT::i64,
/*  9199*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  9205*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9208*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9216*/                OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/*  9224*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9227*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9230*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9233*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 4, 5, 6, 7,  // Results = #8
/*  9243*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  9246*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 8, 9, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (AND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  9255*/              /*Scope*/ 63, /*->9319*/
/*  9256*/                OPC_CheckChild2CondCode, ISD::SETGE,
/*  9258*/                OPC_CheckType, MVT::i1,
/*  9260*/                OPC_MoveParent,
/*  9261*/                OPC_CheckType, MVT::i64,
/*  9263*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/*  9269*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9272*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9280*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/*  9288*/                OPC_EmitInteger, MVT::i32, 1, 
/*  9291*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9294*/                OPC_EmitInteger, MVT::i32, 31, 
/*  9297*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 4, 5, 6, 7,  // Results = #8
/*  9307*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*  9310*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 8, 9, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NAND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/*  9319*/              0, /*End of Scope*/
/*  9320*/            /*Scope*/ 16|128,11/*1424*/, /*->10746*/
/*  9322*/              OPC_RecordChild1, // #1 = $imm
/*  9323*/              OPC_Scope, 96|128,6/*864*/, /*->10190*/ // 6 children in Scope
/*  9326*/                OPC_MoveChild1,
/*  9327*/                OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*  9330*/                OPC_Scope, 117, /*->9449*/ // 6 children in Scope
/*  9332*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/*  9334*/                  OPC_MoveParent,
/*  9335*/                  OPC_CheckChild2CondCode, ISD::SETUGE,
/*  9337*/                  OPC_Scope, 53, /*->9392*/ // 2 children in Scope
/*  9339*/                    OPC_MoveParent,
/*  9340*/                    OPC_CheckType, MVT::i32,
/*  9342*/                    OPC_EmitConvertToTarget, 1,
/*  9344*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9352*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/*  9355*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9363*/                    OPC_EmitInteger, MVT::i32, 0, 
/*  9366*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/*  9373*/                    OPC_EmitInteger, MVT::i32, 1, 
/*  9376*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/*  9383*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/*  9392*/                  /*Scope*/ 55, /*->9448*/
/*  9393*/                    OPC_CheckType, MVT::i1,
/*  9395*/                    OPC_MoveParent,
/*  9396*/                    OPC_CheckType, MVT::i64,
/*  9398*/                    OPC_EmitConvertToTarget, 1,
/*  9400*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9408*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/*  9411*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9419*/                    OPC_EmitInteger, MVT::i64, 0, 
/*  9422*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/*  9429*/                    OPC_EmitInteger, MVT::i64, 1, 
/*  9432*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/*  9439*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/*  9448*/                  0, /*End of Scope*/
/*  9449*/                /*Scope*/ 117, /*->9567*/
/*  9450*/                  OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*  9452*/                  OPC_MoveParent,
/*  9453*/                  OPC_CheckChild2CondCode, ISD::SETGE,
/*  9455*/                  OPC_Scope, 53, /*->9510*/ // 2 children in Scope
/*  9457*/                    OPC_MoveParent,
/*  9458*/                    OPC_CheckType, MVT::i32,
/*  9460*/                    OPC_EmitConvertToTarget, 1,
/*  9462*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9470*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/*  9473*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9481*/                    OPC_EmitInteger, MVT::i32, 0, 
/*  9484*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/*  9491*/                    OPC_EmitInteger, MVT::i32, 1, 
/*  9494*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/*  9501*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/*  9510*/                  /*Scope*/ 55, /*->9566*/
/*  9511*/                    OPC_CheckType, MVT::i1,
/*  9513*/                    OPC_MoveParent,
/*  9514*/                    OPC_CheckType, MVT::i64,
/*  9516*/                    OPC_EmitConvertToTarget, 1,
/*  9518*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9526*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/*  9529*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9537*/                    OPC_EmitInteger, MVT::i64, 0, 
/*  9540*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/*  9547*/                    OPC_EmitInteger, MVT::i64, 1, 
/*  9550*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/*  9557*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/*  9566*/                  0, /*End of Scope*/
/*  9567*/                /*Scope*/ 117, /*->9685*/
/*  9568*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/*  9570*/                  OPC_MoveParent,
/*  9571*/                  OPC_CheckChild2CondCode, ISD::SETULE,
/*  9573*/                  OPC_Scope, 53, /*->9628*/ // 2 children in Scope
/*  9575*/                    OPC_MoveParent,
/*  9576*/                    OPC_CheckType, MVT::i32,
/*  9578*/                    OPC_EmitConvertToTarget, 1,
/*  9580*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9588*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/*  9591*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9599*/                    OPC_EmitInteger, MVT::i32, 0, 
/*  9602*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/*  9609*/                    OPC_EmitInteger, MVT::i32, 1, 
/*  9612*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/*  9619*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/*  9628*/                  /*Scope*/ 55, /*->9684*/
/*  9629*/                    OPC_CheckType, MVT::i1,
/*  9631*/                    OPC_MoveParent,
/*  9632*/                    OPC_CheckType, MVT::i64,
/*  9634*/                    OPC_EmitConvertToTarget, 1,
/*  9636*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9644*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/*  9647*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9655*/                    OPC_EmitInteger, MVT::i64, 0, 
/*  9658*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/*  9665*/                    OPC_EmitInteger, MVT::i64, 1, 
/*  9668*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/*  9675*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/*  9684*/                  0, /*End of Scope*/
/*  9685*/                /*Scope*/ 107|128,1/*235*/, /*->9922*/
/*  9687*/                  OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*  9689*/                  OPC_MoveParent,
/*  9690*/                  OPC_Scope, 114, /*->9806*/ // 2 children in Scope
/*  9692*/                    OPC_CheckChild2CondCode, ISD::SETLE,
/*  9694*/                    OPC_Scope, 53, /*->9749*/ // 2 children in Scope
/*  9696*/                      OPC_MoveParent,
/*  9697*/                      OPC_CheckType, MVT::i32,
/*  9699*/                      OPC_EmitConvertToTarget, 1,
/*  9701*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9709*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/*  9712*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9720*/                      OPC_EmitInteger, MVT::i32, 0, 
/*  9723*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/*  9730*/                      OPC_EmitInteger, MVT::i32, 1, 
/*  9733*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/*  9740*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/*  9749*/                    /*Scope*/ 55, /*->9805*/
/*  9750*/                      OPC_CheckType, MVT::i1,
/*  9752*/                      OPC_MoveParent,
/*  9753*/                      OPC_CheckType, MVT::i64,
/*  9755*/                      OPC_EmitConvertToTarget, 1,
/*  9757*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9765*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/*  9768*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9776*/                      OPC_EmitInteger, MVT::i64, 0, 
/*  9779*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/*  9786*/                      OPC_EmitInteger, MVT::i64, 1, 
/*  9789*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/*  9796*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/*  9805*/                    0, /*End of Scope*/
/*  9806*/                  /*Scope*/ 114, /*->9921*/
/*  9807*/                    OPC_CheckChild2CondCode, ISD::SETNE,
/*  9809*/                    OPC_Scope, 53, /*->9864*/ // 2 children in Scope
/*  9811*/                      OPC_MoveParent,
/*  9812*/                      OPC_CheckType, MVT::i32,
/*  9814*/                      OPC_EmitConvertToTarget, 1,
/*  9816*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9824*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/*  9827*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9835*/                      OPC_EmitInteger, MVT::i32, 0, 
/*  9838*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/*  9845*/                      OPC_EmitInteger, MVT::i32, 1, 
/*  9848*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/*  9855*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/*  9864*/                    /*Scope*/ 55, /*->9920*/
/*  9865*/                      OPC_CheckType, MVT::i1,
/*  9867*/                      OPC_MoveParent,
/*  9868*/                      OPC_CheckType, MVT::i64,
/*  9870*/                      OPC_EmitConvertToTarget, 1,
/*  9872*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9880*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/*  9883*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9891*/                      OPC_EmitInteger, MVT::i64, 0, 
/*  9894*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/*  9901*/                      OPC_EmitInteger, MVT::i64, 1, 
/*  9904*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/*  9911*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/*  9920*/                    0, /*End of Scope*/
/*  9921*/                  0, /*End of Scope*/
/*  9922*/                /*Scope*/ 117, /*->10040*/
/*  9923*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/*  9925*/                  OPC_MoveParent,
/*  9926*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/*  9928*/                  OPC_Scope, 53, /*->9983*/ // 2 children in Scope
/*  9930*/                    OPC_MoveParent,
/*  9931*/                    OPC_CheckType, MVT::i32,
/*  9933*/                    OPC_EmitConvertToTarget, 1,
/*  9935*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9943*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/*  9946*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/*  9954*/                    OPC_EmitInteger, MVT::i32, 0, 
/*  9957*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/*  9964*/                    OPC_EmitInteger, MVT::i32, 1, 
/*  9967*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/*  9974*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/*  9983*/                  /*Scope*/ 55, /*->10039*/
/*  9984*/                    OPC_CheckType, MVT::i1,
/*  9986*/                    OPC_MoveParent,
/*  9987*/                    OPC_CheckType, MVT::i64,
/*  9989*/                    OPC_EmitConvertToTarget, 1,
/*  9991*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*  9999*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 10002*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 10010*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 10013*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 10020*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 10023*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 10030*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 10039*/                  0, /*End of Scope*/
/* 10040*/                /*Scope*/ 19|128,1/*147*/, /*->10189*/
/* 10042*/                  OPC_MoveParent,
/* 10043*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/* 10045*/                  OPC_Scope, 69, /*->10116*/ // 2 children in Scope
/* 10047*/                    OPC_MoveParent,
/* 10048*/                    OPC_CheckType, MVT::i32,
/* 10050*/                    OPC_EmitConvertToTarget, 1,
/* 10052*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 10055*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 10063*/                    OPC_EmitConvertToTarget, 1,
/* 10065*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 10068*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 10076*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 10079*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 10087*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 10090*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 10,  // Results = #11
/* 10097*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 10100*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 12,  // Results = #13
/* 10107*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] })) - Complexity = 9
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 10116*/                  /*Scope*/ 71, /*->10188*/
/* 10117*/                    OPC_CheckType, MVT::i1,
/* 10119*/                    OPC_MoveParent,
/* 10120*/                    OPC_CheckType, MVT::i64,
/* 10122*/                    OPC_EmitConvertToTarget, 1,
/* 10124*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 10127*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 10135*/                    OPC_EmitConvertToTarget, 1,
/* 10137*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 10140*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 10148*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 10151*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 10159*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 10162*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 10,  // Results = #11
/* 10169*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 10172*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 12,  // Results = #13
/* 10179*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] })) - Complexity = 9
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 10188*/                  0, /*End of Scope*/
/* 10189*/                0, /*End of Scope*/
/* 10190*/              /*Scope*/ 110, /*->10301*/
/* 10191*/                OPC_CheckChild2CondCode, ISD::SETUGE,
/* 10193*/                OPC_Scope, 51, /*->10246*/ // 2 children in Scope
/* 10195*/                  OPC_MoveParent,
/* 10196*/                  OPC_CheckType, MVT::i32,
/* 10198*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10206*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 10209*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10217*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 10220*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 10227*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 10230*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 10237*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 10246*/                /*Scope*/ 53, /*->10300*/
/* 10247*/                  OPC_CheckType, MVT::i1,
/* 10249*/                  OPC_MoveParent,
/* 10250*/                  OPC_CheckType, MVT::i64,
/* 10252*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10260*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 10263*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10271*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 10274*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 10281*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 10284*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 10291*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 10300*/                0, /*End of Scope*/
/* 10301*/              /*Scope*/ 110, /*->10412*/
/* 10302*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 10304*/                OPC_Scope, 51, /*->10357*/ // 2 children in Scope
/* 10306*/                  OPC_MoveParent,
/* 10307*/                  OPC_CheckType, MVT::i32,
/* 10309*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10317*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 10320*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10328*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 10331*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 10338*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 10341*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 10348*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 10357*/                /*Scope*/ 53, /*->10411*/
/* 10358*/                  OPC_CheckType, MVT::i1,
/* 10360*/                  OPC_MoveParent,
/* 10361*/                  OPC_CheckType, MVT::i64,
/* 10363*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10371*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 10374*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10382*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 10385*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 10392*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 10395*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 10402*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 10411*/                0, /*End of Scope*/
/* 10412*/              /*Scope*/ 110, /*->10523*/
/* 10413*/                OPC_CheckChild2CondCode, ISD::SETULE,
/* 10415*/                OPC_Scope, 51, /*->10468*/ // 2 children in Scope
/* 10417*/                  OPC_MoveParent,
/* 10418*/                  OPC_CheckType, MVT::i32,
/* 10420*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10428*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 10431*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10439*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 10442*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 10449*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 10452*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 10459*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 10468*/                /*Scope*/ 53, /*->10522*/
/* 10469*/                  OPC_CheckType, MVT::i1,
/* 10471*/                  OPC_MoveParent,
/* 10472*/                  OPC_CheckType, MVT::i64,
/* 10474*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10482*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 10485*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10493*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 10496*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 10503*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 10506*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 10513*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 10522*/                0, /*End of Scope*/
/* 10523*/              /*Scope*/ 110, /*->10634*/
/* 10524*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 10526*/                OPC_Scope, 51, /*->10579*/ // 2 children in Scope
/* 10528*/                  OPC_MoveParent,
/* 10529*/                  OPC_CheckType, MVT::i32,
/* 10531*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10539*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 10542*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10550*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 10553*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 10560*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 10563*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 10570*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 10579*/                /*Scope*/ 53, /*->10633*/
/* 10580*/                  OPC_CheckType, MVT::i1,
/* 10582*/                  OPC_MoveParent,
/* 10583*/                  OPC_CheckType, MVT::i64,
/* 10585*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10593*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 10596*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10604*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 10607*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 10614*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 10617*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 10624*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 10633*/                0, /*End of Scope*/
/* 10634*/              /*Scope*/ 110, /*->10745*/
/* 10635*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 10637*/                OPC_Scope, 51, /*->10690*/ // 2 children in Scope
/* 10639*/                  OPC_MoveParent,
/* 10640*/                  OPC_CheckType, MVT::i32,
/* 10642*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10650*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 10653*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10661*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 10664*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 10671*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 10674*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 10681*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 10690*/                /*Scope*/ 53, /*->10744*/
/* 10691*/                  OPC_CheckType, MVT::i1,
/* 10693*/                  OPC_MoveParent,
/* 10694*/                  OPC_CheckType, MVT::i64,
/* 10696*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 10704*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 10707*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 10715*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 10718*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 10725*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 10728*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 10735*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 10744*/                0, /*End of Scope*/
/* 10745*/              0, /*End of Scope*/
/* 10746*/            0, /*End of Scope*/
/* 10747*/          /*Scope*/ 53|128,17/*2229*/, /*->12978*/
/* 10749*/            OPC_CheckChild0Type, MVT::i64,
/* 10751*/            OPC_Scope, 84|128,3/*468*/, /*->11222*/ // 3 children in Scope
/* 10754*/              OPC_CheckChild1Integer, 0, 
/* 10756*/              OPC_Scope, 22, /*->10780*/ // 12 children in Scope
/* 10758*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 10760*/                OPC_CheckType, MVT::i1,
/* 10762*/                OPC_MoveParent,
/* 10763*/                OPC_CheckType, MVT::i64,
/* 10765*/                OPC_EmitInteger, MVT::i32, 1, 
/* 10768*/                OPC_EmitInteger, MVT::i32, 63, 
/* 10771*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] })
/* 10780*/              /*Scope*/ 29, /*->10810*/
/* 10781*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 10783*/                OPC_CheckType, MVT::i1,
/* 10785*/                OPC_MoveParent,
/* 10786*/                OPC_CheckType, MVT::i64,
/* 10788*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 10795*/                OPC_EmitInteger, MVT::i32, 58, 
/* 10798*/                OPC_EmitInteger, MVT::i32, 63, 
/* 10801*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), 58:{ *:[i32] }, 63:{ *:[i32] })
/* 10810*/              /*Scope*/ 31, /*->10842*/
/* 10811*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 10813*/                OPC_MoveParent,
/* 10814*/                OPC_CheckType, MVT::i32,
/* 10816*/                OPC_EmitInteger, MVT::i32, 1, 
/* 10819*/                OPC_EmitInteger, MVT::i32, 63, 
/* 10822*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2,  // Results = #3
/* 10831*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 10834*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 3, 4, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 10842*/              /*Scope*/ 30, /*->10873*/
/* 10843*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 10845*/                OPC_CheckType, MVT::i1,
/* 10847*/                OPC_MoveParent,
/* 10848*/                OPC_CheckType, MVT::i64,
/* 10850*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 10858*/                OPC_EmitInteger, MVT::i32, 1, 
/* 10861*/                OPC_EmitInteger, MVT::i32, 63, 
/* 10864*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 10873*/              /*Scope*/ 38, /*->10912*/
/* 10874*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 10876*/                OPC_MoveParent,
/* 10877*/                OPC_CheckType, MVT::i32,
/* 10879*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 10886*/                OPC_EmitInteger, MVT::i32, 58, 
/* 10889*/                OPC_EmitInteger, MVT::i32, 63, 
/* 10892*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 10901*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 10904*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 4, 5, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), 58:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 10912*/              /*Scope*/ 39, /*->10952*/
/* 10913*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 10915*/                OPC_MoveParent,
/* 10916*/                OPC_CheckType, MVT::i32,
/* 10918*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 10926*/                OPC_EmitInteger, MVT::i32, 1, 
/* 10929*/                OPC_EmitInteger, MVT::i32, 63, 
/* 10932*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 10941*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 10944*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 4, 5, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 10952*/              /*Scope*/ 37, /*->10990*/
/* 10953*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 10955*/                OPC_CheckType, MVT::i1,
/* 10957*/                OPC_MoveParent,
/* 10958*/                OPC_CheckType, MVT::i64,
/* 10960*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 10967*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 0,  // Results = #2
/* 10975*/                OPC_EmitInteger, MVT::i32, 1, 
/* 10978*/                OPC_EmitInteger, MVT::i32, 63, 
/* 10981*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (ANDC8:{ *:[i64] } (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1), ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 10990*/              /*Scope*/ 37, /*->11028*/
/* 10991*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 10993*/                OPC_CheckType, MVT::i1,
/* 10995*/                OPC_MoveParent,
/* 10996*/                OPC_CheckType, MVT::i64,
/* 10998*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 11005*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 11013*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11016*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11019*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (ORC8:{ *:[i64] } ?:{ *:[i64] }:$s1, (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1)), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 11028*/              /*Scope*/ 44, /*->11073*/
/* 11029*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 11031*/                OPC_CheckType, MVT::i1,
/* 11033*/                OPC_MoveParent,
/* 11034*/                OPC_CheckType, MVT::i64,
/* 11036*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 11043*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #2
/* 11050*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 11058*/                OPC_EmitInteger, MVT::i32, 58, 
/* 11061*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11064*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1)), 58:{ *:[i32] }, 63:{ *:[i32] })
/* 11073*/              /*Scope*/ 46, /*->11120*/
/* 11074*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 11076*/                OPC_MoveParent,
/* 11077*/                OPC_CheckType, MVT::i32,
/* 11079*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 11086*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 0,  // Results = #2
/* 11094*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11097*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11100*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/* 11109*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 11112*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 5, 6, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (ANDC8:{ *:[i64] } (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1), ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 11120*/              /*Scope*/ 46, /*->11167*/
/* 11121*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 11123*/                OPC_MoveParent,
/* 11124*/                OPC_CheckType, MVT::i32,
/* 11126*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 11133*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 11141*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11144*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11147*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/* 11156*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 11159*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 5, 6, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (ORC8:{ *:[i64] } ?:{ *:[i64] }:$s1, (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1)), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 11167*/              /*Scope*/ 53, /*->11221*/
/* 11168*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 11170*/                OPC_MoveParent,
/* 11171*/                OPC_CheckType, MVT::i32,
/* 11173*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 11180*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #2
/* 11187*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 11195*/                OPC_EmitInteger, MVT::i32, 58, 
/* 11198*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11201*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5,  // Results = #6
/* 11210*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 11213*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1)), 58:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 11221*/              0, /*End of Scope*/
/* 11222*/            /*Scope*/ 69|128,2/*325*/, /*->11549*/
/* 11224*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 11235*/              OPC_Scope, 22, /*->11259*/ // 8 children in Scope
/* 11237*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 11239*/                OPC_CheckType, MVT::i1,
/* 11241*/                OPC_MoveParent,
/* 11242*/                OPC_CheckType, MVT::i64,
/* 11244*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11247*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11250*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] })
/* 11259*/              /*Scope*/ 30, /*->11290*/
/* 11260*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 11262*/                OPC_CheckType, MVT::i1,
/* 11264*/                OPC_MoveParent,
/* 11265*/                OPC_CheckType, MVT::i64,
/* 11267*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 11275*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11278*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11281*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 11290*/              /*Scope*/ 31, /*->11322*/
/* 11291*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 11293*/                OPC_MoveParent,
/* 11294*/                OPC_CheckType, MVT::i32,
/* 11296*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11299*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11302*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2,  // Results = #3
/* 11311*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 11314*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 3, 4, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 11322*/              /*Scope*/ 41, /*->11364*/
/* 11323*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 11325*/                OPC_CheckType, MVT::i1,
/* 11327*/                OPC_MoveParent,
/* 11328*/                OPC_CheckType, MVT::i64,
/* 11330*/                OPC_EmitInteger, MVT::i64, 1, 
/* 11333*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 11341*/                OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11349*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11352*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11355*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (AND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 11364*/              /*Scope*/ 41, /*->11406*/
/* 11365*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 11367*/                OPC_CheckType, MVT::i1,
/* 11369*/                OPC_MoveParent,
/* 11370*/                OPC_CheckType, MVT::i64,
/* 11372*/                OPC_EmitInteger, MVT::i64, 1, 
/* 11375*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 11383*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11391*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11394*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11397*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NAND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 11406*/              /*Scope*/ 39, /*->11446*/
/* 11407*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 11409*/                OPC_MoveParent,
/* 11410*/                OPC_CheckType, MVT::i32,
/* 11412*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 11420*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11423*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11426*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 11435*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 11438*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 4, 5, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 11446*/              /*Scope*/ 50, /*->11497*/
/* 11447*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 11449*/                OPC_MoveParent,
/* 11450*/                OPC_CheckType, MVT::i32,
/* 11452*/                OPC_EmitInteger, MVT::i64, 1, 
/* 11455*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 11463*/                OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11471*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11474*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11477*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5,  // Results = #6
/* 11486*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 11489*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (AND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 11497*/              /*Scope*/ 50, /*->11548*/
/* 11498*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 11500*/                OPC_MoveParent,
/* 11501*/                OPC_CheckType, MVT::i32,
/* 11503*/                OPC_EmitInteger, MVT::i64, 1, 
/* 11506*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 11514*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11522*/                OPC_EmitInteger, MVT::i32, 1, 
/* 11525*/                OPC_EmitInteger, MVT::i32, 63, 
/* 11528*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5,  // Results = #6
/* 11537*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 11540*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NAND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 11548*/              0, /*End of Scope*/
/* 11549*/            /*Scope*/ 18|128,11/*1426*/, /*->12977*/
/* 11551*/              OPC_RecordChild1, // #1 = $imm
/* 11552*/              OPC_Scope, 98|128,6/*866*/, /*->12421*/ // 6 children in Scope
/* 11555*/                OPC_MoveChild1,
/* 11556*/                OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 11559*/                OPC_Scope, 117, /*->11678*/ // 6 children in Scope
/* 11561*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 11563*/                  OPC_MoveParent,
/* 11564*/                  OPC_CheckChild2CondCode, ISD::SETUGE,
/* 11566*/                  OPC_Scope, 53, /*->11621*/ // 2 children in Scope
/* 11568*/                    OPC_MoveParent,
/* 11569*/                    OPC_CheckType, MVT::i32,
/* 11571*/                    OPC_EmitConvertToTarget, 1,
/* 11573*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11581*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 11584*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 11592*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 11595*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 11602*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 11605*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 11612*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 11621*/                  /*Scope*/ 55, /*->11677*/
/* 11622*/                    OPC_CheckType, MVT::i1,
/* 11624*/                    OPC_MoveParent,
/* 11625*/                    OPC_CheckType, MVT::i64,
/* 11627*/                    OPC_EmitConvertToTarget, 1,
/* 11629*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11637*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 11640*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 11648*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 11651*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 11658*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 11661*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 11668*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 11677*/                  0, /*End of Scope*/
/* 11678*/                /*Scope*/ 117, /*->11796*/
/* 11679*/                  OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 11681*/                  OPC_MoveParent,
/* 11682*/                  OPC_CheckChild2CondCode, ISD::SETGE,
/* 11684*/                  OPC_Scope, 53, /*->11739*/ // 2 children in Scope
/* 11686*/                    OPC_MoveParent,
/* 11687*/                    OPC_CheckType, MVT::i32,
/* 11689*/                    OPC_EmitConvertToTarget, 1,
/* 11691*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11699*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 11702*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 11710*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 11713*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 11720*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 11723*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 11730*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 11739*/                  /*Scope*/ 55, /*->11795*/
/* 11740*/                    OPC_CheckType, MVT::i1,
/* 11742*/                    OPC_MoveParent,
/* 11743*/                    OPC_CheckType, MVT::i64,
/* 11745*/                    OPC_EmitConvertToTarget, 1,
/* 11747*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11755*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 11758*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 11766*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 11769*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 11776*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 11779*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 11786*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 11795*/                  0, /*End of Scope*/
/* 11796*/                /*Scope*/ 117, /*->11914*/
/* 11797*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 11799*/                  OPC_MoveParent,
/* 11800*/                  OPC_CheckChild2CondCode, ISD::SETULE,
/* 11802*/                  OPC_Scope, 53, /*->11857*/ // 2 children in Scope
/* 11804*/                    OPC_MoveParent,
/* 11805*/                    OPC_CheckType, MVT::i32,
/* 11807*/                    OPC_EmitConvertToTarget, 1,
/* 11809*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11817*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 11820*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 11828*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 11831*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 11838*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 11841*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 11848*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 11857*/                  /*Scope*/ 55, /*->11913*/
/* 11858*/                    OPC_CheckType, MVT::i1,
/* 11860*/                    OPC_MoveParent,
/* 11861*/                    OPC_CheckType, MVT::i64,
/* 11863*/                    OPC_EmitConvertToTarget, 1,
/* 11865*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11873*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 11876*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 11884*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 11887*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 11894*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 11897*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 11904*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 11913*/                  0, /*End of Scope*/
/* 11914*/                /*Scope*/ 107|128,1/*235*/, /*->12151*/
/* 11916*/                  OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 11918*/                  OPC_MoveParent,
/* 11919*/                  OPC_Scope, 114, /*->12035*/ // 2 children in Scope
/* 11921*/                    OPC_CheckChild2CondCode, ISD::SETLE,
/* 11923*/                    OPC_Scope, 53, /*->11978*/ // 2 children in Scope
/* 11925*/                      OPC_MoveParent,
/* 11926*/                      OPC_CheckType, MVT::i32,
/* 11928*/                      OPC_EmitConvertToTarget, 1,
/* 11930*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11938*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 11941*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 11949*/                      OPC_EmitInteger, MVT::i32, 0, 
/* 11952*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 11959*/                      OPC_EmitInteger, MVT::i32, 1, 
/* 11962*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 11969*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 11978*/                    /*Scope*/ 55, /*->12034*/
/* 11979*/                      OPC_CheckType, MVT::i1,
/* 11981*/                      OPC_MoveParent,
/* 11982*/                      OPC_CheckType, MVT::i64,
/* 11984*/                      OPC_EmitConvertToTarget, 1,
/* 11986*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 11994*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 11997*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 12005*/                      OPC_EmitInteger, MVT::i64, 0, 
/* 12008*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 12015*/                      OPC_EmitInteger, MVT::i64, 1, 
/* 12018*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 12025*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12034*/                    0, /*End of Scope*/
/* 12035*/                  /*Scope*/ 114, /*->12150*/
/* 12036*/                    OPC_CheckChild2CondCode, ISD::SETNE,
/* 12038*/                    OPC_Scope, 53, /*->12093*/ // 2 children in Scope
/* 12040*/                      OPC_MoveParent,
/* 12041*/                      OPC_CheckType, MVT::i32,
/* 12043*/                      OPC_EmitConvertToTarget, 1,
/* 12045*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 12053*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12056*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 12064*/                      OPC_EmitInteger, MVT::i32, 0, 
/* 12067*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 12074*/                      OPC_EmitInteger, MVT::i32, 1, 
/* 12077*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 12084*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12093*/                    /*Scope*/ 55, /*->12149*/
/* 12094*/                      OPC_CheckType, MVT::i1,
/* 12096*/                      OPC_MoveParent,
/* 12097*/                      OPC_CheckType, MVT::i64,
/* 12099*/                      OPC_EmitConvertToTarget, 1,
/* 12101*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 12109*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12112*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 12120*/                      OPC_EmitInteger, MVT::i64, 0, 
/* 12123*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 12130*/                      OPC_EmitInteger, MVT::i64, 1, 
/* 12133*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 12140*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12149*/                    0, /*End of Scope*/
/* 12150*/                  0, /*End of Scope*/
/* 12151*/                /*Scope*/ 117, /*->12269*/
/* 12152*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 12154*/                  OPC_MoveParent,
/* 12155*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/* 12157*/                  OPC_Scope, 53, /*->12212*/ // 2 children in Scope
/* 12159*/                    OPC_MoveParent,
/* 12160*/                    OPC_CheckType, MVT::i32,
/* 12162*/                    OPC_EmitConvertToTarget, 1,
/* 12164*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 12172*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12175*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 12183*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 12186*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 12193*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 12196*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 12203*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12212*/                  /*Scope*/ 55, /*->12268*/
/* 12213*/                    OPC_CheckType, MVT::i1,
/* 12215*/                    OPC_MoveParent,
/* 12216*/                    OPC_CheckType, MVT::i64,
/* 12218*/                    OPC_EmitConvertToTarget, 1,
/* 12220*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 12228*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12231*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 12239*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 12242*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 12249*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 12252*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 12259*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12268*/                  0, /*End of Scope*/
/* 12269*/                /*Scope*/ 21|128,1/*149*/, /*->12420*/
/* 12271*/                  OPC_CheckPredicate, 15, // Predicate_imm64ZExt32
/* 12273*/                  OPC_MoveParent,
/* 12274*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/* 12276*/                  OPC_Scope, 69, /*->12347*/ // 2 children in Scope
/* 12278*/                    OPC_MoveParent,
/* 12279*/                    OPC_CheckType, MVT::i32,
/* 12281*/                    OPC_EmitConvertToTarget, 1,
/* 12283*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 12286*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                                  MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 12294*/                    OPC_EmitConvertToTarget, 1,
/* 12296*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 12299*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 12307*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12310*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 12318*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 12321*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 10,  // Results = #11
/* 12328*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 12331*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 12,  // Results = #13
/* 12338*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12347*/                  /*Scope*/ 71, /*->12419*/
/* 12348*/                    OPC_CheckType, MVT::i1,
/* 12350*/                    OPC_MoveParent,
/* 12351*/                    OPC_CheckType, MVT::i64,
/* 12353*/                    OPC_EmitConvertToTarget, 1,
/* 12355*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 12358*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                                  MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 12366*/                    OPC_EmitConvertToTarget, 1,
/* 12368*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 12371*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 12379*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12382*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 12390*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 12393*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 10,  // Results = #11
/* 12400*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 12403*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 12,  // Results = #13
/* 12410*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12419*/                  0, /*End of Scope*/
/* 12420*/                0, /*End of Scope*/
/* 12421*/              /*Scope*/ 110, /*->12532*/
/* 12422*/                OPC_CheckChild2CondCode, ISD::SETUGE,
/* 12424*/                OPC_Scope, 51, /*->12477*/ // 2 children in Scope
/* 12426*/                  OPC_MoveParent,
/* 12427*/                  OPC_CheckType, MVT::i32,
/* 12429*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12437*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 12440*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12448*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 12451*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 12458*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 12461*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 12468*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12477*/                /*Scope*/ 53, /*->12531*/
/* 12478*/                  OPC_CheckType, MVT::i1,
/* 12480*/                  OPC_MoveParent,
/* 12481*/                  OPC_CheckType, MVT::i64,
/* 12483*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12491*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 12494*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12502*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 12505*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 12512*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 12515*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 12522*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12531*/                0, /*End of Scope*/
/* 12532*/              /*Scope*/ 110, /*->12643*/
/* 12533*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 12535*/                OPC_Scope, 51, /*->12588*/ // 2 children in Scope
/* 12537*/                  OPC_MoveParent,
/* 12538*/                  OPC_CheckType, MVT::i32,
/* 12540*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12548*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 12551*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12559*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 12562*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 12569*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 12572*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 12579*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12588*/                /*Scope*/ 53, /*->12642*/
/* 12589*/                  OPC_CheckType, MVT::i1,
/* 12591*/                  OPC_MoveParent,
/* 12592*/                  OPC_CheckType, MVT::i64,
/* 12594*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12602*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 12605*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12613*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 12616*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 12623*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 12626*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 12633*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12642*/                0, /*End of Scope*/
/* 12643*/              /*Scope*/ 110, /*->12754*/
/* 12644*/                OPC_CheckChild2CondCode, ISD::SETULE,
/* 12646*/                OPC_Scope, 51, /*->12699*/ // 2 children in Scope
/* 12648*/                  OPC_MoveParent,
/* 12649*/                  OPC_CheckType, MVT::i32,
/* 12651*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12659*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 12662*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12670*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 12673*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 12680*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 12683*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 12690*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12699*/                /*Scope*/ 53, /*->12753*/
/* 12700*/                  OPC_CheckType, MVT::i1,
/* 12702*/                  OPC_MoveParent,
/* 12703*/                  OPC_CheckType, MVT::i64,
/* 12705*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12713*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 12716*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12724*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 12727*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 12734*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 12737*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 12744*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12753*/                0, /*End of Scope*/
/* 12754*/              /*Scope*/ 110, /*->12865*/
/* 12755*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 12757*/                OPC_Scope, 51, /*->12810*/ // 2 children in Scope
/* 12759*/                  OPC_MoveParent,
/* 12760*/                  OPC_CheckType, MVT::i32,
/* 12762*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12770*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 12773*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12781*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 12784*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 12791*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 12794*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 12801*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12810*/                /*Scope*/ 53, /*->12864*/
/* 12811*/                  OPC_CheckType, MVT::i1,
/* 12813*/                  OPC_MoveParent,
/* 12814*/                  OPC_CheckType, MVT::i64,
/* 12816*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12824*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 12827*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12835*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 12838*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 12845*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 12848*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 12855*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12864*/                0, /*End of Scope*/
/* 12865*/              /*Scope*/ 110, /*->12976*/
/* 12866*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 12868*/                OPC_Scope, 51, /*->12921*/ // 2 children in Scope
/* 12870*/                  OPC_MoveParent,
/* 12871*/                  OPC_CheckType, MVT::i32,
/* 12873*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12881*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12884*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12892*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 12895*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 12902*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 12905*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 12912*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 12921*/                /*Scope*/ 53, /*->12975*/
/* 12922*/                  OPC_CheckType, MVT::i1,
/* 12924*/                  OPC_MoveParent,
/* 12925*/                  OPC_CheckType, MVT::i64,
/* 12927*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 12935*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 12938*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 12946*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 12949*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 12956*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 12959*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 12966*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 12975*/                0, /*End of Scope*/
/* 12976*/              0, /*End of Scope*/
/* 12977*/            0, /*End of Scope*/
/* 12978*/          /*Scope*/ 92|128,11/*1500*/, /*->14480*/
/* 12980*/            OPC_CheckChild0Type, MVT::f32,
/* 12982*/            OPC_RecordChild1, // #1 = $s2
/* 12983*/            OPC_Scope, 114, /*->13099*/ // 13 children in Scope
/* 12985*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 12987*/              OPC_Scope, 53, /*->13042*/ // 2 children in Scope
/* 12989*/                OPC_MoveParent,
/* 12990*/                OPC_CheckType, MVT::i32,
/* 12992*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 12994*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13002*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 13005*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13013*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13016*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13023*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13026*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13033*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13042*/              /*Scope*/ 55, /*->13098*/
/* 13043*/                OPC_CheckType, MVT::i1,
/* 13045*/                OPC_MoveParent,
/* 13046*/                OPC_CheckType, MVT::i64,
/* 13048*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13050*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13058*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 13061*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13069*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13072*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13079*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13082*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13089*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13098*/              0, /*End of Scope*/
/* 13099*/            /*Scope*/ 114, /*->13214*/
/* 13100*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 13102*/              OPC_Scope, 53, /*->13157*/ // 2 children in Scope
/* 13104*/                OPC_MoveParent,
/* 13105*/                OPC_CheckType, MVT::i32,
/* 13107*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13109*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13117*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 13120*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13128*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13131*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13138*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13141*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13148*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13157*/              /*Scope*/ 55, /*->13213*/
/* 13158*/                OPC_CheckType, MVT::i1,
/* 13160*/                OPC_MoveParent,
/* 13161*/                OPC_CheckType, MVT::i64,
/* 13163*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13165*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13173*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 13176*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13184*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13187*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13194*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13197*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13204*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13213*/              0, /*End of Scope*/
/* 13214*/            /*Scope*/ 114, /*->13329*/
/* 13215*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 13217*/              OPC_Scope, 53, /*->13272*/ // 2 children in Scope
/* 13219*/                OPC_MoveParent,
/* 13220*/                OPC_CheckType, MVT::i32,
/* 13222*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13224*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13232*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13235*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13243*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13246*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13253*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13256*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13263*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13272*/              /*Scope*/ 55, /*->13328*/
/* 13273*/                OPC_CheckType, MVT::i1,
/* 13275*/                OPC_MoveParent,
/* 13276*/                OPC_CheckType, MVT::i64,
/* 13278*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13280*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13288*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13291*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13299*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13302*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13309*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13312*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13319*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13328*/              0, /*End of Scope*/
/* 13329*/            /*Scope*/ 114, /*->13444*/
/* 13330*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 13332*/              OPC_Scope, 53, /*->13387*/ // 2 children in Scope
/* 13334*/                OPC_MoveParent,
/* 13335*/                OPC_CheckType, MVT::i32,
/* 13337*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13339*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13347*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13350*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13358*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13361*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13368*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13371*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13378*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13387*/              /*Scope*/ 55, /*->13443*/
/* 13388*/                OPC_CheckType, MVT::i1,
/* 13390*/                OPC_MoveParent,
/* 13391*/                OPC_CheckType, MVT::i64,
/* 13393*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13395*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13403*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13406*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13414*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13417*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13424*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13427*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13434*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13443*/              0, /*End of Scope*/
/* 13444*/            /*Scope*/ 114, /*->13559*/
/* 13445*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 13447*/              OPC_Scope, 53, /*->13502*/ // 2 children in Scope
/* 13449*/                OPC_MoveParent,
/* 13450*/                OPC_CheckType, MVT::i32,
/* 13452*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13454*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13462*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 13465*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13473*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13476*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13483*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13486*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13493*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13502*/              /*Scope*/ 55, /*->13558*/
/* 13503*/                OPC_CheckType, MVT::i1,
/* 13505*/                OPC_MoveParent,
/* 13506*/                OPC_CheckType, MVT::i64,
/* 13508*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13510*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13518*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 13521*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13529*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13532*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13539*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13542*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13549*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13558*/              0, /*End of Scope*/
/* 13559*/            /*Scope*/ 114, /*->13674*/
/* 13560*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 13562*/              OPC_Scope, 53, /*->13617*/ // 2 children in Scope
/* 13564*/                OPC_MoveParent,
/* 13565*/                OPC_CheckType, MVT::i32,
/* 13567*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13569*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13577*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 13580*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13588*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13591*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13598*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13601*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13608*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13617*/              /*Scope*/ 55, /*->13673*/
/* 13618*/                OPC_CheckType, MVT::i1,
/* 13620*/                OPC_MoveParent,
/* 13621*/                OPC_CheckType, MVT::i64,
/* 13623*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13625*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13633*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 13636*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13644*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13647*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13654*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13657*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13664*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13673*/              0, /*End of Scope*/
/* 13674*/            /*Scope*/ 114, /*->13789*/
/* 13675*/              OPC_CheckChild2CondCode, ISD::SETO,
/* 13677*/              OPC_Scope, 53, /*->13732*/ // 2 children in Scope
/* 13679*/                OPC_MoveParent,
/* 13680*/                OPC_CheckType, MVT::i32,
/* 13682*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13684*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13692*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 13695*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13703*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13706*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13713*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13716*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13723*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13732*/              /*Scope*/ 55, /*->13788*/
/* 13733*/                OPC_CheckType, MVT::i1,
/* 13735*/                OPC_MoveParent,
/* 13736*/                OPC_CheckType, MVT::i64,
/* 13738*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 13740*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13748*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 13751*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13759*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13762*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13769*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13772*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13779*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13788*/              0, /*End of Scope*/
/* 13789*/            /*Scope*/ 114, /*->13904*/
/* 13790*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 13792*/              OPC_Scope, 53, /*->13847*/ // 2 children in Scope
/* 13794*/                OPC_MoveParent,
/* 13795*/                OPC_CheckType, MVT::i32,
/* 13797*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 13799*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13807*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13810*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13818*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13821*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13828*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13831*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13838*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13847*/              /*Scope*/ 55, /*->13903*/
/* 13848*/                OPC_CheckType, MVT::i1,
/* 13850*/                OPC_MoveParent,
/* 13851*/                OPC_CheckType, MVT::i64,
/* 13853*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 13855*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13863*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13866*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13874*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13877*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13884*/                OPC_EmitInteger, MVT::i64, 1, 
/* 13887*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 13894*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 13903*/              0, /*End of Scope*/
/* 13904*/            /*Scope*/ 114, /*->14019*/
/* 13905*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 13907*/              OPC_Scope, 53, /*->13962*/ // 2 children in Scope
/* 13909*/                OPC_MoveParent,
/* 13910*/                OPC_CheckType, MVT::i32,
/* 13912*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 13914*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13922*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13925*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13933*/                OPC_EmitInteger, MVT::i32, 0, 
/* 13936*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 13943*/                OPC_EmitInteger, MVT::i32, 1, 
/* 13946*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 13953*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 13962*/              /*Scope*/ 55, /*->14018*/
/* 13963*/                OPC_CheckType, MVT::i1,
/* 13965*/                OPC_MoveParent,
/* 13966*/                OPC_CheckType, MVT::i64,
/* 13968*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 13970*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 13978*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 13981*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 13989*/                OPC_EmitInteger, MVT::i64, 0, 
/* 13992*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 13999*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14002*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14009*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14018*/              0, /*End of Scope*/
/* 14019*/            /*Scope*/ 114, /*->14134*/
/* 14020*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 14022*/              OPC_Scope, 53, /*->14077*/ // 2 children in Scope
/* 14024*/                OPC_MoveParent,
/* 14025*/                OPC_CheckType, MVT::i32,
/* 14027*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14029*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14037*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14040*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14048*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14051*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14058*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14061*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14068*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14077*/              /*Scope*/ 55, /*->14133*/
/* 14078*/                OPC_CheckType, MVT::i1,
/* 14080*/                OPC_MoveParent,
/* 14081*/                OPC_CheckType, MVT::i64,
/* 14083*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14085*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14093*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14096*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14104*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14107*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14114*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14117*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14124*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14133*/              0, /*End of Scope*/
/* 14134*/            /*Scope*/ 114, /*->14249*/
/* 14135*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 14137*/              OPC_Scope, 53, /*->14192*/ // 2 children in Scope
/* 14139*/                OPC_MoveParent,
/* 14140*/                OPC_CheckType, MVT::i32,
/* 14142*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14144*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14152*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14155*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14163*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14166*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14173*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14176*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14183*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14192*/              /*Scope*/ 55, /*->14248*/
/* 14193*/                OPC_CheckType, MVT::i1,
/* 14195*/                OPC_MoveParent,
/* 14196*/                OPC_CheckType, MVT::i64,
/* 14198*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14200*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14208*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14211*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14219*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14222*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14229*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14232*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14239*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14248*/              0, /*End of Scope*/
/* 14249*/            /*Scope*/ 114, /*->14364*/
/* 14250*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 14252*/              OPC_Scope, 53, /*->14307*/ // 2 children in Scope
/* 14254*/                OPC_MoveParent,
/* 14255*/                OPC_CheckType, MVT::i32,
/* 14257*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14259*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14267*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14270*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14278*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14281*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14288*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14291*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14298*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14307*/              /*Scope*/ 55, /*->14363*/
/* 14308*/                OPC_CheckType, MVT::i1,
/* 14310*/                OPC_MoveParent,
/* 14311*/                OPC_CheckType, MVT::i64,
/* 14313*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14315*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14323*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14326*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14334*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14337*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14344*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14347*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14354*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14363*/              0, /*End of Scope*/
/* 14364*/            /*Scope*/ 114, /*->14479*/
/* 14365*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 14367*/              OPC_Scope, 53, /*->14422*/ // 2 children in Scope
/* 14369*/                OPC_MoveParent,
/* 14370*/                OPC_CheckType, MVT::i32,
/* 14372*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14374*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14382*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14385*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14393*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14396*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14403*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14406*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14413*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14422*/              /*Scope*/ 55, /*->14478*/
/* 14423*/                OPC_CheckType, MVT::i1,
/* 14425*/                OPC_MoveParent,
/* 14426*/                OPC_CheckType, MVT::i64,
/* 14428*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 14430*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14438*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14441*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14449*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14452*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14459*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14462*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14469*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14478*/              0, /*End of Scope*/
/* 14479*/            0, /*End of Scope*/
/* 14480*/          /*Scope*/ 92|128,11/*1500*/, /*->15982*/
/* 14482*/            OPC_CheckChild0Type, MVT::f64,
/* 14484*/            OPC_RecordChild1, // #1 = $s2
/* 14485*/            OPC_Scope, 114, /*->14601*/ // 13 children in Scope
/* 14487*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 14489*/              OPC_Scope, 53, /*->14544*/ // 2 children in Scope
/* 14491*/                OPC_MoveParent,
/* 14492*/                OPC_CheckType, MVT::i32,
/* 14494*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14496*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14504*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 14507*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14515*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14518*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14525*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14528*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14535*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14544*/              /*Scope*/ 55, /*->14600*/
/* 14545*/                OPC_CheckType, MVT::i1,
/* 14547*/                OPC_MoveParent,
/* 14548*/                OPC_CheckType, MVT::i64,
/* 14550*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14552*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14560*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 14563*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14571*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14574*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14581*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14584*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14591*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14600*/              0, /*End of Scope*/
/* 14601*/            /*Scope*/ 114, /*->14716*/
/* 14602*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 14604*/              OPC_Scope, 53, /*->14659*/ // 2 children in Scope
/* 14606*/                OPC_MoveParent,
/* 14607*/                OPC_CheckType, MVT::i32,
/* 14609*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14611*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14619*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 14622*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14630*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14633*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14640*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14643*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14650*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14659*/              /*Scope*/ 55, /*->14715*/
/* 14660*/                OPC_CheckType, MVT::i1,
/* 14662*/                OPC_MoveParent,
/* 14663*/                OPC_CheckType, MVT::i64,
/* 14665*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14667*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14675*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 14678*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14686*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14689*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14696*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14699*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14706*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14715*/              0, /*End of Scope*/
/* 14716*/            /*Scope*/ 114, /*->14831*/
/* 14717*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 14719*/              OPC_Scope, 53, /*->14774*/ // 2 children in Scope
/* 14721*/                OPC_MoveParent,
/* 14722*/                OPC_CheckType, MVT::i32,
/* 14724*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14726*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14734*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14737*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14745*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14748*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14755*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14758*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14765*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14774*/              /*Scope*/ 55, /*->14830*/
/* 14775*/                OPC_CheckType, MVT::i1,
/* 14777*/                OPC_MoveParent,
/* 14778*/                OPC_CheckType, MVT::i64,
/* 14780*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14782*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14790*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14793*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14801*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14804*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14811*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14814*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14821*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14830*/              0, /*End of Scope*/
/* 14831*/            /*Scope*/ 114, /*->14946*/
/* 14832*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 14834*/              OPC_Scope, 53, /*->14889*/ // 2 children in Scope
/* 14836*/                OPC_MoveParent,
/* 14837*/                OPC_CheckType, MVT::i32,
/* 14839*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14841*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14849*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14852*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14860*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14863*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14870*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14873*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14880*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 14889*/              /*Scope*/ 55, /*->14945*/
/* 14890*/                OPC_CheckType, MVT::i1,
/* 14892*/                OPC_MoveParent,
/* 14893*/                OPC_CheckType, MVT::i64,
/* 14895*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14897*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14905*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 14908*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14916*/                OPC_EmitInteger, MVT::i64, 0, 
/* 14919*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 14926*/                OPC_EmitInteger, MVT::i64, 1, 
/* 14929*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 14936*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 14945*/              0, /*End of Scope*/
/* 14946*/            /*Scope*/ 114, /*->15061*/
/* 14947*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 14949*/              OPC_Scope, 53, /*->15004*/ // 2 children in Scope
/* 14951*/                OPC_MoveParent,
/* 14952*/                OPC_CheckType, MVT::i32,
/* 14954*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 14956*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 14964*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 14967*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 14975*/                OPC_EmitInteger, MVT::i32, 0, 
/* 14978*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 14985*/                OPC_EmitInteger, MVT::i32, 1, 
/* 14988*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 14995*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15004*/              /*Scope*/ 55, /*->15060*/
/* 15005*/                OPC_CheckType, MVT::i1,
/* 15007*/                OPC_MoveParent,
/* 15008*/                OPC_CheckType, MVT::i64,
/* 15010*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 15012*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15020*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 15023*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15031*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15034*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15041*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15044*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15051*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15060*/              0, /*End of Scope*/
/* 15061*/            /*Scope*/ 114, /*->15176*/
/* 15062*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 15064*/              OPC_Scope, 53, /*->15119*/ // 2 children in Scope
/* 15066*/                OPC_MoveParent,
/* 15067*/                OPC_CheckType, MVT::i32,
/* 15069*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 15071*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15079*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 15082*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15090*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15093*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15100*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15103*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15110*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15119*/              /*Scope*/ 55, /*->15175*/
/* 15120*/                OPC_CheckType, MVT::i1,
/* 15122*/                OPC_MoveParent,
/* 15123*/                OPC_CheckType, MVT::i64,
/* 15125*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 15127*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15135*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 15138*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15146*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15149*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15156*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15159*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15166*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15175*/              0, /*End of Scope*/
/* 15176*/            /*Scope*/ 114, /*->15291*/
/* 15177*/              OPC_CheckChild2CondCode, ISD::SETO,
/* 15179*/              OPC_Scope, 53, /*->15234*/ // 2 children in Scope
/* 15181*/                OPC_MoveParent,
/* 15182*/                OPC_CheckType, MVT::i32,
/* 15184*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 15186*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15194*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 15197*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15205*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15208*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15215*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15218*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15225*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15234*/              /*Scope*/ 55, /*->15290*/
/* 15235*/                OPC_CheckType, MVT::i1,
/* 15237*/                OPC_MoveParent,
/* 15238*/                OPC_CheckType, MVT::i64,
/* 15240*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 15242*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15250*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 15253*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15261*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15264*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15271*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15274*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15281*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15290*/              0, /*End of Scope*/
/* 15291*/            /*Scope*/ 114, /*->15406*/
/* 15292*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 15294*/              OPC_Scope, 53, /*->15349*/ // 2 children in Scope
/* 15296*/                OPC_MoveParent,
/* 15297*/                OPC_CheckType, MVT::i32,
/* 15299*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15301*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15309*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15312*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15320*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15323*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15330*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15333*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15340*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15349*/              /*Scope*/ 55, /*->15405*/
/* 15350*/                OPC_CheckType, MVT::i1,
/* 15352*/                OPC_MoveParent,
/* 15353*/                OPC_CheckType, MVT::i64,
/* 15355*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15357*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15365*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15368*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15376*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15379*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15386*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15389*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15396*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15405*/              0, /*End of Scope*/
/* 15406*/            /*Scope*/ 114, /*->15521*/
/* 15407*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 15409*/              OPC_Scope, 53, /*->15464*/ // 2 children in Scope
/* 15411*/                OPC_MoveParent,
/* 15412*/                OPC_CheckType, MVT::i32,
/* 15414*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15416*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15424*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15427*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15435*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15438*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15445*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15448*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15455*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15464*/              /*Scope*/ 55, /*->15520*/
/* 15465*/                OPC_CheckType, MVT::i1,
/* 15467*/                OPC_MoveParent,
/* 15468*/                OPC_CheckType, MVT::i64,
/* 15470*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15472*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15480*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15483*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15491*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15494*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15501*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15504*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15511*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15520*/              0, /*End of Scope*/
/* 15521*/            /*Scope*/ 114, /*->15636*/
/* 15522*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 15524*/              OPC_Scope, 53, /*->15579*/ // 2 children in Scope
/* 15526*/                OPC_MoveParent,
/* 15527*/                OPC_CheckType, MVT::i32,
/* 15529*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15531*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15539*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15542*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15550*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15553*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15560*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15563*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15570*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15579*/              /*Scope*/ 55, /*->15635*/
/* 15580*/                OPC_CheckType, MVT::i1,
/* 15582*/                OPC_MoveParent,
/* 15583*/                OPC_CheckType, MVT::i64,
/* 15585*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15587*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15595*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15598*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15606*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15609*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15616*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15619*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15626*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15635*/              0, /*End of Scope*/
/* 15636*/            /*Scope*/ 114, /*->15751*/
/* 15637*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 15639*/              OPC_Scope, 53, /*->15694*/ // 2 children in Scope
/* 15641*/                OPC_MoveParent,
/* 15642*/                OPC_CheckType, MVT::i32,
/* 15644*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15646*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15654*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15657*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15665*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15668*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15675*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15678*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15685*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15694*/              /*Scope*/ 55, /*->15750*/
/* 15695*/                OPC_CheckType, MVT::i1,
/* 15697*/                OPC_MoveParent,
/* 15698*/                OPC_CheckType, MVT::i64,
/* 15700*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15702*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15710*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15713*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15721*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15724*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15731*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15734*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15741*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15750*/              0, /*End of Scope*/
/* 15751*/            /*Scope*/ 114, /*->15866*/
/* 15752*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 15754*/              OPC_Scope, 53, /*->15809*/ // 2 children in Scope
/* 15756*/                OPC_MoveParent,
/* 15757*/                OPC_CheckType, MVT::i32,
/* 15759*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15761*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15769*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15772*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15780*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15783*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15790*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15793*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15800*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15809*/              /*Scope*/ 55, /*->15865*/
/* 15810*/                OPC_CheckType, MVT::i1,
/* 15812*/                OPC_MoveParent,
/* 15813*/                OPC_CheckType, MVT::i64,
/* 15815*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15817*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15825*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15828*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15836*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15839*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15846*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15849*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15856*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15865*/              0, /*End of Scope*/
/* 15866*/            /*Scope*/ 114, /*->15981*/
/* 15867*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 15869*/              OPC_Scope, 53, /*->15924*/ // 2 children in Scope
/* 15871*/                OPC_MoveParent,
/* 15872*/                OPC_CheckType, MVT::i32,
/* 15874*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15876*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15884*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15887*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15895*/                OPC_EmitInteger, MVT::i32, 0, 
/* 15898*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 15905*/                OPC_EmitInteger, MVT::i32, 1, 
/* 15908*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 15915*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 15924*/              /*Scope*/ 55, /*->15980*/
/* 15925*/                OPC_CheckType, MVT::i1,
/* 15927*/                OPC_MoveParent,
/* 15928*/                OPC_CheckType, MVT::i64,
/* 15930*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 15932*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 15940*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 15943*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 15951*/                OPC_EmitInteger, MVT::i64, 0, 
/* 15954*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 15961*/                OPC_EmitInteger, MVT::i64, 1, 
/* 15964*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 15971*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 15980*/              0, /*End of Scope*/
/* 15981*/            0, /*End of Scope*/
/* 15982*/          /*Scope*/ 42|128,6/*810*/, /*->16794*/
/* 15984*/            OPC_CheckChild0Type, MVT::f128,
/* 15986*/            OPC_RecordChild1, // #1 = $s2
/* 15987*/            OPC_Scope, 114, /*->16103*/ // 7 children in Scope
/* 15989*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 15991*/              OPC_Scope, 53, /*->16046*/ // 2 children in Scope
/* 15993*/                OPC_MoveParent,
/* 15994*/                OPC_CheckType, MVT::i32,
/* 15996*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 15998*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16006*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 16009*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16017*/                OPC_EmitInteger, MVT::i32, 0, 
/* 16020*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 16027*/                OPC_EmitInteger, MVT::i32, 1, 
/* 16030*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 16037*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 16046*/              /*Scope*/ 55, /*->16102*/
/* 16047*/                OPC_CheckType, MVT::i1,
/* 16049*/                OPC_MoveParent,
/* 16050*/                OPC_CheckType, MVT::i64,
/* 16052*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16054*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16062*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 16065*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16073*/                OPC_EmitInteger, MVT::i64, 0, 
/* 16076*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 16083*/                OPC_EmitInteger, MVT::i64, 1, 
/* 16086*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 16093*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 16102*/              0, /*End of Scope*/
/* 16103*/            /*Scope*/ 114, /*->16218*/
/* 16104*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 16106*/              OPC_Scope, 53, /*->16161*/ // 2 children in Scope
/* 16108*/                OPC_MoveParent,
/* 16109*/                OPC_CheckType, MVT::i32,
/* 16111*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16113*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16121*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 16124*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16132*/                OPC_EmitInteger, MVT::i32, 0, 
/* 16135*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 16142*/                OPC_EmitInteger, MVT::i32, 1, 
/* 16145*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 16152*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 16161*/              /*Scope*/ 55, /*->16217*/
/* 16162*/                OPC_CheckType, MVT::i1,
/* 16164*/                OPC_MoveParent,
/* 16165*/                OPC_CheckType, MVT::i64,
/* 16167*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16169*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16177*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 16180*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16188*/                OPC_EmitInteger, MVT::i64, 0, 
/* 16191*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 16198*/                OPC_EmitInteger, MVT::i64, 1, 
/* 16201*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 16208*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 16217*/              0, /*End of Scope*/
/* 16218*/            /*Scope*/ 114, /*->16333*/
/* 16219*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 16221*/              OPC_Scope, 53, /*->16276*/ // 2 children in Scope
/* 16223*/                OPC_MoveParent,
/* 16224*/                OPC_CheckType, MVT::i32,
/* 16226*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16228*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16236*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 16239*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16247*/                OPC_EmitInteger, MVT::i32, 0, 
/* 16250*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 16257*/                OPC_EmitInteger, MVT::i32, 1, 
/* 16260*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 16267*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 16276*/              /*Scope*/ 55, /*->16332*/
/* 16277*/                OPC_CheckType, MVT::i1,
/* 16279*/                OPC_MoveParent,
/* 16280*/                OPC_CheckType, MVT::i64,
/* 16282*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16284*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16292*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 16295*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16303*/                OPC_EmitInteger, MVT::i64, 0, 
/* 16306*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 16313*/                OPC_EmitInteger, MVT::i64, 1, 
/* 16316*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 16323*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 16332*/              0, /*End of Scope*/
/* 16333*/            /*Scope*/ 114, /*->16448*/
/* 16334*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 16336*/              OPC_Scope, 53, /*->16391*/ // 2 children in Scope
/* 16338*/                OPC_MoveParent,
/* 16339*/                OPC_CheckType, MVT::i32,
/* 16341*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16343*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16351*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 16354*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16362*/                OPC_EmitInteger, MVT::i32, 0, 
/* 16365*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 16372*/                OPC_EmitInteger, MVT::i32, 1, 
/* 16375*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 16382*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 16391*/              /*Scope*/ 55, /*->16447*/
/* 16392*/                OPC_CheckType, MVT::i1,
/* 16394*/                OPC_MoveParent,
/* 16395*/                OPC_CheckType, MVT::i64,
/* 16397*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16399*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16407*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 16410*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16418*/                OPC_EmitInteger, MVT::i64, 0, 
/* 16421*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 16428*/                OPC_EmitInteger, MVT::i64, 1, 
/* 16431*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 16438*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 16447*/              0, /*End of Scope*/
/* 16448*/            /*Scope*/ 114, /*->16563*/
/* 16449*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 16451*/              OPC_Scope, 53, /*->16506*/ // 2 children in Scope
/* 16453*/                OPC_MoveParent,
/* 16454*/                OPC_CheckType, MVT::i32,
/* 16456*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16458*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16466*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 16469*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16477*/                OPC_EmitInteger, MVT::i32, 0, 
/* 16480*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 16487*/                OPC_EmitInteger, MVT::i32, 1, 
/* 16490*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 16497*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 16506*/              /*Scope*/ 55, /*->16562*/
/* 16507*/                OPC_CheckType, MVT::i1,
/* 16509*/                OPC_MoveParent,
/* 16510*/                OPC_CheckType, MVT::i64,
/* 16512*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16514*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16522*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 16525*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16533*/                OPC_EmitInteger, MVT::i64, 0, 
/* 16536*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 16543*/                OPC_EmitInteger, MVT::i64, 1, 
/* 16546*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 16553*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 16562*/              0, /*End of Scope*/
/* 16563*/            /*Scope*/ 114, /*->16678*/
/* 16564*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 16566*/              OPC_Scope, 53, /*->16621*/ // 2 children in Scope
/* 16568*/                OPC_MoveParent,
/* 16569*/                OPC_CheckType, MVT::i32,
/* 16571*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16573*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16581*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 16584*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16592*/                OPC_EmitInteger, MVT::i32, 0, 
/* 16595*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 16602*/                OPC_EmitInteger, MVT::i32, 1, 
/* 16605*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 16612*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 16621*/              /*Scope*/ 55, /*->16677*/
/* 16622*/                OPC_CheckType, MVT::i1,
/* 16624*/                OPC_MoveParent,
/* 16625*/                OPC_CheckType, MVT::i64,
/* 16627*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16629*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16637*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 16640*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16648*/                OPC_EmitInteger, MVT::i64, 0, 
/* 16651*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 16658*/                OPC_EmitInteger, MVT::i64, 1, 
/* 16661*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 16668*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 16677*/              0, /*End of Scope*/
/* 16678*/            /*Scope*/ 114, /*->16793*/
/* 16679*/              OPC_CheckChild2CondCode, ISD::SETO,
/* 16681*/              OPC_Scope, 53, /*->16736*/ // 2 children in Scope
/* 16683*/                OPC_MoveParent,
/* 16684*/                OPC_CheckType, MVT::i32,
/* 16686*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16688*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16696*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 16699*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16707*/                OPC_EmitInteger, MVT::i32, 0, 
/* 16710*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 16717*/                OPC_EmitInteger, MVT::i32, 1, 
/* 16720*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 16727*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 16736*/              /*Scope*/ 55, /*->16792*/
/* 16737*/                OPC_CheckType, MVT::i1,
/* 16739*/                OPC_MoveParent,
/* 16740*/                OPC_CheckType, MVT::i64,
/* 16742*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 16744*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 16752*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 16755*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 16763*/                OPC_EmitInteger, MVT::i64, 0, 
/* 16766*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 16773*/                OPC_EmitInteger, MVT::i64, 1, 
/* 16776*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 16783*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (anyext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 16792*/              0, /*End of Scope*/
/* 16793*/            0, /*End of Scope*/
/* 16794*/          0, /*End of Scope*/
/* 16795*/        0, /*End of Scope*/
/* 16796*/      0, // EndSwitchOpcode
/* 16797*/    /*Scope*/ 91, /*->16889*/
/* 16798*/      OPC_RecordChild0, // #0 = $in
/* 16799*/      OPC_SwitchType /*2 cases */, 55, MVT::i64,// ->16857
/* 16802*/        OPC_Scope, 20, /*->16824*/ // 2 children in Scope
/* 16804*/          OPC_CheckChild0Type, MVT::i32,
/* 16806*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                        MVT::i64, 0/*#Ops*/,  // Results = #1
/* 16812*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 16815*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                        MVT::i64, 3/*#Ops*/, 1, 0, 2, 
                    // Src: (anyext:{ *:[i64] } i32:{ *:[i32] }:$in) - Complexity = 3
                    // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$in, sub_32:{ *:[i32] })
/* 16824*/        /*Scope*/ 31, /*->16856*/
/* 16825*/          OPC_CheckChild0Type, MVT::i1,
/* 16827*/          OPC_EmitInteger, MVT::i64, 1, 
/* 16830*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 16837*/          OPC_EmitInteger, MVT::i64, 0, 
/* 16840*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 16847*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                        MVT::i64, 3/*#Ops*/, 0, 2, 4, 
                    // Src: (anyext:{ *:[i64] } i1:{ *:[i1] }:$in) - Complexity = 3
                    // Dst: (SELECT_I8:{ *:[i64] } ?:{ *:[i1] }:$in, (LI8:{ *:[i64] } 1:{ *:[i64] }), (LI8:{ *:[i64] } 0:{ *:[i64] }))
/* 16856*/        0, /*End of Scope*/
/* 16857*/      /*SwitchType*/ 29, MVT::i32,// ->16888
/* 16859*/        OPC_EmitInteger, MVT::i32, 1, 
/* 16862*/        OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                      MVT::i32, 1/*#Ops*/, 1,  // Results = #2
/* 16869*/        OPC_EmitInteger, MVT::i32, 0, 
/* 16872*/        OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                      MVT::i32, 1/*#Ops*/, 3,  // Results = #4
/* 16879*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                      MVT::i32, 3/*#Ops*/, 0, 2, 4, 
                  // Src: (anyext:{ *:[i32] } i1:{ *:[i1] }:$in) - Complexity = 3
                  // Dst: (SELECT_I4:{ *:[i32] } ?:{ *:[i1] }:$in, (LI:{ *:[i32] } 1:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }))
/* 16888*/      0, // EndSwitchType
/* 16889*/    0, /*End of Scope*/
/* 16890*/  /*SwitchOpcode*/ 49|128,76/*9777*/, TARGET_VAL(ISD::ZERO_EXTEND),// ->26671
/* 16894*/    OPC_Scope, 66|128,75/*9666*/, /*->26563*/ // 2 children in Scope
/* 16897*/      OPC_MoveChild0,
/* 16898*/      OPC_SwitchOpcode /*2 cases */, 78|128,2/*334*/, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),// ->17237
/* 16903*/        OPC_RecordChild0, // #0 = $S
/* 16904*/        OPC_CheckChild0Type, MVT::v4i32,
/* 16906*/        OPC_CheckType, MVT::i32,
/* 16908*/        OPC_Scope, 49, /*->16959*/ // 5 children in Scope
/* 16910*/          OPC_CheckChild1Integer, 0, 
/* 16912*/          OPC_MoveParent,
/* 16913*/          OPC_CheckType, MVT::i64,
/* 16915*/          OPC_Scope, 20, /*->16937*/ // 2 children in Scope
/* 16917*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 16919*/            OPC_EmitInteger, MVT::i64, 0, 
/* 16922*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 16929*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v4i32] }:$S)
/* 16937*/          /*Scope*/ 20, /*->16958*/
/* 16938*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 16940*/            OPC_EmitInteger, MVT::i64, 0, 
/* 16943*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 16950*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v4i32] }:$S)
/* 16958*/          0, /*End of Scope*/
/* 16959*/        /*Scope*/ 78, /*->17038*/
/* 16960*/          OPC_CheckChild1Integer, 1, 
/* 16962*/          OPC_MoveParent,
/* 16963*/          OPC_CheckType, MVT::i64,
/* 16965*/          OPC_Scope, 20, /*->16987*/ // 2 children in Scope
/* 16967*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 16969*/            OPC_EmitInteger, MVT::i64, 4, 
/* 16972*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 16979*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v4i32] }:$S)
/* 16987*/          /*Scope*/ 49, /*->17037*/
/* 16988*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 16990*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #1
/* 16996*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 16999*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 17007*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 17010*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 17018*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 17025*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17028*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), sub_32:{ *:[i32] })
/* 17037*/          0, /*End of Scope*/
/* 17038*/        /*Scope*/ 49, /*->17088*/
/* 17039*/          OPC_CheckChild1Integer, 3, 
/* 17041*/          OPC_MoveParent,
/* 17042*/          OPC_CheckType, MVT::i64,
/* 17044*/          OPC_Scope, 20, /*->17066*/ // 2 children in Scope
/* 17046*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 17048*/            OPC_EmitInteger, MVT::i64, 12, 
/* 17051*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 17058*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v4i32] }:$S)
/* 17066*/          /*Scope*/ 20, /*->17087*/
/* 17067*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 17069*/            OPC_EmitInteger, MVT::i64, 12, 
/* 17072*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 17079*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v4i32] }:$S)
/* 17087*/          0, /*End of Scope*/
/* 17088*/        /*Scope*/ 78, /*->17167*/
/* 17089*/          OPC_CheckChild1Integer, 2, 
/* 17091*/          OPC_MoveParent,
/* 17092*/          OPC_CheckType, MVT::i64,
/* 17094*/          OPC_Scope, 20, /*->17116*/ // 2 children in Scope
/* 17096*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 17098*/            OPC_EmitInteger, MVT::i64, 8, 
/* 17101*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 17108*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v4i32] }:$S)
/* 17116*/          /*Scope*/ 49, /*->17166*/
/* 17117*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 17119*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #1
/* 17125*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 17128*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 17136*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 17139*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 17147*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 17154*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17157*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), sub_32:{ *:[i32] })
/* 17166*/          0, /*End of Scope*/
/* 17167*/        /*Scope*/ 68, /*->17236*/
/* 17168*/          OPC_RecordChild1, // #1 = $Idx
/* 17169*/          OPC_CheckChild1Type, MVT::i64,
/* 17171*/          OPC_MoveParent,
/* 17172*/          OPC_CheckType, MVT::i64,
/* 17174*/          OPC_Scope, 29, /*->17205*/ // 2 children in Scope
/* 17176*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 17178*/            OPC_EmitInteger, MVT::i32, 2, 
/* 17181*/            OPC_EmitInteger, MVT::i32, 28, 
/* 17184*/            OPC_EmitInteger, MVT::i32, 29, 
/* 17187*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                          MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 17197*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 5, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                      // Dst: (VEXTUWRX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 2:{ *:[i32] }, 28:{ *:[i32] }, 29:{ *:[i32] }), ?:{ *:[v4i32] }:$S)
/* 17205*/          /*Scope*/ 29, /*->17235*/
/* 17206*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 17208*/            OPC_EmitInteger, MVT::i32, 2, 
/* 17211*/            OPC_EmitInteger, MVT::i32, 28, 
/* 17214*/            OPC_EmitInteger, MVT::i32, 29, 
/* 17217*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                          MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 17227*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 5, 0, 
                      // Src: (zext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                      // Dst: (VEXTUWLX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 2:{ *:[i32] }, 28:{ *:[i32] }, 29:{ *:[i32] }), ?:{ *:[v4i32] }:$S)
/* 17235*/          0, /*End of Scope*/
/* 17236*/        0, /*End of Scope*/
/* 17237*/      /*SwitchOpcode*/ 105|128,72/*9321*/, TARGET_VAL(ISD::SETCC),// ->26562
/* 17241*/        OPC_Scope, 118|128,6/*886*/, /*->18130*/ // 2 children in Scope
/* 17244*/          OPC_MoveChild0,
/* 17245*/          OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 17248*/          OPC_Scope, 87, /*->17337*/ // 8 children in Scope
/* 17250*/            OPC_RecordChild0, // #0 = $s1
/* 17251*/            OPC_MoveChild1,
/* 17252*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 17255*/            OPC_CheckChild0Integer, 1, 
/* 17257*/            OPC_RecordChild1, // #1 = $sa
/* 17258*/            OPC_CheckChild1Type, MVT::i32,
/* 17260*/            OPC_MoveParent,
/* 17261*/            OPC_SwitchType /*2 cases */, 36, MVT::i32,// ->17300
/* 17264*/              OPC_MoveParent,
/* 17265*/              OPC_CheckChild1Integer, 0, 
/* 17267*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 17269*/              OPC_MoveParent,
/* 17270*/              OPC_CheckType, MVT::i32,
/* 17272*/              OPC_EmitInteger, MVT::i32, 32, 
/* 17275*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3 #4
/* 17284*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17287*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17290*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 0, 3, 5, 6, 
                        // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/* 17300*/            /*SwitchType*/ 34, MVT::i64,// ->17336
/* 17302*/              OPC_MoveParent,
/* 17303*/              OPC_CheckChild1Integer, 0, 
/* 17305*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 17307*/              OPC_CheckType, MVT::i1,
/* 17309*/              OPC_MoveParent,
/* 17310*/              OPC_CheckType, MVT::i64,
/* 17312*/              OPC_EmitInteger, MVT::i32, 64, 
/* 17315*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3 #4
/* 17324*/              OPC_EmitInteger, MVT::i32, 63, 
/* 17327*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 0, 3, 5, 
                        // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/* 17336*/            0, // EndSwitchType
/* 17337*/          /*Scope*/ 87, /*->17425*/
/* 17338*/            OPC_MoveChild0,
/* 17339*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 17342*/            OPC_CheckChild0Integer, 1, 
/* 17344*/            OPC_RecordChild1, // #0 = $sa
/* 17345*/            OPC_CheckChild1Type, MVT::i32,
/* 17347*/            OPC_MoveParent,
/* 17348*/            OPC_RecordChild1, // #1 = $s1
/* 17349*/            OPC_SwitchType /*2 cases */, 36, MVT::i32,// ->17388
/* 17352*/              OPC_MoveParent,
/* 17353*/              OPC_CheckChild1Integer, 0, 
/* 17355*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 17357*/              OPC_MoveParent,
/* 17358*/              OPC_CheckType, MVT::i32,
/* 17360*/              OPC_EmitInteger, MVT::i32, 32, 
/* 17363*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3 #4
/* 17372*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17375*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17378*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 1, 3, 5, 6, 
                        // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/* 17388*/            /*SwitchType*/ 34, MVT::i64,// ->17424
/* 17390*/              OPC_MoveParent,
/* 17391*/              OPC_CheckChild1Integer, 0, 
/* 17393*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 17395*/              OPC_CheckType, MVT::i1,
/* 17397*/              OPC_MoveParent,
/* 17398*/              OPC_CheckType, MVT::i64,
/* 17400*/              OPC_EmitInteger, MVT::i32, 64, 
/* 17403*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3 #4
/* 17412*/              OPC_EmitInteger, MVT::i32, 63, 
/* 17415*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 1, 3, 5, 
                        // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/* 17424*/            0, // EndSwitchType
/* 17425*/          /*Scope*/ 19|128,1/*147*/, /*->17574*/
/* 17427*/            OPC_RecordChild0, // #0 = $s1
/* 17428*/            OPC_MoveChild1,
/* 17429*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 17432*/            OPC_CheckChild0Integer, 1, 
/* 17434*/            OPC_RecordChild1, // #1 = $sa
/* 17435*/            OPC_CheckChild1Type, MVT::i32,
/* 17437*/            OPC_MoveParent,
/* 17438*/            OPC_SwitchType /*2 cases */, 86, MVT::i64,// ->17527
/* 17441*/              OPC_MoveParent,
/* 17442*/              OPC_CheckChild1Integer, 0, 
/* 17444*/              OPC_Scope, 40, /*->17486*/ // 2 children in Scope
/* 17446*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 17448*/                OPC_MoveParent,
/* 17449*/                OPC_CheckType, MVT::i32,
/* 17451*/                OPC_EmitInteger, MVT::i32, 64, 
/* 17454*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3 #4
/* 17463*/                OPC_EmitInteger, MVT::i32, 63, 
/* 17466*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 3, 5,  // Results = #6
/* 17475*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17478*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 17486*/              /*Scope*/ 39, /*->17526*/
/* 17487*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 17489*/                OPC_CheckType, MVT::i1,
/* 17491*/                OPC_MoveParent,
/* 17492*/                OPC_CheckType, MVT::i64,
/* 17494*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #2
/* 17502*/                OPC_EmitInteger, MVT::i32, 64, 
/* 17505*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 17514*/                OPC_EmitInteger, MVT::i32, 63, 
/* 17517*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 4, 6, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                          // Dst: (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/* 17526*/              0, /*End of Scope*/
/* 17527*/            /*SwitchType*/ 44, MVT::i32,// ->17573
/* 17529*/              OPC_MoveParent,
/* 17530*/              OPC_CheckChild1Integer, 0, 
/* 17532*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/* 17534*/              OPC_MoveParent,
/* 17535*/              OPC_CheckType, MVT::i32,
/* 17537*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                            MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #2
/* 17545*/              OPC_EmitInteger, MVT::i32, 32, 
/* 17548*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 17557*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17560*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17563*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 2, 4, 6, 7, 
                        // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/* 17573*/            0, // EndSwitchType
/* 17574*/          /*Scope*/ 19|128,1/*147*/, /*->17723*/
/* 17576*/            OPC_MoveChild0,
/* 17577*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 17580*/            OPC_CheckChild0Integer, 1, 
/* 17582*/            OPC_RecordChild1, // #0 = $sa
/* 17583*/            OPC_CheckChild1Type, MVT::i32,
/* 17585*/            OPC_MoveParent,
/* 17586*/            OPC_RecordChild1, // #1 = $s1
/* 17587*/            OPC_SwitchType /*2 cases */, 86, MVT::i64,// ->17676
/* 17590*/              OPC_MoveParent,
/* 17591*/              OPC_CheckChild1Integer, 0, 
/* 17593*/              OPC_Scope, 40, /*->17635*/ // 2 children in Scope
/* 17595*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 17597*/                OPC_MoveParent,
/* 17598*/                OPC_CheckType, MVT::i32,
/* 17600*/                OPC_EmitInteger, MVT::i32, 64, 
/* 17603*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3 #4
/* 17612*/                OPC_EmitInteger, MVT::i32, 63, 
/* 17615*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 3, 5,  // Results = #6
/* 17624*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17627*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 22
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 17635*/              /*Scope*/ 39, /*->17675*/
/* 17636*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 17638*/                OPC_CheckType, MVT::i1,
/* 17640*/                OPC_MoveParent,
/* 17641*/                OPC_CheckType, MVT::i64,
/* 17643*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 1,  // Results = #2
/* 17651*/                OPC_EmitInteger, MVT::i32, 64, 
/* 17654*/                OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                              MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/* 17663*/                OPC_EmitInteger, MVT::i32, 63, 
/* 17666*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 4, 6, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                          // Dst: (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] })
/* 17675*/              0, /*End of Scope*/
/* 17676*/            /*SwitchType*/ 44, MVT::i32,// ->17722
/* 17678*/              OPC_MoveParent,
/* 17679*/              OPC_CheckChild1Integer, 0, 
/* 17681*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/* 17683*/              OPC_MoveParent,
/* 17684*/              OPC_CheckType, MVT::i32,
/* 17686*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                            MVT::i32, 2/*#Ops*/, 1, 1,  // Results = #2
/* 17694*/              OPC_EmitInteger, MVT::i32, 32, 
/* 17697*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/* 17706*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17709*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17712*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 2, 4, 6, 7, 
                        // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] })
/* 17722*/            0, // EndSwitchType
/* 17723*/          /*Scope*/ 124, /*->17848*/
/* 17724*/            OPC_RecordChild0, // #0 = $s1
/* 17725*/            OPC_MoveChild1,
/* 17726*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 17729*/            OPC_CheckChild0Integer, 1, 
/* 17731*/            OPC_RecordChild1, // #1 = $sa
/* 17732*/            OPC_CheckChild1Type, MVT::i32,
/* 17734*/            OPC_MoveParent,
/* 17735*/            OPC_SwitchType /*2 cases */, 56, MVT::i32,// ->17794
/* 17738*/              OPC_MoveParent,
/* 17739*/              OPC_CheckChild1Integer, 0, 
/* 17741*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 17743*/              OPC_CheckType, MVT::i1,
/* 17745*/              OPC_MoveParent,
/* 17746*/              OPC_CheckType, MVT::i64,
/* 17748*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                            MVT::i64, 0/*#Ops*/,  // Results = #2
/* 17754*/              OPC_EmitInteger, MVT::i32, 32, 
/* 17757*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 17766*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17769*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17772*/              OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 0, 4, 6, 7,  // Results = #8
/* 17782*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17785*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                            MVT::i64, 3/*#Ops*/, 2, 8, 9, 
                        // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 17794*/            /*SwitchType*/ 51, MVT::i64,// ->17847
/* 17796*/              OPC_MoveParent,
/* 17797*/              OPC_CheckChild1Integer, 0, 
/* 17799*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/* 17801*/              OPC_MoveParent,
/* 17802*/              OPC_CheckType, MVT::i32,
/* 17804*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                            MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #2
/* 17812*/              OPC_EmitInteger, MVT::i32, 64, 
/* 17815*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 17824*/              OPC_EmitInteger, MVT::i32, 63, 
/* 17827*/              OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 2, 4, 6,  // Results = #7
/* 17836*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17839*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i32, 2/*#Ops*/, 7, 8, 
                        // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } i64:{ *:[i64] }:$s1, (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 17847*/            0, // EndSwitchType
/* 17848*/          /*Scope*/ 124, /*->17973*/
/* 17849*/            OPC_MoveChild0,
/* 17850*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 17853*/            OPC_CheckChild0Integer, 1, 
/* 17855*/            OPC_RecordChild1, // #0 = $sa
/* 17856*/            OPC_CheckChild1Type, MVT::i32,
/* 17858*/            OPC_MoveParent,
/* 17859*/            OPC_RecordChild1, // #1 = $s1
/* 17860*/            OPC_SwitchType /*2 cases */, 56, MVT::i32,// ->17919
/* 17863*/              OPC_MoveParent,
/* 17864*/              OPC_CheckChild1Integer, 0, 
/* 17866*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 17868*/              OPC_CheckType, MVT::i1,
/* 17870*/              OPC_MoveParent,
/* 17871*/              OPC_CheckType, MVT::i64,
/* 17873*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                            MVT::i64, 0/*#Ops*/,  // Results = #2
/* 17879*/              OPC_EmitInteger, MVT::i32, 32, 
/* 17882*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/* 17891*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17894*/              OPC_EmitInteger, MVT::i32, 31, 
/* 17897*/              OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                            MVT::i32, 4/*#Ops*/, 1, 4, 6, 7,  // Results = #8
/* 17907*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17910*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                            MVT::i64, 3/*#Ops*/, 2, 8, 9, 
                        // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 22
                        // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$s1, (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 17919*/            /*SwitchType*/ 51, MVT::i64,// ->17972
/* 17921*/              OPC_MoveParent,
/* 17922*/              OPC_CheckChild1Integer, 0, 
/* 17924*/              OPC_CheckChild2CondCode, ISD::SETEQ,
/* 17926*/              OPC_MoveParent,
/* 17927*/              OPC_CheckType, MVT::i32,
/* 17929*/              OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                            MVT::i64, 2/*#Ops*/, 1, 1,  // Results = #2
/* 17937*/              OPC_EmitInteger, MVT::i32, 64, 
/* 17940*/              OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                            MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4 #5
/* 17949*/              OPC_EmitInteger, MVT::i32, 63, 
/* 17952*/              OPC_EmitNode1, TARGET_VAL(PPC::RLDCL), 0,
                            MVT::i64, 3/*#Ops*/, 2, 4, 6,  // Results = #7
/* 17961*/              OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 17964*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i32, 2/*#Ops*/, 7, 8, 
                        // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } (and:{ *:[i64] } (shl:{ *:[i64] } 1:{ *:[i64] }, i32:{ *:[i32] }:$sa), i64:{ *:[i64] }:$s1), 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 22
                        // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDCL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 64:{ *:[i32] }), 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 17972*/            0, // EndSwitchType
/* 17973*/          /*Scope*/ 77, /*->18051*/
/* 17974*/            OPC_RecordChild0, // #0 = $s1
/* 17975*/            OPC_MoveChild1,
/* 17976*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 17979*/            OPC_CheckChild0Integer, 1, 
/* 17981*/            OPC_RecordChild1, // #1 = $sa
/* 17982*/            OPC_CheckChild1Type, MVT::i32,
/* 17984*/            OPC_MoveParent,
/* 17985*/            OPC_CheckType, MVT::i32,
/* 17987*/            OPC_MoveParent,
/* 17988*/            OPC_CheckChild1Integer, 0, 
/* 17990*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/* 17992*/            OPC_CheckType, MVT::i1,
/* 17994*/            OPC_MoveParent,
/* 17995*/            OPC_CheckType, MVT::i64,
/* 17997*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/* 18003*/            OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                          MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #3
/* 18011*/            OPC_EmitInteger, MVT::i32, 32, 
/* 18014*/            OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                          MVT::i32, MVT::i32, 2/*#Ops*/, 1, 4,  // Results = #5 #6
/* 18023*/            OPC_EmitInteger, MVT::i32, 31, 
/* 18026*/            OPC_EmitInteger, MVT::i32, 31, 
/* 18029*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                          MVT::i32, 4/*#Ops*/, 3, 5, 7, 8,  // Results = #9
/* 18039*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18042*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 9, 10, 
                      // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } i32:{ *:[i32] }:$s1, (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa)), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                      // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18051*/          /*Scope*/ 77, /*->18129*/
/* 18052*/            OPC_MoveChild0,
/* 18053*/            OPC_CheckOpcode, TARGET_VAL(ISD::SHL),
/* 18056*/            OPC_CheckChild0Integer, 1, 
/* 18058*/            OPC_RecordChild1, // #0 = $sa
/* 18059*/            OPC_CheckChild1Type, MVT::i32,
/* 18061*/            OPC_MoveParent,
/* 18062*/            OPC_RecordChild1, // #1 = $s1
/* 18063*/            OPC_CheckType, MVT::i32,
/* 18065*/            OPC_MoveParent,
/* 18066*/            OPC_CheckChild1Integer, 0, 
/* 18068*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/* 18070*/            OPC_CheckType, MVT::i1,
/* 18072*/            OPC_MoveParent,
/* 18073*/            OPC_CheckType, MVT::i64,
/* 18075*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/* 18081*/            OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                          MVT::i32, 2/*#Ops*/, 1, 1,  // Results = #3
/* 18089*/            OPC_EmitInteger, MVT::i32, 32, 
/* 18092*/            OPC_EmitNode2, TARGET_VAL(PPC::SUBFIC), 0,
                          MVT::i32, MVT::i32, 2/*#Ops*/, 0, 4,  // Results = #5 #6
/* 18101*/            OPC_EmitInteger, MVT::i32, 31, 
/* 18104*/            OPC_EmitInteger, MVT::i32, 31, 
/* 18107*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWNM), 0,
                          MVT::i32, 4/*#Ops*/, 3, 5, 7, 8,  // Results = #9
/* 18117*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18120*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 9, 10, 
                      // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } (and:{ *:[i32] } (shl:{ *:[i32] } 1:{ *:[i32] }, i32:{ *:[i32] }:$sa), i32:{ *:[i32] }:$s1), 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 22
                      // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWNM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$sa, 32:{ *:[i32] }), 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18129*/          0, /*End of Scope*/
/* 18130*/        /*Scope*/ 109|128,65/*8429*/, /*->26561*/
/* 18132*/          OPC_RecordChild0, // #0 = $s1
/* 18133*/          OPC_Scope, 73|128,18/*2377*/, /*->20513*/ // 5 children in Scope
/* 18136*/            OPC_CheckChild0Type, MVT::i32,
/* 18138*/            OPC_Scope, 46|128,4/*558*/, /*->18699*/ // 3 children in Scope
/* 18141*/              OPC_CheckChild1Integer, 0, 
/* 18143*/              OPC_Scope, 24, /*->18169*/ // 12 children in Scope
/* 18145*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 18147*/                OPC_MoveParent,
/* 18148*/                OPC_CheckType, MVT::i32,
/* 18150*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18153*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18156*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18159*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 1, 2, 3, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18169*/              /*Scope*/ 31, /*->18201*/
/* 18170*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 18172*/                OPC_MoveParent,
/* 18173*/                OPC_CheckType, MVT::i32,
/* 18175*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/* 18182*/                OPC_EmitInteger, MVT::i32, 27, 
/* 18185*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18188*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18191*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 1, 2, 3, 4, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18201*/              /*Scope*/ 32, /*->18234*/
/* 18202*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 18204*/                OPC_MoveParent,
/* 18205*/                OPC_CheckType, MVT::i32,
/* 18207*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #1
/* 18215*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18218*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18221*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18224*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 1, 2, 3, 4, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18234*/              /*Scope*/ 44, /*->18279*/
/* 18235*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 18237*/                OPC_CheckType, MVT::i1,
/* 18239*/                OPC_MoveParent,
/* 18240*/                OPC_CheckType, MVT::i64,
/* 18242*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18248*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18251*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18254*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18257*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 2, 3, 4,  // Results = #5
/* 18267*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18270*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 5, 6, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18279*/              /*Scope*/ 39, /*->18319*/
/* 18280*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 18282*/                OPC_MoveParent,
/* 18283*/                OPC_CheckType, MVT::i32,
/* 18285*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/* 18292*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC), 0,
                              MVT::i32, 2/*#Ops*/, 1, 0,  // Results = #2
/* 18300*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18303*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18306*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18309*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (ANDC:{ *:[i32] } (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1), ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18319*/              /*Scope*/ 39, /*->18359*/
/* 18320*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 18322*/                OPC_MoveParent,
/* 18323*/                OPC_CheckType, MVT::i32,
/* 18325*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/* 18332*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 18340*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18343*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18346*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18349*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (ORC:{ *:[i32] } ?:{ *:[i32] }:$s1, (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1)), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18359*/              /*Scope*/ 51, /*->18411*/
/* 18360*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 18362*/                OPC_CheckType, MVT::i1,
/* 18364*/                OPC_MoveParent,
/* 18365*/                OPC_CheckType, MVT::i64,
/* 18367*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18373*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/* 18380*/                OPC_EmitInteger, MVT::i32, 27, 
/* 18383*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18386*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18389*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5,  // Results = #6
/* 18399*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18402*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18411*/              /*Scope*/ 46, /*->18458*/
/* 18412*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 18414*/                OPC_MoveParent,
/* 18415*/                OPC_CheckType, MVT::i32,
/* 18417*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #1
/* 18424*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/* 18431*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 1, 2,  // Results = #3
/* 18439*/                OPC_EmitInteger, MVT::i32, 27, 
/* 18442*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18445*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18448*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1)), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18458*/              /*Scope*/ 52, /*->18511*/
/* 18459*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 18461*/                OPC_CheckType, MVT::i1,
/* 18463*/                OPC_MoveParent,
/* 18464*/                OPC_CheckType, MVT::i64,
/* 18466*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18472*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #2
/* 18480*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18483*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18486*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18489*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5,  // Results = #6
/* 18499*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18502*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18511*/              /*Scope*/ 59, /*->18571*/
/* 18512*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 18514*/                OPC_CheckType, MVT::i1,
/* 18516*/                OPC_MoveParent,
/* 18517*/                OPC_CheckType, MVT::i64,
/* 18519*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18525*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/* 18532*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC), 0,
                              MVT::i32, 2/*#Ops*/, 2, 0,  // Results = #3
/* 18540*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18543*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18546*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18549*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6,  // Results = #7
/* 18559*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18562*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 7, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (ANDC:{ *:[i32] } (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1), ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18571*/              /*Scope*/ 59, /*->18631*/
/* 18572*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 18574*/                OPC_CheckType, MVT::i1,
/* 18576*/                OPC_MoveParent,
/* 18577*/                OPC_CheckType, MVT::i64,
/* 18579*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18585*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/* 18592*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 18600*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18603*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18606*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18609*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6,  // Results = #7
/* 18619*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18622*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 7, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (ORC:{ *:[i32] } ?:{ *:[i32] }:$s1, (NEG:{ *:[i32] } ?:{ *:[i32] }:$s1)), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18631*/              /*Scope*/ 66, /*->18698*/
/* 18632*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 18634*/                OPC_CheckType, MVT::i1,
/* 18636*/                OPC_MoveParent,
/* 18637*/                OPC_CheckType, MVT::i64,
/* 18639*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18645*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #2
/* 18652*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZW), 0,
                              MVT::i32, 1/*#Ops*/, 0,  // Results = #3
/* 18659*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 18667*/                OPC_EmitInteger, MVT::i32, 27, 
/* 18670*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18673*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18676*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 4, 5, 6, 7,  // Results = #8
/* 18686*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18689*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 8, 9, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, 0:{ *:[i32] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1), (CNTLZW:{ *:[i32] } ?:{ *:[i32] }:$s1)), 27:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18698*/              0, /*End of Scope*/
/* 18699*/            /*Scope*/ 1|128,3/*385*/, /*->19086*/
/* 18701*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 18712*/              OPC_Scope, 24, /*->18738*/ // 8 children in Scope
/* 18714*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 18716*/                OPC_MoveParent,
/* 18717*/                OPC_CheckType, MVT::i32,
/* 18719*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18722*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18725*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18728*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 1, 2, 3, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18738*/              /*Scope*/ 32, /*->18771*/
/* 18739*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 18741*/                OPC_MoveParent,
/* 18742*/                OPC_CheckType, MVT::i32,
/* 18744*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #1
/* 18752*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18755*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18758*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18761*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 1, 2, 3, 4, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18771*/              /*Scope*/ 43, /*->18815*/
/* 18772*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 18774*/                OPC_MoveParent,
/* 18775*/                OPC_CheckType, MVT::i32,
/* 18777*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18780*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 18788*/                OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 18796*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18799*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18802*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18805*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (AND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18815*/              /*Scope*/ 43, /*->18859*/
/* 18816*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 18818*/                OPC_MoveParent,
/* 18819*/                OPC_CheckType, MVT::i32,
/* 18821*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18824*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 18832*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 18840*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18843*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18846*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18849*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 3, 4, 5, 6, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLWINM:{ *:[i32] } (NAND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] })
/* 18859*/              /*Scope*/ 44, /*->18904*/
/* 18860*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 18862*/                OPC_CheckType, MVT::i1,
/* 18864*/                OPC_MoveParent,
/* 18865*/                OPC_CheckType, MVT::i64,
/* 18867*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18873*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18876*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18879*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18882*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 0, 2, 3, 4,  // Results = #5
/* 18892*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18895*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 5, 6, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18904*/              /*Scope*/ 52, /*->18957*/
/* 18905*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 18907*/                OPC_CheckType, MVT::i1,
/* 18909*/                OPC_MoveParent,
/* 18910*/                OPC_CheckType, MVT::i64,
/* 18912*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18918*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR), 0,
                              MVT::i32, 2/*#Ops*/, 0, 0,  // Results = #2
/* 18926*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18929*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18932*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18935*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 2, 3, 4, 5,  // Results = #6
/* 18945*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 18948*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 6, 7, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NOR:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s1), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 18957*/              /*Scope*/ 63, /*->19021*/
/* 18958*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 18960*/                OPC_CheckType, MVT::i1,
/* 18962*/                OPC_MoveParent,
/* 18963*/                OPC_CheckType, MVT::i64,
/* 18965*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 18971*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18974*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 18982*/                OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 18990*/                OPC_EmitInteger, MVT::i32, 1, 
/* 18993*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18996*/                OPC_EmitInteger, MVT::i32, 31, 
/* 18999*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 4, 5, 6, 7,  // Results = #8
/* 19009*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 19012*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 8, 9, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (AND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 19021*/              /*Scope*/ 63, /*->19085*/
/* 19022*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 19024*/                OPC_CheckType, MVT::i1,
/* 19026*/                OPC_MoveParent,
/* 19027*/                OPC_CheckType, MVT::i64,
/* 19029*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                              MVT::i64, 0/*#Ops*/,  // Results = #1
/* 19035*/                OPC_EmitInteger, MVT::i32, 1, 
/* 19038*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19046*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND), 0,
                              MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 19054*/                OPC_EmitInteger, MVT::i32, 1, 
/* 19057*/                OPC_EmitInteger, MVT::i32, 31, 
/* 19060*/                OPC_EmitInteger, MVT::i32, 31, 
/* 19063*/                OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                              MVT::i32, 4/*#Ops*/, 4, 5, 6, 7,  // Results = #8
/* 19073*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 19076*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                              MVT::i64, 3/*#Ops*/, 1, 8, 9, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, -1:{ *:[i32] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWINM:{ *:[i32] } (NAND:{ *:[i32] } ?:{ *:[i32] }:$s1, (ADDI:{ *:[i32] } ?:{ *:[i32] }:$s1, 1:{ *:[i32] })), 1:{ *:[i32] }, 31:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] })
/* 19085*/              0, /*End of Scope*/
/* 19086*/            /*Scope*/ 16|128,11/*1424*/, /*->20512*/
/* 19088*/              OPC_RecordChild1, // #1 = $imm
/* 19089*/              OPC_Scope, 96|128,6/*864*/, /*->19956*/ // 6 children in Scope
/* 19092*/                OPC_MoveChild1,
/* 19093*/                OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 19096*/                OPC_Scope, 117, /*->19215*/ // 6 children in Scope
/* 19098*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 19100*/                  OPC_MoveParent,
/* 19101*/                  OPC_CheckChild2CondCode, ISD::SETUGE,
/* 19103*/                  OPC_Scope, 53, /*->19158*/ // 2 children in Scope
/* 19105*/                    OPC_MoveParent,
/* 19106*/                    OPC_CheckType, MVT::i32,
/* 19108*/                    OPC_EmitConvertToTarget, 1,
/* 19110*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19118*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 19121*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19129*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 19132*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 19139*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 19142*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 19149*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 19158*/                  /*Scope*/ 55, /*->19214*/
/* 19159*/                    OPC_CheckType, MVT::i1,
/* 19161*/                    OPC_MoveParent,
/* 19162*/                    OPC_CheckType, MVT::i64,
/* 19164*/                    OPC_EmitConvertToTarget, 1,
/* 19166*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19174*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 19177*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19185*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 19188*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 19195*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 19198*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 19205*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 19214*/                  0, /*End of Scope*/
/* 19215*/                /*Scope*/ 117, /*->19333*/
/* 19216*/                  OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 19218*/                  OPC_MoveParent,
/* 19219*/                  OPC_CheckChild2CondCode, ISD::SETGE,
/* 19221*/                  OPC_Scope, 53, /*->19276*/ // 2 children in Scope
/* 19223*/                    OPC_MoveParent,
/* 19224*/                    OPC_CheckType, MVT::i32,
/* 19226*/                    OPC_EmitConvertToTarget, 1,
/* 19228*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19236*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 19239*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19247*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 19250*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 19257*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 19260*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 19267*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 19276*/                  /*Scope*/ 55, /*->19332*/
/* 19277*/                    OPC_CheckType, MVT::i1,
/* 19279*/                    OPC_MoveParent,
/* 19280*/                    OPC_CheckType, MVT::i64,
/* 19282*/                    OPC_EmitConvertToTarget, 1,
/* 19284*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19292*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 19295*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19303*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 19306*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 19313*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 19316*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 19323*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 19332*/                  0, /*End of Scope*/
/* 19333*/                /*Scope*/ 117, /*->19451*/
/* 19334*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 19336*/                  OPC_MoveParent,
/* 19337*/                  OPC_CheckChild2CondCode, ISD::SETULE,
/* 19339*/                  OPC_Scope, 53, /*->19394*/ // 2 children in Scope
/* 19341*/                    OPC_MoveParent,
/* 19342*/                    OPC_CheckType, MVT::i32,
/* 19344*/                    OPC_EmitConvertToTarget, 1,
/* 19346*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19354*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 19357*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19365*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 19368*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 19375*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 19378*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 19385*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 19394*/                  /*Scope*/ 55, /*->19450*/
/* 19395*/                    OPC_CheckType, MVT::i1,
/* 19397*/                    OPC_MoveParent,
/* 19398*/                    OPC_CheckType, MVT::i64,
/* 19400*/                    OPC_EmitConvertToTarget, 1,
/* 19402*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19410*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 19413*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19421*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 19424*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 19431*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 19434*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 19441*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 19450*/                  0, /*End of Scope*/
/* 19451*/                /*Scope*/ 107|128,1/*235*/, /*->19688*/
/* 19453*/                  OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 19455*/                  OPC_MoveParent,
/* 19456*/                  OPC_Scope, 114, /*->19572*/ // 2 children in Scope
/* 19458*/                    OPC_CheckChild2CondCode, ISD::SETLE,
/* 19460*/                    OPC_Scope, 53, /*->19515*/ // 2 children in Scope
/* 19462*/                      OPC_MoveParent,
/* 19463*/                      OPC_CheckType, MVT::i32,
/* 19465*/                      OPC_EmitConvertToTarget, 1,
/* 19467*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19475*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 19478*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19486*/                      OPC_EmitInteger, MVT::i32, 0, 
/* 19489*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 19496*/                      OPC_EmitInteger, MVT::i32, 1, 
/* 19499*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 19506*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 19515*/                    /*Scope*/ 55, /*->19571*/
/* 19516*/                      OPC_CheckType, MVT::i1,
/* 19518*/                      OPC_MoveParent,
/* 19519*/                      OPC_CheckType, MVT::i64,
/* 19521*/                      OPC_EmitConvertToTarget, 1,
/* 19523*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19531*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 19534*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19542*/                      OPC_EmitInteger, MVT::i64, 0, 
/* 19545*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 19552*/                      OPC_EmitInteger, MVT::i64, 1, 
/* 19555*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 19562*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 19571*/                    0, /*End of Scope*/
/* 19572*/                  /*Scope*/ 114, /*->19687*/
/* 19573*/                    OPC_CheckChild2CondCode, ISD::SETNE,
/* 19575*/                    OPC_Scope, 53, /*->19630*/ // 2 children in Scope
/* 19577*/                      OPC_MoveParent,
/* 19578*/                      OPC_CheckType, MVT::i32,
/* 19580*/                      OPC_EmitConvertToTarget, 1,
/* 19582*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19590*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 19593*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19601*/                      OPC_EmitInteger, MVT::i32, 0, 
/* 19604*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 19611*/                      OPC_EmitInteger, MVT::i32, 1, 
/* 19614*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 19621*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 19630*/                    /*Scope*/ 55, /*->19686*/
/* 19631*/                      OPC_CheckType, MVT::i1,
/* 19633*/                      OPC_MoveParent,
/* 19634*/                      OPC_CheckType, MVT::i64,
/* 19636*/                      OPC_EmitConvertToTarget, 1,
/* 19638*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19646*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 19649*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19657*/                      OPC_EmitInteger, MVT::i64, 0, 
/* 19660*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 19667*/                      OPC_EmitInteger, MVT::i64, 1, 
/* 19670*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 19677*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 19686*/                    0, /*End of Scope*/
/* 19687*/                  0, /*End of Scope*/
/* 19688*/                /*Scope*/ 117, /*->19806*/
/* 19689*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 19691*/                  OPC_MoveParent,
/* 19692*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/* 19694*/                  OPC_Scope, 53, /*->19749*/ // 2 children in Scope
/* 19696*/                    OPC_MoveParent,
/* 19697*/                    OPC_CheckType, MVT::i32,
/* 19699*/                    OPC_EmitConvertToTarget, 1,
/* 19701*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19709*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 19712*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19720*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 19723*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 19730*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 19733*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 19740*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 19749*/                  /*Scope*/ 55, /*->19805*/
/* 19750*/                    OPC_CheckType, MVT::i1,
/* 19752*/                    OPC_MoveParent,
/* 19753*/                    OPC_CheckType, MVT::i64,
/* 19755*/                    OPC_EmitConvertToTarget, 1,
/* 19757*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 19765*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 19768*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 19776*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 19779*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 19786*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 19789*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 19796*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 19805*/                  0, /*End of Scope*/
/* 19806*/                /*Scope*/ 19|128,1/*147*/, /*->19955*/
/* 19808*/                  OPC_MoveParent,
/* 19809*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/* 19811*/                  OPC_Scope, 69, /*->19882*/ // 2 children in Scope
/* 19813*/                    OPC_MoveParent,
/* 19814*/                    OPC_CheckType, MVT::i32,
/* 19816*/                    OPC_EmitConvertToTarget, 1,
/* 19818*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 19821*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 19829*/                    OPC_EmitConvertToTarget, 1,
/* 19831*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 19834*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 19842*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 19845*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 19853*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 19856*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 10,  // Results = #11
/* 19863*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 19866*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 12,  // Results = #13
/* 19873*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] })) - Complexity = 9
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 19882*/                  /*Scope*/ 71, /*->19954*/
/* 19883*/                    OPC_CheckType, MVT::i1,
/* 19885*/                    OPC_MoveParent,
/* 19886*/                    OPC_CheckType, MVT::i64,
/* 19888*/                    OPC_EmitConvertToTarget, 1,
/* 19890*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 19893*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 19901*/                    OPC_EmitConvertToTarget, 1,
/* 19903*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 19906*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 19914*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 19917*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 19925*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 19928*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 10,  // Results = #11
/* 19935*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 19938*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 12,  // Results = #13
/* 19945*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] })) - Complexity = 9
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 19954*/                  0, /*End of Scope*/
/* 19955*/                0, /*End of Scope*/
/* 19956*/              /*Scope*/ 110, /*->20067*/
/* 19957*/                OPC_CheckChild2CondCode, ISD::SETUGE,
/* 19959*/                OPC_Scope, 51, /*->20012*/ // 2 children in Scope
/* 19961*/                  OPC_MoveParent,
/* 19962*/                  OPC_CheckType, MVT::i32,
/* 19964*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 19972*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 19975*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 19983*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 19986*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 19993*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 19996*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 20003*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 20012*/                /*Scope*/ 53, /*->20066*/
/* 20013*/                  OPC_CheckType, MVT::i1,
/* 20015*/                  OPC_MoveParent,
/* 20016*/                  OPC_CheckType, MVT::i64,
/* 20018*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20026*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 20029*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20037*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 20040*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 20047*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 20050*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 20057*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 20066*/                0, /*End of Scope*/
/* 20067*/              /*Scope*/ 110, /*->20178*/
/* 20068*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 20070*/                OPC_Scope, 51, /*->20123*/ // 2 children in Scope
/* 20072*/                  OPC_MoveParent,
/* 20073*/                  OPC_CheckType, MVT::i32,
/* 20075*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20083*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 20086*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20094*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 20097*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 20104*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 20107*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 20114*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 20123*/                /*Scope*/ 53, /*->20177*/
/* 20124*/                  OPC_CheckType, MVT::i1,
/* 20126*/                  OPC_MoveParent,
/* 20127*/                  OPC_CheckType, MVT::i64,
/* 20129*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20137*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 20140*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20148*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 20151*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 20158*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 20161*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 20168*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 20177*/                0, /*End of Scope*/
/* 20178*/              /*Scope*/ 110, /*->20289*/
/* 20179*/                OPC_CheckChild2CondCode, ISD::SETULE,
/* 20181*/                OPC_Scope, 51, /*->20234*/ // 2 children in Scope
/* 20183*/                  OPC_MoveParent,
/* 20184*/                  OPC_CheckType, MVT::i32,
/* 20186*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20194*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 20197*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20205*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 20208*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 20215*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 20218*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 20225*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 20234*/                /*Scope*/ 53, /*->20288*/
/* 20235*/                  OPC_CheckType, MVT::i1,
/* 20237*/                  OPC_MoveParent,
/* 20238*/                  OPC_CheckType, MVT::i64,
/* 20240*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20248*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 20251*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20259*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 20262*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 20269*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 20272*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 20279*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 20288*/                0, /*End of Scope*/
/* 20289*/              /*Scope*/ 110, /*->20400*/
/* 20290*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 20292*/                OPC_Scope, 51, /*->20345*/ // 2 children in Scope
/* 20294*/                  OPC_MoveParent,
/* 20295*/                  OPC_CheckType, MVT::i32,
/* 20297*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20305*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 20308*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20316*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 20319*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 20326*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 20329*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 20336*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 20345*/                /*Scope*/ 53, /*->20399*/
/* 20346*/                  OPC_CheckType, MVT::i1,
/* 20348*/                  OPC_MoveParent,
/* 20349*/                  OPC_CheckType, MVT::i64,
/* 20351*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20359*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 20362*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20370*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 20373*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 20380*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 20383*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 20390*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 20399*/                0, /*End of Scope*/
/* 20400*/              /*Scope*/ 110, /*->20511*/
/* 20401*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 20403*/                OPC_Scope, 51, /*->20456*/ // 2 children in Scope
/* 20405*/                  OPC_MoveParent,
/* 20406*/                  OPC_CheckType, MVT::i32,
/* 20408*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20416*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 20419*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20427*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 20430*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 20437*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 20440*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 20447*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 20456*/                /*Scope*/ 53, /*->20510*/
/* 20457*/                  OPC_CheckType, MVT::i1,
/* 20459*/                  OPC_MoveParent,
/* 20460*/                  OPC_CheckType, MVT::i64,
/* 20462*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20470*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 20473*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 20481*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 20484*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 20491*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 20494*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 20501*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 20510*/                0, /*End of Scope*/
/* 20511*/              0, /*End of Scope*/
/* 20512*/            0, /*End of Scope*/
/* 20513*/          /*Scope*/ 53|128,17/*2229*/, /*->22744*/
/* 20515*/            OPC_CheckChild0Type, MVT::i64,
/* 20517*/            OPC_Scope, 84|128,3/*468*/, /*->20988*/ // 3 children in Scope
/* 20520*/              OPC_CheckChild1Integer, 0, 
/* 20522*/              OPC_Scope, 22, /*->20546*/ // 12 children in Scope
/* 20524*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 20526*/                OPC_CheckType, MVT::i1,
/* 20528*/                OPC_MoveParent,
/* 20529*/                OPC_CheckType, MVT::i64,
/* 20531*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20534*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20537*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] })
/* 20546*/              /*Scope*/ 29, /*->20576*/
/* 20547*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 20549*/                OPC_CheckType, MVT::i1,
/* 20551*/                OPC_MoveParent,
/* 20552*/                OPC_CheckType, MVT::i64,
/* 20554*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20561*/                OPC_EmitInteger, MVT::i32, 58, 
/* 20564*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20567*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), 58:{ *:[i32] }, 63:{ *:[i32] })
/* 20576*/              /*Scope*/ 31, /*->20608*/
/* 20577*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 20579*/                OPC_MoveParent,
/* 20580*/                OPC_CheckType, MVT::i32,
/* 20582*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20585*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20588*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2,  // Results = #3
/* 20597*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 20600*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 3, 4, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 20608*/              /*Scope*/ 30, /*->20639*/
/* 20609*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 20611*/                OPC_CheckType, MVT::i1,
/* 20613*/                OPC_MoveParent,
/* 20614*/                OPC_CheckType, MVT::i64,
/* 20616*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 20624*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20627*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20630*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 20639*/              /*Scope*/ 38, /*->20678*/
/* 20640*/                OPC_CheckChild2CondCode, ISD::SETEQ,
/* 20642*/                OPC_MoveParent,
/* 20643*/                OPC_CheckType, MVT::i32,
/* 20645*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20652*/                OPC_EmitInteger, MVT::i32, 58, 
/* 20655*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20658*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 20667*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 20670*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 4, 5, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETEQ:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), 58:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 20678*/              /*Scope*/ 39, /*->20718*/
/* 20679*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 20681*/                OPC_MoveParent,
/* 20682*/                OPC_CheckType, MVT::i32,
/* 20684*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 20692*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20695*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20698*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 20707*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 20710*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 4, 5, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 20718*/              /*Scope*/ 37, /*->20756*/
/* 20719*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 20721*/                OPC_CheckType, MVT::i1,
/* 20723*/                OPC_MoveParent,
/* 20724*/                OPC_CheckType, MVT::i64,
/* 20726*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20733*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 0,  // Results = #2
/* 20741*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20744*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20747*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (ANDC8:{ *:[i64] } (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1), ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 20756*/              /*Scope*/ 37, /*->20794*/
/* 20757*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 20759*/                OPC_CheckType, MVT::i1,
/* 20761*/                OPC_MoveParent,
/* 20762*/                OPC_CheckType, MVT::i64,
/* 20764*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20771*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20779*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20782*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20785*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (ORC8:{ *:[i64] } ?:{ *:[i64] }:$s1, (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1)), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 20794*/              /*Scope*/ 44, /*->20839*/
/* 20795*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 20797*/                OPC_CheckType, MVT::i1,
/* 20799*/                OPC_MoveParent,
/* 20800*/                OPC_CheckType, MVT::i64,
/* 20802*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20809*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #2
/* 20816*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 20824*/                OPC_EmitInteger, MVT::i32, 58, 
/* 20827*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20830*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1)), 58:{ *:[i32] }, 63:{ *:[i32] })
/* 20839*/              /*Scope*/ 46, /*->20886*/
/* 20840*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 20842*/                OPC_MoveParent,
/* 20843*/                OPC_CheckType, MVT::i32,
/* 20845*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20852*/                OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 0,  // Results = #2
/* 20860*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20863*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20866*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/* 20875*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 20878*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 5, 6, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (ANDC8:{ *:[i64] } (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1), ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 20886*/              /*Scope*/ 46, /*->20933*/
/* 20887*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 20889*/                OPC_MoveParent,
/* 20890*/                OPC_CheckType, MVT::i32,
/* 20892*/                OPC_EmitNode1, TARGET_VAL(PPC::NEG8), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20899*/                OPC_EmitNode1, TARGET_VAL(PPC::ORC8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 20907*/                OPC_EmitInteger, MVT::i32, 1, 
/* 20910*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20913*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/* 20922*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 20925*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 5, 6, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (ORC8:{ *:[i64] } ?:{ *:[i64] }:$s1, (NEG8:{ *:[i64] } ?:{ *:[i64] }:$s1)), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 20933*/              /*Scope*/ 53, /*->20987*/
/* 20934*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 20936*/                OPC_MoveParent,
/* 20937*/                OPC_CheckType, MVT::i32,
/* 20939*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #1
/* 20946*/                OPC_EmitNode1, TARGET_VAL(PPC::CNTLZD), 0,
                              MVT::i64, 1/*#Ops*/, 0,  // Results = #2
/* 20953*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 20961*/                OPC_EmitInteger, MVT::i32, 58, 
/* 20964*/                OPC_EmitInteger, MVT::i32, 63, 
/* 20967*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5,  // Results = #6
/* 20976*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 20979*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, 0:{ *:[i64] }, SETNE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1), (CNTLZD:{ *:[i64] } ?:{ *:[i64] }:$s1)), 58:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 20987*/              0, /*End of Scope*/
/* 20988*/            /*Scope*/ 69|128,2/*325*/, /*->21315*/
/* 20990*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 21001*/              OPC_Scope, 22, /*->21025*/ // 8 children in Scope
/* 21003*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 21005*/                OPC_CheckType, MVT::i1,
/* 21007*/                OPC_MoveParent,
/* 21008*/                OPC_CheckType, MVT::i64,
/* 21010*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21013*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21016*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] })
/* 21025*/              /*Scope*/ 30, /*->21056*/
/* 21026*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 21028*/                OPC_CheckType, MVT::i1,
/* 21030*/                OPC_MoveParent,
/* 21031*/                OPC_CheckType, MVT::i64,
/* 21033*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 21041*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21044*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21047*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 21056*/              /*Scope*/ 31, /*->21088*/
/* 21057*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 21059*/                OPC_MoveParent,
/* 21060*/                OPC_CheckType, MVT::i32,
/* 21062*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21065*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21068*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 0, 1, 2,  // Results = #3
/* 21077*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 21080*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 3, 4, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 21088*/              /*Scope*/ 41, /*->21130*/
/* 21089*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 21091*/                OPC_CheckType, MVT::i1,
/* 21093*/                OPC_MoveParent,
/* 21094*/                OPC_CheckType, MVT::i64,
/* 21096*/                OPC_EmitInteger, MVT::i64, 1, 
/* 21099*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 21107*/                OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21115*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21118*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21121*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (AND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 21130*/              /*Scope*/ 41, /*->21172*/
/* 21131*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 21133*/                OPC_CheckType, MVT::i1,
/* 21135*/                OPC_MoveParent,
/* 21136*/                OPC_CheckType, MVT::i64,
/* 21138*/                OPC_EmitInteger, MVT::i64, 1, 
/* 21141*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 21149*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21157*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21160*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21163*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (RLDICL:{ *:[i64] } (NAND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] })
/* 21172*/              /*Scope*/ 39, /*->21212*/
/* 21173*/                OPC_CheckChild2CondCode, ISD::SETGT,
/* 21175*/                OPC_MoveParent,
/* 21176*/                OPC_CheckType, MVT::i32,
/* 21178*/                OPC_EmitNode1, TARGET_VAL(PPC::NOR8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 21186*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21189*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21192*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 21201*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 21204*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 4, 5, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NOR8:{ *:[i64] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s1), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 21212*/              /*Scope*/ 50, /*->21263*/
/* 21213*/                OPC_CheckChild2CondCode, ISD::SETLT,
/* 21215*/                OPC_MoveParent,
/* 21216*/                OPC_CheckType, MVT::i32,
/* 21218*/                OPC_EmitInteger, MVT::i64, 1, 
/* 21221*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 21229*/                OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21237*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21240*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21243*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5,  // Results = #6
/* 21252*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 21255*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETLT:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (AND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 21263*/              /*Scope*/ 50, /*->21314*/
/* 21264*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 21266*/                OPC_MoveParent,
/* 21267*/                OPC_CheckType, MVT::i32,
/* 21269*/                OPC_EmitInteger, MVT::i64, 1, 
/* 21272*/                OPC_EmitNode1, TARGET_VAL(PPC::ADDI8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 21280*/                OPC_EmitNode1, TARGET_VAL(PPC::NAND8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21288*/                OPC_EmitInteger, MVT::i32, 1, 
/* 21291*/                OPC_EmitInteger, MVT::i32, 63, 
/* 21294*/                OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                              MVT::i64, 3/*#Ops*/, 3, 4, 5,  // Results = #6
/* 21303*/                OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 21306*/                OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i32, 2/*#Ops*/, 6, 7, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, -1:{ *:[i64] }, SETGE:{ *:[Other] })) - Complexity = 11
                          // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (NAND8:{ *:[i64] } ?:{ *:[i64] }:$s1, (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$s1, 1:{ *:[i64] })), 1:{ *:[i32] }, 63:{ *:[i32] }), sub_32:{ *:[i32] })
/* 21314*/              0, /*End of Scope*/
/* 21315*/            /*Scope*/ 18|128,11/*1426*/, /*->22743*/
/* 21317*/              OPC_RecordChild1, // #1 = $imm
/* 21318*/              OPC_Scope, 98|128,6/*866*/, /*->22187*/ // 6 children in Scope
/* 21321*/                OPC_MoveChild1,
/* 21322*/                OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 21325*/                OPC_Scope, 117, /*->21444*/ // 6 children in Scope
/* 21327*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 21329*/                  OPC_MoveParent,
/* 21330*/                  OPC_CheckChild2CondCode, ISD::SETUGE,
/* 21332*/                  OPC_Scope, 53, /*->21387*/ // 2 children in Scope
/* 21334*/                    OPC_MoveParent,
/* 21335*/                    OPC_CheckType, MVT::i32,
/* 21337*/                    OPC_EmitConvertToTarget, 1,
/* 21339*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21347*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 21350*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21358*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 21361*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 21368*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 21371*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 21378*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 21387*/                  /*Scope*/ 55, /*->21443*/
/* 21388*/                    OPC_CheckType, MVT::i1,
/* 21390*/                    OPC_MoveParent,
/* 21391*/                    OPC_CheckType, MVT::i64,
/* 21393*/                    OPC_EmitConvertToTarget, 1,
/* 21395*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21403*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 21406*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21414*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 21417*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 21424*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 21427*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 21434*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 21443*/                  0, /*End of Scope*/
/* 21444*/                /*Scope*/ 117, /*->21562*/
/* 21445*/                  OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 21447*/                  OPC_MoveParent,
/* 21448*/                  OPC_CheckChild2CondCode, ISD::SETGE,
/* 21450*/                  OPC_Scope, 53, /*->21505*/ // 2 children in Scope
/* 21452*/                    OPC_MoveParent,
/* 21453*/                    OPC_CheckType, MVT::i32,
/* 21455*/                    OPC_EmitConvertToTarget, 1,
/* 21457*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21465*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 21468*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21476*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 21479*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 21486*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 21489*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 21496*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 21505*/                  /*Scope*/ 55, /*->21561*/
/* 21506*/                    OPC_CheckType, MVT::i1,
/* 21508*/                    OPC_MoveParent,
/* 21509*/                    OPC_CheckType, MVT::i64,
/* 21511*/                    OPC_EmitConvertToTarget, 1,
/* 21513*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21521*/                    OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 21524*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21532*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 21535*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 21542*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 21545*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 21552*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 21561*/                  0, /*End of Scope*/
/* 21562*/                /*Scope*/ 117, /*->21680*/
/* 21563*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 21565*/                  OPC_MoveParent,
/* 21566*/                  OPC_CheckChild2CondCode, ISD::SETULE,
/* 21568*/                  OPC_Scope, 53, /*->21623*/ // 2 children in Scope
/* 21570*/                    OPC_MoveParent,
/* 21571*/                    OPC_CheckType, MVT::i32,
/* 21573*/                    OPC_EmitConvertToTarget, 1,
/* 21575*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21583*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 21586*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21594*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 21597*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 21604*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 21607*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 21614*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 21623*/                  /*Scope*/ 55, /*->21679*/
/* 21624*/                    OPC_CheckType, MVT::i1,
/* 21626*/                    OPC_MoveParent,
/* 21627*/                    OPC_CheckType, MVT::i64,
/* 21629*/                    OPC_EmitConvertToTarget, 1,
/* 21631*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21639*/                    OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 21642*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21650*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 21653*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 21660*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 21663*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 21670*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 21679*/                  0, /*End of Scope*/
/* 21680*/                /*Scope*/ 107|128,1/*235*/, /*->21917*/
/* 21682*/                  OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 21684*/                  OPC_MoveParent,
/* 21685*/                  OPC_Scope, 114, /*->21801*/ // 2 children in Scope
/* 21687*/                    OPC_CheckChild2CondCode, ISD::SETLE,
/* 21689*/                    OPC_Scope, 53, /*->21744*/ // 2 children in Scope
/* 21691*/                      OPC_MoveParent,
/* 21692*/                      OPC_CheckType, MVT::i32,
/* 21694*/                      OPC_EmitConvertToTarget, 1,
/* 21696*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21704*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 21707*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21715*/                      OPC_EmitInteger, MVT::i32, 0, 
/* 21718*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 21725*/                      OPC_EmitInteger, MVT::i32, 1, 
/* 21728*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 21735*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 21744*/                    /*Scope*/ 55, /*->21800*/
/* 21745*/                      OPC_CheckType, MVT::i1,
/* 21747*/                      OPC_MoveParent,
/* 21748*/                      OPC_CheckType, MVT::i64,
/* 21750*/                      OPC_EmitConvertToTarget, 1,
/* 21752*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21760*/                      OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 21763*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21771*/                      OPC_EmitInteger, MVT::i64, 0, 
/* 21774*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 21781*/                      OPC_EmitInteger, MVT::i64, 1, 
/* 21784*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 21791*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 21800*/                    0, /*End of Scope*/
/* 21801*/                  /*Scope*/ 114, /*->21916*/
/* 21802*/                    OPC_CheckChild2CondCode, ISD::SETNE,
/* 21804*/                    OPC_Scope, 53, /*->21859*/ // 2 children in Scope
/* 21806*/                      OPC_MoveParent,
/* 21807*/                      OPC_CheckType, MVT::i32,
/* 21809*/                      OPC_EmitConvertToTarget, 1,
/* 21811*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21819*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 21822*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21830*/                      OPC_EmitInteger, MVT::i32, 0, 
/* 21833*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 21840*/                      OPC_EmitInteger, MVT::i32, 1, 
/* 21843*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                    MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 21850*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                    MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 21859*/                    /*Scope*/ 55, /*->21915*/
/* 21860*/                      OPC_CheckType, MVT::i1,
/* 21862*/                      OPC_MoveParent,
/* 21863*/                      OPC_CheckType, MVT::i64,
/* 21865*/                      OPC_EmitConvertToTarget, 1,
/* 21867*/                      OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                    MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21875*/                      OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 21878*/                      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                    MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21886*/                      OPC_EmitInteger, MVT::i64, 0, 
/* 21889*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 21896*/                      OPC_EmitInteger, MVT::i64, 1, 
/* 21899*/                      OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                    MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 21906*/                      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                    MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                                // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                                // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 21915*/                    0, /*End of Scope*/
/* 21916*/                  0, /*End of Scope*/
/* 21917*/                /*Scope*/ 117, /*->22035*/
/* 21918*/                  OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 21920*/                  OPC_MoveParent,
/* 21921*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/* 21923*/                  OPC_Scope, 53, /*->21978*/ // 2 children in Scope
/* 21925*/                    OPC_MoveParent,
/* 21926*/                    OPC_CheckType, MVT::i32,
/* 21928*/                    OPC_EmitConvertToTarget, 1,
/* 21930*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21938*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 21941*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 21949*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 21952*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 21959*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 21962*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 21969*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 21978*/                  /*Scope*/ 55, /*->22034*/
/* 21979*/                    OPC_CheckType, MVT::i1,
/* 21981*/                    OPC_MoveParent,
/* 21982*/                    OPC_CheckType, MVT::i64,
/* 21984*/                    OPC_EmitConvertToTarget, 1,
/* 21986*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 21994*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 21997*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 22005*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 22008*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 22015*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 22018*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 22025*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22034*/                  0, /*End of Scope*/
/* 22035*/                /*Scope*/ 21|128,1/*149*/, /*->22186*/
/* 22037*/                  OPC_CheckPredicate, 15, // Predicate_imm64ZExt32
/* 22039*/                  OPC_MoveParent,
/* 22040*/                  OPC_CheckChild2CondCode, ISD::SETNE,
/* 22042*/                  OPC_Scope, 69, /*->22113*/ // 2 children in Scope
/* 22044*/                    OPC_MoveParent,
/* 22045*/                    OPC_CheckType, MVT::i32,
/* 22047*/                    OPC_EmitConvertToTarget, 1,
/* 22049*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 22052*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                                  MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 22060*/                    OPC_EmitConvertToTarget, 1,
/* 22062*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 22065*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 22073*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 22076*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 22084*/                    OPC_EmitInteger, MVT::i32, 0, 
/* 22087*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 10,  // Results = #11
/* 22094*/                    OPC_EmitInteger, MVT::i32, 1, 
/* 22097*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                  MVT::i32, 1/*#Ops*/, 12,  // Results = #13
/* 22104*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                  MVT::i32, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22113*/                  /*Scope*/ 71, /*->22185*/
/* 22114*/                    OPC_CheckType, MVT::i1,
/* 22116*/                    OPC_MoveParent,
/* 22117*/                    OPC_CheckType, MVT::i64,
/* 22119*/                    OPC_EmitConvertToTarget, 1,
/* 22121*/                    OPC_EmitNodeXForm, 0, 2, // HI16
/* 22124*/                    OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                                  MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 22132*/                    OPC_EmitConvertToTarget, 1,
/* 22134*/                    OPC_EmitNodeXForm, 1, 5, // LO16
/* 22137*/                    OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                                  MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 22145*/                    OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 22148*/                    OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                  MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 22156*/                    OPC_EmitInteger, MVT::i64, 0, 
/* 22159*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 10,  // Results = #11
/* 22166*/                    OPC_EmitInteger, MVT::i64, 1, 
/* 22169*/                    OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                  MVT::i64, 1/*#Ops*/, 12,  // Results = #13
/* 22176*/                    OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                  MVT::i64, 3/*#Ops*/, 9, 11, 13, 
                              // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                              // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22185*/                  0, /*End of Scope*/
/* 22186*/                0, /*End of Scope*/
/* 22187*/              /*Scope*/ 110, /*->22298*/
/* 22188*/                OPC_CheckChild2CondCode, ISD::SETUGE,
/* 22190*/                OPC_Scope, 51, /*->22243*/ // 2 children in Scope
/* 22192*/                  OPC_MoveParent,
/* 22193*/                  OPC_CheckType, MVT::i32,
/* 22195*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22203*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22206*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22214*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 22217*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 22224*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 22227*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 22234*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22243*/                /*Scope*/ 53, /*->22297*/
/* 22244*/                  OPC_CheckType, MVT::i1,
/* 22246*/                  OPC_MoveParent,
/* 22247*/                  OPC_CheckType, MVT::i64,
/* 22249*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22257*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22260*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22268*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 22271*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 22278*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 22281*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 22288*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22297*/                0, /*End of Scope*/
/* 22298*/              /*Scope*/ 110, /*->22409*/
/* 22299*/                OPC_CheckChild2CondCode, ISD::SETGE,
/* 22301*/                OPC_Scope, 51, /*->22354*/ // 2 children in Scope
/* 22303*/                  OPC_MoveParent,
/* 22304*/                  OPC_CheckType, MVT::i32,
/* 22306*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22314*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22317*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22325*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 22328*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 22335*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 22338*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 22345*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22354*/                /*Scope*/ 53, /*->22408*/
/* 22355*/                  OPC_CheckType, MVT::i1,
/* 22357*/                  OPC_MoveParent,
/* 22358*/                  OPC_CheckType, MVT::i64,
/* 22360*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22368*/                  OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22371*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22379*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 22382*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 22389*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 22392*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 22399*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22408*/                0, /*End of Scope*/
/* 22409*/              /*Scope*/ 110, /*->22520*/
/* 22410*/                OPC_CheckChild2CondCode, ISD::SETULE,
/* 22412*/                OPC_Scope, 51, /*->22465*/ // 2 children in Scope
/* 22414*/                  OPC_MoveParent,
/* 22415*/                  OPC_CheckType, MVT::i32,
/* 22417*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22425*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 22428*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22436*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 22439*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 22446*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 22449*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 22456*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22465*/                /*Scope*/ 53, /*->22519*/
/* 22466*/                  OPC_CheckType, MVT::i1,
/* 22468*/                  OPC_MoveParent,
/* 22469*/                  OPC_CheckType, MVT::i64,
/* 22471*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22479*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 22482*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22490*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 22493*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 22500*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 22503*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 22510*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22519*/                0, /*End of Scope*/
/* 22520*/              /*Scope*/ 110, /*->22631*/
/* 22521*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 22523*/                OPC_Scope, 51, /*->22576*/ // 2 children in Scope
/* 22525*/                  OPC_MoveParent,
/* 22526*/                  OPC_CheckType, MVT::i32,
/* 22528*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22536*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 22539*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22547*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 22550*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 22557*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 22560*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 22567*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22576*/                /*Scope*/ 53, /*->22630*/
/* 22577*/                  OPC_CheckType, MVT::i1,
/* 22579*/                  OPC_MoveParent,
/* 22580*/                  OPC_CheckType, MVT::i64,
/* 22582*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22590*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 22593*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22601*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 22604*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 22611*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 22614*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 22621*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22630*/                0, /*End of Scope*/
/* 22631*/              /*Scope*/ 110, /*->22742*/
/* 22632*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 22634*/                OPC_Scope, 51, /*->22687*/ // 2 children in Scope
/* 22636*/                  OPC_MoveParent,
/* 22637*/                  OPC_CheckType, MVT::i32,
/* 22639*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22647*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 22650*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22658*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 22661*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 22668*/                  OPC_EmitInteger, MVT::i32, 1, 
/* 22671*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 22678*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22687*/                /*Scope*/ 53, /*->22741*/
/* 22688*/                  OPC_CheckType, MVT::i1,
/* 22690*/                  OPC_MoveParent,
/* 22691*/                  OPC_CheckType, MVT::i64,
/* 22693*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                                MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22701*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 22704*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22712*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 22715*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 22722*/                  OPC_EmitInteger, MVT::i64, 1, 
/* 22725*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 22732*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                            // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22741*/                0, /*End of Scope*/
/* 22742*/              0, /*End of Scope*/
/* 22743*/            0, /*End of Scope*/
/* 22744*/          /*Scope*/ 92|128,11/*1500*/, /*->24246*/
/* 22746*/            OPC_CheckChild0Type, MVT::f32,
/* 22748*/            OPC_RecordChild1, // #1 = $s2
/* 22749*/            OPC_Scope, 114, /*->22865*/ // 13 children in Scope
/* 22751*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 22753*/              OPC_Scope, 53, /*->22808*/ // 2 children in Scope
/* 22755*/                OPC_MoveParent,
/* 22756*/                OPC_CheckType, MVT::i32,
/* 22758*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 22760*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22768*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22771*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22779*/                OPC_EmitInteger, MVT::i32, 0, 
/* 22782*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 22789*/                OPC_EmitInteger, MVT::i32, 1, 
/* 22792*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 22799*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22808*/              /*Scope*/ 55, /*->22864*/
/* 22809*/                OPC_CheckType, MVT::i1,
/* 22811*/                OPC_MoveParent,
/* 22812*/                OPC_CheckType, MVT::i64,
/* 22814*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 22816*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22824*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22827*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22835*/                OPC_EmitInteger, MVT::i64, 0, 
/* 22838*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 22845*/                OPC_EmitInteger, MVT::i64, 1, 
/* 22848*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 22855*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22864*/              0, /*End of Scope*/
/* 22865*/            /*Scope*/ 114, /*->22980*/
/* 22866*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 22868*/              OPC_Scope, 53, /*->22923*/ // 2 children in Scope
/* 22870*/                OPC_MoveParent,
/* 22871*/                OPC_CheckType, MVT::i32,
/* 22873*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 22875*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22883*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22886*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22894*/                OPC_EmitInteger, MVT::i32, 0, 
/* 22897*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 22904*/                OPC_EmitInteger, MVT::i32, 1, 
/* 22907*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 22914*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 22923*/              /*Scope*/ 55, /*->22979*/
/* 22924*/                OPC_CheckType, MVT::i1,
/* 22926*/                OPC_MoveParent,
/* 22927*/                OPC_CheckType, MVT::i64,
/* 22929*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 22931*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22939*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 22942*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 22950*/                OPC_EmitInteger, MVT::i64, 0, 
/* 22953*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 22960*/                OPC_EmitInteger, MVT::i64, 1, 
/* 22963*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 22970*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 22979*/              0, /*End of Scope*/
/* 22980*/            /*Scope*/ 114, /*->23095*/
/* 22981*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 22983*/              OPC_Scope, 53, /*->23038*/ // 2 children in Scope
/* 22985*/                OPC_MoveParent,
/* 22986*/                OPC_CheckType, MVT::i32,
/* 22988*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 22990*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 22998*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23001*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23009*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23012*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23019*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23022*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23029*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23038*/              /*Scope*/ 55, /*->23094*/
/* 23039*/                OPC_CheckType, MVT::i1,
/* 23041*/                OPC_MoveParent,
/* 23042*/                OPC_CheckType, MVT::i64,
/* 23044*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23046*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23054*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23057*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23065*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23068*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23075*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23078*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23085*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23094*/              0, /*End of Scope*/
/* 23095*/            /*Scope*/ 114, /*->23210*/
/* 23096*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 23098*/              OPC_Scope, 53, /*->23153*/ // 2 children in Scope
/* 23100*/                OPC_MoveParent,
/* 23101*/                OPC_CheckType, MVT::i32,
/* 23103*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23105*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23113*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23116*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23124*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23127*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23134*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23137*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23144*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23153*/              /*Scope*/ 55, /*->23209*/
/* 23154*/                OPC_CheckType, MVT::i1,
/* 23156*/                OPC_MoveParent,
/* 23157*/                OPC_CheckType, MVT::i64,
/* 23159*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23161*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23169*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23172*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23180*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23183*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23190*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23193*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23200*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23209*/              0, /*End of Scope*/
/* 23210*/            /*Scope*/ 114, /*->23325*/
/* 23211*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 23213*/              OPC_Scope, 53, /*->23268*/ // 2 children in Scope
/* 23215*/                OPC_MoveParent,
/* 23216*/                OPC_CheckType, MVT::i32,
/* 23218*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23220*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23228*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 23231*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23239*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23242*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23249*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23252*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23259*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23268*/              /*Scope*/ 55, /*->23324*/
/* 23269*/                OPC_CheckType, MVT::i1,
/* 23271*/                OPC_MoveParent,
/* 23272*/                OPC_CheckType, MVT::i64,
/* 23274*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23276*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23284*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 23287*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23295*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23298*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23305*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23308*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23315*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23324*/              0, /*End of Scope*/
/* 23325*/            /*Scope*/ 114, /*->23440*/
/* 23326*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 23328*/              OPC_Scope, 53, /*->23383*/ // 2 children in Scope
/* 23330*/                OPC_MoveParent,
/* 23331*/                OPC_CheckType, MVT::i32,
/* 23333*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23335*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23343*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 23346*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23354*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23357*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23364*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23367*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23374*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23383*/              /*Scope*/ 55, /*->23439*/
/* 23384*/                OPC_CheckType, MVT::i1,
/* 23386*/                OPC_MoveParent,
/* 23387*/                OPC_CheckType, MVT::i64,
/* 23389*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23391*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23399*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 23402*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23410*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23413*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23420*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23423*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23430*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23439*/              0, /*End of Scope*/
/* 23440*/            /*Scope*/ 114, /*->23555*/
/* 23441*/              OPC_CheckChild2CondCode, ISD::SETO,
/* 23443*/              OPC_Scope, 53, /*->23498*/ // 2 children in Scope
/* 23445*/                OPC_MoveParent,
/* 23446*/                OPC_CheckType, MVT::i32,
/* 23448*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23450*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23458*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 23461*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23469*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23472*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23479*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23482*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23489*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23498*/              /*Scope*/ 55, /*->23554*/
/* 23499*/                OPC_CheckType, MVT::i1,
/* 23501*/                OPC_MoveParent,
/* 23502*/                OPC_CheckType, MVT::i64,
/* 23504*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 23506*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23514*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 23517*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23525*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23528*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23535*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23538*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23545*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23554*/              0, /*End of Scope*/
/* 23555*/            /*Scope*/ 114, /*->23670*/
/* 23556*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 23558*/              OPC_Scope, 53, /*->23613*/ // 2 children in Scope
/* 23560*/                OPC_MoveParent,
/* 23561*/                OPC_CheckType, MVT::i32,
/* 23563*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23565*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23573*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23576*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23584*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23587*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23594*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23597*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23604*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23613*/              /*Scope*/ 55, /*->23669*/
/* 23614*/                OPC_CheckType, MVT::i1,
/* 23616*/                OPC_MoveParent,
/* 23617*/                OPC_CheckType, MVT::i64,
/* 23619*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23621*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23629*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23632*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23640*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23643*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23650*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23653*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23660*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23669*/              0, /*End of Scope*/
/* 23670*/            /*Scope*/ 114, /*->23785*/
/* 23671*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 23673*/              OPC_Scope, 53, /*->23728*/ // 2 children in Scope
/* 23675*/                OPC_MoveParent,
/* 23676*/                OPC_CheckType, MVT::i32,
/* 23678*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23680*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23688*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23691*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23699*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23702*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23709*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23712*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23719*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23728*/              /*Scope*/ 55, /*->23784*/
/* 23729*/                OPC_CheckType, MVT::i1,
/* 23731*/                OPC_MoveParent,
/* 23732*/                OPC_CheckType, MVT::i64,
/* 23734*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23736*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23744*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23747*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23755*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23758*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23765*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23768*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23775*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23784*/              0, /*End of Scope*/
/* 23785*/            /*Scope*/ 114, /*->23900*/
/* 23786*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 23788*/              OPC_Scope, 53, /*->23843*/ // 2 children in Scope
/* 23790*/                OPC_MoveParent,
/* 23791*/                OPC_CheckType, MVT::i32,
/* 23793*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23795*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23803*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23806*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23814*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23817*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23824*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23827*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23834*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23843*/              /*Scope*/ 55, /*->23899*/
/* 23844*/                OPC_CheckType, MVT::i1,
/* 23846*/                OPC_MoveParent,
/* 23847*/                OPC_CheckType, MVT::i64,
/* 23849*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23851*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23859*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23862*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23870*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23873*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23880*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23883*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 23890*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 23899*/              0, /*End of Scope*/
/* 23900*/            /*Scope*/ 114, /*->24015*/
/* 23901*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 23903*/              OPC_Scope, 53, /*->23958*/ // 2 children in Scope
/* 23905*/                OPC_MoveParent,
/* 23906*/                OPC_CheckType, MVT::i32,
/* 23908*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23910*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23918*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23921*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23929*/                OPC_EmitInteger, MVT::i32, 0, 
/* 23932*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 23939*/                OPC_EmitInteger, MVT::i32, 1, 
/* 23942*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 23949*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 23958*/              /*Scope*/ 55, /*->24014*/
/* 23959*/                OPC_CheckType, MVT::i1,
/* 23961*/                OPC_MoveParent,
/* 23962*/                OPC_CheckType, MVT::i64,
/* 23964*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 23966*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 23974*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 23977*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 23985*/                OPC_EmitInteger, MVT::i64, 0, 
/* 23988*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 23995*/                OPC_EmitInteger, MVT::i64, 1, 
/* 23998*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24005*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24014*/              0, /*End of Scope*/
/* 24015*/            /*Scope*/ 114, /*->24130*/
/* 24016*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 24018*/              OPC_Scope, 53, /*->24073*/ // 2 children in Scope
/* 24020*/                OPC_MoveParent,
/* 24021*/                OPC_CheckType, MVT::i32,
/* 24023*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 24025*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24033*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24036*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24044*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24047*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24054*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24057*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24064*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24073*/              /*Scope*/ 55, /*->24129*/
/* 24074*/                OPC_CheckType, MVT::i1,
/* 24076*/                OPC_MoveParent,
/* 24077*/                OPC_CheckType, MVT::i64,
/* 24079*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 24081*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24089*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24092*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24100*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24103*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24110*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24113*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24120*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24129*/              0, /*End of Scope*/
/* 24130*/            /*Scope*/ 114, /*->24245*/
/* 24131*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 24133*/              OPC_Scope, 53, /*->24188*/ // 2 children in Scope
/* 24135*/                OPC_MoveParent,
/* 24136*/                OPC_CheckType, MVT::i32,
/* 24138*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 24140*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24148*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24151*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24159*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24162*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24169*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24172*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24179*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24188*/              /*Scope*/ 55, /*->24244*/
/* 24189*/                OPC_CheckType, MVT::i1,
/* 24191*/                OPC_MoveParent,
/* 24192*/                OPC_CheckType, MVT::i64,
/* 24194*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 24196*/                OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24204*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24207*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24215*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24218*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24225*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24228*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24235*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24244*/              0, /*End of Scope*/
/* 24245*/            0, /*End of Scope*/
/* 24246*/          /*Scope*/ 92|128,11/*1500*/, /*->25748*/
/* 24248*/            OPC_CheckChild0Type, MVT::f64,
/* 24250*/            OPC_RecordChild1, // #1 = $s2
/* 24251*/            OPC_Scope, 114, /*->24367*/ // 13 children in Scope
/* 24253*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 24255*/              OPC_Scope, 53, /*->24310*/ // 2 children in Scope
/* 24257*/                OPC_MoveParent,
/* 24258*/                OPC_CheckType, MVT::i32,
/* 24260*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24262*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24270*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 24273*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24281*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24284*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24291*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24294*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24301*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24310*/              /*Scope*/ 55, /*->24366*/
/* 24311*/                OPC_CheckType, MVT::i1,
/* 24313*/                OPC_MoveParent,
/* 24314*/                OPC_CheckType, MVT::i64,
/* 24316*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24318*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24326*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 24329*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24337*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24340*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24347*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24350*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24357*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24366*/              0, /*End of Scope*/
/* 24367*/            /*Scope*/ 114, /*->24482*/
/* 24368*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 24370*/              OPC_Scope, 53, /*->24425*/ // 2 children in Scope
/* 24372*/                OPC_MoveParent,
/* 24373*/                OPC_CheckType, MVT::i32,
/* 24375*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24377*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24385*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 24388*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24396*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24399*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24406*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24409*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24416*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24425*/              /*Scope*/ 55, /*->24481*/
/* 24426*/                OPC_CheckType, MVT::i1,
/* 24428*/                OPC_MoveParent,
/* 24429*/                OPC_CheckType, MVT::i64,
/* 24431*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24433*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24441*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 24444*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24452*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24455*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24462*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24465*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24472*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24481*/              0, /*End of Scope*/
/* 24482*/            /*Scope*/ 114, /*->24597*/
/* 24483*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 24485*/              OPC_Scope, 53, /*->24540*/ // 2 children in Scope
/* 24487*/                OPC_MoveParent,
/* 24488*/                OPC_CheckType, MVT::i32,
/* 24490*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24492*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24500*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24503*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24511*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24514*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24521*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24524*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24531*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24540*/              /*Scope*/ 55, /*->24596*/
/* 24541*/                OPC_CheckType, MVT::i1,
/* 24543*/                OPC_MoveParent,
/* 24544*/                OPC_CheckType, MVT::i64,
/* 24546*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24548*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24556*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24559*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24567*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24570*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24577*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24580*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24587*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24596*/              0, /*End of Scope*/
/* 24597*/            /*Scope*/ 114, /*->24712*/
/* 24598*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 24600*/              OPC_Scope, 53, /*->24655*/ // 2 children in Scope
/* 24602*/                OPC_MoveParent,
/* 24603*/                OPC_CheckType, MVT::i32,
/* 24605*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24607*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24615*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24618*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24626*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24629*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24636*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24639*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24646*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24655*/              /*Scope*/ 55, /*->24711*/
/* 24656*/                OPC_CheckType, MVT::i1,
/* 24658*/                OPC_MoveParent,
/* 24659*/                OPC_CheckType, MVT::i64,
/* 24661*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24663*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24671*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 24674*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24682*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24685*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24692*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24695*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24702*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24711*/              0, /*End of Scope*/
/* 24712*/            /*Scope*/ 114, /*->24827*/
/* 24713*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 24715*/              OPC_Scope, 53, /*->24770*/ // 2 children in Scope
/* 24717*/                OPC_MoveParent,
/* 24718*/                OPC_CheckType, MVT::i32,
/* 24720*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24722*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24730*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 24733*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24741*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24744*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24751*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24754*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24761*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24770*/              /*Scope*/ 55, /*->24826*/
/* 24771*/                OPC_CheckType, MVT::i1,
/* 24773*/                OPC_MoveParent,
/* 24774*/                OPC_CheckType, MVT::i64,
/* 24776*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24778*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24786*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 24789*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24797*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24800*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24807*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24810*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24817*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24826*/              0, /*End of Scope*/
/* 24827*/            /*Scope*/ 114, /*->24942*/
/* 24828*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 24830*/              OPC_Scope, 53, /*->24885*/ // 2 children in Scope
/* 24832*/                OPC_MoveParent,
/* 24833*/                OPC_CheckType, MVT::i32,
/* 24835*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24837*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24845*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 24848*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24856*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24859*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24866*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24869*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24876*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 24885*/              /*Scope*/ 55, /*->24941*/
/* 24886*/                OPC_CheckType, MVT::i1,
/* 24888*/                OPC_MoveParent,
/* 24889*/                OPC_CheckType, MVT::i64,
/* 24891*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24893*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24901*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 24904*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24912*/                OPC_EmitInteger, MVT::i64, 0, 
/* 24915*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 24922*/                OPC_EmitInteger, MVT::i64, 1, 
/* 24925*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 24932*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 24941*/              0, /*End of Scope*/
/* 24942*/            /*Scope*/ 114, /*->25057*/
/* 24943*/              OPC_CheckChild2CondCode, ISD::SETO,
/* 24945*/              OPC_Scope, 53, /*->25000*/ // 2 children in Scope
/* 24947*/                OPC_MoveParent,
/* 24948*/                OPC_CheckType, MVT::i32,
/* 24950*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 24952*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 24960*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 24963*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 24971*/                OPC_EmitInteger, MVT::i32, 0, 
/* 24974*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 24981*/                OPC_EmitInteger, MVT::i32, 1, 
/* 24984*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 24991*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25000*/              /*Scope*/ 55, /*->25056*/
/* 25001*/                OPC_CheckType, MVT::i1,
/* 25003*/                OPC_MoveParent,
/* 25004*/                OPC_CheckType, MVT::i64,
/* 25006*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 25008*/                OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25016*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 25019*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25027*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25030*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25037*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25040*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25047*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25056*/              0, /*End of Scope*/
/* 25057*/            /*Scope*/ 114, /*->25172*/
/* 25058*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 25060*/              OPC_Scope, 53, /*->25115*/ // 2 children in Scope
/* 25062*/                OPC_MoveParent,
/* 25063*/                OPC_CheckType, MVT::i32,
/* 25065*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25067*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25075*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25078*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25086*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25089*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25096*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25099*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25106*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25115*/              /*Scope*/ 55, /*->25171*/
/* 25116*/                OPC_CheckType, MVT::i1,
/* 25118*/                OPC_MoveParent,
/* 25119*/                OPC_CheckType, MVT::i64,
/* 25121*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25123*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25131*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25134*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25142*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25145*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25152*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25155*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25162*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25171*/              0, /*End of Scope*/
/* 25172*/            /*Scope*/ 114, /*->25287*/
/* 25173*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 25175*/              OPC_Scope, 53, /*->25230*/ // 2 children in Scope
/* 25177*/                OPC_MoveParent,
/* 25178*/                OPC_CheckType, MVT::i32,
/* 25180*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25182*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25190*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25193*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25201*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25204*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25211*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25214*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25221*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25230*/              /*Scope*/ 55, /*->25286*/
/* 25231*/                OPC_CheckType, MVT::i1,
/* 25233*/                OPC_MoveParent,
/* 25234*/                OPC_CheckType, MVT::i64,
/* 25236*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25238*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25246*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25249*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25257*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25260*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25267*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25270*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25277*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25286*/              0, /*End of Scope*/
/* 25287*/            /*Scope*/ 114, /*->25402*/
/* 25288*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 25290*/              OPC_Scope, 53, /*->25345*/ // 2 children in Scope
/* 25292*/                OPC_MoveParent,
/* 25293*/                OPC_CheckType, MVT::i32,
/* 25295*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25297*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25305*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25308*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25316*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25319*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25326*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25329*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25336*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25345*/              /*Scope*/ 55, /*->25401*/
/* 25346*/                OPC_CheckType, MVT::i1,
/* 25348*/                OPC_MoveParent,
/* 25349*/                OPC_CheckType, MVT::i64,
/* 25351*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25353*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25361*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25364*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25372*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25375*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25382*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25385*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25392*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25401*/              0, /*End of Scope*/
/* 25402*/            /*Scope*/ 114, /*->25517*/
/* 25403*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 25405*/              OPC_Scope, 53, /*->25460*/ // 2 children in Scope
/* 25407*/                OPC_MoveParent,
/* 25408*/                OPC_CheckType, MVT::i32,
/* 25410*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25412*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25420*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25423*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25431*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25434*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25441*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25444*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25451*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25460*/              /*Scope*/ 55, /*->25516*/
/* 25461*/                OPC_CheckType, MVT::i1,
/* 25463*/                OPC_MoveParent,
/* 25464*/                OPC_CheckType, MVT::i64,
/* 25466*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25468*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25476*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25479*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25487*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25490*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25497*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25500*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25507*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25516*/              0, /*End of Scope*/
/* 25517*/            /*Scope*/ 114, /*->25632*/
/* 25518*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 25520*/              OPC_Scope, 53, /*->25575*/ // 2 children in Scope
/* 25522*/                OPC_MoveParent,
/* 25523*/                OPC_CheckType, MVT::i32,
/* 25525*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25527*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25535*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25538*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25546*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25549*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25556*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25559*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25566*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25575*/              /*Scope*/ 55, /*->25631*/
/* 25576*/                OPC_CheckType, MVT::i1,
/* 25578*/                OPC_MoveParent,
/* 25579*/                OPC_CheckType, MVT::i64,
/* 25581*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25583*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25591*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25594*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25602*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25605*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25612*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25615*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25622*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25631*/              0, /*End of Scope*/
/* 25632*/            /*Scope*/ 114, /*->25747*/
/* 25633*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 25635*/              OPC_Scope, 53, /*->25690*/ // 2 children in Scope
/* 25637*/                OPC_MoveParent,
/* 25638*/                OPC_CheckType, MVT::i32,
/* 25640*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25642*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25650*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25653*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25661*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25664*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25671*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25674*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25681*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25690*/              /*Scope*/ 55, /*->25746*/
/* 25691*/                OPC_CheckType, MVT::i1,
/* 25693*/                OPC_MoveParent,
/* 25694*/                OPC_CheckType, MVT::i64,
/* 25696*/                OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 25698*/                OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25706*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 25709*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25717*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25720*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25727*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25730*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25737*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25746*/              0, /*End of Scope*/
/* 25747*/            0, /*End of Scope*/
/* 25748*/          /*Scope*/ 42|128,6/*810*/, /*->26560*/
/* 25750*/            OPC_CheckChild0Type, MVT::f128,
/* 25752*/            OPC_RecordChild1, // #1 = $s2
/* 25753*/            OPC_Scope, 114, /*->25869*/ // 7 children in Scope
/* 25755*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 25757*/              OPC_Scope, 53, /*->25812*/ // 2 children in Scope
/* 25759*/                OPC_MoveParent,
/* 25760*/                OPC_CheckType, MVT::i32,
/* 25762*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 25764*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25772*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 25775*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25783*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25786*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25793*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25796*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25803*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25812*/              /*Scope*/ 55, /*->25868*/
/* 25813*/                OPC_CheckType, MVT::i1,
/* 25815*/                OPC_MoveParent,
/* 25816*/                OPC_CheckType, MVT::i64,
/* 25818*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 25820*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25828*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 25831*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25839*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25842*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25849*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25852*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25859*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25868*/              0, /*End of Scope*/
/* 25869*/            /*Scope*/ 114, /*->25984*/
/* 25870*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 25872*/              OPC_Scope, 53, /*->25927*/ // 2 children in Scope
/* 25874*/                OPC_MoveParent,
/* 25875*/                OPC_CheckType, MVT::i32,
/* 25877*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 25879*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25887*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 25890*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25898*/                OPC_EmitInteger, MVT::i32, 0, 
/* 25901*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 25908*/                OPC_EmitInteger, MVT::i32, 1, 
/* 25911*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 25918*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 25927*/              /*Scope*/ 55, /*->25983*/
/* 25928*/                OPC_CheckType, MVT::i1,
/* 25930*/                OPC_MoveParent,
/* 25931*/                OPC_CheckType, MVT::i64,
/* 25933*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 25935*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 25943*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 25946*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 25954*/                OPC_EmitInteger, MVT::i64, 0, 
/* 25957*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 25964*/                OPC_EmitInteger, MVT::i64, 1, 
/* 25967*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 25974*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 25983*/              0, /*End of Scope*/
/* 25984*/            /*Scope*/ 114, /*->26099*/
/* 25985*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 25987*/              OPC_Scope, 53, /*->26042*/ // 2 children in Scope
/* 25989*/                OPC_MoveParent,
/* 25990*/                OPC_CheckType, MVT::i32,
/* 25992*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 25994*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26002*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 26005*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26013*/                OPC_EmitInteger, MVT::i32, 0, 
/* 26016*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 26023*/                OPC_EmitInteger, MVT::i32, 1, 
/* 26026*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 26033*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 26042*/              /*Scope*/ 55, /*->26098*/
/* 26043*/                OPC_CheckType, MVT::i1,
/* 26045*/                OPC_MoveParent,
/* 26046*/                OPC_CheckType, MVT::i64,
/* 26048*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26050*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26058*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 26061*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26069*/                OPC_EmitInteger, MVT::i64, 0, 
/* 26072*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 26079*/                OPC_EmitInteger, MVT::i64, 1, 
/* 26082*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 26089*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 26098*/              0, /*End of Scope*/
/* 26099*/            /*Scope*/ 114, /*->26214*/
/* 26100*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 26102*/              OPC_Scope, 53, /*->26157*/ // 2 children in Scope
/* 26104*/                OPC_MoveParent,
/* 26105*/                OPC_CheckType, MVT::i32,
/* 26107*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26109*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26117*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 26120*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26128*/                OPC_EmitInteger, MVT::i32, 0, 
/* 26131*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 26138*/                OPC_EmitInteger, MVT::i32, 1, 
/* 26141*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 26148*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 26157*/              /*Scope*/ 55, /*->26213*/
/* 26158*/                OPC_CheckType, MVT::i1,
/* 26160*/                OPC_MoveParent,
/* 26161*/                OPC_CheckType, MVT::i64,
/* 26163*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26165*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26173*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 26176*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26184*/                OPC_EmitInteger, MVT::i64, 0, 
/* 26187*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 26194*/                OPC_EmitInteger, MVT::i64, 1, 
/* 26197*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 26204*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 26213*/              0, /*End of Scope*/
/* 26214*/            /*Scope*/ 114, /*->26329*/
/* 26215*/              OPC_CheckChild2CondCode, ISD::SETUNE,
/* 26217*/              OPC_Scope, 53, /*->26272*/ // 2 children in Scope
/* 26219*/                OPC_MoveParent,
/* 26220*/                OPC_CheckType, MVT::i32,
/* 26222*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26224*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26232*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 26235*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26243*/                OPC_EmitInteger, MVT::i32, 0, 
/* 26246*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 26253*/                OPC_EmitInteger, MVT::i32, 1, 
/* 26256*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 26263*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 26272*/              /*Scope*/ 55, /*->26328*/
/* 26273*/                OPC_CheckType, MVT::i1,
/* 26275*/                OPC_MoveParent,
/* 26276*/                OPC_CheckType, MVT::i64,
/* 26278*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26280*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26288*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 26291*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26299*/                OPC_EmitInteger, MVT::i64, 0, 
/* 26302*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 26309*/                OPC_EmitInteger, MVT::i64, 1, 
/* 26312*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 26319*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 26328*/              0, /*End of Scope*/
/* 26329*/            /*Scope*/ 114, /*->26444*/
/* 26330*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 26332*/              OPC_Scope, 53, /*->26387*/ // 2 children in Scope
/* 26334*/                OPC_MoveParent,
/* 26335*/                OPC_CheckType, MVT::i32,
/* 26337*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26339*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26347*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 26350*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26358*/                OPC_EmitInteger, MVT::i32, 0, 
/* 26361*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 26368*/                OPC_EmitInteger, MVT::i32, 1, 
/* 26371*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 26378*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 26387*/              /*Scope*/ 55, /*->26443*/
/* 26388*/                OPC_CheckType, MVT::i1,
/* 26390*/                OPC_MoveParent,
/* 26391*/                OPC_CheckType, MVT::i64,
/* 26393*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26395*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26403*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 26406*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26414*/                OPC_EmitInteger, MVT::i64, 0, 
/* 26417*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 26424*/                OPC_EmitInteger, MVT::i64, 1, 
/* 26427*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 26434*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 26443*/              0, /*End of Scope*/
/* 26444*/            /*Scope*/ 114, /*->26559*/
/* 26445*/              OPC_CheckChild2CondCode, ISD::SETO,
/* 26447*/              OPC_Scope, 53, /*->26502*/ // 2 children in Scope
/* 26449*/                OPC_MoveParent,
/* 26450*/                OPC_CheckType, MVT::i32,
/* 26452*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26454*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26462*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 26465*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26473*/                OPC_EmitInteger, MVT::i32, 0, 
/* 26476*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 26483*/                OPC_EmitInteger, MVT::i32, 1, 
/* 26486*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 26493*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } 1:{ *:[i32] }))
/* 26502*/              /*Scope*/ 55, /*->26558*/
/* 26503*/                OPC_CheckType, MVT::i1,
/* 26505*/                OPC_MoveParent,
/* 26506*/                OPC_CheckType, MVT::i64,
/* 26508*/                OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 26510*/                OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                              MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 26518*/                OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 26521*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 26529*/                OPC_EmitInteger, MVT::i64, 0, 
/* 26532*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 26539*/                OPC_EmitInteger, MVT::i64, 1, 
/* 26542*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 26549*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                          // Src: (zext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } 1:{ *:[i64] }))
/* 26558*/              0, /*End of Scope*/
/* 26559*/            0, /*End of Scope*/
/* 26560*/          0, /*End of Scope*/
/* 26561*/        0, /*End of Scope*/
/* 26562*/      0, // EndSwitchOpcode
/* 26563*/    /*Scope*/ 106, /*->26670*/
/* 26564*/      OPC_RecordChild0, // #0 = $in
/* 26565*/      OPC_SwitchType /*2 cases */, 70, MVT::i64,// ->26638
/* 26568*/        OPC_Scope, 35, /*->26605*/ // 2 children in Scope
/* 26570*/          OPC_CheckChild0Type, MVT::i32,
/* 26572*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                        MVT::i64, 0/*#Ops*/,  // Results = #1
/* 26578*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 26581*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                        MVT::i64, 3/*#Ops*/, 1, 0, 2,  // Results = #3
/* 26590*/          OPC_EmitInteger, MVT::i32, 0, 
/* 26593*/          OPC_EmitInteger, MVT::i32, 32, 
/* 26596*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 3, 4, 5, 
                    // Src: (zext:{ *:[i64] } i32:{ *:[i32] }:$in) - Complexity = 3
                    // Dst: (RLDICL:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$in, sub_32:{ *:[i32] }), 0:{ *:[i32] }, 32:{ *:[i32] })
/* 26605*/        /*Scope*/ 31, /*->26637*/
/* 26606*/          OPC_CheckChild0Type, MVT::i1,
/* 26608*/          OPC_EmitInteger, MVT::i64, 1, 
/* 26611*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 26618*/          OPC_EmitInteger, MVT::i64, 0, 
/* 26621*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 26628*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                        MVT::i64, 3/*#Ops*/, 0, 2, 4, 
                    // Src: (zext:{ *:[i64] } i1:{ *:[i1] }:$in) - Complexity = 3
                    // Dst: (SELECT_I8:{ *:[i64] } ?:{ *:[i1] }:$in, (LI8:{ *:[i64] } 1:{ *:[i64] }), (LI8:{ *:[i64] } 0:{ *:[i64] }))
/* 26637*/        0, /*End of Scope*/
/* 26638*/      /*SwitchType*/ 29, MVT::i32,// ->26669
/* 26640*/        OPC_EmitInteger, MVT::i32, 1, 
/* 26643*/        OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                      MVT::i32, 1/*#Ops*/, 1,  // Results = #2
/* 26650*/        OPC_EmitInteger, MVT::i32, 0, 
/* 26653*/        OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                      MVT::i32, 1/*#Ops*/, 3,  // Results = #4
/* 26660*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                      MVT::i32, 3/*#Ops*/, 0, 2, 4, 
                  // Src: (zext:{ *:[i32] } i1:{ *:[i1] }:$in) - Complexity = 3
                  // Dst: (SELECT_I4:{ *:[i32] } ?:{ *:[i1] }:$in, (LI:{ *:[i32] } 1:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }))
/* 26669*/      0, // EndSwitchType
/* 26670*/    0, /*End of Scope*/
/* 26671*/  /*SwitchOpcode*/ 84|128,64/*8276*/, TARGET_VAL(ISD::SIGN_EXTEND),// ->34951
/* 26675*/    OPC_Scope, 109|128,63/*8173*/, /*->34851*/ // 2 children in Scope
/* 26678*/      OPC_MoveChild0,
/* 26679*/      OPC_SwitchOpcode /*2 cases */, 20|128,3/*404*/, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),// ->27088
/* 26684*/        OPC_RecordChild0, // #0 = $S
/* 26685*/        OPC_CheckChild0Type, MVT::v4i32,
/* 26687*/        OPC_CheckType, MVT::i32,
/* 26689*/        OPC_Scope, 63, /*->26754*/ // 5 children in Scope
/* 26691*/          OPC_CheckChild1Integer, 0, 
/* 26693*/          OPC_MoveParent,
/* 26694*/          OPC_CheckType, MVT::i64,
/* 26696*/          OPC_Scope, 27, /*->26725*/ // 2 children in Scope
/* 26698*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 26700*/            OPC_EmitInteger, MVT::i64, 0, 
/* 26703*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 26710*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 26718*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 3, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v4i32] }:$S))
/* 26725*/          /*Scope*/ 27, /*->26753*/
/* 26726*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 26728*/            OPC_EmitInteger, MVT::i64, 0, 
/* 26731*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 26738*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 26746*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 3, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v4i32] }:$S))
/* 26753*/          0, /*End of Scope*/
/* 26754*/        /*Scope*/ 92, /*->26847*/
/* 26755*/          OPC_CheckChild1Integer, 1, 
/* 26757*/          OPC_MoveParent,
/* 26758*/          OPC_CheckType, MVT::i64,
/* 26760*/          OPC_Scope, 27, /*->26789*/ // 2 children in Scope
/* 26762*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 26764*/            OPC_EmitInteger, MVT::i64, 4, 
/* 26767*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 26774*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 26782*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 3, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v4i32] }:$S))
/* 26789*/          /*Scope*/ 56, /*->26846*/
/* 26790*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 26792*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #1
/* 26798*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 26801*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 26809*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 26812*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 26820*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 26827*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 26830*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 1, 6, 7,  // Results = #8
/* 26839*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 8, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), sub_32:{ *:[i32] }))
/* 26846*/          0, /*End of Scope*/
/* 26847*/        /*Scope*/ 63, /*->26911*/
/* 26848*/          OPC_CheckChild1Integer, 3, 
/* 26850*/          OPC_MoveParent,
/* 26851*/          OPC_CheckType, MVT::i64,
/* 26853*/          OPC_Scope, 27, /*->26882*/ // 2 children in Scope
/* 26855*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 26857*/            OPC_EmitInteger, MVT::i64, 12, 
/* 26860*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 26867*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 26875*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 3, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v4i32] }:$S))
/* 26882*/          /*Scope*/ 27, /*->26910*/
/* 26883*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 26885*/            OPC_EmitInteger, MVT::i64, 12, 
/* 26888*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 26895*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 26903*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 3, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v4i32] }:$S))
/* 26910*/          0, /*End of Scope*/
/* 26911*/        /*Scope*/ 92, /*->27004*/
/* 26912*/          OPC_CheckChild1Integer, 2, 
/* 26914*/          OPC_MoveParent,
/* 26915*/          OPC_CheckType, MVT::i64,
/* 26917*/          OPC_Scope, 27, /*->26946*/ // 2 children in Scope
/* 26919*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 26921*/            OPC_EmitInteger, MVT::i64, 8, 
/* 26924*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 26931*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 26939*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 3, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v4i32] }:$S))
/* 26946*/          /*Scope*/ 56, /*->27003*/
/* 26947*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 26949*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #1
/* 26955*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 26958*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 26966*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 26969*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 26977*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 26984*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 26987*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 1, 6, 7,  // Results = #8
/* 26996*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 8, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (EXTSW:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), sub_32:{ *:[i32] }))
/* 27003*/          0, /*End of Scope*/
/* 27004*/        /*Scope*/ 82, /*->27087*/
/* 27005*/          OPC_RecordChild1, // #1 = $Idx
/* 27006*/          OPC_CheckChild1Type, MVT::i64,
/* 27008*/          OPC_MoveParent,
/* 27009*/          OPC_CheckType, MVT::i64,
/* 27011*/          OPC_Scope, 36, /*->27049*/ // 2 children in Scope
/* 27013*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 27015*/            OPC_EmitInteger, MVT::i32, 2, 
/* 27018*/            OPC_EmitInteger, MVT::i32, 28, 
/* 27021*/            OPC_EmitInteger, MVT::i32, 29, 
/* 27024*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                          MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 27034*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 5, 0,  // Results = #6
/* 27042*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 6, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWRX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 2:{ *:[i32] }, 28:{ *:[i32] }, 29:{ *:[i32] }), ?:{ *:[v4i32] }:$S))
/* 27049*/          /*Scope*/ 36, /*->27086*/
/* 27050*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 27052*/            OPC_EmitInteger, MVT::i32, 2, 
/* 27055*/            OPC_EmitInteger, MVT::i32, 28, 
/* 27058*/            OPC_EmitInteger, MVT::i32, 29, 
/* 27061*/            OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                          MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 27071*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 5, 0,  // Results = #6
/* 27079*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                          MVT::i64, 1/*#Ops*/, 6, 
                      // Src: (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx)) - Complexity = 406
                      // Dst: (EXTSW:{ *:[i64] } (VEXTUWLX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 2:{ *:[i32] }, 28:{ *:[i32] }, 29:{ *:[i32] }), ?:{ *:[v4i32] }:$S))
/* 27086*/          0, /*End of Scope*/
/* 27087*/        0, /*End of Scope*/
/* 27088*/      /*SwitchOpcode*/ 78|128,60/*7758*/, TARGET_VAL(ISD::SETCC),// ->34850
/* 27092*/        OPC_RecordChild0, // #0 = $s1
/* 27093*/        OPC_Scope, 117|128,12/*1653*/, /*->28749*/ // 5 children in Scope
/* 27096*/          OPC_CheckChild0Type, MVT::i32,
/* 27098*/          OPC_RecordChild1, // #1 = $imm
/* 27099*/          OPC_Scope, 100|128,7/*996*/, /*->28098*/ // 6 children in Scope
/* 27102*/            OPC_MoveChild1,
/* 27103*/            OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 27106*/            OPC_Scope, 7|128,1/*135*/, /*->27244*/ // 6 children in Scope
/* 27109*/              OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 27111*/              OPC_MoveParent,
/* 27112*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 27114*/              OPC_Scope, 62, /*->27178*/ // 2 children in Scope
/* 27116*/                OPC_MoveParent,
/* 27117*/                OPC_CheckType, MVT::i32,
/* 27119*/                OPC_EmitConvertToTarget, 1,
/* 27121*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27129*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 27132*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27140*/                OPC_EmitInteger, MVT::i32, 0, 
/* 27143*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 27150*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27162*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 27169*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 27178*/              /*Scope*/ 64, /*->27243*/
/* 27179*/                OPC_CheckType, MVT::i1,
/* 27181*/                OPC_MoveParent,
/* 27182*/                OPC_CheckType, MVT::i64,
/* 27184*/                OPC_EmitConvertToTarget, 1,
/* 27186*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27194*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 27197*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27205*/                OPC_EmitInteger, MVT::i64, 0, 
/* 27208*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 27215*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27227*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 27234*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 27243*/              0, /*End of Scope*/
/* 27244*/            /*Scope*/ 7|128,1/*135*/, /*->27381*/
/* 27246*/              OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 27248*/              OPC_MoveParent,
/* 27249*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 27251*/              OPC_Scope, 62, /*->27315*/ // 2 children in Scope
/* 27253*/                OPC_MoveParent,
/* 27254*/                OPC_CheckType, MVT::i32,
/* 27256*/                OPC_EmitConvertToTarget, 1,
/* 27258*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27266*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 27269*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27277*/                OPC_EmitInteger, MVT::i32, 0, 
/* 27280*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 27287*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27299*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 27306*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 27315*/              /*Scope*/ 64, /*->27380*/
/* 27316*/                OPC_CheckType, MVT::i1,
/* 27318*/                OPC_MoveParent,
/* 27319*/                OPC_CheckType, MVT::i64,
/* 27321*/                OPC_EmitConvertToTarget, 1,
/* 27323*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27331*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 27334*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27342*/                OPC_EmitInteger, MVT::i64, 0, 
/* 27345*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 27352*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27364*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 27371*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 27380*/              0, /*End of Scope*/
/* 27381*/            /*Scope*/ 7|128,1/*135*/, /*->27518*/
/* 27383*/              OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 27385*/              OPC_MoveParent,
/* 27386*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 27388*/              OPC_Scope, 62, /*->27452*/ // 2 children in Scope
/* 27390*/                OPC_MoveParent,
/* 27391*/                OPC_CheckType, MVT::i32,
/* 27393*/                OPC_EmitConvertToTarget, 1,
/* 27395*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27403*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 27406*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27414*/                OPC_EmitInteger, MVT::i32, 0, 
/* 27417*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 27424*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27436*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 27443*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 27452*/              /*Scope*/ 64, /*->27517*/
/* 27453*/                OPC_CheckType, MVT::i1,
/* 27455*/                OPC_MoveParent,
/* 27456*/                OPC_CheckType, MVT::i64,
/* 27458*/                OPC_EmitConvertToTarget, 1,
/* 27460*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27468*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 27471*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27479*/                OPC_EmitInteger, MVT::i64, 0, 
/* 27482*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 27489*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27501*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 27508*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 27517*/              0, /*End of Scope*/
/* 27518*/            /*Scope*/ 17|128,2/*273*/, /*->27793*/
/* 27520*/              OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 27522*/              OPC_MoveParent,
/* 27523*/              OPC_Scope, 4|128,1/*132*/, /*->27658*/ // 2 children in Scope
/* 27526*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 27528*/                OPC_Scope, 62, /*->27592*/ // 2 children in Scope
/* 27530*/                  OPC_MoveParent,
/* 27531*/                  OPC_CheckType, MVT::i32,
/* 27533*/                  OPC_EmitConvertToTarget, 1,
/* 27535*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27543*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 27546*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27554*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 27557*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 27564*/                  OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27576*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 27583*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 27592*/                /*Scope*/ 64, /*->27657*/
/* 27593*/                  OPC_CheckType, MVT::i1,
/* 27595*/                  OPC_MoveParent,
/* 27596*/                  OPC_CheckType, MVT::i64,
/* 27598*/                  OPC_EmitConvertToTarget, 1,
/* 27600*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27608*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 27611*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27619*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 27622*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 27629*/                  OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27641*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 27648*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 27657*/                0, /*End of Scope*/
/* 27658*/              /*Scope*/ 4|128,1/*132*/, /*->27792*/
/* 27660*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 27662*/                OPC_Scope, 62, /*->27726*/ // 2 children in Scope
/* 27664*/                  OPC_MoveParent,
/* 27665*/                  OPC_CheckType, MVT::i32,
/* 27667*/                  OPC_EmitConvertToTarget, 1,
/* 27669*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27677*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 27680*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27688*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 27691*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 27698*/                  OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27710*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 27717*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 27726*/                /*Scope*/ 64, /*->27791*/
/* 27727*/                  OPC_CheckType, MVT::i1,
/* 27729*/                  OPC_MoveParent,
/* 27730*/                  OPC_CheckType, MVT::i64,
/* 27732*/                  OPC_EmitConvertToTarget, 1,
/* 27734*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27742*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 27745*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27753*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 27756*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 27763*/                  OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27775*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 27782*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 27791*/                0, /*End of Scope*/
/* 27792*/              0, /*End of Scope*/
/* 27793*/            /*Scope*/ 7|128,1/*135*/, /*->27930*/
/* 27795*/              OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 27797*/              OPC_MoveParent,
/* 27798*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 27800*/              OPC_Scope, 62, /*->27864*/ // 2 children in Scope
/* 27802*/                OPC_MoveParent,
/* 27803*/                OPC_CheckType, MVT::i32,
/* 27805*/                OPC_EmitConvertToTarget, 1,
/* 27807*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27815*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 27818*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27826*/                OPC_EmitInteger, MVT::i32, 0, 
/* 27829*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 27836*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27848*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 27855*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 27864*/              /*Scope*/ 64, /*->27929*/
/* 27865*/                OPC_CheckType, MVT::i1,
/* 27867*/                OPC_MoveParent,
/* 27868*/                OPC_CheckType, MVT::i64,
/* 27870*/                OPC_EmitConvertToTarget, 1,
/* 27872*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 27880*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 27883*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 27891*/                OPC_EmitInteger, MVT::i64, 0, 
/* 27894*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 27901*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27913*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 27920*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 27929*/              0, /*End of Scope*/
/* 27930*/            /*Scope*/ 37|128,1/*165*/, /*->28097*/
/* 27932*/              OPC_MoveParent,
/* 27933*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 27935*/              OPC_Scope, 78, /*->28015*/ // 2 children in Scope
/* 27937*/                OPC_MoveParent,
/* 27938*/                OPC_CheckType, MVT::i32,
/* 27940*/                OPC_EmitConvertToTarget, 1,
/* 27942*/                OPC_EmitNodeXForm, 0, 2, // HI16
/* 27945*/                OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 27953*/                OPC_EmitConvertToTarget, 1,
/* 27955*/                OPC_EmitNodeXForm, 1, 5, // LO16
/* 27958*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 27966*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 27969*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 27977*/                OPC_EmitInteger, MVT::i32, 0, 
/* 27980*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 10,  // Results = #11
/* 27987*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 27999*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 12,  // Results = #13
/* 28006*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 9, 11, 13, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] })) - Complexity = 9
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28015*/              /*Scope*/ 80, /*->28096*/
/* 28016*/                OPC_CheckType, MVT::i1,
/* 28018*/                OPC_MoveParent,
/* 28019*/                OPC_CheckType, MVT::i64,
/* 28021*/                OPC_EmitConvertToTarget, 1,
/* 28023*/                OPC_EmitNodeXForm, 0, 2, // HI16
/* 28026*/                OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                              MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 28034*/                OPC_EmitConvertToTarget, 1,
/* 28036*/                OPC_EmitNodeXForm, 1, 5, // LO16
/* 28039*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                              MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 28047*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 28050*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 28058*/                OPC_EmitInteger, MVT::i64, 0, 
/* 28061*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 10,  // Results = #11
/* 28068*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28080*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 12,  // Results = #13
/* 28087*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 9, 11, 13, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] })) - Complexity = 9
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 28096*/              0, /*End of Scope*/
/* 28097*/            0, /*End of Scope*/
/* 28098*/          /*Scope*/ 0|128,1/*128*/, /*->28228*/
/* 28100*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 28102*/            OPC_Scope, 60, /*->28164*/ // 2 children in Scope
/* 28104*/              OPC_MoveParent,
/* 28105*/              OPC_CheckType, MVT::i32,
/* 28107*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28115*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28118*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28126*/              OPC_EmitInteger, MVT::i32, 0, 
/* 28129*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 28136*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28148*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 28155*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28164*/            /*Scope*/ 62, /*->28227*/
/* 28165*/              OPC_CheckType, MVT::i1,
/* 28167*/              OPC_MoveParent,
/* 28168*/              OPC_CheckType, MVT::i64,
/* 28170*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28178*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28181*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28189*/              OPC_EmitInteger, MVT::i64, 0, 
/* 28192*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 28199*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28211*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 28218*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 28227*/            0, /*End of Scope*/
/* 28228*/          /*Scope*/ 0|128,1/*128*/, /*->28358*/
/* 28230*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 28232*/            OPC_Scope, 60, /*->28294*/ // 2 children in Scope
/* 28234*/              OPC_MoveParent,
/* 28235*/              OPC_CheckType, MVT::i32,
/* 28237*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28245*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28248*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28256*/              OPC_EmitInteger, MVT::i32, 0, 
/* 28259*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 28266*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28278*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 28285*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28294*/            /*Scope*/ 62, /*->28357*/
/* 28295*/              OPC_CheckType, MVT::i1,
/* 28297*/              OPC_MoveParent,
/* 28298*/              OPC_CheckType, MVT::i64,
/* 28300*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28308*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28311*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28319*/              OPC_EmitInteger, MVT::i64, 0, 
/* 28322*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 28329*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28341*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 28348*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 28357*/            0, /*End of Scope*/
/* 28358*/          /*Scope*/ 0|128,1/*128*/, /*->28488*/
/* 28360*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 28362*/            OPC_Scope, 60, /*->28424*/ // 2 children in Scope
/* 28364*/              OPC_MoveParent,
/* 28365*/              OPC_CheckType, MVT::i32,
/* 28367*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28375*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 28378*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28386*/              OPC_EmitInteger, MVT::i32, 0, 
/* 28389*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 28396*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28408*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 28415*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28424*/            /*Scope*/ 62, /*->28487*/
/* 28425*/              OPC_CheckType, MVT::i1,
/* 28427*/              OPC_MoveParent,
/* 28428*/              OPC_CheckType, MVT::i64,
/* 28430*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28438*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 28441*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28449*/              OPC_EmitInteger, MVT::i64, 0, 
/* 28452*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 28459*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28471*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 28478*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 28487*/            0, /*End of Scope*/
/* 28488*/          /*Scope*/ 0|128,1/*128*/, /*->28618*/
/* 28490*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 28492*/            OPC_Scope, 60, /*->28554*/ // 2 children in Scope
/* 28494*/              OPC_MoveParent,
/* 28495*/              OPC_CheckType, MVT::i32,
/* 28497*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28505*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 28508*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28516*/              OPC_EmitInteger, MVT::i32, 0, 
/* 28519*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 28526*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28538*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 28545*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28554*/            /*Scope*/ 62, /*->28617*/
/* 28555*/              OPC_CheckType, MVT::i1,
/* 28557*/              OPC_MoveParent,
/* 28558*/              OPC_CheckType, MVT::i64,
/* 28560*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28568*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 28571*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28579*/              OPC_EmitInteger, MVT::i64, 0, 
/* 28582*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 28589*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28601*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 28608*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 28617*/            0, /*End of Scope*/
/* 28618*/          /*Scope*/ 0|128,1/*128*/, /*->28748*/
/* 28620*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 28622*/            OPC_Scope, 60, /*->28684*/ // 2 children in Scope
/* 28624*/              OPC_MoveParent,
/* 28625*/              OPC_CheckType, MVT::i32,
/* 28627*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28635*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 28638*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28646*/              OPC_EmitInteger, MVT::i32, 0, 
/* 28649*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 28656*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28668*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 28675*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28684*/            /*Scope*/ 62, /*->28747*/
/* 28685*/              OPC_CheckType, MVT::i1,
/* 28687*/              OPC_MoveParent,
/* 28688*/              OPC_CheckType, MVT::i64,
/* 28690*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 28698*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 28701*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 28709*/              OPC_EmitInteger, MVT::i64, 0, 
/* 28712*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 28719*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28731*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 28738*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 28747*/            0, /*End of Scope*/
/* 28748*/          0, /*End of Scope*/
/* 28749*/        /*Scope*/ 119|128,12/*1655*/, /*->30406*/
/* 28751*/          OPC_CheckChild0Type, MVT::i64,
/* 28753*/          OPC_RecordChild1, // #1 = $imm
/* 28754*/          OPC_Scope, 102|128,7/*998*/, /*->29755*/ // 6 children in Scope
/* 28757*/            OPC_MoveChild1,
/* 28758*/            OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 28761*/            OPC_Scope, 7|128,1/*135*/, /*->28899*/ // 6 children in Scope
/* 28764*/              OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 28766*/              OPC_MoveParent,
/* 28767*/              OPC_CheckChild2CondCode, ISD::SETUGE,
/* 28769*/              OPC_Scope, 62, /*->28833*/ // 2 children in Scope
/* 28771*/                OPC_MoveParent,
/* 28772*/                OPC_CheckType, MVT::i32,
/* 28774*/                OPC_EmitConvertToTarget, 1,
/* 28776*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 28784*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28787*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 28795*/                OPC_EmitInteger, MVT::i32, 0, 
/* 28798*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 28805*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28817*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 28824*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28833*/              /*Scope*/ 64, /*->28898*/
/* 28834*/                OPC_CheckType, MVT::i1,
/* 28836*/                OPC_MoveParent,
/* 28837*/                OPC_CheckType, MVT::i64,
/* 28839*/                OPC_EmitConvertToTarget, 1,
/* 28841*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 28849*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28852*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 28860*/                OPC_EmitInteger, MVT::i64, 0, 
/* 28863*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 28870*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28882*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 28889*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 28898*/              0, /*End of Scope*/
/* 28899*/            /*Scope*/ 7|128,1/*135*/, /*->29036*/
/* 28901*/              OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 28903*/              OPC_MoveParent,
/* 28904*/              OPC_CheckChild2CondCode, ISD::SETGE,
/* 28906*/              OPC_Scope, 62, /*->28970*/ // 2 children in Scope
/* 28908*/                OPC_MoveParent,
/* 28909*/                OPC_CheckType, MVT::i32,
/* 28911*/                OPC_EmitConvertToTarget, 1,
/* 28913*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 28921*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28924*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 28932*/                OPC_EmitInteger, MVT::i32, 0, 
/* 28935*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 28942*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 28954*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 28961*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 28970*/              /*Scope*/ 64, /*->29035*/
/* 28971*/                OPC_CheckType, MVT::i1,
/* 28973*/                OPC_MoveParent,
/* 28974*/                OPC_CheckType, MVT::i64,
/* 28976*/                OPC_EmitConvertToTarget, 1,
/* 28978*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 28986*/                OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 28989*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 28997*/                OPC_EmitInteger, MVT::i64, 0, 
/* 29000*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 29007*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29019*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 29026*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 29035*/              0, /*End of Scope*/
/* 29036*/            /*Scope*/ 7|128,1/*135*/, /*->29173*/
/* 29038*/              OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 29040*/              OPC_MoveParent,
/* 29041*/              OPC_CheckChild2CondCode, ISD::SETULE,
/* 29043*/              OPC_Scope, 62, /*->29107*/ // 2 children in Scope
/* 29045*/                OPC_MoveParent,
/* 29046*/                OPC_CheckType, MVT::i32,
/* 29048*/                OPC_EmitConvertToTarget, 1,
/* 29050*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29058*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 29061*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29069*/                OPC_EmitInteger, MVT::i32, 0, 
/* 29072*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 29079*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29091*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 29098*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 29107*/              /*Scope*/ 64, /*->29172*/
/* 29108*/                OPC_CheckType, MVT::i1,
/* 29110*/                OPC_MoveParent,
/* 29111*/                OPC_CheckType, MVT::i64,
/* 29113*/                OPC_EmitConvertToTarget, 1,
/* 29115*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29123*/                OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 29126*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29134*/                OPC_EmitInteger, MVT::i64, 0, 
/* 29137*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 29144*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29156*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 29163*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 29172*/              0, /*End of Scope*/
/* 29173*/            /*Scope*/ 17|128,2/*273*/, /*->29448*/
/* 29175*/              OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 29177*/              OPC_MoveParent,
/* 29178*/              OPC_Scope, 4|128,1/*132*/, /*->29313*/ // 2 children in Scope
/* 29181*/                OPC_CheckChild2CondCode, ISD::SETLE,
/* 29183*/                OPC_Scope, 62, /*->29247*/ // 2 children in Scope
/* 29185*/                  OPC_MoveParent,
/* 29186*/                  OPC_CheckType, MVT::i32,
/* 29188*/                  OPC_EmitConvertToTarget, 1,
/* 29190*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29198*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 29201*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29209*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 29212*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 29219*/                  OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29231*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 29238*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 29247*/                /*Scope*/ 64, /*->29312*/
/* 29248*/                  OPC_CheckType, MVT::i1,
/* 29250*/                  OPC_MoveParent,
/* 29251*/                  OPC_CheckType, MVT::i64,
/* 29253*/                  OPC_EmitConvertToTarget, 1,
/* 29255*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29263*/                  OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 29266*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29274*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 29277*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 29284*/                  OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29296*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 29303*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 29312*/                0, /*End of Scope*/
/* 29313*/              /*Scope*/ 4|128,1/*132*/, /*->29447*/
/* 29315*/                OPC_CheckChild2CondCode, ISD::SETNE,
/* 29317*/                OPC_Scope, 62, /*->29381*/ // 2 children in Scope
/* 29319*/                  OPC_MoveParent,
/* 29320*/                  OPC_CheckType, MVT::i32,
/* 29322*/                  OPC_EmitConvertToTarget, 1,
/* 29324*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29332*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 29335*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29343*/                  OPC_EmitInteger, MVT::i32, 0, 
/* 29346*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 29353*/                  OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29365*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                                MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 29372*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                                MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 29381*/                /*Scope*/ 64, /*->29446*/
/* 29382*/                  OPC_CheckType, MVT::i1,
/* 29384*/                  OPC_MoveParent,
/* 29385*/                  OPC_CheckType, MVT::i64,
/* 29387*/                  OPC_EmitConvertToTarget, 1,
/* 29389*/                  OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                                MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29397*/                  OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 29400*/                  OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                                MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29408*/                  OPC_EmitInteger, MVT::i64, 0, 
/* 29411*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 29418*/                  OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29430*/                  OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                                MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 29437*/                  OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                                MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                            // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                            // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 29446*/                0, /*End of Scope*/
/* 29447*/              0, /*End of Scope*/
/* 29448*/            /*Scope*/ 7|128,1/*135*/, /*->29585*/
/* 29450*/              OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 29452*/              OPC_MoveParent,
/* 29453*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 29455*/              OPC_Scope, 62, /*->29519*/ // 2 children in Scope
/* 29457*/                OPC_MoveParent,
/* 29458*/                OPC_CheckType, MVT::i32,
/* 29460*/                OPC_EmitConvertToTarget, 1,
/* 29462*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29470*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 29473*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29481*/                OPC_EmitInteger, MVT::i32, 0, 
/* 29484*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 29491*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29503*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 8,  // Results = #9
/* 29510*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 29519*/              /*Scope*/ 64, /*->29584*/
/* 29520*/                OPC_CheckType, MVT::i1,
/* 29522*/                OPC_MoveParent,
/* 29523*/                OPC_CheckType, MVT::i64,
/* 29525*/                OPC_EmitConvertToTarget, 1,
/* 29527*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 29535*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 29538*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 29546*/                OPC_EmitInteger, MVT::i64, 0, 
/* 29549*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 6,  // Results = #7
/* 29556*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29568*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 29575*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 5, 7, 9, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 29584*/              0, /*End of Scope*/
/* 29585*/            /*Scope*/ 39|128,1/*167*/, /*->29754*/
/* 29587*/              OPC_CheckPredicate, 15, // Predicate_imm64ZExt32
/* 29589*/              OPC_MoveParent,
/* 29590*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 29592*/              OPC_Scope, 78, /*->29672*/ // 2 children in Scope
/* 29594*/                OPC_MoveParent,
/* 29595*/                OPC_CheckType, MVT::i32,
/* 29597*/                OPC_EmitConvertToTarget, 1,
/* 29599*/                OPC_EmitNodeXForm, 0, 2, // HI16
/* 29602*/                OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 29610*/                OPC_EmitConvertToTarget, 1,
/* 29612*/                OPC_EmitNodeXForm, 1, 5, // LO16
/* 29615*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 29623*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 29626*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 29634*/                OPC_EmitInteger, MVT::i32, 0, 
/* 29637*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 10,  // Results = #11
/* 29644*/                OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29656*/                OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                              MVT::i32, 1/*#Ops*/, 12,  // Results = #13
/* 29663*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                              MVT::i32, 3/*#Ops*/, 9, 11, 13, 
                          // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 29672*/              /*Scope*/ 80, /*->29753*/
/* 29673*/                OPC_CheckType, MVT::i1,
/* 29675*/                OPC_MoveParent,
/* 29676*/                OPC_CheckType, MVT::i64,
/* 29678*/                OPC_EmitConvertToTarget, 1,
/* 29680*/                OPC_EmitNodeXForm, 0, 2, // HI16
/* 29683*/                OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                              MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 29691*/                OPC_EmitConvertToTarget, 1,
/* 29693*/                OPC_EmitNodeXForm, 1, 5, // LO16
/* 29696*/                OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                              MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 29704*/                OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 29707*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                              MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 29715*/                OPC_EmitInteger, MVT::i64, 0, 
/* 29718*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 10,  // Results = #11
/* 29725*/                OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29737*/                OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                              MVT::i64, 1/*#Ops*/, 12,  // Results = #13
/* 29744*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                              MVT::i64, 3/*#Ops*/, 9, 11, 13, 
                          // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] })) - Complexity = 10
                          // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 29753*/              0, /*End of Scope*/
/* 29754*/            0, /*End of Scope*/
/* 29755*/          /*Scope*/ 0|128,1/*128*/, /*->29885*/
/* 29757*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 29759*/            OPC_Scope, 60, /*->29821*/ // 2 children in Scope
/* 29761*/              OPC_MoveParent,
/* 29762*/              OPC_CheckType, MVT::i32,
/* 29764*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 29772*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 29775*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 29783*/              OPC_EmitInteger, MVT::i32, 0, 
/* 29786*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 29793*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29805*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 29812*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 29821*/            /*Scope*/ 62, /*->29884*/
/* 29822*/              OPC_CheckType, MVT::i1,
/* 29824*/              OPC_MoveParent,
/* 29825*/              OPC_CheckType, MVT::i64,
/* 29827*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 29835*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 29838*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 29846*/              OPC_EmitInteger, MVT::i64, 0, 
/* 29849*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 29856*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29868*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 29875*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 29884*/            0, /*End of Scope*/
/* 29885*/          /*Scope*/ 0|128,1/*128*/, /*->30015*/
/* 29887*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 29889*/            OPC_Scope, 60, /*->29951*/ // 2 children in Scope
/* 29891*/              OPC_MoveParent,
/* 29892*/              OPC_CheckType, MVT::i32,
/* 29894*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 29902*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 29905*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 29913*/              OPC_EmitInteger, MVT::i32, 0, 
/* 29916*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 29923*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29935*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 29942*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 29951*/            /*Scope*/ 62, /*->30014*/
/* 29952*/              OPC_CheckType, MVT::i1,
/* 29954*/              OPC_MoveParent,
/* 29955*/              OPC_CheckType, MVT::i64,
/* 29957*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 29965*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 29968*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 29976*/              OPC_EmitInteger, MVT::i64, 0, 
/* 29979*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 29986*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 29998*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30005*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30014*/            0, /*End of Scope*/
/* 30015*/          /*Scope*/ 0|128,1/*128*/, /*->30145*/
/* 30017*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 30019*/            OPC_Scope, 60, /*->30081*/ // 2 children in Scope
/* 30021*/              OPC_MoveParent,
/* 30022*/              OPC_CheckType, MVT::i32,
/* 30024*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30032*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30035*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30043*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30046*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30053*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30065*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 30072*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 30081*/            /*Scope*/ 62, /*->30144*/
/* 30082*/              OPC_CheckType, MVT::i1,
/* 30084*/              OPC_MoveParent,
/* 30085*/              OPC_CheckType, MVT::i64,
/* 30087*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30095*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30098*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30106*/              OPC_EmitInteger, MVT::i64, 0, 
/* 30109*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 30116*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30128*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30135*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30144*/            0, /*End of Scope*/
/* 30145*/          /*Scope*/ 0|128,1/*128*/, /*->30275*/
/* 30147*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 30149*/            OPC_Scope, 60, /*->30211*/ // 2 children in Scope
/* 30151*/              OPC_MoveParent,
/* 30152*/              OPC_CheckType, MVT::i32,
/* 30154*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30162*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30165*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30173*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30176*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30183*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30195*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 30202*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 30211*/            /*Scope*/ 62, /*->30274*/
/* 30212*/              OPC_CheckType, MVT::i1,
/* 30214*/              OPC_MoveParent,
/* 30215*/              OPC_CheckType, MVT::i64,
/* 30217*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30225*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30228*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30236*/              OPC_EmitInteger, MVT::i64, 0, 
/* 30239*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 30246*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30258*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30265*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30274*/            0, /*End of Scope*/
/* 30275*/          /*Scope*/ 0|128,1/*128*/, /*->30405*/
/* 30277*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 30279*/            OPC_Scope, 60, /*->30341*/ // 2 children in Scope
/* 30281*/              OPC_MoveParent,
/* 30282*/              OPC_CheckType, MVT::i32,
/* 30284*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30292*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 30295*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30303*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30306*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30313*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30325*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 30332*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 30341*/            /*Scope*/ 62, /*->30404*/
/* 30342*/              OPC_CheckType, MVT::i1,
/* 30344*/              OPC_MoveParent,
/* 30345*/              OPC_CheckType, MVT::i64,
/* 30347*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30355*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 30358*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30366*/              OPC_EmitInteger, MVT::i64, 0, 
/* 30369*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 30376*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30388*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30395*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30404*/            0, /*End of Scope*/
/* 30405*/          0, /*End of Scope*/
/* 30406*/        /*Scope*/ 83|128,13/*1747*/, /*->32155*/
/* 30408*/          OPC_CheckChild0Type, MVT::f32,
/* 30410*/          OPC_RecordChild1, // #1 = $s2
/* 30411*/          OPC_Scope, 4|128,1/*132*/, /*->30546*/ // 13 children in Scope
/* 30414*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 30416*/            OPC_Scope, 62, /*->30480*/ // 2 children in Scope
/* 30418*/              OPC_MoveParent,
/* 30419*/              OPC_CheckType, MVT::i32,
/* 30421*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30423*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30431*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 30434*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30442*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30445*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30452*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30464*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 30471*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 30480*/            /*Scope*/ 64, /*->30545*/
/* 30481*/              OPC_CheckType, MVT::i1,
/* 30483*/              OPC_MoveParent,
/* 30484*/              OPC_CheckType, MVT::i64,
/* 30486*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30488*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30496*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 30499*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30507*/              OPC_EmitInteger, MVT::i64, 0, 
/* 30510*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 30517*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30529*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30536*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30545*/            0, /*End of Scope*/
/* 30546*/          /*Scope*/ 4|128,1/*132*/, /*->30680*/
/* 30548*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 30550*/            OPC_Scope, 62, /*->30614*/ // 2 children in Scope
/* 30552*/              OPC_MoveParent,
/* 30553*/              OPC_CheckType, MVT::i32,
/* 30555*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30557*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30565*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 30568*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30576*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30579*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30586*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30598*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 30605*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 30614*/            /*Scope*/ 64, /*->30679*/
/* 30615*/              OPC_CheckType, MVT::i1,
/* 30617*/              OPC_MoveParent,
/* 30618*/              OPC_CheckType, MVT::i64,
/* 30620*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30622*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30630*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 30633*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30641*/              OPC_EmitInteger, MVT::i64, 0, 
/* 30644*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 30651*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30663*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30670*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30679*/            0, /*End of Scope*/
/* 30680*/          /*Scope*/ 4|128,1/*132*/, /*->30814*/
/* 30682*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 30684*/            OPC_Scope, 62, /*->30748*/ // 2 children in Scope
/* 30686*/              OPC_MoveParent,
/* 30687*/              OPC_CheckType, MVT::i32,
/* 30689*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30691*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30699*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30702*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30710*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30713*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30720*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30732*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 30739*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 30748*/            /*Scope*/ 64, /*->30813*/
/* 30749*/              OPC_CheckType, MVT::i1,
/* 30751*/              OPC_MoveParent,
/* 30752*/              OPC_CheckType, MVT::i64,
/* 30754*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30756*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30764*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30767*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30775*/              OPC_EmitInteger, MVT::i64, 0, 
/* 30778*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 30785*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30797*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30804*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30813*/            0, /*End of Scope*/
/* 30814*/          /*Scope*/ 4|128,1/*132*/, /*->30948*/
/* 30816*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 30818*/            OPC_Scope, 62, /*->30882*/ // 2 children in Scope
/* 30820*/              OPC_MoveParent,
/* 30821*/              OPC_CheckType, MVT::i32,
/* 30823*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30825*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30833*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30836*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30844*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30847*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30854*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30866*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 30873*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 30882*/            /*Scope*/ 64, /*->30947*/
/* 30883*/              OPC_CheckType, MVT::i1,
/* 30885*/              OPC_MoveParent,
/* 30886*/              OPC_CheckType, MVT::i64,
/* 30888*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30890*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30898*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 30901*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30909*/              OPC_EmitInteger, MVT::i64, 0, 
/* 30912*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 30919*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 30931*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 30938*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 30947*/            0, /*End of Scope*/
/* 30948*/          /*Scope*/ 4|128,1/*132*/, /*->31082*/
/* 30950*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 30952*/            OPC_Scope, 62, /*->31016*/ // 2 children in Scope
/* 30954*/              OPC_MoveParent,
/* 30955*/              OPC_CheckType, MVT::i32,
/* 30957*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 30959*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 30967*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 30970*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 30978*/              OPC_EmitInteger, MVT::i32, 0, 
/* 30981*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 30988*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31000*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31007*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31016*/            /*Scope*/ 64, /*->31081*/
/* 31017*/              OPC_CheckType, MVT::i1,
/* 31019*/              OPC_MoveParent,
/* 31020*/              OPC_CheckType, MVT::i64,
/* 31022*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 31024*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31032*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 31035*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31043*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31046*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31053*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31065*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 31072*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 31081*/            0, /*End of Scope*/
/* 31082*/          /*Scope*/ 4|128,1/*132*/, /*->31216*/
/* 31084*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 31086*/            OPC_Scope, 62, /*->31150*/ // 2 children in Scope
/* 31088*/              OPC_MoveParent,
/* 31089*/              OPC_CheckType, MVT::i32,
/* 31091*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 31093*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31101*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 31104*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31112*/              OPC_EmitInteger, MVT::i32, 0, 
/* 31115*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 31122*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31134*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31141*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31150*/            /*Scope*/ 64, /*->31215*/
/* 31151*/              OPC_CheckType, MVT::i1,
/* 31153*/              OPC_MoveParent,
/* 31154*/              OPC_CheckType, MVT::i64,
/* 31156*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 31158*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31166*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 31169*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31177*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31180*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31187*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31199*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 31206*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 31215*/            0, /*End of Scope*/
/* 31216*/          /*Scope*/ 4|128,1/*132*/, /*->31350*/
/* 31218*/            OPC_CheckChild2CondCode, ISD::SETO,
/* 31220*/            OPC_Scope, 62, /*->31284*/ // 2 children in Scope
/* 31222*/              OPC_MoveParent,
/* 31223*/              OPC_CheckType, MVT::i32,
/* 31225*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 31227*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31235*/              OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 31238*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31246*/              OPC_EmitInteger, MVT::i32, 0, 
/* 31249*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 31256*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31268*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31275*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31284*/            /*Scope*/ 64, /*->31349*/
/* 31285*/              OPC_CheckType, MVT::i1,
/* 31287*/              OPC_MoveParent,
/* 31288*/              OPC_CheckType, MVT::i64,
/* 31290*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 31292*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31300*/              OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 31303*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31311*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31314*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31321*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31333*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 31340*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 31349*/            0, /*End of Scope*/
/* 31350*/          /*Scope*/ 4|128,1/*132*/, /*->31484*/
/* 31352*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 31354*/            OPC_Scope, 62, /*->31418*/ // 2 children in Scope
/* 31356*/              OPC_MoveParent,
/* 31357*/              OPC_CheckType, MVT::i32,
/* 31359*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31361*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31369*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31372*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31380*/              OPC_EmitInteger, MVT::i32, 0, 
/* 31383*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 31390*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31402*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31409*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31418*/            /*Scope*/ 64, /*->31483*/
/* 31419*/              OPC_CheckType, MVT::i1,
/* 31421*/              OPC_MoveParent,
/* 31422*/              OPC_CheckType, MVT::i64,
/* 31424*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31426*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31434*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31437*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31445*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31448*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31455*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31467*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 31474*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 31483*/            0, /*End of Scope*/
/* 31484*/          /*Scope*/ 4|128,1/*132*/, /*->31618*/
/* 31486*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 31488*/            OPC_Scope, 62, /*->31552*/ // 2 children in Scope
/* 31490*/              OPC_MoveParent,
/* 31491*/              OPC_CheckType, MVT::i32,
/* 31493*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31495*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31503*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31506*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31514*/              OPC_EmitInteger, MVT::i32, 0, 
/* 31517*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 31524*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31536*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31543*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31552*/            /*Scope*/ 64, /*->31617*/
/* 31553*/              OPC_CheckType, MVT::i1,
/* 31555*/              OPC_MoveParent,
/* 31556*/              OPC_CheckType, MVT::i64,
/* 31558*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31560*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31568*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31571*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31579*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31582*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31589*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31601*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 31608*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 31617*/            0, /*End of Scope*/
/* 31618*/          /*Scope*/ 4|128,1/*132*/, /*->31752*/
/* 31620*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 31622*/            OPC_Scope, 62, /*->31686*/ // 2 children in Scope
/* 31624*/              OPC_MoveParent,
/* 31625*/              OPC_CheckType, MVT::i32,
/* 31627*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31629*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31637*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31640*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31648*/              OPC_EmitInteger, MVT::i32, 0, 
/* 31651*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 31658*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31670*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31677*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31686*/            /*Scope*/ 64, /*->31751*/
/* 31687*/              OPC_CheckType, MVT::i1,
/* 31689*/              OPC_MoveParent,
/* 31690*/              OPC_CheckType, MVT::i64,
/* 31692*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31694*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31702*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31705*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31713*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31716*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31723*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31735*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 31742*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 31751*/            0, /*End of Scope*/
/* 31752*/          /*Scope*/ 4|128,1/*132*/, /*->31886*/
/* 31754*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 31756*/            OPC_Scope, 62, /*->31820*/ // 2 children in Scope
/* 31758*/              OPC_MoveParent,
/* 31759*/              OPC_CheckType, MVT::i32,
/* 31761*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31763*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31771*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31774*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31782*/              OPC_EmitInteger, MVT::i32, 0, 
/* 31785*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 31792*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31804*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31811*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31820*/            /*Scope*/ 64, /*->31885*/
/* 31821*/              OPC_CheckType, MVT::i1,
/* 31823*/              OPC_MoveParent,
/* 31824*/              OPC_CheckType, MVT::i64,
/* 31826*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31828*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31836*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31839*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31847*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31850*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31857*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31869*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 31876*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 31885*/            0, /*End of Scope*/
/* 31886*/          /*Scope*/ 4|128,1/*132*/, /*->32020*/
/* 31888*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 31890*/            OPC_Scope, 62, /*->31954*/ // 2 children in Scope
/* 31892*/              OPC_MoveParent,
/* 31893*/              OPC_CheckType, MVT::i32,
/* 31895*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31897*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31905*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31908*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31916*/              OPC_EmitInteger, MVT::i32, 0, 
/* 31919*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 31926*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 31938*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 31945*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 31954*/            /*Scope*/ 64, /*->32019*/
/* 31955*/              OPC_CheckType, MVT::i1,
/* 31957*/              OPC_MoveParent,
/* 31958*/              OPC_CheckType, MVT::i64,
/* 31960*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 31962*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 31970*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 31973*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 31981*/              OPC_EmitInteger, MVT::i64, 0, 
/* 31984*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 31991*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32003*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32010*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32019*/            0, /*End of Scope*/
/* 32020*/          /*Scope*/ 4|128,1/*132*/, /*->32154*/
/* 32022*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 32024*/            OPC_Scope, 62, /*->32088*/ // 2 children in Scope
/* 32026*/              OPC_MoveParent,
/* 32027*/              OPC_CheckType, MVT::i32,
/* 32029*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 32031*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32039*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 32042*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32050*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32053*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 32060*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32072*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 32079*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 32088*/            /*Scope*/ 64, /*->32153*/
/* 32089*/              OPC_CheckType, MVT::i1,
/* 32091*/              OPC_MoveParent,
/* 32092*/              OPC_CheckType, MVT::i64,
/* 32094*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 32096*/              OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32104*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 32107*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32115*/              OPC_EmitInteger, MVT::i64, 0, 
/* 32118*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 32125*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32137*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32144*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32153*/            0, /*End of Scope*/
/* 32154*/          0, /*End of Scope*/
/* 32155*/        /*Scope*/ 83|128,13/*1747*/, /*->33904*/
/* 32157*/          OPC_CheckChild0Type, MVT::f64,
/* 32159*/          OPC_RecordChild1, // #1 = $s2
/* 32160*/          OPC_Scope, 4|128,1/*132*/, /*->32295*/ // 13 children in Scope
/* 32163*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 32165*/            OPC_Scope, 62, /*->32229*/ // 2 children in Scope
/* 32167*/              OPC_MoveParent,
/* 32168*/              OPC_CheckType, MVT::i32,
/* 32170*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32172*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32180*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 32183*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32191*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32194*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 32201*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32213*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 32220*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 32229*/            /*Scope*/ 64, /*->32294*/
/* 32230*/              OPC_CheckType, MVT::i1,
/* 32232*/              OPC_MoveParent,
/* 32233*/              OPC_CheckType, MVT::i64,
/* 32235*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32237*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32245*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 32248*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32256*/              OPC_EmitInteger, MVT::i64, 0, 
/* 32259*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 32266*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32278*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32285*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32294*/            0, /*End of Scope*/
/* 32295*/          /*Scope*/ 4|128,1/*132*/, /*->32429*/
/* 32297*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 32299*/            OPC_Scope, 62, /*->32363*/ // 2 children in Scope
/* 32301*/              OPC_MoveParent,
/* 32302*/              OPC_CheckType, MVT::i32,
/* 32304*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32306*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32314*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 32317*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32325*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32328*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 32335*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32347*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 32354*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 32363*/            /*Scope*/ 64, /*->32428*/
/* 32364*/              OPC_CheckType, MVT::i1,
/* 32366*/              OPC_MoveParent,
/* 32367*/              OPC_CheckType, MVT::i64,
/* 32369*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32371*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32379*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 32382*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32390*/              OPC_EmitInteger, MVT::i64, 0, 
/* 32393*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 32400*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32412*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32419*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32428*/            0, /*End of Scope*/
/* 32429*/          /*Scope*/ 4|128,1/*132*/, /*->32563*/
/* 32431*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 32433*/            OPC_Scope, 62, /*->32497*/ // 2 children in Scope
/* 32435*/              OPC_MoveParent,
/* 32436*/              OPC_CheckType, MVT::i32,
/* 32438*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32440*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32448*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 32451*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32459*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32462*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 32469*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32481*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 32488*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 32497*/            /*Scope*/ 64, /*->32562*/
/* 32498*/              OPC_CheckType, MVT::i1,
/* 32500*/              OPC_MoveParent,
/* 32501*/              OPC_CheckType, MVT::i64,
/* 32503*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32505*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32513*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 32516*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32524*/              OPC_EmitInteger, MVT::i64, 0, 
/* 32527*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 32534*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32546*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32553*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32562*/            0, /*End of Scope*/
/* 32563*/          /*Scope*/ 4|128,1/*132*/, /*->32697*/
/* 32565*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 32567*/            OPC_Scope, 62, /*->32631*/ // 2 children in Scope
/* 32569*/              OPC_MoveParent,
/* 32570*/              OPC_CheckType, MVT::i32,
/* 32572*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32574*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32582*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 32585*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32593*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32596*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 32603*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32615*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 32622*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 32631*/            /*Scope*/ 64, /*->32696*/
/* 32632*/              OPC_CheckType, MVT::i1,
/* 32634*/              OPC_MoveParent,
/* 32635*/              OPC_CheckType, MVT::i64,
/* 32637*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32639*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32647*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 32650*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32658*/              OPC_EmitInteger, MVT::i64, 0, 
/* 32661*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 32668*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32680*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32687*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32696*/            0, /*End of Scope*/
/* 32697*/          /*Scope*/ 4|128,1/*132*/, /*->32831*/
/* 32699*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 32701*/            OPC_Scope, 62, /*->32765*/ // 2 children in Scope
/* 32703*/              OPC_MoveParent,
/* 32704*/              OPC_CheckType, MVT::i32,
/* 32706*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32708*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32716*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 32719*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32727*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32730*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 32737*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32749*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 32756*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 32765*/            /*Scope*/ 64, /*->32830*/
/* 32766*/              OPC_CheckType, MVT::i1,
/* 32768*/              OPC_MoveParent,
/* 32769*/              OPC_CheckType, MVT::i64,
/* 32771*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32773*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32781*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 32784*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32792*/              OPC_EmitInteger, MVT::i64, 0, 
/* 32795*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 32802*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32814*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32821*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32830*/            0, /*End of Scope*/
/* 32831*/          /*Scope*/ 4|128,1/*132*/, /*->32965*/
/* 32833*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 32835*/            OPC_Scope, 62, /*->32899*/ // 2 children in Scope
/* 32837*/              OPC_MoveParent,
/* 32838*/              OPC_CheckType, MVT::i32,
/* 32840*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32842*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32850*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 32853*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32861*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32864*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 32871*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32883*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 32890*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 32899*/            /*Scope*/ 64, /*->32964*/
/* 32900*/              OPC_CheckType, MVT::i1,
/* 32902*/              OPC_MoveParent,
/* 32903*/              OPC_CheckType, MVT::i64,
/* 32905*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32907*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32915*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 32918*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32926*/              OPC_EmitInteger, MVT::i64, 0, 
/* 32929*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 32936*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 32948*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 32955*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 32964*/            0, /*End of Scope*/
/* 32965*/          /*Scope*/ 4|128,1/*132*/, /*->33099*/
/* 32967*/            OPC_CheckChild2CondCode, ISD::SETO,
/* 32969*/            OPC_Scope, 62, /*->33033*/ // 2 children in Scope
/* 32971*/              OPC_MoveParent,
/* 32972*/              OPC_CheckType, MVT::i32,
/* 32974*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 32976*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 32984*/              OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 32987*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 32995*/              OPC_EmitInteger, MVT::i32, 0, 
/* 32998*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33005*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33017*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33024*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33033*/            /*Scope*/ 64, /*->33098*/
/* 33034*/              OPC_CheckType, MVT::i1,
/* 33036*/              OPC_MoveParent,
/* 33037*/              OPC_CheckType, MVT::i64,
/* 33039*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 33041*/              OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33049*/              OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 33052*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33060*/              OPC_EmitInteger, MVT::i64, 0, 
/* 33063*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 33070*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33082*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 33089*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 33098*/            0, /*End of Scope*/
/* 33099*/          /*Scope*/ 4|128,1/*132*/, /*->33233*/
/* 33101*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 33103*/            OPC_Scope, 62, /*->33167*/ // 2 children in Scope
/* 33105*/              OPC_MoveParent,
/* 33106*/              OPC_CheckType, MVT::i32,
/* 33108*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33110*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33118*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33121*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33129*/              OPC_EmitInteger, MVT::i32, 0, 
/* 33132*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33139*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33151*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33158*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33167*/            /*Scope*/ 64, /*->33232*/
/* 33168*/              OPC_CheckType, MVT::i1,
/* 33170*/              OPC_MoveParent,
/* 33171*/              OPC_CheckType, MVT::i64,
/* 33173*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33175*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33183*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33186*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33194*/              OPC_EmitInteger, MVT::i64, 0, 
/* 33197*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 33204*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33216*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 33223*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 33232*/            0, /*End of Scope*/
/* 33233*/          /*Scope*/ 4|128,1/*132*/, /*->33367*/
/* 33235*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 33237*/            OPC_Scope, 62, /*->33301*/ // 2 children in Scope
/* 33239*/              OPC_MoveParent,
/* 33240*/              OPC_CheckType, MVT::i32,
/* 33242*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33244*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33252*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33255*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33263*/              OPC_EmitInteger, MVT::i32, 0, 
/* 33266*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33273*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33285*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33292*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33301*/            /*Scope*/ 64, /*->33366*/
/* 33302*/              OPC_CheckType, MVT::i1,
/* 33304*/              OPC_MoveParent,
/* 33305*/              OPC_CheckType, MVT::i64,
/* 33307*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33309*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33317*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33320*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33328*/              OPC_EmitInteger, MVT::i64, 0, 
/* 33331*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 33338*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33350*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 33357*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 33366*/            0, /*End of Scope*/
/* 33367*/          /*Scope*/ 4|128,1/*132*/, /*->33501*/
/* 33369*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 33371*/            OPC_Scope, 62, /*->33435*/ // 2 children in Scope
/* 33373*/              OPC_MoveParent,
/* 33374*/              OPC_CheckType, MVT::i32,
/* 33376*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33378*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33386*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33389*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33397*/              OPC_EmitInteger, MVT::i32, 0, 
/* 33400*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33407*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33419*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33426*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33435*/            /*Scope*/ 64, /*->33500*/
/* 33436*/              OPC_CheckType, MVT::i1,
/* 33438*/              OPC_MoveParent,
/* 33439*/              OPC_CheckType, MVT::i64,
/* 33441*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33443*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33451*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33454*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33462*/              OPC_EmitInteger, MVT::i64, 0, 
/* 33465*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 33472*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33484*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 33491*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 33500*/            0, /*End of Scope*/
/* 33501*/          /*Scope*/ 4|128,1/*132*/, /*->33635*/
/* 33503*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 33505*/            OPC_Scope, 62, /*->33569*/ // 2 children in Scope
/* 33507*/              OPC_MoveParent,
/* 33508*/              OPC_CheckType, MVT::i32,
/* 33510*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33512*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33520*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33523*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33531*/              OPC_EmitInteger, MVT::i32, 0, 
/* 33534*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33541*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33553*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33560*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33569*/            /*Scope*/ 64, /*->33634*/
/* 33570*/              OPC_CheckType, MVT::i1,
/* 33572*/              OPC_MoveParent,
/* 33573*/              OPC_CheckType, MVT::i64,
/* 33575*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33577*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33585*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33588*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33596*/              OPC_EmitInteger, MVT::i64, 0, 
/* 33599*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 33606*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33618*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 33625*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 33634*/            0, /*End of Scope*/
/* 33635*/          /*Scope*/ 4|128,1/*132*/, /*->33769*/
/* 33637*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 33639*/            OPC_Scope, 62, /*->33703*/ // 2 children in Scope
/* 33641*/              OPC_MoveParent,
/* 33642*/              OPC_CheckType, MVT::i32,
/* 33644*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33646*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33654*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33657*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33665*/              OPC_EmitInteger, MVT::i32, 0, 
/* 33668*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33675*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33687*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33694*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33703*/            /*Scope*/ 64, /*->33768*/
/* 33704*/              OPC_CheckType, MVT::i1,
/* 33706*/              OPC_MoveParent,
/* 33707*/              OPC_CheckType, MVT::i64,
/* 33709*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33711*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33719*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33722*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33730*/              OPC_EmitInteger, MVT::i64, 0, 
/* 33733*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 33740*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33752*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 33759*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 33768*/            0, /*End of Scope*/
/* 33769*/          /*Scope*/ 4|128,1/*132*/, /*->33903*/
/* 33771*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 33773*/            OPC_Scope, 62, /*->33837*/ // 2 children in Scope
/* 33775*/              OPC_MoveParent,
/* 33776*/              OPC_CheckType, MVT::i32,
/* 33778*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33780*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33788*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33791*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33799*/              OPC_EmitInteger, MVT::i32, 0, 
/* 33802*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33809*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33821*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33828*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33837*/            /*Scope*/ 64, /*->33902*/
/* 33838*/              OPC_CheckType, MVT::i1,
/* 33840*/              OPC_MoveParent,
/* 33841*/              OPC_CheckType, MVT::i64,
/* 33843*/              OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 33845*/              OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33853*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 33856*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33864*/              OPC_EmitInteger, MVT::i64, 0, 
/* 33867*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 33874*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33886*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 33893*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 33902*/            0, /*End of Scope*/
/* 33903*/          0, /*End of Scope*/
/* 33904*/        /*Scope*/ 47|128,7/*943*/, /*->34849*/
/* 33906*/          OPC_CheckChild0Type, MVT::f128,
/* 33908*/          OPC_RecordChild1, // #1 = $s2
/* 33909*/          OPC_Scope, 4|128,1/*132*/, /*->34044*/ // 7 children in Scope
/* 33912*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 33914*/            OPC_Scope, 62, /*->33978*/ // 2 children in Scope
/* 33916*/              OPC_MoveParent,
/* 33917*/              OPC_CheckType, MVT::i32,
/* 33919*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 33921*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33929*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 33932*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 33940*/              OPC_EmitInteger, MVT::i32, 0, 
/* 33943*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 33950*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 33962*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 33969*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 33978*/            /*Scope*/ 64, /*->34043*/
/* 33979*/              OPC_CheckType, MVT::i1,
/* 33981*/              OPC_MoveParent,
/* 33982*/              OPC_CheckType, MVT::i64,
/* 33984*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 33986*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 33994*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 33997*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34005*/              OPC_EmitInteger, MVT::i64, 0, 
/* 34008*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 34015*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34027*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 34034*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 34043*/            0, /*End of Scope*/
/* 34044*/          /*Scope*/ 4|128,1/*132*/, /*->34178*/
/* 34046*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 34048*/            OPC_Scope, 62, /*->34112*/ // 2 children in Scope
/* 34050*/              OPC_MoveParent,
/* 34051*/              OPC_CheckType, MVT::i32,
/* 34053*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34055*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34063*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 34066*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34074*/              OPC_EmitInteger, MVT::i32, 0, 
/* 34077*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 34084*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34096*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 34103*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 34112*/            /*Scope*/ 64, /*->34177*/
/* 34113*/              OPC_CheckType, MVT::i1,
/* 34115*/              OPC_MoveParent,
/* 34116*/              OPC_CheckType, MVT::i64,
/* 34118*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34120*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34128*/              OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 34131*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34139*/              OPC_EmitInteger, MVT::i64, 0, 
/* 34142*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 34149*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34161*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 34168*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 34177*/            0, /*End of Scope*/
/* 34178*/          /*Scope*/ 4|128,1/*132*/, /*->34312*/
/* 34180*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 34182*/            OPC_Scope, 62, /*->34246*/ // 2 children in Scope
/* 34184*/              OPC_MoveParent,
/* 34185*/              OPC_CheckType, MVT::i32,
/* 34187*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34189*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34197*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 34200*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34208*/              OPC_EmitInteger, MVT::i32, 0, 
/* 34211*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 34218*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34230*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 34237*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 34246*/            /*Scope*/ 64, /*->34311*/
/* 34247*/              OPC_CheckType, MVT::i1,
/* 34249*/              OPC_MoveParent,
/* 34250*/              OPC_CheckType, MVT::i64,
/* 34252*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34254*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34262*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 34265*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34273*/              OPC_EmitInteger, MVT::i64, 0, 
/* 34276*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 34283*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34295*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 34302*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 34311*/            0, /*End of Scope*/
/* 34312*/          /*Scope*/ 4|128,1/*132*/, /*->34446*/
/* 34314*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 34316*/            OPC_Scope, 62, /*->34380*/ // 2 children in Scope
/* 34318*/              OPC_MoveParent,
/* 34319*/              OPC_CheckType, MVT::i32,
/* 34321*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34323*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34331*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 34334*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34342*/              OPC_EmitInteger, MVT::i32, 0, 
/* 34345*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 34352*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34364*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 34371*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 34380*/            /*Scope*/ 64, /*->34445*/
/* 34381*/              OPC_CheckType, MVT::i1,
/* 34383*/              OPC_MoveParent,
/* 34384*/              OPC_CheckType, MVT::i64,
/* 34386*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34388*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34396*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 34399*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34407*/              OPC_EmitInteger, MVT::i64, 0, 
/* 34410*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 34417*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34429*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 34436*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 34445*/            0, /*End of Scope*/
/* 34446*/          /*Scope*/ 4|128,1/*132*/, /*->34580*/
/* 34448*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 34450*/            OPC_Scope, 62, /*->34514*/ // 2 children in Scope
/* 34452*/              OPC_MoveParent,
/* 34453*/              OPC_CheckType, MVT::i32,
/* 34455*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34457*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34465*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 34468*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34476*/              OPC_EmitInteger, MVT::i32, 0, 
/* 34479*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 34486*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34498*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 34505*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 34514*/            /*Scope*/ 64, /*->34579*/
/* 34515*/              OPC_CheckType, MVT::i1,
/* 34517*/              OPC_MoveParent,
/* 34518*/              OPC_CheckType, MVT::i64,
/* 34520*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34522*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34530*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 34533*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34541*/              OPC_EmitInteger, MVT::i64, 0, 
/* 34544*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 34551*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34563*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 34570*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 34579*/            0, /*End of Scope*/
/* 34580*/          /*Scope*/ 4|128,1/*132*/, /*->34714*/
/* 34582*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 34584*/            OPC_Scope, 62, /*->34648*/ // 2 children in Scope
/* 34586*/              OPC_MoveParent,
/* 34587*/              OPC_CheckType, MVT::i32,
/* 34589*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34591*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34599*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 34602*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34610*/              OPC_EmitInteger, MVT::i32, 0, 
/* 34613*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 34620*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34632*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 34639*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 34648*/            /*Scope*/ 64, /*->34713*/
/* 34649*/              OPC_CheckType, MVT::i1,
/* 34651*/              OPC_MoveParent,
/* 34652*/              OPC_CheckType, MVT::i64,
/* 34654*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34656*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34664*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 34667*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34675*/              OPC_EmitInteger, MVT::i64, 0, 
/* 34678*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 34685*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34697*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 34704*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 34713*/            0, /*End of Scope*/
/* 34714*/          /*Scope*/ 4|128,1/*132*/, /*->34848*/
/* 34716*/            OPC_CheckChild2CondCode, ISD::SETO,
/* 34718*/            OPC_Scope, 62, /*->34782*/ // 2 children in Scope
/* 34720*/              OPC_MoveParent,
/* 34721*/              OPC_CheckType, MVT::i32,
/* 34723*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34725*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34733*/              OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 34736*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34744*/              OPC_EmitInteger, MVT::i32, 0, 
/* 34747*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 34754*/              OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34766*/              OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                            MVT::i32, 1/*#Ops*/, 7,  // Results = #8
/* 34773*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                            MVT::i32, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i32] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I4:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }), (LI:{ *:[i32] } -1:{ *:[i32] }))
/* 34782*/            /*Scope*/ 64, /*->34847*/
/* 34783*/              OPC_CheckType, MVT::i1,
/* 34785*/              OPC_MoveParent,
/* 34786*/              OPC_CheckType, MVT::i64,
/* 34788*/              OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 34790*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                            MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34798*/              OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 34801*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 34809*/              OPC_EmitInteger, MVT::i64, 0, 
/* 34812*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 5,  // Results = #6
/* 34819*/              OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34831*/              OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                            MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 34838*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                            MVT::i64, 3/*#Ops*/, 4, 6, 8, 
                        // Src: (sext:{ *:[i64] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] })) - Complexity = 6
                        // Dst: (SELECT_I8:{ *:[i64] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }), (LI8:{ *:[i64] } 0:{ *:[i64] }), (LI8:{ *:[i64] } -1:{ *:[i64] }))
/* 34847*/            0, /*End of Scope*/
/* 34848*/          0, /*End of Scope*/
/* 34849*/        0, /*End of Scope*/
/* 34850*/      0, // EndSwitchOpcode
/* 34851*/    /*Scope*/ 98, /*->34950*/
/* 34852*/      OPC_RecordChild0, // #0 = $rS
/* 34853*/      OPC_SwitchType /*2 cases */, 53, MVT::i64,// ->34909
/* 34856*/        OPC_Scope, 9, /*->34867*/ // 2 children in Scope
/* 34858*/          OPC_CheckChild0Type, MVT::i32,
/* 34860*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW_32_64), 0,
                        MVT::i64, 1/*#Ops*/, 0, 
                    // Src: (sext:{ *:[i64] } i32:{ *:[i32] }:$rS) - Complexity = 3
                    // Dst: (EXTSW_32_64:{ *:[i64] } i32:{ *:[i32] }:$rS)
/* 34867*/        /*Scope*/ 40, /*->34908*/
/* 34868*/          OPC_CheckChild0Type, MVT::i1,
/* 34870*/          OPC_EmitInteger, MVT::i64, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34882*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 34889*/          OPC_EmitInteger, MVT::i64, 0, 
/* 34892*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 34899*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                        MVT::i64, 3/*#Ops*/, 0, 2, 4, 
                    // Src: (sext:{ *:[i64] } i1:{ *:[i1] }:$in) - Complexity = 3
                    // Dst: (SELECT_I8:{ *:[i64] } ?:{ *:[i1] }:$in, (LI8:{ *:[i64] } -1:{ *:[i64] }), (LI8:{ *:[i64] } 0:{ *:[i64] }))
/* 34908*/        0, /*End of Scope*/
/* 34909*/      /*SwitchType*/ 38, MVT::i32,// ->34949
/* 34911*/        OPC_EmitInteger, MVT::i32, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 34923*/        OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                      MVT::i32, 1/*#Ops*/, 1,  // Results = #2
/* 34930*/        OPC_EmitInteger, MVT::i32, 0, 
/* 34933*/        OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                      MVT::i32, 1/*#Ops*/, 3,  // Results = #4
/* 34940*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                      MVT::i32, 3/*#Ops*/, 0, 2, 4, 
                  // Src: (sext:{ *:[i32] } i1:{ *:[i1] }:$in) - Complexity = 3
                  // Dst: (SELECT_I4:{ *:[i32] } ?:{ *:[i1] }:$in, (LI:{ *:[i32] } -1:{ *:[i32] }), (LI:{ *:[i32] } 0:{ *:[i32] }))
/* 34949*/      0, // EndSwitchType
/* 34950*/    0, /*End of Scope*/
/* 34951*/  /*SwitchOpcode*/ 102|128,62/*8038*/, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),// ->42993
/* 34955*/    OPC_RecordChild0, // #0 = $A
/* 34956*/    OPC_Scope, 28|128,5/*668*/, /*->35627*/ // 29 children in Scope
/* 34959*/      OPC_CheckChild1Integer, 1, 
/* 34961*/      OPC_SwitchType /*2 cases */, 104, MVT::i64,// ->35068
/* 34964*/        OPC_Scope, 9, /*->34975*/ // 2 children in Scope
/* 34966*/          OPC_CheckPatternPredicate, 22, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (PPCSubTarget->isISA3_0())
/* 34968*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRLD), 0,
                        MVT::i64, 1/*#Ops*/, 0, 
                    // Src: (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (MFVSRLD:{ *:[i64] } ?:{ *:[v2i64] }:$A)
/* 34975*/        /*Scope*/ 91, /*->35067*/
/* 34976*/          OPC_CheckChild0Type, MVT::v2i64,
/* 34978*/          OPC_Scope, 31, /*->35011*/ // 2 children in Scope
/* 34980*/            OPC_CheckPatternPredicate, 23, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian())
/* 34982*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 34985*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 34993*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 34996*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35004*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 4, 
                      // Src: (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35011*/          /*Scope*/ 54, /*->35066*/
/* 35012*/            OPC_CheckPatternPredicate, 24, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian())
/* 35014*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35017*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35025*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35028*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 35036*/            OPC_EmitInteger, MVT::i32, 2, 
/* 35039*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 35048*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35051*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 35059*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 8, 
                      // Src: (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35066*/          0, /*End of Scope*/
/* 35067*/        0, /*End of Scope*/
/* 35068*/      /*SwitchType*/ 43|128,4/*555*/, MVT::i32,// ->35626
/* 35071*/        OPC_Scope, 5|128,1/*133*/, /*->35207*/ // 3 children in Scope
/* 35074*/          OPC_CheckChild0Type, MVT::v4i32,
/* 35076*/          OPC_Scope, 31, /*->35109*/ // 4 children in Scope
/* 35078*/            OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35080*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35083*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35091*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35094*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35102*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35109*/          /*Scope*/ 31, /*->35141*/
/* 35110*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 35112*/            OPC_EmitInteger, MVT::i64, 4, 
/* 35115*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35122*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35130*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35133*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 35141*/          /*Scope*/ 31, /*->35173*/
/* 35142*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 35144*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35147*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35155*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35158*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35166*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35173*/          /*Scope*/ 32, /*->35206*/
/* 35174*/            OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35176*/            OPC_EmitInteger, MVT::i32, 1, 
/* 35179*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 35188*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35191*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35199*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, 1:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35206*/          0, /*End of Scope*/
/* 35207*/        /*Scope*/ 79|128,1/*207*/, /*->35416*/
/* 35209*/          OPC_CheckChild0Type, MVT::v16i8,
/* 35211*/          OPC_Scope, 31, /*->35244*/ // 4 children in Scope
/* 35213*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 35215*/            OPC_EmitInteger, MVT::i64, 1, 
/* 35218*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35225*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35233*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35236*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 1:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 35244*/          /*Scope*/ 31, /*->35276*/
/* 35245*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 35247*/            OPC_EmitInteger, MVT::i64, 1, 
/* 35250*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35257*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35265*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35268*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 1:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 35276*/          /*Scope*/ 57, /*->35334*/
/* 35277*/            OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35279*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35282*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35290*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35293*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35301*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 35308*/            OPC_EmitInteger, MVT::i32, 16, 
/* 35311*/            OPC_EmitInteger, MVT::i32, 56, 
/* 35314*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 35323*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35326*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 8, 9, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 35334*/          /*Scope*/ 80, /*->35415*/
/* 35335*/            OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35337*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35340*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35348*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35351*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 35359*/            OPC_EmitInteger, MVT::i32, 2, 
/* 35362*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 35371*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35374*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 35382*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 35389*/            OPC_EmitInteger, MVT::i32, 56, 
/* 35392*/            OPC_EmitInteger, MVT::i32, 56, 
/* 35395*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 35404*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35407*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 12, 13, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 56:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 35415*/          0, /*End of Scope*/
/* 35416*/        /*Scope*/ 79|128,1/*207*/, /*->35625*/
/* 35418*/          OPC_CheckChild0Type, MVT::v8i16,
/* 35420*/          OPC_Scope, 31, /*->35453*/ // 4 children in Scope
/* 35422*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 35424*/            OPC_EmitInteger, MVT::i64, 2, 
/* 35427*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35434*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35442*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35445*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 2:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 35453*/          /*Scope*/ 31, /*->35485*/
/* 35454*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 35456*/            OPC_EmitInteger, MVT::i64, 2, 
/* 35459*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35466*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35474*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35477*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 2:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 35485*/          /*Scope*/ 57, /*->35543*/
/* 35486*/            OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35488*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35491*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35499*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35502*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35510*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 35517*/            OPC_EmitInteger, MVT::i32, 32, 
/* 35520*/            OPC_EmitInteger, MVT::i32, 48, 
/* 35523*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 35532*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35535*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 8, 9, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 35543*/          /*Scope*/ 80, /*->35624*/
/* 35544*/            OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35546*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35549*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35557*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35560*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 35568*/            OPC_EmitInteger, MVT::i32, 2, 
/* 35571*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 35580*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35583*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 35591*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 35598*/            OPC_EmitInteger, MVT::i32, 48, 
/* 35601*/            OPC_EmitInteger, MVT::i32, 48, 
/* 35604*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 35613*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35616*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 12, 13, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 35624*/          0, /*End of Scope*/
/* 35625*/        0, /*End of Scope*/
/* 35626*/      0, // EndSwitchType
/* 35627*/    /*Scope*/ 29|128,5/*669*/, /*->36298*/
/* 35629*/      OPC_CheckChild1Integer, 0, 
/* 35631*/      OPC_SwitchType /*2 cases */, 104, MVT::i64,// ->35738
/* 35634*/        OPC_Scope, 9, /*->35645*/ // 2 children in Scope
/* 35636*/          OPC_CheckPatternPredicate, 27, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isISA3_0()) && (PPCSubTarget->isLittleEndian())
/* 35638*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRLD), 0,
                        MVT::i64, 1/*#Ops*/, 0, 
                    // Src: (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$A, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (MFVSRLD:{ *:[i64] } ?:{ *:[v2i64] }:$A)
/* 35645*/        /*Scope*/ 91, /*->35737*/
/* 35646*/          OPC_CheckChild0Type, MVT::v2i64,
/* 35648*/          OPC_Scope, 31, /*->35681*/ // 2 children in Scope
/* 35650*/            OPC_CheckPatternPredicate, 24, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian())
/* 35652*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35655*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35663*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35666*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35674*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 4, 
                      // Src: (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35681*/          /*Scope*/ 54, /*->35736*/
/* 35682*/            OPC_CheckPatternPredicate, 23, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian())
/* 35684*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35687*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35695*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35698*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 35706*/            OPC_EmitInteger, MVT::i32, 2, 
/* 35709*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 35718*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35721*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 35729*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 8, 
                      // Src: (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35736*/          0, /*End of Scope*/
/* 35737*/        0, /*End of Scope*/
/* 35738*/      /*SwitchType*/ 44|128,4/*556*/, MVT::i32,// ->36297
/* 35741*/        OPC_Scope, 6|128,1/*134*/, /*->35878*/ // 3 children in Scope
/* 35744*/          OPC_CheckChild0Type, MVT::v4i32,
/* 35746*/          OPC_Scope, 32, /*->35780*/ // 4 children in Scope
/* 35748*/            OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35750*/            OPC_EmitInteger, MVT::i32, 3, 
/* 35753*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 35762*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35765*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35773*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, 3:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35780*/          /*Scope*/ 31, /*->35812*/
/* 35781*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 35783*/            OPC_EmitInteger, MVT::i64, 0, 
/* 35786*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35793*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35801*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35804*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 35812*/          /*Scope*/ 31, /*->35844*/
/* 35813*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 35815*/            OPC_EmitInteger, MVT::i64, 0, 
/* 35818*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35825*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35833*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35836*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 35844*/          /*Scope*/ 32, /*->35877*/
/* 35845*/            OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35847*/            OPC_EmitInteger, MVT::i32, 2, 
/* 35850*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 35859*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35862*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35870*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                          MVT::i32, 1/*#Ops*/, 4, 
                      // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, 2:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 35877*/          0, /*End of Scope*/
/* 35878*/        /*Scope*/ 79|128,1/*207*/, /*->36087*/
/* 35880*/          OPC_CheckChild0Type, MVT::v16i8,
/* 35882*/          OPC_Scope, 31, /*->35915*/ // 4 children in Scope
/* 35884*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 35886*/            OPC_EmitInteger, MVT::i64, 0, 
/* 35889*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35896*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35904*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35907*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 35915*/          /*Scope*/ 31, /*->35947*/
/* 35916*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 35918*/            OPC_EmitInteger, MVT::i64, 0, 
/* 35921*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 35928*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 35936*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35939*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 35947*/          /*Scope*/ 57, /*->36005*/
/* 35948*/            OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 35950*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 35953*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 35961*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 35964*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 35972*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 35979*/            OPC_EmitInteger, MVT::i32, 8, 
/* 35982*/            OPC_EmitInteger, MVT::i32, 56, 
/* 35985*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 35994*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 35997*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 8, 9, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 8:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36005*/          /*Scope*/ 80, /*->36086*/
/* 36006*/            OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36008*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36011*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36019*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36022*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 36030*/            OPC_EmitInteger, MVT::i32, 2, 
/* 36033*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 36042*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36045*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 36053*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 36060*/            OPC_EmitInteger, MVT::i32, 0, 
/* 36063*/            OPC_EmitInteger, MVT::i32, 56, 
/* 36066*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 36075*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36078*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 12, 13, 
                      // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36086*/          0, /*End of Scope*/
/* 36087*/        /*Scope*/ 79|128,1/*207*/, /*->36296*/
/* 36089*/          OPC_CheckChild0Type, MVT::v8i16,
/* 36091*/          OPC_Scope, 31, /*->36124*/ // 4 children in Scope
/* 36093*/            OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 36095*/            OPC_EmitInteger, MVT::i64, 0, 
/* 36098*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36105*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36113*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36116*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 36124*/          /*Scope*/ 31, /*->36156*/
/* 36125*/            OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 36127*/            OPC_EmitInteger, MVT::i64, 0, 
/* 36130*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36137*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36145*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36148*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 0:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 36156*/          /*Scope*/ 57, /*->36214*/
/* 36157*/            OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36159*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36162*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36170*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36173*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36181*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 36188*/            OPC_EmitInteger, MVT::i32, 16, 
/* 36191*/            OPC_EmitInteger, MVT::i32, 48, 
/* 36194*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 36203*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36206*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 8, 9, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36214*/          /*Scope*/ 80, /*->36295*/
/* 36215*/            OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36217*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36220*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36228*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36231*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 36239*/            OPC_EmitInteger, MVT::i32, 2, 
/* 36242*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 36251*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36254*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 36262*/            OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                          MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 36269*/            OPC_EmitInteger, MVT::i32, 0, 
/* 36272*/            OPC_EmitInteger, MVT::i32, 48, 
/* 36275*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                          MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 36284*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36287*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 12, 13, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36295*/          0, /*End of Scope*/
/* 36296*/        0, /*End of Scope*/
/* 36297*/      0, // EndSwitchType
/* 36298*/    /*Scope*/ 47|128,4/*559*/, /*->36859*/
/* 36300*/      OPC_CheckChild1Integer, 2, 
/* 36302*/      OPC_CheckType, MVT::i32,
/* 36304*/      OPC_Scope, 5|128,1/*133*/, /*->36440*/ // 3 children in Scope
/* 36307*/        OPC_CheckChild0Type, MVT::v4i32,
/* 36309*/        OPC_Scope, 32, /*->36343*/ // 4 children in Scope
/* 36311*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36313*/          OPC_EmitInteger, MVT::i32, 1, 
/* 36316*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 36325*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36328*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36336*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                        MVT::i32, 1/*#Ops*/, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, 1:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 36343*/        /*Scope*/ 31, /*->36375*/
/* 36344*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 36346*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36349*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36357*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36360*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36368*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                        MVT::i32, 1/*#Ops*/, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 36375*/        /*Scope*/ 31, /*->36407*/
/* 36376*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 36378*/          OPC_EmitInteger, MVT::i64, 8, 
/* 36381*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36388*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36396*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36399*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 36407*/        /*Scope*/ 31, /*->36439*/
/* 36408*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36410*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36413*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36421*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36424*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36432*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                        MVT::i32, 1/*#Ops*/, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 36439*/        0, /*End of Scope*/
/* 36440*/      /*Scope*/ 79|128,1/*207*/, /*->36649*/
/* 36442*/        OPC_CheckChild0Type, MVT::v16i8,
/* 36444*/        OPC_Scope, 31, /*->36477*/ // 4 children in Scope
/* 36446*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 36448*/          OPC_EmitInteger, MVT::i64, 2, 
/* 36451*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36458*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36466*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36469*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 2:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 36477*/        /*Scope*/ 31, /*->36509*/
/* 36478*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 36480*/          OPC_EmitInteger, MVT::i64, 2, 
/* 36483*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36490*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36498*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36501*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 2:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 36509*/        /*Scope*/ 57, /*->36567*/
/* 36510*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36512*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36515*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36523*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36526*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36534*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 36541*/          OPC_EmitInteger, MVT::i32, 24, 
/* 36544*/          OPC_EmitInteger, MVT::i32, 56, 
/* 36547*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 36556*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36559*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 24:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36567*/        /*Scope*/ 80, /*->36648*/
/* 36568*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36570*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36573*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36581*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36584*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 36592*/          OPC_EmitInteger, MVT::i32, 2, 
/* 36595*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 36604*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36607*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 36615*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 36622*/          OPC_EmitInteger, MVT::i32, 48, 
/* 36625*/          OPC_EmitInteger, MVT::i32, 56, 
/* 36628*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 36637*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36640*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36648*/        0, /*End of Scope*/
/* 36649*/      /*Scope*/ 79|128,1/*207*/, /*->36858*/
/* 36651*/        OPC_CheckChild0Type, MVT::v8i16,
/* 36653*/        OPC_Scope, 31, /*->36686*/ // 4 children in Scope
/* 36655*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 36657*/          OPC_EmitInteger, MVT::i64, 4, 
/* 36660*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36667*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36675*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36678*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 36686*/        /*Scope*/ 31, /*->36718*/
/* 36687*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 36689*/          OPC_EmitInteger, MVT::i64, 4, 
/* 36692*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36699*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36707*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36710*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 36718*/        /*Scope*/ 57, /*->36776*/
/* 36719*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36721*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36724*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36732*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36735*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36743*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 36750*/          OPC_EmitInteger, MVT::i32, 48, 
/* 36753*/          OPC_EmitInteger, MVT::i32, 48, 
/* 36756*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 36765*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36768*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36776*/        /*Scope*/ 80, /*->36857*/
/* 36777*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36779*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36782*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 36790*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 36793*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 36801*/          OPC_EmitInteger, MVT::i32, 2, 
/* 36804*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 36813*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36816*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 36824*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 36831*/          OPC_EmitInteger, MVT::i32, 32, 
/* 36834*/          OPC_EmitInteger, MVT::i32, 48, 
/* 36837*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 36846*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36849*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 36857*/        0, /*End of Scope*/
/* 36858*/      0, /*End of Scope*/
/* 36859*/    /*Scope*/ 48|128,4/*560*/, /*->37421*/
/* 36861*/      OPC_CheckChild1Integer, 3, 
/* 36863*/      OPC_CheckType, MVT::i32,
/* 36865*/      OPC_Scope, 6|128,1/*134*/, /*->37002*/ // 3 children in Scope
/* 36868*/        OPC_CheckChild0Type, MVT::v4i32,
/* 36870*/        OPC_Scope, 32, /*->36904*/ // 4 children in Scope
/* 36872*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36874*/          OPC_EmitInteger, MVT::i32, 2, 
/* 36877*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 36886*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36889*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36897*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                        MVT::i32, 1/*#Ops*/, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, 2:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 36904*/        /*Scope*/ 31, /*->36936*/
/* 36905*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 36907*/          OPC_EmitInteger, MVT::i64, 12, 
/* 36910*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36917*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36925*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36928*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWRX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 36936*/        /*Scope*/ 31, /*->36968*/
/* 36937*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 36939*/          OPC_EmitInteger, MVT::i64, 12, 
/* 36942*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 36949*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 36957*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 36960*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWLX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 36968*/        /*Scope*/ 32, /*->37001*/
/* 36969*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 36971*/          OPC_EmitInteger, MVT::i32, 3, 
/* 36974*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 36983*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 36986*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 36994*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                        MVT::i32, 1/*#Ops*/, 4, 
                    // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, 3:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 37001*/        0, /*End of Scope*/
/* 37002*/      /*Scope*/ 79|128,1/*207*/, /*->37211*/
/* 37004*/        OPC_CheckChild0Type, MVT::v16i8,
/* 37006*/        OPC_Scope, 31, /*->37039*/ // 4 children in Scope
/* 37008*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 37010*/          OPC_EmitInteger, MVT::i64, 3, 
/* 37013*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37020*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37028*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37031*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 3:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 37039*/        /*Scope*/ 31, /*->37071*/
/* 37040*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 37042*/          OPC_EmitInteger, MVT::i64, 3, 
/* 37045*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37052*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37060*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37063*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 3:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 37071*/        /*Scope*/ 57, /*->37129*/
/* 37072*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37074*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37077*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37085*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37088*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 37096*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 37103*/          OPC_EmitInteger, MVT::i32, 32, 
/* 37106*/          OPC_EmitInteger, MVT::i32, 56, 
/* 37109*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 37118*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37121*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37129*/        /*Scope*/ 80, /*->37210*/
/* 37130*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37132*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37135*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37143*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37146*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 37154*/          OPC_EmitInteger, MVT::i32, 2, 
/* 37157*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 37166*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37169*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 37177*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 37184*/          OPC_EmitInteger, MVT::i32, 40, 
/* 37187*/          OPC_EmitInteger, MVT::i32, 56, 
/* 37190*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 37199*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37202*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 40:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37210*/        0, /*End of Scope*/
/* 37211*/      /*Scope*/ 79|128,1/*207*/, /*->37420*/
/* 37213*/        OPC_CheckChild0Type, MVT::v8i16,
/* 37215*/        OPC_Scope, 31, /*->37248*/ // 4 children in Scope
/* 37217*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 37219*/          OPC_EmitInteger, MVT::i64, 6, 
/* 37222*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37229*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37237*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37240*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 6:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 37248*/        /*Scope*/ 31, /*->37280*/
/* 37249*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 37251*/          OPC_EmitInteger, MVT::i64, 6, 
/* 37254*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37261*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37269*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37272*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 6:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 37280*/        /*Scope*/ 57, /*->37338*/
/* 37281*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37283*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37286*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37294*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37297*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 37305*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 37312*/          OPC_EmitInteger, MVT::i32, 0, 
/* 37315*/          OPC_EmitInteger, MVT::i32, 48, 
/* 37318*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 37327*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37330*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37338*/        /*Scope*/ 80, /*->37419*/
/* 37339*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37341*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37344*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37352*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37355*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 37363*/          OPC_EmitInteger, MVT::i32, 2, 
/* 37366*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 37375*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37378*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 37386*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 37393*/          OPC_EmitInteger, MVT::i32, 16, 
/* 37396*/          OPC_EmitInteger, MVT::i32, 48, 
/* 37399*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 37408*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37411*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37419*/        0, /*End of Scope*/
/* 37420*/      0, /*End of Scope*/
/* 37421*/    /*Scope*/ 40|128,3/*424*/, /*->37847*/
/* 37423*/      OPC_CheckChild1Integer, 4, 
/* 37425*/      OPC_CheckType, MVT::i32,
/* 37427*/      OPC_Scope, 79|128,1/*207*/, /*->37637*/ // 2 children in Scope
/* 37430*/        OPC_CheckChild0Type, MVT::v16i8,
/* 37432*/        OPC_Scope, 31, /*->37465*/ // 4 children in Scope
/* 37434*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 37436*/          OPC_EmitInteger, MVT::i64, 4, 
/* 37439*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37446*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37454*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37457*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 37465*/        /*Scope*/ 31, /*->37497*/
/* 37466*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 37468*/          OPC_EmitInteger, MVT::i64, 4, 
/* 37471*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37478*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37486*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37489*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 37497*/        /*Scope*/ 57, /*->37555*/
/* 37498*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37500*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37503*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37511*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37514*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 37522*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 37529*/          OPC_EmitInteger, MVT::i32, 40, 
/* 37532*/          OPC_EmitInteger, MVT::i32, 56, 
/* 37535*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 37544*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37547*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 40:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37555*/        /*Scope*/ 80, /*->37636*/
/* 37556*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37558*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37561*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37569*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37572*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 37580*/          OPC_EmitInteger, MVT::i32, 2, 
/* 37583*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 37592*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37595*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 37603*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 37610*/          OPC_EmitInteger, MVT::i32, 32, 
/* 37613*/          OPC_EmitInteger, MVT::i32, 56, 
/* 37616*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 37625*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37628*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37636*/        0, /*End of Scope*/
/* 37637*/      /*Scope*/ 79|128,1/*207*/, /*->37846*/
/* 37639*/        OPC_CheckChild0Type, MVT::v8i16,
/* 37641*/        OPC_Scope, 31, /*->37674*/ // 4 children in Scope
/* 37643*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 37645*/          OPC_EmitInteger, MVT::i64, 8, 
/* 37648*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37655*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37663*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37666*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 37674*/        /*Scope*/ 31, /*->37706*/
/* 37675*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 37677*/          OPC_EmitInteger, MVT::i64, 8, 
/* 37680*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37687*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37695*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37698*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 37706*/        /*Scope*/ 57, /*->37764*/
/* 37707*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37709*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37712*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37720*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37723*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 37731*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 37738*/          OPC_EmitInteger, MVT::i32, 0, 
/* 37741*/          OPC_EmitInteger, MVT::i32, 48, 
/* 37744*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 37753*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37756*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37764*/        /*Scope*/ 80, /*->37845*/
/* 37765*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37767*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37770*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37778*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37781*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 37789*/          OPC_EmitInteger, MVT::i32, 2, 
/* 37792*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 37801*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37804*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 37812*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 37819*/          OPC_EmitInteger, MVT::i32, 16, 
/* 37822*/          OPC_EmitInteger, MVT::i32, 48, 
/* 37825*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 37834*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37837*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 4:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37845*/        0, /*End of Scope*/
/* 37846*/      0, /*End of Scope*/
/* 37847*/    /*Scope*/ 40|128,3/*424*/, /*->38273*/
/* 37849*/      OPC_CheckChild1Integer, 5, 
/* 37851*/      OPC_CheckType, MVT::i32,
/* 37853*/      OPC_Scope, 79|128,1/*207*/, /*->38063*/ // 2 children in Scope
/* 37856*/        OPC_CheckChild0Type, MVT::v16i8,
/* 37858*/        OPC_Scope, 31, /*->37891*/ // 4 children in Scope
/* 37860*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 37862*/          OPC_EmitInteger, MVT::i64, 5, 
/* 37865*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37872*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37880*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37883*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 5:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 37891*/        /*Scope*/ 31, /*->37923*/
/* 37892*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 37894*/          OPC_EmitInteger, MVT::i64, 5, 
/* 37897*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 37904*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 37912*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37915*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 5:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 37923*/        /*Scope*/ 57, /*->37981*/
/* 37924*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37926*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37929*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37937*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 37940*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 37948*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 37955*/          OPC_EmitInteger, MVT::i32, 48, 
/* 37958*/          OPC_EmitInteger, MVT::i32, 56, 
/* 37961*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 37970*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 37973*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 37981*/        /*Scope*/ 80, /*->38062*/
/* 37982*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 37984*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37987*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 37995*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 37998*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 38006*/          OPC_EmitInteger, MVT::i32, 2, 
/* 38009*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 38018*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38021*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 38029*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 38036*/          OPC_EmitInteger, MVT::i32, 24, 
/* 38039*/          OPC_EmitInteger, MVT::i32, 56, 
/* 38042*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 38051*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38054*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 24:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38062*/        0, /*End of Scope*/
/* 38063*/      /*Scope*/ 79|128,1/*207*/, /*->38272*/
/* 38065*/        OPC_CheckChild0Type, MVT::v8i16,
/* 38067*/        OPC_Scope, 31, /*->38100*/ // 4 children in Scope
/* 38069*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 38071*/          OPC_EmitInteger, MVT::i64, 10, 
/* 38074*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38081*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38089*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38092*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 10:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 38100*/        /*Scope*/ 31, /*->38132*/
/* 38101*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 38103*/          OPC_EmitInteger, MVT::i64, 10, 
/* 38106*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38113*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38121*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38124*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 10:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 38132*/        /*Scope*/ 57, /*->38190*/
/* 38133*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38135*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38138*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38146*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38149*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 38157*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 38164*/          OPC_EmitInteger, MVT::i32, 48, 
/* 38167*/          OPC_EmitInteger, MVT::i32, 48, 
/* 38170*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 38179*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38182*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38190*/        /*Scope*/ 80, /*->38271*/
/* 38191*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38193*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38196*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38204*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38207*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 38215*/          OPC_EmitInteger, MVT::i32, 2, 
/* 38218*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 38227*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38230*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 38238*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 38245*/          OPC_EmitInteger, MVT::i32, 32, 
/* 38248*/          OPC_EmitInteger, MVT::i32, 48, 
/* 38251*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 38260*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38263*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 5:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38271*/        0, /*End of Scope*/
/* 38272*/      0, /*End of Scope*/
/* 38273*/    /*Scope*/ 106|128,3/*490*/, /*->38765*/
/* 38275*/      OPC_CheckChild1Integer, 6, 
/* 38277*/      OPC_CheckType, MVT::i32,
/* 38279*/      OPC_Scope, 79|128,1/*207*/, /*->38489*/ // 2 children in Scope
/* 38282*/        OPC_CheckChild0Type, MVT::v16i8,
/* 38284*/        OPC_Scope, 31, /*->38317*/ // 4 children in Scope
/* 38286*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 38288*/          OPC_EmitInteger, MVT::i64, 6, 
/* 38291*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38298*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38306*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38309*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 6:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 38317*/        /*Scope*/ 31, /*->38349*/
/* 38318*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 38320*/          OPC_EmitInteger, MVT::i64, 6, 
/* 38323*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38330*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38338*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38341*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 6:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 38349*/        /*Scope*/ 57, /*->38407*/
/* 38350*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38352*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38355*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38363*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38366*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 38374*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 38381*/          OPC_EmitInteger, MVT::i32, 56, 
/* 38384*/          OPC_EmitInteger, MVT::i32, 56, 
/* 38387*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 38396*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38399*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 56:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38407*/        /*Scope*/ 80, /*->38488*/
/* 38408*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38410*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38413*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38421*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38424*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 38432*/          OPC_EmitInteger, MVT::i32, 2, 
/* 38435*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 38444*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38447*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 38455*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 38462*/          OPC_EmitInteger, MVT::i32, 16, 
/* 38465*/          OPC_EmitInteger, MVT::i32, 56, 
/* 38468*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 38477*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38480*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38488*/        0, /*End of Scope*/
/* 38489*/      /*Scope*/ 17|128,2/*273*/, /*->38764*/
/* 38491*/        OPC_CheckChild0Type, MVT::v8i16,
/* 38493*/        OPC_Scope, 64, /*->38559*/ // 4 children in Scope
/* 38495*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 38497*/          OPC_Scope, 29, /*->38528*/ // 2 children in Scope
/* 38499*/            OPC_EmitInteger, MVT::i64, 12, 
/* 38502*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38509*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38517*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38520*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 38528*/          /*Scope*/ 29, /*->38558*/
/* 38529*/            OPC_EmitInteger, MVT::i64, 14, 
/* 38532*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38539*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38547*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38550*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (LI8:{ *:[i64] } 14:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 38558*/          0, /*End of Scope*/
/* 38559*/        /*Scope*/ 64, /*->38624*/
/* 38560*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 38562*/          OPC_Scope, 29, /*->38593*/ // 2 children in Scope
/* 38564*/            OPC_EmitInteger, MVT::i64, 12, 
/* 38567*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38574*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38582*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38585*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 38593*/          /*Scope*/ 29, /*->38623*/
/* 38594*/            OPC_EmitInteger, MVT::i64, 14, 
/* 38597*/            OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                          MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38604*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                          MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38612*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38615*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i32, 2/*#Ops*/, 3, 4, 
                      // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                      // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (LI8:{ *:[i64] } 14:{ *:[i64] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 38623*/          0, /*End of Scope*/
/* 38624*/        /*Scope*/ 57, /*->38682*/
/* 38625*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38627*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38630*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38638*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38641*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 38649*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 38656*/          OPC_EmitInteger, MVT::i32, 32, 
/* 38659*/          OPC_EmitInteger, MVT::i32, 48, 
/* 38662*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 38671*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38674*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38682*/        /*Scope*/ 80, /*->38763*/
/* 38683*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38685*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38688*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38696*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38699*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 38707*/          OPC_EmitInteger, MVT::i32, 2, 
/* 38710*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 38719*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38722*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 38730*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 38737*/          OPC_EmitInteger, MVT::i32, 48, 
/* 38740*/          OPC_EmitInteger, MVT::i32, 48, 
/* 38743*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 38752*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38755*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 6:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38763*/        0, /*End of Scope*/
/* 38764*/      0, /*End of Scope*/
/* 38765*/    /*Scope*/ 104|128,2/*360*/, /*->39127*/
/* 38767*/      OPC_CheckChild1Integer, 7, 
/* 38769*/      OPC_CheckType, MVT::i32,
/* 38771*/      OPC_Scope, 79|128,1/*207*/, /*->38981*/ // 2 children in Scope
/* 38774*/        OPC_CheckChild0Type, MVT::v16i8,
/* 38776*/        OPC_Scope, 31, /*->38809*/ // 4 children in Scope
/* 38778*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 38780*/          OPC_EmitInteger, MVT::i64, 7, 
/* 38783*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38790*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38798*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38801*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 7:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 7:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 38809*/        /*Scope*/ 31, /*->38841*/
/* 38810*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 38812*/          OPC_EmitInteger, MVT::i64, 7, 
/* 38815*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 38822*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                        MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 38830*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38833*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 3, 4, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 7:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 7:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 38841*/        /*Scope*/ 57, /*->38899*/
/* 38842*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38844*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38847*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38855*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38858*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 38866*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 38873*/          OPC_EmitInteger, MVT::i32, 0, 
/* 38876*/          OPC_EmitInteger, MVT::i32, 56, 
/* 38879*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 38888*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38891*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 7:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38899*/        /*Scope*/ 80, /*->38980*/
/* 38900*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38902*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38905*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 38913*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38916*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 38924*/          OPC_EmitInteger, MVT::i32, 2, 
/* 38927*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 38936*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 38939*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 38947*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 38954*/          OPC_EmitInteger, MVT::i32, 8, 
/* 38957*/          OPC_EmitInteger, MVT::i32, 56, 
/* 38960*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 38969*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 38972*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 7:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 8:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 38980*/        0, /*End of Scope*/
/* 38981*/      /*Scope*/ 15|128,1/*143*/, /*->39126*/
/* 38983*/        OPC_CheckChild0Type, MVT::v8i16,
/* 38985*/        OPC_Scope, 57, /*->39044*/ // 2 children in Scope
/* 38987*/          OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 38989*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 38992*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39000*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39003*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 39011*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 39018*/          OPC_EmitInteger, MVT::i32, 16, 
/* 39021*/          OPC_EmitInteger, MVT::i32, 48, 
/* 39024*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 39033*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39036*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 8, 9, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 7:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39044*/        /*Scope*/ 80, /*->39125*/
/* 39045*/          OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39047*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39050*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39058*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39061*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 39069*/          OPC_EmitInteger, MVT::i32, 2, 
/* 39072*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 39081*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39084*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 39092*/          OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                        MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 39099*/          OPC_EmitInteger, MVT::i32, 0, 
/* 39102*/          OPC_EmitInteger, MVT::i32, 48, 
/* 39105*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 39114*/          OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39117*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i32, 2/*#Ops*/, 12, 13, 
                    // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, 7:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 48:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39125*/        0, /*End of Scope*/
/* 39126*/      0, /*End of Scope*/
/* 39127*/    /*Scope*/ 83|128,1/*211*/, /*->39340*/
/* 39129*/      OPC_CheckChild1Integer, 8, 
/* 39131*/      OPC_CheckChild0Type, MVT::v16i8,
/* 39133*/      OPC_CheckType, MVT::i32,
/* 39135*/      OPC_Scope, 31, /*->39168*/ // 4 children in Scope
/* 39137*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 39139*/        OPC_EmitInteger, MVT::i64, 8, 
/* 39142*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39149*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39157*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39160*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 8:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39168*/      /*Scope*/ 31, /*->39200*/
/* 39169*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 39171*/        OPC_EmitInteger, MVT::i64, 8, 
/* 39174*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39181*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39189*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39192*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 8:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39200*/      /*Scope*/ 57, /*->39258*/
/* 39201*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39203*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39206*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39214*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39217*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 39225*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 39232*/        OPC_EmitInteger, MVT::i32, 0, 
/* 39235*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39238*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 39247*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39250*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 8:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39258*/      /*Scope*/ 80, /*->39339*/
/* 39259*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39261*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39264*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39272*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39275*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 39283*/        OPC_EmitInteger, MVT::i32, 2, 
/* 39286*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 39295*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39298*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 39306*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 39313*/        OPC_EmitInteger, MVT::i32, 8, 
/* 39316*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39319*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 39328*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39331*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 8:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 8:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39339*/      0, /*End of Scope*/
/* 39340*/    /*Scope*/ 83|128,1/*211*/, /*->39553*/
/* 39342*/      OPC_CheckChild1Integer, 9, 
/* 39344*/      OPC_CheckChild0Type, MVT::v16i8,
/* 39346*/      OPC_CheckType, MVT::i32,
/* 39348*/      OPC_Scope, 31, /*->39381*/ // 4 children in Scope
/* 39350*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 39352*/        OPC_EmitInteger, MVT::i64, 9, 
/* 39355*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39362*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39370*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39373*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 9:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 9:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39381*/      /*Scope*/ 31, /*->39413*/
/* 39382*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 39384*/        OPC_EmitInteger, MVT::i64, 9, 
/* 39387*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39394*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39402*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39405*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 9:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 9:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39413*/      /*Scope*/ 57, /*->39471*/
/* 39414*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39416*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39419*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39427*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39430*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 39438*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 39445*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39448*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39451*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 39460*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39463*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 9:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 56:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39471*/      /*Scope*/ 80, /*->39552*/
/* 39472*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39474*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39477*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39485*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39488*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 39496*/        OPC_EmitInteger, MVT::i32, 2, 
/* 39499*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 39508*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39511*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 39519*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 39526*/        OPC_EmitInteger, MVT::i32, 16, 
/* 39529*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39532*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 39541*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39544*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 9:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39552*/      0, /*End of Scope*/
/* 39553*/    /*Scope*/ 83|128,1/*211*/, /*->39766*/
/* 39555*/      OPC_CheckChild1Integer, 10, 
/* 39557*/      OPC_CheckChild0Type, MVT::v16i8,
/* 39559*/      OPC_CheckType, MVT::i32,
/* 39561*/      OPC_Scope, 31, /*->39594*/ // 4 children in Scope
/* 39563*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 39565*/        OPC_EmitInteger, MVT::i64, 10, 
/* 39568*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39575*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39583*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39586*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 10:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 10:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39594*/      /*Scope*/ 31, /*->39626*/
/* 39595*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 39597*/        OPC_EmitInteger, MVT::i64, 10, 
/* 39600*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39607*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39615*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39618*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 10:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 10:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39626*/      /*Scope*/ 57, /*->39684*/
/* 39627*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39629*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39632*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39640*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39643*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 39651*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 39658*/        OPC_EmitInteger, MVT::i32, 48, 
/* 39661*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39664*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 39673*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39676*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 10:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39684*/      /*Scope*/ 80, /*->39765*/
/* 39685*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39687*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39690*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39698*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39701*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 39709*/        OPC_EmitInteger, MVT::i32, 2, 
/* 39712*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 39721*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39724*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 39732*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 39739*/        OPC_EmitInteger, MVT::i32, 24, 
/* 39742*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39745*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 39754*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39757*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 10:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 24:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39765*/      0, /*End of Scope*/
/* 39766*/    /*Scope*/ 83|128,1/*211*/, /*->39979*/
/* 39768*/      OPC_CheckChild1Integer, 11, 
/* 39770*/      OPC_CheckChild0Type, MVT::v16i8,
/* 39772*/      OPC_CheckType, MVT::i32,
/* 39774*/      OPC_Scope, 31, /*->39807*/ // 4 children in Scope
/* 39776*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 39778*/        OPC_EmitInteger, MVT::i64, 11, 
/* 39781*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39788*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39796*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39799*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 11:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 11:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39807*/      /*Scope*/ 31, /*->39839*/
/* 39808*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 39810*/        OPC_EmitInteger, MVT::i64, 11, 
/* 39813*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 39820*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 39828*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39831*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 11:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 11:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 39839*/      /*Scope*/ 57, /*->39897*/
/* 39840*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39842*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39845*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39853*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39856*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 39864*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 39871*/        OPC_EmitInteger, MVT::i32, 40, 
/* 39874*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39877*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 39886*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39889*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 11:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 40:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39897*/      /*Scope*/ 80, /*->39978*/
/* 39898*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 39900*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39903*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 39911*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 39914*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 39922*/        OPC_EmitInteger, MVT::i32, 2, 
/* 39925*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 39934*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 39937*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 39945*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 39952*/        OPC_EmitInteger, MVT::i32, 32, 
/* 39955*/        OPC_EmitInteger, MVT::i32, 56, 
/* 39958*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 39967*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 39970*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 11:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 39978*/      0, /*End of Scope*/
/* 39979*/    /*Scope*/ 83|128,1/*211*/, /*->40192*/
/* 39981*/      OPC_CheckChild1Integer, 12, 
/* 39983*/      OPC_CheckChild0Type, MVT::v16i8,
/* 39985*/      OPC_CheckType, MVT::i32,
/* 39987*/      OPC_Scope, 31, /*->40020*/ // 4 children in Scope
/* 39989*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 39991*/        OPC_EmitInteger, MVT::i64, 12, 
/* 39994*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40001*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40009*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40012*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 12:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40020*/      /*Scope*/ 31, /*->40052*/
/* 40021*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 40023*/        OPC_EmitInteger, MVT::i64, 12, 
/* 40026*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40033*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40041*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40044*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 12:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 12:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40052*/      /*Scope*/ 57, /*->40110*/
/* 40053*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40055*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40058*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40066*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40069*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 40077*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 40084*/        OPC_EmitInteger, MVT::i32, 32, 
/* 40087*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40090*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 40099*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40102*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 12:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 32:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40110*/      /*Scope*/ 80, /*->40191*/
/* 40111*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40113*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40116*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40124*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40127*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 40135*/        OPC_EmitInteger, MVT::i32, 2, 
/* 40138*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 40147*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40150*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 40158*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 40165*/        OPC_EmitInteger, MVT::i32, 40, 
/* 40168*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40171*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 40180*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40183*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 12:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 40:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40191*/      0, /*End of Scope*/
/* 40192*/    /*Scope*/ 83|128,1/*211*/, /*->40405*/
/* 40194*/      OPC_CheckChild1Integer, 13, 
/* 40196*/      OPC_CheckChild0Type, MVT::v16i8,
/* 40198*/      OPC_CheckType, MVT::i32,
/* 40200*/      OPC_Scope, 31, /*->40233*/ // 4 children in Scope
/* 40202*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 40204*/        OPC_EmitInteger, MVT::i64, 13, 
/* 40207*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40214*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40222*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40225*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 13:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 13:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40233*/      /*Scope*/ 31, /*->40265*/
/* 40234*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 40236*/        OPC_EmitInteger, MVT::i64, 13, 
/* 40239*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40246*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40254*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40257*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 13:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 13:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40265*/      /*Scope*/ 57, /*->40323*/
/* 40266*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40268*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40271*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40279*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40282*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 40290*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 40297*/        OPC_EmitInteger, MVT::i32, 24, 
/* 40300*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40303*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 40312*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40315*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 13:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 24:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40323*/      /*Scope*/ 80, /*->40404*/
/* 40324*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40326*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40329*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40337*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40340*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 40348*/        OPC_EmitInteger, MVT::i32, 2, 
/* 40351*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 40360*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40363*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 40371*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 40378*/        OPC_EmitInteger, MVT::i32, 48, 
/* 40381*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40384*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 40393*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40396*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 13:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 48:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40404*/      0, /*End of Scope*/
/* 40405*/    /*Scope*/ 83|128,1/*211*/, /*->40618*/
/* 40407*/      OPC_CheckChild1Integer, 14, 
/* 40409*/      OPC_CheckChild0Type, MVT::v16i8,
/* 40411*/      OPC_CheckType, MVT::i32,
/* 40413*/      OPC_Scope, 31, /*->40446*/ // 4 children in Scope
/* 40415*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 40417*/        OPC_EmitInteger, MVT::i64, 14, 
/* 40420*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40427*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40435*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40438*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 14:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 14:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40446*/      /*Scope*/ 31, /*->40478*/
/* 40447*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 40449*/        OPC_EmitInteger, MVT::i64, 14, 
/* 40452*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40459*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40467*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40470*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 14:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 14:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40478*/      /*Scope*/ 57, /*->40536*/
/* 40479*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40481*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40484*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40492*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40495*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 40503*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 40510*/        OPC_EmitInteger, MVT::i32, 16, 
/* 40513*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40516*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 40525*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40528*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 14:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 16:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40536*/      /*Scope*/ 80, /*->40617*/
/* 40537*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40539*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40542*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40550*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40553*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 40561*/        OPC_EmitInteger, MVT::i32, 2, 
/* 40564*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 40573*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40576*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 40584*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 40591*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40594*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40597*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 40606*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40609*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 14:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 56:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40617*/      0, /*End of Scope*/
/* 40618*/    /*Scope*/ 83|128,1/*211*/, /*->40831*/
/* 40620*/      OPC_CheckChild1Integer, 15, 
/* 40622*/      OPC_CheckChild0Type, MVT::v16i8,
/* 40624*/      OPC_CheckType, MVT::i32,
/* 40626*/      OPC_Scope, 31, /*->40659*/ // 4 children in Scope
/* 40628*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 40630*/        OPC_EmitInteger, MVT::i64, 15, 
/* 40633*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40640*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40648*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40651*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 15:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } (LI8:{ *:[i64] } 15:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40659*/      /*Scope*/ 31, /*->40691*/
/* 40660*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 40662*/        OPC_EmitInteger, MVT::i64, 15, 
/* 40665*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 1,  // Results = #2
/* 40672*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 2, 0,  // Results = #3
/* 40680*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40683*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 3, 4, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 15:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } (LI8:{ *:[i64] } 15:{ *:[i64] }), ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40691*/      /*Scope*/ 57, /*->40749*/
/* 40692*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40694*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40697*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40705*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40708*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 40716*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 4,  // Results = #5
/* 40723*/        OPC_EmitInteger, MVT::i32, 8, 
/* 40726*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40729*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 40738*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40741*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 8, 9, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 15:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), 8:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40749*/      /*Scope*/ 80, /*->40830*/
/* 40750*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40752*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40755*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 40763*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40766*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 40774*/        OPC_EmitInteger, MVT::i32, 2, 
/* 40777*/        OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 40786*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40789*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 6, 7,  // Results = #8
/* 40797*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 8,  // Results = #9
/* 40804*/        OPC_EmitInteger, MVT::i32, 0, 
/* 40807*/        OPC_EmitInteger, MVT::i32, 56, 
/* 40810*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 40819*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40822*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 12, 13, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, 15:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$S, VSRC:{ *:[i32] }), 2:{ *:[i32] }), sub_64:{ *:[i32] })), 0:{ *:[i32] }, 56:{ *:[i32] }), sub_32:{ *:[i32] })
/* 40830*/      0, /*End of Scope*/
/* 40831*/    /*Scope*/ 60|128,2/*316*/, /*->41149*/
/* 40833*/      OPC_CheckChild0Type, MVT::v16i8,
/* 40835*/      OPC_RecordChild1, // #1 = $Idx
/* 40836*/      OPC_CheckChild1Type, MVT::i64,
/* 40838*/      OPC_CheckType, MVT::i32,
/* 40840*/      OPC_Scope, 21, /*->40863*/ // 4 children in Scope
/* 40842*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 40844*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBRX), 0,
                      MVT::i64, 2/*#Ops*/, 1, 0,  // Results = #2
/* 40852*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40855*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBRX:{ *:[i64] } ?:{ *:[i64] }:$Idx, ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40863*/      /*Scope*/ 21, /*->40885*/
/* 40864*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 40866*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUBLX), 0,
                      MVT::i64, 2/*#Ops*/, 1, 0,  // Results = #2
/* 40874*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40877*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUBLX:{ *:[i64] } ?:{ *:[i64] }:$Idx, ?:{ *:[v16i8] }:$S), sub_32:{ *:[i32] })
/* 40885*/      /*Scope*/ 127, /*->41013*/
/* 40886*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 40888*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 40892*/        OPC_EmitInteger, MVT::i64, 8, 
/* 40895*/        OPC_EmitNode2, TARGET_VAL(PPC::ANDIo8), 0,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 40904*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 4,  // Results = #6
/* 40912*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 6,  // Results = #7
/* 40921*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 40924*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 7, 8,  // Results = #9
/* 40932*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 40935*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 9, 10,  // Results = #11
/* 40943*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 11,  // Results = #12
/* 40950*/        OPC_EmitInteger, MVT::i64, 7, 
/* 40953*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 13,  // Results = #14
/* 40960*/        OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 14, 1,  // Results = #15
/* 40968*/        OPC_EmitInteger, MVT::i32, 3, 
/* 40971*/        OPC_EmitInteger, MVT::i32, 60, 
/* 40974*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 15, 16, 17,  // Results = #18
/* 40983*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 40986*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 18, 19,  // Results = #20
/* 40994*/        OPC_EmitNode1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 12, 20,  // Results = #21
/* 41002*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41005*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 21, 22, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (SRD:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (ANDIo8:{ *:[i64] }:{ *:[i32] } ?:{ *:[i64] }:$Idx, 8:{ *:[i64] }))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), (EXTRACT_SUBREG:{ *:[i32] } (RLDICR:{ *:[i64] } (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 7:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 3:{ *:[i32] }, 60:{ *:[i32] }), sub_32:{ *:[i32] })), sub_32:{ *:[i32] })
/* 41013*/      /*Scope*/ 5|128,1/*133*/, /*->41148*/
/* 41015*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 41017*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 41021*/        OPC_EmitInteger, MVT::i64, 8, 
/* 41024*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 41031*/        OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 4, 1,  // Results = #5
/* 41039*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 5,  // Results = #6
/* 41047*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 6,  // Results = #7
/* 41056*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 41059*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 7, 8,  // Results = #9
/* 41067*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 41070*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 9, 10,  // Results = #11
/* 41078*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 11,  // Results = #12
/* 41085*/        OPC_EmitInteger, MVT::i64, 7, 
/* 41088*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 13,  // Results = #14
/* 41095*/        OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                      MVT::i64, 2/*#Ops*/, 14, 1,  // Results = #15
/* 41103*/        OPC_EmitInteger, MVT::i32, 3, 
/* 41106*/        OPC_EmitInteger, MVT::i32, 60, 
/* 41109*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 15, 16, 17,  // Results = #18
/* 41118*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41121*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 18, 19,  // Results = #20
/* 41129*/        OPC_EmitNode1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 12, 20,  // Results = #21
/* 41137*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41140*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 21, 22, 
                  // Src: (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (SRD:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v16i8] }:$S, ?:{ *:[v16i8] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 8:{ *:[i64] }), ?:{ *:[i64] }:$Idx))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), (EXTRACT_SUBREG:{ *:[i32] } (RLDICR:{ *:[i64] } (AND8:{ *:[i64] } (LI8:{ *:[i64] } 7:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 3:{ *:[i32] }, 60:{ *:[i32] }), sub_32:{ *:[i32] })), sub_32:{ *:[i32] })
/* 41148*/      0, /*End of Scope*/
/* 41149*/    /*Scope*/ 1|128,3/*385*/, /*->41536*/
/* 41151*/      OPC_CheckChild0Type, MVT::v8i16,
/* 41153*/      OPC_RecordChild1, // #1 = $Idx
/* 41154*/      OPC_CheckChild1Type, MVT::i64,
/* 41156*/      OPC_CheckType, MVT::i32,
/* 41158*/      OPC_Scope, 40, /*->41200*/ // 4 children in Scope
/* 41160*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 41162*/        OPC_EmitInteger, MVT::i32, 1, 
/* 41165*/        OPC_EmitInteger, MVT::i32, 28, 
/* 41168*/        OPC_EmitInteger, MVT::i32, 30, 
/* 41171*/        OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                      MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 41181*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHRX), 0,
                      MVT::i64, 2/*#Ops*/, 5, 0,  // Results = #6
/* 41189*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41192*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 6, 7, 
                  // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHRX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 1:{ *:[i32] }, 28:{ *:[i32] }, 30:{ *:[i32] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 41200*/      /*Scope*/ 40, /*->41241*/
/* 41201*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 41203*/        OPC_EmitInteger, MVT::i32, 1, 
/* 41206*/        OPC_EmitInteger, MVT::i32, 28, 
/* 41209*/        OPC_EmitInteger, MVT::i32, 30, 
/* 41212*/        OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                      MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 41222*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUHLX), 0,
                      MVT::i64, 2/*#Ops*/, 5, 0,  // Results = #6
/* 41230*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41233*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 6, 7, 
                  // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUHLX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 1:{ *:[i32] }, 28:{ *:[i32] }, 30:{ *:[i32] }), ?:{ *:[v8i16] }:$S), sub_32:{ *:[i32] })
/* 41241*/      /*Scope*/ 14|128,1/*142*/, /*->41385*/
/* 41243*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 41245*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 41249*/        OPC_EmitInteger, MVT::i64, 4, 
/* 41252*/        OPC_EmitNode2, TARGET_VAL(PPC::ANDIo8), 0,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 41261*/        OPC_EmitInteger, MVT::i32, 1, 
/* 41264*/        OPC_EmitInteger, MVT::i32, 62, 
/* 41267*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 4, 6, 7,  // Results = #8
/* 41276*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 8,  // Results = #9
/* 41284*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 9,  // Results = #10
/* 41293*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 41296*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 10, 11,  // Results = #12
/* 41304*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 41307*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 12, 13,  // Results = #14
/* 41315*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 14,  // Results = #15
/* 41322*/        OPC_EmitInteger, MVT::i64, 3, 
/* 41325*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 16,  // Results = #17
/* 41332*/        OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 17, 1,  // Results = #18
/* 41340*/        OPC_EmitInteger, MVT::i32, 4, 
/* 41343*/        OPC_EmitInteger, MVT::i32, 59, 
/* 41346*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 18, 19, 20,  // Results = #21
/* 41355*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41358*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 21, 22,  // Results = #23
/* 41366*/        OPC_EmitNode1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 15, 23,  // Results = #24
/* 41374*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41377*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 24, 25, 
                  // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (SRD:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDIo8:{ *:[i64] }:{ *:[i32] } ?:{ *:[i64] }:$Idx, 4:{ *:[i64] }), 1:{ *:[i32] }, 62:{ *:[i32] }))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), (EXTRACT_SUBREG:{ *:[i32] } (RLDICR:{ *:[i64] } (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 3:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 4:{ *:[i32] }, 59:{ *:[i32] }), sub_32:{ *:[i32] })), sub_32:{ *:[i32] })
/* 41385*/      /*Scope*/ 20|128,1/*148*/, /*->41535*/
/* 41387*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 41389*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 41393*/        OPC_EmitInteger, MVT::i64, 4, 
/* 41396*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 41403*/        OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 4, 1,  // Results = #5
/* 41411*/        OPC_EmitInteger, MVT::i32, 1, 
/* 41414*/        OPC_EmitInteger, MVT::i32, 62, 
/* 41417*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 41426*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 8,  // Results = #9
/* 41434*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 9,  // Results = #10
/* 41443*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 41446*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 10, 11,  // Results = #12
/* 41454*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 41457*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 12, 13,  // Results = #14
/* 41465*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 14,  // Results = #15
/* 41472*/        OPC_EmitInteger, MVT::i64, 3, 
/* 41475*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 16,  // Results = #17
/* 41482*/        OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                      MVT::i64, 2/*#Ops*/, 17, 1,  // Results = #18
/* 41490*/        OPC_EmitInteger, MVT::i32, 4, 
/* 41493*/        OPC_EmitInteger, MVT::i32, 59, 
/* 41496*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 18, 19, 20,  // Results = #21
/* 41505*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41508*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 21, 22,  // Results = #23
/* 41516*/        OPC_EmitNode1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 15, 23,  // Results = #24
/* 41524*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41527*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 24, 25, 
                  // Src: (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (SRD:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v8i16] }:$S, ?:{ *:[v8i16] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 4:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 1:{ *:[i32] }, 62:{ *:[i32] }))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), (EXTRACT_SUBREG:{ *:[i32] } (RLDICR:{ *:[i64] } (AND8:{ *:[i64] } (LI8:{ *:[i64] } 3:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 4:{ *:[i32] }, 59:{ *:[i32] }), sub_32:{ *:[i32] })), sub_32:{ *:[i32] })
/* 41535*/      0, /*End of Scope*/
/* 41536*/    /*Scope*/ 1|128,3/*385*/, /*->41923*/
/* 41538*/      OPC_CheckChild0Type, MVT::v4i32,
/* 41540*/      OPC_RecordChild1, // #1 = $Idx
/* 41541*/      OPC_CheckChild1Type, MVT::i64,
/* 41543*/      OPC_CheckType, MVT::i32,
/* 41545*/      OPC_Scope, 40, /*->41587*/ // 4 children in Scope
/* 41547*/        OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/* 41549*/        OPC_EmitInteger, MVT::i32, 2, 
/* 41552*/        OPC_EmitInteger, MVT::i32, 28, 
/* 41555*/        OPC_EmitInteger, MVT::i32, 29, 
/* 41558*/        OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                      MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 41568*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWRX), 0,
                      MVT::i64, 2/*#Ops*/, 5, 0,  // Results = #6
/* 41576*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41579*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 6, 7, 
                  // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWRX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 2:{ *:[i32] }, 28:{ *:[i32] }, 29:{ *:[i32] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 41587*/      /*Scope*/ 40, /*->41628*/
/* 41588*/        OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/* 41590*/        OPC_EmitInteger, MVT::i32, 2, 
/* 41593*/        OPC_EmitInteger, MVT::i32, 28, 
/* 41596*/        OPC_EmitInteger, MVT::i32, 29, 
/* 41599*/        OPC_EmitNode1, TARGET_VAL(PPC::RLWINM8), 0,
                      MVT::i64, 4/*#Ops*/, 1, 2, 3, 4,  // Results = #5
/* 41609*/        OPC_EmitNode1, TARGET_VAL(PPC::VEXTUWLX), 0,
                      MVT::i64, 2/*#Ops*/, 5, 0,  // Results = #6
/* 41617*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41620*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 6, 7, 
                  // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (VEXTUWLX:{ *:[i64] } (RLWINM8:{ *:[i64] } ?:{ *:[i64] }:$Idx, 2:{ *:[i32] }, 28:{ *:[i32] }, 29:{ *:[i32] }), ?:{ *:[v4i32] }:$S), sub_32:{ *:[i32] })
/* 41628*/      /*Scope*/ 14|128,1/*142*/, /*->41772*/
/* 41630*/        OPC_CheckPatternPredicate, 25, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 41632*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 41636*/        OPC_EmitInteger, MVT::i64, 2, 
/* 41639*/        OPC_EmitNode2, TARGET_VAL(PPC::ANDIo8), 0,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 41648*/        OPC_EmitInteger, MVT::i32, 2, 
/* 41651*/        OPC_EmitInteger, MVT::i32, 61, 
/* 41654*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 4, 6, 7,  // Results = #8
/* 41663*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 8,  // Results = #9
/* 41671*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 9,  // Results = #10
/* 41680*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 41683*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 10, 11,  // Results = #12
/* 41691*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 41694*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 12, 13,  // Results = #14
/* 41702*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 14,  // Results = #15
/* 41709*/        OPC_EmitInteger, MVT::i64, 1, 
/* 41712*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 16,  // Results = #17
/* 41719*/        OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 17, 1,  // Results = #18
/* 41727*/        OPC_EmitInteger, MVT::i32, 5, 
/* 41730*/        OPC_EmitInteger, MVT::i32, 58, 
/* 41733*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 18, 19, 20,  // Results = #21
/* 41742*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41745*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 21, 22,  // Results = #23
/* 41753*/        OPC_EmitNode1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 15, 23,  // Results = #24
/* 41761*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41764*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 24, 25, 
                  // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (SRD:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDIo8:{ *:[i64] }:{ *:[i32] } ?:{ *:[i64] }:$Idx, 2:{ *:[i64] }), 2:{ *:[i32] }, 61:{ *:[i32] }))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), (EXTRACT_SUBREG:{ *:[i32] } (RLDICR:{ *:[i64] } (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 1:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 5:{ *:[i32] }, 58:{ *:[i32] }), sub_32:{ *:[i32] })), sub_32:{ *:[i32] })
/* 41772*/      /*Scope*/ 20|128,1/*148*/, /*->41922*/
/* 41774*/        OPC_CheckPatternPredicate, 26, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec())
/* 41776*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 41780*/        OPC_EmitInteger, MVT::i64, 2, 
/* 41783*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 41790*/        OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 4, 1,  // Results = #5
/* 41798*/        OPC_EmitInteger, MVT::i32, 2, 
/* 41801*/        OPC_EmitInteger, MVT::i32, 61, 
/* 41804*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 41813*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 8,  // Results = #9
/* 41821*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 9,  // Results = #10
/* 41830*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 41833*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 10, 11,  // Results = #12
/* 41841*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 41844*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 12, 13,  // Results = #14
/* 41852*/        OPC_EmitNode1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 14,  // Results = #15
/* 41859*/        OPC_EmitInteger, MVT::i64, 1, 
/* 41862*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 16,  // Results = #17
/* 41869*/        OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                      MVT::i64, 2/*#Ops*/, 17, 1,  // Results = #18
/* 41877*/        OPC_EmitInteger, MVT::i32, 5, 
/* 41880*/        OPC_EmitInteger, MVT::i32, 58, 
/* 41883*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 18, 19, 20,  // Results = #21
/* 41892*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41895*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 21, 22,  // Results = #23
/* 41903*/        OPC_EmitNode1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 15, 23,  // Results = #24
/* 41911*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 41914*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 24, 25, 
                  // Src: (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } (SRD:{ *:[i64] } (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v4i32] }:$S, ?:{ *:[v4i32] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 2:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 2:{ *:[i32] }, 61:{ *:[i32] }))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] })), (EXTRACT_SUBREG:{ *:[i32] } (RLDICR:{ *:[i64] } (AND8:{ *:[i64] } (LI8:{ *:[i64] } 1:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 5:{ *:[i32] }, 58:{ *:[i32] }), sub_32:{ *:[i32] })), sub_32:{ *:[i32] })
/* 41922*/      0, /*End of Scope*/
/* 41923*/    /*Scope*/ 47|128,1/*175*/, /*->42100*/
/* 41925*/      OPC_CheckChild0Type, MVT::v2i64,
/* 41927*/      OPC_RecordChild1, // #1 = $Idx
/* 41928*/      OPC_CheckChild1Type, MVT::i64,
/* 41930*/      OPC_CheckType, MVT::i64,
/* 41932*/      OPC_Scope, 79, /*->42013*/ // 2 children in Scope
/* 41934*/        OPC_CheckPatternPredicate, 24, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian())
/* 41936*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 41940*/        OPC_EmitInteger, MVT::i64, 1, 
/* 41943*/        OPC_EmitNode2, TARGET_VAL(PPC::ANDIo8), 0,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 1, 3,  // Results = #4 #5
/* 41952*/        OPC_EmitInteger, MVT::i32, 3, 
/* 41955*/        OPC_EmitInteger, MVT::i32, 60, 
/* 41958*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 4, 6, 7,  // Results = #8
/* 41967*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 8,  // Results = #9
/* 41975*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 9,  // Results = #10
/* 41984*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 41987*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 10, 11,  // Results = #12
/* 41995*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 41998*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 12, 13,  // Results = #14
/* 42006*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 14, 
                  // Src: (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v2i64] }:$S, ?:{ *:[v2i64] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDIo8:{ *:[i64] }:{ *:[i32] } ?:{ *:[i64] }:$Idx, 1:{ *:[i64] }), 3:{ *:[i32] }, 60:{ *:[i32] }))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 42013*/      /*Scope*/ 85, /*->42099*/
/* 42014*/        OPC_CheckPatternPredicate, 23, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian())
/* 42016*/        OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 42020*/        OPC_EmitInteger, MVT::i64, 1, 
/* 42023*/        OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 42030*/        OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 4, 1,  // Results = #5
/* 42038*/        OPC_EmitInteger, MVT::i32, 3, 
/* 42041*/        OPC_EmitInteger, MVT::i32, 60, 
/* 42044*/        OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 42053*/        OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 8,  // Results = #9
/* 42061*/        OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                      MVT::v16i8, 3/*#Ops*/, 0, 0, 9,  // Results = #10
/* 42070*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 42073*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 10, 11,  // Results = #12
/* 42081*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42084*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 12, 13,  // Results = #14
/* 42092*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 14, 
                  // Src: (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                  // Dst: (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[v2i64] } (VPERM:{ *:[v16i8] } ?:{ *:[v2i64] }:$S, ?:{ *:[v2i64] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 1:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 3:{ *:[i32] }, 60:{ *:[i32] }))), VSRC:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 42099*/      0, /*End of Scope*/
/* 42100*/    /*Scope*/ 21|128,2/*277*/, /*->42379*/
/* 42102*/      OPC_CheckChild0Type, MVT::v2f64,
/* 42104*/      OPC_CheckType, MVT::f64,
/* 42106*/      OPC_Scope, 44, /*->42152*/ // 3 children in Scope
/* 42108*/        OPC_CheckChild1Integer, 0, 
/* 42110*/        OPC_Scope, 13, /*->42125*/ // 2 children in Scope
/* 42112*/          OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 42114*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42117*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 0, 1, 
                    // Src: (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$S, sub_64:{ *:[i32] })
/* 42125*/        /*Scope*/ 25, /*->42151*/
/* 42126*/          OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 42128*/          OPC_EmitInteger, MVT::i32, 2, 
/* 42131*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42140*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42143*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3, 
                    // Src: (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$S, ?:{ *:[v2f64] }:$S, 2:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42151*/        0, /*End of Scope*/
/* 42152*/      /*Scope*/ 44, /*->42197*/
/* 42153*/        OPC_CheckChild1Integer, 1, 
/* 42155*/        OPC_Scope, 13, /*->42170*/ // 2 children in Scope
/* 42157*/          OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 42159*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42162*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 0, 1, 
                    // Src: (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v2f64] }:$S, sub_64:{ *:[i32] })
/* 42170*/        /*Scope*/ 25, /*->42196*/
/* 42171*/          OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 42173*/          OPC_EmitInteger, MVT::i32, 2, 
/* 42176*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42185*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42188*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3, 
                    // Src: (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$S, ?:{ *:[v2f64] }:$S, 2:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42196*/        0, /*End of Scope*/
/* 42197*/      /*Scope*/ 51|128,1/*179*/, /*->42378*/
/* 42199*/        OPC_RecordChild1, // #1 = $Idx
/* 42200*/        OPC_CheckChild1Type, MVT::i64,
/* 42202*/        OPC_Scope, 83, /*->42287*/ // 2 children in Scope
/* 42204*/          OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 42206*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 42209*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 2,  // Results = #3
/* 42217*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 42220*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 4,  // Results = #5
/* 42228*/          OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 42232*/          OPC_EmitInteger, MVT::i64, 1, 
/* 42235*/          OPC_EmitNode2, TARGET_VAL(PPC::ANDIo8), 0,
                        MVT::i64, MVT::i32, 2/*#Ops*/, 1, 7,  // Results = #8 #9
/* 42244*/          OPC_EmitInteger, MVT::i32, 3, 
/* 42247*/          OPC_EmitInteger, MVT::i32, 60, 
/* 42250*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                        MVT::i64, 3/*#Ops*/, 8, 10, 11,  // Results = #12
/* 42259*/          OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                        MVT::v16i8, 2/*#Ops*/, 6, 12,  // Results = #13
/* 42267*/          OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                        MVT::v16i8, 3/*#Ops*/, 3, 5, 13,  // Results = #14
/* 42276*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 42279*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 14, 15, 
                    // Src: (vector_extract:{ *:[f64] } v2f64:{ *:[v2f64] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (VPERM:{ *:[v16i8] } (COPY_TO_REGCLASS:{ *:[v16i8] } ?:{ *:[v2f64] }:$S, VRRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v16i8] } ?:{ *:[v2f64] }:$S, VRRC:{ *:[i32] }), (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDIo8:{ *:[i64] }:{ *:[i32] } ?:{ *:[i64] }:$Idx, 1:{ *:[i64] }), 3:{ *:[i32] }, 60:{ *:[i32] }))), VSRC:{ *:[i32] })
/* 42287*/        /*Scope*/ 89, /*->42377*/
/* 42288*/          OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/* 42290*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 42293*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 2,  // Results = #3
/* 42301*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 42304*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 4,  // Results = #5
/* 42312*/          OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 42316*/          OPC_EmitInteger, MVT::i64, 1, 
/* 42319*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 7,  // Results = #8
/* 42326*/          OPC_EmitNode1, TARGET_VAL(PPC::ANDC8), 0,
                        MVT::i64, 2/*#Ops*/, 8, 1,  // Results = #9
/* 42334*/          OPC_EmitInteger, MVT::i32, 3, 
/* 42337*/          OPC_EmitInteger, MVT::i32, 60, 
/* 42340*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                        MVT::i64, 3/*#Ops*/, 9, 10, 11,  // Results = #12
/* 42349*/          OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                        MVT::v16i8, 2/*#Ops*/, 6, 12,  // Results = #13
/* 42357*/          OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                        MVT::v16i8, 3/*#Ops*/, 3, 5, 13,  // Results = #14
/* 42366*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 42369*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 14, 15, 
                    // Src: (vector_extract:{ *:[f64] } v2f64:{ *:[v2f64] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (VPERM:{ *:[v16i8] } (COPY_TO_REGCLASS:{ *:[v16i8] } ?:{ *:[v2f64] }:$S, VRRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v16i8] } ?:{ *:[v2f64] }:$S, VRRC:{ *:[i32] }), (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (ANDC8:{ *:[i64] } (LI8:{ *:[i64] } 1:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 3:{ *:[i32] }, 60:{ *:[i32] }))), VSRC:{ *:[i32] })
/* 42377*/        0, /*End of Scope*/
/* 42378*/      0, /*End of Scope*/
/* 42379*/    /*Scope*/ 38|128,2/*294*/, /*->42675*/
/* 42381*/      OPC_CheckChild0Type, MVT::v4f32,
/* 42383*/      OPC_CheckType, MVT::f32,
/* 42385*/      OPC_Scope, 36, /*->42423*/ // 5 children in Scope
/* 42387*/        OPC_CheckChild1Integer, 0, 
/* 42389*/        OPC_Scope, 9, /*->42400*/ // 2 children in Scope
/* 42391*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/* 42393*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 0, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } ?:{ *:[v4f32] }:$S)
/* 42400*/        /*Scope*/ 21, /*->42422*/
/* 42401*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/* 42403*/          OPC_EmitInteger, MVT::i32, 3, 
/* 42406*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42415*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 2, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, 3:{ *:[i32] }))
/* 42422*/        0, /*End of Scope*/
/* 42423*/      /*Scope*/ 36, /*->42460*/
/* 42424*/        OPC_CheckChild1Integer, 3, 
/* 42426*/        OPC_Scope, 9, /*->42437*/ // 2 children in Scope
/* 42428*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/* 42430*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 0, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } ?:{ *:[v4f32] }:$S)
/* 42437*/        /*Scope*/ 21, /*->42459*/
/* 42438*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/* 42440*/          OPC_EmitInteger, MVT::i32, 3, 
/* 42443*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42452*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 2, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, 3:{ *:[i32] }))
/* 42459*/        0, /*End of Scope*/
/* 42460*/      /*Scope*/ 48, /*->42509*/
/* 42461*/        OPC_CheckChild1Integer, 1, 
/* 42463*/        OPC_Scope, 21, /*->42486*/ // 2 children in Scope
/* 42465*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/* 42467*/          OPC_EmitInteger, MVT::i32, 1, 
/* 42470*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42479*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 2, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, 1:{ *:[i32] }))
/* 42486*/        /*Scope*/ 21, /*->42508*/
/* 42487*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/* 42489*/          OPC_EmitInteger, MVT::i32, 2, 
/* 42492*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42501*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 2, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, 2:{ *:[i32] }))
/* 42508*/        0, /*End of Scope*/
/* 42509*/      /*Scope*/ 48, /*->42558*/
/* 42510*/        OPC_CheckChild1Integer, 2, 
/* 42512*/        OPC_Scope, 21, /*->42535*/ // 2 children in Scope
/* 42514*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/* 42516*/          OPC_EmitInteger, MVT::i32, 2, 
/* 42519*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42528*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 2, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, 2:{ *:[i32] }))
/* 42535*/        /*Scope*/ 21, /*->42557*/
/* 42536*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/* 42538*/          OPC_EmitInteger, MVT::i32, 1, 
/* 42541*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 42550*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 2, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XSCVSPDPN:{ *:[f32] } (XXSLDWI:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, 1:{ *:[i32] }))
/* 42557*/        0, /*End of Scope*/
/* 42558*/      /*Scope*/ 115, /*->42674*/
/* 42559*/        OPC_RecordChild1, // #1 = $Idx
/* 42560*/        OPC_CheckChild1Type, MVT::i64,
/* 42562*/        OPC_Scope, 45, /*->42609*/ // 2 children in Scope
/* 42564*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/* 42566*/          OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 42570*/          OPC_EmitInteger, MVT::i32, 2, 
/* 42573*/          OPC_EmitInteger, MVT::i32, 61, 
/* 42576*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                        MVT::i64, 3/*#Ops*/, 1, 3, 4,  // Results = #5
/* 42585*/          OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                        MVT::v16i8, 2/*#Ops*/, 2, 5,  // Results = #6
/* 42593*/          OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 6,  // Results = #7
/* 42602*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 7, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                    // Dst: (XSCVSPDPN:{ *:[f32] } (VPERM:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$Idx, 2:{ *:[i32] }, 61:{ *:[i32] }))))
/* 42609*/        /*Scope*/ 63, /*->42673*/
/* 42610*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/* 42612*/          OPC_EmitRegister2, MVT::i64, TARGET_VAL(PPC::ZERO8),
/* 42616*/          OPC_EmitInteger, MVT::i64, 3, 
/* 42619*/          OPC_EmitNode1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 3,  // Results = #4
/* 42626*/          OPC_EmitNode1, TARGET_VAL(PPC::XOR8), 0,
                        MVT::i64, 2/*#Ops*/, 4, 1,  // Results = #5
/* 42634*/          OPC_EmitInteger, MVT::i32, 2, 
/* 42637*/          OPC_EmitInteger, MVT::i32, 61, 
/* 42640*/          OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                        MVT::i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/* 42649*/          OPC_EmitNode1, TARGET_VAL(PPC::LVSL), 0,
                        MVT::v16i8, 2/*#Ops*/, 2, 8,  // Results = #9
/* 42657*/          OPC_EmitNode1, TARGET_VAL(PPC::VPERM), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 0, 9,  // Results = #10
/* 42666*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                        MVT::f32, 1/*#Ops*/, 10, 
                    // Src: (vector_extract:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, i64:{ *:[i64] }:$Idx) - Complexity = 403
                    // Dst: (XSCVSPDPN:{ *:[f32] } (VPERM:{ *:[v4i32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, (LVSL:{ *:[v16i8] } ZERO8:{ *:[i64] }, (RLDICR:{ *:[i64] } (XOR8:{ *:[i64] } (LI8:{ *:[i64] } 3:{ *:[i64] }), ?:{ *:[i64] }:$Idx), 2:{ *:[i32] }, 61:{ *:[i32] }))))
/* 42673*/        0, /*End of Scope*/
/* 42674*/      0, /*End of Scope*/
/* 42675*/    /*Scope*/ 19, /*->42695*/
/* 42676*/      OPC_CheckChild0Type, MVT::v4f64,
/* 42678*/      OPC_CheckChild1Integer, 0, 
/* 42680*/      OPC_CheckType, MVT::f64,
/* 42682*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42684*/      OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42687*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::f64, 2/*#Ops*/, 0, 1, 
                // Src: (extractelt:{ *:[f64] } v4f64:{ *:[v4f64] }:$S, 0:{ *:[iPTR] }) - Complexity = 8
                // Dst: (EXTRACT_SUBREG:{ *:[f64] } ?:{ *:[v4f64] }:$S, sub_64:{ *:[i32] })
/* 42695*/    /*Scope*/ 17, /*->42713*/
/* 42696*/      OPC_CheckChild1Integer, 0, 
/* 42698*/      OPC_CheckType, MVT::f32,
/* 42700*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42702*/      OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42705*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::f32, 2/*#Ops*/, 0, 1, 
                // Src: (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 0:{ *:[iPTR] }) - Complexity = 8
                // Dst: (EXTRACT_SUBREG:{ *:[f32] } ?:{ *:[v4f32] }:$S, sub_64:{ *:[i32] })
/* 42713*/    /*Scope*/ 58, /*->42772*/
/* 42714*/      OPC_CheckChild1Integer, 1, 
/* 42716*/      OPC_SwitchType /*2 cases */, 26, MVT::f64,// ->42745
/* 42719*/        OPC_CheckChild0Type, MVT::v4f64,
/* 42721*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42723*/        OPC_EmitInteger, MVT::i32, 1, 
/* 42726*/        OPC_EmitNode1, TARGET_VAL(PPC::QVESPLATI), 0,
                      MVT::v4f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 42734*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42737*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3, 
                  // Src: (extractelt:{ *:[f64] } v4f64:{ *:[v4f64] }:$S, 1:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (EXTRACT_SUBREG:{ *:[f64] } (QVESPLATI:{ *:[v4f64] } ?:{ *:[v4f64] }:$S, 1:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42745*/      /*SwitchType*/ 24, MVT::f32,// ->42771
/* 42747*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42749*/        OPC_EmitInteger, MVT::i32, 1, 
/* 42752*/        OPC_EmitNode1, TARGET_VAL(PPC::QVESPLATIs), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 42760*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42763*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f32, 2/*#Ops*/, 2, 3, 
                  // Src: (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 1:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (EXTRACT_SUBREG:{ *:[f32] } (QVESPLATIs:{ *:[v4f32] } ?:{ *:[v4f32] }:$S, 1:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42771*/      0, // EndSwitchType
/* 42772*/    /*Scope*/ 58, /*->42831*/
/* 42773*/      OPC_CheckChild1Integer, 2, 
/* 42775*/      OPC_SwitchType /*2 cases */, 26, MVT::f64,// ->42804
/* 42778*/        OPC_CheckChild0Type, MVT::v4f64,
/* 42780*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42782*/        OPC_EmitInteger, MVT::i32, 2, 
/* 42785*/        OPC_EmitNode1, TARGET_VAL(PPC::QVESPLATI), 0,
                      MVT::v4f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 42793*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42796*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3, 
                  // Src: (extractelt:{ *:[f64] } v4f64:{ *:[v4f64] }:$S, 2:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (EXTRACT_SUBREG:{ *:[f64] } (QVESPLATI:{ *:[v4f64] } ?:{ *:[v4f64] }:$S, 2:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42804*/      /*SwitchType*/ 24, MVT::f32,// ->42830
/* 42806*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42808*/        OPC_EmitInteger, MVT::i32, 2, 
/* 42811*/        OPC_EmitNode1, TARGET_VAL(PPC::QVESPLATIs), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 42819*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42822*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f32, 2/*#Ops*/, 2, 3, 
                  // Src: (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 2:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (EXTRACT_SUBREG:{ *:[f32] } (QVESPLATIs:{ *:[v4f32] } ?:{ *:[v4f32] }:$S, 2:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42830*/      0, // EndSwitchType
/* 42831*/    /*Scope*/ 58, /*->42890*/
/* 42832*/      OPC_CheckChild1Integer, 3, 
/* 42834*/      OPC_SwitchType /*2 cases */, 26, MVT::f64,// ->42863
/* 42837*/        OPC_CheckChild0Type, MVT::v4f64,
/* 42839*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42841*/        OPC_EmitInteger, MVT::i32, 3, 
/* 42844*/        OPC_EmitNode1, TARGET_VAL(PPC::QVESPLATI), 0,
                      MVT::v4f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 42852*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42855*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 2, 3, 
                  // Src: (extractelt:{ *:[f64] } v4f64:{ *:[v4f64] }:$S, 3:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (EXTRACT_SUBREG:{ *:[f64] } (QVESPLATI:{ *:[v4f64] } ?:{ *:[v4f64] }:$S, 3:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42863*/      /*SwitchType*/ 24, MVT::f32,// ->42889
/* 42865*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42867*/        OPC_EmitInteger, MVT::i32, 3, 
/* 42870*/        OPC_EmitNode1, TARGET_VAL(PPC::QVESPLATIs), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 42878*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42881*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f32, 2/*#Ops*/, 2, 3, 
                  // Src: (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, 3:{ *:[iPTR] }) - Complexity = 8
                  // Dst: (EXTRACT_SUBREG:{ *:[f32] } (QVESPLATIs:{ *:[v4f32] } ?:{ *:[v4f32] }:$S, 3:{ *:[i32] }), sub_64:{ *:[i32] })
/* 42889*/      0, // EndSwitchType
/* 42890*/    /*Scope*/ 51, /*->42942*/
/* 42891*/      OPC_CheckChild0Type, MVT::v4f64,
/* 42893*/      OPC_RecordChild1, // #1 = $F
/* 42894*/      OPC_CheckChild1Type, MVT::i64,
/* 42896*/      OPC_CheckType, MVT::f64,
/* 42898*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42900*/      OPC_EmitInteger, MVT::i32, 2, 
/* 42903*/      OPC_EmitInteger, MVT::i32, 61, 
/* 42906*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 42915*/      OPC_EmitNode1, TARGET_VAL(PPC::QVLPCLSXint), 0,
                    MVT::v4f64, 1/*#Ops*/, 4,  // Results = #5
/* 42922*/      OPC_EmitNode1, TARGET_VAL(PPC::QVFPERM), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 0, 5,  // Results = #6
/* 42931*/      OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42934*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::f64, 2/*#Ops*/, 6, 7, 
                // Src: (extractelt:{ *:[f64] } v4f64:{ *:[v4f64] }:$S, i64:{ *:[i64] }:$F) - Complexity = 3
                // Dst: (EXTRACT_SUBREG:{ *:[f64] } (QVFPERM:{ *:[v4f64] } ?:{ *:[v4f64] }:$S, ?:{ *:[v4f64] }:$S, (QVLPCLSXint:{ *:[v4f64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$F, 2:{ *:[i32] }, 61:{ *:[i32] }))), sub_64:{ *:[i32] })
/* 42942*/    /*Scope*/ 49, /*->42992*/
/* 42943*/      OPC_RecordChild1, // #1 = $F
/* 42944*/      OPC_CheckChild1Type, MVT::i64,
/* 42946*/      OPC_CheckType, MVT::f32,
/* 42948*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 42950*/      OPC_EmitInteger, MVT::i32, 2, 
/* 42953*/      OPC_EmitInteger, MVT::i32, 61, 
/* 42956*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 42965*/      OPC_EmitNode1, TARGET_VAL(PPC::QVLPCLSXint), 0,
                    MVT::v4f64, 1/*#Ops*/, 4,  // Results = #5
/* 42972*/      OPC_EmitNode1, TARGET_VAL(PPC::QVFPERMs), 0,
                    MVT::v4f32, 3/*#Ops*/, 0, 0, 5,  // Results = #6
/* 42981*/      OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 42984*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::f32, 2/*#Ops*/, 6, 7, 
                // Src: (extractelt:{ *:[f32] } v4f32:{ *:[v4f32] }:$S, i64:{ *:[i64] }:$F) - Complexity = 3
                // Dst: (EXTRACT_SUBREG:{ *:[f32] } (QVFPERMs:{ *:[v4f32] } ?:{ *:[v4f32] }:$S, ?:{ *:[v4f32] }:$S, (QVLPCLSXint:{ *:[v4f64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$F, 2:{ *:[i32] }, 61:{ *:[i32] }))), sub_64:{ *:[i32] })
/* 42992*/    0, /*End of Scope*/
/* 42993*/  /*SwitchOpcode*/ 66|128,34/*4418*/, TARGET_VAL(ISD::INTRINSIC_WO_CHAIN),// ->47415
/* 42997*/    OPC_Scope, 31, /*->43030*/ // 265 children in Scope
/* 42999*/      OPC_CheckChild0Integer, 127|128,42/*5503*/, 
/* 43002*/      OPC_RecordChild1, // #0 = $vA
/* 43003*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43005*/      OPC_EmitNode1, TARGET_VAL(PPC::XSXEXPQP), 0,
                    MVT::v2i64, 1/*#Ops*/, 0,  // Results = #1
/* 43012*/      OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 43015*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 43023*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                    MVT::i64, 1/*#Ops*/, 3, 
                // Src: (intrinsic_wo_chain:{ *:[i64] } 5503:{ *:[iPTR] }, f128:{ *:[f128] }:$vA) - Complexity = 408
                // Dst: (MFVSRD:{ *:[i64] } (EXTRACT_SUBREG:{ *:[f64] } (XSXEXPQP:{ *:[v2i64] } ?:{ *:[f128] }:$vA), sub_64:{ *:[i32] }))
/* 43030*/    /*Scope*/ 15, /*->43046*/
/* 43031*/      OPC_CheckChild0Integer, 33|128,42/*5409*/, 
/* 43034*/      OPC_RecordChild1, // #0 = $rA
/* 43035*/      OPC_RecordChild2, // #1 = $rB
/* 43036*/      OPC_CheckPatternPredicate, 31, // (PPCSubTarget->hasExtDiv())
/* 43038*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVWE), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[i32] } 5409:{ *:[iPTR] }, gprc:{ *:[i32] }:$rA, gprc:{ *:[i32] }:$rB) - Complexity = 8
                // Dst: (DIVWE:{ *:[i32] } gprc:{ *:[i32] }:$rA, gprc:{ *:[i32] }:$rB)
/* 43046*/    /*Scope*/ 15, /*->43062*/
/* 43047*/      OPC_CheckChild0Integer, 34|128,42/*5410*/, 
/* 43050*/      OPC_RecordChild1, // #0 = $rA
/* 43051*/      OPC_RecordChild2, // #1 = $rB
/* 43052*/      OPC_CheckPatternPredicate, 31, // (PPCSubTarget->hasExtDiv())
/* 43054*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVWEU), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[i32] } 5410:{ *:[iPTR] }, gprc:{ *:[i32] }:$rA, gprc:{ *:[i32] }:$rB) - Complexity = 8
                // Dst: (DIVWEU:{ *:[i32] } gprc:{ *:[i32] }:$rA, gprc:{ *:[i32] }:$rB)
/* 43062*/    /*Scope*/ 13, /*->43076*/
/* 43063*/      OPC_CheckChild0Integer, 117|128,40/*5237*/, 
/* 43066*/      OPC_RecordChild1, // #0 = $vB
/* 43067*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 43069*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCLZLSBB), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[i32] } 5237:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VCLZLSBB:{ *:[i32] } v16i8:{ *:[v16i8] }:$vB)
/* 43076*/    /*Scope*/ 13, /*->43090*/
/* 43077*/      OPC_CheckChild0Integer, 36|128,41/*5284*/, 
/* 43080*/      OPC_RecordChild1, // #0 = $vB
/* 43081*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 43083*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTZLSBB), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[i32] } 5284:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VCTZLSBB:{ *:[i32] } v16i8:{ *:[v16i8] }:$vB)
/* 43090*/    /*Scope*/ 15, /*->43106*/
/* 43091*/      OPC_CheckChild0Integer, 20|128,42/*5396*/, 
/* 43094*/      OPC_RecordChild1, // #0 = $rS
/* 43095*/      OPC_RecordChild2, // #1 = $rB
/* 43096*/      OPC_CheckPatternPredicate, 33, // (PPCSubTarget->hasBPERMD())
/* 43098*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::BPERMD), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[i64] } 5396:{ *:[iPTR] }, g8rc:{ *:[i64] }:$rS, g8rc:{ *:[i64] }:$rB) - Complexity = 8
                // Dst: (BPERMD:{ *:[i64] } g8rc:{ *:[i64] }:$rS, g8rc:{ *:[i64] }:$rB)
/* 43106*/    /*Scope*/ 15, /*->43122*/
/* 43107*/      OPC_CheckChild0Integer, 30|128,42/*5406*/, 
/* 43110*/      OPC_RecordChild1, // #0 = $rA
/* 43111*/      OPC_RecordChild2, // #1 = $rB
/* 43112*/      OPC_CheckPatternPredicate, 31, // (PPCSubTarget->hasExtDiv())
/* 43114*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVDE), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[i64] } 5406:{ *:[iPTR] }, g8rc:{ *:[i64] }:$rA, g8rc:{ *:[i64] }:$rB) - Complexity = 8
                // Dst: (DIVDE:{ *:[i64] } g8rc:{ *:[i64] }:$rA, g8rc:{ *:[i64] }:$rB)
/* 43122*/    /*Scope*/ 15, /*->43138*/
/* 43123*/      OPC_CheckChild0Integer, 31|128,42/*5407*/, 
/* 43126*/      OPC_RecordChild1, // #0 = $rA
/* 43127*/      OPC_RecordChild2, // #1 = $rB
/* 43128*/      OPC_CheckPatternPredicate, 31, // (PPCSubTarget->hasExtDiv())
/* 43130*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVDEU), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[i64] } 5407:{ *:[iPTR] }, g8rc:{ *:[i64] }:$rA, g8rc:{ *:[i64] }:$rB) - Complexity = 8
                // Dst: (DIVDEU:{ *:[i64] } g8rc:{ *:[i64] }:$rA, g8rc:{ *:[i64] }:$rB)
/* 43138*/    /*Scope*/ 38, /*->43177*/
/* 43139*/      OPC_CheckChild0Integer, 35|128,42/*5411*/, 
/* 43142*/      OPC_RecordChild1, // #0 = $vA
/* 43143*/      OPC_RecordChild2, // #1 = $vB
/* 43144*/      OPC_Scope, 17, /*->43163*/ // 2 children in Scope
/* 43146*/        OPC_MoveChild3,
/* 43147*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 43150*/        OPC_RecordChild0, // #2 = $vTi
/* 43151*/        OPC_MoveParent,
/* 43152*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43154*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMSUBQPO), 0,
                      MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (intrinsic_wo_chain:{ *:[f128] } 5411:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, (fneg:{ *:[f128] } f128:{ *:[f128] }:$vTi)) - Complexity = 411
                  // Dst: (XSMSUBQPO:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 43163*/      /*Scope*/ 12, /*->43176*/
/* 43164*/        OPC_RecordChild3, // #2 = $vTi
/* 43165*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43167*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMADDQPO), 0,
                      MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (intrinsic_wo_chain:{ *:[f128] } 5411:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, f128:{ *:[f128] }:$vTi) - Complexity = 408
                  // Dst: (XSMADDQPO:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 43176*/      0, /*End of Scope*/
/* 43177*/    /*Scope*/ 15, /*->43193*/
/* 43178*/      OPC_CheckChild0Integer, 37|128,43/*5541*/, 
/* 43181*/      OPC_RecordChild1, // #0 = $XA
/* 43182*/      OPC_RecordChild2, // #1 = $XB
/* 43183*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43185*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMAXDP), 0,
                    MVT::f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[f64] } 5541:{ *:[iPTR] }, vsfrc:{ *:[f64] }:$XA, vsfrc:{ *:[f64] }:$XB) - Complexity = 408
                // Dst: (XSMAXDP:{ *:[f64] } vsfrc:{ *:[f64] }:$XA, vsfrc:{ *:[f64] }:$XB)
/* 43193*/    /*Scope*/ 15, /*->43209*/
/* 43194*/      OPC_CheckChild0Integer, 38|128,43/*5542*/, 
/* 43197*/      OPC_RecordChild1, // #0 = $XA
/* 43198*/      OPC_RecordChild2, // #1 = $XB
/* 43199*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43201*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMINDP), 0,
                    MVT::f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[f64] } 5542:{ *:[iPTR] }, vsfrc:{ *:[f64] }:$XA, vsfrc:{ *:[f64] }:$XB) - Complexity = 408
                // Dst: (XSMINDP:{ *:[f64] } vsfrc:{ *:[f64] }:$XA, vsfrc:{ *:[f64] }:$XB)
/* 43209*/    /*Scope*/ 15, /*->43225*/
/* 43210*/      OPC_CheckChild0Integer, 62|128,40/*5182*/, 
/* 43213*/      OPC_RecordChild1, // #0 = $vA
/* 43214*/      OPC_RecordChild2, // #1 = $vB
/* 43215*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43217*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSADDQPO), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[f128] } 5182:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 408
                // Dst: (XSADDQPO:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 43225*/    /*Scope*/ 15, /*->43241*/
/* 43226*/      OPC_CheckChild0Integer, 43|128,42/*5419*/, 
/* 43229*/      OPC_RecordChild1, // #0 = $vA
/* 43230*/      OPC_RecordChild2, // #1 = $vB
/* 43231*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43233*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMULQPO), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[f128] } 5419:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 408
                // Dst: (XSMULQPO:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 43241*/    /*Scope*/ 15, /*->43257*/
/* 43242*/      OPC_CheckChild0Integer, 7|128,43/*5511*/, 
/* 43245*/      OPC_RecordChild1, // #0 = $vA
/* 43246*/      OPC_RecordChild2, // #1 = $vB
/* 43247*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43249*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSUBQPO), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[f128] } 5511:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 408
                // Dst: (XSSUBQPO:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 43257*/    /*Scope*/ 15, /*->43273*/
/* 43258*/      OPC_CheckChild0Integer, 32|128,42/*5408*/, 
/* 43261*/      OPC_RecordChild1, // #0 = $vA
/* 43262*/      OPC_RecordChild2, // #1 = $vB
/* 43263*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43265*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSDIVQPO), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[f128] } 5408:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 408
                // Dst: (XSDIVQPO:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 43273*/    /*Scope*/ 13, /*->43287*/
/* 43274*/      OPC_CheckChild0Integer, 6|128,43/*5510*/, 
/* 43277*/      OPC_RecordChild1, // #0 = $vB
/* 43278*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43280*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSQRTQPO), 0,
                    MVT::f128, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[f128] } 5510:{ *:[iPTR] }, f128:{ *:[f128] }:$vB) - Complexity = 408
                // Dst: (XSSQRTQPO:{ *:[f128] } f128:{ *:[f128] }:$vB)
/* 43287*/    /*Scope*/ 13, /*->43301*/
/* 43288*/      OPC_CheckChild0Integer, 21|128,43/*5525*/, 
/* 43291*/      OPC_RecordChild1, // #0 = $vB
/* 43292*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43294*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVQPDPO), 0,
                    MVT::f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[f64] } 5525:{ *:[iPTR] }, f128:{ *:[f128] }:$vB) - Complexity = 408
                // Dst: (XSCVQPDPO:{ *:[f64] } f128:{ *:[f128] }:$vB)
/* 43301*/    /*Scope*/ 22, /*->43324*/
/* 43302*/      OPC_CheckChild0Integer, 0|128,43/*5504*/, 
/* 43305*/      OPC_RecordChild1, // #0 = $vA
/* 43306*/      OPC_RecordChild2, // #1 = $vB
/* 43307*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43309*/      OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                    MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/* 43316*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSIEXPQP), 0,
                    MVT::f128, 2/*#Ops*/, 0, 2, 
                // Src: (intrinsic_wo_chain:{ *:[f128] } 5504:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, i64:{ *:[i64] }:$vB) - Complexity = 408
                // Dst: (XSIEXPQP:{ *:[f128] } ?:{ *:[f128] }:$vA, (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$vB))
/* 43324*/    /*Scope*/ 24, /*->43349*/
/* 43325*/      OPC_CheckChild0Integer, 82|128,43/*5586*/, 
/* 43328*/      OPC_RecordChild1, // #0 = $A
/* 43329*/      OPC_RecordChild2, // #1 = $B
/* 43330*/      OPC_RecordChild3, // #2 = $IMM
/* 43331*/      OPC_MoveChild3,
/* 43332*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 43335*/      OPC_MoveParent,
/* 43336*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43338*/      OPC_EmitConvertToTarget, 2,
/* 43340*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 3, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5586:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$A, v2i64:{ *:[v2i64] }:$B, (imm:{ *:[i32] }):$IMM) - Complexity = 411
                // Dst: (XXINSERTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v2i64] }:$B, (imm:{ *:[i32] }):$IMM)
/* 43349*/    /*Scope*/ 20, /*->43370*/
/* 43350*/      OPC_CheckChild0Integer, 76|128,43/*5580*/, 
/* 43353*/      OPC_RecordChild1, // #0 = $XB
/* 43354*/      OPC_RecordChild2, // #1 = $DCMX
/* 43355*/      OPC_MoveChild2,
/* 43356*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 43359*/      OPC_MoveParent,
/* 43360*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43362*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVTSTDCSP), 0,
                    MVT::v4i32, 2/*#Ops*/, 1, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5580:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XB, (timm:{ *:[i32] }):$DCMX) - Complexity = 411
                // Dst: (XVTSTDCSP:{ *:[v4i32] } (timm:{ *:[i32] }):$DCMX, v4f32:{ *:[v4f32] }:$XB)
/* 43370*/    /*Scope*/ 20, /*->43391*/
/* 43371*/      OPC_CheckChild0Integer, 75|128,43/*5579*/, 
/* 43374*/      OPC_RecordChild1, // #0 = $XB
/* 43375*/      OPC_RecordChild2, // #1 = $DCMX
/* 43376*/      OPC_MoveChild2,
/* 43377*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 43380*/      OPC_MoveParent,
/* 43381*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43383*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVTSTDCDP), 0,
                    MVT::v2i64, 2/*#Ops*/, 1, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5579:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XB, (timm:{ *:[i32] }):$DCMX) - Complexity = 411
                // Dst: (XVTSTDCDP:{ *:[v2i64] } (timm:{ *:[i32] }):$DCMX, v2f64:{ *:[v2f64] }:$XB)
/* 43391*/    /*Scope*/ 33, /*->43425*/
/* 43392*/      OPC_CheckChild0Integer, 81|128,43/*5585*/, 
/* 43395*/      OPC_RecordChild1, // #0 = $A
/* 43396*/      OPC_RecordChild2, // #1 = $IMM
/* 43397*/      OPC_MoveChild2,
/* 43398*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 43401*/      OPC_MoveParent,
/* 43402*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43404*/      OPC_EmitConvertToTarget, 1,
/* 43406*/      OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                    MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 43414*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 43417*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v2i64, 2/*#Ops*/, 3, 4, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5585:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$A, (imm:{ *:[i32] }):$IMM) - Complexity = 411
                // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v2i64] }:$A, (imm:{ *:[i32] }):$IMM), VSRC:{ *:[i32] })
/* 43425*/    /*Scope*/ 15, /*->43441*/
/* 43426*/      OPC_CheckChild0Integer, 39|128,43/*5543*/, 
/* 43429*/      OPC_RecordChild1, // #0 = $XA
/* 43430*/      OPC_RecordChild2, // #1 = $XB
/* 43431*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43433*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCMPEQDP), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5543:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVCMPEQDP:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 43441*/    /*Scope*/ 15, /*->43457*/
/* 43442*/      OPC_CheckChild0Integer, 41|128,43/*5545*/, 
/* 43445*/      OPC_RecordChild1, // #0 = $XA
/* 43446*/      OPC_RecordChild2, // #1 = $XB
/* 43447*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43449*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCMPEQSP), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5545:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVCMPEQSP:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 43457*/    /*Scope*/ 15, /*->43473*/
/* 43458*/      OPC_CheckChild0Integer, 43|128,43/*5547*/, 
/* 43461*/      OPC_RecordChild1, // #0 = $XA
/* 43462*/      OPC_RecordChild2, // #1 = $XB
/* 43463*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43465*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCMPGEDP), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5547:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVCMPGEDP:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 43473*/    /*Scope*/ 15, /*->43489*/
/* 43474*/      OPC_CheckChild0Integer, 45|128,43/*5549*/, 
/* 43477*/      OPC_RecordChild1, // #0 = $XA
/* 43478*/      OPC_RecordChild2, // #1 = $XB
/* 43479*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43481*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCMPGESP), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5549:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVCMPGESP:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 43489*/    /*Scope*/ 15, /*->43505*/
/* 43490*/      OPC_CheckChild0Integer, 47|128,43/*5551*/, 
/* 43493*/      OPC_RecordChild1, // #0 = $XA
/* 43494*/      OPC_RecordChild2, // #1 = $XB
/* 43495*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43497*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCMPGTDP), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5551:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVCMPGTDP:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 43505*/    /*Scope*/ 15, /*->43521*/
/* 43506*/      OPC_CheckChild0Integer, 49|128,43/*5553*/, 
/* 43509*/      OPC_RecordChild1, // #0 = $XA
/* 43510*/      OPC_RecordChild2, // #1 = $XB
/* 43511*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43513*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCMPGTSP), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5553:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVCMPGTSP:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 43521*/    /*Scope*/ 13, /*->43535*/
/* 43522*/      OPC_CheckChild0Integer, 52|128,43/*5556*/, 
/* 43525*/      OPC_RecordChild1, // #0 = $XB
/* 43526*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43528*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5556:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVCVDPSXWS:{ *:[v4i32] } v2f64:{ *:[v2f64] }:$XB)
/* 43535*/    /*Scope*/ 13, /*->43549*/
/* 43536*/      OPC_CheckChild0Integer, 53|128,43/*5557*/, 
/* 43539*/      OPC_RecordChild1, // #0 = $XB
/* 43540*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 43542*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5557:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVCVDPUXWS:{ *:[v4i32] } v2f64:{ *:[v2f64] }:$XB)
/* 43549*/    /*Scope*/ 15, /*->43565*/
/* 43550*/      OPC_CheckChild0Integer, 83|128,43/*5587*/, 
/* 43553*/      OPC_RecordChild1, // #0 = $A
/* 43554*/      OPC_RecordChild2, // #1 = $B
/* 43555*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 43557*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQV), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5587:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$A, v4i32:{ *:[v4i32] }:$B) - Complexity = 408
                // Dst: (XXLEQV:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B)
/* 43565*/    /*Scope*/ 13, /*->43579*/
/* 43566*/      OPC_CheckChild0Integer, 77|128,43/*5581*/, 
/* 43569*/      OPC_RecordChild1, // #0 = $XB
/* 43570*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43572*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVXEXPDP), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5581:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVXEXPDP:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XB)
/* 43579*/    /*Scope*/ 13, /*->43593*/
/* 43580*/      OPC_CheckChild0Integer, 78|128,43/*5582*/, 
/* 43583*/      OPC_RecordChild1, // #0 = $XB
/* 43584*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43586*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVXEXPSP), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5582:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVXEXPSP:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XB)
/* 43593*/    /*Scope*/ 13, /*->43607*/
/* 43594*/      OPC_CheckChild0Integer, 79|128,43/*5583*/, 
/* 43597*/      OPC_RecordChild1, // #0 = $XB
/* 43598*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43600*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVXSIGDP), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5583:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVXSIGDP:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XB)
/* 43607*/    /*Scope*/ 13, /*->43621*/
/* 43608*/      OPC_CheckChild0Integer, 80|128,43/*5584*/, 
/* 43611*/      OPC_RecordChild1, // #0 = $XB
/* 43612*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 43614*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVXSIGSP), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5584:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVXSIGSP:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XB)
/* 43621*/    /*Scope*/ 17, /*->43639*/
/* 43622*/      OPC_CheckChild0Integer, 84|128,40/*5204*/, 
/* 43625*/      OPC_RecordChild1, // #0 = $src
/* 43626*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43628*/      OPC_CheckComplexPat, /*CP*/0, /*#*/0, // SelectAddrIdxOnly:$src #1 #2
/* 43631*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LVSL), 0,
                    MVT::v16i8, 2/*#Ops*/, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5204:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (LVSL:{ *:[v16i8] } xoaddr:{ *:[iPTR] }:$src)
/* 43639*/    /*Scope*/ 17, /*->43657*/
/* 43640*/      OPC_CheckChild0Integer, 85|128,40/*5205*/, 
/* 43643*/      OPC_RecordChild1, // #0 = $src
/* 43644*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43646*/      OPC_CheckComplexPat, /*CP*/0, /*#*/0, // SelectAddrIdxOnly:$src #1 #2
/* 43649*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LVSR), 0,
                    MVT::v16i8, 2/*#Ops*/, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5205:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (LVSR:{ *:[v16i8] } xoaddr:{ *:[iPTR] }:$src)
/* 43657*/    /*Scope*/ 27, /*->43685*/
/* 43658*/      OPC_CheckChild0Integer, 74|128,40/*5194*/, 
/* 43661*/      OPC_RecordChild1, // #0 = $vA
/* 43662*/      OPC_RecordChild2, // #1 = $ST
/* 43663*/      OPC_MoveChild2,
/* 43664*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 43667*/      OPC_MoveParent,
/* 43668*/      OPC_RecordChild3, // #2 = $SIX
/* 43669*/      OPC_MoveChild3,
/* 43670*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 43673*/      OPC_MoveParent,
/* 43674*/      OPC_CheckPatternPredicate, 34, // (PPCSubTarget->hasP8Crypto())
/* 43676*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSHASIGMAW), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5194:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, (timm:{ *:[i32] }):$ST, (timm:{ *:[i32] }):$SIX) - Complexity = 14
                // Dst: (VSHASIGMAW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (timm:{ *:[i32] }):$ST, (timm:{ *:[i32] }):$SIX)
/* 43685*/    /*Scope*/ 27, /*->43713*/
/* 43686*/      OPC_CheckChild0Integer, 73|128,40/*5193*/, 
/* 43689*/      OPC_RecordChild1, // #0 = $vA
/* 43690*/      OPC_RecordChild2, // #1 = $ST
/* 43691*/      OPC_MoveChild2,
/* 43692*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 43695*/      OPC_MoveParent,
/* 43696*/      OPC_RecordChild3, // #2 = $SIX
/* 43697*/      OPC_MoveChild3,
/* 43698*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 43701*/      OPC_MoveParent,
/* 43702*/      OPC_CheckPatternPredicate, 34, // (PPCSubTarget->hasP8Crypto())
/* 43704*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSHASIGMAD), 0,
                    MVT::v2i64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5193:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, (timm:{ *:[i32] }):$ST, (timm:{ *:[i32] }):$SIX) - Complexity = 14
                // Dst: (VSHASIGMAD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, (timm:{ *:[i32] }):$ST, (timm:{ *:[i32] }):$SIX)
/* 43713*/    /*Scope*/ 37, /*->43751*/
/* 43714*/      OPC_CheckChild0Integer, 35|128,41/*5283*/, 
/* 43717*/      OPC_RecordChild1, // #0 = $vB
/* 43718*/      OPC_Scope, 11, /*->43731*/ // 2 children in Scope
/* 43720*/        OPC_CheckChild2Integer, 0, 
/* 43722*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43724*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTUXS_0), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5283:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB, 0:{ *:[i32] }) - Complexity = 13
                  // Dst: (VCTUXS_0:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$vB)
/* 43731*/      /*Scope*/ 18, /*->43750*/
/* 43732*/        OPC_RecordChild2, // #1 = $UIMM
/* 43733*/        OPC_MoveChild2,
/* 43734*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 43737*/        OPC_MoveParent,
/* 43738*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43740*/        OPC_EmitConvertToTarget, 1,
/* 43742*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTUXS), 0,
                      MVT::v4i32, 2/*#Ops*/, 2, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5283:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB, (imm:{ *:[i32] }):$UIMM) - Complexity = 11
                  // Dst: (VCTUXS:{ *:[v4i32] } (imm:{ *:[i32] }):$UIMM, v4f32:{ *:[v4f32] }:$vB)
/* 43750*/      0, /*End of Scope*/
/* 43751*/    /*Scope*/ 37, /*->43789*/
/* 43752*/      OPC_CheckChild0Integer, 34|128,41/*5282*/, 
/* 43755*/      OPC_RecordChild1, // #0 = $vB
/* 43756*/      OPC_Scope, 11, /*->43769*/ // 2 children in Scope
/* 43758*/        OPC_CheckChild2Integer, 0, 
/* 43760*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43762*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTSXS_0), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5282:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB, 0:{ *:[i32] }) - Complexity = 13
                  // Dst: (VCTSXS_0:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$vB)
/* 43769*/      /*Scope*/ 18, /*->43788*/
/* 43770*/        OPC_RecordChild2, // #1 = $UIMM
/* 43771*/        OPC_MoveChild2,
/* 43772*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 43775*/        OPC_MoveParent,
/* 43776*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43778*/        OPC_EmitConvertToTarget, 1,
/* 43780*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTSXS), 0,
                      MVT::v4i32, 2/*#Ops*/, 2, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5282:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB, (imm:{ *:[i32] }):$UIMM) - Complexity = 11
                  // Dst: (VCTSXS:{ *:[v4i32] } (imm:{ *:[i32] }):$UIMM, v4f32:{ *:[v4f32] }:$vB)
/* 43788*/      0, /*End of Scope*/
/* 43789*/    /*Scope*/ 17, /*->43807*/
/* 43790*/      OPC_CheckChild0Integer, 50|128,41/*5298*/, 
/* 43793*/      OPC_RecordChild1, // #0 = $vA
/* 43794*/      OPC_RecordChild2, // #1 = $vB
/* 43795*/      OPC_RecordChild3, // #2 = $vC
/* 43796*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43798*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMHADDSHS), 0,
                    MVT::v8i16, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5298:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC) - Complexity = 8
                // Dst: (VMHADDSHS:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC)
/* 43807*/    /*Scope*/ 17, /*->43825*/
/* 43808*/      OPC_CheckChild0Integer, 51|128,41/*5299*/, 
/* 43811*/      OPC_RecordChild1, // #0 = $vA
/* 43812*/      OPC_RecordChild2, // #1 = $vB
/* 43813*/      OPC_RecordChild3, // #2 = $vC
/* 43814*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43816*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMHRADDSHS), 0,
                    MVT::v8i16, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5299:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC) - Complexity = 8
                // Dst: (VMHRADDSHS:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC)
/* 43825*/    /*Scope*/ 17, /*->43843*/
/* 43826*/      OPC_CheckChild0Integer, 61|128,41/*5309*/, 
/* 43829*/      OPC_RecordChild1, // #0 = $vA
/* 43830*/      OPC_RecordChild2, // #1 = $vB
/* 43831*/      OPC_RecordChild3, // #2 = $vC
/* 43832*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43834*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMLADDUHM), 0,
                    MVT::v8i16, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5309:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC) - Complexity = 8
                // Dst: (VMLADDUHM:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC)
/* 43843*/    /*Scope*/ 17, /*->43861*/
/* 43844*/      OPC_CheckChild0Integer, 81|128,41/*5329*/, 
/* 43847*/      OPC_RecordChild1, // #0 = $vA
/* 43848*/      OPC_RecordChild2, // #1 = $vB
/* 43849*/      OPC_RecordChild3, // #2 = $vC
/* 43850*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43852*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPERM), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5329:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v16i8:{ *:[v16i8] }:$vC) - Complexity = 8
                // Dst: (VPERM:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v16i8:{ *:[v16i8] }:$vC)
/* 43861*/    /*Scope*/ 17, /*->43879*/
/* 43862*/      OPC_CheckChild0Integer, 109|128,41/*5357*/, 
/* 43865*/      OPC_RecordChild1, // #0 = $vA
/* 43866*/      OPC_RecordChild2, // #1 = $vB
/* 43867*/      OPC_RecordChild3, // #2 = $vC
/* 43868*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43870*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSEL), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5357:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 8
                // Dst: (VSEL:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v4i32:{ *:[v4i32] }:$vC)
/* 43879*/    /*Scope*/ 15, /*->43895*/
/* 43880*/      OPC_CheckChild0Integer, 99|128,40/*5219*/, 
/* 43883*/      OPC_RecordChild1, // #0 = $vA
/* 43884*/      OPC_RecordChild2, // #1 = $vB
/* 43885*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43887*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDCUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5219:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VADDCUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 43895*/    /*Scope*/ 15, /*->43911*/
/* 43896*/      OPC_CheckChild0Integer, 102|128,40/*5222*/, 
/* 43899*/      OPC_RecordChild1, // #0 = $vA
/* 43900*/      OPC_RecordChild2, // #1 = $vB
/* 43901*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43903*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDSBS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5222:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VADDSBS:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 43911*/    /*Scope*/ 15, /*->43927*/
/* 43912*/      OPC_CheckChild0Integer, 103|128,40/*5223*/, 
/* 43915*/      OPC_RecordChild1, // #0 = $vA
/* 43916*/      OPC_RecordChild2, // #1 = $vB
/* 43917*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43919*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDSHS), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5223:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VADDSHS:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 43927*/    /*Scope*/ 15, /*->43943*/
/* 43928*/      OPC_CheckChild0Integer, 104|128,40/*5224*/, 
/* 43931*/      OPC_RecordChild1, // #0 = $vA
/* 43932*/      OPC_RecordChild2, // #1 = $vB
/* 43933*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43935*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDSWS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5224:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VADDSWS:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 43943*/    /*Scope*/ 15, /*->43959*/
/* 43944*/      OPC_CheckChild0Integer, 105|128,40/*5225*/, 
/* 43947*/      OPC_RecordChild1, // #0 = $vA
/* 43948*/      OPC_RecordChild2, // #1 = $vB
/* 43949*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43951*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUBS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5225:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VADDUBS:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 43959*/    /*Scope*/ 15, /*->43975*/
/* 43960*/      OPC_CheckChild0Integer, 106|128,40/*5226*/, 
/* 43963*/      OPC_RecordChild1, // #0 = $vA
/* 43964*/      OPC_RecordChild2, // #1 = $vB
/* 43965*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43967*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUHS), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5226:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VADDUHS:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 43975*/    /*Scope*/ 15, /*->43991*/
/* 43976*/      OPC_CheckChild0Integer, 107|128,40/*5227*/, 
/* 43979*/      OPC_RecordChild1, // #0 = $vA
/* 43980*/      OPC_RecordChild2, // #1 = $vB
/* 43981*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43983*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUWS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5227:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VADDUWS:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 43991*/    /*Scope*/ 15, /*->44007*/
/* 43992*/      OPC_CheckChild0Integer, 108|128,40/*5228*/, 
/* 43995*/      OPC_RecordChild1, // #0 = $vA
/* 43996*/      OPC_RecordChild2, // #1 = $vB
/* 43997*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 43999*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VAVGSB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5228:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VAVGSB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44007*/    /*Scope*/ 15, /*->44023*/
/* 44008*/      OPC_CheckChild0Integer, 109|128,40/*5229*/, 
/* 44011*/      OPC_RecordChild1, // #0 = $vA
/* 44012*/      OPC_RecordChild2, // #1 = $vB
/* 44013*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44015*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VAVGSH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5229:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VAVGSH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44023*/    /*Scope*/ 15, /*->44039*/
/* 44024*/      OPC_CheckChild0Integer, 110|128,40/*5230*/, 
/* 44027*/      OPC_RecordChild1, // #0 = $vA
/* 44028*/      OPC_RecordChild2, // #1 = $vB
/* 44029*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44031*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VAVGSW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5230:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VAVGSW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44039*/    /*Scope*/ 15, /*->44055*/
/* 44040*/      OPC_CheckChild0Integer, 111|128,40/*5231*/, 
/* 44043*/      OPC_RecordChild1, // #0 = $vA
/* 44044*/      OPC_RecordChild2, // #1 = $vB
/* 44045*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44047*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VAVGUB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5231:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VAVGUB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44055*/    /*Scope*/ 15, /*->44071*/
/* 44056*/      OPC_CheckChild0Integer, 112|128,40/*5232*/, 
/* 44059*/      OPC_RecordChild1, // #0 = $vA
/* 44060*/      OPC_RecordChild2, // #1 = $vB
/* 44061*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44063*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VAVGUH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5232:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VAVGUH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44071*/    /*Scope*/ 15, /*->44087*/
/* 44072*/      OPC_CheckChild0Integer, 113|128,40/*5233*/, 
/* 44075*/      OPC_RecordChild1, // #0 = $vA
/* 44076*/      OPC_RecordChild2, // #1 = $vB
/* 44077*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44079*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VAVGUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5233:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VAVGUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44087*/    /*Scope*/ 15, /*->44103*/
/* 44088*/      OPC_CheckChild0Integer, 42|128,41/*5290*/, 
/* 44091*/      OPC_RecordChild1, // #0 = $vA
/* 44092*/      OPC_RecordChild2, // #1 = $vB
/* 44093*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44095*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5290:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMAXSB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44103*/    /*Scope*/ 15, /*->44119*/
/* 44104*/      OPC_CheckChild0Integer, 44|128,41/*5292*/, 
/* 44107*/      OPC_RecordChild1, // #0 = $vA
/* 44108*/      OPC_RecordChild2, // #1 = $vB
/* 44109*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44111*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5292:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMAXSH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44119*/    /*Scope*/ 15, /*->44135*/
/* 44120*/      OPC_CheckChild0Integer, 45|128,41/*5293*/, 
/* 44123*/      OPC_RecordChild1, // #0 = $vA
/* 44124*/      OPC_RecordChild2, // #1 = $vB
/* 44125*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44127*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5293:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMAXSW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44135*/    /*Scope*/ 15, /*->44151*/
/* 44136*/      OPC_CheckChild0Integer, 46|128,41/*5294*/, 
/* 44139*/      OPC_RecordChild1, // #0 = $vA
/* 44140*/      OPC_RecordChild2, // #1 = $vB
/* 44141*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44143*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5294:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMAXUB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44151*/    /*Scope*/ 15, /*->44167*/
/* 44152*/      OPC_CheckChild0Integer, 48|128,41/*5296*/, 
/* 44155*/      OPC_RecordChild1, // #0 = $vA
/* 44156*/      OPC_RecordChild2, // #1 = $vB
/* 44157*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44159*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5296:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMAXUH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44167*/    /*Scope*/ 15, /*->44183*/
/* 44168*/      OPC_CheckChild0Integer, 49|128,41/*5297*/, 
/* 44171*/      OPC_RecordChild1, // #0 = $vA
/* 44172*/      OPC_RecordChild2, // #1 = $vB
/* 44173*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44175*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5297:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMAXUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44183*/    /*Scope*/ 15, /*->44199*/
/* 44184*/      OPC_CheckChild0Integer, 53|128,41/*5301*/, 
/* 44187*/      OPC_RecordChild1, // #0 = $vA
/* 44188*/      OPC_RecordChild2, // #1 = $vB
/* 44189*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44191*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5301:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMINSB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44199*/    /*Scope*/ 15, /*->44215*/
/* 44200*/      OPC_CheckChild0Integer, 55|128,41/*5303*/, 
/* 44203*/      OPC_RecordChild1, // #0 = $vA
/* 44204*/      OPC_RecordChild2, // #1 = $vB
/* 44205*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44207*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5303:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMINSH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44215*/    /*Scope*/ 15, /*->44231*/
/* 44216*/      OPC_CheckChild0Integer, 56|128,41/*5304*/, 
/* 44219*/      OPC_RecordChild1, // #0 = $vA
/* 44220*/      OPC_RecordChild2, // #1 = $vB
/* 44221*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44223*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5304:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMINSW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44231*/    /*Scope*/ 15, /*->44247*/
/* 44232*/      OPC_CheckChild0Integer, 57|128,41/*5305*/, 
/* 44235*/      OPC_RecordChild1, // #0 = $vA
/* 44236*/      OPC_RecordChild2, // #1 = $vB
/* 44237*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44239*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5305:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMINUB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44247*/    /*Scope*/ 15, /*->44263*/
/* 44248*/      OPC_CheckChild0Integer, 59|128,41/*5307*/, 
/* 44251*/      OPC_RecordChild1, // #0 = $vA
/* 44252*/      OPC_RecordChild2, // #1 = $vB
/* 44253*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44255*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5307:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMINUH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44263*/    /*Scope*/ 15, /*->44279*/
/* 44264*/      OPC_CheckChild0Integer, 60|128,41/*5308*/, 
/* 44267*/      OPC_RecordChild1, // #0 = $vA
/* 44268*/      OPC_RecordChild2, // #1 = $vB
/* 44269*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44271*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5308:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMINUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44279*/    /*Scope*/ 17, /*->44297*/
/* 44280*/      OPC_CheckChild0Integer, 62|128,41/*5310*/, 
/* 44283*/      OPC_RecordChild1, // #0 = $vA
/* 44284*/      OPC_RecordChild2, // #1 = $vB
/* 44285*/      OPC_RecordChild3, // #2 = $vC
/* 44286*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44288*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMSUMMBM), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5310:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 8
                // Dst: (VMSUMMBM:{ *:[v4i32] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v4i32:{ *:[v4i32] }:$vC)
/* 44297*/    /*Scope*/ 17, /*->44315*/
/* 44298*/      OPC_CheckChild0Integer, 63|128,41/*5311*/, 
/* 44301*/      OPC_RecordChild1, // #0 = $vA
/* 44302*/      OPC_RecordChild2, // #1 = $vB
/* 44303*/      OPC_RecordChild3, // #2 = $vC
/* 44304*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44306*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMSUMSHM), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5311:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 8
                // Dst: (VMSUMSHM:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC)
/* 44315*/    /*Scope*/ 17, /*->44333*/
/* 44316*/      OPC_CheckChild0Integer, 64|128,41/*5312*/, 
/* 44319*/      OPC_RecordChild1, // #0 = $vA
/* 44320*/      OPC_RecordChild2, // #1 = $vB
/* 44321*/      OPC_RecordChild3, // #2 = $vC
/* 44322*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44324*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMSUMSHS), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5312:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 8
                // Dst: (VMSUMSHS:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC)
/* 44333*/    /*Scope*/ 17, /*->44351*/
/* 44334*/      OPC_CheckChild0Integer, 65|128,41/*5313*/, 
/* 44337*/      OPC_RecordChild1, // #0 = $vA
/* 44338*/      OPC_RecordChild2, // #1 = $vB
/* 44339*/      OPC_RecordChild3, // #2 = $vC
/* 44340*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44342*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMSUMUBM), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5313:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 8
                // Dst: (VMSUMUBM:{ *:[v4i32] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v4i32:{ *:[v4i32] }:$vC)
/* 44351*/    /*Scope*/ 17, /*->44369*/
/* 44352*/      OPC_CheckChild0Integer, 66|128,41/*5314*/, 
/* 44355*/      OPC_RecordChild1, // #0 = $vA
/* 44356*/      OPC_RecordChild2, // #1 = $vB
/* 44357*/      OPC_RecordChild3, // #2 = $vC
/* 44358*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44360*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMSUMUHM), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5314:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 8
                // Dst: (VMSUMUHM:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC)
/* 44369*/    /*Scope*/ 17, /*->44387*/
/* 44370*/      OPC_CheckChild0Integer, 67|128,41/*5315*/, 
/* 44373*/      OPC_RecordChild1, // #0 = $vA
/* 44374*/      OPC_RecordChild2, // #1 = $vB
/* 44375*/      OPC_RecordChild3, // #2 = $vC
/* 44376*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44378*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMSUMUHS), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5315:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 8
                // Dst: (VMSUMUHS:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v4i32:{ *:[v4i32] }:$vC)
/* 44387*/    /*Scope*/ 15, /*->44403*/
/* 44388*/      OPC_CheckChild0Integer, 68|128,41/*5316*/, 
/* 44391*/      OPC_RecordChild1, // #0 = $vA
/* 44392*/      OPC_RecordChild2, // #1 = $vB
/* 44393*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44395*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULESB), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5316:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMULESB:{ *:[v8i16] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44403*/    /*Scope*/ 15, /*->44419*/
/* 44404*/      OPC_CheckChild0Integer, 69|128,41/*5317*/, 
/* 44407*/      OPC_RecordChild1, // #0 = $vA
/* 44408*/      OPC_RecordChild2, // #1 = $vB
/* 44409*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44411*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULESH), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5317:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMULESH:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44419*/    /*Scope*/ 15, /*->44435*/
/* 44420*/      OPC_CheckChild0Integer, 71|128,41/*5319*/, 
/* 44423*/      OPC_RecordChild1, // #0 = $vA
/* 44424*/      OPC_RecordChild2, // #1 = $vB
/* 44425*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44427*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULEUB), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5319:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMULEUB:{ *:[v8i16] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44435*/    /*Scope*/ 15, /*->44451*/
/* 44436*/      OPC_CheckChild0Integer, 72|128,41/*5320*/, 
/* 44439*/      OPC_RecordChild1, // #0 = $vA
/* 44440*/      OPC_RecordChild2, // #1 = $vB
/* 44441*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44443*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULEUH), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5320:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMULEUH:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44451*/    /*Scope*/ 15, /*->44467*/
/* 44452*/      OPC_CheckChild0Integer, 74|128,41/*5322*/, 
/* 44455*/      OPC_RecordChild1, // #0 = $vA
/* 44456*/      OPC_RecordChild2, // #1 = $vB
/* 44457*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44459*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULOSB), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5322:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMULOSB:{ *:[v8i16] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44467*/    /*Scope*/ 15, /*->44483*/
/* 44468*/      OPC_CheckChild0Integer, 75|128,41/*5323*/, 
/* 44471*/      OPC_RecordChild1, // #0 = $vA
/* 44472*/      OPC_RecordChild2, // #1 = $vB
/* 44473*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44475*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULOSH), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5323:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMULOSH:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44483*/    /*Scope*/ 15, /*->44499*/
/* 44484*/      OPC_CheckChild0Integer, 77|128,41/*5325*/, 
/* 44487*/      OPC_RecordChild1, // #0 = $vA
/* 44488*/      OPC_RecordChild2, // #1 = $vB
/* 44489*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44491*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULOUB), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5325:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VMULOUB:{ *:[v8i16] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44499*/    /*Scope*/ 15, /*->44515*/
/* 44500*/      OPC_CheckChild0Integer, 78|128,41/*5326*/, 
/* 44503*/      OPC_RecordChild1, // #0 = $vA
/* 44504*/      OPC_RecordChild2, // #1 = $vB
/* 44505*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44507*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULOUH), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5326:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VMULOUH:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44515*/    /*Scope*/ 15, /*->44531*/
/* 44516*/      OPC_CheckChild0Integer, 126|128,41/*5374*/, 
/* 44519*/      OPC_RecordChild1, // #0 = $vA
/* 44520*/      OPC_RecordChild2, // #1 = $vB
/* 44521*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44523*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBCUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5374:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUBCUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44531*/    /*Scope*/ 15, /*->44547*/
/* 44532*/      OPC_CheckChild0Integer, 1|128,42/*5377*/, 
/* 44535*/      OPC_RecordChild1, // #0 = $vA
/* 44536*/      OPC_RecordChild2, // #1 = $vB
/* 44537*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44539*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBSBS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5377:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VSUBSBS:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44547*/    /*Scope*/ 15, /*->44563*/
/* 44548*/      OPC_CheckChild0Integer, 2|128,42/*5378*/, 
/* 44551*/      OPC_RecordChild1, // #0 = $vA
/* 44552*/      OPC_RecordChild2, // #1 = $vB
/* 44553*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44555*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBSHS), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5378:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VSUBSHS:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44563*/    /*Scope*/ 15, /*->44579*/
/* 44564*/      OPC_CheckChild0Integer, 3|128,42/*5379*/, 
/* 44567*/      OPC_RecordChild1, // #0 = $vA
/* 44568*/      OPC_RecordChild2, // #1 = $vB
/* 44569*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44571*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBSWS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5379:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUBSWS:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44579*/    /*Scope*/ 15, /*->44595*/
/* 44580*/      OPC_CheckChild0Integer, 4|128,42/*5380*/, 
/* 44583*/      OPC_RecordChild1, // #0 = $vA
/* 44584*/      OPC_RecordChild2, // #1 = $vB
/* 44585*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44587*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUBS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5380:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VSUBUBS:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44595*/    /*Scope*/ 15, /*->44611*/
/* 44596*/      OPC_CheckChild0Integer, 5|128,42/*5381*/, 
/* 44599*/      OPC_RecordChild1, // #0 = $vA
/* 44600*/      OPC_RecordChild2, // #1 = $vB
/* 44601*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44603*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUHS), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5381:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VSUBUHS:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44611*/    /*Scope*/ 15, /*->44627*/
/* 44612*/      OPC_CheckChild0Integer, 6|128,42/*5382*/, 
/* 44615*/      OPC_RecordChild1, // #0 = $vA
/* 44616*/      OPC_RecordChild2, // #1 = $vB
/* 44617*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44619*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUWS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5382:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUBUWS:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44627*/    /*Scope*/ 15, /*->44643*/
/* 44628*/      OPC_CheckChild0Integer, 11|128,42/*5387*/, 
/* 44631*/      OPC_RecordChild1, // #0 = $vA
/* 44632*/      OPC_RecordChild2, // #1 = $vB
/* 44633*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44635*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUMSWS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5387:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUMSWS:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44643*/    /*Scope*/ 15, /*->44659*/
/* 44644*/      OPC_CheckChild0Integer, 7|128,42/*5383*/, 
/* 44647*/      OPC_RecordChild1, // #0 = $vA
/* 44648*/      OPC_RecordChild2, // #1 = $vB
/* 44649*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44651*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUM2SWS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5383:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUM2SWS:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44659*/    /*Scope*/ 15, /*->44675*/
/* 44660*/      OPC_CheckChild0Integer, 8|128,42/*5384*/, 
/* 44663*/      OPC_RecordChild1, // #0 = $vA
/* 44664*/      OPC_RecordChild2, // #1 = $vB
/* 44665*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44667*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUM4SBS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5384:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUM4SBS:{ *:[v4i32] } v16i8:{ *:[v16i8] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44675*/    /*Scope*/ 15, /*->44691*/
/* 44676*/      OPC_CheckChild0Integer, 9|128,42/*5385*/, 
/* 44679*/      OPC_RecordChild1, // #0 = $vA
/* 44680*/      OPC_RecordChild2, // #1 = $vB
/* 44681*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44683*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUM4SHS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5385:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUM4SHS:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44691*/    /*Scope*/ 15, /*->44707*/
/* 44692*/      OPC_CheckChild0Integer, 10|128,42/*5386*/, 
/* 44695*/      OPC_RecordChild1, // #0 = $vA
/* 44696*/      OPC_RecordChild2, // #1 = $vB
/* 44697*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44699*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUM4UBS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5386:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSUM4UBS:{ *:[v4i32] } v16i8:{ *:[v16i8] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44707*/    /*Scope*/ 15, /*->44723*/
/* 44708*/      OPC_CheckChild0Integer, 100|128,41/*5348*/, 
/* 44711*/      OPC_RecordChild1, // #0 = $vA
/* 44712*/      OPC_RecordChild2, // #1 = $vB
/* 44713*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44715*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5348:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VRLB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44723*/    /*Scope*/ 15, /*->44739*/
/* 44724*/      OPC_CheckChild0Integer, 104|128,41/*5352*/, 
/* 44727*/      OPC_RecordChild1, // #0 = $vA
/* 44728*/      OPC_RecordChild2, // #1 = $vB
/* 44729*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44731*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5352:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VRLH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44739*/    /*Scope*/ 15, /*->44755*/
/* 44740*/      OPC_CheckChild0Integer, 105|128,41/*5353*/, 
/* 44743*/      OPC_RecordChild1, // #0 = $vA
/* 44744*/      OPC_RecordChild2, // #1 = $vB
/* 44745*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44747*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5353:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VRLW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44755*/    /*Scope*/ 15, /*->44771*/
/* 44756*/      OPC_CheckChild0Integer, 110|128,41/*5358*/, 
/* 44759*/      OPC_RecordChild1, // #0 = $vA
/* 44760*/      OPC_RecordChild2, // #1 = $vB
/* 44761*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44763*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSL), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5358:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSL:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44771*/    /*Scope*/ 15, /*->44787*/
/* 44772*/      OPC_CheckChild0Integer, 113|128,41/*5361*/, 
/* 44775*/      OPC_RecordChild1, // #0 = $vA
/* 44776*/      OPC_RecordChild2, // #1 = $vB
/* 44777*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44779*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLO), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5361:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSLO:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44787*/    /*Scope*/ 15, /*->44803*/
/* 44788*/      OPC_CheckChild0Integer, 111|128,41/*5359*/, 
/* 44791*/      OPC_RecordChild1, // #0 = $vA
/* 44792*/      OPC_RecordChild2, // #1 = $vB
/* 44793*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44795*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5359:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VSLB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44803*/    /*Scope*/ 15, /*->44819*/
/* 44804*/      OPC_CheckChild0Integer, 112|128,41/*5360*/, 
/* 44807*/      OPC_RecordChild1, // #0 = $vA
/* 44808*/      OPC_RecordChild2, // #1 = $vB
/* 44809*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44811*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5360:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VSLH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44819*/    /*Scope*/ 15, /*->44835*/
/* 44820*/      OPC_CheckChild0Integer, 115|128,41/*5363*/, 
/* 44823*/      OPC_RecordChild1, // #0 = $vA
/* 44824*/      OPC_RecordChild2, // #1 = $vB
/* 44825*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44827*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5363:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSLW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44835*/    /*Scope*/ 15, /*->44851*/
/* 44836*/      OPC_CheckChild0Integer, 116|128,41/*5364*/, 
/* 44839*/      OPC_RecordChild1, // #0 = $vA
/* 44840*/      OPC_RecordChild2, // #1 = $vB
/* 44841*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44843*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSR), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5364:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44851*/    /*Scope*/ 15, /*->44867*/
/* 44852*/      OPC_CheckChild0Integer, 122|128,41/*5370*/, 
/* 44855*/      OPC_RecordChild1, // #0 = $vA
/* 44856*/      OPC_RecordChild2, // #1 = $vB
/* 44857*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44859*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRO), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5370:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSRO:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44867*/    /*Scope*/ 15, /*->44883*/
/* 44868*/      OPC_CheckChild0Integer, 117|128,41/*5365*/, 
/* 44871*/      OPC_RecordChild1, // #0 = $vA
/* 44872*/      OPC_RecordChild2, // #1 = $vB
/* 44873*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44875*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5365:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VSRAB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44883*/    /*Scope*/ 15, /*->44899*/
/* 44884*/      OPC_CheckChild0Integer, 118|128,41/*5366*/, 
/* 44887*/      OPC_RecordChild1, // #0 = $vA
/* 44888*/      OPC_RecordChild2, // #1 = $vB
/* 44889*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44891*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5366:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VSRAH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44899*/    /*Scope*/ 15, /*->44915*/
/* 44900*/      OPC_CheckChild0Integer, 119|128,41/*5367*/, 
/* 44903*/      OPC_RecordChild1, // #0 = $vA
/* 44904*/      OPC_RecordChild2, // #1 = $vB
/* 44905*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44907*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5367:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSRAW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44915*/    /*Scope*/ 15, /*->44931*/
/* 44916*/      OPC_CheckChild0Integer, 120|128,41/*5368*/, 
/* 44919*/      OPC_RecordChild1, // #0 = $vA
/* 44920*/      OPC_RecordChild2, // #1 = $vB
/* 44921*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44923*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5368:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VSRB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 44931*/    /*Scope*/ 15, /*->44947*/
/* 44932*/      OPC_CheckChild0Integer, 121|128,41/*5369*/, 
/* 44935*/      OPC_RecordChild1, // #0 = $vA
/* 44936*/      OPC_RecordChild2, // #1 = $vB
/* 44937*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44939*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5369:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VSRH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44947*/    /*Scope*/ 15, /*->44963*/
/* 44948*/      OPC_CheckChild0Integer, 124|128,41/*5372*/, 
/* 44951*/      OPC_RecordChild1, // #0 = $vA
/* 44952*/      OPC_RecordChild2, // #1 = $vB
/* 44953*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44955*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5372:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VSRW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44963*/    /*Scope*/ 15, /*->44979*/
/* 44964*/      OPC_CheckChild0Integer, 82|128,41/*5330*/, 
/* 44967*/      OPC_RecordChild1, // #0 = $vA
/* 44968*/      OPC_RecordChild2, // #1 = $vB
/* 44969*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44971*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKPX), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5330:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VPKPX:{ *:[v8i16] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 44979*/    /*Scope*/ 15, /*->44995*/
/* 44980*/      OPC_CheckChild0Integer, 85|128,41/*5333*/, 
/* 44983*/      OPC_RecordChild1, // #0 = $vA
/* 44984*/      OPC_RecordChild2, // #1 = $vB
/* 44985*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 44987*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKSHSS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5333:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VPKSHSS:{ *:[v16i8] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 44995*/    /*Scope*/ 15, /*->45011*/
/* 44996*/      OPC_CheckChild0Integer, 86|128,41/*5334*/, 
/* 44999*/      OPC_RecordChild1, // #0 = $vA
/* 45000*/      OPC_RecordChild2, // #1 = $vB
/* 45001*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45003*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKSHUS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5334:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VPKSHUS:{ *:[v16i8] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 45011*/    /*Scope*/ 15, /*->45027*/
/* 45012*/      OPC_CheckChild0Integer, 87|128,41/*5335*/, 
/* 45015*/      OPC_RecordChild1, // #0 = $vA
/* 45016*/      OPC_RecordChild2, // #1 = $vB
/* 45017*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45019*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKSWSS), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5335:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VPKSWSS:{ *:[v8i16] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45027*/    /*Scope*/ 15, /*->45043*/
/* 45028*/      OPC_CheckChild0Integer, 88|128,41/*5336*/, 
/* 45031*/      OPC_RecordChild1, // #0 = $vA
/* 45032*/      OPC_RecordChild2, // #1 = $vB
/* 45033*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45035*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKSWUS), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5336:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VPKSWUS:{ *:[v8i16] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45043*/    /*Scope*/ 15, /*->45059*/
/* 45044*/      OPC_CheckChild0Integer, 90|128,41/*5338*/, 
/* 45047*/      OPC_RecordChild1, // #0 = $vA
/* 45048*/      OPC_RecordChild2, // #1 = $vB
/* 45049*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45051*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUHUS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5338:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VPKUHUS:{ *:[v16i8] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 45059*/    /*Scope*/ 15, /*->45075*/
/* 45060*/      OPC_CheckChild0Integer, 91|128,41/*5339*/, 
/* 45063*/      OPC_RecordChild1, // #0 = $vA
/* 45064*/      OPC_RecordChild2, // #1 = $vB
/* 45065*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45067*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUWUS), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5339:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VPKUWUS:{ *:[v8i16] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45075*/    /*Scope*/ 13, /*->45089*/
/* 45076*/      OPC_CheckChild0Integer, 12|128,42/*5388*/, 
/* 45079*/      OPC_RecordChild1, // #0 = $vB
/* 45080*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45082*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKHPX), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5388:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VUPKHPX:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vB)
/* 45089*/    /*Scope*/ 13, /*->45103*/
/* 45090*/      OPC_CheckChild0Integer, 13|128,42/*5389*/, 
/* 45093*/      OPC_RecordChild1, // #0 = $vB
/* 45094*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45096*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKHSB), 0,
                    MVT::v8i16, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5389:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VUPKHSB:{ *:[v8i16] } v16i8:{ *:[v16i8] }:$vB)
/* 45103*/    /*Scope*/ 13, /*->45117*/
/* 45104*/      OPC_CheckChild0Integer, 14|128,42/*5390*/, 
/* 45107*/      OPC_RecordChild1, // #0 = $vB
/* 45108*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45110*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKHSH), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5390:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VUPKHSH:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vB)
/* 45117*/    /*Scope*/ 13, /*->45131*/
/* 45118*/      OPC_CheckChild0Integer, 16|128,42/*5392*/, 
/* 45121*/      OPC_RecordChild1, // #0 = $vB
/* 45122*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45124*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKLPX), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5392:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VUPKLPX:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vB)
/* 45131*/    /*Scope*/ 13, /*->45145*/
/* 45132*/      OPC_CheckChild0Integer, 17|128,42/*5393*/, 
/* 45135*/      OPC_RecordChild1, // #0 = $vB
/* 45136*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45138*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKLSB), 0,
                    MVT::v8i16, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5393:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VUPKLSB:{ *:[v8i16] } v16i8:{ *:[v16i8] }:$vB)
/* 45145*/    /*Scope*/ 13, /*->45159*/
/* 45146*/      OPC_CheckChild0Integer, 18|128,42/*5394*/, 
/* 45149*/      OPC_RecordChild1, // #0 = $vB
/* 45150*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 45152*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKLSH), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5394:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VUPKLSH:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$vB)
/* 45159*/    /*Scope*/ 15, /*->45175*/
/* 45160*/      OPC_CheckChild0Integer, 70|128,41/*5318*/, 
/* 45163*/      OPC_RecordChild1, // #0 = $vA
/* 45164*/      OPC_RecordChild2, // #1 = $vB
/* 45165*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45167*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULESW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5318:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMULESW:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45175*/    /*Scope*/ 15, /*->45191*/
/* 45176*/      OPC_CheckChild0Integer, 73|128,41/*5321*/, 
/* 45179*/      OPC_RecordChild1, // #0 = $vA
/* 45180*/      OPC_RecordChild2, // #1 = $vB
/* 45181*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45183*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULEUW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5321:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMULEUW:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45191*/    /*Scope*/ 15, /*->45207*/
/* 45192*/      OPC_CheckChild0Integer, 76|128,41/*5324*/, 
/* 45195*/      OPC_RecordChild1, // #0 = $vA
/* 45196*/      OPC_RecordChild2, // #1 = $vB
/* 45197*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45199*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULOSW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5324:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMULOSW:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45207*/    /*Scope*/ 15, /*->45223*/
/* 45208*/      OPC_CheckChild0Integer, 79|128,41/*5327*/, 
/* 45211*/      OPC_RecordChild1, // #0 = $vA
/* 45212*/      OPC_RecordChild2, // #1 = $vB
/* 45213*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45215*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULOUW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5327:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VMULOUW:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45223*/    /*Scope*/ 15, /*->45239*/
/* 45224*/      OPC_CheckChild0Integer, 43|128,41/*5291*/, 
/* 45227*/      OPC_RecordChild1, // #0 = $vA
/* 45228*/      OPC_RecordChild2, // #1 = $vB
/* 45229*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45231*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5291:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VMAXSD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45239*/    /*Scope*/ 15, /*->45255*/
/* 45240*/      OPC_CheckChild0Integer, 47|128,41/*5295*/, 
/* 45243*/      OPC_RecordChild1, // #0 = $vA
/* 45244*/      OPC_RecordChild2, // #1 = $vB
/* 45245*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45247*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5295:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VMAXUD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45255*/    /*Scope*/ 15, /*->45271*/
/* 45256*/      OPC_CheckChild0Integer, 54|128,41/*5302*/, 
/* 45259*/      OPC_RecordChild1, // #0 = $vA
/* 45260*/      OPC_RecordChild2, // #1 = $vB
/* 45261*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45263*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5302:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VMINSD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45271*/    /*Scope*/ 15, /*->45287*/
/* 45272*/      OPC_CheckChild0Integer, 58|128,41/*5306*/, 
/* 45275*/      OPC_RecordChild1, // #0 = $vA
/* 45276*/      OPC_RecordChild2, // #1 = $vB
/* 45277*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45279*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5306:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VMINUD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45287*/    /*Scope*/ 15, /*->45303*/
/* 45288*/      OPC_CheckChild0Integer, 101|128,41/*5349*/, 
/* 45291*/      OPC_RecordChild1, // #0 = $vA
/* 45292*/      OPC_RecordChild2, // #1 = $vB
/* 45293*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45295*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5349:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VRLD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45303*/    /*Scope*/ 17, /*->45321*/
/* 45304*/      OPC_CheckChild0Integer, 101|128,40/*5221*/, 
/* 45307*/      OPC_RecordChild1, // #0 = $vA
/* 45308*/      OPC_RecordChild2, // #1 = $vB
/* 45309*/      OPC_RecordChild3, // #2 = $vC
/* 45310*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45312*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDEUQM), 0,
                    MVT::v1i128, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v1i128] } 5221:{ *:[iPTR] }, v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC) - Complexity = 8
                // Dst: (VADDEUQM:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC)
/* 45321*/    /*Scope*/ 15, /*->45337*/
/* 45322*/      OPC_CheckChild0Integer, 98|128,40/*5218*/, 
/* 45325*/      OPC_RecordChild1, // #0 = $vA
/* 45326*/      OPC_RecordChild2, // #1 = $vB
/* 45327*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45329*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDCUQ), 0,
                    MVT::v1i128, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v1i128] } 5218:{ *:[iPTR] }, v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 8
                // Dst: (VADDCUQ:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB)
/* 45337*/    /*Scope*/ 17, /*->45355*/
/* 45338*/      OPC_CheckChild0Integer, 100|128,40/*5220*/, 
/* 45341*/      OPC_RecordChild1, // #0 = $vA
/* 45342*/      OPC_RecordChild2, // #1 = $vB
/* 45343*/      OPC_RecordChild3, // #2 = $vC
/* 45344*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45346*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDECUQ), 0,
                    MVT::v1i128, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v1i128] } 5220:{ *:[iPTR] }, v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC) - Complexity = 8
                // Dst: (VADDECUQ:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC)
/* 45355*/    /*Scope*/ 17, /*->45373*/
/* 45356*/      OPC_CheckChild0Integer, 0|128,42/*5376*/, 
/* 45359*/      OPC_RecordChild1, // #0 = $vA
/* 45360*/      OPC_RecordChild2, // #1 = $vB
/* 45361*/      OPC_RecordChild3, // #2 = $vC
/* 45362*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45364*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBEUQM), 0,
                    MVT::v1i128, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v1i128] } 5376:{ *:[iPTR] }, v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC) - Complexity = 8
                // Dst: (VSUBEUQM:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC)
/* 45373*/    /*Scope*/ 15, /*->45389*/
/* 45374*/      OPC_CheckChild0Integer, 125|128,41/*5373*/, 
/* 45377*/      OPC_RecordChild1, // #0 = $vA
/* 45378*/      OPC_RecordChild2, // #1 = $vB
/* 45379*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45381*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBCUQ), 0,
                    MVT::v1i128, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v1i128] } 5373:{ *:[iPTR] }, v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 8
                // Dst: (VSUBCUQ:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB)
/* 45389*/    /*Scope*/ 17, /*->45407*/
/* 45390*/      OPC_CheckChild0Integer, 127|128,41/*5375*/, 
/* 45393*/      OPC_RecordChild1, // #0 = $vA
/* 45394*/      OPC_RecordChild2, // #1 = $vB
/* 45395*/      OPC_RecordChild3, // #2 = $vC
/* 45396*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45398*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBECUQ), 0,
                    MVT::v1i128, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v1i128] } 5375:{ *:[iPTR] }, v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC) - Complexity = 8
                // Dst: (VSUBECUQ:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB, v1i128:{ *:[v1i128] }:$vC)
/* 45407*/    /*Scope*/ 15, /*->45423*/
/* 45408*/      OPC_CheckChild0Integer, 68|128,40/*5188*/, 
/* 45411*/      OPC_RecordChild1, // #0 = $vA
/* 45412*/      OPC_RecordChild2, // #1 = $vB
/* 45413*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45415*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPMSUMB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5188:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VPMSUMB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 45423*/    /*Scope*/ 15, /*->45439*/
/* 45424*/      OPC_CheckChild0Integer, 70|128,40/*5190*/, 
/* 45427*/      OPC_RecordChild1, // #0 = $vA
/* 45428*/      OPC_RecordChild2, // #1 = $vB
/* 45429*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45431*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPMSUMH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5190:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VPMSUMH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 45439*/    /*Scope*/ 15, /*->45455*/
/* 45440*/      OPC_CheckChild0Integer, 71|128,40/*5191*/, 
/* 45443*/      OPC_RecordChild1, // #0 = $vA
/* 45444*/      OPC_RecordChild2, // #1 = $vB
/* 45445*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45447*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPMSUMW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5191:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VPMSUMW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45455*/    /*Scope*/ 15, /*->45471*/
/* 45456*/      OPC_CheckChild0Integer, 69|128,40/*5189*/, 
/* 45459*/      OPC_RecordChild1, // #0 = $vA
/* 45460*/      OPC_RecordChild2, // #1 = $vB
/* 45461*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45463*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPMSUMD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5189:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VPMSUMD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45471*/    /*Scope*/ 17, /*->45489*/
/* 45472*/      OPC_CheckChild0Integer, 67|128,40/*5187*/, 
/* 45475*/      OPC_RecordChild1, // #0 = $vA
/* 45476*/      OPC_RecordChild2, // #1 = $vB
/* 45477*/      OPC_RecordChild3, // #2 = $vC
/* 45478*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45480*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPERMXOR), 0,
                    MVT::v16i8, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5187:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v16i8:{ *:[v16i8] }:$vC) - Complexity = 8
                // Dst: (VPERMXOR:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v16i8:{ *:[v16i8] }:$vC)
/* 45489*/    /*Scope*/ 15, /*->45505*/
/* 45490*/      OPC_CheckChild0Integer, 83|128,41/*5331*/, 
/* 45493*/      OPC_RecordChild1, // #0 = $vA
/* 45494*/      OPC_RecordChild2, // #1 = $vB
/* 45495*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45497*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKSDSS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5331:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VPKSDSS:{ *:[v4i32] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45505*/    /*Scope*/ 15, /*->45521*/
/* 45506*/      OPC_CheckChild0Integer, 84|128,41/*5332*/, 
/* 45509*/      OPC_RecordChild1, // #0 = $vA
/* 45510*/      OPC_RecordChild2, // #1 = $vB
/* 45511*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45513*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKSDUS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5332:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VPKSDUS:{ *:[v4i32] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45521*/    /*Scope*/ 15, /*->45537*/
/* 45522*/      OPC_CheckChild0Integer, 89|128,41/*5337*/, 
/* 45525*/      OPC_RecordChild1, // #0 = $vA
/* 45526*/      OPC_RecordChild2, // #1 = $vB
/* 45527*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45529*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5337:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VPKUDUS:{ *:[v4i32] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45537*/    /*Scope*/ 13, /*->45551*/
/* 45538*/      OPC_CheckChild0Integer, 15|128,42/*5391*/, 
/* 45541*/      OPC_RecordChild1, // #0 = $vB
/* 45542*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45544*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKHSW), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5391:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VUPKHSW:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$vB)
/* 45551*/    /*Scope*/ 13, /*->45565*/
/* 45552*/      OPC_CheckChild0Integer, 19|128,42/*5395*/, 
/* 45555*/      OPC_RecordChild1, // #0 = $vB
/* 45556*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45558*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VUPKLSW), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5395:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VUPKLSW:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$vB)
/* 45565*/    /*Scope*/ 13, /*->45579*/
/* 45566*/      OPC_CheckChild0Integer, 38|128,41/*5286*/, 
/* 45569*/      OPC_RecordChild1, // #0 = $vB
/* 45570*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45572*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VGBBD), 0,
                    MVT::v16i8, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5286:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VGBBD:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB)
/* 45579*/    /*Scope*/ 15, /*->45595*/
/* 45580*/      OPC_CheckChild0Integer, 114|128,40/*5234*/, 
/* 45583*/      OPC_RecordChild1, // #0 = $vA
/* 45584*/      OPC_RecordChild2, // #1 = $vB
/* 45585*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 45587*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VBPERMQ), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5234:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VBPERMQ:{ *:[v2i64] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 45595*/    /*Scope*/ 15, /*->45611*/
/* 45596*/      OPC_CheckChild0Integer, 63|128,40/*5183*/, 
/* 45599*/      OPC_RecordChild1, // #0 = $vA
/* 45600*/      OPC_RecordChild2, // #1 = $vB
/* 45601*/      OPC_CheckPatternPredicate, 34, // (PPCSubTarget->hasP8Crypto())
/* 45603*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCIPHER), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5183:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VCIPHER:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45611*/    /*Scope*/ 15, /*->45627*/
/* 45612*/      OPC_CheckChild0Integer, 64|128,40/*5184*/, 
/* 45615*/      OPC_RecordChild1, // #0 = $vA
/* 45616*/      OPC_RecordChild2, // #1 = $vB
/* 45617*/      OPC_CheckPatternPredicate, 34, // (PPCSubTarget->hasP8Crypto())
/* 45619*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCIPHERLAST), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5184:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VCIPHERLAST:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45627*/    /*Scope*/ 15, /*->45643*/
/* 45628*/      OPC_CheckChild0Integer, 65|128,40/*5185*/, 
/* 45631*/      OPC_RecordChild1, // #0 = $vA
/* 45632*/      OPC_RecordChild2, // #1 = $vB
/* 45633*/      OPC_CheckPatternPredicate, 34, // (PPCSubTarget->hasP8Crypto())
/* 45635*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VNCIPHER), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5185:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VNCIPHER:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45643*/    /*Scope*/ 15, /*->45659*/
/* 45644*/      OPC_CheckChild0Integer, 66|128,40/*5186*/, 
/* 45647*/      OPC_RecordChild1, // #0 = $vA
/* 45648*/      OPC_RecordChild2, // #1 = $vB
/* 45649*/      OPC_CheckPatternPredicate, 34, // (PPCSubTarget->hasP8Crypto())
/* 45651*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VNCIPHERLAST), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5186:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VNCIPHERLAST:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45659*/    /*Scope*/ 13, /*->45673*/
/* 45660*/      OPC_CheckChild0Integer, 72|128,40/*5192*/, 
/* 45663*/      OPC_RecordChild1, // #0 = $vA
/* 45664*/      OPC_CheckPatternPredicate, 34, // (PPCSubTarget->hasP8Crypto())
/* 45666*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSBOX), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5192:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA) - Complexity = 8
                // Dst: (VSBOX:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA)
/* 45673*/    /*Scope*/ 13, /*->45687*/
/* 45674*/      OPC_CheckChild0Integer, 94|128,41/*5342*/, 
/* 45677*/      OPC_RecordChild1, // #0 = $vB
/* 45678*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45680*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPRTYBW), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5342:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VPRTYBW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB)
/* 45687*/    /*Scope*/ 13, /*->45701*/
/* 45688*/      OPC_CheckChild0Integer, 92|128,41/*5340*/, 
/* 45691*/      OPC_RecordChild1, // #0 = $vB
/* 45692*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45694*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPRTYBD), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5340:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VPRTYBD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB)
/* 45701*/    /*Scope*/ 13, /*->45715*/
/* 45702*/      OPC_CheckChild0Integer, 93|128,41/*5341*/, 
/* 45705*/      OPC_RecordChild1, // #0 = $vB
/* 45706*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45708*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPRTYBQ), 0,
                    MVT::v1i128, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v1i128] } 5341:{ *:[iPTR] }, v1i128:{ *:[v1i128] }:$vB) - Complexity = 8
                // Dst: (VPRTYBQ:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vB)
/* 45715*/    /*Scope*/ 15, /*->45731*/
/* 45716*/      OPC_CheckChild0Integer, 107|128,41/*5355*/, 
/* 45719*/      OPC_RecordChild1, // #0 = $vA
/* 45720*/      OPC_RecordChild2, // #1 = $vB
/* 45721*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45723*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLWNM), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5355:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VRLWNM:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45731*/    /*Scope*/ 17, /*->45749*/
/* 45732*/      OPC_CheckChild0Integer, 106|128,41/*5354*/, 
/* 45735*/      OPC_RecordChild1, // #0 = $vA
/* 45736*/      OPC_RecordChild2, // #1 = $vB
/* 45737*/      OPC_RecordChild3, // #2 = $vDi
/* 45738*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45740*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLWMI), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5354:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v4i32:{ *:[v4i32] }:$vDi) - Complexity = 8
                // Dst: (VRLWMI:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v4i32:{ *:[v4i32] }:$vDi)
/* 45749*/    /*Scope*/ 15, /*->45765*/
/* 45750*/      OPC_CheckChild0Integer, 103|128,41/*5351*/, 
/* 45753*/      OPC_RecordChild1, // #0 = $vA
/* 45754*/      OPC_RecordChild2, // #1 = $vB
/* 45755*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45757*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLDNM), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5351:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 8
                // Dst: (VRLDNM:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 45765*/    /*Scope*/ 17, /*->45783*/
/* 45766*/      OPC_CheckChild0Integer, 102|128,41/*5350*/, 
/* 45769*/      OPC_RecordChild1, // #0 = $vA
/* 45770*/      OPC_RecordChild2, // #1 = $vB
/* 45771*/      OPC_RecordChild3, // #2 = $vDi
/* 45772*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45774*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRLDMI), 0,
                    MVT::v2i64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v2i64] } 5350:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, v2i64:{ *:[v2i64] }:$vDi) - Complexity = 8
                // Dst: (VRLDMI:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, v2i64:{ *:[v2i64] }:$vDi)
/* 45783*/    /*Scope*/ 15, /*->45799*/
/* 45784*/      OPC_CheckChild0Integer, 114|128,41/*5362*/, 
/* 45787*/      OPC_RecordChild1, // #0 = $vA
/* 45788*/      OPC_RecordChild2, // #1 = $vB
/* 45789*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45791*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLV), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5362:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VSLV:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 45799*/    /*Scope*/ 15, /*->45815*/
/* 45800*/      OPC_CheckChild0Integer, 123|128,41/*5371*/, 
/* 45803*/      OPC_RecordChild1, // #0 = $vA
/* 45804*/      OPC_RecordChild2, // #1 = $vB
/* 45805*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45807*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRV), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5371:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VSRV:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 45815*/    /*Scope*/ 15, /*->45831*/
/* 45816*/      OPC_CheckChild0Integer, 95|128,40/*5215*/, 
/* 45819*/      OPC_RecordChild1, // #0 = $vA
/* 45820*/      OPC_RecordChild2, // #1 = $vB
/* 45821*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45823*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VABSDUB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v16i8] } 5215:{ *:[iPTR] }, v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 8
                // Dst: (VABSDUB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 45831*/    /*Scope*/ 15, /*->45847*/
/* 45832*/      OPC_CheckChild0Integer, 96|128,40/*5216*/, 
/* 45835*/      OPC_RecordChild1, // #0 = $vA
/* 45836*/      OPC_RecordChild2, // #1 = $vB
/* 45837*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45839*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VABSDUH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v8i16] } 5216:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 8
                // Dst: (VABSDUH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 45847*/    /*Scope*/ 15, /*->45863*/
/* 45848*/      OPC_CheckChild0Integer, 97|128,40/*5217*/, 
/* 45851*/      OPC_RecordChild1, // #0 = $vA
/* 45852*/      OPC_RecordChild2, // #1 = $vB
/* 45853*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 45855*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VABSDUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4i32] } 5217:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 8
                // Dst: (VABSDUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 45863*/    /*Scope*/ 13, /*->45877*/
/* 45864*/      OPC_CheckChild0Integer, 51|128,43/*5555*/, 
/* 45867*/      OPC_RecordChild1, // #0 = $XB
/* 45868*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45870*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVDPSP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5555:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVCVDPSP:{ *:[v4f32] } v2f64:{ *:[v2f64] }:$XB)
/* 45877*/    /*Scope*/ 13, /*->45891*/
/* 45878*/      OPC_CheckChild0Integer, 55|128,43/*5559*/, 
/* 45881*/      OPC_RecordChild1, // #0 = $XB
/* 45882*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45884*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5559:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVCVSPDP:{ *:[v2f64] } v4f32:{ *:[v4f32] }:$XB)
/* 45891*/    /*Scope*/ 13, /*->45905*/
/* 45892*/      OPC_CheckChild0Integer, 57|128,43/*5561*/, 
/* 45895*/      OPC_RecordChild1, // #0 = $XB
/* 45896*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45898*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5561:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$XB) - Complexity = 408
                // Dst: (XVCVSXDSP:{ *:[v4f32] } v2i64:{ *:[v2i64] }:$XB)
/* 45905*/    /*Scope*/ 13, /*->45919*/
/* 45906*/      OPC_CheckChild0Integer, 58|128,43/*5562*/, 
/* 45909*/      OPC_RecordChild1, // #0 = $XB
/* 45910*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45912*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5562:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$XB) - Complexity = 408
                // Dst: (XVCVSXWDP:{ *:[v2f64] } v4i32:{ *:[v4i32] }:$XB)
/* 45919*/    /*Scope*/ 13, /*->45933*/
/* 45920*/      OPC_CheckChild0Integer, 59|128,43/*5563*/, 
/* 45923*/      OPC_RecordChild1, // #0 = $XB
/* 45924*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45926*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5563:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$XB) - Complexity = 408
                // Dst: (XVCVUXDSP:{ *:[v4f32] } v2i64:{ *:[v2i64] }:$XB)
/* 45933*/    /*Scope*/ 13, /*->45947*/
/* 45934*/      OPC_CheckChild0Integer, 60|128,43/*5564*/, 
/* 45937*/      OPC_RecordChild1, // #0 = $XB
/* 45938*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45940*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVUXWDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5564:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$XB) - Complexity = 408
                // Dst: (XVCVUXWDP:{ *:[v2f64] } v4i32:{ *:[v4i32] }:$XB)
/* 45947*/    /*Scope*/ 15, /*->45963*/
/* 45948*/      OPC_CheckChild0Integer, 65|128,43/*5569*/, 
/* 45951*/      OPC_RecordChild1, // #0 = $XA
/* 45952*/      OPC_RecordChild2, // #1 = $XB
/* 45953*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45955*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMAXDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5569:{ *:[iPTR] }, vsrc:{ *:[v2f64] }:$XA, vsrc:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVMAXDP:{ *:[v2f64] } vsrc:{ *:[v2f64] }:$XA, vsrc:{ *:[v2f64] }:$XB)
/* 45963*/    /*Scope*/ 15, /*->45979*/
/* 45964*/      OPC_CheckChild0Integer, 67|128,43/*5571*/, 
/* 45967*/      OPC_RecordChild1, // #0 = $XA
/* 45968*/      OPC_RecordChild2, // #1 = $XB
/* 45969*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45971*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMINDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5571:{ *:[iPTR] }, vsrc:{ *:[v2f64] }:$XA, vsrc:{ *:[v2f64] }:$XB) - Complexity = 408
                // Dst: (XVMINDP:{ *:[v2f64] } vsrc:{ *:[v2f64] }:$XA, vsrc:{ *:[v2f64] }:$XB)
/* 45979*/    /*Scope*/ 15, /*->45995*/
/* 45980*/      OPC_CheckChild0Integer, 66|128,43/*5570*/, 
/* 45983*/      OPC_RecordChild1, // #0 = $XA
/* 45984*/      OPC_RecordChild2, // #1 = $XB
/* 45985*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 45987*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMAXSP), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5570:{ *:[iPTR] }, vsrc:{ *:[v4f32] }:$XA, vsrc:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVMAXSP:{ *:[v4f32] } vsrc:{ *:[v4f32] }:$XA, vsrc:{ *:[v4f32] }:$XB)
/* 45995*/    /*Scope*/ 15, /*->46011*/
/* 45996*/      OPC_CheckChild0Integer, 68|128,43/*5572*/, 
/* 45999*/      OPC_RecordChild1, // #0 = $XA
/* 46000*/      OPC_RecordChild2, // #1 = $XB
/* 46001*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 46003*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMINSP), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5572:{ *:[iPTR] }, vsrc:{ *:[v4f32] }:$XA, vsrc:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVMINSP:{ *:[v4f32] } vsrc:{ *:[v4f32] }:$XA, vsrc:{ *:[v4f32] }:$XB)
/* 46011*/    /*Scope*/ 15, /*->46027*/
/* 46012*/      OPC_CheckChild0Integer, 62|128,43/*5566*/, 
/* 46015*/      OPC_RecordChild1, // #0 = $A
/* 46016*/      OPC_RecordChild2, // #1 = $B
/* 46017*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 46019*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVDIVSP), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5566:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$A, v4f32:{ *:[v4f32] }:$B) - Complexity = 408
                // Dst: (XVDIVSP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B)
/* 46027*/    /*Scope*/ 15, /*->46043*/
/* 46028*/      OPC_CheckChild0Integer, 61|128,43/*5565*/, 
/* 46031*/      OPC_RecordChild1, // #0 = $A
/* 46032*/      OPC_RecordChild2, // #1 = $B
/* 46033*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 46035*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVDIVDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5565:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$A, v2f64:{ *:[v2f64] }:$B) - Complexity = 408
                // Dst: (XVDIVDP:{ *:[v2f64] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$B)
/* 46043*/    /*Scope*/ 13, /*->46057*/
/* 46044*/      OPC_CheckChild0Integer, 71|128,43/*5575*/, 
/* 46047*/      OPC_RecordChild1, // #0 = $A
/* 46048*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 46050*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRESP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5575:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$A) - Complexity = 408
                // Dst: (XVRESP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A)
/* 46057*/    /*Scope*/ 13, /*->46071*/
/* 46058*/      OPC_CheckChild0Integer, 70|128,43/*5574*/, 
/* 46061*/      OPC_RecordChild1, // #0 = $A
/* 46062*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 46064*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVREDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5574:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$A) - Complexity = 408
                // Dst: (XVREDP:{ *:[v2f64] } ?:{ *:[v2f64] }:$A)
/* 46071*/    /*Scope*/ 13, /*->46085*/
/* 46072*/      OPC_CheckChild0Integer, 74|128,43/*5578*/, 
/* 46075*/      OPC_RecordChild1, // #0 = $A
/* 46076*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 46078*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSQRTESP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5578:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$A) - Complexity = 408
                // Dst: (XVRSQRTESP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A)
/* 46085*/    /*Scope*/ 13, /*->46099*/
/* 46086*/      OPC_CheckChild0Integer, 73|128,43/*5577*/, 
/* 46089*/      OPC_RecordChild1, // #0 = $A
/* 46090*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 46092*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSQRTEDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5577:{ *:[iPTR] }, v2f64:{ *:[v2f64] }:$A) - Complexity = 408
                // Dst: (XVRSQRTEDP:{ *:[v2f64] } ?:{ *:[v2f64] }:$A)
/* 46099*/    /*Scope*/ 13, /*->46113*/
/* 46100*/      OPC_CheckChild0Integer, 56|128,43/*5560*/, 
/* 46103*/      OPC_RecordChild1, // #0 = $XB
/* 46104*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 46106*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPHP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5560:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$XB) - Complexity = 408
                // Dst: (XVCVSPHP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 46113*/    /*Scope*/ 15, /*->46129*/
/* 46114*/      OPC_CheckChild0Integer, 63|128,43/*5567*/, 
/* 46117*/      OPC_RecordChild1, // #0 = $XA
/* 46118*/      OPC_RecordChild2, // #1 = $XB
/* 46119*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 46121*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVIEXPDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v2f64] } 5567:{ *:[iPTR] }, v2i64:{ *:[v2i64] }:$XA, v2i64:{ *:[v2i64] }:$XB) - Complexity = 408
                // Dst: (XVIEXPDP:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$XA, v2i64:{ *:[v2i64] }:$XB)
/* 46129*/    /*Scope*/ 15, /*->46145*/
/* 46130*/      OPC_CheckChild0Integer, 64|128,43/*5568*/, 
/* 46133*/      OPC_RecordChild1, // #0 = $XA
/* 46134*/      OPC_RecordChild2, // #1 = $XB
/* 46135*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 46137*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVIEXPSP), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5568:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB) - Complexity = 408
                // Dst: (XVIEXPSP:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 46145*/    /*Scope*/ 24, /*->46170*/
/* 46146*/      OPC_CheckChild0Integer, 54|128,43/*5558*/, 
/* 46149*/      OPC_RecordChild1, // #0 = $A
/* 46150*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 46152*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 46155*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 46163*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVHPSP), 0,
                    MVT::v4f32, 1/*#Ops*/, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5558:{ *:[iPTR] }, v8i16:{ *:[v8i16] }:$A) - Complexity = 408
                // Dst: (XVCVHPSP:{ *:[v4f32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$A, VSRC:{ *:[i32] }))
/* 46170*/    /*Scope*/ 17, /*->46188*/
/* 46171*/      OPC_CheckChild0Integer, 113|128,42/*5489*/, 
/* 46174*/      OPC_RecordChild1, // #0 = $src
/* 46175*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46177*/      OPC_CheckComplexPat, /*CP*/0, /*#*/0, // SelectAddrIdxOnly:$src #1 #2
/* 46180*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLPCLDX), 0,
                    MVT::v4f64, 2/*#Ops*/, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5489:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLPCLDX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 46188*/    /*Scope*/ 17, /*->46206*/
/* 46189*/      OPC_CheckChild0Integer, 114|128,42/*5490*/, 
/* 46192*/      OPC_RecordChild1, // #0 = $src
/* 46193*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46195*/      OPC_CheckComplexPat, /*CP*/0, /*#*/0, // SelectAddrIdxOnly:$src #1 #2
/* 46198*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLPCLSX), 0,
                    MVT::v4f64, 2/*#Ops*/, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5490:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLPCLSX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 46206*/    /*Scope*/ 17, /*->46224*/
/* 46207*/      OPC_CheckChild0Integer, 115|128,42/*5491*/, 
/* 46210*/      OPC_RecordChild1, // #0 = $src
/* 46211*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46213*/      OPC_CheckComplexPat, /*CP*/0, /*#*/0, // SelectAddrIdxOnly:$src #1 #2
/* 46216*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLPCRDX), 0,
                    MVT::v4f64, 2/*#Ops*/, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5491:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLPCRDX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 46224*/    /*Scope*/ 17, /*->46242*/
/* 46225*/      OPC_CheckChild0Integer, 116|128,42/*5492*/, 
/* 46228*/      OPC_RecordChild1, // #0 = $src
/* 46229*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46231*/      OPC_CheckComplexPat, /*CP*/0, /*#*/0, // SelectAddrIdxOnly:$src #1 #2
/* 46234*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLPCRSX), 0,
                    MVT::v4f64, 2/*#Ops*/, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5492:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLPCRSX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 46242*/    /*Scope*/ 37, /*->46280*/
/* 46243*/      OPC_CheckChild0Integer, 115|128,40/*5235*/, 
/* 46246*/      OPC_RecordChild1, // #0 = $vB
/* 46247*/      OPC_Scope, 11, /*->46260*/ // 2 children in Scope
/* 46249*/        OPC_CheckChild2Integer, 0, 
/* 46251*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46253*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCFSX_0), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5235:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB, 0:{ *:[i32] }) - Complexity = 13
                  // Dst: (VCFSX_0:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$vB)
/* 46260*/      /*Scope*/ 18, /*->46279*/
/* 46261*/        OPC_RecordChild2, // #1 = $UIMM
/* 46262*/        OPC_MoveChild2,
/* 46263*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 46266*/        OPC_MoveParent,
/* 46267*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46269*/        OPC_EmitConvertToTarget, 1,
/* 46271*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCFSX), 0,
                      MVT::v4f32, 2/*#Ops*/, 2, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5235:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB, (imm:{ *:[i32] }):$UIMM) - Complexity = 11
                  // Dst: (VCFSX:{ *:[v4f32] } (imm:{ *:[i32] }):$UIMM, v4i32:{ *:[v4i32] }:$vB)
/* 46279*/      0, /*End of Scope*/
/* 46280*/    /*Scope*/ 37, /*->46318*/
/* 46281*/      OPC_CheckChild0Integer, 116|128,40/*5236*/, 
/* 46284*/      OPC_RecordChild1, // #0 = $vB
/* 46285*/      OPC_Scope, 11, /*->46298*/ // 2 children in Scope
/* 46287*/        OPC_CheckChild2Integer, 0, 
/* 46289*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46291*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCFUX_0), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5236:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB, 0:{ *:[i32] }) - Complexity = 13
                  // Dst: (VCFUX_0:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$vB)
/* 46298*/      /*Scope*/ 18, /*->46317*/
/* 46299*/        OPC_RecordChild2, // #1 = $UIMM
/* 46300*/        OPC_MoveChild2,
/* 46301*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 46304*/        OPC_MoveParent,
/* 46305*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46307*/        OPC_EmitConvertToTarget, 1,
/* 46309*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCFUX), 0,
                      MVT::v4f32, 2/*#Ops*/, 2, 0, 
                  // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5236:{ *:[iPTR] }, v4i32:{ *:[v4i32] }:$vB, (imm:{ *:[i32] }):$UIMM) - Complexity = 11
                  // Dst: (VCFUX:{ *:[v4f32] } (imm:{ *:[i32] }):$UIMM, v4i32:{ *:[v4i32] }:$vB)
/* 46317*/      0, /*End of Scope*/
/* 46318*/    /*Scope*/ 22, /*->46341*/
/* 46319*/      OPC_CheckChild0Integer, 100|128,42/*5476*/, 
/* 46322*/      OPC_RecordChild1, // #0 = $idx
/* 46323*/      OPC_MoveChild1,
/* 46324*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 46327*/      OPC_CheckPredicate, 16, // Predicate_u12
/* 46329*/      OPC_MoveParent,
/* 46330*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46332*/      OPC_EmitConvertToTarget, 0,
/* 46334*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVGPCI), 0,
                    MVT::v4f64, 1/*#Ops*/, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5476:{ *:[iPTR] }, (imm:{ *:[i32] })<<P:Predicate_u12>>:$idx) - Complexity = 12
                // Dst: (QVGPCI:{ *:[v4f64] } (imm:{ *:[i32] }):$idx)
/* 46341*/    /*Scope*/ 24, /*->46366*/
/* 46342*/      OPC_CheckChild0Integer, 63|128,42/*5439*/, 
/* 46345*/      OPC_RecordChild1, // #0 = $A
/* 46346*/      OPC_RecordChild2, // #1 = $B
/* 46347*/      OPC_RecordChild3, // #2 = $idx
/* 46348*/      OPC_MoveChild3,
/* 46349*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 46352*/      OPC_MoveParent,
/* 46353*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46355*/      OPC_EmitConvertToTarget, 2,
/* 46357*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICAL), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 3, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5439:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B, (imm:{ *:[i32] }):$idx) - Complexity = 11
                // Dst: (QVFLOGICAL:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, (imm:{ *:[i32] }):$idx)
/* 46366*/    /*Scope*/ 13, /*->46380*/
/* 46367*/      OPC_CheckChild0Integer, 37|128,41/*5285*/, 
/* 46370*/      OPC_RecordChild1, // #0 = $vB
/* 46371*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46373*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXPTEFP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5285:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VEXPTEFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46380*/    /*Scope*/ 13, /*->46394*/
/* 46381*/      OPC_CheckChild0Integer, 39|128,41/*5287*/, 
/* 46384*/      OPC_RecordChild1, // #0 = $vB
/* 46385*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46387*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VLOGEFP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5287:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VLOGEFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46394*/    /*Scope*/ 15, /*->46410*/
/* 46395*/      OPC_CheckChild0Integer, 41|128,41/*5289*/, 
/* 46398*/      OPC_RecordChild1, // #0 = $vA
/* 46399*/      OPC_RecordChild2, // #1 = $vB
/* 46400*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46402*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXFP), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5289:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VMAXFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/* 46410*/    /*Scope*/ 15, /*->46426*/
/* 46411*/      OPC_CheckChild0Integer, 52|128,41/*5300*/, 
/* 46414*/      OPC_RecordChild1, // #0 = $vA
/* 46415*/      OPC_RecordChild2, // #1 = $vB
/* 46416*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46418*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINFP), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5300:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VMINFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/* 46426*/    /*Scope*/ 13, /*->46440*/
/* 46427*/      OPC_CheckChild0Integer, 95|128,41/*5343*/, 
/* 46430*/      OPC_RecordChild1, // #0 = $vB
/* 46431*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46433*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VREFP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5343:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VREFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46440*/    /*Scope*/ 13, /*->46454*/
/* 46441*/      OPC_CheckChild0Integer, 96|128,41/*5344*/, 
/* 46444*/      OPC_RecordChild1, // #0 = $vB
/* 46445*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46447*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIM), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5344:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VRFIM:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46454*/    /*Scope*/ 13, /*->46468*/
/* 46455*/      OPC_CheckChild0Integer, 97|128,41/*5345*/, 
/* 46458*/      OPC_RecordChild1, // #0 = $vB
/* 46459*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46461*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIN), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5345:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VRFIN:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46468*/    /*Scope*/ 13, /*->46482*/
/* 46469*/      OPC_CheckChild0Integer, 98|128,41/*5346*/, 
/* 46472*/      OPC_RecordChild1, // #0 = $vB
/* 46473*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46475*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5346:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VRFIP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46482*/    /*Scope*/ 13, /*->46496*/
/* 46483*/      OPC_CheckChild0Integer, 99|128,41/*5347*/, 
/* 46486*/      OPC_RecordChild1, // #0 = $vB
/* 46487*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46489*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIZ), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5347:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VRFIZ:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46496*/    /*Scope*/ 13, /*->46510*/
/* 46497*/      OPC_CheckChild0Integer, 108|128,41/*5356*/, 
/* 46500*/      OPC_RecordChild1, // #0 = $vB
/* 46501*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46503*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VRSQRTEFP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5356:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$vB) - Complexity = 8
                // Dst: (VRSQRTEFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB)
/* 46510*/    /*Scope*/ 17, /*->46528*/
/* 46511*/      OPC_CheckChild0Integer, 40|128,41/*5288*/, 
/* 46514*/      OPC_RecordChild1, // #0 = $A
/* 46515*/      OPC_RecordChild2, // #1 = $B
/* 46516*/      OPC_RecordChild3, // #2 = $C
/* 46517*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46519*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMADDFP), 0,
                    MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5288:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$A, v4f32:{ *:[v4f32] }:$B, v4f32:{ *:[v4f32] }:$C) - Complexity = 8
                // Dst: (VMADDFP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B, ?:{ *:[v4f32] }:$C)
/* 46528*/    /*Scope*/ 17, /*->46546*/
/* 46529*/      OPC_CheckChild0Integer, 80|128,41/*5328*/, 
/* 46532*/      OPC_RecordChild1, // #0 = $A
/* 46533*/      OPC_RecordChild2, // #1 = $B
/* 46534*/      OPC_RecordChild3, // #2 = $C
/* 46535*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 46537*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VNMSUBFP), 0,
                    MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f32] } 5328:{ *:[iPTR] }, v4f32:{ *:[v4f32] }:$A, v4f32:{ *:[v4f32] }:$B, v4f32:{ *:[v4f32] }:$C) - Complexity = 8
                // Dst: (VNMSUBFP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B, ?:{ *:[v4f32] }:$C)
/* 46546*/    /*Scope*/ 15, /*->46562*/
/* 46547*/      OPC_CheckChild0Integer, 46|128,42/*5422*/, 
/* 46550*/      OPC_RecordChild1, // #0 = $FRA
/* 46551*/      OPC_RecordChild2, // #1 = $FRB
/* 46552*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46554*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFADDS), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5422:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFADDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 46562*/    /*Scope*/ 15, /*->46578*/
/* 46563*/      OPC_CheckChild0Integer, 88|128,42/*5464*/, 
/* 46566*/      OPC_RecordChild1, // #0 = $FRA
/* 46567*/      OPC_RecordChild2, // #1 = $FRB
/* 46568*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46570*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSUBS), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5464:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFSUBS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 46578*/    /*Scope*/ 13, /*->46592*/
/* 46579*/      OPC_CheckChild0Integer, 78|128,42/*5454*/, 
/* 46582*/      OPC_RecordChild1, // #0 = $FRB
/* 46583*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46585*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRES), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5454:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFRES:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46592*/    /*Scope*/ 13, /*->46606*/
/* 46593*/      OPC_CheckChild0Integer, 85|128,42/*5461*/, 
/* 46596*/      OPC_RecordChild1, // #0 = $FRB
/* 46597*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46599*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRSQRTES), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5461:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFRSQRTES:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46606*/    /*Scope*/ 15, /*->46622*/
/* 46607*/      OPC_CheckChild0Integer, 69|128,42/*5445*/, 
/* 46610*/      OPC_RecordChild1, // #0 = $FRA
/* 46611*/      OPC_RecordChild2, // #1 = $FRC
/* 46612*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46614*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMULS), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5445:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFMULS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC)
/* 46622*/    /*Scope*/ 15, /*->46638*/
/* 46623*/      OPC_CheckChild0Integer, 92|128,42/*5468*/, 
/* 46626*/      OPC_RecordChild1, // #0 = $FRA
/* 46627*/      OPC_RecordChild2, // #1 = $FRC
/* 46628*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46630*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXMUL), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5468:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXMUL:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC)
/* 46638*/    /*Scope*/ 15, /*->46654*/
/* 46639*/      OPC_CheckChild0Integer, 93|128,42/*5469*/, 
/* 46642*/      OPC_RecordChild1, // #0 = $FRA
/* 46643*/      OPC_RecordChild2, // #1 = $FRC
/* 46644*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46646*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXMULS), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5469:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXMULS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC)
/* 46654*/    /*Scope*/ 17, /*->46672*/
/* 46655*/      OPC_CheckChild0Integer, 65|128,42/*5441*/, 
/* 46658*/      OPC_RecordChild1, // #0 = $FRA
/* 46659*/      OPC_RecordChild2, // #1 = $FRB
/* 46660*/      OPC_RecordChild3, // #2 = $FRC
/* 46661*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46663*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMADDS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5441:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFMADDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46672*/    /*Scope*/ 17, /*->46690*/
/* 46673*/      OPC_CheckChild0Integer, 73|128,42/*5449*/, 
/* 46676*/      OPC_RecordChild1, // #0 = $FRA
/* 46677*/      OPC_RecordChild2, // #1 = $FRB
/* 46678*/      OPC_RecordChild3, // #2 = $FRC
/* 46679*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46681*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMADDS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5449:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFNMADDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46690*/    /*Scope*/ 17, /*->46708*/
/* 46691*/      OPC_CheckChild0Integer, 67|128,42/*5443*/, 
/* 46694*/      OPC_RecordChild1, // #0 = $FRA
/* 46695*/      OPC_RecordChild2, // #1 = $FRB
/* 46696*/      OPC_RecordChild3, // #2 = $FRC
/* 46697*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46699*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMSUBS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5443:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFMSUBS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46708*/    /*Scope*/ 17, /*->46726*/
/* 46709*/      OPC_CheckChild0Integer, 75|128,42/*5451*/, 
/* 46712*/      OPC_RecordChild1, // #0 = $FRA
/* 46713*/      OPC_RecordChild2, // #1 = $FRB
/* 46714*/      OPC_RecordChild3, // #2 = $FRC
/* 46715*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46717*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUBS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5451:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFNMSUBS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46726*/    /*Scope*/ 17, /*->46744*/
/* 46727*/      OPC_CheckChild0Integer, 90|128,42/*5466*/, 
/* 46730*/      OPC_RecordChild1, // #0 = $FRA
/* 46731*/      OPC_RecordChild2, // #1 = $FRB
/* 46732*/      OPC_RecordChild3, // #2 = $FRC
/* 46733*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46735*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXMADD), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5466:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXMADD:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46744*/    /*Scope*/ 17, /*->46762*/
/* 46745*/      OPC_CheckChild0Integer, 91|128,42/*5467*/, 
/* 46748*/      OPC_RecordChild1, // #0 = $FRA
/* 46749*/      OPC_RecordChild2, // #1 = $FRB
/* 46750*/      OPC_RecordChild3, // #2 = $FRC
/* 46751*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46753*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXMADDS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5467:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXMADDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46762*/    /*Scope*/ 17, /*->46780*/
/* 46763*/      OPC_CheckChild0Integer, 98|128,42/*5474*/, 
/* 46766*/      OPC_RecordChild1, // #0 = $FRA
/* 46767*/      OPC_RecordChild2, // #1 = $FRB
/* 46768*/      OPC_RecordChild3, // #2 = $FRC
/* 46769*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46771*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXXNPMADD), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5474:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXXNPMADD:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46780*/    /*Scope*/ 17, /*->46798*/
/* 46781*/      OPC_CheckChild0Integer, 99|128,42/*5475*/, 
/* 46784*/      OPC_RecordChild1, // #0 = $FRA
/* 46785*/      OPC_RecordChild2, // #1 = $FRB
/* 46786*/      OPC_RecordChild3, // #2 = $FRC
/* 46787*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46789*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXXNPMADDS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5475:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXXNPMADDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46798*/    /*Scope*/ 17, /*->46816*/
/* 46799*/      OPC_CheckChild0Integer, 94|128,42/*5470*/, 
/* 46802*/      OPC_RecordChild1, // #0 = $FRA
/* 46803*/      OPC_RecordChild2, // #1 = $FRB
/* 46804*/      OPC_RecordChild3, // #2 = $FRC
/* 46805*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46807*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXXCPNMADD), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5470:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXXCPNMADD:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46816*/    /*Scope*/ 17, /*->46834*/
/* 46817*/      OPC_CheckChild0Integer, 95|128,42/*5471*/, 
/* 46820*/      OPC_RecordChild1, // #0 = $FRA
/* 46821*/      OPC_RecordChild2, // #1 = $FRB
/* 46822*/      OPC_RecordChild3, // #2 = $FRC
/* 46823*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46825*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXXCPNMADDS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5471:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXXCPNMADDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46834*/    /*Scope*/ 17, /*->46852*/
/* 46835*/      OPC_CheckChild0Integer, 96|128,42/*5472*/, 
/* 46838*/      OPC_RecordChild1, // #0 = $FRA
/* 46839*/      OPC_RecordChild2, // #1 = $FRB
/* 46840*/      OPC_RecordChild3, // #2 = $FRC
/* 46841*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46843*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXXMADD), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5472:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXXMADD:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46852*/    /*Scope*/ 17, /*->46870*/
/* 46853*/      OPC_CheckChild0Integer, 97|128,42/*5473*/, 
/* 46856*/      OPC_RecordChild1, // #0 = $FRA
/* 46857*/      OPC_RecordChild2, // #1 = $FRB
/* 46858*/      OPC_RecordChild3, // #2 = $FRC
/* 46859*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46861*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFXXMADDS), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5473:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFXXMADDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46870*/    /*Scope*/ 17, /*->46888*/
/* 46871*/      OPC_CheckChild0Integer, 86|128,42/*5462*/, 
/* 46874*/      OPC_RecordChild1, // #0 = $FRA
/* 46875*/      OPC_RecordChild2, // #1 = $FRB
/* 46876*/      OPC_RecordChild3, // #2 = $FRC
/* 46877*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46879*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSEL), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5462:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 8
                // Dst: (QVFSEL:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 46888*/    /*Scope*/ 13, /*->46902*/
/* 46889*/      OPC_CheckChild0Integer, 55|128,42/*5431*/, 
/* 46892*/      OPC_RecordChild1, // #0 = $FRB
/* 46893*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46895*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTID), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5431:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTID:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46902*/    /*Scope*/ 13, /*->46916*/
/* 46903*/      OPC_CheckChild0Integer, 56|128,42/*5432*/, 
/* 46906*/      OPC_RecordChild1, // #0 = $FRB
/* 46907*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46909*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTIDU), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5432:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTIDU:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46916*/    /*Scope*/ 13, /*->46930*/
/* 46917*/      OPC_CheckChild0Integer, 58|128,42/*5434*/, 
/* 46920*/      OPC_RecordChild1, // #0 = $FRB
/* 46921*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46923*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTIDZ), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5434:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTIDZ:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46930*/    /*Scope*/ 13, /*->46944*/
/* 46931*/      OPC_CheckChild0Integer, 57|128,42/*5433*/, 
/* 46934*/      OPC_RecordChild1, // #0 = $FRB
/* 46935*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46937*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTIDUZ), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5433:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTIDUZ:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46944*/    /*Scope*/ 13, /*->46958*/
/* 46945*/      OPC_CheckChild0Integer, 59|128,42/*5435*/, 
/* 46948*/      OPC_RecordChild1, // #0 = $FRB
/* 46949*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46951*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTIW), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5435:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTIW:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46958*/    /*Scope*/ 13, /*->46972*/
/* 46959*/      OPC_CheckChild0Integer, 60|128,42/*5436*/, 
/* 46962*/      OPC_RecordChild1, // #0 = $FRB
/* 46963*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46965*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTIWU), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5436:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTIWU:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46972*/    /*Scope*/ 13, /*->46986*/
/* 46973*/      OPC_CheckChild0Integer, 62|128,42/*5438*/, 
/* 46976*/      OPC_RecordChild1, // #0 = $FRB
/* 46977*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46979*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTIWZ), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5438:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTIWZ:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 46986*/    /*Scope*/ 13, /*->47000*/
/* 46987*/      OPC_CheckChild0Integer, 61|128,42/*5437*/, 
/* 46990*/      OPC_RecordChild1, // #0 = $FRB
/* 46991*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 46993*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCTIWUZ), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5437:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCTIWUZ:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 47000*/    /*Scope*/ 13, /*->47014*/
/* 47001*/      OPC_CheckChild0Integer, 47|128,42/*5423*/, 
/* 47004*/      OPC_RecordChild1, // #0 = $FRB
/* 47005*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47007*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCFID), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5423:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCFID:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 47014*/    /*Scope*/ 13, /*->47028*/
/* 47015*/      OPC_CheckChild0Integer, 49|128,42/*5425*/, 
/* 47018*/      OPC_RecordChild1, // #0 = $FRB
/* 47019*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47021*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCFIDU), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5425:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCFIDU:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 47028*/    /*Scope*/ 13, /*->47042*/
/* 47029*/      OPC_CheckChild0Integer, 48|128,42/*5424*/, 
/* 47032*/      OPC_RecordChild1, // #0 = $FRB
/* 47033*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47035*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCFIDS), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5424:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCFIDS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 47042*/    /*Scope*/ 13, /*->47056*/
/* 47043*/      OPC_CheckChild0Integer, 50|128,42/*5426*/, 
/* 47046*/      OPC_RecordChild1, // #0 = $FRB
/* 47047*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47049*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCFIDUS), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5426:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCFIDUS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 47056*/    /*Scope*/ 13, /*->47070*/
/* 47057*/      OPC_CheckChild0Integer, 83|128,42/*5459*/, 
/* 47060*/      OPC_RecordChild1, // #0 = $FRB
/* 47061*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47063*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRSP), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5459:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFRSP:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 47070*/    /*Scope*/ 15, /*->47086*/
/* 47071*/      OPC_CheckChild0Integer, 89|128,42/*5465*/, 
/* 47074*/      OPC_RecordChild1, // #0 = $FRA
/* 47075*/      OPC_RecordChild2, // #1 = $FRB
/* 47076*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47078*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFTSTNAN), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5465:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFTSTNAN:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 47086*/    /*Scope*/ 15, /*->47102*/
/* 47087*/      OPC_CheckChild0Integer, 53|128,42/*5429*/, 
/* 47090*/      OPC_RecordChild1, // #0 = $FRA
/* 47091*/      OPC_RecordChild2, // #1 = $FRB
/* 47092*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47094*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPLT), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5429:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCMPLT:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 47102*/    /*Scope*/ 15, /*->47118*/
/* 47103*/      OPC_CheckChild0Integer, 52|128,42/*5428*/, 
/* 47106*/      OPC_RecordChild1, // #0 = $FRA
/* 47107*/      OPC_RecordChild2, // #1 = $FRB
/* 47108*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47110*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPGT), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5428:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCMPGT:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 47118*/    /*Scope*/ 15, /*->47134*/
/* 47119*/      OPC_CheckChild0Integer, 51|128,42/*5427*/, 
/* 47122*/      OPC_RecordChild1, // #0 = $FRA
/* 47123*/      OPC_RecordChild2, // #1 = $FRB
/* 47124*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47126*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPEQ), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5427:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 8
                // Dst: (QVFCMPEQ:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 47134*/    /*Scope*/ 17, /*->47152*/
/* 47135*/      OPC_CheckChild0Integer, 76|128,42/*5452*/, 
/* 47138*/      OPC_RecordChild1, // #0 = $A
/* 47139*/      OPC_RecordChild2, // #1 = $B
/* 47140*/      OPC_RecordChild3, // #2 = $C
/* 47141*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47143*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFPERM), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5452:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B, v4f64:{ *:[v4f64] }:$C) - Complexity = 8
                // Dst: (QVFPERM:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, ?:{ *:[v4f64] }:$C)
/* 47152*/    /*Scope*/ 15, /*->47168*/
/* 47153*/      OPC_CheckChild0Integer, 54|128,42/*5430*/, 
/* 47156*/      OPC_RecordChild1, // #0 = $A
/* 47157*/      OPC_RecordChild2, // #1 = $B
/* 47158*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47160*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCPSGN), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5430:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B) - Complexity = 8
                // Dst: (QVFCPSGN:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B)
/* 47168*/    /*Scope*/ 13, /*->47182*/
/* 47169*/      OPC_CheckChild0Integer, 71|128,42/*5447*/, 
/* 47172*/      OPC_RecordChild1, // #0 = $A
/* 47173*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47175*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNEG), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5447:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFNEG:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47182*/    /*Scope*/ 13, /*->47196*/
/* 47183*/      OPC_CheckChild0Integer, 44|128,42/*5420*/, 
/* 47186*/      OPC_RecordChild1, // #0 = $A
/* 47187*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47189*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFABS), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5420:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFABS:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47196*/    /*Scope*/ 13, /*->47210*/
/* 47197*/      OPC_CheckChild0Integer, 70|128,42/*5446*/, 
/* 47200*/      OPC_RecordChild1, // #0 = $A
/* 47201*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47203*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNABS), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5446:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFNABS:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47210*/    /*Scope*/ 13, /*->47224*/
/* 47211*/      OPC_CheckChild0Integer, 82|128,42/*5458*/, 
/* 47214*/      OPC_RecordChild1, // #0 = $A
/* 47215*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47217*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIZ), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5458:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFRIZ:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47224*/    /*Scope*/ 13, /*->47238*/
/* 47225*/      OPC_CheckChild0Integer, 80|128,42/*5456*/, 
/* 47228*/      OPC_RecordChild1, // #0 = $A
/* 47229*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47231*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIN), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5456:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFRIN:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47238*/    /*Scope*/ 13, /*->47252*/
/* 47239*/      OPC_CheckChild0Integer, 81|128,42/*5457*/, 
/* 47242*/      OPC_RecordChild1, // #0 = $A
/* 47243*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47245*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIP), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5457:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFRIP:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47252*/    /*Scope*/ 13, /*->47266*/
/* 47253*/      OPC_CheckChild0Integer, 79|128,42/*5455*/, 
/* 47256*/      OPC_RecordChild1, // #0 = $A
/* 47257*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47259*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIM), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5455:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFRIM:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47266*/    /*Scope*/ 13, /*->47280*/
/* 47267*/      OPC_CheckChild0Integer, 77|128,42/*5453*/, 
/* 47270*/      OPC_RecordChild1, // #0 = $A
/* 47271*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47273*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRE), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5453:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFRE:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47280*/    /*Scope*/ 13, /*->47294*/
/* 47281*/      OPC_CheckChild0Integer, 84|128,42/*5460*/, 
/* 47284*/      OPC_RecordChild1, // #0 = $A
/* 47285*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47287*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRSQRTE), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5460:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A) - Complexity = 8
                // Dst: (QVFRSQRTE:{ *:[v4f64] } ?:{ *:[v4f64] }:$A)
/* 47294*/    /*Scope*/ 15, /*->47310*/
/* 47295*/      OPC_CheckChild0Integer, 45|128,42/*5421*/, 
/* 47298*/      OPC_RecordChild1, // #0 = $A
/* 47299*/      OPC_RecordChild2, // #1 = $B
/* 47300*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47302*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFADD), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5421:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B) - Complexity = 8
                // Dst: (QVFADD:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B)
/* 47310*/    /*Scope*/ 15, /*->47326*/
/* 47311*/      OPC_CheckChild0Integer, 87|128,42/*5463*/, 
/* 47314*/      OPC_RecordChild1, // #0 = $A
/* 47315*/      OPC_RecordChild2, // #1 = $B
/* 47316*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47318*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSUB), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5463:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B) - Complexity = 8
                // Dst: (QVFSUB:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B)
/* 47326*/    /*Scope*/ 15, /*->47342*/
/* 47327*/      OPC_CheckChild0Integer, 68|128,42/*5444*/, 
/* 47330*/      OPC_RecordChild1, // #0 = $A
/* 47331*/      OPC_RecordChild2, // #1 = $B
/* 47332*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47334*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMUL), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5444:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B) - Complexity = 8
                // Dst: (QVFMUL:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B)
/* 47342*/    /*Scope*/ 17, /*->47360*/
/* 47343*/      OPC_CheckChild0Integer, 64|128,42/*5440*/, 
/* 47346*/      OPC_RecordChild1, // #0 = $A
/* 47347*/      OPC_RecordChild2, // #1 = $B
/* 47348*/      OPC_RecordChild3, // #2 = $C
/* 47349*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47351*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMADD), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5440:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B, v4f64:{ *:[v4f64] }:$C) - Complexity = 8
                // Dst: (QVFMADD:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, ?:{ *:[v4f64] }:$C)
/* 47360*/    /*Scope*/ 17, /*->47378*/
/* 47361*/      OPC_CheckChild0Integer, 72|128,42/*5448*/, 
/* 47364*/      OPC_RecordChild1, // #0 = $A
/* 47365*/      OPC_RecordChild2, // #1 = $B
/* 47366*/      OPC_RecordChild3, // #2 = $C
/* 47367*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47369*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMADD), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5448:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B, v4f64:{ *:[v4f64] }:$C) - Complexity = 8
                // Dst: (QVFNMADD:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, ?:{ *:[v4f64] }:$C)
/* 47378*/    /*Scope*/ 17, /*->47396*/
/* 47379*/      OPC_CheckChild0Integer, 66|128,42/*5442*/, 
/* 47382*/      OPC_RecordChild1, // #0 = $A
/* 47383*/      OPC_RecordChild2, // #1 = $B
/* 47384*/      OPC_RecordChild3, // #2 = $C
/* 47385*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47387*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMSUB), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5442:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B, v4f64:{ *:[v4f64] }:$C) - Complexity = 8
                // Dst: (QVFMSUB:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, ?:{ *:[v4f64] }:$C)
/* 47396*/    /*Scope*/ 17, /*->47414*/
/* 47397*/      OPC_CheckChild0Integer, 74|128,42/*5450*/, 
/* 47400*/      OPC_RecordChild1, // #0 = $A
/* 47401*/      OPC_RecordChild2, // #1 = $B
/* 47402*/      OPC_RecordChild3, // #2 = $C
/* 47403*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 47405*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUB), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (intrinsic_wo_chain:{ *:[v4f64] } 5450:{ *:[iPTR] }, v4f64:{ *:[v4f64] }:$A, v4f64:{ *:[v4f64] }:$B, v4f64:{ *:[v4f64] }:$C) - Complexity = 8
                // Dst: (QVFNMSUB:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, ?:{ *:[v4f64] }:$C)
/* 47414*/    0, /*End of Scope*/
/* 47415*/  /*SwitchOpcode*/ 27, TARGET_VAL(PPCISD::MFVSR),// ->47445
/* 47418*/    OPC_RecordChild0, // #0 = $XT
/* 47419*/    OPC_CheckChild0Type, MVT::f64,
/* 47421*/    OPC_SwitchType /*2 cases */, 9, MVT::i64,// ->47433
/* 47424*/      OPC_CheckPatternPredicate, 36, // (PPCSubTarget->hasDirectMove())
/* 47426*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                    MVT::i64, 1/*#Ops*/, 0, 
                // Src: (PPCmfvsr:{ *:[i64] } f64:{ *:[f64] }:$XT) - Complexity = 403
                // Dst: (MFVSRD:{ *:[i64] } f64:{ *:[f64] }:$XT)
/* 47433*/    /*SwitchType*/ 9, MVT::i32,// ->47444
/* 47435*/      OPC_CheckPatternPredicate, 36, // (PPCSubTarget->hasDirectMove())
/* 47437*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (PPCmfvsr:{ *:[i32] } f64:{ *:[f64] }:$XT) - Complexity = 403
                // Dst: (MFVSRWZ:{ *:[i32] } f64:{ *:[f64] }:$XT)
/* 47444*/    0, // EndSwitchType
/* 47445*/  /*SwitchOpcode*/ 10|128,7/*906*/, TARGET_VAL(ISD::BITCAST),// ->48355
/* 47449*/    OPC_Scope, 62|128,1/*190*/, /*->47642*/ // 3 children in Scope
/* 47452*/      OPC_RecordChild0, // #0 = $S
/* 47453*/      OPC_SwitchType /*4 cases */, 11, MVT::i64,// ->47467
/* 47456*/        OPC_CheckChild0Type, MVT::f64,
/* 47458*/        OPC_CheckPatternPredicate, 37, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasVSX())
/* 47460*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRD), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (bitconvert:{ *:[i64] } f64:{ *:[f64] }:$S) - Complexity = 403
                  // Dst: (MFVSRD:{ *:[i64] } ?:{ *:[f64] }:$S)
/* 47467*/      /*SwitchType*/ 48, MVT::i32,// ->47517
/* 47469*/        OPC_CheckChild0Type, MVT::f32,
/* 47471*/        OPC_CheckPatternPredicate, 37, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasVSX())
/* 47473*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                      MVT::v4i32, 1/*#Ops*/, 0,  // Results = #1
/* 47480*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                      MVT::v4i32, 1/*#Ops*/, 0,  // Results = #2
/* 47487*/        OPC_EmitInteger, MVT::i32, 3, 
/* 47490*/        OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                      MVT::v4i32, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/* 47499*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 47502*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/* 47510*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                      MVT::i32, 1/*#Ops*/, 6, 
                  // Src: (bitconvert:{ *:[i32] } f32:{ *:[f32] }:$S) - Complexity = 403
                  // Dst: (MFVSRWZ:{ *:[i32] } (EXTRACT_SUBREG:{ *:[f64] } (XXSLDWI:{ *:[v4i32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$S), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$S), 3:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 47517*/      /*SwitchType*/ 11, MVT::f64,// ->47530
/* 47519*/        OPC_CheckChild0Type, MVT::i64,
/* 47521*/        OPC_CheckPatternPredicate, 37, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasVSX())
/* 47523*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRD), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (bitconvert:{ *:[f64] } i64:{ *:[i64] }:$S) - Complexity = 403
                  // Dst: (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$S)
/* 47530*/      /*SwitchType*/ 109, MVT::f32,// ->47641
/* 47532*/        OPC_CheckChild0Type, MVT::i32,
/* 47534*/        OPC_CheckPatternPredicate, 37, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasVSX())
/* 47536*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                      MVT::v2i64, 0/*#Ops*/,  // Results = #1
/* 47542*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                      MVT::i64, 0/*#Ops*/,  // Results = #2
/* 47548*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 47551*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                      MVT::i64, 3/*#Ops*/, 2, 0, 3,  // Results = #4
/* 47560*/        OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                      MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/* 47567*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 47570*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                      MVT::v2i64, 3/*#Ops*/, 1, 5, 6,  // Results = #7
/* 47579*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                      MVT::v2i64, 0/*#Ops*/,  // Results = #8
/* 47585*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                      MVT::i64, 0/*#Ops*/,  // Results = #9
/* 47591*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 47594*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                      MVT::i64, 3/*#Ops*/, 9, 0, 10,  // Results = #11
/* 47603*/        OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                      MVT::f64, 1/*#Ops*/, 11,  // Results = #12
/* 47610*/        OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 47613*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                      MVT::v2i64, 3/*#Ops*/, 8, 12, 13,  // Results = #14
/* 47622*/        OPC_EmitInteger, MVT::i32, 1, 
/* 47625*/        OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                      MVT::v4i32, 3/*#Ops*/, 7, 14, 15,  // Results = #16
/* 47634*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                      MVT::f32, 1/*#Ops*/, 16, 
                  // Src: (bitconvert:{ *:[f32] } i32:{ *:[i32] }:$A) - Complexity = 403
                  // Dst: (XSCVSPDPN:{ *:[f32] } (XXSLDWI:{ *:[v4i32] } (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), 1:{ *:[i32] }))
/* 47641*/      0, // EndSwitchType
/* 47642*/    /*Scope*/ 80, /*->47723*/
/* 47643*/      OPC_MoveChild0,
/* 47644*/      OPC_CheckImmAllOnesV,
/* 47645*/      OPC_CheckType, MVT::v16i8,
/* 47647*/      OPC_MoveParent,
/* 47648*/      OPC_SwitchType /*4 cases */, 8, MVT::v4i32,// ->47659
/* 47651*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 47653*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQVOnes), 0,
                      MVT::v4i32, 0/*#Ops*/, 
                  // Src: (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }) - Complexity = 407
                  // Dst: (XXLEQVOnes:{ *:[v4i32] })
/* 47659*/      /*SwitchType*/ 19, MVT::v1i128,// ->47680
/* 47661*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 47663*/        OPC_EmitNode1, TARGET_VAL(PPC::XXLEQVOnes), 0,
                      MVT::v4i32, 0/*#Ops*/,  // Results = #0
/* 47669*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47672*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v1i128, 2/*#Ops*/, 0, 1, 
                  // Src: (bitconvert:{ *:[v1i128] } immAllOnesV:{ *:[v16i8] }) - Complexity = 407
                  // Dst: (COPY_TO_REGCLASS:{ *:[v1i128] } (XXLEQVOnes:{ *:[v4i32] }), VSRC:{ *:[i32] })
/* 47680*/      /*SwitchType*/ 19, MVT::v2i64,// ->47701
/* 47682*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 47684*/        OPC_EmitNode1, TARGET_VAL(PPC::XXLEQVOnes), 0,
                      MVT::v4i32, 0/*#Ops*/,  // Results = #0
/* 47690*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47693*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1, 
                  // Src: (bitconvert:{ *:[v2i64] } immAllOnesV:{ *:[v16i8] }) - Complexity = 407
                  // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } (XXLEQVOnes:{ *:[v4i32] }), VSRC:{ *:[i32] })
/* 47701*/      /*SwitchType*/ 19, MVT::v8i16,// ->47722
/* 47703*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 47705*/        OPC_EmitNode1, TARGET_VAL(PPC::XXLEQVOnes), 0,
                      MVT::v4i32, 0/*#Ops*/,  // Results = #0
/* 47711*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47714*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (bitconvert:{ *:[v8i16] } immAllOnesV:{ *:[v16i8] }) - Complexity = 407
                  // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } (XXLEQVOnes:{ *:[v4i32] }), VSRC:{ *:[i32] })
/* 47722*/      0, // EndSwitchType
/* 47723*/    /*Scope*/ 117|128,4/*629*/, /*->48354*/
/* 47725*/      OPC_RecordChild0, // #0 = $A
/* 47726*/      OPC_Scope, 94, /*->47822*/ // 8 children in Scope
/* 47728*/        OPC_CheckChild0Type, MVT::v2f64,
/* 47730*/        OPC_SwitchType /*6 cases */, 13, MVT::v4i32,// ->47746
/* 47733*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47735*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 47738*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v4i32] } v2f64:{ *:[v2f64] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, VRRC:{ *:[i32] })
/* 47746*/        /*SwitchType*/ 13, MVT::v8i16,// ->47761
/* 47748*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47750*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 47753*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v8i16, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v8i16] } v2f64:{ *:[v2f64] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } ?:{ *:[v2f64] }:$A, VRRC:{ *:[i32] })
/* 47761*/        /*SwitchType*/ 13, MVT::v16i8,// ->47776
/* 47763*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47765*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 47768*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v16i8] } v2f64:{ *:[v2f64] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } ?:{ *:[v2f64] }:$A, VRRC:{ *:[i32] })
/* 47776*/        /*SwitchType*/ 13, MVT::v2i64,// ->47791
/* 47778*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47780*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 47783*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v2f64] }:$A, VRRC:{ *:[i32] })
/* 47791*/        /*SwitchType*/ 13, MVT::v1i128,// ->47806
/* 47793*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47795*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 47798*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v1i128, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v1i128] } v2f64:{ *:[v2f64] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v1i128] } ?:{ *:[v2f64] }:$A, VRRC:{ *:[i32] })
/* 47806*/        /*SwitchType*/ 13, MVT::v4f32,// ->47821
/* 47808*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47810*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 47813*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4f32, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v4f32] } v2f64:{ *:[v2f64] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v4f32] } ?:{ *:[v2f64] }:$A, VRRC:{ *:[i32] })
/* 47821*/        0, // EndSwitchType
/* 47822*/      /*Scope*/ 71, /*->47894*/
/* 47823*/        OPC_CheckChild0Type, MVT::v4f32,
/* 47825*/        OPC_SwitchType /*6 cases */, 22, MVT::v2i64,// ->47850
/* 47828*/          OPC_Scope, 13, /*->47843*/ // 2 children in Scope
/* 47830*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47832*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47835*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v2i64] } v4f32:{ *:[v4f32] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4f32] }:$A, VSRC:{ *:[i32] })
/* 47843*/          /*Scope*/ 5, /*->47849*/
/* 47844*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47846*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v2i64] } VRRC:{ *:[v4f32] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v2i64] }:$src
/* 47849*/          0, /*End of Scope*/
/* 47850*/        /*SwitchType*/ 5, MVT::v16i8,// ->47857
/* 47852*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47854*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v16i8] } VRRC:{ *:[v4f32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v16i8] }:$src
/* 47857*/        /*SwitchType*/ 5, MVT::v8i16,// ->47864
/* 47859*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47861*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v8i16] } VRRC:{ *:[v4f32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v8i16] }:$src
/* 47864*/        /*SwitchType*/ 5, MVT::v4i32,// ->47871
/* 47866*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47868*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4i32] } VRRC:{ *:[v4f32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4i32] }:$src
/* 47871*/        /*SwitchType*/ 5, MVT::v1i128,// ->47878
/* 47873*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47875*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v1i128] } VRRC:{ *:[v4f32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v1i128] }:$src
/* 47878*/        /*SwitchType*/ 13, MVT::v2f64,// ->47893
/* 47880*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47882*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47885*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2f64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2f64] } v4f32:{ *:[v4f32] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } ?:{ *:[v4f32] }:$A, VSRC:{ *:[i32] })
/* 47893*/        0, // EndSwitchType
/* 47894*/      /*Scope*/ 71, /*->47966*/
/* 47895*/        OPC_CheckChild0Type, MVT::v4i32,
/* 47897*/        OPC_SwitchType /*6 cases */, 22, MVT::v2i64,// ->47922
/* 47900*/          OPC_Scope, 13, /*->47915*/ // 2 children in Scope
/* 47902*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47904*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47907*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v4i32] }:$A, VSRC:{ *:[i32] })
/* 47915*/          /*Scope*/ 5, /*->47921*/
/* 47916*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47918*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v2i64] } VRRC:{ *:[v4i32] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v2i64] }:$src
/* 47921*/          0, /*End of Scope*/
/* 47922*/        /*SwitchType*/ 5, MVT::v16i8,// ->47929
/* 47924*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47926*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v16i8] } VRRC:{ *:[v4i32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v16i8] }:$src
/* 47929*/        /*SwitchType*/ 5, MVT::v8i16,// ->47936
/* 47931*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47933*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v8i16] } VRRC:{ *:[v4i32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v8i16] }:$src
/* 47936*/        /*SwitchType*/ 5, MVT::v1i128,// ->47943
/* 47938*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47940*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v1i128] } VRRC:{ *:[v4i32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v1i128] }:$src
/* 47943*/        /*SwitchType*/ 13, MVT::v2f64,// ->47958
/* 47945*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47947*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47950*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2f64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2f64] } v4i32:{ *:[v4i32] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } ?:{ *:[v4i32] }:$A, VSRC:{ *:[i32] })
/* 47958*/        /*SwitchType*/ 5, MVT::v4f32,// ->47965
/* 47960*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47962*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4f32] } VRRC:{ *:[v4i32] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4f32] }:$src
/* 47965*/        0, // EndSwitchType
/* 47966*/      /*Scope*/ 71, /*->48038*/
/* 47967*/        OPC_CheckChild0Type, MVT::v8i16,
/* 47969*/        OPC_SwitchType /*6 cases */, 22, MVT::v2i64,// ->47994
/* 47972*/          OPC_Scope, 13, /*->47987*/ // 2 children in Scope
/* 47974*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 47976*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 47979*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v2i64] } v8i16:{ *:[v8i16] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v8i16] }:$A, VSRC:{ *:[i32] })
/* 47987*/          /*Scope*/ 5, /*->47993*/
/* 47988*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47990*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v2i64] } VRRC:{ *:[v8i16] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v2i64] }:$src
/* 47993*/          0, /*End of Scope*/
/* 47994*/        /*SwitchType*/ 5, MVT::v16i8,// ->48001
/* 47996*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 47998*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v16i8] } VRRC:{ *:[v8i16] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v16i8] }:$src
/* 48001*/        /*SwitchType*/ 5, MVT::v4i32,// ->48008
/* 48003*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48005*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4i32] } VRRC:{ *:[v8i16] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4i32] }:$src
/* 48008*/        /*SwitchType*/ 5, MVT::v1i128,// ->48015
/* 48010*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48012*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v1i128] } VRRC:{ *:[v8i16] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v1i128] }:$src
/* 48015*/        /*SwitchType*/ 13, MVT::v2f64,// ->48030
/* 48017*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48019*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 48022*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2f64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2f64] } v8i16:{ *:[v8i16] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } ?:{ *:[v8i16] }:$A, VSRC:{ *:[i32] })
/* 48030*/        /*SwitchType*/ 5, MVT::v4f32,// ->48037
/* 48032*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48034*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4f32] } VRRC:{ *:[v8i16] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4f32] }:$src
/* 48037*/        0, // EndSwitchType
/* 48038*/      /*Scope*/ 71, /*->48110*/
/* 48039*/        OPC_CheckChild0Type, MVT::v16i8,
/* 48041*/        OPC_SwitchType /*6 cases */, 22, MVT::v2i64,// ->48066
/* 48044*/          OPC_Scope, 13, /*->48059*/ // 2 children in Scope
/* 48046*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48048*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 48051*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v2i64, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v2i64] } v16i8:{ *:[v16i8] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[v16i8] }:$A, VSRC:{ *:[i32] })
/* 48059*/          /*Scope*/ 5, /*->48065*/
/* 48060*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48062*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v2i64] } VRRC:{ *:[v16i8] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v2i64] }:$src
/* 48065*/          0, /*End of Scope*/
/* 48066*/        /*SwitchType*/ 5, MVT::v8i16,// ->48073
/* 48068*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48070*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v8i16] } VRRC:{ *:[v16i8] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v8i16] }:$src
/* 48073*/        /*SwitchType*/ 5, MVT::v4i32,// ->48080
/* 48075*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48077*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4i32] } VRRC:{ *:[v16i8] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4i32] }:$src
/* 48080*/        /*SwitchType*/ 5, MVT::v1i128,// ->48087
/* 48082*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48084*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v1i128] } VRRC:{ *:[v16i8] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v1i128] }:$src
/* 48087*/        /*SwitchType*/ 13, MVT::v2f64,// ->48102
/* 48089*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48091*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 48094*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2f64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2f64] } v16i8:{ *:[v16i8] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } ?:{ *:[v16i8] }:$A, VSRC:{ *:[i32] })
/* 48102*/        /*SwitchType*/ 5, MVT::v4f32,// ->48109
/* 48104*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48106*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4f32] } VRRC:{ *:[v16i8] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4f32] }:$src
/* 48109*/        0, // EndSwitchType
/* 48110*/      /*Scope*/ 122, /*->48233*/
/* 48111*/        OPC_CheckChild0Type, MVT::v2i64,
/* 48113*/        OPC_SwitchType /*6 cases */, 22, MVT::v4i32,// ->48138
/* 48116*/          OPC_Scope, 13, /*->48131*/ // 2 children in Scope
/* 48118*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48120*/            OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48123*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v4i32] } v2i64:{ *:[v2i64] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v2i64] }:$A, VRRC:{ *:[i32] })
/* 48131*/          /*Scope*/ 5, /*->48137*/
/* 48132*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48134*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v4i32] } VRRC:{ *:[v2i64] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v4i32] }:$src
/* 48137*/          0, /*End of Scope*/
/* 48138*/        /*SwitchType*/ 22, MVT::v8i16,// ->48162
/* 48140*/          OPC_Scope, 13, /*->48155*/ // 2 children in Scope
/* 48142*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48144*/            OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48147*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v8i16, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v8i16] } v2i64:{ *:[v2i64] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } ?:{ *:[v2i64] }:$A, VRRC:{ *:[i32] })
/* 48155*/          /*Scope*/ 5, /*->48161*/
/* 48156*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48158*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v8i16] } VRRC:{ *:[v2i64] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v8i16] }:$src
/* 48161*/          0, /*End of Scope*/
/* 48162*/        /*SwitchType*/ 22, MVT::v16i8,// ->48186
/* 48164*/          OPC_Scope, 13, /*->48179*/ // 2 children in Scope
/* 48166*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48168*/            OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48171*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v16i8, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v16i8] } v2i64:{ *:[v2i64] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } ?:{ *:[v2i64] }:$A, VRRC:{ *:[i32] })
/* 48179*/          /*Scope*/ 5, /*->48185*/
/* 48180*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48182*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v16i8] } VRRC:{ *:[v2i64] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v16i8] }:$src
/* 48185*/          0, /*End of Scope*/
/* 48186*/        /*SwitchType*/ 5, MVT::v1i128,// ->48193
/* 48188*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48190*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v1i128] } VRRC:{ *:[v2i64] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v1i128] }:$src
/* 48193*/        /*SwitchType*/ 22, MVT::v4f32,// ->48217
/* 48195*/          OPC_Scope, 13, /*->48210*/ // 2 children in Scope
/* 48197*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48199*/            OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48202*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4f32, 2/*#Ops*/, 0, 1, 
                      // Src: (bitconvert:{ *:[v4f32] } v2i64:{ *:[v2i64] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v4f32] } ?:{ *:[v2i64] }:$A, VRRC:{ *:[i32] })
/* 48210*/          /*Scope*/ 5, /*->48216*/
/* 48211*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48213*/            OPC_CompleteMatch, 1, 0, 
                       // Src: (bitconvert:{ *:[v4f32] } VRRC:{ *:[v2i64] }:$src) - Complexity = 3
                       // Dst: VRRC:{ *:[v4f32] }:$src
/* 48216*/          0, /*End of Scope*/
/* 48217*/        /*SwitchType*/ 13, MVT::v2f64,// ->48232
/* 48219*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48221*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48224*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2f64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } ?:{ *:[v2i64] }:$A, VRRC:{ *:[i32] })
/* 48232*/        0, // EndSwitchType
/* 48233*/      /*Scope*/ 64, /*->48298*/
/* 48234*/        OPC_CheckChild0Type, MVT::f128,
/* 48236*/        OPC_SwitchType /*4 cases */, 13, MVT::v2i64,// ->48252
/* 48239*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48241*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48244*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2i64] } f128:{ *:[f128] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } ?:{ *:[f128] }:$A, VRRC:{ *:[i32] })
/* 48252*/        /*SwitchType*/ 13, MVT::v4i32,// ->48267
/* 48254*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48256*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48259*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v4i32] } f128:{ *:[f128] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f128] }:$A, VRRC:{ *:[i32] })
/* 48267*/        /*SwitchType*/ 13, MVT::v8i16,// ->48282
/* 48269*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48271*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48274*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v8i16, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v8i16] } f128:{ *:[f128] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } ?:{ *:[f128] }:$A, VRRC:{ *:[i32] })
/* 48282*/        /*SwitchType*/ 13, MVT::v16i8,// ->48297
/* 48284*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48286*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48289*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v16i8] } f128:{ *:[f128] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } ?:{ *:[f128] }:$A, VRRC:{ *:[i32] })
/* 48297*/        0, // EndSwitchType
/* 48298*/      /*Scope*/ 54, /*->48353*/
/* 48299*/        OPC_CheckChild0Type, MVT::v1i128,
/* 48301*/        OPC_SwitchType /*6 cases */, 5, MVT::v16i8,// ->48309
/* 48304*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48306*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v16i8] } VRRC:{ *:[v1i128] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v16i8] }:$src
/* 48309*/        /*SwitchType*/ 5, MVT::v8i16,// ->48316
/* 48311*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48313*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v8i16] } VRRC:{ *:[v1i128] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v8i16] }:$src
/* 48316*/        /*SwitchType*/ 5, MVT::v4i32,// ->48323
/* 48318*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48320*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4i32] } VRRC:{ *:[v1i128] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4i32] }:$src
/* 48323*/        /*SwitchType*/ 5, MVT::v2i64,// ->48330
/* 48325*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48327*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v2i64] } VRRC:{ *:[v1i128] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v2i64] }:$src
/* 48330*/        /*SwitchType*/ 13, MVT::v2f64,// ->48345
/* 48332*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48334*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 48337*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v2f64, 2/*#Ops*/, 0, 1, 
                    // Src: (bitconvert:{ *:[v2f64] } v1i128:{ *:[v1i128] }:$A) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } ?:{ *:[v1i128] }:$A, VRRC:{ *:[i32] })
/* 48345*/        /*SwitchType*/ 5, MVT::v4f32,// ->48352
/* 48347*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48349*/          OPC_CompleteMatch, 1, 0, 
                     // Src: (bitconvert:{ *:[v4f32] } VRRC:{ *:[v1i128] }:$src) - Complexity = 3
                     // Dst: VRRC:{ *:[v4f32] }:$src
/* 48352*/        0, // EndSwitchType
/* 48353*/      0, /*End of Scope*/
/* 48354*/    0, /*End of Scope*/
/* 48355*/  /*SwitchOpcode*/ 122, TARGET_VAL(ISD::FP_TO_SINT),// ->48480
/* 48358*/    OPC_RecordChild0, // #0 = $src
/* 48359*/    OPC_Scope, 51, /*->48412*/ // 5 children in Scope
/* 48361*/      OPC_CheckChild0Type, MVT::f128,
/* 48363*/      OPC_SwitchType /*2 cases */, 16, MVT::i64,// ->48382
/* 48366*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 48368*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPSDZ), 0,
                      MVT::v4i32, 1/*#Ops*/, 0,  // Results = #1
/* 48375*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVRD), 0,
                      MVT::i64, 1/*#Ops*/, 1, 
                  // Src: (fp_to_sint:{ *:[i64] } f128:{ *:[f128] }:$src) - Complexity = 403
                  // Dst: (MFVRD:{ *:[i64] } (XSCVQPSDZ:{ *:[v4i32] } ?:{ *:[f128] }:$src))
/* 48382*/      /*SwitchType*/ 27, MVT::i32,// ->48411
/* 48384*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 48386*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPSWZ), 0,
                      MVT::f128, 1/*#Ops*/, 0,  // Results = #1
/* 48393*/        OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 48396*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 48404*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                      MVT::i32, 1/*#Ops*/, 3, 
                  // Src: (fp_to_sint:{ *:[i32] } f128:{ *:[f128] }:$src) - Complexity = 403
                  // Dst: (MFVSRWZ:{ *:[i32] } (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPSWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }))
/* 48411*/      0, // EndSwitchType
/* 48412*/    /*Scope*/ 13, /*->48426*/
/* 48413*/      OPC_CheckChild0Type, MVT::f64,
/* 48415*/      OPC_CheckType, MVT::i32,
/* 48417*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 48419*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDCTSIZ), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (fp_to_sint:{ *:[i32] } f64:{ *:[f64] }:$RB) - Complexity = 3
                // Dst: (EFDCTSIZ:{ *:[i32] } f64:{ *:[f64] }:$RB)
/* 48426*/    /*Scope*/ 13, /*->48440*/
/* 48427*/      OPC_CheckChild0Type, MVT::f32,
/* 48429*/      OPC_CheckType, MVT::i32,
/* 48431*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 48433*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSCTSIZ), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (fp_to_sint:{ *:[i32] } f32:{ *:[f32] }:$RB) - Complexity = 3
                // Dst: (EFSCTSIZ:{ *:[i32] } f32:{ *:[f32] }:$RB)
/* 48440*/    /*Scope*/ 11, /*->48452*/
/* 48441*/      OPC_CheckType, MVT::v2i64,
/* 48443*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48445*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVDPSXDS), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (fp_to_sint:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVCVDPSXDS:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XB)
/* 48452*/    /*Scope*/ 26, /*->48479*/
/* 48453*/      OPC_CheckType, MVT::v4i32,
/* 48455*/      OPC_CheckChild0Type, MVT::v4f32,
/* 48457*/      OPC_Scope, 9, /*->48468*/ // 2 children in Scope
/* 48459*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48461*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPSXWS), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (fp_to_sint:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVCVSPSXWS:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XB)
/* 48468*/      /*Scope*/ 9, /*->48478*/
/* 48469*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48471*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTSXS_0), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (fp_to_sint:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$vA) - Complexity = 3
                  // Dst: (VCTSXS_0:{ *:[v4i32] } ?:{ *:[v4f32] }:$vA)
/* 48478*/      0, /*End of Scope*/
/* 48479*/    0, /*End of Scope*/
/* 48480*/  /*SwitchOpcode*/ 122, TARGET_VAL(ISD::FP_TO_UINT),// ->48605
/* 48483*/    OPC_RecordChild0, // #0 = $src
/* 48484*/    OPC_Scope, 51, /*->48537*/ // 5 children in Scope
/* 48486*/      OPC_CheckChild0Type, MVT::f128,
/* 48488*/      OPC_SwitchType /*2 cases */, 16, MVT::i64,// ->48507
/* 48491*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 48493*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPUDZ), 0,
                      MVT::v4i32, 1/*#Ops*/, 0,  // Results = #1
/* 48500*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVRD), 0,
                      MVT::i64, 1/*#Ops*/, 1, 
                  // Src: (fp_to_uint:{ *:[i64] } f128:{ *:[f128] }:$src) - Complexity = 403
                  // Dst: (MFVRD:{ *:[i64] } (XSCVQPUDZ:{ *:[v4i32] } ?:{ *:[f128] }:$src))
/* 48507*/      /*SwitchType*/ 27, MVT::i32,// ->48536
/* 48509*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 48511*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPUWZ), 0,
                      MVT::f128, 1/*#Ops*/, 0,  // Results = #1
/* 48518*/        OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 48521*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 48529*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSRWZ), 0,
                      MVT::i32, 1/*#Ops*/, 3, 
                  // Src: (fp_to_uint:{ *:[i32] } f128:{ *:[f128] }:$src) - Complexity = 403
                  // Dst: (MFVSRWZ:{ *:[i32] } (COPY_TO_REGCLASS:{ *:[f64] } (XSCVQPUWZ:{ *:[f128] } ?:{ *:[f128] }:$src), VFRC:{ *:[i32] }))
/* 48536*/      0, // EndSwitchType
/* 48537*/    /*Scope*/ 13, /*->48551*/
/* 48538*/      OPC_CheckChild0Type, MVT::f64,
/* 48540*/      OPC_CheckType, MVT::i32,
/* 48542*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 48544*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDCTUIZ), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (fp_to_uint:{ *:[i32] } f64:{ *:[f64] }:$RB) - Complexity = 3
                // Dst: (EFDCTUIZ:{ *:[i32] } f64:{ *:[f64] }:$RB)
/* 48551*/    /*Scope*/ 13, /*->48565*/
/* 48552*/      OPC_CheckChild0Type, MVT::f32,
/* 48554*/      OPC_CheckType, MVT::i32,
/* 48556*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 48558*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSCTUIZ), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (fp_to_uint:{ *:[i32] } f32:{ *:[f32] }:$RB) - Complexity = 3
                // Dst: (EFSCTUIZ:{ *:[i32] } f32:{ *:[f32] }:$RB)
/* 48565*/    /*Scope*/ 11, /*->48577*/
/* 48566*/      OPC_CheckType, MVT::v2i64,
/* 48568*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48570*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVDPUXDS), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (fp_to_uint:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVCVDPUXDS:{ *:[v2i64] } v2f64:{ *:[v2f64] }:$XB)
/* 48577*/    /*Scope*/ 26, /*->48604*/
/* 48578*/      OPC_CheckType, MVT::v4i32,
/* 48580*/      OPC_CheckChild0Type, MVT::v4f32,
/* 48582*/      OPC_Scope, 9, /*->48593*/ // 2 children in Scope
/* 48584*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 48586*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPUXWS), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (fp_to_uint:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVCVSPUXWS:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$XB)
/* 48593*/      /*Scope*/ 9, /*->48603*/
/* 48594*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 48596*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTUXS_0), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (fp_to_uint:{ *:[v4i32] } v4f32:{ *:[v4f32] }:$vA) - Complexity = 3
                  // Dst: (VCTUXS_0:{ *:[v4i32] } ?:{ *:[v4f32] }:$vA)
/* 48603*/      0, /*End of Scope*/
/* 48604*/    0, /*End of Scope*/
/* 48605*/  /*SwitchOpcode*/ 82, TARGET_VAL(ISD::PREFETCH),// ->48690
/* 48608*/    OPC_RecordMemRef,
/* 48609*/    OPC_RecordNode, // #0 = 'prefetch' chained node
/* 48610*/    OPC_RecordChild1, // #1 = $dst
/* 48611*/    OPC_Scope, 49, /*->48662*/ // 2 children in Scope
/* 48613*/      OPC_CheckChild2Integer, 0, 
/* 48615*/      OPC_CheckChild2Type, MVT::i32,
/* 48617*/      OPC_MoveChild3,
/* 48618*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 48621*/      OPC_MoveParent,
/* 48622*/      OPC_Scope, 17, /*->48641*/ // 2 children in Scope
/* 48624*/        OPC_CheckChild4Integer, 1, 
/* 48626*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/* 48629*/        OPC_EmitMergeInputChains1_0,
/* 48630*/        OPC_EmitInteger, MVT::i32, 0, 
/* 48633*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBT), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 4, 2, 3, 
                  // Src: (prefetch xoaddr:{ *:[iPTR] }:$dst, 0:{ *:[i32] }, (imm:{ *:[i32] }), 1:{ *:[i32] }) - Complexity = 25
                  // Dst: (DCBT 0:{ *:[i32] }, xoaddr:{ *:[iPTR] }:$dst)
/* 48641*/      /*Scope*/ 19, /*->48661*/
/* 48642*/        OPC_CheckChild4Integer, 0, 
/* 48644*/        OPC_CheckPatternPredicate, 38, // (PPCSubTarget->hasICBT())
/* 48646*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/* 48649*/        OPC_EmitMergeInputChains1_0,
/* 48650*/        OPC_EmitInteger, MVT::i32, 0, 
/* 48653*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::ICBT), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 4, 2, 3, 
                  // Src: (prefetch xoaddr:{ *:[iPTR] }:$dst, 0:{ *:[i32] }, (imm:{ *:[i32] }), 0:{ *:[i32] }) - Complexity = 25
                  // Dst: (ICBT 0:{ *:[i32] }, xoaddr:{ *:[iPTR] }:$dst)
/* 48661*/      0, /*End of Scope*/
/* 48662*/    /*Scope*/ 26, /*->48689*/
/* 48663*/      OPC_CheckChild2Integer, 1, 
/* 48665*/      OPC_CheckChild2Type, MVT::i32,
/* 48667*/      OPC_MoveChild3,
/* 48668*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 48671*/      OPC_MoveParent,
/* 48672*/      OPC_CheckChild4Integer, 1, 
/* 48674*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$dst #2 #3
/* 48677*/      OPC_EmitMergeInputChains1_0,
/* 48678*/      OPC_EmitInteger, MVT::i32, 0, 
/* 48681*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::DCBTST), 0|OPFL_Chain|OPFL_MemRefs,
                    3/*#Ops*/, 4, 2, 3, 
                // Src: (prefetch xoaddr:{ *:[iPTR] }:$dst, 1:{ *:[i32] }, (imm:{ *:[i32] }), 1:{ *:[i32] }) - Complexity = 25
                // Dst: (DCBTST 0:{ *:[i32] }, xoaddr:{ *:[iPTR] }:$dst)
/* 48689*/    0, /*End of Scope*/
/* 48690*/  /*SwitchOpcode*/ 70|128,29/*3782*/, TARGET_VAL(ISD::XOR),// ->52476
/* 48694*/    OPC_Scope, 42|128,6/*810*/, /*->49507*/ // 20 children in Scope
/* 48697*/      OPC_MoveChild0,
/* 48698*/      OPC_SwitchOpcode /*4 cases */, 117|128,4/*629*/, TARGET_VAL(ISD::SETCC),// ->49332
/* 48703*/        OPC_RecordChild0, // #0 = $s1
/* 48704*/        OPC_Scope, 54|128,2/*310*/, /*->49017*/ // 2 children in Scope
/* 48707*/          OPC_CheckChild0Type, MVT::i32,
/* 48709*/          OPC_RecordChild1, // #1 = $imm
/* 48710*/          OPC_MoveChild1,
/* 48711*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 48714*/          OPC_Scope, 40, /*->48756*/ // 6 children in Scope
/* 48716*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 48718*/            OPC_MoveParent,
/* 48719*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 48721*/            OPC_MoveParent,
/* 48722*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 48733*/            OPC_CheckType, MVT::i1,
/* 48735*/            OPC_EmitConvertToTarget, 1,
/* 48737*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 48745*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 48748*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] })
/* 48756*/          /*Scope*/ 40, /*->48797*/
/* 48757*/            OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 48759*/            OPC_MoveParent,
/* 48760*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 48762*/            OPC_MoveParent,
/* 48763*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 48774*/            OPC_CheckType, MVT::i1,
/* 48776*/            OPC_EmitConvertToTarget, 1,
/* 48778*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 48786*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 48789*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] })
/* 48797*/          /*Scope*/ 40, /*->48838*/
/* 48798*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 48800*/            OPC_MoveParent,
/* 48801*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 48803*/            OPC_MoveParent,
/* 48804*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 48815*/            OPC_CheckType, MVT::i1,
/* 48817*/            OPC_EmitConvertToTarget, 1,
/* 48819*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 48827*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 48830*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] })
/* 48838*/          /*Scope*/ 81, /*->48920*/
/* 48839*/            OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 48841*/            OPC_MoveParent,
/* 48842*/            OPC_Scope, 37, /*->48881*/ // 2 children in Scope
/* 48844*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 48846*/              OPC_MoveParent,
/* 48847*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 48858*/              OPC_CheckType, MVT::i1,
/* 48860*/              OPC_EmitConvertToTarget, 1,
/* 48862*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                            MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 48870*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 48873*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 3, 4, 
                        // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                        // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] })
/* 48881*/            /*Scope*/ 37, /*->48919*/
/* 48882*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 48884*/              OPC_MoveParent,
/* 48885*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 48896*/              OPC_CheckType, MVT::i1,
/* 48898*/              OPC_EmitConvertToTarget, 1,
/* 48900*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                            MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 48908*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 48911*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 3, 4, 
                        // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                        // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] })
/* 48919*/            0, /*End of Scope*/
/* 48920*/          /*Scope*/ 40, /*->48961*/
/* 48921*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 48923*/            OPC_MoveParent,
/* 48924*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 48926*/            OPC_MoveParent,
/* 48927*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 48938*/            OPC_CheckType, MVT::i1,
/* 48940*/            OPC_EmitConvertToTarget, 1,
/* 48942*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 48950*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 48953*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] })
/* 48961*/          /*Scope*/ 54, /*->49016*/
/* 48962*/            OPC_MoveParent,
/* 48963*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 48965*/            OPC_MoveParent,
/* 48966*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 48977*/            OPC_CheckType, MVT::i1,
/* 48979*/            OPC_EmitConvertToTarget, 1,
/* 48981*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 48984*/            OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 48992*/            OPC_EmitConvertToTarget, 1,
/* 48994*/            OPC_EmitNodeXForm, 1, 5, // LO16
/* 48997*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 49005*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 49008*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 14
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] })
/* 49016*/          0, /*End of Scope*/
/* 49017*/        /*Scope*/ 56|128,2/*312*/, /*->49331*/
/* 49019*/          OPC_CheckChild0Type, MVT::i64,
/* 49021*/          OPC_RecordChild1, // #1 = $imm
/* 49022*/          OPC_MoveChild1,
/* 49023*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 49026*/          OPC_Scope, 40, /*->49068*/ // 6 children in Scope
/* 49028*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 49030*/            OPC_MoveParent,
/* 49031*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 49033*/            OPC_MoveParent,
/* 49034*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49045*/            OPC_CheckType, MVT::i1,
/* 49047*/            OPC_EmitConvertToTarget, 1,
/* 49049*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 49057*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 49060*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] })
/* 49068*/          /*Scope*/ 40, /*->49109*/
/* 49069*/            OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 49071*/            OPC_MoveParent,
/* 49072*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 49074*/            OPC_MoveParent,
/* 49075*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49086*/            OPC_CheckType, MVT::i1,
/* 49088*/            OPC_EmitConvertToTarget, 1,
/* 49090*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 49098*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 49101*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] })
/* 49109*/          /*Scope*/ 40, /*->49150*/
/* 49110*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 49112*/            OPC_MoveParent,
/* 49113*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 49115*/            OPC_MoveParent,
/* 49116*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49127*/            OPC_CheckType, MVT::i1,
/* 49129*/            OPC_EmitConvertToTarget, 1,
/* 49131*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 49139*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 49142*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] })
/* 49150*/          /*Scope*/ 81, /*->49232*/
/* 49151*/            OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 49153*/            OPC_MoveParent,
/* 49154*/            OPC_Scope, 37, /*->49193*/ // 2 children in Scope
/* 49156*/              OPC_CheckChild2CondCode, ISD::SETLE,
/* 49158*/              OPC_MoveParent,
/* 49159*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49170*/              OPC_CheckType, MVT::i1,
/* 49172*/              OPC_EmitConvertToTarget, 1,
/* 49174*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                            MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 49182*/              OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 49185*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 3, 4, 
                        // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                        // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] })
/* 49193*/            /*Scope*/ 37, /*->49231*/
/* 49194*/              OPC_CheckChild2CondCode, ISD::SETNE,
/* 49196*/              OPC_MoveParent,
/* 49197*/              OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49208*/              OPC_CheckType, MVT::i1,
/* 49210*/              OPC_EmitConvertToTarget, 1,
/* 49212*/              OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                            MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 49220*/              OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 49223*/              OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::i1, 2/*#Ops*/, 3, 4, 
                        // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                        // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] })
/* 49231*/            0, /*End of Scope*/
/* 49232*/          /*Scope*/ 40, /*->49273*/
/* 49233*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 49235*/            OPC_MoveParent,
/* 49236*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 49238*/            OPC_MoveParent,
/* 49239*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49250*/            OPC_CheckType, MVT::i1,
/* 49252*/            OPC_EmitConvertToTarget, 1,
/* 49254*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 49262*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 49265*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] })
/* 49273*/          /*Scope*/ 56, /*->49330*/
/* 49274*/            OPC_CheckPredicate, 15, // Predicate_imm64ZExt32
/* 49276*/            OPC_MoveParent,
/* 49277*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 49279*/            OPC_MoveParent,
/* 49280*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49291*/            OPC_CheckType, MVT::i1,
/* 49293*/            OPC_EmitConvertToTarget, 1,
/* 49295*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 49298*/            OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 49306*/            OPC_EmitConvertToTarget, 1,
/* 49308*/            OPC_EmitNodeXForm, 1, 5, // LO16
/* 49311*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                          MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 49319*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 49322*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 15
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] })
/* 49330*/          0, /*End of Scope*/
/* 49331*/        0, /*End of Scope*/
/* 49332*/      /*SwitchOpcode*/ 46, TARGET_VAL(ISD::AND),// ->49381
/* 49335*/        OPC_RecordChild0, // #0 = $rS
/* 49336*/        OPC_RecordChild1, // #1 = $rB
/* 49337*/        OPC_MoveParent,
/* 49338*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49349*/        OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->49360
/* 49352*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::NAND), 0,
                        MVT::i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i32] } (and:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB), -1:{ *:[i32] }) - Complexity = 11
                    // Dst: (NAND:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 49360*/        /*SwitchType*/ 8, MVT::i1,// ->49370
/* 49362*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNAND), 0,
                        MVT::i1, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i1] } (and:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB), -1:{ *:[i1] }) - Complexity = 11
                    // Dst: (CRNAND:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 49370*/        /*SwitchType*/ 8, MVT::i64,// ->49380
/* 49372*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::NAND8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i64] } (and:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB), -1:{ *:[i64] }) - Complexity = 11
                    // Dst: (NAND8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 49380*/        0, // EndSwitchType
/* 49381*/      /*SwitchOpcode*/ 46, TARGET_VAL(ISD::OR),// ->49430
/* 49384*/        OPC_RecordChild0, // #0 = $rS
/* 49385*/        OPC_RecordChild1, // #1 = $rB
/* 49386*/        OPC_MoveParent,
/* 49387*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49398*/        OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->49409
/* 49401*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::NOR), 0,
                        MVT::i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i32] } (or:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB), -1:{ *:[i32] }) - Complexity = 11
                    // Dst: (NOR:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 49409*/        /*SwitchType*/ 8, MVT::i1,// ->49419
/* 49411*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i1] } (or:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB), -1:{ *:[i1] }) - Complexity = 11
                    // Dst: (CRNOR:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 49419*/        /*SwitchType*/ 8, MVT::i64,// ->49429
/* 49421*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::NOR8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i64] } (or:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB), -1:{ *:[i64] }) - Complexity = 11
                    // Dst: (NOR8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 49429*/        0, // EndSwitchType
/* 49430*/      /*SwitchOpcode*/ 73, TARGET_VAL(ISD::XOR),// ->49506
/* 49433*/        OPC_RecordChild0, // #0 = $rS
/* 49434*/        OPC_Scope, 45, /*->49481*/ // 2 children in Scope
/* 49436*/          OPC_RecordChild1, // #1 = $rB
/* 49437*/          OPC_MoveParent,
/* 49438*/          OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49449*/          OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->49460
/* 49452*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EQV), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1, 
                      // Src: (xor:{ *:[i32] } (xor:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB), -1:{ *:[i32] }) - Complexity = 11
                      // Dst: (EQV:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 49460*/          /*SwitchType*/ 8, MVT::i1,// ->49470
/* 49462*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::CREQV), 0,
                          MVT::i1, 2/*#Ops*/, 0, 1, 
                      // Src: (xor:{ *:[i1] } (xor:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (CREQV:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 49470*/          /*SwitchType*/ 8, MVT::i64,// ->49480
/* 49472*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EQV8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 1, 
                      // Src: (xor:{ *:[i64] } (xor:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB), -1:{ *:[i64] }) - Complexity = 11
                      // Dst: (EQV8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 49480*/          0, // EndSwitchType
/* 49481*/        /*Scope*/ 23, /*->49505*/
/* 49482*/          OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49493*/          OPC_MoveParent,
/* 49494*/          OPC_RecordChild1, // #1 = $rB
/* 49495*/          OPC_CheckType, MVT::i32,
/* 49497*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EQV), 0,
                        MVT::i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i32] } (xor:{ *:[i32] } i32:{ *:[i32] }:$rS, -1:{ *:[i32] }), i32:{ *:[i32] }:$rB) - Complexity = 11
                    // Dst: (EQV:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 49505*/        0, /*End of Scope*/
/* 49506*/      0, // EndSwitchOpcode
/* 49507*/    /*Scope*/ 28, /*->49536*/
/* 49508*/      OPC_RecordChild0, // #0 = $rB
/* 49509*/      OPC_MoveChild1,
/* 49510*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 49513*/      OPC_RecordChild0, // #1 = $rS
/* 49514*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49525*/      OPC_MoveParent,
/* 49526*/      OPC_CheckType, MVT::i32,
/* 49528*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EQV), 0,
                    MVT::i32, 2/*#Ops*/, 1, 0, 
                // Src: (xor:{ *:[i32] } i32:{ *:[i32] }:$rB, (xor:{ *:[i32] } i32:{ *:[i32] }:$rS, -1:{ *:[i32] })) - Complexity = 11
                // Dst: (EQV:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 49536*/    /*Scope*/ 28, /*->49565*/
/* 49537*/      OPC_MoveChild0,
/* 49538*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 49541*/      OPC_RecordChild0, // #0 = $CRA
/* 49542*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49553*/      OPC_MoveParent,
/* 49554*/      OPC_RecordChild1, // #1 = $CRB
/* 49555*/      OPC_CheckType, MVT::i1,
/* 49557*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1, 
                // Src: (xor:{ *:[i1] } (xor:{ *:[i1] } i1:{ *:[i1] }:$CRA, -1:{ *:[i1] }), i1:{ *:[i1] }:$CRB) - Complexity = 11
                // Dst: (CREQV:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 49565*/    /*Scope*/ 28, /*->49594*/
/* 49566*/      OPC_RecordChild0, // #0 = $CRB
/* 49567*/      OPC_MoveChild1,
/* 49568*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 49571*/      OPC_RecordChild0, // #1 = $CRA
/* 49572*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49583*/      OPC_MoveParent,
/* 49584*/      OPC_CheckType, MVT::i1,
/* 49586*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0, 
                // Src: (xor:{ *:[i1] } i1:{ *:[i1] }:$CRB, (xor:{ *:[i1] } i1:{ *:[i1] }:$CRA, -1:{ *:[i1] })) - Complexity = 11
                // Dst: (CREQV:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 49594*/    /*Scope*/ 28, /*->49623*/
/* 49595*/      OPC_MoveChild0,
/* 49596*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 49599*/      OPC_RecordChild0, // #0 = $rS
/* 49600*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49611*/      OPC_MoveParent,
/* 49612*/      OPC_RecordChild1, // #1 = $rB
/* 49613*/      OPC_CheckType, MVT::i64,
/* 49615*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EQV8), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (xor:{ *:[i64] } (xor:{ *:[i64] } i64:{ *:[i64] }:$rS, -1:{ *:[i64] }), i64:{ *:[i64] }:$rB) - Complexity = 11
                // Dst: (EQV8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 49623*/    /*Scope*/ 28, /*->49652*/
/* 49624*/      OPC_RecordChild0, // #0 = $rB
/* 49625*/      OPC_MoveChild1,
/* 49626*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 49629*/      OPC_RecordChild0, // #1 = $rS
/* 49630*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49641*/      OPC_MoveParent,
/* 49642*/      OPC_CheckType, MVT::i64,
/* 49644*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EQV8), 0,
                    MVT::i64, 2/*#Ops*/, 1, 0, 
                // Src: (xor:{ *:[i64] } i64:{ *:[i64] }:$rB, (xor:{ *:[i64] } i64:{ *:[i64] }:$rS, -1:{ *:[i64] })) - Complexity = 11
                // Dst: (EQV8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 49652*/    /*Scope*/ 49|128,13/*1713*/, /*->51367*/
/* 49654*/      OPC_MoveChild0,
/* 49655*/      OPC_SwitchOpcode /*2 cases */, 116|128,12/*1652*/, TARGET_VAL(ISD::SETCC),// ->51312
/* 49660*/        OPC_RecordChild0, // #0 = $s1
/* 49661*/        OPC_Scope, 57|128,1/*185*/, /*->49849*/ // 5 children in Scope
/* 49664*/          OPC_CheckChild0Type, MVT::i32,
/* 49666*/          OPC_RecordChild1, // #1 = $s2
/* 49667*/          OPC_Scope, 35, /*->49704*/ // 5 children in Scope
/* 49669*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 49671*/            OPC_MoveParent,
/* 49672*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49683*/            OPC_CheckType, MVT::i1,
/* 49685*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49693*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 49696*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] })
/* 49704*/          /*Scope*/ 35, /*->49740*/
/* 49705*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 49707*/            OPC_MoveParent,
/* 49708*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49719*/            OPC_CheckType, MVT::i1,
/* 49721*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49729*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 49732*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] })
/* 49740*/          /*Scope*/ 35, /*->49776*/
/* 49741*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 49743*/            OPC_MoveParent,
/* 49744*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49755*/            OPC_CheckType, MVT::i1,
/* 49757*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49765*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 49768*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] })
/* 49776*/          /*Scope*/ 35, /*->49812*/
/* 49777*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 49779*/            OPC_MoveParent,
/* 49780*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49791*/            OPC_CheckType, MVT::i1,
/* 49793*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49801*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 49804*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] })
/* 49812*/          /*Scope*/ 35, /*->49848*/
/* 49813*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 49815*/            OPC_MoveParent,
/* 49816*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49827*/            OPC_CheckType, MVT::i1,
/* 49829*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49837*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 49840*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] })
/* 49848*/          0, /*End of Scope*/
/* 49849*/        /*Scope*/ 57|128,1/*185*/, /*->50036*/
/* 49851*/          OPC_CheckChild0Type, MVT::i64,
/* 49853*/          OPC_RecordChild1, // #1 = $s2
/* 49854*/          OPC_Scope, 35, /*->49891*/ // 5 children in Scope
/* 49856*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 49858*/            OPC_MoveParent,
/* 49859*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49870*/            OPC_CheckType, MVT::i1,
/* 49872*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49880*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 49883*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] })
/* 49891*/          /*Scope*/ 35, /*->49927*/
/* 49892*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 49894*/            OPC_MoveParent,
/* 49895*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49906*/            OPC_CheckType, MVT::i1,
/* 49908*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49916*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 49919*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] })
/* 49927*/          /*Scope*/ 35, /*->49963*/
/* 49928*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 49930*/            OPC_MoveParent,
/* 49931*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49942*/            OPC_CheckType, MVT::i1,
/* 49944*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49952*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 49955*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] })
/* 49963*/          /*Scope*/ 35, /*->49999*/
/* 49964*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 49966*/            OPC_MoveParent,
/* 49967*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 49978*/            OPC_CheckType, MVT::i1,
/* 49980*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 49988*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 49991*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] })
/* 49999*/          /*Scope*/ 35, /*->50035*/
/* 50000*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 50002*/            OPC_MoveParent,
/* 50003*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50014*/            OPC_CheckType, MVT::i1,
/* 50016*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50024*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 50027*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] })
/* 50035*/          0, /*End of Scope*/
/* 50036*/        /*Scope*/ 115|128,3/*499*/, /*->50537*/
/* 50038*/          OPC_CheckChild0Type, MVT::f32,
/* 50040*/          OPC_RecordChild1, // #1 = $s2
/* 50041*/          OPC_Scope, 37, /*->50080*/ // 13 children in Scope
/* 50043*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 50045*/            OPC_MoveParent,
/* 50046*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50057*/            OPC_CheckType, MVT::i1,
/* 50059*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50061*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50069*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 50072*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] })
/* 50080*/          /*Scope*/ 37, /*->50118*/
/* 50081*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 50083*/            OPC_MoveParent,
/* 50084*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50095*/            OPC_CheckType, MVT::i1,
/* 50097*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50099*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50107*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 50110*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] })
/* 50118*/          /*Scope*/ 37, /*->50156*/
/* 50119*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 50121*/            OPC_MoveParent,
/* 50122*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50133*/            OPC_CheckType, MVT::i1,
/* 50135*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50137*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50145*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50148*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50156*/          /*Scope*/ 37, /*->50194*/
/* 50157*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 50159*/            OPC_MoveParent,
/* 50160*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50171*/            OPC_CheckType, MVT::i1,
/* 50173*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50175*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50183*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50186*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50194*/          /*Scope*/ 37, /*->50232*/
/* 50195*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 50197*/            OPC_MoveParent,
/* 50198*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50209*/            OPC_CheckType, MVT::i1,
/* 50211*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50213*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50221*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 50224*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] })
/* 50232*/          /*Scope*/ 37, /*->50270*/
/* 50233*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 50235*/            OPC_MoveParent,
/* 50236*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50247*/            OPC_CheckType, MVT::i1,
/* 50249*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50251*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50259*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 50262*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] })
/* 50270*/          /*Scope*/ 37, /*->50308*/
/* 50271*/            OPC_CheckChild2CondCode, ISD::SETO,
/* 50273*/            OPC_MoveParent,
/* 50274*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50285*/            OPC_CheckType, MVT::i1,
/* 50287*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50289*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50297*/            OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 50300*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] })
/* 50308*/          /*Scope*/ 37, /*->50346*/
/* 50309*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 50311*/            OPC_MoveParent,
/* 50312*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50323*/            OPC_CheckType, MVT::i1,
/* 50325*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50327*/            OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50335*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50338*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50346*/          /*Scope*/ 37, /*->50384*/
/* 50347*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 50349*/            OPC_MoveParent,
/* 50350*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50361*/            OPC_CheckType, MVT::i1,
/* 50363*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50365*/            OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50373*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50376*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50384*/          /*Scope*/ 37, /*->50422*/
/* 50385*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 50387*/            OPC_MoveParent,
/* 50388*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50399*/            OPC_CheckType, MVT::i1,
/* 50401*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50403*/            OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50411*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50414*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50422*/          /*Scope*/ 37, /*->50460*/
/* 50423*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 50425*/            OPC_MoveParent,
/* 50426*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50437*/            OPC_CheckType, MVT::i1,
/* 50439*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50441*/            OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50449*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50452*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50460*/          /*Scope*/ 37, /*->50498*/
/* 50461*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 50463*/            OPC_MoveParent,
/* 50464*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50475*/            OPC_CheckType, MVT::i1,
/* 50477*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50479*/            OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50487*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50490*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50498*/          /*Scope*/ 37, /*->50536*/
/* 50499*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 50501*/            OPC_MoveParent,
/* 50502*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50513*/            OPC_CheckType, MVT::i1,
/* 50515*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50517*/            OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50525*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50528*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 50536*/          0, /*End of Scope*/
/* 50537*/        /*Scope*/ 115|128,3/*499*/, /*->51038*/
/* 50539*/          OPC_CheckChild0Type, MVT::f64,
/* 50541*/          OPC_RecordChild1, // #1 = $s2
/* 50542*/          OPC_Scope, 37, /*->50581*/ // 13 children in Scope
/* 50544*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 50546*/            OPC_MoveParent,
/* 50547*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50558*/            OPC_CheckType, MVT::i1,
/* 50560*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50562*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50570*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 50573*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] })
/* 50581*/          /*Scope*/ 37, /*->50619*/
/* 50582*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 50584*/            OPC_MoveParent,
/* 50585*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50596*/            OPC_CheckType, MVT::i1,
/* 50598*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50600*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50608*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 50611*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] })
/* 50619*/          /*Scope*/ 37, /*->50657*/
/* 50620*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 50622*/            OPC_MoveParent,
/* 50623*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50634*/            OPC_CheckType, MVT::i1,
/* 50636*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50638*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50646*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50649*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 50657*/          /*Scope*/ 37, /*->50695*/
/* 50658*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 50660*/            OPC_MoveParent,
/* 50661*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50672*/            OPC_CheckType, MVT::i1,
/* 50674*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50676*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50684*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50687*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 50695*/          /*Scope*/ 37, /*->50733*/
/* 50696*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 50698*/            OPC_MoveParent,
/* 50699*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50710*/            OPC_CheckType, MVT::i1,
/* 50712*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50714*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50722*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 50725*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] })
/* 50733*/          /*Scope*/ 37, /*->50771*/
/* 50734*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 50736*/            OPC_MoveParent,
/* 50737*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50748*/            OPC_CheckType, MVT::i1,
/* 50750*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50752*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50760*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 50763*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] })
/* 50771*/          /*Scope*/ 37, /*->50809*/
/* 50772*/            OPC_CheckChild2CondCode, ISD::SETO,
/* 50774*/            OPC_MoveParent,
/* 50775*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50786*/            OPC_CheckType, MVT::i1,
/* 50788*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 50790*/            OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50798*/            OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 50801*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] })
/* 50809*/          /*Scope*/ 37, /*->50847*/
/* 50810*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 50812*/            OPC_MoveParent,
/* 50813*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50824*/            OPC_CheckType, MVT::i1,
/* 50826*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50828*/            OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50836*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50839*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 50847*/          /*Scope*/ 37, /*->50885*/
/* 50848*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 50850*/            OPC_MoveParent,
/* 50851*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50862*/            OPC_CheckType, MVT::i1,
/* 50864*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50866*/            OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50874*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50877*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 50885*/          /*Scope*/ 37, /*->50923*/
/* 50886*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 50888*/            OPC_MoveParent,
/* 50889*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50900*/            OPC_CheckType, MVT::i1,
/* 50902*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50904*/            OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50912*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50915*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 50923*/          /*Scope*/ 37, /*->50961*/
/* 50924*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 50926*/            OPC_MoveParent,
/* 50927*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50938*/            OPC_CheckType, MVT::i1,
/* 50940*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50942*/            OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50950*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50953*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 50961*/          /*Scope*/ 37, /*->50999*/
/* 50962*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 50964*/            OPC_MoveParent,
/* 50965*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 50976*/            OPC_CheckType, MVT::i1,
/* 50978*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 50980*/            OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 50988*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 50991*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 50999*/          /*Scope*/ 37, /*->51037*/
/* 51000*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 51002*/            OPC_MoveParent,
/* 51003*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51014*/            OPC_CheckType, MVT::i1,
/* 51016*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 51018*/            OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51026*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 51029*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 51037*/          0, /*End of Scope*/
/* 51038*/        /*Scope*/ 15|128,2/*271*/, /*->51311*/
/* 51040*/          OPC_CheckChild0Type, MVT::f128,
/* 51042*/          OPC_RecordChild1, // #1 = $s2
/* 51043*/          OPC_Scope, 37, /*->51082*/ // 7 children in Scope
/* 51045*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 51047*/            OPC_MoveParent,
/* 51048*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51059*/            OPC_CheckType, MVT::i1,
/* 51061*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 51063*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51071*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 51074*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] })
/* 51082*/          /*Scope*/ 37, /*->51120*/
/* 51083*/            OPC_CheckChild2CondCode, ISD::SETGE,
/* 51085*/            OPC_MoveParent,
/* 51086*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51097*/            OPC_CheckType, MVT::i1,
/* 51099*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 51101*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51109*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 51112*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] })
/* 51120*/          /*Scope*/ 37, /*->51158*/
/* 51121*/            OPC_CheckChild2CondCode, ISD::SETULE,
/* 51123*/            OPC_MoveParent,
/* 51124*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51135*/            OPC_CheckType, MVT::i1,
/* 51137*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 51139*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51147*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 51150*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] })
/* 51158*/          /*Scope*/ 37, /*->51196*/
/* 51159*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 51161*/            OPC_MoveParent,
/* 51162*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51173*/            OPC_CheckType, MVT::i1,
/* 51175*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 51177*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51185*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 51188*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] })
/* 51196*/          /*Scope*/ 37, /*->51234*/
/* 51197*/            OPC_CheckChild2CondCode, ISD::SETUNE,
/* 51199*/            OPC_MoveParent,
/* 51200*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51211*/            OPC_CheckType, MVT::i1,
/* 51213*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 51215*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51223*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 51226*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] })
/* 51234*/          /*Scope*/ 37, /*->51272*/
/* 51235*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 51237*/            OPC_MoveParent,
/* 51238*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51249*/            OPC_CheckType, MVT::i1,
/* 51251*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 51253*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51261*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 51264*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] })
/* 51272*/          /*Scope*/ 37, /*->51310*/
/* 51273*/            OPC_CheckChild2CondCode, ISD::SETO,
/* 51275*/            OPC_MoveParent,
/* 51276*/            OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51287*/            OPC_CheckType, MVT::i1,
/* 51289*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 51291*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 51299*/            OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 51302*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 2, 3, 
                      // Src: (xor:{ *:[i1] } (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] }), -1:{ *:[i1] }) - Complexity = 11
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] })
/* 51310*/          0, /*End of Scope*/
/* 51311*/        0, /*End of Scope*/
/* 51312*/      /*SwitchOpcode*/ 51, TARGET_VAL(ISD::TRUNCATE),// ->51366
/* 51315*/        OPC_RecordChild0, // #0 = $in
/* 51316*/        OPC_Scope, 23, /*->51341*/ // 2 children in Scope
/* 51318*/          OPC_CheckChild0Type, MVT::i32,
/* 51320*/          OPC_MoveParent,
/* 51321*/          OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51332*/          OPC_CheckType, MVT::i1,
/* 51334*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDIo_1_EQ_BIT), 0,
                        MVT::i1, 1/*#Ops*/, 0, 
                    // Src: (xor:{ *:[i1] } (trunc:{ *:[i1] } i32:{ *:[i32] }:$in), -1:{ *:[i1] }) - Complexity = 11
                    // Dst: (ANDIo_1_EQ_BIT:{ *:[i1] } ?:{ *:[i32] }:$in)
/* 51341*/        /*Scope*/ 23, /*->51365*/
/* 51342*/          OPC_CheckChild0Type, MVT::i64,
/* 51344*/          OPC_MoveParent,
/* 51345*/          OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51356*/          OPC_CheckType, MVT::i1,
/* 51358*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDIo_1_EQ_BIT8), 0,
                        MVT::i1, 1/*#Ops*/, 0, 
                    // Src: (xor:{ *:[i1] } (trunc:{ *:[i1] } i64:{ *:[i64] }:$in), -1:{ *:[i1] }) - Complexity = 11
                    // Dst: (ANDIo_1_EQ_BIT8:{ *:[i1] } ?:{ *:[i64] }:$in)
/* 51365*/        0, /*End of Scope*/
/* 51366*/      0, // EndSwitchOpcode
/* 51367*/    /*Scope*/ 70|128,1/*198*/, /*->51567*/
/* 51369*/      OPC_RecordChild0, // #0 = $in
/* 51370*/      OPC_Scope, 43, /*->51415*/ // 2 children in Scope
/* 51372*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 51383*/        OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->51394
/* 51386*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::NOR), 0,
                        MVT::i32, 2/*#Ops*/, 0, 0, 
                    // Src: (xor:{ *:[i32] } i32:{ *:[i32] }:$in, -1:{ *:[i32] }) - Complexity = 8
                    // Dst: (NOR:{ *:[i32] } ?:{ *:[i32] }:$in, ?:{ *:[i32] }:$in)
/* 51394*/        /*SwitchType*/ 8, MVT::i64,// ->51404
/* 51396*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::NOR8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 0, 
                    // Src: (xor:{ *:[i64] } i64:{ *:[i64] }:$in, -1:{ *:[i64] }) - Complexity = 8
                    // Dst: (NOR8:{ *:[i64] } ?:{ *:[i64] }:$in, ?:{ *:[i64] }:$in)
/* 51404*/        /*SwitchType*/ 8, MVT::i1,// ->51414
/* 51406*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 0, 0, 
                    // Src: (xor:{ *:[i1] } i1:{ *:[i1] }:$in, -1:{ *:[i1] }) - Complexity = 8
                    // Dst: (CRNOR:{ *:[i1] } ?:{ *:[i1] }:$in, ?:{ *:[i1] }:$in)
/* 51414*/        0, // EndSwitchType
/* 51415*/      /*Scope*/ 21|128,1/*149*/, /*->51566*/
/* 51417*/        OPC_RecordChild1, // #1 = $src2
/* 51418*/        OPC_Scope, 112, /*->51532*/ // 4 children in Scope
/* 51420*/          OPC_MoveChild1,
/* 51421*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 51424*/          OPC_Scope, 18, /*->51444*/ // 5 children in Scope
/* 51426*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 51428*/            OPC_MoveParent,
/* 51429*/            OPC_CheckType, MVT::i32,
/* 51431*/            OPC_EmitConvertToTarget, 1,
/* 51433*/            OPC_EmitNodeXForm, 1, 2, // LO16
/* 51436*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XORI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 3, 
                      // Src: (xor:{ *:[i32] } i32:{ *:[i32] }:$src1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$src2) - Complexity = 7
                      // Dst: (XORI:{ *:[i32] } i32:{ *:[i32] }:$src1, (LO16:{ *:[i32] } (imm:{ *:[i32] }):$src2))
/* 51444*/          /*Scope*/ 18, /*->51463*/
/* 51445*/            OPC_CheckPredicate, 17, // Predicate_imm16ShiftedZExt
/* 51447*/            OPC_MoveParent,
/* 51448*/            OPC_CheckType, MVT::i32,
/* 51450*/            OPC_EmitConvertToTarget, 1,
/* 51452*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 51455*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XORIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 3, 
                      // Src: (xor:{ *:[i32] } i32:{ *:[i32] }:$src1, (imm:{ *:[i32] })<<P:Predicate_imm16ShiftedZExt>><<X:HI16>>:$src2) - Complexity = 7
                      // Dst: (XORIS:{ *:[i32] } i32:{ *:[i32] }:$src1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$src2))
/* 51463*/          /*Scope*/ 18, /*->51482*/
/* 51464*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 51466*/            OPC_MoveParent,
/* 51467*/            OPC_CheckType, MVT::i64,
/* 51469*/            OPC_EmitConvertToTarget, 1,
/* 51471*/            OPC_EmitNodeXForm, 1, 2, // LO16
/* 51474*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XORI8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 3, 
                      // Src: (xor:{ *:[i64] } i64:{ *:[i64] }:$src1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$src2) - Complexity = 7
                      // Dst: (XORI8:{ *:[i64] } i64:{ *:[i64] }:$src1, (LO16:{ *:[i64] } (imm:{ *:[i64] }):$src2))
/* 51482*/          /*Scope*/ 18, /*->51501*/
/* 51483*/            OPC_CheckPredicate, 17, // Predicate_imm16ShiftedZExt
/* 51485*/            OPC_MoveParent,
/* 51486*/            OPC_CheckType, MVT::i64,
/* 51488*/            OPC_EmitConvertToTarget, 1,
/* 51490*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 51493*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XORIS8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 3, 
                      // Src: (xor:{ *:[i64] } i64:{ *:[i64] }:$src1, (imm:{ *:[i64] })<<P:Predicate_imm16ShiftedZExt>><<X:HI16>>:$src2) - Complexity = 7
                      // Dst: (XORIS8:{ *:[i64] } i64:{ *:[i64] }:$src1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$src2))
/* 51501*/          /*Scope*/ 29, /*->51531*/
/* 51502*/            OPC_MoveParent,
/* 51503*/            OPC_CheckType, MVT::i32,
/* 51505*/            OPC_EmitConvertToTarget, 1,
/* 51507*/            OPC_EmitNodeXForm, 1, 2, // LO16
/* 51510*/            OPC_EmitNode1, TARGET_VAL(PPC::XORI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 51518*/            OPC_EmitConvertToTarget, 1,
/* 51520*/            OPC_EmitNodeXForm, 0, 5, // HI16
/* 51523*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XORIS), 0,
                          MVT::i32, 2/*#Ops*/, 4, 6, 
                      // Src: (xor:{ *:[i32] } i32:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                      // Dst: (XORIS:{ *:[i32] } (XORI:{ *:[i32] } ?:{ *:[i32] }:$in, (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 51531*/          0, /*End of Scope*/
/* 51532*/        /*Scope*/ 10, /*->51543*/
/* 51533*/          OPC_CheckType, MVT::i32,
/* 51535*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XOR), 0,
                        MVT::i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                    // Dst: (XOR:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 51543*/        /*Scope*/ 10, /*->51554*/
/* 51544*/          OPC_CheckType, MVT::i1,
/* 51546*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRXOR), 0,
                        MVT::i1, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB) - Complexity = 3
                    // Dst: (CRXOR:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 51554*/        /*Scope*/ 10, /*->51565*/
/* 51555*/          OPC_CheckType, MVT::i64,
/* 51557*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XOR8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB) - Complexity = 3
                    // Dst: (XOR8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 51565*/        0, /*End of Scope*/
/* 51566*/      0, /*End of Scope*/
/* 51567*/    /*Scope*/ 64|128,1/*192*/, /*->51761*/
/* 51569*/      OPC_MoveChild0,
/* 51570*/      OPC_SwitchOpcode /*4 cases */, 25, TARGET_VAL(ISD::OR),// ->51599
/* 51574*/        OPC_RecordChild0, // #0 = $XA
/* 51575*/        OPC_RecordChild1, // #1 = $XB
/* 51576*/        OPC_MoveParent,
/* 51577*/        OPC_MoveChild1,
/* 51578*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51581*/        OPC_MoveChild0,
/* 51582*/        OPC_CheckImmAllOnesV,
/* 51583*/        OPC_CheckType, MVT::v16i8,
/* 51585*/        OPC_MoveParent,
/* 51586*/        OPC_MoveParent,
/* 51587*/        OPC_CheckType, MVT::v4i32,
/* 51589*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 51591*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLNOR), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (xor:{ *:[v4i32] } (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB), (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 413
                  // Dst: (XXLNOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51599*/      /*SwitchOpcode*/ 82, TARGET_VAL(ISD::XOR),// ->51684
/* 51602*/        OPC_Scope, 53, /*->51657*/ // 2 children in Scope
/* 51604*/          OPC_RecordChild0, // #0 = $XA
/* 51605*/          OPC_Scope, 24, /*->51631*/ // 2 children in Scope
/* 51607*/            OPC_RecordChild1, // #1 = $XB
/* 51608*/            OPC_MoveParent,
/* 51609*/            OPC_MoveChild1,
/* 51610*/            OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51613*/            OPC_MoveChild0,
/* 51614*/            OPC_CheckImmAllOnesV,
/* 51615*/            OPC_CheckType, MVT::v16i8,
/* 51617*/            OPC_MoveParent,
/* 51618*/            OPC_MoveParent,
/* 51619*/            OPC_CheckType, MVT::v4i32,
/* 51621*/            OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51623*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQV), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1, 
                      // Src: (xor:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB), (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 413
                      // Dst: (XXLEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51631*/          /*Scope*/ 24, /*->51656*/
/* 51632*/            OPC_MoveChild1,
/* 51633*/            OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51636*/            OPC_MoveChild0,
/* 51637*/            OPC_CheckImmAllOnesV,
/* 51638*/            OPC_CheckType, MVT::v16i8,
/* 51640*/            OPC_MoveParent,
/* 51641*/            OPC_MoveParent,
/* 51642*/            OPC_MoveParent,
/* 51643*/            OPC_RecordChild1, // #1 = $XB
/* 51644*/            OPC_CheckType, MVT::v4i32,
/* 51646*/            OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51648*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQV), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1, 
                      // Src: (xor:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$XB) - Complexity = 413
                      // Dst: (XXLEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51656*/          0, /*End of Scope*/
/* 51657*/        /*Scope*/ 25, /*->51683*/
/* 51658*/          OPC_MoveChild0,
/* 51659*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51662*/          OPC_MoveChild0,
/* 51663*/          OPC_CheckImmAllOnesV,
/* 51664*/          OPC_CheckType, MVT::v16i8,
/* 51666*/          OPC_MoveParent,
/* 51667*/          OPC_MoveParent,
/* 51668*/          OPC_RecordChild1, // #0 = $XA
/* 51669*/          OPC_MoveParent,
/* 51670*/          OPC_RecordChild1, // #1 = $XB
/* 51671*/          OPC_CheckType, MVT::v4i32,
/* 51673*/          OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51675*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQV), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$XA), v4i32:{ *:[v4i32] }:$XB) - Complexity = 413
                    // Dst: (XXLEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51683*/        0, /*End of Scope*/
/* 51684*/      /*SwitchOpcode*/ 25, TARGET_VAL(ISD::AND),// ->51712
/* 51687*/        OPC_RecordChild0, // #0 = $XA
/* 51688*/        OPC_RecordChild1, // #1 = $XB
/* 51689*/        OPC_MoveParent,
/* 51690*/        OPC_MoveChild1,
/* 51691*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51694*/        OPC_MoveChild0,
/* 51695*/        OPC_CheckImmAllOnesV,
/* 51696*/        OPC_CheckType, MVT::v16i8,
/* 51698*/        OPC_MoveParent,
/* 51699*/        OPC_MoveParent,
/* 51700*/        OPC_CheckType, MVT::v4i32,
/* 51702*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51704*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLNAND), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (xor:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB), (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 413
                  // Dst: (XXLNAND:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51712*/      /*SwitchOpcode*/ 45, TARGET_VAL(ISD::BITCAST),// ->51760
/* 51715*/        OPC_MoveChild0,
/* 51716*/        OPC_CheckImmAllOnesV,
/* 51717*/        OPC_CheckType, MVT::v16i8,
/* 51719*/        OPC_MoveParent,
/* 51720*/        OPC_MoveParent,
/* 51721*/        OPC_MoveChild1,
/* 51722*/        OPC_SwitchOpcode /*2 cases */, 15, TARGET_VAL(ISD::OR),// ->51741
/* 51726*/          OPC_RecordChild0, // #0 = $XA
/* 51727*/          OPC_RecordChild1, // #1 = $XB
/* 51728*/          OPC_MoveParent,
/* 51729*/          OPC_CheckType, MVT::v4i32,
/* 51731*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 51733*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLNOR), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)) - Complexity = 413
                    // Dst: (XXLNOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51741*/        /*SwitchOpcode*/ 15, TARGET_VAL(ISD::XOR),// ->51759
/* 51744*/          OPC_RecordChild0, // #0 = $XA
/* 51745*/          OPC_RecordChild1, // #1 = $XB
/* 51746*/          OPC_MoveParent,
/* 51747*/          OPC_CheckType, MVT::v4i32,
/* 51749*/          OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51751*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQV), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)) - Complexity = 413
                    // Dst: (XXLEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51759*/        0, // EndSwitchOpcode
/* 51760*/      0, // EndSwitchOpcode
/* 51761*/    /*Scope*/ 57, /*->51819*/
/* 51762*/      OPC_RecordChild0, // #0 = $XB
/* 51763*/      OPC_MoveChild1,
/* 51764*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 51767*/      OPC_Scope, 24, /*->51793*/ // 2 children in Scope
/* 51769*/        OPC_RecordChild0, // #1 = $XA
/* 51770*/        OPC_MoveChild1,
/* 51771*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51774*/        OPC_MoveChild0,
/* 51775*/        OPC_CheckImmAllOnesV,
/* 51776*/        OPC_CheckType, MVT::v16i8,
/* 51778*/        OPC_MoveParent,
/* 51779*/        OPC_MoveParent,
/* 51780*/        OPC_MoveParent,
/* 51781*/        OPC_CheckType, MVT::v4i32,
/* 51783*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51785*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQV), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))) - Complexity = 413
                  // Dst: (XXLEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51793*/      /*Scope*/ 24, /*->51818*/
/* 51794*/        OPC_MoveChild0,
/* 51795*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51798*/        OPC_MoveChild0,
/* 51799*/        OPC_CheckImmAllOnesV,
/* 51800*/        OPC_CheckType, MVT::v16i8,
/* 51802*/        OPC_MoveParent,
/* 51803*/        OPC_MoveParent,
/* 51804*/        OPC_RecordChild1, // #1 = $XA
/* 51805*/        OPC_MoveParent,
/* 51806*/        OPC_CheckType, MVT::v4i32,
/* 51808*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51810*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLEQV), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$XA)) - Complexity = 413
                  // Dst: (XXLEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51818*/      0, /*End of Scope*/
/* 51819*/    /*Scope*/ 29, /*->51849*/
/* 51820*/      OPC_MoveChild0,
/* 51821*/      OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51824*/      OPC_MoveChild0,
/* 51825*/      OPC_CheckImmAllOnesV,
/* 51826*/      OPC_CheckType, MVT::v16i8,
/* 51828*/      OPC_MoveParent,
/* 51829*/      OPC_MoveParent,
/* 51830*/      OPC_MoveChild1,
/* 51831*/      OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 51834*/      OPC_RecordChild0, // #0 = $XA
/* 51835*/      OPC_RecordChild1, // #1 = $XB
/* 51836*/      OPC_MoveParent,
/* 51837*/      OPC_CheckType, MVT::v4i32,
/* 51839*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 51841*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLNAND), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)) - Complexity = 413
                // Dst: (XXLNAND:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51849*/    /*Scope*/ 23, /*->51873*/
/* 51850*/      OPC_RecordChild0, // #0 = $A
/* 51851*/      OPC_MoveChild1,
/* 51852*/      OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51855*/      OPC_MoveChild0,
/* 51856*/      OPC_CheckImmAllOnesV,
/* 51857*/      OPC_CheckType, MVT::v16i8,
/* 51859*/      OPC_MoveParent,
/* 51860*/      OPC_MoveParent,
/* 51861*/      OPC_CheckType, MVT::v4i32,
/* 51863*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 51865*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLNOR), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 0, 
                // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 410
                // Dst: (XXLNOR:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A)
/* 51873*/    /*Scope*/ 23, /*->51897*/
/* 51874*/      OPC_MoveChild0,
/* 51875*/      OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51878*/      OPC_MoveChild0,
/* 51879*/      OPC_CheckImmAllOnesV,
/* 51880*/      OPC_CheckType, MVT::v16i8,
/* 51882*/      OPC_MoveParent,
/* 51883*/      OPC_MoveParent,
/* 51884*/      OPC_RecordChild1, // #0 = $A
/* 51885*/      OPC_CheckType, MVT::v4i32,
/* 51887*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 51889*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLNOR), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 0, 
                // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$A) - Complexity = 410
                // Dst: (XXLNOR:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$A)
/* 51897*/    /*Scope*/ 14, /*->51912*/
/* 51898*/      OPC_RecordChild0, // #0 = $XA
/* 51899*/      OPC_RecordChild1, // #1 = $XB
/* 51900*/      OPC_CheckType, MVT::v4i32,
/* 51902*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 51904*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLXOR), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB) - Complexity = 403
                // Dst: (XXLXOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 51912*/    /*Scope*/ 64|128,1/*192*/, /*->52106*/
/* 51914*/      OPC_MoveChild0,
/* 51915*/      OPC_SwitchOpcode /*4 cases */, 25, TARGET_VAL(ISD::OR),// ->51944
/* 51919*/        OPC_RecordChild0, // #0 = $vA
/* 51920*/        OPC_RecordChild1, // #1 = $vB
/* 51921*/        OPC_MoveParent,
/* 51922*/        OPC_MoveChild1,
/* 51923*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51926*/        OPC_MoveChild0,
/* 51927*/        OPC_CheckImmAllOnesV,
/* 51928*/        OPC_CheckType, MVT::v16i8,
/* 51930*/        OPC_MoveParent,
/* 51931*/        OPC_MoveParent,
/* 51932*/        OPC_CheckType, MVT::v4i32,
/* 51934*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 51936*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VNOR), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (xor:{ *:[v4i32] } (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB), (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 13
                  // Dst: (VNOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 51944*/      /*SwitchOpcode*/ 82, TARGET_VAL(ISD::XOR),// ->52029
/* 51947*/        OPC_Scope, 53, /*->52002*/ // 2 children in Scope
/* 51949*/          OPC_RecordChild0, // #0 = $vA
/* 51950*/          OPC_Scope, 24, /*->51976*/ // 2 children in Scope
/* 51952*/            OPC_RecordChild1, // #1 = $vB
/* 51953*/            OPC_MoveParent,
/* 51954*/            OPC_MoveChild1,
/* 51955*/            OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51958*/            OPC_MoveChild0,
/* 51959*/            OPC_CheckImmAllOnesV,
/* 51960*/            OPC_CheckType, MVT::v16i8,
/* 51962*/            OPC_MoveParent,
/* 51963*/            OPC_MoveParent,
/* 51964*/            OPC_CheckType, MVT::v4i32,
/* 51966*/            OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 51968*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEQV), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1, 
                      // Src: (xor:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB), (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 13
                      // Dst: (VEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 51976*/          /*Scope*/ 24, /*->52001*/
/* 51977*/            OPC_MoveChild1,
/* 51978*/            OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 51981*/            OPC_MoveChild0,
/* 51982*/            OPC_CheckImmAllOnesV,
/* 51983*/            OPC_CheckType, MVT::v16i8,
/* 51985*/            OPC_MoveParent,
/* 51986*/            OPC_MoveParent,
/* 51987*/            OPC_MoveParent,
/* 51988*/            OPC_RecordChild1, // #1 = $vB
/* 51989*/            OPC_CheckType, MVT::v4i32,
/* 51991*/            OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 51993*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VEQV), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1, 
                      // Src: (xor:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$vB) - Complexity = 13
                      // Dst: (VEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52001*/          0, /*End of Scope*/
/* 52002*/        /*Scope*/ 25, /*->52028*/
/* 52003*/          OPC_MoveChild0,
/* 52004*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 52007*/          OPC_MoveChild0,
/* 52008*/          OPC_CheckImmAllOnesV,
/* 52009*/          OPC_CheckType, MVT::v16i8,
/* 52011*/          OPC_MoveParent,
/* 52012*/          OPC_MoveParent,
/* 52013*/          OPC_RecordChild1, // #0 = $vA
/* 52014*/          OPC_MoveParent,
/* 52015*/          OPC_RecordChild1, // #1 = $vB
/* 52016*/          OPC_CheckType, MVT::v4i32,
/* 52018*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 52020*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VEQV), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$vA), v4i32:{ *:[v4i32] }:$vB) - Complexity = 13
                    // Dst: (VEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52028*/        0, /*End of Scope*/
/* 52029*/      /*SwitchOpcode*/ 25, TARGET_VAL(ISD::AND),// ->52057
/* 52032*/        OPC_RecordChild0, // #0 = $vA
/* 52033*/        OPC_RecordChild1, // #1 = $vB
/* 52034*/        OPC_MoveParent,
/* 52035*/        OPC_MoveChild1,
/* 52036*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 52039*/        OPC_MoveChild0,
/* 52040*/        OPC_CheckImmAllOnesV,
/* 52041*/        OPC_CheckType, MVT::v16i8,
/* 52043*/        OPC_MoveParent,
/* 52044*/        OPC_MoveParent,
/* 52045*/        OPC_CheckType, MVT::v4i32,
/* 52047*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 52049*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VNAND), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (xor:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB), (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 13
                  // Dst: (VNAND:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52057*/      /*SwitchOpcode*/ 45, TARGET_VAL(ISD::BITCAST),// ->52105
/* 52060*/        OPC_MoveChild0,
/* 52061*/        OPC_CheckImmAllOnesV,
/* 52062*/        OPC_CheckType, MVT::v16i8,
/* 52064*/        OPC_MoveParent,
/* 52065*/        OPC_MoveParent,
/* 52066*/        OPC_MoveChild1,
/* 52067*/        OPC_SwitchOpcode /*2 cases */, 15, TARGET_VAL(ISD::OR),// ->52086
/* 52071*/          OPC_RecordChild0, // #0 = $vA
/* 52072*/          OPC_RecordChild1, // #1 = $vB
/* 52073*/          OPC_MoveParent,
/* 52074*/          OPC_CheckType, MVT::v4i32,
/* 52076*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 52078*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VNOR), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)) - Complexity = 13
                    // Dst: (VNOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52086*/        /*SwitchOpcode*/ 15, TARGET_VAL(ISD::XOR),// ->52104
/* 52089*/          OPC_RecordChild0, // #0 = $vA
/* 52090*/          OPC_RecordChild1, // #1 = $vB
/* 52091*/          OPC_MoveParent,
/* 52092*/          OPC_CheckType, MVT::v4i32,
/* 52094*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 52096*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VEQV), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)) - Complexity = 13
                    // Dst: (VEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52104*/        0, // EndSwitchOpcode
/* 52105*/      0, // EndSwitchOpcode
/* 52106*/    /*Scope*/ 57, /*->52164*/
/* 52107*/      OPC_RecordChild0, // #0 = $vB
/* 52108*/      OPC_MoveChild1,
/* 52109*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 52112*/      OPC_Scope, 24, /*->52138*/ // 2 children in Scope
/* 52114*/        OPC_RecordChild0, // #1 = $vA
/* 52115*/        OPC_MoveChild1,
/* 52116*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 52119*/        OPC_MoveChild0,
/* 52120*/        OPC_CheckImmAllOnesV,
/* 52121*/        OPC_CheckType, MVT::v16i8,
/* 52123*/        OPC_MoveParent,
/* 52124*/        OPC_MoveParent,
/* 52125*/        OPC_MoveParent,
/* 52126*/        OPC_CheckType, MVT::v4i32,
/* 52128*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 52130*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VEQV), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))) - Complexity = 13
                  // Dst: (VEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52138*/      /*Scope*/ 24, /*->52163*/
/* 52139*/        OPC_MoveChild0,
/* 52140*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 52143*/        OPC_MoveChild0,
/* 52144*/        OPC_CheckImmAllOnesV,
/* 52145*/        OPC_CheckType, MVT::v16i8,
/* 52147*/        OPC_MoveParent,
/* 52148*/        OPC_MoveParent,
/* 52149*/        OPC_RecordChild1, // #1 = $vA
/* 52150*/        OPC_MoveParent,
/* 52151*/        OPC_CheckType, MVT::v4i32,
/* 52153*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 52155*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VEQV), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$vA)) - Complexity = 13
                  // Dst: (VEQV:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52163*/      0, /*End of Scope*/
/* 52164*/    /*Scope*/ 35|128,1/*163*/, /*->52329*/
/* 52166*/      OPC_MoveChild0,
/* 52167*/      OPC_SwitchOpcode /*4 cases */, 25, TARGET_VAL(ISD::BITCAST),// ->52196
/* 52171*/        OPC_MoveChild0,
/* 52172*/        OPC_CheckImmAllOnesV,
/* 52173*/        OPC_CheckType, MVT::v16i8,
/* 52175*/        OPC_MoveParent,
/* 52176*/        OPC_MoveParent,
/* 52177*/        OPC_MoveChild1,
/* 52178*/        OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 52181*/        OPC_RecordChild0, // #0 = $vA
/* 52182*/        OPC_RecordChild1, // #1 = $vB
/* 52183*/        OPC_MoveParent,
/* 52184*/        OPC_CheckType, MVT::v4i32,
/* 52186*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 52188*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VNAND), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)) - Complexity = 13
                  // Dst: (VNAND:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52196*/      /*SwitchOpcode*/ 30, TARGET_VAL(ISD::OR),// ->52229
/* 52199*/        OPC_RecordChild0, // #0 = $FRA
/* 52200*/        OPC_RecordChild1, // #1 = $FRB
/* 52201*/        OPC_MoveParent,
/* 52202*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 52213*/        OPC_CheckType, MVT::v4i1,
/* 52215*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 52217*/        OPC_EmitInteger, MVT::i32, 8, 
/* 52220*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (xor:{ *:[v4i1] } (or:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB), -1:{ *:[v4i1] }) - Complexity = 11
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 8:{ *:[i32] })
/* 52229*/      /*SwitchOpcode*/ 63, TARGET_VAL(ISD::XOR),// ->52295
/* 52232*/        OPC_RecordChild0, // #0 = $FRA
/* 52233*/        OPC_Scope, 29, /*->52264*/ // 2 children in Scope
/* 52235*/          OPC_RecordChild1, // #1 = $FRB
/* 52236*/          OPC_MoveParent,
/* 52237*/          OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 52248*/          OPC_CheckType, MVT::v4i1,
/* 52250*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 52252*/          OPC_EmitInteger, MVT::i32, 9, 
/* 52255*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                        MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                    // Src: (xor:{ *:[v4i1] } (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB), -1:{ *:[v4i1] }) - Complexity = 11
                    // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 9:{ *:[i32] })
/* 52264*/        /*Scope*/ 29, /*->52294*/
/* 52265*/          OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 52276*/          OPC_MoveParent,
/* 52277*/          OPC_RecordChild1, // #1 = $FRB
/* 52278*/          OPC_CheckType, MVT::v4i1,
/* 52280*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 52282*/          OPC_EmitInteger, MVT::i32, 9, 
/* 52285*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                        MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                    // Src: (xor:{ *:[v4i1] } (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, -1:{ *:[v4i1] }), v4i1:{ *:[v4i1] }:$FRB) - Complexity = 11
                    // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 9:{ *:[i32] })
/* 52294*/        0, /*End of Scope*/
/* 52295*/      /*SwitchOpcode*/ 30, TARGET_VAL(ISD::AND),// ->52328
/* 52298*/        OPC_RecordChild0, // #0 = $FRA
/* 52299*/        OPC_RecordChild1, // #1 = $FRB
/* 52300*/        OPC_MoveParent,
/* 52301*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 52312*/        OPC_CheckType, MVT::v4i1,
/* 52314*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 52316*/        OPC_EmitInteger, MVT::i32, 14, 
/* 52319*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (xor:{ *:[v4i1] } (and:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB), -1:{ *:[v4i1] }) - Complexity = 11
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 14:{ *:[i32] })
/* 52328*/      0, // EndSwitchOpcode
/* 52329*/    /*Scope*/ 57, /*->52387*/
/* 52330*/      OPC_RecordChild0, // #0 = $FRB
/* 52331*/      OPC_MoveChild1,
/* 52332*/      OPC_SwitchOpcode /*2 cases */, 29, TARGET_VAL(ISD::XOR),// ->52365
/* 52336*/        OPC_RecordChild0, // #1 = $FRA
/* 52337*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 52348*/        OPC_MoveParent,
/* 52349*/        OPC_CheckType, MVT::v4i1,
/* 52351*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 52353*/        OPC_EmitInteger, MVT::i32, 9, 
/* 52356*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 1, 0, 2, 
                  // Src: (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRB, (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, -1:{ *:[v4i1] })) - Complexity = 11
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 9:{ *:[i32] })
/* 52365*/      /*SwitchOpcode*/ 18, TARGET_VAL(ISD::BITCAST),// ->52386
/* 52368*/        OPC_MoveChild0,
/* 52369*/        OPC_CheckImmAllOnesV,
/* 52370*/        OPC_CheckType, MVT::v16i8,
/* 52372*/        OPC_MoveParent,
/* 52373*/        OPC_MoveParent,
/* 52374*/        OPC_CheckType, MVT::v4i32,
/* 52376*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 52378*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VNOR), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 0, 
                  // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })) - Complexity = 10
                  // Dst: (VNOR:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vA)
/* 52386*/      0, // EndSwitchOpcode
/* 52387*/    /*Scope*/ 23, /*->52411*/
/* 52388*/      OPC_MoveChild0,
/* 52389*/      OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 52392*/      OPC_MoveChild0,
/* 52393*/      OPC_CheckImmAllOnesV,
/* 52394*/      OPC_CheckType, MVT::v16i8,
/* 52396*/      OPC_MoveParent,
/* 52397*/      OPC_MoveParent,
/* 52398*/      OPC_RecordChild1, // #0 = $vA
/* 52399*/      OPC_CheckType, MVT::v4i32,
/* 52401*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 52403*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VNOR), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 0, 
                // Src: (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$vA) - Complexity = 10
                // Dst: (VNOR:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vA)
/* 52411*/    /*Scope*/ 63, /*->52475*/
/* 52412*/      OPC_RecordChild0, // #0 = $FRA
/* 52413*/      OPC_Scope, 27, /*->52442*/ // 2 children in Scope
/* 52415*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 52426*/        OPC_CheckType, MVT::v4i1,
/* 52428*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 52430*/        OPC_EmitInteger, MVT::i32, 10, 
/* 52433*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 0, 0, 1, 
                  // Src: (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, -1:{ *:[v4i1] }) - Complexity = 8
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRA, 10:{ *:[i32] })
/* 52442*/      /*Scope*/ 31, /*->52474*/
/* 52443*/        OPC_RecordChild1, // #1 = $vB
/* 52444*/        OPC_SwitchType /*2 cases */, 10, MVT::v4i32,// ->52457
/* 52447*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 52449*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VXOR), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                    // Dst: (VXOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 52457*/        /*SwitchType*/ 14, MVT::v4i1,// ->52473
/* 52459*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 52461*/          OPC_EmitInteger, MVT::i32, 6, 
/* 52464*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                        MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                    // Src: (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB) - Complexity = 3
                    // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 6:{ *:[i32] })
/* 52473*/        0, // EndSwitchType
/* 52474*/      0, /*End of Scope*/
/* 52475*/    0, /*End of Scope*/
/* 52476*/  /*SwitchOpcode*/ 24|128,5/*664*/, TARGET_VAL(ISD::ADD),// ->53144
/* 52480*/    OPC_Scope, 21|128,1/*149*/, /*->52632*/ // 3 children in Scope
/* 52483*/      OPC_RecordChild0, // #0 = $rA
/* 52484*/      OPC_MoveChild1,
/* 52485*/      OPC_SwitchOpcode /*2 cases */, 19, TARGET_VAL(PPCISD::Lo),// ->52508
/* 52489*/        OPC_RecordChild0, // #1 = $sym
/* 52490*/        OPC_MoveChild0,
/* 52491*/        OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalAddress),
/* 52494*/        OPC_MoveParent,
/* 52495*/        OPC_CheckChild1Integer, 0, 
/* 52497*/        OPC_MoveParent,
/* 52498*/        OPC_CheckType, MVT::i32,
/* 52500*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LA), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$rA, (PPClo:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$sym, 0:{ *:[i32] })) - Complexity = 14
                  // Dst: (LA:{ *:[i32] } i32:{ *:[i32] }:$rA, (tglobaladdr:{ *:[i32] }):$sym)
/* 52508*/      /*SwitchOpcode*/ 120, TARGET_VAL(PPCISD::Hi),// ->52631
/* 52511*/        OPC_RecordChild0, // #1 = $g
/* 52512*/        OPC_MoveChild0,
/* 52513*/        OPC_SwitchOpcode /*4 cases */, 26, TARGET_VAL(ISD::TargetGlobalAddress),// ->52543
/* 52517*/          OPC_MoveParent,
/* 52518*/          OPC_CheckChild1Integer, 0, 
/* 52520*/          OPC_MoveParent,
/* 52521*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52532
/* 52524*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$in, (PPChi:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$g, 0:{ *:[i32] })) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tglobaladdr:{ *:[i32] }):$g)
/* 52532*/          /*SwitchType*/ 8, MVT::i64,// ->52542
/* 52534*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$in, (PPChi:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$g, 0:{ *:[i64] })) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tglobaladdr:{ *:[i64] }):$g)
/* 52542*/          0, // EndSwitchType
/* 52543*/        /*SwitchOpcode*/ 26, TARGET_VAL(ISD::TargetConstantPool),// ->52572
/* 52546*/          OPC_MoveParent,
/* 52547*/          OPC_CheckChild1Integer, 0, 
/* 52549*/          OPC_MoveParent,
/* 52550*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52561
/* 52553*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$in, (PPChi:{ *:[i32] } (tconstpool:{ *:[i32] }):$g, 0:{ *:[i32] })) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tconstpool:{ *:[i32] }):$g)
/* 52561*/          /*SwitchType*/ 8, MVT::i64,// ->52571
/* 52563*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$in, (PPChi:{ *:[i64] } (tconstpool:{ *:[i64] }):$g, 0:{ *:[i64] })) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tconstpool:{ *:[i64] }):$g)
/* 52571*/          0, // EndSwitchType
/* 52572*/        /*SwitchOpcode*/ 26, TARGET_VAL(ISD::TargetJumpTable),// ->52601
/* 52575*/          OPC_MoveParent,
/* 52576*/          OPC_CheckChild1Integer, 0, 
/* 52578*/          OPC_MoveParent,
/* 52579*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52590
/* 52582*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$in, (PPChi:{ *:[i32] } (tjumptable:{ *:[i32] }):$g, 0:{ *:[i32] })) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tjumptable:{ *:[i32] }):$g)
/* 52590*/          /*SwitchType*/ 8, MVT::i64,// ->52600
/* 52592*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$in, (PPChi:{ *:[i64] } (tjumptable:{ *:[i64] }):$g, 0:{ *:[i64] })) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tjumptable:{ *:[i64] }):$g)
/* 52600*/          0, // EndSwitchType
/* 52601*/        /*SwitchOpcode*/ 26, TARGET_VAL(ISD::TargetBlockAddress),// ->52630
/* 52604*/          OPC_MoveParent,
/* 52605*/          OPC_CheckChild1Integer, 0, 
/* 52607*/          OPC_MoveParent,
/* 52608*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52619
/* 52611*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$in, (PPChi:{ *:[i32] } (tblockaddress:{ *:[i32] }):$g, 0:{ *:[i32] })) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tblockaddress:{ *:[i32] }):$g)
/* 52619*/          /*SwitchType*/ 8, MVT::i64,// ->52629
/* 52621*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$in, (PPChi:{ *:[i64] } (tblockaddress:{ *:[i64] }):$g, 0:{ *:[i64] })) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tblockaddress:{ *:[i64] }):$g)
/* 52629*/          0, // EndSwitchType
/* 52630*/        0, // EndSwitchOpcode
/* 52631*/      0, // EndSwitchOpcode
/* 52632*/    /*Scope*/ 64|128,1/*192*/, /*->52826*/
/* 52634*/      OPC_MoveChild0,
/* 52635*/      OPC_SwitchOpcode /*3 cases */, 20, TARGET_VAL(PPCISD::Lo),// ->52659
/* 52639*/        OPC_RecordChild0, // #0 = $sym
/* 52640*/        OPC_MoveChild0,
/* 52641*/        OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalAddress),
/* 52644*/        OPC_MoveParent,
/* 52645*/        OPC_CheckChild1Integer, 0, 
/* 52647*/        OPC_MoveParent,
/* 52648*/        OPC_RecordChild1, // #1 = $rA
/* 52649*/        OPC_CheckType, MVT::i32,
/* 52651*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LA), 0,
                      MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (add:{ *:[i32] } (PPClo:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$sym, 0:{ *:[i32] }), i32:{ *:[i32] }:$rA) - Complexity = 14
                  // Dst: (LA:{ *:[i32] } i32:{ *:[i32] }:$rA, (tglobaladdr:{ *:[i32] }):$sym)
/* 52659*/      /*SwitchOpcode*/ 124, TARGET_VAL(PPCISD::Hi),// ->52786
/* 52662*/        OPC_RecordChild0, // #0 = $g
/* 52663*/        OPC_MoveChild0,
/* 52664*/        OPC_SwitchOpcode /*4 cases */, 27, TARGET_VAL(ISD::TargetGlobalAddress),// ->52695
/* 52668*/          OPC_MoveParent,
/* 52669*/          OPC_CheckChild1Integer, 0, 
/* 52671*/          OPC_MoveParent,
/* 52672*/          OPC_RecordChild1, // #1 = $in
/* 52673*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52684
/* 52676*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i32] } (PPChi:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$g, 0:{ *:[i32] }), i32:{ *:[i32] }:$in) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tglobaladdr:{ *:[i32] }):$g)
/* 52684*/          /*SwitchType*/ 8, MVT::i64,// ->52694
/* 52686*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i64] } (PPChi:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$g, 0:{ *:[i64] }), i64:{ *:[i64] }:$in) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tglobaladdr:{ *:[i64] }):$g)
/* 52694*/          0, // EndSwitchType
/* 52695*/        /*SwitchOpcode*/ 27, TARGET_VAL(ISD::TargetConstantPool),// ->52725
/* 52698*/          OPC_MoveParent,
/* 52699*/          OPC_CheckChild1Integer, 0, 
/* 52701*/          OPC_MoveParent,
/* 52702*/          OPC_RecordChild1, // #1 = $in
/* 52703*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52714
/* 52706*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i32] } (PPChi:{ *:[i32] } (tconstpool:{ *:[i32] }):$g, 0:{ *:[i32] }), i32:{ *:[i32] }:$in) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tconstpool:{ *:[i32] }):$g)
/* 52714*/          /*SwitchType*/ 8, MVT::i64,// ->52724
/* 52716*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i64] } (PPChi:{ *:[i64] } (tconstpool:{ *:[i64] }):$g, 0:{ *:[i64] }), i64:{ *:[i64] }:$in) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tconstpool:{ *:[i64] }):$g)
/* 52724*/          0, // EndSwitchType
/* 52725*/        /*SwitchOpcode*/ 27, TARGET_VAL(ISD::TargetJumpTable),// ->52755
/* 52728*/          OPC_MoveParent,
/* 52729*/          OPC_CheckChild1Integer, 0, 
/* 52731*/          OPC_MoveParent,
/* 52732*/          OPC_RecordChild1, // #1 = $in
/* 52733*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52744
/* 52736*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i32] } (PPChi:{ *:[i32] } (tjumptable:{ *:[i32] }):$g, 0:{ *:[i32] }), i32:{ *:[i32] }:$in) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tjumptable:{ *:[i32] }):$g)
/* 52744*/          /*SwitchType*/ 8, MVT::i64,// ->52754
/* 52746*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i64] } (PPChi:{ *:[i64] } (tjumptable:{ *:[i64] }):$g, 0:{ *:[i64] }), i64:{ *:[i64] }:$in) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tjumptable:{ *:[i64] }):$g)
/* 52754*/          0, // EndSwitchType
/* 52755*/        /*SwitchOpcode*/ 27, TARGET_VAL(ISD::TargetBlockAddress),// ->52785
/* 52758*/          OPC_MoveParent,
/* 52759*/          OPC_CheckChild1Integer, 0, 
/* 52761*/          OPC_MoveParent,
/* 52762*/          OPC_RecordChild1, // #1 = $in
/* 52763*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52774
/* 52766*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i32] } (PPChi:{ *:[i32] } (tblockaddress:{ *:[i32] }):$g, 0:{ *:[i32] }), i32:{ *:[i32] }:$in) - Complexity = 14
                      // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tblockaddress:{ *:[i32] }):$g)
/* 52774*/          /*SwitchType*/ 8, MVT::i64,// ->52784
/* 52776*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 1, 0, 
                      // Src: (add:{ *:[i64] } (PPChi:{ *:[i64] } (tblockaddress:{ *:[i64] }):$g, 0:{ *:[i64] }), i64:{ *:[i64] }:$in) - Complexity = 14
                      // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tblockaddress:{ *:[i64] }):$g)
/* 52784*/          0, // EndSwitchType
/* 52785*/        0, // EndSwitchOpcode
/* 52786*/      /*SwitchOpcode*/ 36, TARGET_VAL(ISD::MUL),// ->52825
/* 52789*/        OPC_RecordChild0, // #0 = $RA
/* 52790*/        OPC_RecordChild1, // #1 = $RB
/* 52791*/        OPC_CheckPredicate, 18, // Predicate_mul_without_simm16
/* 52793*/        OPC_MoveParent,
/* 52794*/        OPC_RecordChild1, // #2 = $RC
/* 52795*/        OPC_CheckPredicate, 18, // Predicate_add_without_simm16
/* 52797*/        OPC_SwitchType /*2 cases */, 11, MVT::i32,// ->52811
/* 52800*/          OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 52802*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MADDLD), 0,
                        MVT::i32, 3/*#Ops*/, 0, 1, 2, 
                    // Src: (add:{ *:[i32] } (mul:{ *:[i32] } i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$RB)<<P:Predicate_mul_without_simm16>>, i32:{ *:[i32] }:$RC)<<P:Predicate_add_without_simm16>> - Complexity = 8
                    // Dst: (MADDLD:{ *:[i32] } i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$RB, i32:{ *:[i32] }:$RC)
/* 52811*/        /*SwitchType*/ 11, MVT::i64,// ->52824
/* 52813*/          OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 52815*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MADDLD8), 0,
                        MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                    // Src: (add:{ *:[i64] } (mul:{ *:[i64] } i64:{ *:[i64] }:$RA, i64:{ *:[i64] }:$RB)<<P:Predicate_mul_without_simm16>>, i64:{ *:[i64] }:$RC)<<P:Predicate_add_without_simm16>> - Complexity = 8
                    // Dst: (MADDLD8:{ *:[i64] } i64:{ *:[i64] }:$RA, i64:{ *:[i64] }:$RB, i64:{ *:[i64] }:$RC)
/* 52824*/        0, // EndSwitchType
/* 52825*/      0, // EndSwitchOpcode
/* 52826*/    /*Scope*/ 59|128,2/*315*/, /*->53143*/
/* 52828*/      OPC_RecordChild0, // #0 = $RC
/* 52829*/      OPC_Scope, 39, /*->52870*/ // 4 children in Scope
/* 52831*/        OPC_MoveChild1,
/* 52832*/        OPC_CheckOpcode, TARGET_VAL(ISD::MUL),
/* 52835*/        OPC_RecordChild0, // #1 = $RA
/* 52836*/        OPC_RecordChild1, // #2 = $RB
/* 52837*/        OPC_CheckPredicate, 18, // Predicate_mul_without_simm16
/* 52839*/        OPC_MoveParent,
/* 52840*/        OPC_CheckPredicate, 18, // Predicate_add_without_simm16
/* 52842*/        OPC_SwitchType /*2 cases */, 11, MVT::i32,// ->52856
/* 52845*/          OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 52847*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MADDLD), 0,
                        MVT::i32, 3/*#Ops*/, 1, 2, 0, 
                    // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$RC, (mul:{ *:[i32] } i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$RB)<<P:Predicate_mul_without_simm16>>)<<P:Predicate_add_without_simm16>> - Complexity = 8
                    // Dst: (MADDLD:{ *:[i32] } i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$RB, i32:{ *:[i32] }:$RC)
/* 52856*/        /*SwitchType*/ 11, MVT::i64,// ->52869
/* 52858*/          OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 52860*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MADDLD8), 0,
                        MVT::i64, 3/*#Ops*/, 1, 2, 0, 
                    // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$RC, (mul:{ *:[i64] } i64:{ *:[i64] }:$RA, i64:{ *:[i64] }:$RB)<<P:Predicate_mul_without_simm16>>)<<P:Predicate_add_without_simm16>> - Complexity = 8
                    // Dst: (MADDLD8:{ *:[i64] } i64:{ *:[i64] }:$RA, i64:{ *:[i64] }:$RB, i64:{ *:[i64] }:$RC)
/* 52869*/        0, // EndSwitchType
/* 52870*/      /*Scope*/ 105, /*->52976*/
/* 52871*/        OPC_RecordChild1, // #1 = $imm
/* 52872*/        OPC_MoveChild1,
/* 52873*/        OPC_SwitchOpcode /*2 cases */, 72, TARGET_VAL(ISD::Constant),// ->52949
/* 52877*/          OPC_Scope, 15, /*->52894*/ // 4 children in Scope
/* 52879*/            OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 52881*/            OPC_MoveParent,
/* 52882*/            OPC_CheckType, MVT::i32,
/* 52884*/            OPC_EmitConvertToTarget, 1,
/* 52886*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2, 
                      // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm) - Complexity = 7
                      // Dst: (ADDI:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] }):$imm)
/* 52894*/          /*Scope*/ 18, /*->52913*/
/* 52895*/            OPC_CheckPredicate, 19, // Predicate_imm16ShiftedSExt
/* 52897*/            OPC_MoveParent,
/* 52898*/            OPC_CheckType, MVT::i32,
/* 52900*/            OPC_EmitConvertToTarget, 1,
/* 52902*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 52905*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 3, 
                      // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] })<<P:Predicate_imm16ShiftedSExt>><<X:HI16>>:$imm) - Complexity = 7
                      // Dst: (ADDIS:{ *:[i32] } i32:{ *:[i32] }:$rA, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 52913*/          /*Scope*/ 15, /*->52929*/
/* 52914*/            OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 52916*/            OPC_MoveParent,
/* 52917*/            OPC_CheckType, MVT::i64,
/* 52919*/            OPC_EmitConvertToTarget, 1,
/* 52921*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDI8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 2, 
                      // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm) - Complexity = 7
                      // Dst: (ADDI8:{ *:[i64] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] }):$imm)
/* 52929*/          /*Scope*/ 18, /*->52948*/
/* 52930*/            OPC_CheckPredicate, 19, // Predicate_imm16ShiftedSExt
/* 52932*/            OPC_MoveParent,
/* 52933*/            OPC_CheckType, MVT::i64,
/* 52935*/            OPC_EmitConvertToTarget, 1,
/* 52937*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 52940*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                          MVT::i64, 2/*#Ops*/, 0, 3, 
                      // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] })<<P:Predicate_imm16ShiftedSExt>><<X:HI16>>:$imm) - Complexity = 7
                      // Dst: (ADDIS8:{ *:[i64] } i64:{ *:[i64] }:$rA, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm))
/* 52948*/          0, /*End of Scope*/
/* 52949*/        /*SwitchOpcode*/ 23, TARGET_VAL(ISD::TargetGlobalTLSAddress),// ->52975
/* 52952*/          OPC_MoveParent,
/* 52953*/          OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52964
/* 52956*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD4TLS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$rA, (tglobaltlsaddr:{ *:[i32] }):$rB) - Complexity = 6
                      // Dst: (ADD4TLS:{ *:[i32] } i32:{ *:[i32] }:$rA, (tglobaltlsaddr:{ *:[i32] }):$rB)
/* 52964*/          /*SwitchType*/ 8, MVT::i64,// ->52974
/* 52966*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD8TLS), 0,
                          MVT::i64, 2/*#Ops*/, 0, 1, 
                      // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$rA, (tglobaltlsaddr:{ *:[i64] }):$rB) - Complexity = 6
                      // Dst: (ADD8TLS:{ *:[i64] } i64:{ *:[i64] }:$rA, (tglobaltlsaddr:{ *:[i64] }):$rB)
/* 52974*/          0, // EndSwitchType
/* 52975*/        0, // EndSwitchOpcode
/* 52976*/      /*Scope*/ 28, /*->53005*/
/* 52977*/        OPC_MoveChild0,
/* 52978*/        OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 52981*/        OPC_MoveParent,
/* 52982*/        OPC_RecordChild1, // #1 = $rA
/* 52983*/        OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->52994
/* 52986*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD4TLS), 0,
                        MVT::i32, 2/*#Ops*/, 1, 0, 
                    // Src: (add:{ *:[i32] } (tglobaltlsaddr:{ *:[i32] }):$rB, i32:{ *:[i32] }:$rA) - Complexity = 6
                    // Dst: (ADD4TLS:{ *:[i32] } i32:{ *:[i32] }:$rA, (tglobaltlsaddr:{ *:[i32] }):$rB)
/* 52994*/        /*SwitchType*/ 8, MVT::i64,// ->53004
/* 52996*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD8TLS), 0,
                        MVT::i64, 2/*#Ops*/, 1, 0, 
                    // Src: (add:{ *:[i64] } (tglobaltlsaddr:{ *:[i64] }):$rB, i64:{ *:[i64] }:$rA) - Complexity = 6
                    // Dst: (ADD8TLS:{ *:[i64] } i64:{ *:[i64] }:$rA, (tglobaltlsaddr:{ *:[i64] }):$rB)
/* 53004*/        0, // EndSwitchType
/* 53005*/      /*Scope*/ 7|128,1/*135*/, /*->53142*/
/* 53007*/        OPC_RecordChild1, // #1 = $imm
/* 53008*/        OPC_Scope, 33, /*->53043*/ // 9 children in Scope
/* 53010*/          OPC_MoveChild1,
/* 53011*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 53014*/          OPC_MoveParent,
/* 53015*/          OPC_CheckType, MVT::i32,
/* 53017*/          OPC_EmitConvertToTarget, 1,
/* 53019*/          OPC_EmitNodeXForm, 1, 2, // LO16
/* 53022*/          OPC_EmitNode1, TARGET_VAL(PPC::ADDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 53030*/          OPC_EmitConvertToTarget, 1,
/* 53032*/          OPC_EmitNodeXForm, 2, 5, // HA16
/* 53035*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                        MVT::i32, 2/*#Ops*/, 4, 6, 
                    // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                    // Dst: (ADDIS:{ *:[i32] } (ADDI:{ *:[i32] } ?:{ *:[i32] }:$in, (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (HA16:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 53043*/        /*Scope*/ 10, /*->53054*/
/* 53044*/          OPC_CheckType, MVT::i32,
/* 53046*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD4), 0,
                        MVT::i32, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                    // Dst: (ADD4:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 53054*/        /*Scope*/ 10, /*->53065*/
/* 53055*/          OPC_CheckType, MVT::i64,
/* 53057*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                    // Dst: (ADD8:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 53065*/        /*Scope*/ 10, /*->53076*/
/* 53066*/          OPC_CheckType, MVT::i1,
/* 53068*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRXOR), 0,
                        MVT::i1, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[i1] } i1:{ *:[i1] }:$a, i1:{ *:[i1] }:$b) - Complexity = 3
                    // Dst: (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$a, ?:{ *:[i1] }:$b)
/* 53076*/        /*Scope*/ 12, /*->53089*/
/* 53077*/          OPC_CheckType, MVT::v16i8,
/* 53079*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 53081*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUBM), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                    // Dst: (VADDUBM:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 53089*/        /*Scope*/ 12, /*->53102*/
/* 53090*/          OPC_CheckType, MVT::v8i16,
/* 53092*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 53094*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUHM), 0,
                        MVT::v8i16, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                    // Dst: (VADDUHM:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 53102*/        /*Scope*/ 12, /*->53115*/
/* 53103*/          OPC_CheckType, MVT::v4i32,
/* 53105*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 53107*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUWM), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                    // Dst: (VADDUWM:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 53115*/        /*Scope*/ 12, /*->53128*/
/* 53116*/          OPC_CheckType, MVT::v2i64,
/* 53118*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 53120*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUDM), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                    // Dst: (VADDUDM:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 53128*/        /*Scope*/ 12, /*->53141*/
/* 53129*/          OPC_CheckType, MVT::v1i128,
/* 53131*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 53133*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDUQM), 0,
                        MVT::v1i128, 2/*#Ops*/, 0, 1, 
                    // Src: (add:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 3
                    // Dst: (VADDUQM:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB)
/* 53141*/        0, /*End of Scope*/
/* 53142*/      0, /*End of Scope*/
/* 53143*/    0, /*End of Scope*/
/* 53144*/  /*SwitchOpcode*/ 23|128,11/*1431*/, TARGET_VAL(ISD::LOAD),// ->54579
/* 53148*/    OPC_RecordMemRef,
/* 53149*/    OPC_RecordNode, // #0 = 'ld' chained node
/* 53150*/    OPC_RecordChild1, // #1 = $src
/* 53151*/    OPC_CheckPredicate, 20, // Predicate_unindexedload
/* 53153*/    OPC_Scope, 18, /*->53173*/ // 23 children in Scope
/* 53155*/      OPC_CheckPredicate, 21, // Predicate_zextload
/* 53157*/      OPC_CheckPredicate, 2, // Predicate_zextloadi8
/* 53159*/      OPC_CheckType, MVT::i32,
/* 53161*/      OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53164*/      OPC_EmitMergeInputChains1_0,
/* 53165*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>> - Complexity = 13
                // Dst: (LBZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53173*/    /*Scope*/ 18, /*->53192*/
/* 53174*/      OPC_CheckPredicate, 22, // Predicate_sextload
/* 53176*/      OPC_CheckPredicate, 3, // Predicate_sextloadi16
/* 53178*/      OPC_CheckType, MVT::i32,
/* 53180*/      OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53183*/      OPC_EmitMergeInputChains1_0,
/* 53184*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LHA), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi16>> - Complexity = 13
                // Dst: (LHA:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53192*/    /*Scope*/ 18, /*->53211*/
/* 53193*/      OPC_CheckPredicate, 21, // Predicate_zextload
/* 53195*/      OPC_CheckPredicate, 3, // Predicate_zextloadi16
/* 53197*/      OPC_CheckType, MVT::i32,
/* 53199*/      OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53202*/      OPC_EmitMergeInputChains1_0,
/* 53203*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZ), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi16>> - Complexity = 13
                // Dst: (LHZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53211*/    /*Scope*/ 16, /*->53228*/
/* 53212*/      OPC_CheckPredicate, 23, // Predicate_load
/* 53214*/      OPC_CheckType, MVT::i32,
/* 53216*/      OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53219*/      OPC_EmitMergeInputChains1_0,
/* 53220*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZ), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                // Dst: (LWZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53228*/    /*Scope*/ 18, /*->53247*/
/* 53229*/      OPC_CheckPredicate, 21, // Predicate_zextload
/* 53231*/      OPC_CheckPredicate, 2, // Predicate_zextloadi8
/* 53233*/      OPC_CheckType, MVT::i32,
/* 53235*/      OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53238*/      OPC_EmitMergeInputChains1_0,
/* 53239*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>> - Complexity = 13
                // Dst: (LBZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53247*/    /*Scope*/ 18, /*->53266*/
/* 53248*/      OPC_CheckPredicate, 22, // Predicate_sextload
/* 53250*/      OPC_CheckPredicate, 3, // Predicate_sextloadi16
/* 53252*/      OPC_CheckType, MVT::i32,
/* 53254*/      OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53257*/      OPC_EmitMergeInputChains1_0,
/* 53258*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LHAX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi16>> - Complexity = 13
                // Dst: (LHAX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53266*/    /*Scope*/ 18, /*->53285*/
/* 53267*/      OPC_CheckPredicate, 21, // Predicate_zextload
/* 53269*/      OPC_CheckPredicate, 3, // Predicate_zextloadi16
/* 53271*/      OPC_CheckType, MVT::i32,
/* 53273*/      OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53276*/      OPC_EmitMergeInputChains1_0,
/* 53277*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi16>> - Complexity = 13
                // Dst: (LHZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53285*/    /*Scope*/ 16, /*->53302*/
/* 53286*/      OPC_CheckPredicate, 23, // Predicate_load
/* 53288*/      OPC_CheckType, MVT::i32,
/* 53290*/      OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53293*/      OPC_EmitMergeInputChains1_0,
/* 53294*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                // Dst: (LWZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53302*/    /*Scope*/ 34, /*->53337*/
/* 53303*/      OPC_CheckPredicate, 21, // Predicate_zextload
/* 53305*/      OPC_CheckPredicate, 24, // Predicate_zextloadi1
/* 53307*/      OPC_CheckType, MVT::i32,
/* 53309*/      OPC_Scope, 12, /*->53323*/ // 2 children in Scope
/* 53311*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53314*/        OPC_EmitMergeInputChains1_0,
/* 53315*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi1>> - Complexity = 13
                  // Dst: (LBZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53323*/      /*Scope*/ 12, /*->53336*/
/* 53324*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53327*/        OPC_EmitMergeInputChains1_0,
/* 53328*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi1>> - Complexity = 13
                  // Dst: (LBZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53336*/      0, /*End of Scope*/
/* 53337*/    /*Scope*/ 99, /*->53437*/
/* 53338*/      OPC_CheckPredicate, 25, // Predicate_extload
/* 53340*/      OPC_CheckType, MVT::i32,
/* 53342*/      OPC_Scope, 30, /*->53374*/ // 3 children in Scope
/* 53344*/        OPC_CheckPredicate, 24, // Predicate_extloadi1
/* 53346*/        OPC_Scope, 12, /*->53360*/ // 2 children in Scope
/* 53348*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53351*/          OPC_EmitMergeInputChains1_0,
/* 53352*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi1>> - Complexity = 13
                    // Dst: (LBZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53360*/        /*Scope*/ 12, /*->53373*/
/* 53361*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53364*/          OPC_EmitMergeInputChains1_0,
/* 53365*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi1>> - Complexity = 13
                    // Dst: (LBZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53373*/        0, /*End of Scope*/
/* 53374*/      /*Scope*/ 30, /*->53405*/
/* 53375*/        OPC_CheckPredicate, 2, // Predicate_extloadi8
/* 53377*/        OPC_Scope, 12, /*->53391*/ // 2 children in Scope
/* 53379*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53382*/          OPC_EmitMergeInputChains1_0,
/* 53383*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi8>> - Complexity = 13
                    // Dst: (LBZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53391*/        /*Scope*/ 12, /*->53404*/
/* 53392*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53395*/          OPC_EmitMergeInputChains1_0,
/* 53396*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi8>> - Complexity = 13
                    // Dst: (LBZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53404*/        0, /*End of Scope*/
/* 53405*/      /*Scope*/ 30, /*->53436*/
/* 53406*/        OPC_CheckPredicate, 3, // Predicate_extloadi16
/* 53408*/        OPC_Scope, 12, /*->53422*/ // 2 children in Scope
/* 53410*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53413*/          OPC_EmitMergeInputChains1_0,
/* 53414*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZ), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi16>> - Complexity = 13
                    // Dst: (LHZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)
/* 53422*/        /*Scope*/ 12, /*->53435*/
/* 53423*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53426*/          OPC_EmitMergeInputChains1_0,
/* 53427*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi16>> - Complexity = 13
                    // Dst: (LHZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)
/* 53435*/        0, /*End of Scope*/
/* 53436*/      0, /*End of Scope*/
/* 53437*/    /*Scope*/ 68, /*->53506*/
/* 53438*/      OPC_CheckPredicate, 22, // Predicate_sextload
/* 53440*/      OPC_CheckType, MVT::i64,
/* 53442*/      OPC_Scope, 14, /*->53458*/ // 4 children in Scope
/* 53444*/        OPC_CheckPredicate, 3, // Predicate_sextloadi16
/* 53446*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53449*/        OPC_EmitMergeInputChains1_0,
/* 53450*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LHA8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi16>> - Complexity = 13
                  // Dst: (LHA8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53458*/      /*Scope*/ 16, /*->53475*/
/* 53459*/        OPC_CheckPredicate, 8, // Predicate_sextloadi32
/* 53461*/        OPC_CheckPredicate, 26, // Predicate_aligned4sextloadi32
/* 53463*/        OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 53466*/        OPC_EmitMergeInputChains1_0,
/* 53467*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWA), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi32>><<P:Predicate_aligned4sextloadi32>> - Complexity = 13
                  // Dst: (LWA:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)
/* 53475*/      /*Scope*/ 14, /*->53490*/
/* 53476*/        OPC_CheckPredicate, 3, // Predicate_sextloadi16
/* 53478*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53481*/        OPC_EmitMergeInputChains1_0,
/* 53482*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LHAX8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi16>> - Complexity = 13
                  // Dst: (LHAX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53490*/      /*Scope*/ 14, /*->53505*/
/* 53491*/        OPC_CheckPredicate, 8, // Predicate_sextloadi32
/* 53493*/        OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/* 53496*/        OPC_EmitMergeInputChains1_0,
/* 53497*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWAX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi32>> - Complexity = 13
                  // Dst: (LWAX:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)
/* 53505*/      0, /*End of Scope*/
/* 53506*/    /*Scope*/ 96, /*->53603*/
/* 53507*/      OPC_CheckPredicate, 21, // Predicate_zextload
/* 53509*/      OPC_CheckType, MVT::i64,
/* 53511*/      OPC_Scope, 14, /*->53527*/ // 6 children in Scope
/* 53513*/        OPC_CheckPredicate, 2, // Predicate_zextloadi8
/* 53515*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53518*/        OPC_EmitMergeInputChains1_0,
/* 53519*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>> - Complexity = 13
                  // Dst: (LBZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53527*/      /*Scope*/ 14, /*->53542*/
/* 53528*/        OPC_CheckPredicate, 3, // Predicate_zextloadi16
/* 53530*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53533*/        OPC_EmitMergeInputChains1_0,
/* 53534*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZ8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi16>> - Complexity = 13
                  // Dst: (LHZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53542*/      /*Scope*/ 14, /*->53557*/
/* 53543*/        OPC_CheckPredicate, 8, // Predicate_zextloadi32
/* 53545*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53548*/        OPC_EmitMergeInputChains1_0,
/* 53549*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZ8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi32>> - Complexity = 13
                  // Dst: (LWZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53557*/      /*Scope*/ 14, /*->53572*/
/* 53558*/        OPC_CheckPredicate, 2, // Predicate_zextloadi8
/* 53560*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53563*/        OPC_EmitMergeInputChains1_0,
/* 53564*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>> - Complexity = 13
                  // Dst: (LBZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53572*/      /*Scope*/ 14, /*->53587*/
/* 53573*/        OPC_CheckPredicate, 3, // Predicate_zextloadi16
/* 53575*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53578*/        OPC_EmitMergeInputChains1_0,
/* 53579*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZX8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi16>> - Complexity = 13
                  // Dst: (LHZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53587*/      /*Scope*/ 14, /*->53602*/
/* 53588*/        OPC_CheckPredicate, 8, // Predicate_zextloadi32
/* 53590*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53593*/        OPC_EmitMergeInputChains1_0,
/* 53594*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZX8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi32>> - Complexity = 13
                  // Dst: (LWZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53602*/      0, /*End of Scope*/
/* 53603*/    /*Scope*/ 34, /*->53638*/
/* 53604*/      OPC_CheckPredicate, 23, // Predicate_load
/* 53606*/      OPC_CheckType, MVT::i64,
/* 53608*/      OPC_Scope, 14, /*->53624*/ // 2 children in Scope
/* 53610*/        OPC_CheckPredicate, 26, // Predicate_aligned4load
/* 53612*/        OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 53615*/        OPC_EmitMergeInputChains1_0,
/* 53616*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LD), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_aligned4load>> - Complexity = 13
                  // Dst: (LD:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)
/* 53624*/      /*Scope*/ 12, /*->53637*/
/* 53625*/        OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/* 53628*/        OPC_EmitMergeInputChains1_0,
/* 53629*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LDX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                  // Dst: (LDX:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)
/* 53637*/      0, /*End of Scope*/
/* 53638*/    /*Scope*/ 34, /*->53673*/
/* 53639*/      OPC_CheckPredicate, 21, // Predicate_zextload
/* 53641*/      OPC_CheckPredicate, 24, // Predicate_zextloadi1
/* 53643*/      OPC_CheckType, MVT::i64,
/* 53645*/      OPC_Scope, 12, /*->53659*/ // 2 children in Scope
/* 53647*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53650*/        OPC_EmitMergeInputChains1_0,
/* 53651*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi1>> - Complexity = 13
                  // Dst: (LBZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53659*/      /*Scope*/ 12, /*->53672*/
/* 53660*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53663*/        OPC_EmitMergeInputChains1_0,
/* 53664*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi1>> - Complexity = 13
                  // Dst: (LBZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53672*/      0, /*End of Scope*/
/* 53673*/    /*Scope*/ 2|128,1/*130*/, /*->53805*/
/* 53675*/      OPC_CheckPredicate, 25, // Predicate_extload
/* 53677*/      OPC_CheckType, MVT::i64,
/* 53679*/      OPC_Scope, 30, /*->53711*/ // 4 children in Scope
/* 53681*/        OPC_CheckPredicate, 24, // Predicate_extloadi1
/* 53683*/        OPC_Scope, 12, /*->53697*/ // 2 children in Scope
/* 53685*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53688*/          OPC_EmitMergeInputChains1_0,
/* 53689*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi1>> - Complexity = 13
                    // Dst: (LBZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53697*/        /*Scope*/ 12, /*->53710*/
/* 53698*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53701*/          OPC_EmitMergeInputChains1_0,
/* 53702*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi1>> - Complexity = 13
                    // Dst: (LBZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53710*/        0, /*End of Scope*/
/* 53711*/      /*Scope*/ 30, /*->53742*/
/* 53712*/        OPC_CheckPredicate, 2, // Predicate_extloadi8
/* 53714*/        OPC_Scope, 12, /*->53728*/ // 2 children in Scope
/* 53716*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53719*/          OPC_EmitMergeInputChains1_0,
/* 53720*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi8>> - Complexity = 13
                    // Dst: (LBZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53728*/        /*Scope*/ 12, /*->53741*/
/* 53729*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53732*/          OPC_EmitMergeInputChains1_0,
/* 53733*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi8>> - Complexity = 13
                    // Dst: (LBZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53741*/        0, /*End of Scope*/
/* 53742*/      /*Scope*/ 30, /*->53773*/
/* 53743*/        OPC_CheckPredicate, 3, // Predicate_extloadi16
/* 53745*/        OPC_Scope, 12, /*->53759*/ // 2 children in Scope
/* 53747*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53750*/          OPC_EmitMergeInputChains1_0,
/* 53751*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZ8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi16>> - Complexity = 13
                    // Dst: (LHZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53759*/        /*Scope*/ 12, /*->53772*/
/* 53760*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53763*/          OPC_EmitMergeInputChains1_0,
/* 53764*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZX8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi16>> - Complexity = 13
                    // Dst: (LHZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53772*/        0, /*End of Scope*/
/* 53773*/      /*Scope*/ 30, /*->53804*/
/* 53774*/        OPC_CheckPredicate, 8, // Predicate_extloadi32
/* 53776*/        OPC_Scope, 12, /*->53790*/ // 2 children in Scope
/* 53778*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 53781*/          OPC_EmitMergeInputChains1_0,
/* 53782*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZ8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi32>> - Complexity = 13
                    // Dst: (LWZ8:{ *:[i64] } iaddr:{ *:[iPTR] }:$src)
/* 53790*/        /*Scope*/ 12, /*->53803*/
/* 53791*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 53794*/          OPC_EmitMergeInputChains1_0,
/* 53795*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZX8), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi32>> - Complexity = 13
                    // Dst: (LWZX8:{ *:[i64] } xaddr:{ *:[iPTR] }:$src)
/* 53803*/        0, /*End of Scope*/
/* 53804*/      0, /*End of Scope*/
/* 53805*/    /*Scope*/ 20, /*->53826*/
/* 53806*/      OPC_CheckPredicate, 22, // Predicate_sextload
/* 53808*/      OPC_CheckPredicate, 8, // Predicate_sextloadi32
/* 53810*/      OPC_CheckPredicate, 27, // Predicate_unaligned4sextloadi32
/* 53812*/      OPC_CheckType, MVT::i64,
/* 53814*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 53817*/      OPC_EmitMergeInputChains1_0,
/* 53818*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LWAX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi32>><<P:Predicate_unaligned4sextloadi32>> - Complexity = 13
                // Dst: (LWAX:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)
/* 53826*/    /*Scope*/ 20|128,1/*148*/, /*->53976*/
/* 53828*/      OPC_CheckPredicate, 23, // Predicate_load
/* 53830*/      OPC_SwitchType /*4 cases */, 14, MVT::i64,// ->53847
/* 53833*/        OPC_CheckPredicate, 27, // Predicate_unaligned4load
/* 53835*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 53838*/        OPC_EmitMergeInputChains1_0,
/* 53839*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LDX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_unaligned4load>> - Complexity = 13
                  // Dst: (LDX:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)
/* 53847*/      /*SwitchType*/ 32, MVT::f32,// ->53881
/* 53849*/        OPC_Scope, 14, /*->53865*/ // 2 children in Scope
/* 53851*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 53853*/          OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 53856*/          OPC_EmitMergeInputChains1_0,
/* 53857*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::DFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[f32] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                    // Dst: (DFLOADf32:{ *:[f32] } iaddrX4:{ *:[iPTR] }:$src)
/* 53865*/        /*Scope*/ 14, /*->53880*/
/* 53866*/          OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 53868*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 53871*/          OPC_EmitMergeInputChains1_0,
/* 53872*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[f32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                    // Dst: (XFLOADf32:{ *:[f32] } xoaddr:{ *:[iPTR] }:$src)
/* 53880*/        0, /*End of Scope*/
/* 53881*/      /*SwitchType*/ 32, MVT::f64,// ->53915
/* 53883*/        OPC_Scope, 14, /*->53899*/ // 2 children in Scope
/* 53885*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 53887*/          OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 53890*/          OPC_EmitMergeInputChains1_0,
/* 53891*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                    // Dst: (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src)
/* 53899*/        /*Scope*/ 14, /*->53914*/
/* 53900*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 53902*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 53905*/          OPC_EmitMergeInputChains1_0,
/* 53906*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                    // Dst: (XFLOADf64:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)
/* 53914*/        0, /*End of Scope*/
/* 53915*/      /*SwitchType*/ 58, MVT::f128,// ->53975
/* 53917*/        OPC_Scope, 27, /*->53946*/ // 2 children in Scope
/* 53919*/          OPC_CheckPredicate, 5, // Predicate_quadwOffsetLoad
/* 53921*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 53923*/          OPC_CheckComplexPat, /*CP*/4, /*#*/1, // SelectAddrImmX16:$src #2 #3
/* 53926*/          OPC_EmitMergeInputChains1_0,
/* 53927*/          OPC_EmitNode1, TARGET_VAL(PPC::LXV), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 53935*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 53938*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::f128, 2/*#Ops*/, 4, 5, 
                    // Src: (ld:{ *:[f128] } iaddrX16:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_quadwOffsetLoad>> - Complexity = 413
                    // Dst: (COPY_TO_REGCLASS:{ *:[f128] } (LXV:{ *:[v4i32] } memrix16:{ *:[iPTR] }:$src), VRRC:{ *:[i32] })
/* 53946*/        /*Scope*/ 27, /*->53974*/
/* 53947*/          OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetLoad
/* 53949*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 53951*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 53954*/          OPC_EmitMergeInputChains1_0,
/* 53955*/          OPC_EmitNode1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 53963*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 53966*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::f128, 2/*#Ops*/, 4, 5, 
                    // Src: (ld:{ *:[f128] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_nonQuadwOffsetLoad>> - Complexity = 413
                    // Dst: (COPY_TO_REGCLASS:{ *:[f128] } (LXVX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src), VRRC:{ *:[i32] })
/* 53974*/        0, /*End of Scope*/
/* 53975*/      0, // EndSwitchType
/* 53976*/    /*Scope*/ 60, /*->54037*/
/* 53977*/      OPC_CheckPredicate, 25, // Predicate_extload
/* 53979*/      OPC_CheckPredicate, 28, // Predicate_extloadf32
/* 53981*/      OPC_CheckType, MVT::f64,
/* 53983*/      OPC_Scope, 25, /*->54010*/ // 2 children in Scope
/* 53985*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 53987*/        OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 53990*/        OPC_EmitMergeInputChains1_0,
/* 53991*/        OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 53999*/        OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 54002*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                      MVT::f64, 2/*#Ops*/, 4, 5, 
                  // Src: (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>> - Complexity = 413
                  // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (DFLOADf32:{ *:[f32] } iaddrX4:{ *:[iPTR] }:$src), VSFRC:{ *:[i32] })
/* 54010*/      /*Scope*/ 25, /*->54036*/
/* 54011*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 54013*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54016*/        OPC_EmitMergeInputChains1_0,
/* 54017*/        OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 54025*/        OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 54028*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                      MVT::f64, 2/*#Ops*/, 4, 5, 
                  // Src: (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>> - Complexity = 413
                  // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XFLOADf32:{ *:[f32] } xoaddr:{ *:[iPTR] }:$src), VSFRC:{ *:[i32] })
/* 54036*/      0, /*End of Scope*/
/* 54037*/    /*Scope*/ 8|128,1/*136*/, /*->54175*/
/* 54039*/      OPC_CheckPredicate, 23, // Predicate_load
/* 54041*/      OPC_SwitchType /*2 cases */, 64, MVT::f32,// ->54108
/* 54044*/        OPC_Scope, 30, /*->54076*/ // 2 children in Scope
/* 54046*/          OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 54048*/          OPC_Scope, 12, /*->54062*/ // 2 children in Scope
/* 54050*/            OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54053*/            OPC_EmitMergeInputChains1_0,
/* 54054*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::LFS), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f32, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (LFS:{ *:[f32] } iaddr:{ *:[iPTR] }:$src)
/* 54062*/          /*Scope*/ 12, /*->54075*/
/* 54063*/            OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54066*/            OPC_EmitMergeInputChains1_0,
/* 54067*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::LFSX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f32, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (LFSX:{ *:[f32] } xaddr:{ *:[iPTR] }:$src)
/* 54075*/          0, /*End of Scope*/
/* 54076*/        /*Scope*/ 30, /*->54107*/
/* 54077*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 54079*/          OPC_Scope, 12, /*->54093*/ // 2 children in Scope
/* 54081*/            OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54084*/            OPC_EmitMergeInputChains1_0,
/* 54085*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::SPELWZ), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f32, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (SPELWZ:{ *:[f32] } iaddr:{ *:[iPTR] }:$src)
/* 54093*/          /*Scope*/ 12, /*->54106*/
/* 54094*/            OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54097*/            OPC_EmitMergeInputChains1_0,
/* 54098*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::SPELWZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f32, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (SPELWZX:{ *:[f32] } xaddr:{ *:[iPTR] }:$src)
/* 54106*/          0, /*End of Scope*/
/* 54107*/        0, /*End of Scope*/
/* 54108*/      /*SwitchType*/ 64, MVT::f64,// ->54174
/* 54110*/        OPC_Scope, 30, /*->54142*/ // 2 children in Scope
/* 54112*/          OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 54114*/          OPC_Scope, 12, /*->54128*/ // 2 children in Scope
/* 54116*/            OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54119*/            OPC_EmitMergeInputChains1_0,
/* 54120*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::LFD), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (LFD:{ *:[f64] } iaddr:{ *:[iPTR] }:$src)
/* 54128*/          /*Scope*/ 12, /*->54141*/
/* 54129*/            OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54132*/            OPC_EmitMergeInputChains1_0,
/* 54133*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::LFDX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (LFDX:{ *:[f64] } xaddr:{ *:[iPTR] }:$src)
/* 54141*/          0, /*End of Scope*/
/* 54142*/        /*Scope*/ 30, /*->54173*/
/* 54143*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 54145*/          OPC_Scope, 12, /*->54159*/ // 2 children in Scope
/* 54147*/            OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$dst #2 #3
/* 54150*/            OPC_EmitMergeInputChains1_0,
/* 54151*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EVLDD), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f64] } iaddr:{ *:[iPTR] }:$dst)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (EVLDD:{ *:[f64] } iaddr:{ *:[iPTR] }:$dst)
/* 54159*/          /*Scope*/ 12, /*->54172*/
/* 54160*/            OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54163*/            OPC_EmitMergeInputChains1_0,
/* 54164*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EVLDDX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[f64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                      // Dst: (EVLDDX:{ *:[f64] } xaddr:{ *:[iPTR] }:$src)
/* 54172*/          0, /*End of Scope*/
/* 54173*/        0, /*End of Scope*/
/* 54174*/      0, // EndSwitchType
/* 54175*/    /*Scope*/ 114, /*->54290*/
/* 54176*/      OPC_CheckPredicate, 25, // Predicate_extload
/* 54178*/      OPC_CheckPredicate, 28, // Predicate_extloadf32
/* 54180*/      OPC_CheckType, MVT::f64,
/* 54182*/      OPC_Scope, 52, /*->54236*/ // 2 children in Scope
/* 54184*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 54186*/        OPC_Scope, 23, /*->54211*/ // 2 children in Scope
/* 54188*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54191*/          OPC_EmitMergeInputChains1_0,
/* 54192*/          OPC_EmitNode1, TARGET_VAL(PPC::LFS), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 54200*/          OPC_EmitInteger, MVT::i32, PPC::F8RCRegClassID,
/* 54203*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::f64, 2/*#Ops*/, 4, 5, 
                    // Src: (ld:{ *:[f64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>> - Complexity = 13
                    // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (LFS:{ *:[f32] } iaddr:{ *:[iPTR] }:$src), F8RC:{ *:[i32] })
/* 54211*/        /*Scope*/ 23, /*->54235*/
/* 54212*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54215*/          OPC_EmitMergeInputChains1_0,
/* 54216*/          OPC_EmitNode1, TARGET_VAL(PPC::LFSX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 54224*/          OPC_EmitInteger, MVT::i32, PPC::F8RCRegClassID,
/* 54227*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::f64, 2/*#Ops*/, 4, 5, 
                    // Src: (ld:{ *:[f64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>> - Complexity = 13
                    // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (LFSX:{ *:[f32] } xaddr:{ *:[iPTR] }:$src), F8RC:{ *:[i32] })
/* 54235*/        0, /*End of Scope*/
/* 54236*/      /*Scope*/ 52, /*->54289*/
/* 54237*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 54239*/        OPC_Scope, 23, /*->54264*/ // 2 children in Scope
/* 54241*/          OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54244*/          OPC_EmitMergeInputChains1_0,
/* 54245*/          OPC_EmitNode1, TARGET_VAL(PPC::SPELWZ), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 54253*/          OPC_EmitInteger, MVT::i32, PPC::SPERCRegClassID,
/* 54256*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::f64, 2/*#Ops*/, 4, 5, 
                    // Src: (ld:{ *:[f64] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>> - Complexity = 13
                    // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (SPELWZ:{ *:[i32] } iaddr:{ *:[iPTR] }:$src), SPERC:{ *:[i32] })
/* 54264*/        /*Scope*/ 23, /*->54288*/
/* 54265*/          OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54268*/          OPC_EmitMergeInputChains1_0,
/* 54269*/          OPC_EmitNode1, TARGET_VAL(PPC::SPELWZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::i32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 54277*/          OPC_EmitInteger, MVT::i32, PPC::SPERCRegClassID,
/* 54280*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::f64, 2/*#Ops*/, 4, 5, 
                    // Src: (ld:{ *:[f64] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>> - Complexity = 13
                    // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (SPELWZX:{ *:[i32] } xaddr:{ *:[iPTR] }:$src), SPERC:{ *:[i32] })
/* 54288*/        0, /*End of Scope*/
/* 54289*/      0, /*End of Scope*/
/* 54290*/    /*Scope*/ 118|128,1/*246*/, /*->54538*/
/* 54292*/      OPC_CheckPredicate, 23, // Predicate_load
/* 54294*/      OPC_SwitchType /*5 cases */, 51, MVT::v2i64,// ->54348
/* 54297*/        OPC_Scope, 14, /*->54313*/ // 3 children in Scope
/* 54299*/          OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 54301*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54304*/          OPC_EmitMergeInputChains1_0,
/* 54305*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVD2X), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v2i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                    // Dst: (LXVD2X:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$src)
/* 54313*/        /*Scope*/ 16, /*->54330*/
/* 54314*/          OPC_CheckPredicate, 5, // Predicate_quadwOffsetLoad
/* 54316*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 54318*/          OPC_CheckComplexPat, /*CP*/4, /*#*/1, // SelectAddrImmX16:$src #2 #3
/* 54321*/          OPC_EmitMergeInputChains1_0,
/* 54322*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXV), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v2i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v2i64] } iaddrX16:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_quadwOffsetLoad>> - Complexity = 413
                    // Dst: (LXV:{ *:[v2i64] } memrix16:{ *:[iPTR] }:$src)
/* 54330*/        /*Scope*/ 16, /*->54347*/
/* 54331*/          OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetLoad
/* 54333*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 54335*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54338*/          OPC_EmitMergeInputChains1_0,
/* 54339*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v2i64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_nonQuadwOffsetLoad>> - Complexity = 413
                    // Dst: (LXVX:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$src)
/* 54347*/        0, /*End of Scope*/
/* 54348*/      /*SwitchType*/ 66, MVT::v4i32,// ->54416
/* 54350*/        OPC_Scope, 14, /*->54366*/ // 4 children in Scope
/* 54352*/          OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 54354*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54357*/          OPC_EmitMergeInputChains1_0,
/* 54358*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVW4X), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                    // Dst: (LXVW4X:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 54366*/        /*Scope*/ 16, /*->54383*/
/* 54367*/          OPC_CheckPredicate, 5, // Predicate_quadwOffsetLoad
/* 54369*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 54371*/          OPC_CheckComplexPat, /*CP*/4, /*#*/1, // SelectAddrImmX16:$src #2 #3
/* 54374*/          OPC_EmitMergeInputChains1_0,
/* 54375*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXV), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v4i32] } iaddrX16:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_quadwOffsetLoad>> - Complexity = 413
                    // Dst: (LXV:{ *:[v4i32] } memrix16:{ *:[iPTR] }:$src)
/* 54383*/        /*Scope*/ 16, /*->54400*/
/* 54384*/          OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetLoad
/* 54386*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 54388*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54391*/          OPC_EmitMergeInputChains1_0,
/* 54392*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_nonQuadwOffsetLoad>> - Complexity = 413
                    // Dst: (LXVX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 54400*/        /*Scope*/ 14, /*->54415*/
/* 54401*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 54403*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54406*/          OPC_EmitMergeInputChains1_0,
/* 54407*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LVX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4i32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                    // Dst: (LVX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 54415*/        0, /*End of Scope*/
/* 54416*/      /*SwitchType*/ 65, MVT::v2f64,// ->54483
/* 54418*/        OPC_Scope, 14, /*->54434*/ // 2 children in Scope
/* 54420*/          OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 54422*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54425*/          OPC_EmitMergeInputChains1_0,
/* 54426*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVD2X), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v2f64, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                    // Dst: (LXVD2X:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)
/* 54434*/        /*Scope*/ 47, /*->54482*/
/* 54435*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 54437*/          OPC_Scope, 12, /*->54451*/ // 3 children in Scope
/* 54439*/            OPC_CheckComplexPat, /*CP*/3, /*#*/1, // SelectAddrIdxX16:$src #2 #3
/* 54442*/            OPC_EmitMergeInputChains1_0,
/* 54443*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::v2f64, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[v2f64] } xaddrX16:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 413
                      // Dst: (LXVX:{ *:[v2f64] } xaddrX16:{ *:[iPTR] }:$src)
/* 54451*/          /*Scope*/ 14, /*->54466*/
/* 54452*/            OPC_CheckPredicate, 5, // Predicate_quadwOffsetLoad
/* 54454*/            OPC_CheckComplexPat, /*CP*/4, /*#*/1, // SelectAddrImmX16:$src #2 #3
/* 54457*/            OPC_EmitMergeInputChains1_0,
/* 54458*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::LXV), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::v2f64, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[v2f64] } iaddrX16:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_quadwOffsetLoad>> - Complexity = 413
                      // Dst: (LXV:{ *:[v2f64] } memrix16:{ *:[iPTR] }:$src)
/* 54466*/          /*Scope*/ 14, /*->54481*/
/* 54467*/            OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetLoad
/* 54469*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54472*/            OPC_EmitMergeInputChains1_0,
/* 54473*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::v2f64, 2/*#Ops*/, 2, 3, 
                      // Src: (ld:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_nonQuadwOffsetLoad>> - Complexity = 413
                      // Dst: (LXVX:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)
/* 54481*/          0, /*End of Scope*/
/* 54482*/        0, /*End of Scope*/
/* 54483*/      /*SwitchType*/ 36, MVT::v4f32,// ->54521
/* 54485*/        OPC_Scope, 16, /*->54503*/ // 2 children in Scope
/* 54487*/          OPC_CheckPredicate, 5, // Predicate_quadwOffsetLoad
/* 54489*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 54491*/          OPC_CheckComplexPat, /*CP*/4, /*#*/1, // SelectAddrImmX16:$src #2 #3
/* 54494*/          OPC_EmitMergeInputChains1_0,
/* 54495*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXV), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4f32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v4f32] } iaddrX16:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_quadwOffsetLoad>> - Complexity = 413
                    // Dst: (LXV:{ *:[v4f32] } memrix16:{ *:[iPTR] }:$src)
/* 54503*/        /*Scope*/ 16, /*->54520*/
/* 54504*/          OPC_CheckPredicate, 6, // Predicate_nonQuadwOffsetLoad
/* 54506*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 54508*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54511*/          OPC_EmitMergeInputChains1_0,
/* 54512*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::v4f32, 2/*#Ops*/, 2, 3, 
                    // Src: (ld:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>><<P:Predicate_nonQuadwOffsetLoad>> - Complexity = 413
                    // Dst: (LXVX:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$src)
/* 54520*/        0, /*End of Scope*/
/* 54521*/      /*SwitchType*/ 14, MVT::v4f64,// ->54537
/* 54523*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 54525*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54528*/        OPC_EmitMergeInputChains1_0,
/* 54529*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFDX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::v4f64, 2/*#Ops*/, 2, 3, 
                  // Src: (ld:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                  // Dst: (QVLFDX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 54537*/      0, // EndSwitchType
/* 54538*/    /*Scope*/ 20, /*->54559*/
/* 54539*/      OPC_CheckPredicate, 25, // Predicate_extload
/* 54541*/      OPC_CheckPredicate, 29, // Predicate_extloadv4f32
/* 54543*/      OPC_CheckType, MVT::v4f64,
/* 54545*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 54547*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54550*/      OPC_EmitMergeInputChains1_0,
/* 54551*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFSX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadv4f32>> - Complexity = 13
                // Dst: (QVLFSX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 54559*/    /*Scope*/ 18, /*->54578*/
/* 54560*/      OPC_CheckPredicate, 23, // Predicate_load
/* 54562*/      OPC_CheckType, MVT::v4f32,
/* 54564*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 54566*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 54569*/      OPC_EmitMergeInputChains1_0,
/* 54570*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFSXs), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4f32, 2/*#Ops*/, 2, 3, 
                // Src: (ld:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>> - Complexity = 13
                // Dst: (QVLFSXs:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$src)
/* 54578*/    0, /*End of Scope*/
/* 54579*/  /*SwitchOpcode*/ 3|128,1/*131*/, TARGET_VAL(ISD::ATOMIC_LOAD),// ->54714
/* 54583*/    OPC_RecordMemRef,
/* 54584*/    OPC_RecordNode, // #0 = 'atomic_load' chained node
/* 54585*/    OPC_RecordChild1, // #1 = $src
/* 54586*/    OPC_SwitchType /*2 cases */, 30, MVT::i64,// ->54619
/* 54589*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_64
/* 54591*/      OPC_Scope, 12, /*->54605*/ // 2 children in Scope
/* 54593*/        OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 54596*/        OPC_EmitMergeInputChains1_0,
/* 54597*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LD), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_64>> - Complexity = 13
                  // Dst: (LD:{ *:[i64] } memrix:{ *:[iPTR] }:$src)
/* 54605*/      /*Scope*/ 12, /*->54618*/
/* 54606*/        OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/* 54609*/        OPC_EmitMergeInputChains1_0,
/* 54610*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LDX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_64>> - Complexity = 13
                  // Dst: (LDX:{ *:[i64] } memrr:{ *:[iPTR] }:$src)
/* 54618*/      0, /*End of Scope*/
/* 54619*/    /*SwitchType*/ 92, MVT::i32,// ->54713
/* 54621*/      OPC_Scope, 14, /*->54637*/ // 6 children in Scope
/* 54623*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_8
/* 54625*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54628*/        OPC_EmitMergeInputChains1_0,
/* 54629*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZ), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_8>> - Complexity = 13
                  // Dst: (LBZ:{ *:[i32] } memri:{ *:[iPTR] }:$src)
/* 54637*/      /*Scope*/ 14, /*->54652*/
/* 54638*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_16
/* 54640*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54643*/        OPC_EmitMergeInputChains1_0,
/* 54644*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZ), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_16>> - Complexity = 13
                  // Dst: (LHZ:{ *:[i32] } memri:{ *:[iPTR] }:$src)
/* 54652*/      /*Scope*/ 14, /*->54667*/
/* 54653*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_32
/* 54655*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$src #2 #3
/* 54658*/        OPC_EmitMergeInputChains1_0,
/* 54659*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZ), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i32] } iaddr:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_32>> - Complexity = 13
                  // Dst: (LWZ:{ *:[i32] } memri:{ *:[iPTR] }:$src)
/* 54667*/      /*Scope*/ 14, /*->54682*/
/* 54668*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_8
/* 54670*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54673*/        OPC_EmitMergeInputChains1_0,
/* 54674*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LBZX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_8>> - Complexity = 13
                  // Dst: (LBZX:{ *:[i32] } memrr:{ *:[iPTR] }:$src)
/* 54682*/      /*Scope*/ 14, /*->54697*/
/* 54683*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_16
/* 54685*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54688*/        OPC_EmitMergeInputChains1_0,
/* 54689*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LHZX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_16>> - Complexity = 13
                  // Dst: (LHZX:{ *:[i32] } memrr:{ *:[iPTR] }:$src)
/* 54697*/      /*Scope*/ 14, /*->54712*/
/* 54698*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_32
/* 54700*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/* 54703*/        OPC_EmitMergeInputChains1_0,
/* 54704*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZX), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 2, 3, 
                  // Src: (atomic_load:{ *:[i32] } xaddr:{ *:[iPTR] }:$src)<<P:Predicate_atomic_load_32>> - Complexity = 13
                  // Dst: (LWZX:{ *:[i32] } memrr:{ *:[iPTR] }:$src)
/* 54712*/      0, /*End of Scope*/
/* 54713*/    0, // EndSwitchType
/* 54714*/  /*SwitchOpcode*/ 6|128,1/*134*/, TARGET_VAL(ISD::ATOMIC_STORE),// ->54852
/* 54718*/    OPC_RecordMemRef,
/* 54719*/    OPC_RecordNode, // #0 = 'atomic_store' chained node
/* 54720*/    OPC_RecordChild1, // #1 = $ptr
/* 54721*/    OPC_RecordChild2, // #2 = $val
/* 54722*/    OPC_Scope, 32, /*->54756*/ // 2 children in Scope
/* 54724*/      OPC_CheckChild2Type, MVT::i64,
/* 54726*/      OPC_CheckPredicate, 30, // Predicate_atomic_store_64
/* 54728*/      OPC_Scope, 12, /*->54742*/ // 2 children in Scope
/* 54730*/        OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$ptr #3 #4
/* 54733*/        OPC_EmitMergeInputChains1_0,
/* 54734*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STD), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store iaddrX4:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$val)<<P:Predicate_atomic_store_64>> - Complexity = 13
                  // Dst: (STD g8rc:{ *:[i64] }:$val, memrix:{ *:[iPTR] }:$ptr)
/* 54742*/      /*Scope*/ 12, /*->54755*/
/* 54743*/        OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$ptr #3 #4
/* 54746*/        OPC_EmitMergeInputChains1_0,
/* 54747*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STDX), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store xaddrX4:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$val)<<P:Predicate_atomic_store_64>> - Complexity = 13
                  // Dst: (STDX g8rc:{ *:[i64] }:$val, memrr:{ *:[iPTR] }:$ptr)
/* 54755*/      0, /*End of Scope*/
/* 54756*/    /*Scope*/ 94, /*->54851*/
/* 54757*/      OPC_CheckChild2Type, MVT::i32,
/* 54759*/      OPC_Scope, 14, /*->54775*/ // 6 children in Scope
/* 54761*/        OPC_CheckPredicate, 2, // Predicate_atomic_store_8
/* 54763*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$ptr #3 #4
/* 54766*/        OPC_EmitMergeInputChains1_0,
/* 54767*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STB), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store iaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$val)<<P:Predicate_atomic_store_8>> - Complexity = 13
                  // Dst: (STB gprc:{ *:[i32] }:$val, memri:{ *:[iPTR] }:$ptr)
/* 54775*/      /*Scope*/ 14, /*->54790*/
/* 54776*/        OPC_CheckPredicate, 3, // Predicate_atomic_store_16
/* 54778*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$ptr #3 #4
/* 54781*/        OPC_EmitMergeInputChains1_0,
/* 54782*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STH), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store iaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$val)<<P:Predicate_atomic_store_16>> - Complexity = 13
                  // Dst: (STH gprc:{ *:[i32] }:$val, memri:{ *:[iPTR] }:$ptr)
/* 54790*/      /*Scope*/ 14, /*->54805*/
/* 54791*/        OPC_CheckPredicate, 8, // Predicate_atomic_store_32
/* 54793*/        OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$ptr #3 #4
/* 54796*/        OPC_EmitMergeInputChains1_0,
/* 54797*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STW), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store iaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$val)<<P:Predicate_atomic_store_32>> - Complexity = 13
                  // Dst: (STW gprc:{ *:[i32] }:$val, memri:{ *:[iPTR] }:$ptr)
/* 54805*/      /*Scope*/ 14, /*->54820*/
/* 54806*/        OPC_CheckPredicate, 2, // Predicate_atomic_store_8
/* 54808*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$ptr #3 #4
/* 54811*/        OPC_EmitMergeInputChains1_0,
/* 54812*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STBX), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store xaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$val)<<P:Predicate_atomic_store_8>> - Complexity = 13
                  // Dst: (STBX gprc:{ *:[i32] }:$val, memrr:{ *:[iPTR] }:$ptr)
/* 54820*/      /*Scope*/ 14, /*->54835*/
/* 54821*/        OPC_CheckPredicate, 3, // Predicate_atomic_store_16
/* 54823*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$ptr #3 #4
/* 54826*/        OPC_EmitMergeInputChains1_0,
/* 54827*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STHX), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store xaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$val)<<P:Predicate_atomic_store_16>> - Complexity = 13
                  // Dst: (STHX gprc:{ *:[i32] }:$val, memrr:{ *:[iPTR] }:$ptr)
/* 54835*/      /*Scope*/ 14, /*->54850*/
/* 54836*/        OPC_CheckPredicate, 8, // Predicate_atomic_store_32
/* 54838*/        OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$ptr #3 #4
/* 54841*/        OPC_EmitMergeInputChains1_0,
/* 54842*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STWX), 0|OPFL_Chain|OPFL_MemRefs,
                      3/*#Ops*/, 2, 3, 4, 
                  // Src: (atomic_store xaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$val)<<P:Predicate_atomic_store_32>> - Complexity = 13
                  // Dst: (STWX gprc:{ *:[i32] }:$val, memrr:{ *:[iPTR] }:$ptr)
/* 54850*/      0, /*End of Scope*/
/* 54851*/    0, /*End of Scope*/
/* 54852*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_ADD),// ->54934
/* 54855*/    OPC_RecordMemRef,
/* 54856*/    OPC_RecordNode, // #0 = 'atomic_load_add' chained node
/* 54857*/    OPC_RecordChild1, // #1 = $ptr
/* 54858*/    OPC_RecordChild2, // #2 = $incr
/* 54859*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->54915
/* 54862*/      OPC_Scope, 16, /*->54880*/ // 3 children in Scope
/* 54864*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_add_8
/* 54866*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 54869*/        OPC_EmitMergeInputChains1_0,
/* 54870*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_ADD_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_add:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_add_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_ADD_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 54880*/      /*Scope*/ 16, /*->54897*/
/* 54881*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_add_16
/* 54883*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 54886*/        OPC_EmitMergeInputChains1_0,
/* 54887*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_ADD_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_add:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_add_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_ADD_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 54897*/      /*Scope*/ 16, /*->54914*/
/* 54898*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_add_32
/* 54900*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 54903*/        OPC_EmitMergeInputChains1_0,
/* 54904*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_ADD_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_add:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_add_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_ADD_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 54914*/      0, /*End of Scope*/
/* 54915*/    /*SwitchType*/ 16, MVT::i64,// ->54933
/* 54917*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_add_64
/* 54919*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 54922*/      OPC_EmitMergeInputChains1_0,
/* 54923*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_ADD_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_add:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_add_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_ADD_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 54933*/    0, // EndSwitchType
/* 54934*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_SUB),// ->55016
/* 54937*/    OPC_RecordMemRef,
/* 54938*/    OPC_RecordNode, // #0 = 'atomic_load_sub' chained node
/* 54939*/    OPC_RecordChild1, // #1 = $ptr
/* 54940*/    OPC_RecordChild2, // #2 = $incr
/* 54941*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->54997
/* 54944*/      OPC_Scope, 16, /*->54962*/ // 3 children in Scope
/* 54946*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_sub_8
/* 54948*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 54951*/        OPC_EmitMergeInputChains1_0,
/* 54952*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_SUB_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_sub:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_sub_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_SUB_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 54962*/      /*Scope*/ 16, /*->54979*/
/* 54963*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_sub_16
/* 54965*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 54968*/        OPC_EmitMergeInputChains1_0,
/* 54969*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_SUB_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_sub:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_sub_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_SUB_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 54979*/      /*Scope*/ 16, /*->54996*/
/* 54980*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_sub_32
/* 54982*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 54985*/        OPC_EmitMergeInputChains1_0,
/* 54986*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_SUB_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_sub:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_sub_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_SUB_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 54996*/      0, /*End of Scope*/
/* 54997*/    /*SwitchType*/ 16, MVT::i64,// ->55015
/* 54999*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_sub_64
/* 55001*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55004*/      OPC_EmitMergeInputChains1_0,
/* 55005*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_SUB_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_sub:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_sub_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_SUB_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55015*/    0, // EndSwitchType
/* 55016*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_AND),// ->55098
/* 55019*/    OPC_RecordMemRef,
/* 55020*/    OPC_RecordNode, // #0 = 'atomic_load_and' chained node
/* 55021*/    OPC_RecordChild1, // #1 = $ptr
/* 55022*/    OPC_RecordChild2, // #2 = $incr
/* 55023*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55079
/* 55026*/      OPC_Scope, 16, /*->55044*/ // 3 children in Scope
/* 55028*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_and_8
/* 55030*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55033*/        OPC_EmitMergeInputChains1_0,
/* 55034*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_AND_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_and:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_and_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_AND_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55044*/      /*Scope*/ 16, /*->55061*/
/* 55045*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_and_16
/* 55047*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55050*/        OPC_EmitMergeInputChains1_0,
/* 55051*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_AND_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_and:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_and_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_AND_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55061*/      /*Scope*/ 16, /*->55078*/
/* 55062*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_and_32
/* 55064*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55067*/        OPC_EmitMergeInputChains1_0,
/* 55068*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_AND_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_and:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_and_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_AND_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55078*/      0, /*End of Scope*/
/* 55079*/    /*SwitchType*/ 16, MVT::i64,// ->55097
/* 55081*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_and_64
/* 55083*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55086*/      OPC_EmitMergeInputChains1_0,
/* 55087*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_AND_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_and:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_and_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_AND_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55097*/    0, // EndSwitchType
/* 55098*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_OR),// ->55180
/* 55101*/    OPC_RecordMemRef,
/* 55102*/    OPC_RecordNode, // #0 = 'atomic_load_or' chained node
/* 55103*/    OPC_RecordChild1, // #1 = $ptr
/* 55104*/    OPC_RecordChild2, // #2 = $incr
/* 55105*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55161
/* 55108*/      OPC_Scope, 16, /*->55126*/ // 3 children in Scope
/* 55110*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_or_8
/* 55112*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55115*/        OPC_EmitMergeInputChains1_0,
/* 55116*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_OR_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_or:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_or_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_OR_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55126*/      /*Scope*/ 16, /*->55143*/
/* 55127*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_or_16
/* 55129*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55132*/        OPC_EmitMergeInputChains1_0,
/* 55133*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_OR_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_or:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_or_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_OR_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55143*/      /*Scope*/ 16, /*->55160*/
/* 55144*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_or_32
/* 55146*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55149*/        OPC_EmitMergeInputChains1_0,
/* 55150*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_OR_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_or:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_or_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_OR_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55160*/      0, /*End of Scope*/
/* 55161*/    /*SwitchType*/ 16, MVT::i64,// ->55179
/* 55163*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_or_64
/* 55165*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55168*/      OPC_EmitMergeInputChains1_0,
/* 55169*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_OR_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_or:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_or_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_OR_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55179*/    0, // EndSwitchType
/* 55180*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_XOR),// ->55262
/* 55183*/    OPC_RecordMemRef,
/* 55184*/    OPC_RecordNode, // #0 = 'atomic_load_xor' chained node
/* 55185*/    OPC_RecordChild1, // #1 = $ptr
/* 55186*/    OPC_RecordChild2, // #2 = $incr
/* 55187*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55243
/* 55190*/      OPC_Scope, 16, /*->55208*/ // 3 children in Scope
/* 55192*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_xor_8
/* 55194*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55197*/        OPC_EmitMergeInputChains1_0,
/* 55198*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_XOR_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_xor:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_xor_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_XOR_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55208*/      /*Scope*/ 16, /*->55225*/
/* 55209*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_xor_16
/* 55211*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55214*/        OPC_EmitMergeInputChains1_0,
/* 55215*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_XOR_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_xor:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_xor_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_XOR_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55225*/      /*Scope*/ 16, /*->55242*/
/* 55226*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_xor_32
/* 55228*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55231*/        OPC_EmitMergeInputChains1_0,
/* 55232*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_XOR_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_xor:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_xor_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_XOR_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55242*/      0, /*End of Scope*/
/* 55243*/    /*SwitchType*/ 16, MVT::i64,// ->55261
/* 55245*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_xor_64
/* 55247*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55250*/      OPC_EmitMergeInputChains1_0,
/* 55251*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_XOR_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_xor:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_xor_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_XOR_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55261*/    0, // EndSwitchType
/* 55262*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_NAND),// ->55344
/* 55265*/    OPC_RecordMemRef,
/* 55266*/    OPC_RecordNode, // #0 = 'atomic_load_nand' chained node
/* 55267*/    OPC_RecordChild1, // #1 = $ptr
/* 55268*/    OPC_RecordChild2, // #2 = $incr
/* 55269*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55325
/* 55272*/      OPC_Scope, 16, /*->55290*/ // 3 children in Scope
/* 55274*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_nand_8
/* 55276*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55279*/        OPC_EmitMergeInputChains1_0,
/* 55280*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_NAND_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_nand:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_nand_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_NAND_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55290*/      /*Scope*/ 16, /*->55307*/
/* 55291*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_nand_16
/* 55293*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55296*/        OPC_EmitMergeInputChains1_0,
/* 55297*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_NAND_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_nand:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_nand_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_NAND_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55307*/      /*Scope*/ 16, /*->55324*/
/* 55308*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_nand_32
/* 55310*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55313*/        OPC_EmitMergeInputChains1_0,
/* 55314*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_NAND_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_nand:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_nand_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_NAND_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55324*/      0, /*End of Scope*/
/* 55325*/    /*SwitchType*/ 16, MVT::i64,// ->55343
/* 55327*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_nand_64
/* 55329*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55332*/      OPC_EmitMergeInputChains1_0,
/* 55333*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_NAND_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_nand:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_nand_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_NAND_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55343*/    0, // EndSwitchType
/* 55344*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_MIN),// ->55426
/* 55347*/    OPC_RecordMemRef,
/* 55348*/    OPC_RecordNode, // #0 = 'atomic_load_min' chained node
/* 55349*/    OPC_RecordChild1, // #1 = $ptr
/* 55350*/    OPC_RecordChild2, // #2 = $incr
/* 55351*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55407
/* 55354*/      OPC_Scope, 16, /*->55372*/ // 3 children in Scope
/* 55356*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_min_8
/* 55358*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55361*/        OPC_EmitMergeInputChains1_0,
/* 55362*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MIN_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_min:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_min_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_MIN_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55372*/      /*Scope*/ 16, /*->55389*/
/* 55373*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_min_16
/* 55375*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55378*/        OPC_EmitMergeInputChains1_0,
/* 55379*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MIN_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_min:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_min_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_MIN_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55389*/      /*Scope*/ 16, /*->55406*/
/* 55390*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_min_32
/* 55392*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55395*/        OPC_EmitMergeInputChains1_0,
/* 55396*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MIN_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_min:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_min_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_MIN_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55406*/      0, /*End of Scope*/
/* 55407*/    /*SwitchType*/ 16, MVT::i64,// ->55425
/* 55409*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_min_64
/* 55411*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55414*/      OPC_EmitMergeInputChains1_0,
/* 55415*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MIN_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_min:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_min_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_MIN_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55425*/    0, // EndSwitchType
/* 55426*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_MAX),// ->55508
/* 55429*/    OPC_RecordMemRef,
/* 55430*/    OPC_RecordNode, // #0 = 'atomic_load_max' chained node
/* 55431*/    OPC_RecordChild1, // #1 = $ptr
/* 55432*/    OPC_RecordChild2, // #2 = $incr
/* 55433*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55489
/* 55436*/      OPC_Scope, 16, /*->55454*/ // 3 children in Scope
/* 55438*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_max_8
/* 55440*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55443*/        OPC_EmitMergeInputChains1_0,
/* 55444*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MAX_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_max:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_max_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_MAX_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55454*/      /*Scope*/ 16, /*->55471*/
/* 55455*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_max_16
/* 55457*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55460*/        OPC_EmitMergeInputChains1_0,
/* 55461*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MAX_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_max:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_max_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_MAX_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55471*/      /*Scope*/ 16, /*->55488*/
/* 55472*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_max_32
/* 55474*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55477*/        OPC_EmitMergeInputChains1_0,
/* 55478*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MAX_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_max:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_max_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_MAX_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55488*/      0, /*End of Scope*/
/* 55489*/    /*SwitchType*/ 16, MVT::i64,// ->55507
/* 55491*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_max_64
/* 55493*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55496*/      OPC_EmitMergeInputChains1_0,
/* 55497*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_MAX_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_max:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_max_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_MAX_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55507*/    0, // EndSwitchType
/* 55508*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_UMIN),// ->55590
/* 55511*/    OPC_RecordMemRef,
/* 55512*/    OPC_RecordNode, // #0 = 'atomic_load_umin' chained node
/* 55513*/    OPC_RecordChild1, // #1 = $ptr
/* 55514*/    OPC_RecordChild2, // #2 = $incr
/* 55515*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55571
/* 55518*/      OPC_Scope, 16, /*->55536*/ // 3 children in Scope
/* 55520*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_umin_8
/* 55522*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55525*/        OPC_EmitMergeInputChains1_0,
/* 55526*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMIN_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_umin:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_umin_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_UMIN_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55536*/      /*Scope*/ 16, /*->55553*/
/* 55537*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_umin_16
/* 55539*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55542*/        OPC_EmitMergeInputChains1_0,
/* 55543*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMIN_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_umin:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_umin_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_UMIN_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55553*/      /*Scope*/ 16, /*->55570*/
/* 55554*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_umin_32
/* 55556*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55559*/        OPC_EmitMergeInputChains1_0,
/* 55560*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMIN_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_umin:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_umin_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_UMIN_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55570*/      0, /*End of Scope*/
/* 55571*/    /*SwitchType*/ 16, MVT::i64,// ->55589
/* 55573*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_umin_64
/* 55575*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55578*/      OPC_EmitMergeInputChains1_0,
/* 55579*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMIN_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_umin:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_umin_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_UMIN_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55589*/    0, // EndSwitchType
/* 55590*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_LOAD_UMAX),// ->55672
/* 55593*/    OPC_RecordMemRef,
/* 55594*/    OPC_RecordNode, // #0 = 'atomic_load_umax' chained node
/* 55595*/    OPC_RecordChild1, // #1 = $ptr
/* 55596*/    OPC_RecordChild2, // #2 = $incr
/* 55597*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55653
/* 55600*/      OPC_Scope, 16, /*->55618*/ // 3 children in Scope
/* 55602*/        OPC_CheckPredicate, 2, // Predicate_atomic_load_umax_8
/* 55604*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55607*/        OPC_EmitMergeInputChains1_0,
/* 55608*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMAX_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_umax:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_umax_8>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_UMAX_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55618*/      /*Scope*/ 16, /*->55635*/
/* 55619*/        OPC_CheckPredicate, 3, // Predicate_atomic_load_umax_16
/* 55621*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55624*/        OPC_EmitMergeInputChains1_0,
/* 55625*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMAX_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_umax:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_umax_16>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_UMAX_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55635*/      /*Scope*/ 16, /*->55652*/
/* 55636*/        OPC_CheckPredicate, 8, // Predicate_atomic_load_umax_32
/* 55638*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55641*/        OPC_EmitMergeInputChains1_0,
/* 55642*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMAX_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_load_umax:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)<<P:Predicate_atomic_load_umax_32>> - Complexity = 13
                  // Dst: (ATOMIC_LOAD_UMAX_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$incr)
/* 55652*/      0, /*End of Scope*/
/* 55653*/    /*SwitchType*/ 16, MVT::i64,// ->55671
/* 55655*/      OPC_CheckPredicate, 30, // Predicate_atomic_load_umax_64
/* 55657*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55660*/      OPC_EmitMergeInputChains1_0,
/* 55661*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_LOAD_UMAX_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_load_umax:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)<<P:Predicate_atomic_load_umax_64>> - Complexity = 13
                // Dst: (ATOMIC_LOAD_UMAX_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$incr)
/* 55671*/    0, // EndSwitchType
/* 55672*/  /*SwitchOpcode*/ 84, TARGET_VAL(ISD::ATOMIC_CMP_SWAP),// ->55759
/* 55675*/    OPC_RecordMemRef,
/* 55676*/    OPC_RecordNode, // #0 = 'atomic_cmp_swap' chained node
/* 55677*/    OPC_RecordChild1, // #1 = $ptr
/* 55678*/    OPC_RecordChild2, // #2 = $old
/* 55679*/    OPC_RecordChild3, // #3 = $new
/* 55680*/    OPC_SwitchType /*2 cases */, 56, MVT::i32,// ->55739
/* 55683*/      OPC_Scope, 17, /*->55702*/ // 3 children in Scope
/* 55685*/        OPC_CheckPredicate, 2, // Predicate_atomic_cmp_swap_8
/* 55687*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #4 #5
/* 55690*/        OPC_EmitMergeInputChains1_0,
/* 55691*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_CMP_SWAP_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 4/*#Ops*/, 4, 5, 2, 3, 
                  // Src: (atomic_cmp_swap:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)<<P:Predicate_atomic_cmp_swap_8>> - Complexity = 13
                  // Dst: (ATOMIC_CMP_SWAP_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)
/* 55702*/      /*Scope*/ 17, /*->55720*/
/* 55703*/        OPC_CheckPredicate, 3, // Predicate_atomic_cmp_swap_16
/* 55705*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #4 #5
/* 55708*/        OPC_EmitMergeInputChains1_0,
/* 55709*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_CMP_SWAP_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 4/*#Ops*/, 4, 5, 2, 3, 
                  // Src: (atomic_cmp_swap:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)<<P:Predicate_atomic_cmp_swap_16>> - Complexity = 13
                  // Dst: (ATOMIC_CMP_SWAP_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)
/* 55720*/      /*Scope*/ 17, /*->55738*/
/* 55721*/        OPC_CheckPredicate, 8, // Predicate_atomic_cmp_swap_32
/* 55723*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #4 #5
/* 55726*/        OPC_EmitMergeInputChains1_0,
/* 55727*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_CMP_SWAP_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 4/*#Ops*/, 4, 5, 2, 3, 
                  // Src: (atomic_cmp_swap:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)<<P:Predicate_atomic_cmp_swap_32>> - Complexity = 13
                  // Dst: (ATOMIC_CMP_SWAP_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)
/* 55738*/      0, /*End of Scope*/
/* 55739*/    /*SwitchType*/ 17, MVT::i64,// ->55758
/* 55741*/      OPC_CheckPredicate, 30, // Predicate_atomic_cmp_swap_64
/* 55743*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #4 #5
/* 55746*/      OPC_EmitMergeInputChains1_0,
/* 55747*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_CMP_SWAP_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 4/*#Ops*/, 4, 5, 2, 3, 
                // Src: (atomic_cmp_swap:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$old, i64:{ *:[i64] }:$new)<<P:Predicate_atomic_cmp_swap_64>> - Complexity = 13
                // Dst: (ATOMIC_CMP_SWAP_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$old, i64:{ *:[i64] }:$new)
/* 55758*/    0, // EndSwitchType
/* 55759*/  /*SwitchOpcode*/ 79, TARGET_VAL(ISD::ATOMIC_SWAP),// ->55841
/* 55762*/    OPC_RecordMemRef,
/* 55763*/    OPC_RecordNode, // #0 = 'atomic_swap' chained node
/* 55764*/    OPC_RecordChild1, // #1 = $ptr
/* 55765*/    OPC_RecordChild2, // #2 = $new
/* 55766*/    OPC_SwitchType /*2 cases */, 53, MVT::i32,// ->55822
/* 55769*/      OPC_Scope, 16, /*->55787*/ // 3 children in Scope
/* 55771*/        OPC_CheckPredicate, 2, // Predicate_atomic_swap_8
/* 55773*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55776*/        OPC_EmitMergeInputChains1_0,
/* 55777*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_SWAP_I8), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_swap:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$new)<<P:Predicate_atomic_swap_8>> - Complexity = 13
                  // Dst: (ATOMIC_SWAP_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$new)
/* 55787*/      /*Scope*/ 16, /*->55804*/
/* 55788*/        OPC_CheckPredicate, 3, // Predicate_atomic_swap_16
/* 55790*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55793*/        OPC_EmitMergeInputChains1_0,
/* 55794*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_SWAP_I16), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_swap:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$new)<<P:Predicate_atomic_swap_16>> - Complexity = 13
                  // Dst: (ATOMIC_SWAP_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$new)
/* 55804*/      /*Scope*/ 16, /*->55821*/
/* 55805*/        OPC_CheckPredicate, 8, // Predicate_atomic_swap_32
/* 55807*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55810*/        OPC_EmitMergeInputChains1_0,
/* 55811*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_SWAP_I32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::i32, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                  // Src: (atomic_swap:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$new)<<P:Predicate_atomic_swap_32>> - Complexity = 13
                  // Dst: (ATOMIC_SWAP_I32:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$new)
/* 55821*/      0, /*End of Scope*/
/* 55822*/    /*SwitchType*/ 16, MVT::i64,// ->55840
/* 55824*/      OPC_CheckPredicate, 30, // Predicate_atomic_swap_64
/* 55826*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #3 #4
/* 55829*/      OPC_EmitMergeInputChains1_0,
/* 55830*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_SWAP_I64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, MVT::i32, 3/*#Ops*/, 3, 4, 2, 
                // Src: (atomic_swap:{ *:[i64] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$new)<<P:Predicate_atomic_swap_64>> - Complexity = 13
                // Dst: (ATOMIC_SWAP_I64:{ *:[i64] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i64:{ *:[i64] }:$new)
/* 55840*/    0, // EndSwitchType
/* 55841*/  /*SwitchOpcode*/ 44, TARGET_VAL(PPCISD::DYNALLOC),// ->55888
/* 55844*/    OPC_RecordNode, // #0 = 'PPCdynalloc' chained node
/* 55845*/    OPC_RecordChild1, // #1 = $negsize
/* 55846*/    OPC_SwitchType /*2 cases */, 18, MVT::i32,// ->55867
/* 55849*/      OPC_CheckChild1Type, MVT::i32,
/* 55851*/      OPC_RecordChild2, // #2 = $fpsi
/* 55852*/      OPC_CheckChild2Type, MVT::iPTR,
/* 55854*/      OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$fpsi #3 #4
/* 55857*/      OPC_EmitMergeInputChains1_0,
/* 55858*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DYNALLOC), 0|OPFL_Chain,
                    MVT::i32, 3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCdynalloc:{ *:[i32] } i32:{ *:[i32] }:$negsize, iaddr:{ *:[iPTR] }:$fpsi) - Complexity = 12
                // Dst: (DYNALLOC:{ *:[i32] } i32:{ *:[i32] }:$negsize, iaddr:{ *:[iPTR] }:$fpsi)
/* 55867*/    /*SwitchType*/ 18, MVT::i64,// ->55887
/* 55869*/      OPC_CheckChild1Type, MVT::i64,
/* 55871*/      OPC_RecordChild2, // #2 = $fpsi
/* 55872*/      OPC_CheckChild2Type, MVT::iPTR,
/* 55874*/      OPC_CheckComplexPat, /*CP*/5, /*#*/2, // SelectAddrImm:$fpsi #3 #4
/* 55877*/      OPC_EmitMergeInputChains1_0,
/* 55878*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DYNALLOC8), 0|OPFL_Chain,
                    MVT::i64, 3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCdynalloc:{ *:[i64] } i64:{ *:[i64] }:$negsize, iaddr:{ *:[iPTR] }:$fpsi) - Complexity = 12
                // Dst: (DYNALLOC8:{ *:[i64] } i64:{ *:[i64] }:$negsize, iaddr:{ *:[iPTR] }:$fpsi)
/* 55887*/    0, // EndSwitchType
/* 55888*/  /*SwitchOpcode*/ 34, TARGET_VAL(PPCISD::DYNAREAOFFSET),// ->55925
/* 55891*/    OPC_RecordNode, // #0 = 'PPCdynareaoffset' chained node
/* 55892*/    OPC_RecordChild1, // #1 = $fpsi
/* 55893*/    OPC_CheckChild1Type, MVT::iPTR,
/* 55895*/    OPC_SwitchType /*2 cases */, 12, MVT::i32,// ->55910
/* 55898*/      OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$fpsi #2 #3
/* 55901*/      OPC_EmitMergeInputChains1_0,
/* 55902*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DYNAREAOFFSET), 0|OPFL_Chain,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (PPCdynareaoffset:{ *:[i32] } iaddr:{ *:[iPTR] }:$fpsi) - Complexity = 12
                // Dst: (DYNAREAOFFSET:{ *:[i32] } iaddr:{ *:[iPTR] }:$fpsi)
/* 55910*/    /*SwitchType*/ 12, MVT::i64,// ->55924
/* 55912*/      OPC_CheckComplexPat, /*CP*/5, /*#*/1, // SelectAddrImm:$fpsi #2 #3
/* 55915*/      OPC_EmitMergeInputChains1_0,
/* 55916*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DYNAREAOFFSET8), 0|OPFL_Chain,
                    MVT::i64, 2/*#Ops*/, 2, 3, 
                // Src: (PPCdynareaoffset:{ *:[i64] } iaddr:{ *:[iPTR] }:$fpsi) - Complexity = 12
                // Dst: (DYNAREAOFFSET8:{ *:[i64] } iaddr:{ *:[iPTR] }:$fpsi)
/* 55924*/    0, // EndSwitchType
/* 55925*/  /*SwitchOpcode*/ 60, TARGET_VAL(PPCISD::LBRX),// ->55988
/* 55928*/    OPC_RecordMemRef,
/* 55929*/    OPC_RecordNode, // #0 = 'PPClbrx' chained node
/* 55930*/    OPC_RecordChild1, // #1 = $src
/* 55931*/    OPC_MoveChild2,
/* 55932*/    OPC_Scope, 17, /*->55951*/ // 3 children in Scope
/* 55934*/      OPC_CheckValueType, MVT::i16,
/* 55936*/      OPC_MoveParent,
/* 55937*/      OPC_CheckType, MVT::i32,
/* 55939*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 55942*/      OPC_EmitMergeInputChains1_0,
/* 55943*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LHBRX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (PPClbrx:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src, i16:{ *:[Other] }) - Complexity = 12
                // Dst: (LHBRX:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)
/* 55951*/    /*Scope*/ 17, /*->55969*/
/* 55952*/      OPC_CheckValueType, MVT::i32,
/* 55954*/      OPC_MoveParent,
/* 55955*/      OPC_CheckType, MVT::i32,
/* 55957*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 55960*/      OPC_EmitMergeInputChains1_0,
/* 55961*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LWBRX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 2, 3, 
                // Src: (PPClbrx:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src, i32:{ *:[Other] }) - Complexity = 12
                // Dst: (LWBRX:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)
/* 55969*/    /*Scope*/ 17, /*->55987*/
/* 55970*/      OPC_CheckValueType, MVT::i64,
/* 55972*/      OPC_MoveParent,
/* 55973*/      OPC_CheckType, MVT::i64,
/* 55975*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 55978*/      OPC_EmitMergeInputChains1_0,
/* 55979*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LDBRX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::i64, 2/*#Ops*/, 2, 3, 
                // Src: (PPClbrx:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src, i64:{ *:[Other] }) - Complexity = 12
                // Dst: (LDBRX:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)
/* 55987*/    0, /*End of Scope*/
/* 55988*/  /*SwitchOpcode*/ 63, TARGET_VAL(PPCISD::STBRX),// ->56054
/* 55991*/    OPC_RecordNode, // #0 = 'PPCstbrx' chained node
/* 55992*/    OPC_RecordChild1, // #1 = $rS
/* 55993*/    OPC_Scope, 38, /*->56033*/ // 2 children in Scope
/* 55995*/      OPC_CheckChild1Type, MVT::i32,
/* 55997*/      OPC_RecordChild2, // #2 = $dst
/* 55998*/      OPC_MoveChild3,
/* 55999*/      OPC_Scope, 15, /*->56016*/ // 2 children in Scope
/* 56001*/        OPC_CheckValueType, MVT::i16,
/* 56003*/        OPC_MoveParent,
/* 56004*/        OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/* 56007*/        OPC_EmitMergeInputChains1_0,
/* 56008*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STHBRX), 0|OPFL_Chain,
                      3/*#Ops*/, 1, 3, 4, 
                  // Src: (PPCstbrx i32:{ *:[i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst, i16:{ *:[Other] }) - Complexity = 12
                  // Dst: (STHBRX i32:{ *:[i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/* 56016*/      /*Scope*/ 15, /*->56032*/
/* 56017*/        OPC_CheckValueType, MVT::i32,
/* 56019*/        OPC_MoveParent,
/* 56020*/        OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/* 56023*/        OPC_EmitMergeInputChains1_0,
/* 56024*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::STWBRX), 0|OPFL_Chain,
                      3/*#Ops*/, 1, 3, 4, 
                  // Src: (PPCstbrx i32:{ *:[i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst, i32:{ *:[Other] }) - Complexity = 12
                  // Dst: (STWBRX i32:{ *:[i32] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/* 56032*/      0, /*End of Scope*/
/* 56033*/    /*Scope*/ 19, /*->56053*/
/* 56034*/      OPC_CheckChild1Type, MVT::i64,
/* 56036*/      OPC_RecordChild2, // #2 = $dst
/* 56037*/      OPC_MoveChild3,
/* 56038*/      OPC_CheckValueType, MVT::i64,
/* 56040*/      OPC_MoveParent,
/* 56041*/      OPC_CheckComplexPat, /*CP*/0, /*#*/2, // SelectAddrIdxOnly:$dst #3 #4
/* 56044*/      OPC_EmitMergeInputChains1_0,
/* 56045*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::STDBRX), 0|OPFL_Chain,
                    3/*#Ops*/, 1, 3, 4, 
                // Src: (PPCstbrx i64:{ *:[i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst, i64:{ *:[Other] }) - Complexity = 12
                // Dst: (STDBRX i64:{ *:[i64] }:$rS, xoaddr:{ *:[iPTR] }:$dst)
/* 56053*/    0, /*End of Scope*/
/* 56054*/  /*SwitchOpcode*/ 18, TARGET_VAL(PPCISD::BCTRL_LOAD_TOC),// ->56075
/* 56057*/    OPC_RecordNode, // #0 = 'PPCbctrl_load_toc' chained node
/* 56058*/    OPC_CaptureGlueInput,
/* 56059*/    OPC_RecordChild1, // #1 = $src
/* 56060*/    OPC_CheckChild1Type, MVT::iPTR,
/* 56062*/    OPC_CheckPatternPredicate, 40, // (PPCSubTarget->isPPC64())
/* 56064*/    OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 56067*/    OPC_EmitMergeInputChains1_0,
/* 56068*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::BCTRL8_LDinto_toc), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                  2/*#Ops*/, 2, 3, 
              // Src: (PPCbctrl_load_toc iaddrX4:{ *:[iPTR] }:$src) - Complexity = 12
              // Dst: (BCTRL8_LDinto_toc iaddrX4:{ *:[iPTR] }:$src)
/* 56075*/  /*SwitchOpcode*/ 22, TARGET_VAL(PPCISD::ATOMIC_CMP_SWAP_8),// ->56100
/* 56078*/    OPC_RecordMemRef,
/* 56079*/    OPC_RecordNode, // #0 = 'PPCatomicCmpSwap_8' chained node
/* 56080*/    OPC_RecordChild1, // #1 = $ptr
/* 56081*/    OPC_RecordChild2, // #2 = $old
/* 56082*/    OPC_RecordChild3, // #3 = $new
/* 56083*/    OPC_CheckType, MVT::i32,
/* 56085*/    OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #4 #5
/* 56088*/    OPC_EmitMergeInputChains1_0,
/* 56089*/    OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_CMP_SWAP_I8), 0|OPFL_Chain|OPFL_MemRefs,
                  MVT::i32, MVT::i32, 4/*#Ops*/, 4, 5, 2, 3, 
              // Src: (PPCatomicCmpSwap_8:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new) - Complexity = 12
              // Dst: (ATOMIC_CMP_SWAP_I8:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)
/* 56100*/  /*SwitchOpcode*/ 22, TARGET_VAL(PPCISD::ATOMIC_CMP_SWAP_16),// ->56125
/* 56103*/    OPC_RecordMemRef,
/* 56104*/    OPC_RecordNode, // #0 = 'PPCatomicCmpSwap_16' chained node
/* 56105*/    OPC_RecordChild1, // #1 = $ptr
/* 56106*/    OPC_RecordChild2, // #2 = $old
/* 56107*/    OPC_RecordChild3, // #3 = $new
/* 56108*/    OPC_CheckType, MVT::i32,
/* 56110*/    OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$ptr #4 #5
/* 56113*/    OPC_EmitMergeInputChains1_0,
/* 56114*/    OPC_MorphNodeTo2, TARGET_VAL(PPC::ATOMIC_CMP_SWAP_I16), 0|OPFL_Chain|OPFL_MemRefs,
                  MVT::i32, MVT::i32, 4/*#Ops*/, 4, 5, 2, 3, 
              // Src: (PPCatomicCmpSwap_16:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new) - Complexity = 12
              // Dst: (ATOMIC_CMP_SWAP_I16:{ *:[i32] }:{ *:[i32] } xoaddr:{ *:[iPTR] }:$ptr, i32:{ *:[i32] }:$old, i32:{ *:[i32] }:$new)
/* 56125*/  /*SwitchOpcode*/ 55, TARGET_VAL(ISD::BRCOND),// ->56183
/* 56128*/    OPC_RecordNode, // #0 = 'brcond' chained node
/* 56129*/    OPC_Scope, 33, /*->56164*/ // 2 children in Scope
/* 56131*/      OPC_MoveChild1,
/* 56132*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56135*/      OPC_RecordChild0, // #1 = $bi
/* 56136*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 56147*/      OPC_CheckType, MVT::i1,
/* 56149*/      OPC_MoveParent,
/* 56150*/      OPC_RecordChild2, // #2 = $dst
/* 56151*/      OPC_MoveChild2,
/* 56152*/      OPC_CheckOpcode, TARGET_VAL(ISD::BasicBlock),
/* 56155*/      OPC_MoveParent,
/* 56156*/      OPC_EmitMergeInputChains1_0,
/* 56157*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BCn), 0|OPFL_Chain,
                    2/*#Ops*/, 1, 2, 
                // Src: (brcond (xor:{ *:[i1] } i1:{ *:[i1] }:$bi, -1:{ *:[i1] }), (bb:{ *:[Other] }):$dst) - Complexity = 11
                // Dst: (BCn i1:{ *:[i1] }:$bi, (bb:{ *:[Other] }):$dst)
/* 56164*/    /*Scope*/ 17, /*->56182*/
/* 56165*/      OPC_RecordChild1, // #1 = $bi
/* 56166*/      OPC_CheckChild1Type, MVT::i1,
/* 56168*/      OPC_RecordChild2, // #2 = $dst
/* 56169*/      OPC_MoveChild2,
/* 56170*/      OPC_CheckOpcode, TARGET_VAL(ISD::BasicBlock),
/* 56173*/      OPC_MoveParent,
/* 56174*/      OPC_EmitMergeInputChains1_0,
/* 56175*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BC), 0|OPFL_Chain,
                    2/*#Ops*/, 1, 2, 
                // Src: (brcond i1:{ *:[i1] }:$bi, (bb:{ *:[Other] }):$dst) - Complexity = 3
                // Dst: (BC i1:{ *:[i1] }:$bi, (bb:{ *:[Other] }):$dst)
/* 56182*/    0, /*End of Scope*/
/* 56183*/  /*SwitchOpcode*/ 114|128,4/*626*/, TARGET_VAL(ISD::AND),// ->56813
/* 56187*/    OPC_Scope, 50, /*->56239*/ // 9 children in Scope
/* 56189*/      OPC_RecordChild0, // #0 = $rS
/* 56190*/      OPC_MoveChild1,
/* 56191*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56194*/      OPC_RecordChild0, // #1 = $rB
/* 56195*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 56206*/      OPC_MoveParent,
/* 56207*/      OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->56218
/* 56210*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDC), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (and:{ *:[i32] } i32:{ *:[i32] }:$rS, (xor:{ *:[i32] } i32:{ *:[i32] }:$rB, -1:{ *:[i32] })) - Complexity = 11
                  // Dst: (ANDC:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 56218*/      /*SwitchType*/ 8, MVT::i1,// ->56228
/* 56220*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRANDC), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (and:{ *:[i1] } i1:{ *:[i1] }:$CRA, (xor:{ *:[i1] } i1:{ *:[i1] }:$CRB, -1:{ *:[i1] })) - Complexity = 11
                  // Dst: (CRANDC:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 56228*/      /*SwitchType*/ 8, MVT::i64,// ->56238
/* 56230*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDC8), 0,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (and:{ *:[i64] } i64:{ *:[i64] }:$rS, (xor:{ *:[i64] } i64:{ *:[i64] }:$rB, -1:{ *:[i64] })) - Complexity = 11
                  // Dst: (ANDC8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 56238*/      0, // EndSwitchType
/* 56239*/    /*Scope*/ 90, /*->56330*/
/* 56240*/      OPC_MoveChild0,
/* 56241*/      OPC_SwitchOpcode /*2 cases */, 46, TARGET_VAL(ISD::XOR),// ->56291
/* 56245*/        OPC_RecordChild0, // #0 = $rB
/* 56246*/        OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 56257*/        OPC_MoveParent,
/* 56258*/        OPC_RecordChild1, // #1 = $rS
/* 56259*/        OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->56270
/* 56262*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDC), 0,
                        MVT::i32, 2/*#Ops*/, 1, 0, 
                    // Src: (and:{ *:[i32] } (xor:{ *:[i32] } i32:{ *:[i32] }:$rB, -1:{ *:[i32] }), i32:{ *:[i32] }:$rS) - Complexity = 11
                    // Dst: (ANDC:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 56270*/        /*SwitchType*/ 8, MVT::i1,// ->56280
/* 56272*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRANDC), 0,
                        MVT::i1, 2/*#Ops*/, 1, 0, 
                    // Src: (and:{ *:[i1] } (xor:{ *:[i1] } i1:{ *:[i1] }:$CRB, -1:{ *:[i1] }), i1:{ *:[i1] }:$CRA) - Complexity = 11
                    // Dst: (CRANDC:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 56280*/        /*SwitchType*/ 8, MVT::i64,// ->56290
/* 56282*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDC8), 0,
                        MVT::i64, 2/*#Ops*/, 1, 0, 
                    // Src: (and:{ *:[i64] } (xor:{ *:[i64] } i64:{ *:[i64] }:$rB, -1:{ *:[i64] }), i64:{ *:[i64] }:$rS) - Complexity = 11
                    // Dst: (ANDC8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 56290*/        0, // EndSwitchType
/* 56291*/      /*SwitchOpcode*/ 35, TARGET_VAL(ISD::ROTL),// ->56329
/* 56294*/        OPC_RecordChild0, // #0 = $in
/* 56295*/        OPC_RecordChild1, // #1 = $sh
/* 56296*/        OPC_CheckChild1Type, MVT::i32,
/* 56298*/        OPC_MoveParent,
/* 56299*/        OPC_RecordChild1, // #2 = $imm
/* 56300*/        OPC_MoveChild1,
/* 56301*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 56304*/        OPC_CheckPredicate, 31, // Predicate_maskimm32
/* 56306*/        OPC_MoveParent,
/* 56307*/        OPC_CheckType, MVT::i32,
/* 56309*/        OPC_EmitConvertToTarget, 2,
/* 56311*/        OPC_EmitNodeXForm, 3, 3, // MB
/* 56314*/        OPC_EmitConvertToTarget, 2,
/* 56316*/        OPC_EmitNodeXForm, 4, 5, // ME
/* 56319*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                      MVT::i32, 4/*#Ops*/, 0, 1, 4, 6, 
                  // Src: (and:{ *:[i32] } (rotl:{ *:[i32] } i32:{ *:[i32] }:$in, i32:{ *:[i32] }:$sh), (imm:{ *:[i32] })<<P:Predicate_maskimm32>>:$imm) - Complexity = 10
                  // Dst: (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$in, ?:{ *:[i32] }:$sh, (MB:{ *:[i32] } (imm:{ *:[i32] })<<P:Predicate_maskimm32>>:$imm), (ME:{ *:[i32] } (imm:{ *:[i32] })<<P:Predicate_maskimm32>>:$imm))
/* 56329*/      0, // EndSwitchOpcode
/* 56330*/    /*Scope*/ 56|128,1/*184*/, /*->56516*/
/* 56332*/      OPC_RecordChild0, // #0 = $src1
/* 56333*/      OPC_Scope, 123, /*->56458*/ // 2 children in Scope
/* 56335*/        OPC_RecordChild1, // #1 = $src2
/* 56336*/        OPC_Scope, 86, /*->56424*/ // 4 children in Scope
/* 56338*/          OPC_MoveChild1,
/* 56339*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 56342*/          OPC_Scope, 19, /*->56363*/ // 4 children in Scope
/* 56344*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 56346*/            OPC_MoveParent,
/* 56347*/            OPC_CheckType, MVT::i32,
/* 56349*/            OPC_EmitConvertToTarget, 1,
/* 56351*/            OPC_EmitNodeXForm, 1, 2, // LO16
/* 56354*/            OPC_MorphNodeTo2, TARGET_VAL(PPC::ANDIo), 0,
                          MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3, 
                      // Src: (and:{ *:[i32] } i32:{ *:[i32] }:$src1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$src2) - Complexity = 7
                      // Dst: (ANDIo:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$src1, (LO16:{ *:[i32] } (imm:{ *:[i32] }):$src2))
/* 56363*/          /*Scope*/ 19, /*->56383*/
/* 56364*/            OPC_CheckPredicate, 17, // Predicate_imm16ShiftedZExt
/* 56366*/            OPC_MoveParent,
/* 56367*/            OPC_CheckType, MVT::i32,
/* 56369*/            OPC_EmitConvertToTarget, 1,
/* 56371*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 56374*/            OPC_MorphNodeTo2, TARGET_VAL(PPC::ANDISo), 0,
                          MVT::i32, MVT::i32, 2/*#Ops*/, 0, 3, 
                      // Src: (and:{ *:[i32] } i32:{ *:[i32] }:$src1, (imm:{ *:[i32] })<<P:Predicate_imm16ShiftedZExt>><<X:HI16>>:$src2) - Complexity = 7
                      // Dst: (ANDISo:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$src1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$src2))
/* 56383*/          /*Scope*/ 19, /*->56403*/
/* 56384*/            OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 56386*/            OPC_MoveParent,
/* 56387*/            OPC_CheckType, MVT::i64,
/* 56389*/            OPC_EmitConvertToTarget, 1,
/* 56391*/            OPC_EmitNodeXForm, 1, 2, // LO16
/* 56394*/            OPC_MorphNodeTo2, TARGET_VAL(PPC::ANDIo8), 0,
                          MVT::i64, MVT::i32, 2/*#Ops*/, 0, 3, 
                      // Src: (and:{ *:[i64] } i64:{ *:[i64] }:$src1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$src2) - Complexity = 7
                      // Dst: (ANDIo8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$src1, (LO16:{ *:[i64] } (imm:{ *:[i64] }):$src2))
/* 56403*/          /*Scope*/ 19, /*->56423*/
/* 56404*/            OPC_CheckPredicate, 17, // Predicate_imm16ShiftedZExt
/* 56406*/            OPC_MoveParent,
/* 56407*/            OPC_CheckType, MVT::i64,
/* 56409*/            OPC_EmitConvertToTarget, 1,
/* 56411*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 56414*/            OPC_MorphNodeTo2, TARGET_VAL(PPC::ANDISo8), 0,
                          MVT::i64, MVT::i32, 2/*#Ops*/, 0, 3, 
                      // Src: (and:{ *:[i64] } i64:{ *:[i64] }:$src1, (imm:{ *:[i64] })<<P:Predicate_imm16ShiftedZExt>><<X:HI16>>:$src2) - Complexity = 7
                      // Dst: (ANDISo8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$src1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$src2))
/* 56423*/          0, /*End of Scope*/
/* 56424*/        /*Scope*/ 10, /*->56435*/
/* 56425*/          OPC_CheckType, MVT::i32,
/* 56427*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::AND), 0,
                        MVT::i32, 2/*#Ops*/, 0, 1, 
                    // Src: (and:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                    // Dst: (AND:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 56435*/        /*Scope*/ 10, /*->56446*/
/* 56436*/          OPC_CheckType, MVT::i1,
/* 56438*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRAND), 0,
                        MVT::i1, 2/*#Ops*/, 0, 1, 
                    // Src: (and:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB) - Complexity = 3
                    // Dst: (CRAND:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 56446*/        /*Scope*/ 10, /*->56457*/
/* 56447*/          OPC_CheckType, MVT::i64,
/* 56449*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::AND8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 1, 
                    // Src: (and:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB) - Complexity = 3
                    // Dst: (AND8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 56457*/        0, /*End of Scope*/
/* 56458*/      /*Scope*/ 56, /*->56515*/
/* 56459*/        OPC_MoveChild1,
/* 56460*/        OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56463*/        OPC_Scope, 24, /*->56489*/ // 2 children in Scope
/* 56465*/          OPC_RecordChild0, // #1 = $XB
/* 56466*/          OPC_MoveChild1,
/* 56467*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56470*/          OPC_MoveChild0,
/* 56471*/          OPC_CheckImmAllOnesV,
/* 56472*/          OPC_CheckType, MVT::v16i8,
/* 56474*/          OPC_MoveParent,
/* 56475*/          OPC_MoveParent,
/* 56476*/          OPC_MoveParent,
/* 56477*/          OPC_CheckType, MVT::v4i32,
/* 56479*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 56481*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLANDC), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))) - Complexity = 413
                    // Dst: (XXLANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 56489*/        /*Scope*/ 24, /*->56514*/
/* 56490*/          OPC_MoveChild0,
/* 56491*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56494*/          OPC_MoveChild0,
/* 56495*/          OPC_CheckImmAllOnesV,
/* 56496*/          OPC_CheckType, MVT::v16i8,
/* 56498*/          OPC_MoveParent,
/* 56499*/          OPC_MoveParent,
/* 56500*/          OPC_RecordChild1, // #1 = $XB
/* 56501*/          OPC_MoveParent,
/* 56502*/          OPC_CheckType, MVT::v4i32,
/* 56504*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 56506*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLANDC), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$XB)) - Complexity = 413
                    // Dst: (XXLANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 56514*/        0, /*End of Scope*/
/* 56515*/      0, /*End of Scope*/
/* 56516*/    /*Scope*/ 58, /*->56575*/
/* 56517*/      OPC_MoveChild0,
/* 56518*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56521*/      OPC_Scope, 25, /*->56548*/ // 2 children in Scope
/* 56523*/        OPC_RecordChild0, // #0 = $XB
/* 56524*/        OPC_MoveChild1,
/* 56525*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56528*/        OPC_MoveChild0,
/* 56529*/        OPC_CheckImmAllOnesV,
/* 56530*/        OPC_CheckType, MVT::v16i8,
/* 56532*/        OPC_MoveParent,
/* 56533*/        OPC_MoveParent,
/* 56534*/        OPC_MoveParent,
/* 56535*/        OPC_RecordChild1, // #1 = $XA
/* 56536*/        OPC_CheckType, MVT::v4i32,
/* 56538*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 56540*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLANDC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (and:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$XA) - Complexity = 413
                  // Dst: (XXLANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 56548*/      /*Scope*/ 25, /*->56574*/
/* 56549*/        OPC_MoveChild0,
/* 56550*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56553*/        OPC_MoveChild0,
/* 56554*/        OPC_CheckImmAllOnesV,
/* 56555*/        OPC_CheckType, MVT::v16i8,
/* 56557*/        OPC_MoveParent,
/* 56558*/        OPC_MoveParent,
/* 56559*/        OPC_RecordChild1, // #0 = $XB
/* 56560*/        OPC_MoveParent,
/* 56561*/        OPC_RecordChild1, // #1 = $XA
/* 56562*/        OPC_CheckType, MVT::v4i32,
/* 56564*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 56566*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLANDC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (and:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$XB), v4i32:{ *:[v4i32] }:$XA) - Complexity = 413
                  // Dst: (XXLANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 56574*/      0, /*End of Scope*/
/* 56575*/    /*Scope*/ 74, /*->56650*/
/* 56576*/      OPC_RecordChild0, // #0 = $XA
/* 56577*/      OPC_Scope, 13, /*->56592*/ // 2 children in Scope
/* 56579*/        OPC_RecordChild1, // #1 = $XB
/* 56580*/        OPC_CheckType, MVT::v4i32,
/* 56582*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 56584*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLAND), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB) - Complexity = 403
                  // Dst: (XXLAND:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 56592*/      /*Scope*/ 56, /*->56649*/
/* 56593*/        OPC_MoveChild1,
/* 56594*/        OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56597*/        OPC_Scope, 24, /*->56623*/ // 2 children in Scope
/* 56599*/          OPC_RecordChild0, // #1 = $vB
/* 56600*/          OPC_MoveChild1,
/* 56601*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56604*/          OPC_MoveChild0,
/* 56605*/          OPC_CheckImmAllOnesV,
/* 56606*/          OPC_CheckType, MVT::v16i8,
/* 56608*/          OPC_MoveParent,
/* 56609*/          OPC_MoveParent,
/* 56610*/          OPC_MoveParent,
/* 56611*/          OPC_CheckType, MVT::v4i32,
/* 56613*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 56615*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VANDC), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))) - Complexity = 13
                    // Dst: (VANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 56623*/        /*Scope*/ 24, /*->56648*/
/* 56624*/          OPC_MoveChild0,
/* 56625*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56628*/          OPC_MoveChild0,
/* 56629*/          OPC_CheckImmAllOnesV,
/* 56630*/          OPC_CheckType, MVT::v16i8,
/* 56632*/          OPC_MoveParent,
/* 56633*/          OPC_MoveParent,
/* 56634*/          OPC_RecordChild1, // #1 = $vB
/* 56635*/          OPC_MoveParent,
/* 56636*/          OPC_CheckType, MVT::v4i32,
/* 56638*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 56640*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VANDC), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$vB)) - Complexity = 13
                    // Dst: (VANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 56648*/        0, /*End of Scope*/
/* 56649*/      0, /*End of Scope*/
/* 56650*/    /*Scope*/ 58, /*->56709*/
/* 56651*/      OPC_MoveChild0,
/* 56652*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56655*/      OPC_Scope, 25, /*->56682*/ // 2 children in Scope
/* 56657*/        OPC_RecordChild0, // #0 = $vB
/* 56658*/        OPC_MoveChild1,
/* 56659*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56662*/        OPC_MoveChild0,
/* 56663*/        OPC_CheckImmAllOnesV,
/* 56664*/        OPC_CheckType, MVT::v16i8,
/* 56666*/        OPC_MoveParent,
/* 56667*/        OPC_MoveParent,
/* 56668*/        OPC_MoveParent,
/* 56669*/        OPC_RecordChild1, // #1 = $vA
/* 56670*/        OPC_CheckType, MVT::v4i32,
/* 56672*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 56674*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VANDC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (and:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$vA) - Complexity = 13
                  // Dst: (VANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 56682*/      /*Scope*/ 25, /*->56708*/
/* 56683*/        OPC_MoveChild0,
/* 56684*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 56687*/        OPC_MoveChild0,
/* 56688*/        OPC_CheckImmAllOnesV,
/* 56689*/        OPC_CheckType, MVT::v16i8,
/* 56691*/        OPC_MoveParent,
/* 56692*/        OPC_MoveParent,
/* 56693*/        OPC_RecordChild1, // #0 = $vB
/* 56694*/        OPC_MoveParent,
/* 56695*/        OPC_RecordChild1, // #1 = $vA
/* 56696*/        OPC_CheckType, MVT::v4i32,
/* 56698*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 56700*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VANDC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (and:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$vB), v4i32:{ *:[v4i32] }:$vA) - Complexity = 13
                  // Dst: (VANDC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 56708*/      0, /*End of Scope*/
/* 56709*/    /*Scope*/ 34, /*->56744*/
/* 56710*/      OPC_RecordChild0, // #0 = $FRA
/* 56711*/      OPC_MoveChild1,
/* 56712*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56715*/      OPC_RecordChild0, // #1 = $FRB
/* 56716*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 56727*/      OPC_MoveParent,
/* 56728*/      OPC_CheckType, MVT::v4i1,
/* 56730*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 56732*/      OPC_EmitInteger, MVT::i32, 4, 
/* 56735*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                    MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                // Src: (and:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRB, -1:{ *:[v4i1] })) - Complexity = 11
                // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 4:{ *:[i32] })
/* 56744*/    /*Scope*/ 34, /*->56779*/
/* 56745*/      OPC_MoveChild0,
/* 56746*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56749*/      OPC_RecordChild0, // #0 = $FRB
/* 56750*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 56761*/      OPC_MoveParent,
/* 56762*/      OPC_RecordChild1, // #1 = $FRA
/* 56763*/      OPC_CheckType, MVT::v4i1,
/* 56765*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 56767*/      OPC_EmitInteger, MVT::i32, 4, 
/* 56770*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                    MVT::v4i1, 3/*#Ops*/, 1, 0, 2, 
                // Src: (and:{ *:[v4i1] } (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRB, -1:{ *:[v4i1] }), v4i1:{ *:[v4i1] }:$FRA) - Complexity = 11
                // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 4:{ *:[i32] })
/* 56779*/    /*Scope*/ 32, /*->56812*/
/* 56780*/      OPC_RecordChild0, // #0 = $vA
/* 56781*/      OPC_RecordChild1, // #1 = $vB
/* 56782*/      OPC_SwitchType /*2 cases */, 10, MVT::v4i32,// ->56795
/* 56785*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 56787*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VAND), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                  // Dst: (VAND:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 56795*/      /*SwitchType*/ 14, MVT::v4i1,// ->56811
/* 56797*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 56799*/        OPC_EmitInteger, MVT::i32, 1, 
/* 56802*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (and:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 1:{ *:[i32] })
/* 56811*/      0, // EndSwitchType
/* 56812*/    0, /*End of Scope*/
/* 56813*/  /*SwitchOpcode*/ 107|128,8/*1131*/, TARGET_VAL(ISD::OR),// ->57948
/* 56817*/    OPC_Scope, 50, /*->56869*/ // 11 children in Scope
/* 56819*/      OPC_RecordChild0, // #0 = $rS
/* 56820*/      OPC_MoveChild1,
/* 56821*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56824*/      OPC_RecordChild0, // #1 = $rB
/* 56825*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 56836*/      OPC_MoveParent,
/* 56837*/      OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->56848
/* 56840*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ORC), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[i32] } i32:{ *:[i32] }:$rS, (xor:{ *:[i32] } i32:{ *:[i32] }:$rB, -1:{ *:[i32] })) - Complexity = 11
                  // Dst: (ORC:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 56848*/      /*SwitchType*/ 8, MVT::i1,// ->56858
/* 56850*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRORC), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[i1] } i1:{ *:[i1] }:$CRA, (xor:{ *:[i1] } i1:{ *:[i1] }:$CRB, -1:{ *:[i1] })) - Complexity = 11
                  // Dst: (CRORC:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 56858*/      /*SwitchType*/ 8, MVT::i64,// ->56868
/* 56860*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ORC8), 0,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[i64] } i64:{ *:[i64] }:$rS, (xor:{ *:[i64] } i64:{ *:[i64] }:$rB, -1:{ *:[i64] })) - Complexity = 11
                  // Dst: (ORC8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 56868*/      0, // EndSwitchType
/* 56869*/    /*Scope*/ 50, /*->56920*/
/* 56870*/      OPC_MoveChild0,
/* 56871*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 56874*/      OPC_RecordChild0, // #0 = $rB
/* 56875*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 56886*/      OPC_MoveParent,
/* 56887*/      OPC_RecordChild1, // #1 = $rS
/* 56888*/      OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->56899
/* 56891*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ORC), 0,
                      MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (or:{ *:[i32] } (xor:{ *:[i32] } i32:{ *:[i32] }:$rB, -1:{ *:[i32] }), i32:{ *:[i32] }:$rS) - Complexity = 11
                  // Dst: (ORC:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 56899*/      /*SwitchType*/ 8, MVT::i1,// ->56909
/* 56901*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRORC), 0,
                      MVT::i1, 2/*#Ops*/, 1, 0, 
                  // Src: (or:{ *:[i1] } (xor:{ *:[i1] } i1:{ *:[i1] }:$CRB, -1:{ *:[i1] }), i1:{ *:[i1] }:$CRA) - Complexity = 11
                  // Dst: (CRORC:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 56909*/      /*SwitchType*/ 8, MVT::i64,// ->56919
/* 56911*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ORC8), 0,
                      MVT::i64, 2/*#Ops*/, 1, 0, 
                  // Src: (or:{ *:[i64] } (xor:{ *:[i64] } i64:{ *:[i64] }:$rB, -1:{ *:[i64] }), i64:{ *:[i64] }:$rS) - Complexity = 11
                  // Dst: (ORC8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 56919*/      0, // EndSwitchType
/* 56920*/    /*Scope*/ 22|128,1/*150*/, /*->57072*/
/* 56922*/      OPC_RecordChild0, // #0 = $src1
/* 56923*/      OPC_RecordChild1, // #1 = $src2
/* 56924*/      OPC_Scope, 112, /*->57038*/ // 4 children in Scope
/* 56926*/        OPC_MoveChild1,
/* 56927*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 56930*/        OPC_Scope, 18, /*->56950*/ // 5 children in Scope
/* 56932*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 56934*/          OPC_MoveParent,
/* 56935*/          OPC_CheckType, MVT::i32,
/* 56937*/          OPC_EmitConvertToTarget, 1,
/* 56939*/          OPC_EmitNodeXForm, 1, 2, // LO16
/* 56942*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ORI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 3, 
                    // Src: (or:{ *:[i32] } i32:{ *:[i32] }:$src1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$src2) - Complexity = 7
                    // Dst: (ORI:{ *:[i32] } i32:{ *:[i32] }:$src1, (LO16:{ *:[i32] } (imm:{ *:[i32] }):$src2))
/* 56950*/        /*Scope*/ 18, /*->56969*/
/* 56951*/          OPC_CheckPredicate, 17, // Predicate_imm16ShiftedZExt
/* 56953*/          OPC_MoveParent,
/* 56954*/          OPC_CheckType, MVT::i32,
/* 56956*/          OPC_EmitConvertToTarget, 1,
/* 56958*/          OPC_EmitNodeXForm, 0, 2, // HI16
/* 56961*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ORIS), 0,
                        MVT::i32, 2/*#Ops*/, 0, 3, 
                    // Src: (or:{ *:[i32] } i32:{ *:[i32] }:$src1, (imm:{ *:[i32] })<<P:Predicate_imm16ShiftedZExt>><<X:HI16>>:$src2) - Complexity = 7
                    // Dst: (ORIS:{ *:[i32] } i32:{ *:[i32] }:$src1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$src2))
/* 56969*/        /*Scope*/ 18, /*->56988*/
/* 56970*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 56972*/          OPC_MoveParent,
/* 56973*/          OPC_CheckType, MVT::i64,
/* 56975*/          OPC_EmitConvertToTarget, 1,
/* 56977*/          OPC_EmitNodeXForm, 1, 2, // LO16
/* 56980*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ORI8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 3, 
                    // Src: (or:{ *:[i64] } i64:{ *:[i64] }:$src1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$src2) - Complexity = 7
                    // Dst: (ORI8:{ *:[i64] } i64:{ *:[i64] }:$src1, (LO16:{ *:[i64] } (imm:{ *:[i64] }):$src2))
/* 56988*/        /*Scope*/ 18, /*->57007*/
/* 56989*/          OPC_CheckPredicate, 17, // Predicate_imm16ShiftedZExt
/* 56991*/          OPC_MoveParent,
/* 56992*/          OPC_CheckType, MVT::i64,
/* 56994*/          OPC_EmitConvertToTarget, 1,
/* 56996*/          OPC_EmitNodeXForm, 0, 2, // HI16
/* 56999*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ORIS8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 3, 
                    // Src: (or:{ *:[i64] } i64:{ *:[i64] }:$src1, (imm:{ *:[i64] })<<P:Predicate_imm16ShiftedZExt>><<X:HI16>>:$src2) - Complexity = 7
                    // Dst: (ORIS8:{ *:[i64] } i64:{ *:[i64] }:$src1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$src2))
/* 57007*/        /*Scope*/ 29, /*->57037*/
/* 57008*/          OPC_MoveParent,
/* 57009*/          OPC_CheckType, MVT::i32,
/* 57011*/          OPC_EmitConvertToTarget, 1,
/* 57013*/          OPC_EmitNodeXForm, 1, 2, // LO16
/* 57016*/          OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 57024*/          OPC_EmitConvertToTarget, 1,
/* 57026*/          OPC_EmitNodeXForm, 0, 5, // HI16
/* 57029*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ORIS), 0,
                        MVT::i32, 2/*#Ops*/, 4, 6, 
                    // Src: (or:{ *:[i32] } i32:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                    // Dst: (ORIS:{ *:[i32] } (ORI:{ *:[i32] } ?:{ *:[i32] }:$in, (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 57037*/        0, /*End of Scope*/
/* 57038*/      /*Scope*/ 10, /*->57049*/
/* 57039*/        OPC_CheckType, MVT::i32,
/* 57041*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::OR), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (OR:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 57049*/      /*Scope*/ 10, /*->57060*/
/* 57050*/        OPC_CheckType, MVT::i1,
/* 57052*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB) - Complexity = 3
                  // Dst: (CROR:{ *:[i1] } i1:{ *:[i1] }:$CRA, i1:{ *:[i1] }:$CRB)
/* 57060*/      /*Scope*/ 10, /*->57071*/
/* 57061*/        OPC_CheckType, MVT::i64,
/* 57063*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::OR8), 0,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB) - Complexity = 3
                  // Dst: (OR8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 57071*/      0, /*End of Scope*/
/* 57072*/    /*Scope*/ 7|128,4/*519*/, /*->57593*/
/* 57074*/      OPC_MoveChild0,
/* 57075*/      OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 57078*/      OPC_Scope, 120, /*->57200*/ // 2 children in Scope
/* 57080*/        OPC_MoveChild0,
/* 57081*/        OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57084*/        OPC_Scope, 56, /*->57142*/ // 2 children in Scope
/* 57086*/          OPC_RecordChild0, // #0 = $C
/* 57087*/          OPC_MoveChild1,
/* 57088*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57091*/          OPC_MoveChild0,
/* 57092*/          OPC_CheckImmAllOnesV,
/* 57093*/          OPC_CheckType, MVT::v16i8,
/* 57095*/          OPC_MoveParent,
/* 57096*/          OPC_MoveParent,
/* 57097*/          OPC_MoveParent,
/* 57098*/          OPC_RecordChild1, // #1 = $A
/* 57099*/          OPC_MoveParent,
/* 57100*/          OPC_MoveChild1,
/* 57101*/          OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 57104*/          OPC_Scope, 17, /*->57123*/ // 2 children in Scope
/* 57106*/            OPC_RecordChild0, // #2 = $B
/* 57107*/            OPC_CheckChild1Same, 0,
/* 57109*/            OPC_MoveParent,
/* 57110*/            OPC_CheckType, MVT::v4i32,
/* 57112*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57114*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 2, 0, 
                      // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$A), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C)) - Complexity = 419
                      // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57123*/          /*Scope*/ 17, /*->57141*/
/* 57124*/            OPC_CheckChild0Same, 0,
/* 57126*/            OPC_RecordChild1, // #2 = $B
/* 57127*/            OPC_MoveParent,
/* 57128*/            OPC_CheckType, MVT::v4i32,
/* 57130*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57132*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 2, 0, 
                      // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$A), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B)) - Complexity = 419
                      // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57141*/          0, /*End of Scope*/
/* 57142*/        /*Scope*/ 56, /*->57199*/
/* 57143*/          OPC_MoveChild0,
/* 57144*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57147*/          OPC_MoveChild0,
/* 57148*/          OPC_CheckImmAllOnesV,
/* 57149*/          OPC_CheckType, MVT::v16i8,
/* 57151*/          OPC_MoveParent,
/* 57152*/          OPC_MoveParent,
/* 57153*/          OPC_RecordChild1, // #0 = $C
/* 57154*/          OPC_MoveParent,
/* 57155*/          OPC_RecordChild1, // #1 = $A
/* 57156*/          OPC_MoveParent,
/* 57157*/          OPC_MoveChild1,
/* 57158*/          OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 57161*/          OPC_Scope, 17, /*->57180*/ // 2 children in Scope
/* 57163*/            OPC_RecordChild0, // #2 = $B
/* 57164*/            OPC_CheckChild1Same, 0,
/* 57166*/            OPC_MoveParent,
/* 57167*/            OPC_CheckType, MVT::v4i32,
/* 57169*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57171*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 2, 0, 
                      // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C), v4i32:{ *:[v4i32] }:$A), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C)) - Complexity = 419
                      // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57180*/          /*Scope*/ 17, /*->57198*/
/* 57181*/            OPC_CheckChild0Same, 0,
/* 57183*/            OPC_RecordChild1, // #2 = $B
/* 57184*/            OPC_MoveParent,
/* 57185*/            OPC_CheckType, MVT::v4i32,
/* 57187*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57189*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 2, 0, 
                      // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C), v4i32:{ *:[v4i32] }:$A), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B)) - Complexity = 419
                      // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57198*/          0, /*End of Scope*/
/* 57199*/        0, /*End of Scope*/
/* 57200*/      /*Scope*/ 6|128,3/*390*/, /*->57592*/
/* 57202*/        OPC_RecordChild0, // #0 = $A
/* 57203*/        OPC_Scope, 118, /*->57323*/ // 2 children in Scope
/* 57205*/          OPC_MoveChild1,
/* 57206*/          OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57209*/          OPC_Scope, 55, /*->57266*/ // 2 children in Scope
/* 57211*/            OPC_RecordChild0, // #1 = $C
/* 57212*/            OPC_MoveChild1,
/* 57213*/            OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57216*/            OPC_MoveChild0,
/* 57217*/            OPC_CheckImmAllOnesV,
/* 57218*/            OPC_CheckType, MVT::v16i8,
/* 57220*/            OPC_MoveParent,
/* 57221*/            OPC_MoveParent,
/* 57222*/            OPC_MoveParent,
/* 57223*/            OPC_MoveParent,
/* 57224*/            OPC_MoveChild1,
/* 57225*/            OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 57228*/            OPC_Scope, 17, /*->57247*/ // 2 children in Scope
/* 57230*/              OPC_RecordChild0, // #2 = $B
/* 57231*/              OPC_CheckChild1Same, 1,
/* 57233*/              OPC_MoveParent,
/* 57234*/              OPC_CheckType, MVT::v4i32,
/* 57236*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57238*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 2, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57247*/            /*Scope*/ 17, /*->57265*/
/* 57248*/              OPC_CheckChild0Same, 1,
/* 57250*/              OPC_RecordChild1, // #2 = $B
/* 57251*/              OPC_MoveParent,
/* 57252*/              OPC_CheckType, MVT::v4i32,
/* 57254*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57256*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 2, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57265*/            0, /*End of Scope*/
/* 57266*/          /*Scope*/ 55, /*->57322*/
/* 57267*/            OPC_MoveChild0,
/* 57268*/            OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57271*/            OPC_MoveChild0,
/* 57272*/            OPC_CheckImmAllOnesV,
/* 57273*/            OPC_CheckType, MVT::v16i8,
/* 57275*/            OPC_MoveParent,
/* 57276*/            OPC_MoveParent,
/* 57277*/            OPC_RecordChild1, // #1 = $C
/* 57278*/            OPC_MoveParent,
/* 57279*/            OPC_MoveParent,
/* 57280*/            OPC_MoveChild1,
/* 57281*/            OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 57284*/            OPC_Scope, 17, /*->57303*/ // 2 children in Scope
/* 57286*/              OPC_RecordChild0, // #2 = $B
/* 57287*/              OPC_CheckChild1Same, 1,
/* 57289*/              OPC_MoveParent,
/* 57290*/              OPC_CheckType, MVT::v4i32,
/* 57292*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57294*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 2, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C)), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57303*/            /*Scope*/ 17, /*->57321*/
/* 57304*/              OPC_CheckChild0Same, 1,
/* 57306*/              OPC_RecordChild1, // #2 = $B
/* 57307*/              OPC_MoveParent,
/* 57308*/              OPC_CheckType, MVT::v4i32,
/* 57310*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57312*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 2, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C)), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57321*/            0, /*End of Scope*/
/* 57322*/          0, /*End of Scope*/
/* 57323*/        /*Scope*/ 10|128,2/*266*/, /*->57591*/
/* 57325*/          OPC_RecordChild1, // #1 = $C
/* 57326*/          OPC_MoveParent,
/* 57327*/          OPC_MoveChild1,
/* 57328*/          OPC_CheckOpcode, TARGET_VAL(ISD::AND),
/* 57331*/          OPC_Scope, 64, /*->57397*/ // 4 children in Scope
/* 57333*/            OPC_MoveChild0,
/* 57334*/            OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57337*/            OPC_Scope, 28, /*->57367*/ // 2 children in Scope
/* 57339*/              OPC_CheckChild0Same, 1,
/* 57341*/              OPC_MoveChild1,
/* 57342*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57345*/              OPC_MoveChild0,
/* 57346*/              OPC_CheckImmAllOnesV,
/* 57347*/              OPC_CheckType, MVT::v16i8,
/* 57349*/              OPC_MoveParent,
/* 57350*/              OPC_MoveParent,
/* 57351*/              OPC_MoveParent,
/* 57352*/              OPC_RecordChild1, // #2 = $A
/* 57353*/              OPC_MoveParent,
/* 57354*/              OPC_CheckType, MVT::v4i32,
/* 57356*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57358*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 0, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C), (and:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$A)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57367*/            /*Scope*/ 28, /*->57396*/
/* 57368*/              OPC_MoveChild0,
/* 57369*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57372*/              OPC_MoveChild0,
/* 57373*/              OPC_CheckImmAllOnesV,
/* 57374*/              OPC_CheckType, MVT::v16i8,
/* 57376*/              OPC_MoveParent,
/* 57377*/              OPC_MoveParent,
/* 57378*/              OPC_CheckChild1Same, 1,
/* 57380*/              OPC_MoveParent,
/* 57381*/              OPC_RecordChild1, // #2 = $A
/* 57382*/              OPC_MoveParent,
/* 57383*/              OPC_CheckType, MVT::v4i32,
/* 57385*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57387*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 0, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C), (and:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C), v4i32:{ *:[v4i32] }:$A)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57396*/            0, /*End of Scope*/
/* 57397*/          /*Scope*/ 63, /*->57461*/
/* 57398*/            OPC_RecordChild0, // #2 = $A
/* 57399*/            OPC_MoveChild1,
/* 57400*/            OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57403*/            OPC_Scope, 27, /*->57432*/ // 2 children in Scope
/* 57405*/              OPC_CheckChild0Same, 1,
/* 57407*/              OPC_MoveChild1,
/* 57408*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57411*/              OPC_MoveChild0,
/* 57412*/              OPC_CheckImmAllOnesV,
/* 57413*/              OPC_CheckType, MVT::v16i8,
/* 57415*/              OPC_MoveParent,
/* 57416*/              OPC_MoveParent,
/* 57417*/              OPC_MoveParent,
/* 57418*/              OPC_MoveParent,
/* 57419*/              OPC_CheckType, MVT::v4i32,
/* 57421*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57423*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 0, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })))) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57432*/            /*Scope*/ 27, /*->57460*/
/* 57433*/              OPC_MoveChild0,
/* 57434*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57437*/              OPC_MoveChild0,
/* 57438*/              OPC_CheckImmAllOnesV,
/* 57439*/              OPC_CheckType, MVT::v16i8,
/* 57441*/              OPC_MoveParent,
/* 57442*/              OPC_MoveParent,
/* 57443*/              OPC_CheckChild1Same, 1,
/* 57445*/              OPC_MoveParent,
/* 57446*/              OPC_MoveParent,
/* 57447*/              OPC_CheckType, MVT::v4i32,
/* 57449*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57451*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 0, 1, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$B, v4i32:{ *:[v4i32] }:$C), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C))) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57460*/            0, /*End of Scope*/
/* 57461*/          /*Scope*/ 64, /*->57526*/
/* 57462*/            OPC_MoveChild0,
/* 57463*/            OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57466*/            OPC_Scope, 28, /*->57496*/ // 2 children in Scope
/* 57468*/              OPC_CheckChild0Same, 0,
/* 57470*/              OPC_MoveChild1,
/* 57471*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57474*/              OPC_MoveChild0,
/* 57475*/              OPC_CheckImmAllOnesV,
/* 57476*/              OPC_CheckType, MVT::v16i8,
/* 57478*/              OPC_MoveParent,
/* 57479*/              OPC_MoveParent,
/* 57480*/              OPC_MoveParent,
/* 57481*/              OPC_RecordChild1, // #2 = $A
/* 57482*/              OPC_MoveParent,
/* 57483*/              OPC_CheckType, MVT::v4i32,
/* 57485*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57487*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 1, 0, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B), (and:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$A)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57496*/            /*Scope*/ 28, /*->57525*/
/* 57497*/              OPC_MoveChild0,
/* 57498*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57501*/              OPC_MoveChild0,
/* 57502*/              OPC_CheckImmAllOnesV,
/* 57503*/              OPC_CheckType, MVT::v16i8,
/* 57505*/              OPC_MoveParent,
/* 57506*/              OPC_MoveParent,
/* 57507*/              OPC_CheckChild1Same, 0,
/* 57509*/              OPC_MoveParent,
/* 57510*/              OPC_RecordChild1, // #2 = $A
/* 57511*/              OPC_MoveParent,
/* 57512*/              OPC_CheckType, MVT::v4i32,
/* 57514*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57516*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 1, 0, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B), (and:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C), v4i32:{ *:[v4i32] }:$A)) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57525*/            0, /*End of Scope*/
/* 57526*/          /*Scope*/ 63, /*->57590*/
/* 57527*/            OPC_RecordChild0, // #2 = $A
/* 57528*/            OPC_MoveChild1,
/* 57529*/            OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57532*/            OPC_Scope, 27, /*->57561*/ // 2 children in Scope
/* 57534*/              OPC_CheckChild0Same, 0,
/* 57536*/              OPC_MoveChild1,
/* 57537*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57540*/              OPC_MoveChild0,
/* 57541*/              OPC_CheckImmAllOnesV,
/* 57542*/              OPC_CheckType, MVT::v16i8,
/* 57544*/              OPC_MoveParent,
/* 57545*/              OPC_MoveParent,
/* 57546*/              OPC_MoveParent,
/* 57547*/              OPC_MoveParent,
/* 57548*/              OPC_CheckType, MVT::v4i32,
/* 57550*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57552*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 1, 0, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })))) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57561*/            /*Scope*/ 27, /*->57589*/
/* 57562*/              OPC_MoveChild0,
/* 57563*/              OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57566*/              OPC_MoveChild0,
/* 57567*/              OPC_CheckImmAllOnesV,
/* 57568*/              OPC_CheckType, MVT::v16i8,
/* 57570*/              OPC_MoveParent,
/* 57571*/              OPC_MoveParent,
/* 57572*/              OPC_CheckChild1Same, 0,
/* 57574*/              OPC_MoveParent,
/* 57575*/              OPC_MoveParent,
/* 57576*/              OPC_CheckType, MVT::v4i32,
/* 57578*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57580*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                            MVT::v4i32, 3/*#Ops*/, 2, 1, 0, 
                        // Src: (or:{ *:[v4i32] } (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$C, v4i32:{ *:[v4i32] }:$B), (and:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$C))) - Complexity = 419
                        // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B, ?:{ *:[v4i32] }:$C)
/* 57589*/            0, /*End of Scope*/
/* 57590*/          0, /*End of Scope*/
/* 57591*/        0, /*End of Scope*/
/* 57592*/      0, /*End of Scope*/
/* 57593*/    /*Scope*/ 57, /*->57651*/
/* 57594*/      OPC_RecordChild0, // #0 = $XA
/* 57595*/      OPC_MoveChild1,
/* 57596*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57599*/      OPC_Scope, 24, /*->57625*/ // 2 children in Scope
/* 57601*/        OPC_RecordChild0, // #1 = $XB
/* 57602*/        OPC_MoveChild1,
/* 57603*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57606*/        OPC_MoveChild0,
/* 57607*/        OPC_CheckImmAllOnesV,
/* 57608*/        OPC_CheckType, MVT::v16i8,
/* 57610*/        OPC_MoveParent,
/* 57611*/        OPC_MoveParent,
/* 57612*/        OPC_MoveParent,
/* 57613*/        OPC_CheckType, MVT::v4i32,
/* 57615*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 57617*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLORC), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))) - Complexity = 413
                  // Dst: (XXLORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 57625*/      /*Scope*/ 24, /*->57650*/
/* 57626*/        OPC_MoveChild0,
/* 57627*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57630*/        OPC_MoveChild0,
/* 57631*/        OPC_CheckImmAllOnesV,
/* 57632*/        OPC_CheckType, MVT::v16i8,
/* 57634*/        OPC_MoveParent,
/* 57635*/        OPC_MoveParent,
/* 57636*/        OPC_RecordChild1, // #1 = $XB
/* 57637*/        OPC_MoveParent,
/* 57638*/        OPC_CheckType, MVT::v4i32,
/* 57640*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 57642*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLORC), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$XB)) - Complexity = 413
                  // Dst: (XXLORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 57650*/      0, /*End of Scope*/
/* 57651*/    /*Scope*/ 58, /*->57710*/
/* 57652*/      OPC_MoveChild0,
/* 57653*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57656*/      OPC_Scope, 25, /*->57683*/ // 2 children in Scope
/* 57658*/        OPC_RecordChild0, // #0 = $XB
/* 57659*/        OPC_MoveChild1,
/* 57660*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57663*/        OPC_MoveChild0,
/* 57664*/        OPC_CheckImmAllOnesV,
/* 57665*/        OPC_CheckType, MVT::v16i8,
/* 57667*/        OPC_MoveParent,
/* 57668*/        OPC_MoveParent,
/* 57669*/        OPC_MoveParent,
/* 57670*/        OPC_RecordChild1, // #1 = $XA
/* 57671*/        OPC_CheckType, MVT::v4i32,
/* 57673*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 57675*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLORC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (or:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$XA) - Complexity = 413
                  // Dst: (XXLORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 57683*/      /*Scope*/ 25, /*->57709*/
/* 57684*/        OPC_MoveChild0,
/* 57685*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57688*/        OPC_MoveChild0,
/* 57689*/        OPC_CheckImmAllOnesV,
/* 57690*/        OPC_CheckType, MVT::v16i8,
/* 57692*/        OPC_MoveParent,
/* 57693*/        OPC_MoveParent,
/* 57694*/        OPC_RecordChild1, // #0 = $XB
/* 57695*/        OPC_MoveParent,
/* 57696*/        OPC_RecordChild1, // #1 = $XA
/* 57697*/        OPC_CheckType, MVT::v4i32,
/* 57699*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 57701*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLORC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (or:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$XB), v4i32:{ *:[v4i32] }:$XA) - Complexity = 413
                  // Dst: (XXLORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 57709*/      0, /*End of Scope*/
/* 57710*/    /*Scope*/ 74, /*->57785*/
/* 57711*/      OPC_RecordChild0, // #0 = $XA
/* 57712*/      OPC_Scope, 13, /*->57727*/ // 2 children in Scope
/* 57714*/        OPC_RecordChild1, // #1 = $XB
/* 57715*/        OPC_CheckType, MVT::v4i32,
/* 57717*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 57719*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLOR), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB) - Complexity = 403
                  // Dst: (XXLOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB)
/* 57727*/      /*Scope*/ 56, /*->57784*/
/* 57728*/        OPC_MoveChild1,
/* 57729*/        OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57732*/        OPC_Scope, 24, /*->57758*/ // 2 children in Scope
/* 57734*/          OPC_RecordChild0, // #1 = $vB
/* 57735*/          OPC_MoveChild1,
/* 57736*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57739*/          OPC_MoveChild0,
/* 57740*/          OPC_CheckImmAllOnesV,
/* 57741*/          OPC_CheckType, MVT::v16i8,
/* 57743*/          OPC_MoveParent,
/* 57744*/          OPC_MoveParent,
/* 57745*/          OPC_MoveParent,
/* 57746*/          OPC_CheckType, MVT::v4i32,
/* 57748*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 57750*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VORC), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }))) - Complexity = 13
                    // Dst: (VORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 57758*/        /*Scope*/ 24, /*->57783*/
/* 57759*/          OPC_MoveChild0,
/* 57760*/          OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57763*/          OPC_MoveChild0,
/* 57764*/          OPC_CheckImmAllOnesV,
/* 57765*/          OPC_CheckType, MVT::v16i8,
/* 57767*/          OPC_MoveParent,
/* 57768*/          OPC_MoveParent,
/* 57769*/          OPC_RecordChild1, // #1 = $vB
/* 57770*/          OPC_MoveParent,
/* 57771*/          OPC_CheckType, MVT::v4i32,
/* 57773*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 57775*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VORC), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 1, 
                    // Src: (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$vB)) - Complexity = 13
                    // Dst: (VORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 57783*/        0, /*End of Scope*/
/* 57784*/      0, /*End of Scope*/
/* 57785*/    /*Scope*/ 58, /*->57844*/
/* 57786*/      OPC_MoveChild0,
/* 57787*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57790*/      OPC_Scope, 25, /*->57817*/ // 2 children in Scope
/* 57792*/        OPC_RecordChild0, // #0 = $vB
/* 57793*/        OPC_MoveChild1,
/* 57794*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57797*/        OPC_MoveChild0,
/* 57798*/        OPC_CheckImmAllOnesV,
/* 57799*/        OPC_CheckType, MVT::v16i8,
/* 57801*/        OPC_MoveParent,
/* 57802*/        OPC_MoveParent,
/* 57803*/        OPC_MoveParent,
/* 57804*/        OPC_RecordChild1, // #1 = $vA
/* 57805*/        OPC_CheckType, MVT::v4i32,
/* 57807*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 57809*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VORC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (or:{ *:[v4i32] } (xor:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB, (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] })), v4i32:{ *:[v4i32] }:$vA) - Complexity = 13
                  // Dst: (VORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 57817*/      /*Scope*/ 25, /*->57843*/
/* 57818*/        OPC_MoveChild0,
/* 57819*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 57822*/        OPC_MoveChild0,
/* 57823*/        OPC_CheckImmAllOnesV,
/* 57824*/        OPC_CheckType, MVT::v16i8,
/* 57826*/        OPC_MoveParent,
/* 57827*/        OPC_MoveParent,
/* 57828*/        OPC_RecordChild1, // #0 = $vB
/* 57829*/        OPC_MoveParent,
/* 57830*/        OPC_RecordChild1, // #1 = $vA
/* 57831*/        OPC_CheckType, MVT::v4i32,
/* 57833*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 57835*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VORC), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 0, 
                  // Src: (or:{ *:[v4i32] } (xor:{ *:[v4i32] } (bitconvert:{ *:[v4i32] } immAllOnesV:{ *:[v16i8] }), v4i32:{ *:[v4i32] }:$vB), v4i32:{ *:[v4i32] }:$vA) - Complexity = 13
                  // Dst: (VORC:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 57843*/      0, /*End of Scope*/
/* 57844*/    /*Scope*/ 34, /*->57879*/
/* 57845*/      OPC_RecordChild0, // #0 = $FRA
/* 57846*/      OPC_MoveChild1,
/* 57847*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57850*/      OPC_RecordChild0, // #1 = $FRB
/* 57851*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 57862*/      OPC_MoveParent,
/* 57863*/      OPC_CheckType, MVT::v4i1,
/* 57865*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 57867*/      OPC_EmitInteger, MVT::i32, 13, 
/* 57870*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                    MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                // Src: (or:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRB, -1:{ *:[v4i1] })) - Complexity = 11
                // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 13:{ *:[i32] })
/* 57879*/    /*Scope*/ 34, /*->57914*/
/* 57880*/      OPC_MoveChild0,
/* 57881*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 57884*/      OPC_RecordChild0, // #0 = $FRB
/* 57885*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 57896*/      OPC_MoveParent,
/* 57897*/      OPC_RecordChild1, // #1 = $FRA
/* 57898*/      OPC_CheckType, MVT::v4i1,
/* 57900*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 57902*/      OPC_EmitInteger, MVT::i32, 13, 
/* 57905*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                    MVT::v4i1, 3/*#Ops*/, 1, 0, 2, 
                // Src: (or:{ *:[v4i1] } (xor:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRB, -1:{ *:[v4i1] }), v4i1:{ *:[v4i1] }:$FRA) - Complexity = 11
                // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 13:{ *:[i32] })
/* 57914*/    /*Scope*/ 32, /*->57947*/
/* 57915*/      OPC_RecordChild0, // #0 = $vA
/* 57916*/      OPC_RecordChild1, // #1 = $vB
/* 57917*/      OPC_SwitchType /*2 cases */, 10, MVT::v4i32,// ->57930
/* 57920*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 57922*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VOR), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (or:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                  // Dst: (VOR:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 57930*/      /*SwitchType*/ 14, MVT::v4i1,// ->57946
/* 57932*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 57934*/        OPC_EmitInteger, MVT::i32, 7, 
/* 57937*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (or:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } ?:{ *:[v4i1] }:$FRA, ?:{ *:[v4i1] }:$FRB, 7:{ *:[i32] })
/* 57946*/      0, // EndSwitchType
/* 57947*/    0, /*End of Scope*/
/* 57948*/  /*SwitchOpcode*/ 7|128,1/*135*/, TARGET_VAL(PPCISD::Hi),// ->58087
/* 57952*/    OPC_RecordChild0, // #0 = $in
/* 57953*/    OPC_MoveChild0,
/* 57954*/    OPC_SwitchOpcode /*5 cases */, 23, TARGET_VAL(ISD::TargetGlobalAddress),// ->57981
/* 57958*/      OPC_MoveParent,
/* 57959*/      OPC_CheckChild1Integer, 0, 
/* 57961*/      OPC_Scope, 7, /*->57970*/ // 2 children in Scope
/* 57963*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[iPTR] } (tglobaladdr:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LIS:{ *:[iPTR] } (tglobaladdr:{ *:[i32] }):$in)
/* 57970*/      /*Scope*/ 9, /*->57980*/
/* 57971*/        OPC_CheckType, MVT::i64,
/* 57973*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LIS8:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$in)
/* 57980*/      0, /*End of Scope*/
/* 57981*/    /*SwitchOpcode*/ 23, TARGET_VAL(ISD::TargetConstantPool),// ->58007
/* 57984*/      OPC_MoveParent,
/* 57985*/      OPC_CheckChild1Integer, 0, 
/* 57987*/      OPC_Scope, 7, /*->57996*/ // 2 children in Scope
/* 57989*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[iPTR] } (tconstpool:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LIS:{ *:[iPTR] } (tconstpool:{ *:[i32] }):$in)
/* 57996*/      /*Scope*/ 9, /*->58006*/
/* 57997*/        OPC_CheckType, MVT::i64,
/* 57999*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[i64] } (tconstpool:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LIS8:{ *:[i64] } (tconstpool:{ *:[i64] }):$in)
/* 58006*/      0, /*End of Scope*/
/* 58007*/    /*SwitchOpcode*/ 23, TARGET_VAL(ISD::TargetJumpTable),// ->58033
/* 58010*/      OPC_MoveParent,
/* 58011*/      OPC_CheckChild1Integer, 0, 
/* 58013*/      OPC_Scope, 7, /*->58022*/ // 2 children in Scope
/* 58015*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[iPTR] } (tjumptable:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LIS:{ *:[iPTR] } (tjumptable:{ *:[i32] }):$in)
/* 58022*/      /*Scope*/ 9, /*->58032*/
/* 58023*/        OPC_CheckType, MVT::i64,
/* 58025*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[i64] } (tjumptable:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LIS8:{ *:[i64] } (tjumptable:{ *:[i64] }):$in)
/* 58032*/      0, /*End of Scope*/
/* 58033*/    /*SwitchOpcode*/ 23, TARGET_VAL(ISD::TargetBlockAddress),// ->58059
/* 58036*/      OPC_MoveParent,
/* 58037*/      OPC_CheckChild1Integer, 0, 
/* 58039*/      OPC_Scope, 7, /*->58048*/ // 2 children in Scope
/* 58041*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[iPTR] } (tblockaddress:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LIS:{ *:[iPTR] } (tblockaddress:{ *:[i32] }):$in)
/* 58048*/      /*Scope*/ 9, /*->58058*/
/* 58049*/        OPC_CheckType, MVT::i64,
/* 58051*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPChi:{ *:[i64] } (tblockaddress:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LIS8:{ *:[i64] } (tblockaddress:{ *:[i64] }):$in)
/* 58058*/      0, /*End of Scope*/
/* 58059*/    /*SwitchOpcode*/ 24, TARGET_VAL(ISD::TargetGlobalTLSAddress),// ->58086
/* 58062*/      OPC_MoveParent,
/* 58063*/      OPC_RecordChild1, // #1 = $in
/* 58064*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->58075
/* 58067*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS), 0,
                      MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (PPChi:{ *:[i32] } (tglobaltlsaddr:{ *:[i32] }):$g, i32:{ *:[i32] }:$in) - Complexity = 6
                  // Dst: (ADDIS:{ *:[i32] } ?:{ *:[i32] }:$in, (tglobaltlsaddr:{ *:[i32] }):$g)
/* 58075*/      /*SwitchType*/ 8, MVT::i64,// ->58085
/* 58077*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIS8), 0,
                      MVT::i64, 2/*#Ops*/, 1, 0, 
                  // Src: (PPChi:{ *:[i64] } (tglobaltlsaddr:{ *:[i64] }):$g, i64:{ *:[i64] }:$in) - Complexity = 6
                  // Dst: (ADDIS8:{ *:[i64] } ?:{ *:[i64] }:$in, (tglobaltlsaddr:{ *:[i64] }):$g)
/* 58085*/      0, // EndSwitchType
/* 58086*/    0, // EndSwitchOpcode
/* 58087*/  /*SwitchOpcode*/ 7|128,1/*135*/, TARGET_VAL(PPCISD::Lo),// ->58226
/* 58091*/    OPC_RecordChild0, // #0 = $in
/* 58092*/    OPC_MoveChild0,
/* 58093*/    OPC_SwitchOpcode /*5 cases */, 23, TARGET_VAL(ISD::TargetGlobalAddress),// ->58120
/* 58097*/      OPC_MoveParent,
/* 58098*/      OPC_CheckChild1Integer, 0, 
/* 58100*/      OPC_Scope, 7, /*->58109*/ // 2 children in Scope
/* 58102*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[iPTR] } (tglobaladdr:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LI:{ *:[iPTR] } (tglobaladdr:{ *:[i32] }):$in)
/* 58109*/      /*Scope*/ 9, /*->58119*/
/* 58110*/        OPC_CheckType, MVT::i64,
/* 58112*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LI8:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$in)
/* 58119*/      0, /*End of Scope*/
/* 58120*/    /*SwitchOpcode*/ 23, TARGET_VAL(ISD::TargetConstantPool),// ->58146
/* 58123*/      OPC_MoveParent,
/* 58124*/      OPC_CheckChild1Integer, 0, 
/* 58126*/      OPC_Scope, 7, /*->58135*/ // 2 children in Scope
/* 58128*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[iPTR] } (tconstpool:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LI:{ *:[iPTR] } (tconstpool:{ *:[i32] }):$in)
/* 58135*/      /*Scope*/ 9, /*->58145*/
/* 58136*/        OPC_CheckType, MVT::i64,
/* 58138*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[i64] } (tconstpool:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LI8:{ *:[i64] } (tconstpool:{ *:[i64] }):$in)
/* 58145*/      0, /*End of Scope*/
/* 58146*/    /*SwitchOpcode*/ 23, TARGET_VAL(ISD::TargetJumpTable),// ->58172
/* 58149*/      OPC_MoveParent,
/* 58150*/      OPC_CheckChild1Integer, 0, 
/* 58152*/      OPC_Scope, 7, /*->58161*/ // 2 children in Scope
/* 58154*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[iPTR] } (tjumptable:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LI:{ *:[iPTR] } (tjumptable:{ *:[i32] }):$in)
/* 58161*/      /*Scope*/ 9, /*->58171*/
/* 58162*/        OPC_CheckType, MVT::i64,
/* 58164*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[i64] } (tjumptable:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LI8:{ *:[i64] } (tjumptable:{ *:[i64] }):$in)
/* 58171*/      0, /*End of Scope*/
/* 58172*/    /*SwitchOpcode*/ 23, TARGET_VAL(ISD::TargetBlockAddress),// ->58198
/* 58175*/      OPC_MoveParent,
/* 58176*/      OPC_CheckChild1Integer, 0, 
/* 58178*/      OPC_Scope, 7, /*->58187*/ // 2 children in Scope
/* 58180*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI), 0,
                      MVT::iPTR, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[iPTR] } (tblockaddress:{ *:[iPTR] }):$in, 0:{ *:[iPTR] }) - Complexity = 11
                  // Dst: (LI:{ *:[iPTR] } (tblockaddress:{ *:[i32] }):$in)
/* 58187*/      /*Scope*/ 9, /*->58197*/
/* 58188*/        OPC_CheckType, MVT::i64,
/* 58190*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LI8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (PPClo:{ *:[i64] } (tblockaddress:{ *:[i64] }):$in, 0:{ *:[i64] }) - Complexity = 11
                  // Dst: (LI8:{ *:[i64] } (tblockaddress:{ *:[i64] }):$in)
/* 58197*/      0, /*End of Scope*/
/* 58198*/    /*SwitchOpcode*/ 24, TARGET_VAL(ISD::TargetGlobalTLSAddress),// ->58225
/* 58201*/      OPC_MoveParent,
/* 58202*/      OPC_RecordChild1, // #1 = $in
/* 58203*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->58214
/* 58206*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDI), 0,
                      MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (PPClo:{ *:[i32] } (tglobaltlsaddr:{ *:[i32] }):$g, i32:{ *:[i32] }:$in) - Complexity = 6
                  // Dst: (ADDI:{ *:[i32] } ?:{ *:[i32] }:$in, (tglobaltlsaddr:{ *:[i32] }):$g)
/* 58214*/      /*SwitchType*/ 8, MVT::i64,// ->58224
/* 58216*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDI8), 0,
                      MVT::i64, 2/*#Ops*/, 1, 0, 
                  // Src: (PPClo:{ *:[i64] } (tglobaltlsaddr:{ *:[i64] }):$g, i64:{ *:[i64] }:$in) - Complexity = 6
                  // Dst: (ADDI8:{ *:[i64] } ?:{ *:[i64] }:$in, (tglobaltlsaddr:{ *:[i64] }):$g)
/* 58224*/      0, // EndSwitchType
/* 58225*/    0, // EndSwitchOpcode
/* 58226*/  /*SwitchOpcode*/ 83, TARGET_VAL(ISD::ATOMIC_FENCE),// ->58312
/* 58229*/    OPC_RecordNode, // #0 = 'atomic_fence' chained node
/* 58230*/    OPC_Scope, 44, /*->58276*/ // 2 children in Scope
/* 58232*/      OPC_CheckChild1Integer, 7, 
/* 58234*/      OPC_Scope, 19, /*->58255*/ // 2 children in Scope
/* 58236*/        OPC_CheckChild1Type, MVT::i64,
/* 58238*/        OPC_MoveChild2,
/* 58239*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58242*/        OPC_MoveParent,
/* 58243*/        OPC_CheckPatternPredicate, 16, // (!PPCSubTarget->hasOnlyMSYNC())
/* 58245*/        OPC_EmitMergeInputChains1_0,
/* 58246*/        OPC_EmitInteger, MVT::i32, 0, 
/* 58249*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::SYNC), 0|OPFL_Chain,
                      1/*#Ops*/, 1, 
                  // Src: (atomic_fence 7:{ *:[i64] }, (imm:{ *:[i64] })) - Complexity = 11
                  // Dst: (SYNC 0:{ *:[i32] })
/* 58255*/      /*Scope*/ 19, /*->58275*/
/* 58256*/        OPC_CheckChild1Type, MVT::i32,
/* 58258*/        OPC_MoveChild2,
/* 58259*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58262*/        OPC_MoveParent,
/* 58263*/        OPC_CheckPatternPredicate, 16, // (!PPCSubTarget->hasOnlyMSYNC())
/* 58265*/        OPC_EmitMergeInputChains1_0,
/* 58266*/        OPC_EmitInteger, MVT::i32, 0, 
/* 58269*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::SYNC), 0|OPFL_Chain,
                      1/*#Ops*/, 1, 
                  // Src: (atomic_fence 7:{ *:[i32] }, (imm:{ *:[i32] })) - Complexity = 11
                  // Dst: (SYNC 0:{ *:[i32] })
/* 58275*/      0, /*End of Scope*/
/* 58276*/    /*Scope*/ 34, /*->58311*/
/* 58277*/      OPC_MoveChild1,
/* 58278*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58281*/      OPC_MoveParent,
/* 58282*/      OPC_MoveChild2,
/* 58283*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58286*/      OPC_MoveParent,
/* 58287*/      OPC_Scope, 12, /*->58301*/ // 2 children in Scope
/* 58289*/        OPC_CheckPatternPredicate, 16, // (!PPCSubTarget->hasOnlyMSYNC())
/* 58291*/        OPC_EmitMergeInputChains1_0,
/* 58292*/        OPC_EmitInteger, MVT::i32, 1, 
/* 58295*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::SYNC), 0|OPFL_Chain,
                      1/*#Ops*/, 1, 
                  // Src: (atomic_fence (imm:{ *:[iPTR] }), (imm:{ *:[iPTR] })) - Complexity = 9
                  // Dst: (SYNC 1:{ *:[i32] })
/* 58301*/      /*Scope*/ 8, /*->58310*/
/* 58302*/        OPC_CheckPatternPredicate, 17, // (PPCSubTarget->hasOnlyMSYNC())
/* 58304*/        OPC_EmitMergeInputChains1_0,
/* 58305*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::MSYNC), 0|OPFL_Chain,
                      0/*#Ops*/, 
                  // Src: (atomic_fence (imm:{ *:[iPTR] }), (imm:{ *:[iPTR] })) - Complexity = 9
                  // Dst: (MSYNC)
/* 58310*/      0, /*End of Scope*/
/* 58311*/    0, /*End of Scope*/
/* 58312*/  /*SwitchOpcode*/ 86, TARGET_VAL(ISD::TRUNCATE),// ->58401
/* 58315*/    OPC_Scope, 42, /*->58359*/ // 2 children in Scope
/* 58317*/      OPC_MoveChild0,
/* 58318*/      OPC_CheckOpcode, TARGET_VAL(ISD::XOR),
/* 58321*/      OPC_RecordChild0, // #0 = $in
/* 58322*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 58333*/      OPC_SwitchType /*2 cases */, 10, MVT::i32,// ->58346
/* 58336*/        OPC_MoveParent,
/* 58337*/        OPC_CheckType, MVT::i1,
/* 58339*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDIo_1_EQ_BIT), 0,
                      MVT::i1, 1/*#Ops*/, 0, 
                  // Src: (trunc:{ *:[i1] } (xor:{ *:[i32] } i32:{ *:[i32] }:$in, -1:{ *:[i32] })) - Complexity = 11
                  // Dst: (ANDIo_1_EQ_BIT:{ *:[i1] } i32:{ *:[i32] }:$in)
/* 58346*/      /*SwitchType*/ 10, MVT::i64,// ->58358
/* 58348*/        OPC_MoveParent,
/* 58349*/        OPC_CheckType, MVT::i1,
/* 58351*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDIo_1_EQ_BIT8), 0,
                      MVT::i1, 1/*#Ops*/, 0, 
                  // Src: (trunc:{ *:[i1] } (xor:{ *:[i64] } i64:{ *:[i64] }:$in, -1:{ *:[i64] })) - Complexity = 11
                  // Dst: (ANDIo_1_EQ_BIT8:{ *:[i1] } i64:{ *:[i64] }:$in)
/* 58358*/      0, // EndSwitchType
/* 58359*/    /*Scope*/ 40, /*->58400*/
/* 58360*/      OPC_RecordChild0, // #0 = $in
/* 58361*/      OPC_SwitchType /*2 cases */, 11, MVT::i32,// ->58375
/* 58364*/        OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 58367*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (trunc:{ *:[i32] } i64:{ *:[i64] }:$in) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i32] } ?:{ *:[i64] }:$in, sub_32:{ *:[i32] })
/* 58375*/      /*SwitchType*/ 22, MVT::i1,// ->58399
/* 58377*/        OPC_Scope, 9, /*->58388*/ // 2 children in Scope
/* 58379*/          OPC_CheckChild0Type, MVT::i32,
/* 58381*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDIo_1_GT_BIT), 0,
                        MVT::i1, 1/*#Ops*/, 0, 
                    // Src: (trunc:{ *:[i1] } i32:{ *:[i32] }:$in) - Complexity = 3
                    // Dst: (ANDIo_1_GT_BIT:{ *:[i1] } i32:{ *:[i32] }:$in)
/* 58388*/        /*Scope*/ 9, /*->58398*/
/* 58389*/          OPC_CheckChild0Type, MVT::i64,
/* 58391*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ANDIo_1_GT_BIT8), 0,
                        MVT::i1, 1/*#Ops*/, 0, 
                    // Src: (trunc:{ *:[i1] } i64:{ *:[i64] }:$in) - Complexity = 3
                    // Dst: (ANDIo_1_GT_BIT8:{ *:[i1] } i64:{ *:[i64] }:$in)
/* 58398*/        0, /*End of Scope*/
/* 58399*/      0, // EndSwitchType
/* 58400*/    0, /*End of Scope*/
/* 58401*/  /*SwitchOpcode*/ 21, TARGET_VAL(ISD::CALLSEQ_START),// ->58425
/* 58404*/    OPC_RecordNode, // #0 = 'callseq_start' chained node
/* 58405*/    OPC_RecordChild1, // #1 = $amt1
/* 58406*/    OPC_MoveChild1,
/* 58407*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 58410*/    OPC_MoveParent,
/* 58411*/    OPC_RecordChild2, // #2 = $amt2
/* 58412*/    OPC_MoveChild2,
/* 58413*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 58416*/    OPC_MoveParent,
/* 58417*/    OPC_EmitMergeInputChains1_0,
/* 58418*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::ADJCALLSTACKDOWN), 0|OPFL_Chain|OPFL_GlueOutput,
                  2/*#Ops*/, 1, 2, 
              // Src: (callseq_start (timm:{ *:[i32] }):$amt1, (timm:{ *:[i32] }):$amt2) - Complexity = 9
              // Dst: (ADJCALLSTACKDOWN (timm:{ *:[i32] }):$amt1, (timm:{ *:[i32] }):$amt2)
/* 58425*/  /*SwitchOpcode*/ 22, TARGET_VAL(ISD::CALLSEQ_END),// ->58450
/* 58428*/    OPC_RecordNode, // #0 = 'callseq_end' chained node
/* 58429*/    OPC_CaptureGlueInput,
/* 58430*/    OPC_RecordChild1, // #1 = $amt1
/* 58431*/    OPC_MoveChild1,
/* 58432*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 58435*/    OPC_MoveParent,
/* 58436*/    OPC_RecordChild2, // #2 = $amt2
/* 58437*/    OPC_MoveChild2,
/* 58438*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetConstant),
/* 58441*/    OPC_MoveParent,
/* 58442*/    OPC_EmitMergeInputChains1_0,
/* 58443*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::ADJCALLSTACKUP), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput,
                  2/*#Ops*/, 1, 2, 
              // Src: (callseq_end (timm:{ *:[i32] }):$amt1, (timm:{ *:[i32] }):$amt2) - Complexity = 9
              // Dst: (ADJCALLSTACKUP (timm:{ *:[i32] }):$amt1, (timm:{ *:[i32] }):$amt2)
/* 58450*/  /*SwitchOpcode*/ 53|128,1/*181*/, TARGET_VAL(PPCISD::TC_RETURN),// ->58635
/* 58454*/    OPC_RecordNode, // #0 = 'PPCtc_return' chained node
/* 58455*/    OPC_CaptureGlueInput,
/* 58456*/    OPC_RecordChild1, // #1 = $func
/* 58457*/    OPC_Scope, 8|128,1/*136*/, /*->58596*/ // 3 children in Scope
/* 58460*/      OPC_MoveChild1,
/* 58461*/      OPC_SwitchOpcode /*3 cases */, 44, TARGET_VAL(ISD::Constant),// ->58509
/* 58465*/        OPC_SwitchType /*2 cases */, 19, MVT::i32,// ->58487
/* 58468*/          OPC_MoveParent,
/* 58469*/          OPC_RecordChild2, // #2 = $offset
/* 58470*/          OPC_MoveChild2,
/* 58471*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58474*/          OPC_MoveParent,
/* 58475*/          OPC_EmitMergeInputChains1_0,
/* 58476*/          OPC_EmitConvertToTarget, 1,
/* 58478*/          OPC_EmitConvertToTarget, 2,
/* 58480*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNai), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                        2/*#Ops*/, 3, 4, 
                    // Src: (PPCtc_return (imm:{ *:[i32] }):$func, (imm:{ *:[i32] }):$offset) - Complexity = 9
                    // Dst: (TCRETURNai (imm:{ *:[i32] }):$func, (imm:{ *:[i32] }):$offset)
/* 58487*/        /*SwitchType*/ 19, MVT::i64,// ->58508
/* 58489*/          OPC_MoveParent,
/* 58490*/          OPC_RecordChild2, // #2 = $offset
/* 58491*/          OPC_MoveChild2,
/* 58492*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58495*/          OPC_MoveParent,
/* 58496*/          OPC_EmitMergeInputChains1_0,
/* 58497*/          OPC_EmitConvertToTarget, 1,
/* 58499*/          OPC_EmitConvertToTarget, 2,
/* 58501*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNai8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                        2/*#Ops*/, 3, 4, 
                    // Src: (PPCtc_return (imm:{ *:[i64] }):$func, (imm:{ *:[i32] }):$offset) - Complexity = 9
                    // Dst: (TCRETURNai8 (imm:{ *:[i64] }):$func, (imm:{ *:[i32] }):$offset)
/* 58508*/        0, // EndSwitchType
/* 58509*/      /*SwitchOpcode*/ 40, TARGET_VAL(ISD::TargetGlobalAddress),// ->58552
/* 58512*/        OPC_SwitchType /*2 cases */, 17, MVT::i32,// ->58532
/* 58515*/          OPC_MoveParent,
/* 58516*/          OPC_RecordChild2, // #2 = $imm
/* 58517*/          OPC_MoveChild2,
/* 58518*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58521*/          OPC_MoveParent,
/* 58522*/          OPC_EmitMergeInputChains1_0,
/* 58523*/          OPC_EmitConvertToTarget, 2,
/* 58525*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNdi), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                        2/*#Ops*/, 1, 3, 
                    // Src: (PPCtc_return (tglobaladdr:{ *:[i32] }):$dst, (imm:{ *:[i32] }):$imm) - Complexity = 9
                    // Dst: (TCRETURNdi (tglobaladdr:{ *:[i32] }):$dst, (imm:{ *:[i32] }):$imm)
/* 58532*/        /*SwitchType*/ 17, MVT::i64,// ->58551
/* 58534*/          OPC_MoveParent,
/* 58535*/          OPC_RecordChild2, // #2 = $imm
/* 58536*/          OPC_MoveChild2,
/* 58537*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58540*/          OPC_MoveParent,
/* 58541*/          OPC_EmitMergeInputChains1_0,
/* 58542*/          OPC_EmitConvertToTarget, 2,
/* 58544*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNdi8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                        2/*#Ops*/, 1, 3, 
                    // Src: (PPCtc_return (tglobaladdr:{ *:[i64] }):$dst, (imm:{ *:[i32] }):$imm) - Complexity = 9
                    // Dst: (TCRETURNdi8 (tglobaladdr:{ *:[i64] }):$dst, (imm:{ *:[i32] }):$imm)
/* 58551*/        0, // EndSwitchType
/* 58552*/      /*SwitchOpcode*/ 40, TARGET_VAL(ISD::TargetExternalSymbol),// ->58595
/* 58555*/        OPC_SwitchType /*2 cases */, 17, MVT::i32,// ->58575
/* 58558*/          OPC_MoveParent,
/* 58559*/          OPC_RecordChild2, // #2 = $imm
/* 58560*/          OPC_MoveChild2,
/* 58561*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58564*/          OPC_MoveParent,
/* 58565*/          OPC_EmitMergeInputChains1_0,
/* 58566*/          OPC_EmitConvertToTarget, 2,
/* 58568*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNdi), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                        2/*#Ops*/, 1, 3, 
                    // Src: (PPCtc_return (texternalsym:{ *:[i32] }):$dst, (imm:{ *:[i32] }):$imm) - Complexity = 9
                    // Dst: (TCRETURNdi (texternalsym:{ *:[i32] }):$dst, (imm:{ *:[i32] }):$imm)
/* 58575*/        /*SwitchType*/ 17, MVT::i64,// ->58594
/* 58577*/          OPC_MoveParent,
/* 58578*/          OPC_RecordChild2, // #2 = $imm
/* 58579*/          OPC_MoveChild2,
/* 58580*/          OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58583*/          OPC_MoveParent,
/* 58584*/          OPC_EmitMergeInputChains1_0,
/* 58585*/          OPC_EmitConvertToTarget, 2,
/* 58587*/          OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNdi8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                        2/*#Ops*/, 1, 3, 
                    // Src: (PPCtc_return (texternalsym:{ *:[i64] }):$dst, (imm:{ *:[i32] }):$imm) - Complexity = 9
                    // Dst: (TCRETURNdi8 (texternalsym:{ *:[i64] }):$dst, (imm:{ *:[i32] }):$imm)
/* 58594*/        0, // EndSwitchType
/* 58595*/      0, // EndSwitchOpcode
/* 58596*/    /*Scope*/ 18, /*->58615*/
/* 58597*/      OPC_CheckChild1Type, MVT::i32,
/* 58599*/      OPC_RecordChild2, // #2 = $imm
/* 58600*/      OPC_MoveChild2,
/* 58601*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58604*/      OPC_MoveParent,
/* 58605*/      OPC_EmitMergeInputChains1_0,
/* 58606*/      OPC_EmitConvertToTarget, 2,
/* 58608*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNri), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                    2/*#Ops*/, 1, 3, 
                // Src: (PPCtc_return CTRRC:{ *:[i32] }:$dst, (imm:{ *:[i32] }):$imm) - Complexity = 6
                // Dst: (TCRETURNri CTRRC:{ *:[i32] }:$dst, (imm:{ *:[i32] }):$imm)
/* 58615*/    /*Scope*/ 18, /*->58634*/
/* 58616*/      OPC_CheckChild1Type, MVT::i64,
/* 58618*/      OPC_RecordChild2, // #2 = $imm
/* 58619*/      OPC_MoveChild2,
/* 58620*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58623*/      OPC_MoveParent,
/* 58624*/      OPC_EmitMergeInputChains1_0,
/* 58625*/      OPC_EmitConvertToTarget, 2,
/* 58627*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::TCRETURNri8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic2,
                    2/*#Ops*/, 1, 3, 
                // Src: (PPCtc_return CTRRC8:{ *:[i64] }:$dst, (imm:{ *:[i32] }):$imm) - Complexity = 6
                // Dst: (TCRETURNri8 CTRRC8:{ *:[i64] }:$dst, (imm:{ *:[i32] }):$imm)
/* 58634*/    0, /*End of Scope*/
/* 58635*/  /*SwitchOpcode*/ 28, TARGET_VAL(PPCISD::MFBHRBE),// ->58666
/* 58638*/    OPC_RecordNode, // #0 = 'PPCmfbhrbe' chained node
/* 58639*/    OPC_RecordChild1, // #1 = $imm
/* 58640*/    OPC_MoveChild1,
/* 58641*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58644*/    OPC_MoveParent,
/* 58645*/    OPC_RecordChild2, // #2 = $dmy
/* 58646*/    OPC_MoveChild2,
/* 58647*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58650*/    OPC_MoveParent,
/* 58651*/    OPC_CheckType, MVT::i32,
/* 58653*/    OPC_EmitMergeInputChains1_0,
/* 58654*/    OPC_EmitConvertToTarget, 1,
/* 58656*/    OPC_EmitConvertToTarget, 2,
/* 58658*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::MFBHRBE), 0|OPFL_Chain,
                  MVT::i32, 2/*#Ops*/, 3, 4, 
              // Src: (PPCmfbhrbe:{ *:[i32] } (imm:{ *:[i32] }):$imm, (imm:{ *:[i32] }):$dmy) - Complexity = 9
              // Dst: (MFBHRBE:{ *:[i32] } (imm:{ *:[i32] }):$imm, (imm:{ *:[i32] }):$dmy)
/* 58666*/  /*SwitchOpcode*/ 37, TARGET_VAL(PPCISD::ADDI_TLSGD_L_ADDR),// ->58706
/* 58669*/    OPC_RecordChild0, // #0 = $reg
/* 58670*/    OPC_RecordChild1, // #1 = $disp
/* 58671*/    OPC_MoveChild1,
/* 58672*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 58675*/    OPC_MoveParent,
/* 58676*/    OPC_RecordChild2, // #2 = $sym
/* 58677*/    OPC_MoveChild2,
/* 58678*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 58681*/    OPC_MoveParent,
/* 58682*/    OPC_SwitchType /*2 cases */, 9, MVT::i32,// ->58694
/* 58685*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsgdLADDR32), 0,
                    MVT::i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCaddiTlsgdLAddr:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp, (tglobaltlsaddr:{ *:[i32] }):$sym) - Complexity = 9
                // Dst: (ADDItlsgdLADDR32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp, (tglobaltlsaddr:{ *:[i32] }):$sym)
/* 58694*/    /*SwitchType*/ 9, MVT::i64,// ->58705
/* 58696*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsgdLADDR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCaddiTlsgdLAddr:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp, (tglobaltlsaddr:{ *:[i64] }):$sym) - Complexity = 9
                // Dst: (ADDItlsgdLADDR:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp, (tglobaltlsaddr:{ *:[i64] }):$sym)
/* 58705*/    0, // EndSwitchType
/* 58706*/  /*SwitchOpcode*/ 37, TARGET_VAL(PPCISD::ADDI_TLSLD_L_ADDR),// ->58746
/* 58709*/    OPC_RecordChild0, // #0 = $reg
/* 58710*/    OPC_RecordChild1, // #1 = $disp
/* 58711*/    OPC_MoveChild1,
/* 58712*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 58715*/    OPC_MoveParent,
/* 58716*/    OPC_RecordChild2, // #2 = $sym
/* 58717*/    OPC_MoveChild2,
/* 58718*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 58721*/    OPC_MoveParent,
/* 58722*/    OPC_SwitchType /*2 cases */, 9, MVT::i32,// ->58734
/* 58725*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsldLADDR32), 0,
                    MVT::i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCaddiTlsldLAddr:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp, (tglobaltlsaddr:{ *:[i32] }):$sym) - Complexity = 9
                // Dst: (ADDItlsldLADDR32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp, (tglobaltlsaddr:{ *:[i32] }):$sym)
/* 58734*/    /*SwitchType*/ 9, MVT::i64,// ->58745
/* 58736*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsldLADDR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCaddiTlsldLAddr:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp, (tglobaltlsaddr:{ *:[i64] }):$sym) - Complexity = 9
                // Dst: (ADDItlsldLADDR:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp, (tglobaltlsaddr:{ *:[i64] }):$sym)
/* 58745*/    0, // EndSwitchType
/* 58746*/  /*SwitchOpcode*/ 36, TARGET_VAL(PPCISD::EH_SJLJ_SETJMP),// ->58785
/* 58749*/    OPC_RecordNode, // #0 = 'PPCeh_sjlj_setjmp' chained node
/* 58750*/    OPC_RecordChild1, // #1 = $buf
/* 58751*/    OPC_CheckType, MVT::i32,
/* 58753*/    OPC_Scope, 14, /*->58769*/ // 2 children in Scope
/* 58755*/      OPC_CheckPatternPredicate, 41, // (!PPCSubTarget->isPPC64())
/* 58757*/      OPC_CheckComplexPat, /*CP*/8, /*#*/1, // SelectAddr:$buf #2
/* 58760*/      OPC_EmitMergeInputChains1_0,
/* 58761*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::EH_SjLj_SetJmp32), 0|OPFL_Chain,
                    MVT::i32, MVT::i32, 1/*#Ops*/, 2, 
                // Src: (PPCeh_sjlj_setjmp:{ *:[i32] } addr:{ *:[iPTR] }:$buf) - Complexity = 9
                // Dst: (EH_SjLj_SetJmp32:{ *:[i32] }:{ *:[i32] } addr:{ *:[iPTR] }:$buf)
/* 58769*/    /*Scope*/ 14, /*->58784*/
/* 58770*/      OPC_CheckPatternPredicate, 40, // (PPCSubTarget->isPPC64())
/* 58772*/      OPC_CheckComplexPat, /*CP*/8, /*#*/1, // SelectAddr:$buf #2
/* 58775*/      OPC_EmitMergeInputChains1_0,
/* 58776*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::EH_SjLj_SetJmp64), 0|OPFL_Chain,
                    MVT::i32, MVT::i64, 1/*#Ops*/, 2, 
                // Src: (PPCeh_sjlj_setjmp:{ *:[i32] } addr:{ *:[iPTR] }:$buf) - Complexity = 9
                // Dst: (EH_SjLj_SetJmp64:{ *:[i32] }:{ *:[i64] } addr:{ *:[iPTR] }:$buf)
/* 58784*/    0, /*End of Scope*/
/* 58785*/  /*SwitchOpcode*/ 30, TARGET_VAL(PPCISD::EH_SJLJ_LONGJMP),// ->58818
/* 58788*/    OPC_RecordNode, // #0 = 'PPCeh_sjlj_longjmp' chained node
/* 58789*/    OPC_RecordChild1, // #1 = $buf
/* 58790*/    OPC_Scope, 12, /*->58804*/ // 2 children in Scope
/* 58792*/      OPC_CheckPatternPredicate, 41, // (!PPCSubTarget->isPPC64())
/* 58794*/      OPC_CheckComplexPat, /*CP*/8, /*#*/1, // SelectAddr:$buf #2
/* 58797*/      OPC_EmitMergeInputChains1_0,
/* 58798*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::EH_SjLj_LongJmp32), 0|OPFL_Chain,
                    1/*#Ops*/, 2, 
                // Src: (PPCeh_sjlj_longjmp addr:{ *:[iPTR] }:$buf) - Complexity = 9
                // Dst: (EH_SjLj_LongJmp32 addr:{ *:[iPTR] }:$buf)
/* 58804*/    /*Scope*/ 12, /*->58817*/
/* 58805*/      OPC_CheckPatternPredicate, 40, // (PPCSubTarget->isPPC64())
/* 58807*/      OPC_CheckComplexPat, /*CP*/8, /*#*/1, // SelectAddr:$buf #2
/* 58810*/      OPC_EmitMergeInputChains1_0,
/* 58811*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::EH_SjLj_LongJmp64), 0|OPFL_Chain,
                    1/*#Ops*/, 2, 
                // Src: (PPCeh_sjlj_longjmp addr:{ *:[iPTR] }:$buf) - Complexity = 9
                // Dst: (EH_SjLj_LongJmp64 addr:{ *:[iPTR] }:$buf)
/* 58817*/    0, /*End of Scope*/
/* 58818*/  /*SwitchOpcode*/ 85|128,1/*213*/, TARGET_VAL(ISD::SUB),// ->59035
/* 58822*/    OPC_Scope, 23, /*->58847*/ // 4 children in Scope
/* 58824*/      OPC_CheckChild0Integer, 0, 
/* 58826*/      OPC_RecordChild1, // #0 = $rA
/* 58827*/      OPC_SwitchType /*2 cases */, 7, MVT::i32,// ->58837
/* 58830*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::NEG), 0,
                      MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (sub:{ *:[i32] } 0:{ *:[i32] }, i32:{ *:[i32] }:$rA) - Complexity = 8
                  // Dst: (NEG:{ *:[i32] } i32:{ *:[i32] }:$rA)
/* 58837*/      /*SwitchType*/ 7, MVT::i64,// ->58846
/* 58839*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::NEG8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (sub:{ *:[i64] } 0:{ *:[i64] }, i64:{ *:[i64] }:$rA) - Complexity = 8
                  // Dst: (NEG8:{ *:[i64] } i64:{ *:[i64] }:$rA)
/* 58846*/      0, // EndSwitchType
/* 58847*/    /*Scope*/ 80, /*->58928*/
/* 58848*/      OPC_RecordChild0, // #0 = $imm
/* 58849*/      OPC_Scope, 42, /*->58893*/ // 2 children in Scope
/* 58851*/        OPC_MoveChild0,
/* 58852*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 58855*/        OPC_Scope, 17, /*->58874*/ // 2 children in Scope
/* 58857*/          OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 58859*/          OPC_MoveParent,
/* 58860*/          OPC_RecordChild1, // #1 = $in
/* 58861*/          OPC_CheckType, MVT::i32,
/* 58863*/          OPC_EmitConvertToTarget, 0,
/* 58865*/          OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFIC), 0,
                        MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2, 
                    // Src: (sub:{ *:[i32] } (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, i32:{ *:[i32] }:$in) - Complexity = 7
                    // Dst: (SUBFIC:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm)
/* 58874*/        /*Scope*/ 17, /*->58892*/
/* 58875*/          OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 58877*/          OPC_MoveParent,
/* 58878*/          OPC_RecordChild1, // #1 = $in
/* 58879*/          OPC_CheckType, MVT::i64,
/* 58881*/          OPC_EmitConvertToTarget, 0,
/* 58883*/          OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFIC8), 0,
                        MVT::i64, MVT::i32, 2/*#Ops*/, 1, 2, 
                    // Src: (sub:{ *:[i64] } (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, i64:{ *:[i64] }:$in) - Complexity = 7
                    // Dst: (SUBFIC8:{ *:[i64] }:{ *:[i32] } ?:{ *:[i64] }:$in, (imm:{ *:[i64] }):$imm)
/* 58892*/        0, /*End of Scope*/
/* 58893*/      /*Scope*/ 33, /*->58927*/
/* 58894*/        OPC_RecordChild1, // #1 = $rA
/* 58895*/        OPC_SwitchType /*3 cases */, 8, MVT::i32,// ->58906
/* 58898*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::SUBF), 0,
                        MVT::i32, 2/*#Ops*/, 1, 0, 
                    // Src: (sub:{ *:[i32] } i32:{ *:[i32] }:$rB, i32:{ *:[i32] }:$rA) - Complexity = 3
                    // Dst: (SUBF:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 58906*/        /*SwitchType*/ 8, MVT::i64,// ->58916
/* 58908*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::SUBF8), 0,
                        MVT::i64, 2/*#Ops*/, 1, 0, 
                    // Src: (sub:{ *:[i64] } i64:{ *:[i64] }:$rB, i64:{ *:[i64] }:$rA) - Complexity = 3
                    // Dst: (SUBF8:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 58916*/        /*SwitchType*/ 8, MVT::i1,// ->58926
/* 58918*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRXOR), 0,
                        MVT::i1, 2/*#Ops*/, 0, 1, 
                    // Src: (sub:{ *:[i1] } i1:{ *:[i1] }:$a, i1:{ *:[i1] }:$b) - Complexity = 3
                    // Dst: (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$a, ?:{ *:[i1] }:$b)
/* 58926*/        0, // EndSwitchType
/* 58927*/      0, /*End of Scope*/
/* 58928*/    /*Scope*/ 40, /*->58969*/
/* 58929*/      OPC_MoveChild0,
/* 58930*/      OPC_Scope, 21, /*->58953*/ // 2 children in Scope
/* 58932*/        OPC_CheckOpcode, TARGET_VAL(ISD::BITCAST),
/* 58935*/        OPC_MoveChild0,
/* 58936*/        OPC_CheckImmAllZerosV,
/* 58937*/        OPC_CheckType, MVT::v4i32,
/* 58939*/        OPC_MoveParent,
/* 58940*/        OPC_MoveParent,
/* 58941*/        OPC_RecordChild1, // #0 = $vB
/* 58942*/        OPC_CheckType, MVT::v2i64,
/* 58944*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 58946*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VNEGD), 0,
                      MVT::v2i64, 1/*#Ops*/, 0, 
                  // Src: (sub:{ *:[v2i64] } (bitconvert:{ *:[v2i64] } immAllZerosV:{ *:[v4i32] }), v2i64:{ *:[v2i64] }:$vB) - Complexity = 10
                  // Dst: (VNEGD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB)
/* 58953*/      /*Scope*/ 14, /*->58968*/
/* 58954*/        OPC_CheckImmAllZerosV,
/* 58955*/        OPC_MoveParent,
/* 58956*/        OPC_RecordChild1, // #0 = $vB
/* 58957*/        OPC_CheckType, MVT::v4i32,
/* 58959*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 58961*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VNEGW), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (sub:{ *:[v4i32] } immAllZerosV:{ *:[v4i32] }, v4i32:{ *:[v4i32] }:$vB) - Complexity = 7
                  // Dst: (VNEGW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB)
/* 58968*/      0, /*End of Scope*/
/* 58969*/    /*Scope*/ 64, /*->59034*/
/* 58970*/      OPC_RecordChild0, // #0 = $vA
/* 58971*/      OPC_RecordChild1, // #1 = $vB
/* 58972*/      OPC_SwitchType /*5 cases */, 10, MVT::v16i8,// ->58985
/* 58975*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 58977*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUBM), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (sub:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                  // Dst: (VSUBUBM:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/* 58985*/      /*SwitchType*/ 10, MVT::v8i16,// ->58997
/* 58987*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 58989*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUHM), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (sub:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                  // Dst: (VSUBUHM:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/* 58997*/      /*SwitchType*/ 10, MVT::v4i32,// ->59009
/* 58999*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 59001*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUWM), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (sub:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                  // Dst: (VSUBUWM:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 59009*/      /*SwitchType*/ 10, MVT::v2i64,// ->59021
/* 59011*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 59013*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUDM), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1, 
                  // Src: (sub:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                  // Dst: (VSUBUDM:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/* 59021*/      /*SwitchType*/ 10, MVT::v1i128,// ->59033
/* 59023*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 59025*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBUQM), 0,
                      MVT::v1i128, 2/*#Ops*/, 0, 1, 
                  // Src: (sub:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 3
                  // Dst: (VSUBUQM:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB)
/* 59033*/      0, // EndSwitchType
/* 59034*/    0, /*End of Scope*/
/* 59035*/  /*SwitchOpcode*/ 89, TARGET_VAL(ISD::ADDE),// ->59127
/* 59038*/    OPC_CaptureGlueInput,
/* 59039*/    OPC_RecordChild0, // #0 = $rA
/* 59040*/    OPC_Scope, 33, /*->59075*/ // 3 children in Scope
/* 59042*/      OPC_CheckChild1Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 59053*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->59064
/* 59056*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDME), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (adde:{ *:[i32] } i32:{ *:[i32] }:$rA, -1:{ *:[i32] }) - Complexity = 8
                  // Dst: (ADDME:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA)
/* 59064*/      /*SwitchType*/ 8, MVT::i64,// ->59074
/* 59066*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDME8), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (adde:{ *:[i64] } i64:{ *:[i64] }:$rA, -1:{ *:[i64] }) - Complexity = 8
                  // Dst: (ADDME8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA)
/* 59074*/      0, // EndSwitchType
/* 59075*/    /*Scope*/ 24, /*->59100*/
/* 59076*/      OPC_CheckChild1Integer, 0, 
/* 59078*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->59089
/* 59081*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDZE), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (adde:{ *:[i32] } i32:{ *:[i32] }:$rA, 0:{ *:[i32] }) - Complexity = 8
                  // Dst: (ADDZE:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA)
/* 59089*/      /*SwitchType*/ 8, MVT::i64,// ->59099
/* 59091*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDZE8), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (adde:{ *:[i64] } i64:{ *:[i64] }:$rA, 0:{ *:[i64] }) - Complexity = 8
                  // Dst: (ADDZE8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA)
/* 59099*/      0, // EndSwitchType
/* 59100*/    /*Scope*/ 25, /*->59126*/
/* 59101*/      OPC_RecordChild1, // #1 = $rB
/* 59102*/      OPC_SwitchType /*2 cases */, 9, MVT::i32,// ->59114
/* 59105*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDE), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (adde:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (ADDE:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 59114*/      /*SwitchType*/ 9, MVT::i64,// ->59125
/* 59116*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDE8), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (adde:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                  // Dst: (ADDE8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 59125*/      0, // EndSwitchType
/* 59126*/    0, /*End of Scope*/
/* 59127*/  /*SwitchOpcode*/ 91, TARGET_VAL(ISD::SUBE),// ->59221
/* 59130*/    OPC_CaptureGlueInput,
/* 59131*/    OPC_Scope, 34, /*->59167*/ // 3 children in Scope
/* 59133*/      OPC_CheckChild0Integer, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 59144*/      OPC_RecordChild1, // #0 = $rA
/* 59145*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->59156
/* 59148*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFME), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (sube:{ *:[i32] } -1:{ *:[i32] }, i32:{ *:[i32] }:$rA) - Complexity = 8
                  // Dst: (SUBFME:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA)
/* 59156*/      /*SwitchType*/ 8, MVT::i64,// ->59166
/* 59158*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFME8), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (sube:{ *:[i64] } -1:{ *:[i64] }, i64:{ *:[i64] }:$rA) - Complexity = 8
                  // Dst: (SUBFME8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA)
/* 59166*/      0, // EndSwitchType
/* 59167*/    /*Scope*/ 25, /*->59193*/
/* 59168*/      OPC_CheckChild0Integer, 0, 
/* 59170*/      OPC_RecordChild1, // #0 = $rA
/* 59171*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->59182
/* 59174*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFZE), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (sube:{ *:[i32] } 0:{ *:[i32] }, i32:{ *:[i32] }:$rA) - Complexity = 8
                  // Dst: (SUBFZE:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA)
/* 59182*/      /*SwitchType*/ 8, MVT::i64,// ->59192
/* 59184*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFZE8), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (sube:{ *:[i64] } 0:{ *:[i64] }, i64:{ *:[i64] }:$rA) - Complexity = 8
                  // Dst: (SUBFZE8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA)
/* 59192*/      0, // EndSwitchType
/* 59193*/    /*Scope*/ 26, /*->59220*/
/* 59194*/      OPC_RecordChild0, // #0 = $rB
/* 59195*/      OPC_RecordChild1, // #1 = $rA
/* 59196*/      OPC_SwitchType /*2 cases */, 9, MVT::i32,// ->59208
/* 59199*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFE), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (sube:{ *:[i32] } i32:{ *:[i32] }:$rB, i32:{ *:[i32] }:$rA) - Complexity = 3
                  // Dst: (SUBFE:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 59208*/      /*SwitchType*/ 9, MVT::i64,// ->59219
/* 59210*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFE8), 0|OPFL_GlueInput|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (sube:{ *:[i64] } i64:{ *:[i64] }:$rB, i64:{ *:[i64] }:$rA) - Complexity = 3
                  // Dst: (SUBFE8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 59219*/      0, // EndSwitchType
/* 59220*/    0, /*End of Scope*/
/* 59221*/  /*SwitchOpcode*/ 43, TARGET_VAL(PPCISD::EXTRACT_SPE),// ->59267
/* 59224*/    OPC_RecordChild0, // #0 = $rA
/* 59225*/    OPC_Scope, 15, /*->59242*/ // 2 children in Scope
/* 59227*/      OPC_CheckChild1Integer, 0, 
/* 59229*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 59231*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 59234*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCextract_spe:{ *:[i32] } f64:{ *:[f64] }:$rA, 0:{ *:[iPTR] }) - Complexity = 8
                // Dst: (EXTRACT_SUBREG:{ *:[i32] } ?:{ *:[f64] }:$rA, sub_32:{ *:[i32] })
/* 59242*/    /*Scope*/ 23, /*->59266*/
/* 59243*/      OPC_CheckChild1Integer, 1, 
/* 59245*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 59247*/      OPC_EmitNode1, TARGET_VAL(PPC::EVMERGEHI), 0,
                    MVT::f64, 2/*#Ops*/, 0, 0,  // Results = #1
/* 59255*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 59258*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 1, 2, 
                // Src: (PPCextract_spe:{ *:[i32] } f64:{ *:[f64] }:$rA, 1:{ *:[iPTR] }) - Complexity = 8
                // Dst: (EXTRACT_SUBREG:{ *:[i32] } (EVMERGEHI:{ *:[f64] } ?:{ *:[f64] }:$rA, ?:{ *:[f64] }:$rA), sub_32:{ *:[i32] })
/* 59266*/    0, /*End of Scope*/
/* 59267*/  /*SwitchOpcode*/ 79|128,7/*975*/, TARGET_VAL(ISD::INTRINSIC_W_CHAIN),// ->60246
/* 59271*/    OPC_RecordNode, // #0 = 'intrinsic_w_chain' chained node
/* 59272*/    OPC_Scope, 19, /*->59293*/ // 44 children in Scope
/* 59274*/      OPC_CheckChild1Integer, 16|128,43/*5520*/, 
/* 59277*/      OPC_RecordChild2, // #1 = $R
/* 59278*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59280*/      OPC_EmitMergeInputChains1_0,
/* 59281*/      OPC_EmitConvertToTarget, 1,
/* 59283*/      OPC_EmitNodeXForm, 5, 2, // HTM_get_imm
/* 59286*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TEND), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 3, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5520:{ *:[iPTR] }, i32:{ *:[i32] }:$R) - Complexity = 8
                // Dst: (TEND:{ *:[i32] } (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$R))
/* 59293*/    /*Scope*/ 14, /*->59308*/
/* 59294*/      OPC_CheckChild1Integer, 9|128,43/*5513*/, 
/* 59297*/      OPC_RecordChild2, // #1 = $R
/* 59298*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59300*/      OPC_EmitMergeInputChains1_0,
/* 59301*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TABORT), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5513:{ *:[iPTR] }, i32:{ *:[i32] }:$R) - Complexity = 8
                // Dst: (TABORT:{ *:[i32] } ?:{ *:[i32] }:$R)
/* 59308*/    /*Scope*/ 23, /*->59332*/
/* 59309*/      OPC_CheckChild1Integer, 12|128,43/*5516*/, 
/* 59312*/      OPC_RecordChild2, // #1 = $TO
/* 59313*/      OPC_RecordChild3, // #2 = $RA
/* 59314*/      OPC_RecordChild4, // #3 = $RB
/* 59315*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59317*/      OPC_EmitMergeInputChains1_0,
/* 59318*/      OPC_EmitConvertToTarget, 1,
/* 59320*/      OPC_EmitNodeXForm, 5, 4, // HTM_get_imm
/* 59323*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TABORTWC), 0|OPFL_Chain,
                    MVT::i32, 3/*#Ops*/, 5, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5516:{ *:[iPTR] }, i32:{ *:[i32] }:$TO, i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$RB) - Complexity = 8
                // Dst: (TABORTWC:{ *:[i32] } (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$TO), ?:{ *:[i32] }:$RA, ?:{ *:[i32] }:$RB)
/* 59332*/    /*Scope*/ 28, /*->59361*/
/* 59333*/      OPC_CheckChild1Integer, 13|128,43/*5517*/, 
/* 59336*/      OPC_RecordChild2, // #1 = $TO
/* 59337*/      OPC_RecordChild3, // #2 = $RA
/* 59338*/      OPC_RecordChild4, // #3 = $SI
/* 59339*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59341*/      OPC_EmitMergeInputChains1_0,
/* 59342*/      OPC_EmitConvertToTarget, 1,
/* 59344*/      OPC_EmitNodeXForm, 5, 4, // HTM_get_imm
/* 59347*/      OPC_EmitConvertToTarget, 3,
/* 59349*/      OPC_EmitNodeXForm, 5, 6, // HTM_get_imm
/* 59352*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TABORTWCI), 0|OPFL_Chain,
                    MVT::i32, 3/*#Ops*/, 5, 2, 7, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5517:{ *:[iPTR] }, i32:{ *:[i32] }:$TO, i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$SI) - Complexity = 8
                // Dst: (TABORTWCI:{ *:[i32] } (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$TO), ?:{ *:[i32] }:$RA, (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$SI))
/* 59361*/    /*Scope*/ 23, /*->59385*/
/* 59362*/      OPC_CheckChild1Integer, 10|128,43/*5514*/, 
/* 59365*/      OPC_RecordChild2, // #1 = $TO
/* 59366*/      OPC_RecordChild3, // #2 = $RA
/* 59367*/      OPC_RecordChild4, // #3 = $RB
/* 59368*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59370*/      OPC_EmitMergeInputChains1_0,
/* 59371*/      OPC_EmitConvertToTarget, 1,
/* 59373*/      OPC_EmitNodeXForm, 5, 4, // HTM_get_imm
/* 59376*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TABORTDC), 0|OPFL_Chain,
                    MVT::i32, 3/*#Ops*/, 5, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5514:{ *:[iPTR] }, i32:{ *:[i32] }:$TO, i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$RB) - Complexity = 8
                // Dst: (TABORTDC:{ *:[i32] } (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$TO), ?:{ *:[i32] }:$RA, ?:{ *:[i32] }:$RB)
/* 59385*/    /*Scope*/ 28, /*->59414*/
/* 59386*/      OPC_CheckChild1Integer, 11|128,43/*5515*/, 
/* 59389*/      OPC_RecordChild2, // #1 = $TO
/* 59390*/      OPC_RecordChild3, // #2 = $RA
/* 59391*/      OPC_RecordChild4, // #3 = $SI
/* 59392*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59394*/      OPC_EmitMergeInputChains1_0,
/* 59395*/      OPC_EmitConvertToTarget, 1,
/* 59397*/      OPC_EmitNodeXForm, 5, 4, // HTM_get_imm
/* 59400*/      OPC_EmitConvertToTarget, 3,
/* 59402*/      OPC_EmitNodeXForm, 5, 6, // HTM_get_imm
/* 59405*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TABORTDCI), 0|OPFL_Chain,
                    MVT::i32, 3/*#Ops*/, 5, 2, 7, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5515:{ *:[iPTR] }, i32:{ *:[i32] }:$TO, i32:{ *:[i32] }:$RA, i32:{ *:[i32] }:$SI) - Complexity = 8
                // Dst: (TABORTDCI:{ *:[i32] } (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$TO), ?:{ *:[i32] }:$RA, (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$SI))
/* 59414*/    /*Scope*/ 14, /*->59429*/
/* 59415*/      OPC_CheckChild1Integer, 19|128,43/*5523*/, 
/* 59418*/      OPC_RecordChild2, // #1 = $RA
/* 59419*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59421*/      OPC_EmitMergeInputChains1_0,
/* 59422*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TRECLAIM), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5523:{ *:[iPTR] }, i32:{ *:[i32] }:$RA) - Complexity = 8
                // Dst: (TRECLAIM:{ *:[i32] } ?:{ *:[i32] }:$RA)
/* 59429*/    /*Scope*/ 12, /*->59442*/
/* 59430*/      OPC_CheckChild1Integer, 18|128,43/*5522*/, 
/* 59433*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59435*/      OPC_EmitMergeInputChains1_0,
/* 59436*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TRECHKPT), 0|OPFL_Chain,
                    MVT::i32, 0/*#Ops*/, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5522:{ *:[iPTR] }) - Complexity = 8
                // Dst: (TRECHKPT:{ *:[i32] })
/* 59442*/    /*Scope*/ 19, /*->59462*/
/* 59443*/      OPC_CheckChild1Integer, 22|128,43/*5526*/, 
/* 59446*/      OPC_RecordChild2, // #1 = $L
/* 59447*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59449*/      OPC_EmitMergeInputChains1_0,
/* 59450*/      OPC_EmitConvertToTarget, 1,
/* 59452*/      OPC_EmitNodeXForm, 5, 2, // HTM_get_imm
/* 59455*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TSR), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 3, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5526:{ *:[iPTR] }, i32:{ *:[i32] }:$L) - Complexity = 8
                // Dst: (TSR:{ *:[i32] } (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$L))
/* 59462*/    /*Scope*/ 17, /*->59480*/
/* 59463*/      OPC_CheckChild1Integer, 36|128,42/*5412*/, 
/* 59466*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59468*/      OPC_EmitMergeInputChains1_0,
/* 59469*/      OPC_EmitInteger, MVT::i32, 2|128,1/*130*/, 
/* 59473*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFSPR8), 0|OPFL_Chain,
                    MVT::i64, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i64] } 5412:{ *:[iPTR] }) - Complexity = 8
                // Dst: (MFSPR8:{ *:[i64] } 130:{ *:[i32] })
/* 59480*/    /*Scope*/ 17, /*->59498*/
/* 59481*/      OPC_CheckChild1Integer, 37|128,42/*5413*/, 
/* 59484*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59486*/      OPC_EmitMergeInputChains1_0,
/* 59487*/      OPC_EmitInteger, MVT::i32, 3|128,1/*131*/, 
/* 59491*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFSPR8), 0|OPFL_Chain,
                    MVT::i64, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i64] } 5413:{ *:[iPTR] }) - Complexity = 8
                // Dst: (MFSPR8:{ *:[i64] } 131:{ *:[i32] })
/* 59498*/    /*Scope*/ 17, /*->59516*/
/* 59499*/      OPC_CheckChild1Integer, 38|128,42/*5414*/, 
/* 59502*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59504*/      OPC_EmitMergeInputChains1_0,
/* 59505*/      OPC_EmitInteger, MVT::i32, 0|128,1/*128*/, 
/* 59509*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFSPR8), 0|OPFL_Chain,
                    MVT::i64, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i64] } 5414:{ *:[iPTR] }) - Complexity = 8
                // Dst: (MFSPR8:{ *:[i64] } 128:{ *:[i32] })
/* 59516*/    /*Scope*/ 17, /*->59534*/
/* 59517*/      OPC_CheckChild1Integer, 39|128,42/*5415*/, 
/* 59520*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59522*/      OPC_EmitMergeInputChains1_0,
/* 59523*/      OPC_EmitInteger, MVT::i32, 1|128,1/*129*/, 
/* 59527*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFSPR8), 0|OPFL_Chain,
                    MVT::i64, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i64] } 5415:{ *:[iPTR] }) - Complexity = 8
                // Dst: (MFSPR8:{ *:[i64] } 129:{ *:[i32] })
/* 59534*/    /*Scope*/ 16, /*->59551*/
/* 59535*/      OPC_CheckChild1Integer, 17|128,43/*5521*/, 
/* 59538*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59540*/      OPC_EmitMergeInputChains1_0,
/* 59541*/      OPC_EmitInteger, MVT::i32, 1, 
/* 59544*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TEND), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5521:{ *:[iPTR] }) - Complexity = 8
                // Dst: (TEND:{ *:[i32] } 1:{ *:[i32] })
/* 59551*/    /*Scope*/ 16, /*->59568*/
/* 59552*/      OPC_CheckChild1Integer, 20|128,43/*5524*/, 
/* 59555*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59557*/      OPC_EmitMergeInputChains1_0,
/* 59558*/      OPC_EmitInteger, MVT::i32, 1, 
/* 59561*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TSR), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5524:{ *:[iPTR] }) - Complexity = 8
                // Dst: (TSR:{ *:[i32] } 1:{ *:[i32] })
/* 59568*/    /*Scope*/ 16, /*->59585*/
/* 59569*/      OPC_CheckChild1Integer, 23|128,43/*5527*/, 
/* 59572*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59574*/      OPC_EmitMergeInputChains1_0,
/* 59575*/      OPC_EmitInteger, MVT::i32, 0, 
/* 59578*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TSR), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 1, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5527:{ *:[iPTR] }) - Complexity = 8
                // Dst: (TSR:{ *:[i32] } 0:{ *:[i32] })
/* 59585*/    /*Scope*/ 64, /*->59650*/
/* 59586*/      OPC_CheckChild1Integer, 24|128,43/*5528*/, 
/* 59589*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59591*/      OPC_EmitMergeInputChains1_0,
/* 59592*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1
/* 59598*/      OPC_EmitInteger, MVT::i32, 0, 
/* 59601*/      OPC_EmitInteger, MVT::i32, 0, 
/* 59604*/      OPC_EmitNode1, TARGET_VAL(PPC::LI), 0,
                    MVT::i32, 1/*#Ops*/, 3,  // Results = #4
/* 59611*/      OPC_EmitInteger, MVT::i32, 0, 
/* 59614*/      OPC_EmitNode1, TARGET_VAL(PPC::TABORTWCI), 0|OPFL_Chain,
                    MVT::i32, 3/*#Ops*/, 2, 4, 5,  // Results = #6
/* 59623*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 59626*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 1, 6, 7,  // Results = #8
/* 59635*/      OPC_EmitInteger, MVT::i32, 36, 
/* 59638*/      OPC_EmitInteger, MVT::i32, 28, 
/* 59641*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0|OPFL_Chain,
                    MVT::i64, 3/*#Ops*/, 8, 9, 10, 
                // Src: (intrinsic_w_chain:{ *:[i64] } 5528:{ *:[iPTR] }) - Complexity = 8
                // Dst: (RLDICL:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (TABORTWCI:{ *:[i32] } 0:{ *:[i32] }, (LI:{ *:[i32] } 0:{ *:[i32] }), 0:{ *:[i32] }), sub_32:{ *:[i32] }), 36:{ *:[i32] }, 28:{ *:[i32] })
/* 59650*/    /*Scope*/ 12, /*->59663*/
/* 59651*/      OPC_CheckChild1Integer, 15|128,43/*5519*/, 
/* 59654*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59656*/      OPC_EmitMergeInputChains1_0,
/* 59657*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::TCHECK_RET), 0|OPFL_Chain,
                    MVT::i32, 0/*#Ops*/, 
                // Src: (intrinsic_w_chain:{ *:[i32] } 5519:{ *:[iPTR] }) - Complexity = 8
                // Dst: (TCHECK_RET:{ *:[i32] })
/* 59663*/    /*Scope*/ 33, /*->59697*/
/* 59664*/      OPC_CheckChild1Integer, 14|128,43/*5518*/, 
/* 59667*/      OPC_RecordChild2, // #1 = $R
/* 59668*/      OPC_CheckPatternPredicate, 18, // (PPCSubTarget->hasHTM())
/* 59670*/      OPC_EmitMergeInputChains1_0,
/* 59671*/      OPC_EmitConvertToTarget, 1,
/* 59673*/      OPC_EmitNodeXForm, 5, 2, // HTM_get_imm
/* 59676*/      OPC_EmitNode1, TARGET_VAL(PPC::TBEGIN_RET), 0|OPFL_Chain,
                    MVT::i32, 1/*#Ops*/, 3,  // Results = #4
/* 59683*/      OPC_EmitInteger, MVT::i32, 1, 
/* 59686*/      OPC_EmitNode1, TARGET_VAL(PPC::XORI), 0,
                    MVT::i32, 2/*#Ops*/, 4, 5,  // Results = #6
/* 59694*/      OPC_CompleteMatch, 1, 6, 
                 // Src: (intrinsic_w_chain:{ *:[i32] } 5518:{ *:[iPTR] }, i32:{ *:[i32] }:$R) - Complexity = 8
                 // Dst: (XORI:{ *:[i32] } (TBEGIN_RET:{ *:[i32] } (HTM_get_imm:{ *:[i32] } (imm:{ *:[i32] }):$R)), 1:{ *:[i32] })
/* 59697*/    /*Scope*/ 31, /*->59729*/
/* 59698*/      OPC_CheckChild1Integer, 5|128,43/*5509*/, 
/* 59701*/      OPC_RecordChild2, // #1 = $RND
/* 59702*/      OPC_Scope, 15, /*->59719*/ // 2 children in Scope
/* 59704*/        OPC_MoveChild2,
/* 59705*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 59708*/        OPC_MoveParent,
/* 59709*/        OPC_EmitMergeInputChains1_0,
/* 59710*/        OPC_EmitConvertToTarget, 1,
/* 59712*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SETRNDi), 0|OPFL_Chain,
                      MVT::f64, 1/*#Ops*/, 2, 
                  // Src: (intrinsic_w_chain:{ *:[f64] } 5509:{ *:[iPTR] }, (imm:{ *:[i32] }):$RND) - Complexity = 11
                  // Dst: (SETRNDi:{ *:[f64] } (imm:{ *:[i32] }):$RND)
/* 59719*/      /*Scope*/ 8, /*->59728*/
/* 59720*/        OPC_EmitMergeInputChains1_0,
/* 59721*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SETRND), 0|OPFL_Chain,
                      MVT::f64, 1/*#Ops*/, 1, 
                  // Src: (intrinsic_w_chain:{ *:[f64] } 5509:{ *:[iPTR] }, gprc:{ *:[i32] }:$in) - Complexity = 8
                  // Dst: (SETRND:{ *:[f64] } gprc:{ *:[i32] }:$in)
/* 59728*/      0, /*End of Scope*/
/* 59729*/    /*Scope*/ 52, /*->59782*/
/* 59730*/      OPC_CheckChild1Integer, 29|128,43/*5533*/, 
/* 59733*/      OPC_RecordChild2, // #1 = $src
/* 59734*/      OPC_Scope, 14, /*->59750*/ // 2 children in Scope
/* 59736*/        OPC_CheckPatternPredicate, 6, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 59738*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59741*/        OPC_EmitMergeInputChains1_0,
/* 59742*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVW4X), 0|OPFL_Chain,
                      MVT::v4i32, 2/*#Ops*/, 2, 3, 
                  // Src: (intrinsic_w_chain:{ *:[v4i32] } 5533:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 417
                  // Dst: (LXVW4X:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 59750*/      /*Scope*/ 30, /*->59781*/
/* 59751*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 59753*/        OPC_Scope, 12, /*->59767*/ // 2 children in Scope
/* 59755*/          OPC_CheckComplexPat, /*CP*/4, /*#*/1, // SelectAddrImmX16:$src #2 #3
/* 59758*/          OPC_EmitMergeInputChains1_0,
/* 59759*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXV), 0|OPFL_Chain,
                        MVT::v4i32, 2/*#Ops*/, 2, 3, 
                    // Src: (intrinsic_w_chain:{ *:[v4i32] } 5533:{ *:[iPTR] }, iaddrX16:{ *:[iPTR] }:$src) - Complexity = 417
                    // Dst: (LXV:{ *:[v4i32] } memrix16:{ *:[iPTR] }:$src)
/* 59767*/        /*Scope*/ 12, /*->59780*/
/* 59768*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59771*/          OPC_EmitMergeInputChains1_0,
/* 59772*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain,
                        MVT::v4i32, 2/*#Ops*/, 2, 3, 
                    // Src: (intrinsic_w_chain:{ *:[v4i32] } 5533:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 417
                    // Dst: (LXVX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 59780*/        0, /*End of Scope*/
/* 59781*/      0, /*End of Scope*/
/* 59782*/    /*Scope*/ 16, /*->59799*/
/* 59783*/      OPC_CheckChild1Integer, 30|128,43/*5534*/, 
/* 59786*/      OPC_RecordChild2, // #1 = $src
/* 59787*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59790*/      OPC_EmitMergeInputChains1_0,
/* 59791*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVW4X), 0|OPFL_Chain,
                    MVT::v4i32, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4i32] } 5534:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 417
                // Dst: (LXVW4X:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 59799*/    /*Scope*/ 19, /*->59819*/
/* 59800*/      OPC_CheckChild1Integer, 27|128,43/*5531*/, 
/* 59803*/      OPC_RecordChild2, // #1 = $src
/* 59804*/      OPC_RecordChild3, // #2 = $rB
/* 59805*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 59807*/      OPC_CheckComplexPat, /*CP*/8, /*#*/1, // SelectAddr:$src #3
/* 59810*/      OPC_EmitMergeInputChains1_0,
/* 59811*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVL), 0|OPFL_Chain,
                    MVT::v4i32, 2/*#Ops*/, 3, 2, 
                // Src: (intrinsic_w_chain:{ *:[v4i32] } 5531:{ *:[iPTR] }, addr:{ *:[iPTR] }:$src, i64:{ *:[i64] }:$rB) - Complexity = 414
                // Dst: (LXVL:{ *:[v4i32] } addr:{ *:[iPTR] }:$src, i64:{ *:[i64] }:$rB)
/* 59819*/    /*Scope*/ 19, /*->59839*/
/* 59820*/      OPC_CheckChild1Integer, 28|128,43/*5532*/, 
/* 59823*/      OPC_RecordChild2, // #1 = $src
/* 59824*/      OPC_RecordChild3, // #2 = $rB
/* 59825*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 59827*/      OPC_CheckComplexPat, /*CP*/8, /*#*/1, // SelectAddr:$src #3
/* 59830*/      OPC_EmitMergeInputChains1_0,
/* 59831*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVLL), 0|OPFL_Chain,
                    MVT::v4i32, 2/*#Ops*/, 3, 2, 
                // Src: (intrinsic_w_chain:{ *:[v4i32] } 5532:{ *:[iPTR] }, addr:{ *:[iPTR] }:$src, i64:{ *:[i64] }:$rB) - Complexity = 414
                // Dst: (LXVLL:{ *:[v4i32] } addr:{ *:[iPTR] }:$src, i64:{ *:[i64] }:$rB)
/* 59839*/    /*Scope*/ 18, /*->59858*/
/* 59840*/      OPC_CheckChild1Integer, 81|128,40/*5201*/, 
/* 59843*/      OPC_RecordChild2, // #1 = $src
/* 59844*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 59846*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59849*/      OPC_EmitMergeInputChains1_0,
/* 59850*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LVEBX), 0|OPFL_Chain,
                    MVT::v16i8, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v16i8] } 5201:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (LVEBX:{ *:[v16i8] } xoaddr:{ *:[iPTR] }:$src)
/* 59858*/    /*Scope*/ 18, /*->59877*/
/* 59859*/      OPC_CheckChild1Integer, 82|128,40/*5202*/, 
/* 59862*/      OPC_RecordChild2, // #1 = $src
/* 59863*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 59865*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59868*/      OPC_EmitMergeInputChains1_0,
/* 59869*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LVEHX), 0|OPFL_Chain,
                    MVT::v8i16, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v8i16] } 5202:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (LVEHX:{ *:[v8i16] } xoaddr:{ *:[iPTR] }:$src)
/* 59877*/    /*Scope*/ 18, /*->59896*/
/* 59878*/      OPC_CheckChild1Integer, 83|128,40/*5203*/, 
/* 59881*/      OPC_RecordChild2, // #1 = $src
/* 59882*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 59884*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59887*/      OPC_EmitMergeInputChains1_0,
/* 59888*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LVEWX), 0|OPFL_Chain,
                    MVT::v4i32, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4i32] } 5203:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (LVEWX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 59896*/    /*Scope*/ 18, /*->59915*/
/* 59897*/      OPC_CheckChild1Integer, 86|128,40/*5206*/, 
/* 59900*/      OPC_RecordChild2, // #1 = $src
/* 59901*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 59903*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59906*/      OPC_EmitMergeInputChains1_0,
/* 59907*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LVX), 0|OPFL_Chain,
                    MVT::v4i32, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4i32] } 5206:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (LVX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 59915*/    /*Scope*/ 18, /*->59934*/
/* 59916*/      OPC_CheckChild1Integer, 87|128,40/*5207*/, 
/* 59919*/      OPC_RecordChild2, // #1 = $src
/* 59920*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 59922*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59925*/      OPC_EmitMergeInputChains1_0,
/* 59926*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LVXL), 0|OPFL_Chain,
                    MVT::v4i32, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4i32] } 5207:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (LVXL:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/* 59934*/    /*Scope*/ 12, /*->59947*/
/* 59935*/      OPC_CheckChild1Integer, 88|128,40/*5208*/, 
/* 59938*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 59940*/      OPC_EmitMergeInputChains1_0,
/* 59941*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MFVSCR), 0|OPFL_Chain,
                    MVT::v8i16, 0/*#Ops*/, 
                // Src: (intrinsic_w_chain:{ *:[v8i16] } 5208:{ *:[iPTR] }) - Complexity = 8
                // Dst: (MFVSCR:{ *:[v8i16] })
/* 59947*/    /*Scope*/ 52, /*->60000*/
/* 59948*/      OPC_CheckChild1Integer, 25|128,43/*5529*/, 
/* 59951*/      OPC_RecordChild2, // #1 = $src
/* 59952*/      OPC_Scope, 14, /*->59968*/ // 2 children in Scope
/* 59954*/        OPC_CheckPatternPredicate, 15, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX())
/* 59956*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59959*/        OPC_EmitMergeInputChains1_0,
/* 59960*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVD2X), 0|OPFL_Chain,
                      MVT::v2f64, 2/*#Ops*/, 2, 3, 
                  // Src: (intrinsic_w_chain:{ *:[v2f64] } 5529:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 417
                  // Dst: (LXVD2X:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)
/* 59968*/      /*Scope*/ 30, /*->59999*/
/* 59969*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 59971*/        OPC_Scope, 12, /*->59985*/ // 2 children in Scope
/* 59973*/          OPC_CheckComplexPat, /*CP*/4, /*#*/1, // SelectAddrImmX16:$src #2 #3
/* 59976*/          OPC_EmitMergeInputChains1_0,
/* 59977*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXV), 0|OPFL_Chain,
                        MVT::v2f64, 2/*#Ops*/, 2, 3, 
                    // Src: (intrinsic_w_chain:{ *:[v2f64] } 5529:{ *:[iPTR] }, iaddrX16:{ *:[iPTR] }:$src) - Complexity = 417
                    // Dst: (LXV:{ *:[v2f64] } memrix16:{ *:[iPTR] }:$src)
/* 59985*/        /*Scope*/ 12, /*->59998*/
/* 59986*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 59989*/          OPC_EmitMergeInputChains1_0,
/* 59990*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVX), 0|OPFL_Chain,
                        MVT::v2f64, 2/*#Ops*/, 2, 3, 
                    // Src: (intrinsic_w_chain:{ *:[v2f64] } 5529:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 417
                    // Dst: (LXVX:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)
/* 59998*/        0, /*End of Scope*/
/* 59999*/      0, /*End of Scope*/
/* 60000*/    /*Scope*/ 16, /*->60017*/
/* 60001*/      OPC_CheckChild1Integer, 26|128,43/*5530*/, 
/* 60004*/      OPC_RecordChild2, // #1 = $src
/* 60005*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60008*/      OPC_EmitMergeInputChains1_0,
/* 60009*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVD2X), 0|OPFL_Chain,
                    MVT::v2f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v2f64] } 5530:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 417
                // Dst: (LXVD2X:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60017*/    /*Scope*/ 18, /*->60036*/
/* 60018*/      OPC_CheckChild1Integer, 105|128,42/*5481*/, 
/* 60021*/      OPC_RecordChild2, // #1 = $src
/* 60022*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60024*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60027*/      OPC_EmitMergeInputChains1_0,
/* 60028*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFDX), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5481:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFDX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60036*/    /*Scope*/ 18, /*->60055*/
/* 60037*/      OPC_CheckChild1Integer, 106|128,42/*5482*/, 
/* 60040*/      OPC_RecordChild2, // #1 = $src
/* 60041*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60043*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60046*/      OPC_EmitMergeInputChains1_0,
/* 60047*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFDXA), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5482:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFDXA:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60055*/    /*Scope*/ 18, /*->60074*/
/* 60056*/      OPC_CheckChild1Integer, 111|128,42/*5487*/, 
/* 60059*/      OPC_RecordChild2, // #1 = $src
/* 60060*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60062*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60065*/      OPC_EmitMergeInputChains1_0,
/* 60066*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFSX), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5487:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFSX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60074*/    /*Scope*/ 18, /*->60093*/
/* 60075*/      OPC_CheckChild1Integer, 112|128,42/*5488*/, 
/* 60078*/      OPC_RecordChild2, // #1 = $src
/* 60079*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60081*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60084*/      OPC_EmitMergeInputChains1_0,
/* 60085*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFSXA), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5488:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFSXA:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60093*/    /*Scope*/ 18, /*->60112*/
/* 60094*/      OPC_CheckChild1Integer, 102|128,42/*5478*/, 
/* 60097*/      OPC_RecordChild2, // #1 = $src
/* 60098*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60100*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60103*/      OPC_EmitMergeInputChains1_0,
/* 60104*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFCDXA), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5478:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFCDXA:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60112*/    /*Scope*/ 18, /*->60131*/
/* 60113*/      OPC_CheckChild1Integer, 101|128,42/*5477*/, 
/* 60116*/      OPC_RecordChild2, // #1 = $src
/* 60117*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60119*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60122*/      OPC_EmitMergeInputChains1_0,
/* 60123*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFCDX), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5477:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFCDX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60131*/    /*Scope*/ 18, /*->60150*/
/* 60132*/      OPC_CheckChild1Integer, 104|128,42/*5480*/, 
/* 60135*/      OPC_RecordChild2, // #1 = $src
/* 60136*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60138*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60141*/      OPC_EmitMergeInputChains1_0,
/* 60142*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFCSXA), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5480:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFCSXA:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60150*/    /*Scope*/ 18, /*->60169*/
/* 60151*/      OPC_CheckChild1Integer, 103|128,42/*5479*/, 
/* 60154*/      OPC_RecordChild2, // #1 = $src
/* 60155*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60157*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60160*/      OPC_EmitMergeInputChains1_0,
/* 60161*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFCSX), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5479:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFCSX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60169*/    /*Scope*/ 18, /*->60188*/
/* 60170*/      OPC_CheckChild1Integer, 108|128,42/*5484*/, 
/* 60173*/      OPC_RecordChild2, // #1 = $src
/* 60174*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60176*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60179*/      OPC_EmitMergeInputChains1_0,
/* 60180*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFIWAXA), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5484:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFIWAXA:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60188*/    /*Scope*/ 18, /*->60207*/
/* 60189*/      OPC_CheckChild1Integer, 107|128,42/*5483*/, 
/* 60192*/      OPC_RecordChild2, // #1 = $src
/* 60193*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60195*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60198*/      OPC_EmitMergeInputChains1_0,
/* 60199*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFIWAX), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5483:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFIWAX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60207*/    /*Scope*/ 18, /*->60226*/
/* 60208*/      OPC_CheckChild1Integer, 110|128,42/*5486*/, 
/* 60211*/      OPC_RecordChild2, // #1 = $src
/* 60212*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60214*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60217*/      OPC_EmitMergeInputChains1_0,
/* 60218*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFIWZXA), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5486:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFIWZXA:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60226*/    /*Scope*/ 18, /*->60245*/
/* 60227*/      OPC_CheckChild1Integer, 109|128,42/*5485*/, 
/* 60230*/      OPC_RecordChild2, // #1 = $src
/* 60231*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 60233*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 60236*/      OPC_EmitMergeInputChains1_0,
/* 60237*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFIWZX), 0|OPFL_Chain,
                    MVT::v4f64, 2/*#Ops*/, 2, 3, 
                // Src: (intrinsic_w_chain:{ *:[v4f64] } 5485:{ *:[iPTR] }, xoaddr:{ *:[iPTR] }:$src) - Complexity = 17
                // Dst: (QVLFIWZX:{ *:[v4f64] } xoaddr:{ *:[iPTR] }:$src)
/* 60245*/    0, /*End of Scope*/
/* 60246*/  /*SwitchOpcode*/ 69, TARGET_VAL(ISD::ADDC),// ->60318
/* 60249*/    OPC_RecordChild0, // #0 = $rA
/* 60250*/    OPC_RecordChild1, // #1 = $imm
/* 60251*/    OPC_Scope, 40, /*->60293*/ // 3 children in Scope
/* 60253*/      OPC_MoveChild1,
/* 60254*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 60257*/      OPC_Scope, 16, /*->60275*/ // 2 children in Scope
/* 60259*/        OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 60261*/        OPC_MoveParent,
/* 60262*/        OPC_CheckType, MVT::i32,
/* 60264*/        OPC_EmitConvertToTarget, 1,
/* 60266*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDIC), 0|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2, 
                  // Src: (addc:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm) - Complexity = 7
                  // Dst: (ADDIC:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] }):$imm)
/* 60275*/      /*Scope*/ 16, /*->60292*/
/* 60276*/        OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 60278*/        OPC_MoveParent,
/* 60279*/        OPC_CheckType, MVT::i64,
/* 60281*/        OPC_EmitConvertToTarget, 1,
/* 60283*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDIC8), 0|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 0, 2, 
                  // Src: (addc:{ *:[i64] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm) - Complexity = 7
                  // Dst: (ADDIC8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] }):$imm)
/* 60292*/      0, /*End of Scope*/
/* 60293*/    /*Scope*/ 11, /*->60305*/
/* 60294*/      OPC_CheckType, MVT::i32,
/* 60296*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDC), 0|OPFL_GlueOutput,
                    MVT::i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (addc:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (ADDC:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 60305*/    /*Scope*/ 11, /*->60317*/
/* 60306*/      OPC_CheckType, MVT::i64,
/* 60308*/      OPC_MorphNodeTo2, TARGET_VAL(PPC::ADDC8), 0|OPFL_GlueOutput,
                    MVT::i64, MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (addc:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (ADDC8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 60317*/    0, /*End of Scope*/
/* 60318*/  /*SwitchOpcode*/ 89, TARGET_VAL(ISD::MUL),// ->60410
/* 60321*/    OPC_RecordChild0, // #0 = $rA
/* 60322*/    OPC_RecordChild1, // #1 = $imm
/* 60323*/    OPC_Scope, 38, /*->60363*/ // 5 children in Scope
/* 60325*/      OPC_MoveChild1,
/* 60326*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 60329*/      OPC_Scope, 15, /*->60346*/ // 2 children in Scope
/* 60331*/        OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 60333*/        OPC_MoveParent,
/* 60334*/        OPC_CheckType, MVT::i32,
/* 60336*/        OPC_EmitConvertToTarget, 1,
/* 60338*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MULLI), 0,
                      MVT::i32, 2/*#Ops*/, 0, 2, 
                  // Src: (mul:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm) - Complexity = 7
                  // Dst: (MULLI:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] }):$imm)
/* 60346*/      /*Scope*/ 15, /*->60362*/
/* 60347*/        OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 60349*/        OPC_MoveParent,
/* 60350*/        OPC_CheckType, MVT::i64,
/* 60352*/        OPC_EmitConvertToTarget, 1,
/* 60354*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MULLI8), 0,
                      MVT::i64, 2/*#Ops*/, 0, 2, 
                  // Src: (mul:{ *:[i64] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm) - Complexity = 7
                  // Dst: (MULLI8:{ *:[i64] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] }):$imm)
/* 60362*/      0, /*End of Scope*/
/* 60363*/    /*Scope*/ 10, /*->60374*/
/* 60364*/      OPC_CheckType, MVT::i32,
/* 60366*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MULLW), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (mul:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (MULLW:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 60374*/    /*Scope*/ 10, /*->60385*/
/* 60375*/      OPC_CheckType, MVT::i64,
/* 60377*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MULLD), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (mul:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (MULLD:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 60385*/    /*Scope*/ 10, /*->60396*/
/* 60386*/      OPC_CheckType, MVT::i1,
/* 60388*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1, 
                // Src: (mul:{ *:[i1] } i1:{ *:[i1] }:$a, i1:{ *:[i1] }:$b) - Complexity = 3
                // Dst: (CRAND:{ *:[i1] } ?:{ *:[i1] }:$a, ?:{ *:[i1] }:$b)
/* 60396*/    /*Scope*/ 12, /*->60409*/
/* 60397*/      OPC_CheckType, MVT::v4i32,
/* 60399*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 60401*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMULUWM), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (mul:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VMULUWM:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/* 60409*/    0, /*End of Scope*/
/* 60410*/  /*SwitchOpcode*/ 72, TARGET_VAL(ISD::SUBC),// ->60485
/* 60413*/    OPC_RecordChild0, // #0 = $imm
/* 60414*/    OPC_Scope, 42, /*->60458*/ // 2 children in Scope
/* 60416*/      OPC_MoveChild0,
/* 60417*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 60420*/      OPC_Scope, 17, /*->60439*/ // 2 children in Scope
/* 60422*/        OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 60424*/        OPC_MoveParent,
/* 60425*/        OPC_RecordChild1, // #1 = $rA
/* 60426*/        OPC_CheckType, MVT::i32,
/* 60428*/        OPC_EmitConvertToTarget, 0,
/* 60430*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFIC), 0|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 1, 2, 
                  // Src: (subc:{ *:[i32] } (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, i32:{ *:[i32] }:$rA) - Complexity = 7
                  // Dst: (SUBFIC:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA, (imm:{ *:[i32] }):$imm)
/* 60439*/      /*Scope*/ 17, /*->60457*/
/* 60440*/        OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 60442*/        OPC_MoveParent,
/* 60443*/        OPC_RecordChild1, // #1 = $rA
/* 60444*/        OPC_CheckType, MVT::i64,
/* 60446*/        OPC_EmitConvertToTarget, 0,
/* 60448*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFIC8), 0|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 1, 2, 
                  // Src: (subc:{ *:[i64] } (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, i64:{ *:[i64] }:$rA) - Complexity = 7
                  // Dst: (SUBFIC8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA, (imm:{ *:[i64] }):$imm)
/* 60457*/      0, /*End of Scope*/
/* 60458*/    /*Scope*/ 25, /*->60484*/
/* 60459*/      OPC_RecordChild1, // #1 = $rA
/* 60460*/      OPC_SwitchType /*2 cases */, 9, MVT::i32,// ->60472
/* 60463*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFC), 0|OPFL_GlueOutput,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (subc:{ *:[i32] } i32:{ *:[i32] }:$rB, i32:{ *:[i32] }:$rA) - Complexity = 3
                  // Dst: (SUBFC:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 60472*/      /*SwitchType*/ 9, MVT::i64,// ->60483
/* 60474*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SUBFC8), 0|OPFL_GlueOutput,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 1, 0, 
                  // Src: (subc:{ *:[i64] } i64:{ *:[i64] }:$rB, i64:{ *:[i64] }:$rA) - Complexity = 3
                  // Dst: (SUBFC8:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 60483*/      0, // EndSwitchType
/* 60484*/    0, /*End of Scope*/
/* 60485*/  /*SwitchOpcode*/ 2|128,45/*5762*/, TARGET_VAL(ISD::SETCC),// ->66251
/* 60489*/    OPC_RecordChild0, // #0 = $s1
/* 60490*/    OPC_Scope, 12|128,8/*1036*/, /*->61529*/ // 8 children in Scope
/* 60493*/      OPC_CheckChild0Type, MVT::i32,
/* 60495*/      OPC_RecordChild1, // #1 = $imm
/* 60496*/      OPC_Scope, 14|128,5/*654*/, /*->61153*/ // 11 children in Scope
/* 60499*/        OPC_MoveChild1,
/* 60500*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 60503*/        OPC_Scope, 28, /*->60533*/ // 10 children in Scope
/* 60505*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 60507*/          OPC_MoveParent,
/* 60508*/          OPC_CheckChild2CondCode, ISD::SETULT,
/* 60510*/          OPC_CheckType, MVT::i1,
/* 60512*/          OPC_EmitConvertToTarget, 1,
/* 60514*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60522*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 60525*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4, 
                    // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULT:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] })
/* 60533*/        /*Scope*/ 28, /*->60562*/
/* 60534*/          OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 60536*/          OPC_MoveParent,
/* 60537*/          OPC_CheckChild2CondCode, ISD::SETLT,
/* 60539*/          OPC_CheckType, MVT::i1,
/* 60541*/          OPC_EmitConvertToTarget, 1,
/* 60543*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60551*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 60554*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4, 
                    // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLT:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] })
/* 60562*/        /*Scope*/ 28, /*->60591*/
/* 60563*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 60565*/          OPC_MoveParent,
/* 60566*/          OPC_CheckChild2CondCode, ISD::SETUGT,
/* 60568*/          OPC_CheckType, MVT::i1,
/* 60570*/          OPC_EmitConvertToTarget, 1,
/* 60572*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60580*/          OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 60583*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4, 
                    // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGT:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] })
/* 60591*/        /*Scope*/ 55, /*->60647*/
/* 60592*/          OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 60594*/          OPC_MoveParent,
/* 60595*/          OPC_CheckType, MVT::i1,
/* 60597*/          OPC_Scope, 23, /*->60622*/ // 2 children in Scope
/* 60599*/            OPC_CheckChild2CondCode, ISD::SETGT,
/* 60601*/            OPC_EmitConvertToTarget, 1,
/* 60603*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60611*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 60614*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGT:{ *:[Other] }) - Complexity = 7
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] })
/* 60622*/          /*Scope*/ 23, /*->60646*/
/* 60623*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/* 60625*/            OPC_EmitConvertToTarget, 1,
/* 60627*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60635*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 60638*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETEQ:{ *:[Other] }) - Complexity = 7
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] })
/* 60646*/          0, /*End of Scope*/
/* 60647*/        /*Scope*/ 84, /*->60732*/
/* 60648*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 60650*/          OPC_MoveParent,
/* 60651*/          OPC_CheckType, MVT::i1,
/* 60653*/          OPC_Scope, 23, /*->60678*/ // 2 children in Scope
/* 60655*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/* 60657*/            OPC_EmitConvertToTarget, 1,
/* 60659*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60667*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 60670*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETEQ:{ *:[Other] }) - Complexity = 7
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] })
/* 60678*/          /*Scope*/ 52, /*->60731*/
/* 60679*/            OPC_CheckChild2CondCode, ISD::SETUGE,
/* 60681*/            OPC_EmitConvertToTarget, 1,
/* 60683*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60691*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 60694*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 60702*/            OPC_EmitConvertToTarget, 1,
/* 60704*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 60712*/            OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 60715*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 60723*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                          MVT::i1, 2/*#Ops*/, 5, 9, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] }) - Complexity = 7
                      // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }))
/* 60731*/          0, /*End of Scope*/
/* 60732*/        /*Scope*/ 57, /*->60790*/
/* 60733*/          OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 60735*/          OPC_MoveParent,
/* 60736*/          OPC_CheckChild2CondCode, ISD::SETGE,
/* 60738*/          OPC_CheckType, MVT::i1,
/* 60740*/          OPC_EmitConvertToTarget, 1,
/* 60742*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60750*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 60753*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 60761*/          OPC_EmitConvertToTarget, 1,
/* 60763*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 60771*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 60774*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 60782*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 5, 9, 
                    // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETGE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_lt:{ *:[i32] }))
/* 60790*/        /*Scope*/ 57, /*->60848*/
/* 60791*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 60793*/          OPC_MoveParent,
/* 60794*/          OPC_CheckChild2CondCode, ISD::SETULE,
/* 60796*/          OPC_CheckType, MVT::i1,
/* 60798*/          OPC_EmitConvertToTarget, 1,
/* 60800*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60808*/          OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 60811*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 60819*/          OPC_EmitConvertToTarget, 1,
/* 60821*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 60829*/          OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 60832*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 60840*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 5, 9, 
                    // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }))
/* 60848*/        /*Scope*/ 113, /*->60962*/
/* 60849*/          OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 60851*/          OPC_MoveParent,
/* 60852*/          OPC_CheckType, MVT::i1,
/* 60854*/          OPC_Scope, 52, /*->60908*/ // 2 children in Scope
/* 60856*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 60858*/            OPC_EmitConvertToTarget, 1,
/* 60860*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60868*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 60871*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 60879*/            OPC_EmitConvertToTarget, 1,
/* 60881*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 60889*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 60892*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 60900*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                          MVT::i1, 2/*#Ops*/, 5, 9, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETLE:{ *:[Other] }) - Complexity = 7
                      // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_gt:{ *:[i32] }))
/* 60908*/          /*Scope*/ 52, /*->60961*/
/* 60909*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 60911*/            OPC_EmitConvertToTarget, 1,
/* 60913*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60921*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 60924*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 60932*/            OPC_EmitConvertToTarget, 1,
/* 60934*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPWI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 60942*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 60945*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 60953*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                          MVT::i1, 2/*#Ops*/, 5, 9, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm, SETNE:{ *:[Other] }) - Complexity = 7
                      // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }))
/* 60961*/          0, /*End of Scope*/
/* 60962*/        /*Scope*/ 57, /*->61020*/
/* 60963*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 60965*/          OPC_MoveParent,
/* 60966*/          OPC_CheckChild2CondCode, ISD::SETNE,
/* 60968*/          OPC_CheckType, MVT::i1,
/* 60970*/          OPC_EmitConvertToTarget, 1,
/* 60972*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 60980*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 60983*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 60991*/          OPC_EmitConvertToTarget, 1,
/* 60993*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 61001*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61004*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 61012*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 5, 9, 
                    // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } ?:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm), sub_eq:{ *:[i32] }))
/* 61020*/        /*Scope*/ 2|128,1/*130*/, /*->61152*/
/* 61022*/          OPC_MoveParent,
/* 61023*/          OPC_CheckType, MVT::i1,
/* 61025*/          OPC_Scope, 39, /*->61066*/ // 2 children in Scope
/* 61027*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/* 61029*/            OPC_EmitConvertToTarget, 1,
/* 61031*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 61034*/            OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 61042*/            OPC_EmitConvertToTarget, 1,
/* 61044*/            OPC_EmitNodeXForm, 1, 5, // LO16
/* 61047*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 61055*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61058*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETEQ:{ *:[Other] }) - Complexity = 6
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] })
/* 61066*/          /*Scope*/ 84, /*->61151*/
/* 61067*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 61069*/            OPC_EmitConvertToTarget, 1,
/* 61071*/            OPC_EmitNodeXForm, 0, 2, // HI16
/* 61074*/            OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 3,  // Results = #4
/* 61082*/            OPC_EmitConvertToTarget, 1,
/* 61084*/            OPC_EmitNodeXForm, 1, 5, // LO16
/* 61087*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 61095*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61098*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 61106*/            OPC_EmitConvertToTarget, 1,
/* 61108*/            OPC_EmitNodeXForm, 0, 10, // HI16
/* 61111*/            OPC_EmitNode1, TARGET_VAL(PPC::XORIS), 0,
                          MVT::i32, 2/*#Ops*/, 0, 11,  // Results = #12
/* 61119*/            OPC_EmitConvertToTarget, 1,
/* 61121*/            OPC_EmitNodeXForm, 1, 13, // LO16
/* 61124*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPLWI), 0,
                          MVT::i32, 2/*#Ops*/, 12, 14,  // Results = #15
/* 61132*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61135*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 15, 16,  // Results = #17
/* 61143*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                          MVT::i1, 2/*#Ops*/, 9, 17, 
                      // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, (imm:{ *:[i32] }):$imm, SETNE:{ *:[Other] }) - Complexity = 6
                      // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLWI:{ *:[i32] } (XORIS:{ *:[i32] } ?:{ *:[i32] }:$s1, (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), sub_eq:{ *:[i32] }))
/* 61151*/          0, /*End of Scope*/
/* 61152*/        0, /*End of Scope*/
/* 61153*/      /*Scope*/ 23, /*->61177*/
/* 61154*/        OPC_CheckChild2CondCode, ISD::SETULT,
/* 61156*/        OPC_CheckType, MVT::i1,
/* 61158*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61166*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61169*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] })
/* 61177*/      /*Scope*/ 23, /*->61201*/
/* 61178*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 61180*/        OPC_CheckType, MVT::i1,
/* 61182*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61190*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61193*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] })
/* 61201*/      /*Scope*/ 23, /*->61225*/
/* 61202*/        OPC_CheckChild2CondCode, ISD::SETUGT,
/* 61204*/        OPC_CheckType, MVT::i1,
/* 61206*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61214*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61217*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] })
/* 61225*/      /*Scope*/ 23, /*->61249*/
/* 61226*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 61228*/        OPC_CheckType, MVT::i1,
/* 61230*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61238*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61241*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] })
/* 61249*/      /*Scope*/ 23, /*->61273*/
/* 61250*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 61252*/        OPC_CheckType, MVT::i1,
/* 61254*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61262*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61265*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] })
/* 61273*/      /*Scope*/ 50, /*->61324*/
/* 61274*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 61276*/        OPC_CheckType, MVT::i1,
/* 61278*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61286*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61289*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 61297*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 61305*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61308*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 61316*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }))
/* 61324*/      /*Scope*/ 50, /*->61375*/
/* 61325*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 61327*/        OPC_CheckType, MVT::i1,
/* 61329*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61337*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61340*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 61348*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 61356*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61359*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 61367*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_lt:{ *:[i32] }))
/* 61375*/      /*Scope*/ 50, /*->61426*/
/* 61376*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 61378*/        OPC_CheckType, MVT::i1,
/* 61380*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61388*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61391*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 61399*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 61407*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61410*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 61418*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }))
/* 61426*/      /*Scope*/ 50, /*->61477*/
/* 61427*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 61429*/        OPC_CheckType, MVT::i1,
/* 61431*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61439*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61442*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 61450*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 61458*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61461*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 61469*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_gt:{ *:[i32] }))
/* 61477*/      /*Scope*/ 50, /*->61528*/
/* 61478*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 61480*/        OPC_CheckType, MVT::i1,
/* 61482*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 61490*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61493*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 61501*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 61509*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61512*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 61520*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i32:{ *:[i32] }:$s1, i32:{ *:[i32] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPW:{ *:[i32] } ?:{ *:[i32] }:$s1, ?:{ *:[i32] }:$s2), sub_eq:{ *:[i32] }))
/* 61528*/      0, /*End of Scope*/
/* 61529*/    /*Scope*/ 17|128,8/*1041*/, /*->62572*/
/* 61531*/      OPC_CheckChild0Type, MVT::i64,
/* 61533*/      OPC_RecordChild1, // #1 = $imm
/* 61534*/      OPC_Scope, 19|128,5/*659*/, /*->62196*/ // 11 children in Scope
/* 61537*/        OPC_MoveChild1,
/* 61538*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 61541*/        OPC_Scope, 28, /*->61571*/ // 12 children in Scope
/* 61543*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 61545*/          OPC_MoveParent,
/* 61546*/          OPC_CheckChild2CondCode, ISD::SETULT,
/* 61548*/          OPC_CheckType, MVT::i1,
/* 61550*/          OPC_EmitConvertToTarget, 1,
/* 61552*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61560*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61563*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULT:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] })
/* 61571*/        /*Scope*/ 28, /*->61600*/
/* 61572*/          OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 61574*/          OPC_MoveParent,
/* 61575*/          OPC_CheckChild2CondCode, ISD::SETLT,
/* 61577*/          OPC_CheckType, MVT::i1,
/* 61579*/          OPC_EmitConvertToTarget, 1,
/* 61581*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61589*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61592*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLT:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] })
/* 61600*/        /*Scope*/ 28, /*->61629*/
/* 61601*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 61603*/          OPC_MoveParent,
/* 61604*/          OPC_CheckChild2CondCode, ISD::SETUGT,
/* 61606*/          OPC_CheckType, MVT::i1,
/* 61608*/          OPC_EmitConvertToTarget, 1,
/* 61610*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61618*/          OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61621*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGT:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] })
/* 61629*/        /*Scope*/ 55, /*->61685*/
/* 61630*/          OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 61632*/          OPC_MoveParent,
/* 61633*/          OPC_CheckType, MVT::i1,
/* 61635*/          OPC_Scope, 23, /*->61660*/ // 2 children in Scope
/* 61637*/            OPC_CheckChild2CondCode, ISD::SETGT,
/* 61639*/            OPC_EmitConvertToTarget, 1,
/* 61641*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61649*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61652*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGT:{ *:[Other] }) - Complexity = 7
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] })
/* 61660*/          /*Scope*/ 23, /*->61684*/
/* 61661*/            OPC_CheckChild2CondCode, ISD::SETEQ,
/* 61663*/            OPC_EmitConvertToTarget, 1,
/* 61665*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61673*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61676*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4, 
                      // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETEQ:{ *:[Other] }) - Complexity = 7
                      // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] })
/* 61684*/          0, /*End of Scope*/
/* 61685*/        /*Scope*/ 28, /*->61714*/
/* 61686*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 61688*/          OPC_MoveParent,
/* 61689*/          OPC_CheckChild2CondCode, ISD::SETEQ,
/* 61691*/          OPC_CheckType, MVT::i1,
/* 61693*/          OPC_EmitConvertToTarget, 1,
/* 61695*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61703*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61706*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETEQ:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] })
/* 61714*/        /*Scope*/ 44, /*->61759*/
/* 61715*/          OPC_CheckPredicate, 15, // Predicate_imm64ZExt32
/* 61717*/          OPC_MoveParent,
/* 61718*/          OPC_CheckChild2CondCode, ISD::SETEQ,
/* 61720*/          OPC_CheckType, MVT::i1,
/* 61722*/          OPC_EmitConvertToTarget, 1,
/* 61724*/          OPC_EmitNodeXForm, 0, 2, // HI16
/* 61727*/          OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 61735*/          OPC_EmitConvertToTarget, 1,
/* 61737*/          OPC_EmitNodeXForm, 1, 5, // LO16
/* 61740*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 61748*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 61751*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETEQ:{ *:[Other] }) - Complexity = 7
                    // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] })
/* 61759*/        /*Scope*/ 57, /*->61817*/
/* 61760*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 61762*/          OPC_MoveParent,
/* 61763*/          OPC_CheckChild2CondCode, ISD::SETUGE,
/* 61765*/          OPC_CheckType, MVT::i1,
/* 61767*/          OPC_EmitConvertToTarget, 1,
/* 61769*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61777*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61780*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 61788*/          OPC_EmitConvertToTarget, 1,
/* 61790*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 61798*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61801*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 61809*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 5, 9, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETUGE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }))
/* 61817*/        /*Scope*/ 57, /*->61875*/
/* 61818*/          OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 61820*/          OPC_MoveParent,
/* 61821*/          OPC_CheckChild2CondCode, ISD::SETGE,
/* 61823*/          OPC_CheckType, MVT::i1,
/* 61825*/          OPC_EmitConvertToTarget, 1,
/* 61827*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61835*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61838*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 61846*/          OPC_EmitConvertToTarget, 1,
/* 61848*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 61856*/          OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 61859*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 61867*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 5, 9, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETGE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_lt:{ *:[i32] }))
/* 61875*/        /*Scope*/ 57, /*->61933*/
/* 61876*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 61878*/          OPC_MoveParent,
/* 61879*/          OPC_CheckChild2CondCode, ISD::SETULE,
/* 61881*/          OPC_CheckType, MVT::i1,
/* 61883*/          OPC_EmitConvertToTarget, 1,
/* 61885*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61893*/          OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61896*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 61904*/          OPC_EmitConvertToTarget, 1,
/* 61906*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 61914*/          OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61917*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 61925*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 5, 9, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETULE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }))
/* 61933*/        /*Scope*/ 113, /*->62047*/
/* 61934*/          OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 61936*/          OPC_MoveParent,
/* 61937*/          OPC_CheckType, MVT::i1,
/* 61939*/          OPC_Scope, 52, /*->61993*/ // 2 children in Scope
/* 61941*/            OPC_CheckChild2CondCode, ISD::SETLE,
/* 61943*/            OPC_EmitConvertToTarget, 1,
/* 61945*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 61953*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61956*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 61964*/            OPC_EmitConvertToTarget, 1,
/* 61966*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 61974*/            OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 61977*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 61985*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                          MVT::i1, 2/*#Ops*/, 5, 9, 
                      // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETLE:{ *:[Other] }) - Complexity = 7
                      // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_gt:{ *:[i32] }))
/* 61993*/          /*Scope*/ 52, /*->62046*/
/* 61994*/            OPC_CheckChild2CondCode, ISD::SETNE,
/* 61996*/            OPC_EmitConvertToTarget, 1,
/* 61998*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 62006*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62009*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 62017*/            OPC_EmitConvertToTarget, 1,
/* 62019*/            OPC_EmitNode1, TARGET_VAL(PPC::CMPDI), 0,
                          MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 62027*/            OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62030*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 62038*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                          MVT::i1, 2/*#Ops*/, 5, 9, 
                      // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm, SETNE:{ *:[Other] }) - Complexity = 7
                      // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }))
/* 62046*/          0, /*End of Scope*/
/* 62047*/        /*Scope*/ 57, /*->62105*/
/* 62048*/          OPC_CheckPredicate, 12, // Predicate_immZExt16
/* 62050*/          OPC_MoveParent,
/* 62051*/          OPC_CheckChild2CondCode, ISD::SETNE,
/* 62053*/          OPC_CheckType, MVT::i1,
/* 62055*/          OPC_EmitConvertToTarget, 1,
/* 62057*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 2,  // Results = #3
/* 62065*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62068*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 3, 4,  // Results = #5
/* 62076*/          OPC_EmitConvertToTarget, 1,
/* 62078*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 0, 6,  // Results = #7
/* 62086*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62089*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 62097*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 5, 9, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_immZExt16>><<X:LO16>>:$imm, SETNE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } ?:{ *:[i64] }:$s1, (imm:{ *:[i64] }):$imm), sub_eq:{ *:[i32] }))
/* 62105*/        /*Scope*/ 89, /*->62195*/
/* 62106*/          OPC_CheckPredicate, 15, // Predicate_imm64ZExt32
/* 62108*/          OPC_MoveParent,
/* 62109*/          OPC_CheckChild2CondCode, ISD::SETNE,
/* 62111*/          OPC_CheckType, MVT::i1,
/* 62113*/          OPC_EmitConvertToTarget, 1,
/* 62115*/          OPC_EmitNodeXForm, 0, 2, // HI16
/* 62118*/          OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 3,  // Results = #4
/* 62126*/          OPC_EmitConvertToTarget, 1,
/* 62128*/          OPC_EmitNodeXForm, 1, 5, // LO16
/* 62131*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 4, 6,  // Results = #7
/* 62139*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62142*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 7, 8,  // Results = #9
/* 62150*/          OPC_EmitConvertToTarget, 1,
/* 62152*/          OPC_EmitNodeXForm, 0, 10, // HI16
/* 62155*/          OPC_EmitNode1, TARGET_VAL(PPC::XORIS8), 0,
                        MVT::i64, 2/*#Ops*/, 0, 11,  // Results = #12
/* 62163*/          OPC_EmitConvertToTarget, 1,
/* 62165*/          OPC_EmitNodeXForm, 1, 13, // LO16
/* 62168*/          OPC_EmitNode1, TARGET_VAL(PPC::CMPLDI), 0,
                        MVT::i32, 2/*#Ops*/, 12, 14,  // Results = #15
/* 62176*/          OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62179*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::i1, 2/*#Ops*/, 15, 16,  // Results = #17
/* 62187*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                        MVT::i1, 2/*#Ops*/, 9, 17, 
                    // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, (imm:{ *:[i64] })<<P:Predicate_imm64ZExt32>>:$imm, SETNE:{ *:[Other] }) - Complexity = 7
                    // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLDI:{ *:[i32] } (XORIS8:{ *:[i64] } ?:{ *:[i64] }:$s1, (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), (LO16:{ *:[i64] } (imm:{ *:[i64] }):$imm)), sub_eq:{ *:[i32] }))
/* 62195*/        0, /*End of Scope*/
/* 62196*/      /*Scope*/ 23, /*->62220*/
/* 62197*/        OPC_CheckChild2CondCode, ISD::SETULT,
/* 62199*/        OPC_CheckType, MVT::i1,
/* 62201*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62209*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62212*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] })
/* 62220*/      /*Scope*/ 23, /*->62244*/
/* 62221*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 62223*/        OPC_CheckType, MVT::i1,
/* 62225*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62233*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62236*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] })
/* 62244*/      /*Scope*/ 23, /*->62268*/
/* 62245*/        OPC_CheckChild2CondCode, ISD::SETUGT,
/* 62247*/        OPC_CheckType, MVT::i1,
/* 62249*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62257*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62260*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] })
/* 62268*/      /*Scope*/ 23, /*->62292*/
/* 62269*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 62271*/        OPC_CheckType, MVT::i1,
/* 62273*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62281*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62284*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] })
/* 62292*/      /*Scope*/ 23, /*->62316*/
/* 62293*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 62295*/        OPC_CheckType, MVT::i1,
/* 62297*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62305*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62308*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] })
/* 62316*/      /*Scope*/ 50, /*->62367*/
/* 62317*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 62319*/        OPC_CheckType, MVT::i1,
/* 62321*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62329*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62332*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 62340*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 62348*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62351*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 62359*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }))
/* 62367*/      /*Scope*/ 50, /*->62418*/
/* 62368*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 62370*/        OPC_CheckType, MVT::i1,
/* 62372*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62380*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62383*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 62391*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 62399*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62402*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 62410*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_lt:{ *:[i32] }))
/* 62418*/      /*Scope*/ 50, /*->62469*/
/* 62419*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 62421*/        OPC_CheckType, MVT::i1,
/* 62423*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62431*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62434*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 62442*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPLD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 62450*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62453*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 62461*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPLD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }))
/* 62469*/      /*Scope*/ 50, /*->62520*/
/* 62470*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 62472*/        OPC_CheckType, MVT::i1,
/* 62474*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62482*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62485*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 62493*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 62501*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62504*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 62512*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_gt:{ *:[i32] }))
/* 62520*/      /*Scope*/ 50, /*->62571*/
/* 62521*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 62523*/        OPC_CheckType, MVT::i1,
/* 62525*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62533*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62536*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 62544*/        OPC_EmitNode1, TARGET_VAL(PPC::CMPD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 62552*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62555*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 62563*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } i64:{ *:[i64] }:$s1, i64:{ *:[i64] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (CMPD:{ *:[i32] } ?:{ *:[i64] }:$s1, ?:{ *:[i64] }:$s2), sub_eq:{ *:[i32] }))
/* 62571*/      0, /*End of Scope*/
/* 62572*/    /*Scope*/ 117, /*->62690*/
/* 62573*/      OPC_CheckChild0Type, MVT::i1,
/* 62575*/      OPC_RecordChild1, // #1 = $s2
/* 62576*/      OPC_CheckType, MVT::i1,
/* 62578*/      OPC_Scope, 10, /*->62590*/ // 10 children in Scope
/* 62580*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 62582*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRANDC), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$s1, ?:{ *:[i1] }:$s2)
/* 62590*/      /*Scope*/ 10, /*->62601*/
/* 62591*/        OPC_CheckChild2CondCode, ISD::SETULT,
/* 62593*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRANDC), 0,
                      MVT::i1, 2/*#Ops*/, 1, 0, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETULT:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$s2, ?:{ *:[i1] }:$s1)
/* 62601*/      /*Scope*/ 10, /*->62612*/
/* 62602*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 62604*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRORC), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRORC:{ *:[i1] } ?:{ *:[i1] }:$s1, ?:{ *:[i1] }:$s2)
/* 62612*/      /*Scope*/ 10, /*->62623*/
/* 62613*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 62615*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRORC), 0,
                      MVT::i1, 2/*#Ops*/, 1, 0, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRORC:{ *:[i1] } ?:{ *:[i1] }:$s2, ?:{ *:[i1] }:$s1)
/* 62623*/      /*Scope*/ 10, /*->62634*/
/* 62624*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 62626*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CREQV), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (CREQV:{ *:[i1] } ?:{ *:[i1] }:$s1, ?:{ *:[i1] }:$s2)
/* 62634*/      /*Scope*/ 10, /*->62645*/
/* 62635*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 62637*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRORC), 0,
                      MVT::i1, 2/*#Ops*/, 1, 0, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRORC:{ *:[i1] } ?:{ *:[i1] }:$s2, ?:{ *:[i1] }:$s1)
/* 62645*/      /*Scope*/ 10, /*->62656*/
/* 62646*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 62648*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRORC), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRORC:{ *:[i1] } ?:{ *:[i1] }:$s1, ?:{ *:[i1] }:$s2)
/* 62656*/      /*Scope*/ 10, /*->62667*/
/* 62657*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 62659*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRANDC), 0,
                      MVT::i1, 2/*#Ops*/, 1, 0, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$s2, ?:{ *:[i1] }:$s1)
/* 62667*/      /*Scope*/ 10, /*->62678*/
/* 62668*/        OPC_CheckChild2CondCode, ISD::SETUGT,
/* 62670*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRANDC), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETUGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$s1, ?:{ *:[i1] }:$s2)
/* 62678*/      /*Scope*/ 10, /*->62689*/
/* 62679*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 62681*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRXOR), 0,
                      MVT::i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[i1] } i1:{ *:[i1] }:$s1, i1:{ *:[i1] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$s1, ?:{ *:[i1] }:$s2)
/* 62689*/      0, /*End of Scope*/
/* 62690*/    /*Scope*/ 86|128,7/*982*/, /*->63674*/
/* 62692*/      OPC_CheckChild0Type, MVT::f32,
/* 62694*/      OPC_RecordChild1, // #1 = $s2
/* 62695*/      OPC_CheckType, MVT::i1,
/* 62697*/      OPC_Scope, 23, /*->62722*/ // 26 children in Scope
/* 62699*/        OPC_CheckChild2CondCode, ISD::SETOLT,
/* 62701*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 62703*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62711*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62714*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETOLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] })
/* 62722*/      /*Scope*/ 23, /*->62746*/
/* 62723*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 62725*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 62727*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62735*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 62738*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] })
/* 62746*/      /*Scope*/ 23, /*->62770*/
/* 62747*/        OPC_CheckChild2CondCode, ISD::SETOGT,
/* 62749*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 62751*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62759*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62762*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETOGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 62770*/      /*Scope*/ 23, /*->62794*/
/* 62771*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 62773*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 62775*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62783*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62786*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 62794*/      /*Scope*/ 23, /*->62818*/
/* 62795*/        OPC_CheckChild2CondCode, ISD::SETOEQ,
/* 62797*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 62799*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62807*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62810*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETOEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] })
/* 62818*/      /*Scope*/ 23, /*->62842*/
/* 62819*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 62821*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 62823*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62831*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 62834*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] })
/* 62842*/      /*Scope*/ 23, /*->62866*/
/* 62843*/        OPC_CheckChild2CondCode, ISD::SETUO,
/* 62845*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 62847*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62855*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 62858*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUO:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] })
/* 62866*/      /*Scope*/ 23, /*->62890*/
/* 62867*/        OPC_CheckChild2CondCode, ISD::SETOLT,
/* 62869*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 62871*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62879*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62882*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETOLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 62890*/      /*Scope*/ 23, /*->62914*/
/* 62891*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 62893*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 62895*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62903*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62906*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 62914*/      /*Scope*/ 23, /*->62938*/
/* 62915*/        OPC_CheckChild2CondCode, ISD::SETOGT,
/* 62917*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 62919*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62927*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62930*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETOGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 62938*/      /*Scope*/ 23, /*->62962*/
/* 62939*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 62941*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 62943*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62951*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62954*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 62962*/      /*Scope*/ 23, /*->62986*/
/* 62963*/        OPC_CheckChild2CondCode, ISD::SETOEQ,
/* 62965*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 62967*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62975*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 62978*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETOEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 62986*/      /*Scope*/ 23, /*->63010*/
/* 62987*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 62989*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 62991*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 62999*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63002*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] })
/* 63010*/      /*Scope*/ 50, /*->63061*/
/* 63011*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 63013*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63015*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63023*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 63026*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63034*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63042*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 63045*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63053*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }))
/* 63061*/      /*Scope*/ 50, /*->63112*/
/* 63062*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 63064*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63066*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63074*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 63077*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63085*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63093*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 63096*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63104*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_lt:{ *:[i32] }))
/* 63112*/      /*Scope*/ 50, /*->63163*/
/* 63113*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 63115*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63117*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63125*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63128*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63136*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63144*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63147*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63155*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63163*/      /*Scope*/ 50, /*->63214*/
/* 63164*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 63166*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63168*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63176*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63179*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63187*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63195*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63198*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63206*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63214*/      /*Scope*/ 50, /*->63265*/
/* 63215*/        OPC_CheckChild2CondCode, ISD::SETUNE,
/* 63217*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63219*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63227*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 63230*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63238*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63246*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 63249*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63257*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }))
/* 63265*/      /*Scope*/ 50, /*->63316*/
/* 63266*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 63268*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63270*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63278*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 63281*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63289*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63297*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 63300*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63308*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_eq:{ *:[i32] }))
/* 63316*/      /*Scope*/ 50, /*->63367*/
/* 63317*/        OPC_CheckChild2CondCode, ISD::SETO,
/* 63319*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63321*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63329*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 63332*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63340*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUS), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63348*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 63351*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63359*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETO:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUS:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_un:{ *:[i32] }))
/* 63367*/      /*Scope*/ 50, /*->63418*/
/* 63368*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 63370*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63372*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63380*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63383*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63391*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63399*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63402*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63410*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63418*/      /*Scope*/ 50, /*->63469*/
/* 63419*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 63421*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63423*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63431*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63434*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63442*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63450*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63453*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63461*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPLT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63469*/      /*Scope*/ 50, /*->63520*/
/* 63470*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 63472*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63474*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63482*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63485*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63493*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63501*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63504*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63512*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63520*/      /*Scope*/ 50, /*->63571*/
/* 63521*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 63523*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63525*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63533*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63536*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63544*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63552*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63555*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63563*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPGT:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63571*/      /*Scope*/ 50, /*->63622*/
/* 63572*/        OPC_CheckChild2CondCode, ISD::SETUNE,
/* 63574*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63576*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63584*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63587*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63595*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63603*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63606*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63614*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETUNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63622*/      /*Scope*/ 50, /*->63673*/
/* 63623*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 63625*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63627*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63635*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63638*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 63646*/        OPC_EmitNode1, TARGET_VAL(PPC::EFSCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 63654*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63657*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 63665*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f32:{ *:[f32] }:$s1, f32:{ *:[f32] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFSCMPEQ:{ *:[i32] } ?:{ *:[f32] }:$s1, ?:{ *:[f32] }:$s2), sub_gt:{ *:[i32] }))
/* 63673*/      0, /*End of Scope*/
/* 63674*/    /*Scope*/ 86|128,7/*982*/, /*->64658*/
/* 63676*/      OPC_CheckChild0Type, MVT::f64,
/* 63678*/      OPC_RecordChild1, // #1 = $s2
/* 63679*/      OPC_CheckType, MVT::i1,
/* 63681*/      OPC_Scope, 23, /*->63706*/ // 26 children in Scope
/* 63683*/        OPC_CheckChild2CondCode, ISD::SETOLT,
/* 63685*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63687*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63695*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 63698*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETOLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] })
/* 63706*/      /*Scope*/ 23, /*->63730*/
/* 63707*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 63709*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63711*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63719*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 63722*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] })
/* 63730*/      /*Scope*/ 23, /*->63754*/
/* 63731*/        OPC_CheckChild2CondCode, ISD::SETOGT,
/* 63733*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63735*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63743*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63746*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETOGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63754*/      /*Scope*/ 23, /*->63778*/
/* 63755*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 63757*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63759*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63767*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63770*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63778*/      /*Scope*/ 23, /*->63802*/
/* 63779*/        OPC_CheckChild2CondCode, ISD::SETOEQ,
/* 63781*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63783*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63791*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 63794*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETOEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] })
/* 63802*/      /*Scope*/ 23, /*->63826*/
/* 63803*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 63805*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63807*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63815*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 63818*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] })
/* 63826*/      /*Scope*/ 23, /*->63850*/
/* 63827*/        OPC_CheckChild2CondCode, ISD::SETUO,
/* 63829*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63831*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63839*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 63842*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUO:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] })
/* 63850*/      /*Scope*/ 23, /*->63874*/
/* 63851*/        OPC_CheckChild2CondCode, ISD::SETOLT,
/* 63853*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63855*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63863*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63866*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETOLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63874*/      /*Scope*/ 23, /*->63898*/
/* 63875*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 63877*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63879*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63887*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63890*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63898*/      /*Scope*/ 23, /*->63922*/
/* 63899*/        OPC_CheckChild2CondCode, ISD::SETOGT,
/* 63901*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63903*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63911*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63914*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETOGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63922*/      /*Scope*/ 23, /*->63946*/
/* 63923*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 63925*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63927*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63935*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63938*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63946*/      /*Scope*/ 23, /*->63970*/
/* 63947*/        OPC_CheckChild2CondCode, ISD::SETOEQ,
/* 63949*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63951*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63959*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63962*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETOEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63970*/      /*Scope*/ 23, /*->63994*/
/* 63971*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 63973*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 63975*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 63983*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 63986*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] })
/* 63994*/      /*Scope*/ 50, /*->64045*/
/* 63995*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 63997*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 63999*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64007*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64010*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64018*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64026*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64029*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64037*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }))
/* 64045*/      /*Scope*/ 50, /*->64096*/
/* 64046*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 64048*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64050*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64058*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64061*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64069*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64077*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64080*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64088*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_lt:{ *:[i32] }))
/* 64096*/      /*Scope*/ 50, /*->64147*/
/* 64097*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 64099*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64101*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64109*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64112*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64120*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64128*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64131*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64139*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64147*/      /*Scope*/ 50, /*->64198*/
/* 64148*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 64150*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64152*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64160*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64163*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64171*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64179*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64182*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64190*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64198*/      /*Scope*/ 50, /*->64249*/
/* 64199*/        OPC_CheckChild2CondCode, ISD::SETUNE,
/* 64201*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64203*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64211*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 64214*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64222*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64230*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 64233*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64241*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }))
/* 64249*/      /*Scope*/ 50, /*->64300*/
/* 64250*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 64252*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64254*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64262*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 64265*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64273*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64281*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 64284*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64292*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_eq:{ *:[i32] }))
/* 64300*/      /*Scope*/ 50, /*->64351*/
/* 64301*/        OPC_CheckChild2CondCode, ISD::SETO,
/* 64303*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64305*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64313*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 64316*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64324*/        OPC_EmitNode1, TARGET_VAL(PPC::FCMPUD), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64332*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 64335*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64343*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETO:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (FCMPUD:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_un:{ *:[i32] }))
/* 64351*/      /*Scope*/ 50, /*->64402*/
/* 64352*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 64354*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 64356*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64364*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64367*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64375*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64383*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64386*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64394*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64402*/      /*Scope*/ 50, /*->64453*/
/* 64403*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 64405*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 64407*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64415*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64418*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64426*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPLT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64434*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64437*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64445*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPLT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64453*/      /*Scope*/ 50, /*->64504*/
/* 64454*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 64456*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 64458*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64466*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64469*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64477*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64485*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64488*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64496*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64504*/      /*Scope*/ 50, /*->64555*/
/* 64505*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 64507*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 64509*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64517*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64520*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64528*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPGT), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64536*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64539*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64547*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPGT:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64555*/      /*Scope*/ 50, /*->64606*/
/* 64556*/        OPC_CheckChild2CondCode, ISD::SETUNE,
/* 64558*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 64560*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64568*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64571*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64579*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64587*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64590*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64598*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETUNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64606*/      /*Scope*/ 50, /*->64657*/
/* 64607*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 64609*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 64611*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64619*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64622*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64630*/        OPC_EmitNode1, TARGET_VAL(PPC::EFDCMPEQ), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64638*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64641*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64649*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f64:{ *:[f64] }:$s1, f64:{ *:[f64] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (EFDCMPEQ:{ *:[i32] } ?:{ *:[f64] }:$s1, ?:{ *:[f64] }:$s2), sub_gt:{ *:[i32] }))
/* 64657*/      0, /*End of Scope*/
/* 64658*/    /*Scope*/ 20|128,4/*532*/, /*->65192*/
/* 64660*/      OPC_CheckChild0Type, MVT::f128,
/* 64662*/      OPC_RecordChild1, // #1 = $s2
/* 64663*/      OPC_CheckType, MVT::i1,
/* 64665*/      OPC_Scope, 23, /*->64690*/ // 14 children in Scope
/* 64667*/        OPC_CheckChild2CondCode, ISD::SETOLT,
/* 64669*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64671*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64679*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64682*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETOLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] })
/* 64690*/      /*Scope*/ 23, /*->64714*/
/* 64691*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 64693*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64695*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64703*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64706*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] })
/* 64714*/      /*Scope*/ 23, /*->64738*/
/* 64715*/        OPC_CheckChild2CondCode, ISD::SETOGT,
/* 64717*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64719*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64727*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64730*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETOGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] })
/* 64738*/      /*Scope*/ 23, /*->64762*/
/* 64739*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 64741*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64743*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64751*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64754*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] })
/* 64762*/      /*Scope*/ 23, /*->64786*/
/* 64763*/        OPC_CheckChild2CondCode, ISD::SETOEQ,
/* 64765*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64767*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64775*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 64778*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETOEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] })
/* 64786*/      /*Scope*/ 23, /*->64810*/
/* 64787*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 64789*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64791*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64799*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 64802*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] })
/* 64810*/      /*Scope*/ 23, /*->64834*/
/* 64811*/        OPC_CheckChild2CondCode, ISD::SETUO,
/* 64813*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64815*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64823*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 64826*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUO:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] })
/* 64834*/      /*Scope*/ 50, /*->64885*/
/* 64835*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 64837*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64839*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64847*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64850*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64858*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64866*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64869*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64877*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }))
/* 64885*/      /*Scope*/ 50, /*->64936*/
/* 64886*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 64888*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64890*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64898*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64901*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64909*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64917*/        OPC_EmitInteger, MVT::i32, PPC::sub_lt,
/* 64920*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64928*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_lt:{ *:[i32] }))
/* 64936*/      /*Scope*/ 50, /*->64987*/
/* 64937*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 64939*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64941*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 64949*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64952*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 64960*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 64968*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 64971*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 64979*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }))
/* 64987*/      /*Scope*/ 50, /*->65038*/
/* 64988*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 64990*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 64992*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65000*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 65003*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 65011*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 65019*/        OPC_EmitInteger, MVT::i32, PPC::sub_gt,
/* 65022*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 65030*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_gt:{ *:[i32] }))
/* 65038*/      /*Scope*/ 50, /*->65089*/
/* 65039*/        OPC_CheckChild2CondCode, ISD::SETUNE,
/* 65041*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 65043*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65051*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 65054*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 65062*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 65070*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 65073*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 65081*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETUNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }))
/* 65089*/      /*Scope*/ 50, /*->65140*/
/* 65090*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 65092*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 65094*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65102*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 65105*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 65113*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 65121*/        OPC_EmitInteger, MVT::i32, PPC::sub_eq,
/* 65124*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 65132*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_eq:{ *:[i32] }))
/* 65140*/      /*Scope*/ 50, /*->65191*/
/* 65141*/        OPC_CheckChild2CondCode, ISD::SETO,
/* 65143*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 65145*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65153*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 65156*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 2, 3,  // Results = #4
/* 65164*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCMPUQP), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1,  // Results = #5
/* 65172*/        OPC_EmitInteger, MVT::i32, PPC::sub_un,
/* 65175*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                      MVT::i1, 2/*#Ops*/, 5, 6,  // Results = #7
/* 65183*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::CRNOR), 0,
                      MVT::i1, 2/*#Ops*/, 4, 7, 
                  // Src: (setcc:{ *:[i1] } f128:{ *:[f128] }:$s1, f128:{ *:[f128] }:$s2, SETO:{ *:[Other] }) - Complexity = 3
                  // Dst: (CRNOR:{ *:[i1] } (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i1] } (XSCMPUQP:{ *:[i32] } ?:{ *:[f128] }:$s1, ?:{ *:[f128] }:$s2), sub_un:{ *:[i32] }))
/* 65191*/      0, /*End of Scope*/
/* 65192*/    /*Scope*/ 15|128,4/*527*/, /*->65721*/
/* 65194*/      OPC_CheckChild0Type, MVT::v4f64,
/* 65196*/      OPC_RecordChild1, // #1 = $FRB
/* 65197*/      OPC_CheckType, MVT::v4i1,
/* 65199*/      OPC_Scope, 12, /*->65213*/ // 20 children in Scope
/* 65201*/        OPC_CheckChild2CondCode, ISD::SETUO,
/* 65203*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65205*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETUO:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFTSTNANb:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 65213*/      /*Scope*/ 12, /*->65226*/
/* 65214*/        OPC_CheckChild2CondCode, ISD::SETOLT,
/* 65216*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65218*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETOLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPLTb:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 65226*/      /*Scope*/ 12, /*->65239*/
/* 65227*/        OPC_CheckChild2CondCode, ISD::SETOGT,
/* 65229*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65231*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETOGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPGTb:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 65239*/      /*Scope*/ 12, /*->65252*/
/* 65240*/        OPC_CheckChild2CondCode, ISD::SETOEQ,
/* 65242*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65244*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPEQb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETOEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPEQb:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 65252*/      /*Scope*/ 12, /*->65265*/
/* 65253*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 65255*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65257*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPEQb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPEQb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB)
/* 65265*/      /*Scope*/ 12, /*->65278*/
/* 65266*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 65268*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65270*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB)
/* 65278*/      /*Scope*/ 12, /*->65291*/
/* 65279*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 65281*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65283*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB)
/* 65291*/      /*Scope*/ 32, /*->65324*/
/* 65292*/        OPC_CheckChild2CondCode, ISD::SETOGE,
/* 65294*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65296*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65304*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65312*/        OPC_EmitInteger, MVT::i32, 8, 
/* 65315*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETOGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 8:{ *:[i32] })
/* 65324*/      /*Scope*/ 32, /*->65357*/
/* 65325*/        OPC_CheckChild2CondCode, ISD::SETOLE,
/* 65327*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65329*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65337*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65345*/        OPC_EmitInteger, MVT::i32, 8, 
/* 65348*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETOLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 8:{ *:[i32] })
/* 65357*/      /*Scope*/ 32, /*->65390*/
/* 65358*/        OPC_CheckChild2CondCode, ISD::SETONE,
/* 65360*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65362*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65370*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65378*/        OPC_EmitInteger, MVT::i32, 8, 
/* 65381*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETONE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPEQb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 8:{ *:[i32] })
/* 65390*/      /*Scope*/ 32, /*->65423*/
/* 65391*/        OPC_CheckChild2CondCode, ISD::SETO,
/* 65393*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65395*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65403*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65411*/        OPC_EmitInteger, MVT::i32, 10, 
/* 65414*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETO:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 10:{ *:[i32] })
/* 65423*/      /*Scope*/ 32, /*->65456*/
/* 65424*/        OPC_CheckChild2CondCode, ISD::SETUEQ,
/* 65426*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65428*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65436*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65444*/        OPC_EmitInteger, MVT::i32, 7, 
/* 65447*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETUEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPEQb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 7:{ *:[i32] })
/* 65456*/      /*Scope*/ 32, /*->65489*/
/* 65457*/        OPC_CheckChild2CondCode, ISD::SETUGT,
/* 65459*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65461*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65469*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65477*/        OPC_EmitInteger, MVT::i32, 7, 
/* 65480*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETUGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 7:{ *:[i32] })
/* 65489*/      /*Scope*/ 32, /*->65522*/
/* 65490*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 65492*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65494*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65502*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65510*/        OPC_EmitInteger, MVT::i32, 13, 
/* 65513*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 13:{ *:[i32] })
/* 65522*/      /*Scope*/ 32, /*->65555*/
/* 65523*/        OPC_CheckChild2CondCode, ISD::SETULT,
/* 65525*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65527*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65535*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65543*/        OPC_EmitInteger, MVT::i32, 7, 
/* 65546*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETULT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 7:{ *:[i32] })
/* 65555*/      /*Scope*/ 32, /*->65588*/
/* 65556*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 65558*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65560*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65568*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65576*/        OPC_EmitInteger, MVT::i32, 13, 
/* 65579*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 13:{ *:[i32] })
/* 65588*/      /*Scope*/ 32, /*->65621*/
/* 65589*/        OPC_CheckChild2CondCode, ISD::SETUNE,
/* 65591*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65593*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65601*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65609*/        OPC_EmitInteger, MVT::i32, 13, 
/* 65612*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETUNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFCMPEQb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 13:{ *:[i32] })
/* 65621*/      /*Scope*/ 32, /*->65654*/
/* 65622*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 65624*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65626*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65634*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65642*/        OPC_EmitInteger, MVT::i32, 10, 
/* 65645*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 10:{ *:[i32] })
/* 65654*/      /*Scope*/ 32, /*->65687*/
/* 65655*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 65657*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65659*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65667*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65675*/        OPC_EmitInteger, MVT::i32, 10, 
/* 65678*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 10:{ *:[i32] })
/* 65687*/      /*Scope*/ 32, /*->65720*/
/* 65688*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 65690*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65692*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65700*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65708*/        OPC_EmitInteger, MVT::i32, 10, 
/* 65711*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPEQb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFCMPEQb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), 10:{ *:[i32] })
/* 65720*/      0, /*End of Scope*/
/* 65721*/    /*Scope*/ 15|128,4/*527*/, /*->66250*/
/* 65723*/      OPC_CheckChild0Type, MVT::v4f32,
/* 65725*/      OPC_RecordChild1, // #1 = $FRB
/* 65726*/      OPC_CheckType, MVT::v4i1,
/* 65728*/      OPC_Scope, 12, /*->65742*/ // 20 children in Scope
/* 65730*/        OPC_CheckChild2CondCode, ISD::SETUO,
/* 65732*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65734*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETUO:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFTSTNANbs:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB)
/* 65742*/      /*Scope*/ 12, /*->65755*/
/* 65743*/        OPC_CheckChild2CondCode, ISD::SETOLT,
/* 65745*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65747*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETOLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPLTbs:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB)
/* 65755*/      /*Scope*/ 12, /*->65768*/
/* 65756*/        OPC_CheckChild2CondCode, ISD::SETOGT,
/* 65758*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65760*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETOGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPGTbs:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB)
/* 65768*/      /*Scope*/ 12, /*->65781*/
/* 65769*/        OPC_CheckChild2CondCode, ISD::SETOEQ,
/* 65771*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65773*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPEQbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETOEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPEQbs:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB)
/* 65781*/      /*Scope*/ 12, /*->65794*/
/* 65782*/        OPC_CheckChild2CondCode, ISD::SETEQ,
/* 65784*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65786*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPEQbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPEQbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB)
/* 65794*/      /*Scope*/ 12, /*->65807*/
/* 65795*/        OPC_CheckChild2CondCode, ISD::SETGT,
/* 65797*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65799*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB)
/* 65807*/      /*Scope*/ 12, /*->65820*/
/* 65808*/        OPC_CheckChild2CondCode, ISD::SETLT,
/* 65810*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65812*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETLT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB)
/* 65820*/      /*Scope*/ 32, /*->65853*/
/* 65821*/        OPC_CheckChild2CondCode, ISD::SETOGE,
/* 65823*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65825*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65833*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65841*/        OPC_EmitInteger, MVT::i32, 8, 
/* 65844*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETOGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 8:{ *:[i32] })
/* 65853*/      /*Scope*/ 32, /*->65886*/
/* 65854*/        OPC_CheckChild2CondCode, ISD::SETOLE,
/* 65856*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65858*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65866*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65874*/        OPC_EmitInteger, MVT::i32, 8, 
/* 65877*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETOLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 8:{ *:[i32] })
/* 65886*/      /*Scope*/ 32, /*->65919*/
/* 65887*/        OPC_CheckChild2CondCode, ISD::SETONE,
/* 65889*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65891*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65899*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65907*/        OPC_EmitInteger, MVT::i32, 8, 
/* 65910*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETONE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPEQbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 8:{ *:[i32] })
/* 65919*/      /*Scope*/ 32, /*->65952*/
/* 65920*/        OPC_CheckChild2CondCode, ISD::SETO,
/* 65922*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65924*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65932*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65940*/        OPC_EmitInteger, MVT::i32, 10, 
/* 65943*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETO:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 10:{ *:[i32] })
/* 65952*/      /*Scope*/ 32, /*->65985*/
/* 65953*/        OPC_CheckChild2CondCode, ISD::SETUEQ,
/* 65955*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65957*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65965*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 65973*/        OPC_EmitInteger, MVT::i32, 7, 
/* 65976*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETUEQ:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPEQbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 7:{ *:[i32] })
/* 65985*/      /*Scope*/ 32, /*->66018*/
/* 65986*/        OPC_CheckChild2CondCode, ISD::SETUGT,
/* 65988*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 65990*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 65998*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66006*/        OPC_EmitInteger, MVT::i32, 7, 
/* 66009*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETUGT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 7:{ *:[i32] })
/* 66018*/      /*Scope*/ 32, /*->66051*/
/* 66019*/        OPC_CheckChild2CondCode, ISD::SETUGE,
/* 66021*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 66023*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66031*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66039*/        OPC_EmitInteger, MVT::i32, 13, 
/* 66042*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETUGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 13:{ *:[i32] })
/* 66051*/      /*Scope*/ 32, /*->66084*/
/* 66052*/        OPC_CheckChild2CondCode, ISD::SETULT,
/* 66054*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 66056*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66064*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66072*/        OPC_EmitInteger, MVT::i32, 7, 
/* 66075*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETULT:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 7:{ *:[i32] })
/* 66084*/      /*Scope*/ 32, /*->66117*/
/* 66085*/        OPC_CheckChild2CondCode, ISD::SETULE,
/* 66087*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 66089*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66097*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66105*/        OPC_EmitInteger, MVT::i32, 13, 
/* 66108*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETULE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 13:{ *:[i32] })
/* 66117*/      /*Scope*/ 32, /*->66150*/
/* 66118*/        OPC_CheckChild2CondCode, ISD::SETUNE,
/* 66120*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 66122*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66130*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66138*/        OPC_EmitInteger, MVT::i32, 13, 
/* 66141*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETUNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFCMPEQbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 13:{ *:[i32] })
/* 66150*/      /*Scope*/ 32, /*->66183*/
/* 66151*/        OPC_CheckChild2CondCode, ISD::SETGE,
/* 66153*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 66155*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66163*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66171*/        OPC_EmitInteger, MVT::i32, 10, 
/* 66174*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETGE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 10:{ *:[i32] })
/* 66183*/      /*Scope*/ 32, /*->66216*/
/* 66184*/        OPC_CheckChild2CondCode, ISD::SETLE,
/* 66186*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 66188*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66196*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66204*/        OPC_EmitInteger, MVT::i32, 10, 
/* 66207*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETLE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 10:{ *:[i32] })
/* 66216*/      /*Scope*/ 32, /*->66249*/
/* 66217*/        OPC_CheckChild2CondCode, ISD::SETNE,
/* 66219*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 66221*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66229*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPEQbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 66237*/        OPC_EmitInteger, MVT::i32, 10, 
/* 66240*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4, 
                  // Src: (setcc:{ *:[v4i1] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, SETNE:{ *:[Other] }) - Complexity = 3
                  // Dst: (QVFLOGICALb:{ *:[v4i1] } (QVFCMPEQbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFCMPEQbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), 10:{ *:[i32] })
/* 66249*/      0, /*End of Scope*/
/* 66250*/    0, /*End of Scope*/
/* 66251*/  /*SwitchOpcode*/ 110, TARGET_VAL(PPCISD::CALL),// ->66364
/* 66254*/    OPC_RecordNode, // #0 = 'PPCcall' chained node
/* 66255*/    OPC_CaptureGlueInput,
/* 66256*/    OPC_RecordChild1, // #1 = $func
/* 66257*/    OPC_MoveChild1,
/* 66258*/    OPC_SwitchOpcode /*4 cases */, 26, TARGET_VAL(ISD::Constant),// ->66288
/* 66262*/      OPC_SwitchType /*2 cases */, 10, MVT::i32,// ->66275
/* 66265*/        OPC_MoveParent,
/* 66266*/        OPC_EmitMergeInputChains1_0,
/* 66267*/        OPC_EmitConvertToTarget, 1,
/* 66269*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BLA), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 2, 
                  // Src: (PPCcall (imm:{ *:[i32] }):$func) - Complexity = 6
                  // Dst: (BLA (imm:{ *:[i32] }):$func)
/* 66275*/      /*SwitchType*/ 10, MVT::i64,// ->66287
/* 66277*/        OPC_MoveParent,
/* 66278*/        OPC_EmitMergeInputChains1_0,
/* 66279*/        OPC_EmitConvertToTarget, 1,
/* 66281*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BLA8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 2, 
                  // Src: (PPCcall (imm:{ *:[i64] }):$func) - Complexity = 6
                  // Dst: (BLA8 (imm:{ *:[i64] }):$func)
/* 66287*/      0, // EndSwitchType
/* 66288*/    /*SwitchOpcode*/ 22, TARGET_VAL(ISD::TargetGlobalAddress),// ->66313
/* 66291*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->66302
/* 66294*/        OPC_MoveParent,
/* 66295*/        OPC_EmitMergeInputChains1_0,
/* 66296*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall (tglobaladdr:{ *:[i32] }):$dst) - Complexity = 6
                  // Dst: (BL (tglobaladdr:{ *:[i32] }):$dst)
/* 66302*/      /*SwitchType*/ 8, MVT::i64,// ->66312
/* 66304*/        OPC_MoveParent,
/* 66305*/        OPC_EmitMergeInputChains1_0,
/* 66306*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall (tglobaladdr:{ *:[i64] }):$dst) - Complexity = 6
                  // Dst: (BL8 (tglobaladdr:{ *:[i64] }):$dst)
/* 66312*/      0, // EndSwitchType
/* 66313*/    /*SwitchOpcode*/ 22, TARGET_VAL(ISD::TargetExternalSymbol),// ->66338
/* 66316*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->66327
/* 66319*/        OPC_MoveParent,
/* 66320*/        OPC_EmitMergeInputChains1_0,
/* 66321*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall (texternalsym:{ *:[i32] }):$dst) - Complexity = 6
                  // Dst: (BL (texternalsym:{ *:[i32] }):$dst)
/* 66327*/      /*SwitchType*/ 8, MVT::i64,// ->66337
/* 66329*/        OPC_MoveParent,
/* 66330*/        OPC_EmitMergeInputChains1_0,
/* 66331*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall (texternalsym:{ *:[i64] }):$dst) - Complexity = 6
                  // Dst: (BL8 (texternalsym:{ *:[i64] }):$dst)
/* 66337*/      0, // EndSwitchType
/* 66338*/    /*SwitchOpcode*/ 22, TARGET_VAL(ISD::MCSymbol),// ->66363
/* 66341*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->66352
/* 66344*/        OPC_MoveParent,
/* 66345*/        OPC_EmitMergeInputChains1_0,
/* 66346*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall (mcsym:{ *:[i32] }):$dst) - Complexity = 6
                  // Dst: (BL (mcsym:{ *:[i32] }):$dst)
/* 66352*/      /*SwitchType*/ 8, MVT::i64,// ->66362
/* 66354*/        OPC_MoveParent,
/* 66355*/        OPC_EmitMergeInputChains1_0,
/* 66356*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall (mcsym:{ *:[i64] }):$dst) - Complexity = 6
                  // Dst: (BL8 (mcsym:{ *:[i64] }):$dst)
/* 66362*/      0, // EndSwitchType
/* 66363*/    0, // EndSwitchOpcode
/* 66364*/  /*SwitchOpcode*/ 18, TARGET_VAL(PPCISD::SC),// ->66385
/* 66367*/    OPC_RecordNode, // #0 = 'PPCsc' chained node
/* 66368*/    OPC_RecordChild1, // #1 = $lev
/* 66369*/    OPC_MoveChild1,
/* 66370*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 66373*/    OPC_CheckType, MVT::i32,
/* 66375*/    OPC_MoveParent,
/* 66376*/    OPC_EmitMergeInputChains1_0,
/* 66377*/    OPC_EmitConvertToTarget, 1,
/* 66379*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::SC), 0|OPFL_Chain,
                  1/*#Ops*/, 2, 
              // Src: (PPCsc (imm:{ *:[i32] }):$lev) - Complexity = 6
              // Dst: (SC (imm:{ *:[i32] }):$lev)
/* 66385*/  /*SwitchOpcode*/ 18, TARGET_VAL(PPCISD::RFEBB),// ->66406
/* 66388*/    OPC_RecordNode, // #0 = 'PPCrfebb' chained node
/* 66389*/    OPC_RecordChild1, // #1 = $imm
/* 66390*/    OPC_MoveChild1,
/* 66391*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 66394*/    OPC_CheckType, MVT::i32,
/* 66396*/    OPC_MoveParent,
/* 66397*/    OPC_EmitMergeInputChains1_0,
/* 66398*/    OPC_EmitConvertToTarget, 1,
/* 66400*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::RFEBB), 0|OPFL_Chain,
                  1/*#Ops*/, 2, 
              // Src: (PPCrfebb (imm:{ *:[i32] }):$imm) - Complexity = 6
              // Dst: (RFEBB (imm:{ *:[i32] }):$imm)
/* 66406*/  /*SwitchOpcode*/ 127, TARGET_VAL(ISD::SRA),// ->66536
/* 66409*/    OPC_RecordChild0, // #0 = $rS
/* 66410*/    OPC_RecordChild1, // #1 = $SH
/* 66411*/    OPC_Scope, 35, /*->66448*/ // 6 children in Scope
/* 66413*/      OPC_MoveChild1,
/* 66414*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 66417*/      OPC_CheckType, MVT::i32,
/* 66419*/      OPC_MoveParent,
/* 66420*/      OPC_SwitchType /*2 cases */, 11, MVT::i32,// ->66434
/* 66423*/        OPC_EmitConvertToTarget, 1,
/* 66425*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SRAWI), 0,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 0, 2, 
                  // Src: (sra:{ *:[i32] } i32:{ *:[i32] }:$rS, (imm:{ *:[i32] }):$SH) - Complexity = 6
                  // Dst: (SRAWI:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rS, (imm:{ *:[i32] }):$SH)
/* 66434*/      /*SwitchType*/ 11, MVT::i64,// ->66447
/* 66436*/        OPC_EmitConvertToTarget, 1,
/* 66438*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SRADI), 0,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 0, 2, 
                  // Src: (sra:{ *:[i64] } i64:{ *:[i64] }:$rS, (imm:{ *:[i32] }):$SH) - Complexity = 6
                  // Dst: (SRADI:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rS, (imm:{ *:[i32] }):$SH)
/* 66447*/      0, // EndSwitchType
/* 66448*/    /*Scope*/ 26, /*->66475*/
/* 66449*/      OPC_CheckChild1Type, MVT::i32,
/* 66451*/      OPC_SwitchType /*2 cases */, 9, MVT::i32,// ->66463
/* 66454*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SRAW), 0,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (sra:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRAW:{ *:[i32] }:{ *:[i32] } ?:{ *:[i32] }:$rS, ?:{ *:[i32] }:$rB)
/* 66463*/      /*SwitchType*/ 9, MVT::i64,// ->66474
/* 66465*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SRAD), 0,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (sra:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRAD:{ *:[i64] }:{ *:[i32] } ?:{ *:[i64] }:$rS, ?:{ *:[i32] }:$rB)
/* 66474*/      0, // EndSwitchType
/* 66475*/    /*Scope*/ 14, /*->66490*/
/* 66476*/      OPC_CheckChild1Type, MVT::v16i8,
/* 66478*/      OPC_CheckType, MVT::v16i8,
/* 66480*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66482*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (sra:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VSRAB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vB)
/* 66490*/    /*Scope*/ 14, /*->66505*/
/* 66491*/      OPC_CheckChild1Type, MVT::v8i16,
/* 66493*/      OPC_CheckType, MVT::v8i16,
/* 66495*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66497*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (sra:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VSRAH:{ *:[v8i16] } ?:{ *:[v8i16] }:$vA, ?:{ *:[v8i16] }:$vB)
/* 66505*/    /*Scope*/ 14, /*->66520*/
/* 66506*/      OPC_CheckChild1Type, MVT::v4i32,
/* 66508*/      OPC_CheckType, MVT::v4i32,
/* 66510*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66512*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (sra:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VSRAW:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vB)
/* 66520*/    /*Scope*/ 14, /*->66535*/
/* 66521*/      OPC_CheckChild1Type, MVT::v2i64,
/* 66523*/      OPC_CheckType, MVT::v2i64,
/* 66525*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 66527*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (sra:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VSRAD:{ *:[v2i64] } ?:{ *:[v2i64] }:$vA, ?:{ *:[v2i64] }:$vB)
/* 66535*/    0, /*End of Scope*/
/* 66536*/  /*SwitchOpcode*/ 45|128,1/*173*/, TARGET_VAL(ISD::SHL),// ->66713
/* 66540*/    OPC_RecordChild0, // #0 = $in
/* 66541*/    OPC_RecordChild1, // #1 = $imm
/* 66542*/    OPC_Scope, 49, /*->66593*/ // 7 children in Scope
/* 66544*/      OPC_MoveChild1,
/* 66545*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 66548*/      OPC_CheckType, MVT::i32,
/* 66550*/      OPC_MoveParent,
/* 66551*/      OPC_SwitchType /*2 cases */, 20, MVT::i32,// ->66574
/* 66554*/        OPC_EmitConvertToTarget, 1,
/* 66556*/        OPC_EmitInteger, MVT::i32, 0, 
/* 66559*/        OPC_EmitConvertToTarget, 1,
/* 66561*/        OPC_EmitNodeXForm, 6, 4, // SHL32
/* 66564*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                      MVT::i32, 4/*#Ops*/, 0, 2, 3, 5, 
                  // Src: (shl:{ *:[i32] } i32:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                  // Dst: (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm, 0:{ *:[i32] }, (SHL32:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 66574*/      /*SwitchType*/ 16, MVT::i64,// ->66592
/* 66576*/        OPC_EmitConvertToTarget, 1,
/* 66578*/        OPC_EmitConvertToTarget, 1,
/* 66580*/        OPC_EmitNodeXForm, 7, 3, // SHL64
/* 66583*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICR), 0,
                      MVT::i64, 3/*#Ops*/, 0, 2, 4, 
                  // Src: (shl:{ *:[i64] } i64:{ *:[i64] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                  // Dst: (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$in, (imm:{ *:[i32] }):$imm, (SHL64:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 66592*/      0, // EndSwitchType
/* 66593*/    /*Scope*/ 24, /*->66618*/
/* 66594*/      OPC_CheckChild1Type, MVT::i32,
/* 66596*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->66607
/* 66599*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (shl:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SLW:{ *:[i32] } ?:{ *:[i32] }:$rS, ?:{ *:[i32] }:$rB)
/* 66607*/      /*SwitchType*/ 8, MVT::i64,// ->66617
/* 66609*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SLD), 0,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (shl:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SLD:{ *:[i64] } ?:{ *:[i64] }:$rS, ?:{ *:[i32] }:$rB)
/* 66617*/      0, // EndSwitchType
/* 66618*/    /*Scope*/ 14, /*->66633*/
/* 66619*/      OPC_CheckChild1Type, MVT::v16i8,
/* 66621*/      OPC_CheckType, MVT::v16i8,
/* 66623*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66625*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (shl:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VSLB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vB)
/* 66633*/    /*Scope*/ 14, /*->66648*/
/* 66634*/      OPC_CheckChild1Type, MVT::v8i16,
/* 66636*/      OPC_CheckType, MVT::v8i16,
/* 66638*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66640*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (shl:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VSLH:{ *:[v8i16] } ?:{ *:[v8i16] }:$vA, ?:{ *:[v8i16] }:$vB)
/* 66648*/    /*Scope*/ 14, /*->66663*/
/* 66649*/      OPC_CheckChild1Type, MVT::v4i32,
/* 66651*/      OPC_CheckType, MVT::v4i32,
/* 66653*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66655*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (shl:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VSLW:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vB)
/* 66663*/    /*Scope*/ 14, /*->66678*/
/* 66664*/      OPC_CheckChild1Type, MVT::v2i64,
/* 66666*/      OPC_CheckType, MVT::v2i64,
/* 66668*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 66670*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (shl:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VSLD:{ *:[v2i64] } ?:{ *:[v2i64] }:$vA, ?:{ *:[v2i64] }:$vB)
/* 66678*/    /*Scope*/ 33, /*->66712*/
/* 66679*/      OPC_CheckChild1Type, MVT::v1i128,
/* 66681*/      OPC_CheckType, MVT::v1i128,
/* 66683*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66685*/      OPC_EmitNode1, TARGET_VAL(PPC::VSLO), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66693*/      OPC_EmitInteger, MVT::i32, 15, 
/* 66696*/      OPC_EmitNode1, TARGET_VAL(PPC::VSPLTB), 0,
                    MVT::v16i8, 2/*#Ops*/, 3, 1,  // Results = #4
/* 66704*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSL), 0,
                    MVT::v1i128, 2/*#Ops*/, 2, 4, 
                // Src: (shl:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 3
                // Dst: (VSL:{ *:[v1i128] } (VSLO:{ *:[v16i8] } ?:{ *:[v1i128] }:$vA, ?:{ *:[v1i128] }:$vB), (VSPLTB:{ *:[v16i8] } 15:{ *:[i32] }, ?:{ *:[v1i128] }:$vB))
/* 66712*/    0, /*End of Scope*/
/* 66713*/  /*SwitchOpcode*/ 45|128,1/*173*/, TARGET_VAL(ISD::SRL),// ->66890
/* 66717*/    OPC_RecordChild0, // #0 = $in
/* 66718*/    OPC_RecordChild1, // #1 = $imm
/* 66719*/    OPC_Scope, 49, /*->66770*/ // 7 children in Scope
/* 66721*/      OPC_MoveChild1,
/* 66722*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 66725*/      OPC_CheckType, MVT::i32,
/* 66727*/      OPC_MoveParent,
/* 66728*/      OPC_SwitchType /*2 cases */, 20, MVT::i32,// ->66751
/* 66731*/        OPC_EmitConvertToTarget, 1,
/* 66733*/        OPC_EmitNodeXForm, 8, 2, // SRL32
/* 66736*/        OPC_EmitConvertToTarget, 1,
/* 66738*/        OPC_EmitInteger, MVT::i32, 31, 
/* 66741*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                      MVT::i32, 4/*#Ops*/, 0, 3, 4, 5, 
                  // Src: (srl:{ *:[i32] } i32:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                  // Dst: (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$in, (SRL32:{ *:[i32] } (imm:{ *:[i32] }):$imm), (imm:{ *:[i32] }):$imm, 31:{ *:[i32] })
/* 66751*/      /*SwitchType*/ 16, MVT::i64,// ->66769
/* 66753*/        OPC_EmitConvertToTarget, 1,
/* 66755*/        OPC_EmitNodeXForm, 9, 2, // SRL64
/* 66758*/        OPC_EmitConvertToTarget, 1,
/* 66760*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 0, 3, 4, 
                  // Src: (srl:{ *:[i64] } i64:{ *:[i64] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                  // Dst: (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$in, (SRL64:{ *:[i32] } (imm:{ *:[i32] }):$imm), (imm:{ *:[i32] }):$imm)
/* 66769*/      0, // EndSwitchType
/* 66770*/    /*Scope*/ 24, /*->66795*/
/* 66771*/      OPC_CheckChild1Type, MVT::i32,
/* 66773*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->66784
/* 66776*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SRW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (srl:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRW:{ *:[i32] } ?:{ *:[i32] }:$rS, ?:{ *:[i32] }:$rB)
/* 66784*/      /*SwitchType*/ 8, MVT::i64,// ->66794
/* 66786*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (srl:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRD:{ *:[i64] } ?:{ *:[i64] }:$rS, ?:{ *:[i32] }:$rB)
/* 66794*/      0, // EndSwitchType
/* 66795*/    /*Scope*/ 14, /*->66810*/
/* 66796*/      OPC_CheckChild1Type, MVT::v16i8,
/* 66798*/      OPC_CheckType, MVT::v16i8,
/* 66800*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66802*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (srl:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VSRB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vB)
/* 66810*/    /*Scope*/ 14, /*->66825*/
/* 66811*/      OPC_CheckChild1Type, MVT::v8i16,
/* 66813*/      OPC_CheckType, MVT::v8i16,
/* 66815*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66817*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (srl:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VSRH:{ *:[v8i16] } ?:{ *:[v8i16] }:$vA, ?:{ *:[v8i16] }:$vB)
/* 66825*/    /*Scope*/ 14, /*->66840*/
/* 66826*/      OPC_CheckChild1Type, MVT::v4i32,
/* 66828*/      OPC_CheckType, MVT::v4i32,
/* 66830*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66832*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (srl:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VSRW:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vB)
/* 66840*/    /*Scope*/ 14, /*->66855*/
/* 66841*/      OPC_CheckChild1Type, MVT::v2i64,
/* 66843*/      OPC_CheckType, MVT::v2i64,
/* 66845*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 66847*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (srl:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VSRD:{ *:[v2i64] } ?:{ *:[v2i64] }:$vA, ?:{ *:[v2i64] }:$vB)
/* 66855*/    /*Scope*/ 33, /*->66889*/
/* 66856*/      OPC_CheckChild1Type, MVT::v1i128,
/* 66858*/      OPC_CheckType, MVT::v1i128,
/* 66860*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 66862*/      OPC_EmitNode1, TARGET_VAL(PPC::VSRO), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1,  // Results = #2
/* 66870*/      OPC_EmitInteger, MVT::i32, 15, 
/* 66873*/      OPC_EmitNode1, TARGET_VAL(PPC::VSPLTB), 0,
                    MVT::v16i8, 2/*#Ops*/, 3, 1,  // Results = #4
/* 66881*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSR), 0,
                    MVT::v1i128, 2/*#Ops*/, 2, 4, 
                // Src: (srl:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 3
                // Dst: (VSR:{ *:[v1i128] } (VSRO:{ *:[v16i8] } ?:{ *:[v1i128] }:$vA, ?:{ *:[v1i128] }:$vB), (VSPLTB:{ *:[v16i8] } 15:{ *:[i32] }, ?:{ *:[v1i128] }:$vB))
/* 66889*/    0, /*End of Scope*/
/* 66890*/  /*SwitchOpcode*/ 87, TARGET_VAL(ISD::ROTL),// ->66980
/* 66893*/    OPC_RecordChild0, // #0 = $in
/* 66894*/    OPC_RecordChild1, // #1 = $imm
/* 66895*/    OPC_Scope, 45, /*->66942*/ // 2 children in Scope
/* 66897*/      OPC_MoveChild1,
/* 66898*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 66901*/      OPC_CheckType, MVT::i32,
/* 66903*/      OPC_MoveParent,
/* 66904*/      OPC_SwitchType /*2 cases */, 18, MVT::i32,// ->66925
/* 66907*/        OPC_EmitConvertToTarget, 1,
/* 66909*/        OPC_EmitInteger, MVT::i32, 0, 
/* 66912*/        OPC_EmitInteger, MVT::i32, 31, 
/* 66915*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWINM), 0,
                      MVT::i32, 4/*#Ops*/, 0, 2, 3, 4, 
                  // Src: (rotl:{ *:[i32] } i32:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                  // Dst: (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$in, (imm:{ *:[i32] }):$imm, 0:{ *:[i32] }, 31:{ *:[i32] })
/* 66925*/      /*SwitchType*/ 14, MVT::i64,// ->66941
/* 66927*/        OPC_EmitConvertToTarget, 1,
/* 66929*/        OPC_EmitInteger, MVT::i32, 0, 
/* 66932*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL), 0,
                      MVT::i64, 3/*#Ops*/, 0, 2, 3, 
                  // Src: (rotl:{ *:[i64] } i64:{ *:[i64] }:$in, (imm:{ *:[i32] }):$imm) - Complexity = 6
                  // Dst: (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$in, (imm:{ *:[i32] }):$imm, 0:{ *:[i32] })
/* 66941*/      0, // EndSwitchType
/* 66942*/    /*Scope*/ 36, /*->66979*/
/* 66943*/      OPC_CheckChild1Type, MVT::i32,
/* 66945*/      OPC_SwitchType /*2 cases */, 16, MVT::i32,// ->66964
/* 66948*/        OPC_EmitInteger, MVT::i32, 0, 
/* 66951*/        OPC_EmitInteger, MVT::i32, 31, 
/* 66954*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLWNM), 0,
                      MVT::i32, 4/*#Ops*/, 0, 1, 2, 3, 
                  // Src: (rotl:{ *:[i32] } i32:{ *:[i32] }:$in, i32:{ *:[i32] }:$sh) - Complexity = 3
                  // Dst: (RLWNM:{ *:[i32] } ?:{ *:[i32] }:$in, ?:{ *:[i32] }:$sh, 0:{ *:[i32] }, 31:{ *:[i32] })
/* 66964*/      /*SwitchType*/ 12, MVT::i64,// ->66978
/* 66966*/        OPC_EmitInteger, MVT::i32, 0, 
/* 66969*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDCL), 0,
                      MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (rotl:{ *:[i64] } i64:{ *:[i64] }:$in, i32:{ *:[i32] }:$sh) - Complexity = 3
                  // Dst: (RLDCL:{ *:[i64] } ?:{ *:[i64] }:$in, ?:{ *:[i32] }:$sh, 0:{ *:[i32] })
/* 66978*/      0, // EndSwitchType
/* 66979*/    0, /*End of Scope*/
/* 66980*/  /*SwitchOpcode*/ 72, TARGET_VAL(PPCISD::CALL_NOP),// ->67055
/* 66983*/    OPC_RecordNode, // #0 = 'PPCcall_nop' chained node
/* 66984*/    OPC_CaptureGlueInput,
/* 66985*/    OPC_RecordChild1, // #1 = $dst
/* 66986*/    OPC_MoveChild1,
/* 66987*/    OPC_SwitchOpcode /*4 cases */, 22, TARGET_VAL(ISD::MCSymbol),// ->67013
/* 66991*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67002
/* 66994*/        OPC_MoveParent,
/* 66995*/        OPC_EmitMergeInputChains1_0,
/* 66996*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL_NOP), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall_nop (mcsym:{ *:[i32] }):$dst) - Complexity = 6
                  // Dst: (BL_NOP (mcsym:{ *:[i32] }):$dst)
/* 67002*/      /*SwitchType*/ 8, MVT::i64,// ->67012
/* 67004*/        OPC_MoveParent,
/* 67005*/        OPC_EmitMergeInputChains1_0,
/* 67006*/        OPC_MorphNodeTo0, TARGET_VAL(PPC::BL8_NOP), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                      1/*#Ops*/, 1, 
                  // Src: (PPCcall_nop (mcsym:{ *:[i64] }):$dst) - Complexity = 6
                  // Dst: (BL8_NOP (mcsym:{ *:[i64] }):$dst)
/* 67012*/      0, // EndSwitchType
/* 67013*/    /*SwitchOpcode*/ 12, TARGET_VAL(ISD::Constant),// ->67028
/* 67016*/      OPC_CheckType, MVT::i64,
/* 67018*/      OPC_MoveParent,
/* 67019*/      OPC_EmitMergeInputChains1_0,
/* 67020*/      OPC_EmitConvertToTarget, 1,
/* 67022*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BLA8_NOP), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                    1/*#Ops*/, 2, 
                // Src: (PPCcall_nop (imm:{ *:[i64] }):$func) - Complexity = 6
                // Dst: (BLA8_NOP (imm:{ *:[i64] }):$func)
/* 67028*/    /*SwitchOpcode*/ 10, TARGET_VAL(ISD::TargetGlobalAddress),// ->67041
/* 67031*/      OPC_CheckType, MVT::i64,
/* 67033*/      OPC_MoveParent,
/* 67034*/      OPC_EmitMergeInputChains1_0,
/* 67035*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BL8_NOP), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                    1/*#Ops*/, 1, 
                // Src: (PPCcall_nop (tglobaladdr:{ *:[i64] }):$dst) - Complexity = 6
                // Dst: (BL8_NOP (tglobaladdr:{ *:[i64] }):$dst)
/* 67041*/    /*SwitchOpcode*/ 10, TARGET_VAL(ISD::TargetExternalSymbol),// ->67054
/* 67044*/      OPC_CheckType, MVT::i64,
/* 67046*/      OPC_MoveParent,
/* 67047*/      OPC_EmitMergeInputChains1_0,
/* 67048*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BL8_NOP), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic1,
                    1/*#Ops*/, 1, 
                // Src: (PPCcall_nop (texternalsym:{ *:[i64] }):$dst) - Complexity = 6
                // Dst: (BL8_NOP (texternalsym:{ *:[i64] }):$dst)
/* 67054*/    0, // EndSwitchOpcode
/* 67055*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::LD_GOT_TPREL_L),// ->67087
/* 67058*/    OPC_RecordChild0, // #0 = $disp
/* 67059*/    OPC_MoveChild0,
/* 67060*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67063*/    OPC_MoveParent,
/* 67064*/    OPC_RecordChild1, // #1 = $reg
/* 67065*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67076
/* 67068*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LDgotTprelL32), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCldGotTprelL:{ *:[i32] } (tglobaltlsaddr:{ *:[i32] }):$disp, i32:{ *:[i32] }:$reg) - Complexity = 6
                // Dst: (LDgotTprelL32:{ *:[i32] } (tglobaltlsaddr:{ *:[i32] }):$disp, i32:{ *:[i32] }:$reg)
/* 67076*/    /*SwitchType*/ 8, MVT::i64,// ->67086
/* 67078*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LDgotTprelL), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCldGotTprelL:{ *:[i64] } (tglobaltlsaddr:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg) - Complexity = 6
                // Dst: (LDgotTprelL:{ *:[i64] } (tglobaltlsaddr:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg)
/* 67086*/    0, // EndSwitchType
/* 67087*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::ADD_TLS),// ->67119
/* 67090*/    OPC_RecordChild0, // #0 = $in
/* 67091*/    OPC_RecordChild1, // #1 = $g
/* 67092*/    OPC_MoveChild1,
/* 67093*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67096*/    OPC_MoveParent,
/* 67097*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67108
/* 67100*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD4TLS), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddTls:{ *:[i32] } i32:{ *:[i32] }:$in, (tglobaltlsaddr:{ *:[i32] }):$g) - Complexity = 6
                // Dst: (ADD4TLS:{ *:[i32] } ?:{ *:[i32] }:$in, (tglobaltlsaddr:{ *:[i32] }):$g)
/* 67108*/    /*SwitchType*/ 8, MVT::i64,// ->67118
/* 67110*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADD8TLS), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddTls:{ *:[i64] } i64:{ *:[i64] }:$in, (tglobaltlsaddr:{ *:[i64] }):$g) - Complexity = 6
                // Dst: (ADD8TLS:{ *:[i64] } ?:{ *:[i64] }:$in, (tglobaltlsaddr:{ *:[i64] }):$g)
/* 67118*/    0, // EndSwitchType
/* 67119*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::ADDI_TLSGD_L),// ->67151
/* 67122*/    OPC_RecordChild0, // #0 = $reg
/* 67123*/    OPC_RecordChild1, // #1 = $disp
/* 67124*/    OPC_MoveChild1,
/* 67125*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67128*/    OPC_MoveParent,
/* 67129*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67140
/* 67132*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsgdL32), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddiTlsgdL:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp) - Complexity = 6
                // Dst: (ADDItlsgdL32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp)
/* 67140*/    /*SwitchType*/ 8, MVT::i64,// ->67150
/* 67142*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsgdL), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddiTlsgdL:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp) - Complexity = 6
                // Dst: (ADDItlsgdL:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp)
/* 67150*/    0, // EndSwitchType
/* 67151*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::GET_TLS_ADDR),// ->67183
/* 67154*/    OPC_RecordChild0, // #0 = $reg
/* 67155*/    OPC_RecordChild1, // #1 = $sym
/* 67156*/    OPC_MoveChild1,
/* 67157*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67160*/    OPC_MoveParent,
/* 67161*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67172
/* 67164*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::GETtlsADDR32), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCgetTlsAddr:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$sym) - Complexity = 6
                // Dst: (GETtlsADDR32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$sym)
/* 67172*/    /*SwitchType*/ 8, MVT::i64,// ->67182
/* 67174*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::GETtlsADDR), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCgetTlsAddr:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$sym) - Complexity = 6
                // Dst: (GETtlsADDR:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$sym)
/* 67182*/    0, // EndSwitchType
/* 67183*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::ADDI_TLSLD_L),// ->67215
/* 67186*/    OPC_RecordChild0, // #0 = $reg
/* 67187*/    OPC_RecordChild1, // #1 = $disp
/* 67188*/    OPC_MoveChild1,
/* 67189*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67192*/    OPC_MoveParent,
/* 67193*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67204
/* 67196*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsldL32), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddiTlsldL:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp) - Complexity = 6
                // Dst: (ADDItlsldL32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp)
/* 67204*/    /*SwitchType*/ 8, MVT::i64,// ->67214
/* 67206*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDItlsldL), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddiTlsldL:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp) - Complexity = 6
                // Dst: (ADDItlsldL:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp)
/* 67214*/    0, // EndSwitchType
/* 67215*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::GET_TLSLD_ADDR),// ->67247
/* 67218*/    OPC_RecordChild0, // #0 = $reg
/* 67219*/    OPC_RecordChild1, // #1 = $sym
/* 67220*/    OPC_MoveChild1,
/* 67221*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67224*/    OPC_MoveParent,
/* 67225*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67236
/* 67228*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::GETtlsldADDR32), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCgetTlsldAddr:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$sym) - Complexity = 6
                // Dst: (GETtlsldADDR32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$sym)
/* 67236*/    /*SwitchType*/ 8, MVT::i64,// ->67246
/* 67238*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::GETtlsldADDR), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCgetTlsldAddr:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$sym) - Complexity = 6
                // Dst: (GETtlsldADDR:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$sym)
/* 67246*/    0, // EndSwitchType
/* 67247*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::ADDI_DTPREL_L),// ->67279
/* 67250*/    OPC_RecordChild0, // #0 = $reg
/* 67251*/    OPC_RecordChild1, // #1 = $disp
/* 67252*/    OPC_MoveChild1,
/* 67253*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67256*/    OPC_MoveParent,
/* 67257*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67268
/* 67260*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIdtprelL32), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddiDtprelL:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp) - Complexity = 6
                // Dst: (ADDIdtprelL32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp)
/* 67268*/    /*SwitchType*/ 8, MVT::i64,// ->67278
/* 67270*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIdtprelL), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddiDtprelL:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp) - Complexity = 6
                // Dst: (ADDIdtprelL:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp)
/* 67278*/    0, // EndSwitchType
/* 67279*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::ADDIS_DTPREL_HA),// ->67311
/* 67282*/    OPC_RecordChild0, // #0 = $reg
/* 67283*/    OPC_RecordChild1, // #1 = $disp
/* 67284*/    OPC_MoveChild1,
/* 67285*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67288*/    OPC_MoveParent,
/* 67289*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67300
/* 67292*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDISdtprelHA32), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddisDtprelHA:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp) - Complexity = 6
                // Dst: (ADDISdtprelHA32:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaltlsaddr:{ *:[i32] }):$disp)
/* 67300*/    /*SwitchType*/ 8, MVT::i64,// ->67310
/* 67302*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDISdtprelHA), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCaddisDtprelHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp) - Complexity = 6
                // Dst: (ADDISdtprelHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp)
/* 67310*/    0, // EndSwitchType
/* 67311*/  /*SwitchOpcode*/ 114, TARGET_VAL(PPCISD::TOC_ENTRY),// ->67428
/* 67314*/    OPC_RecordMemRef,
/* 67315*/    OPC_RecordChild0, // #0 = $disp
/* 67316*/    OPC_Scope, 28, /*->67346*/ // 3 children in Scope
/* 67318*/      OPC_MoveChild0,
/* 67319*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalAddress),
/* 67322*/      OPC_MoveParent,
/* 67323*/      OPC_RecordChild1, // #1 = $reg
/* 67324*/      OPC_CheckType, MVT::i32,
/* 67326*/      OPC_Scope, 8, /*->67336*/ // 2 children in Scope
/* 67328*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZtoc), 0|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCtoc_entry:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$disp, i32:{ *:[i32] }:$reg) - Complexity = 6
                  // Dst: (LWZtoc:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$disp, i32:{ *:[i32] }:$reg)
/* 67336*/      /*Scope*/ 8, /*->67345*/
/* 67337*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LWZtocL), 0|OPFL_MemRefs,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCtoc_entry:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$disp, i32:{ *:[i32] }:$reg) - Complexity = 6
                  // Dst: (LWZtocL:{ *:[i32] } (tglobaladdr:{ *:[i32] }):$disp, i32:{ *:[i32] }:$reg)
/* 67345*/      0, /*End of Scope*/
/* 67346*/    /*Scope*/ 16, /*->67363*/
/* 67347*/      OPC_RecordChild1, // #1 = $disp
/* 67348*/      OPC_MoveChild1,
/* 67349*/      OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalAddress),
/* 67352*/      OPC_MoveParent,
/* 67353*/      OPC_CheckType, MVT::i32,
/* 67355*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIStocHA), 0|OPFL_MemRefs,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCtoc_entry:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaladdr:{ *:[i32] }):$disp) - Complexity = 6
                // Dst: (ADDIStocHA:{ *:[i32] } i32:{ *:[i32] }:$reg, (tglobaladdr:{ *:[i32] }):$disp)
/* 67363*/    /*Scope*/ 63, /*->67427*/
/* 67364*/      OPC_MoveChild0,
/* 67365*/      OPC_SwitchOpcode /*4 cases */, 12, TARGET_VAL(ISD::TargetGlobalAddress),// ->67381
/* 67369*/        OPC_MoveParent,
/* 67370*/        OPC_RecordChild1, // #1 = $reg
/* 67371*/        OPC_CheckType, MVT::i64,
/* 67373*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LDtoc), 0|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCtoc_entry:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg) - Complexity = 6
                  // Dst: (LDtoc:{ *:[i64] } (tglobaladdr:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg)
/* 67381*/      /*SwitchOpcode*/ 12, TARGET_VAL(ISD::TargetJumpTable),// ->67396
/* 67384*/        OPC_MoveParent,
/* 67385*/        OPC_RecordChild1, // #1 = $reg
/* 67386*/        OPC_CheckType, MVT::i64,
/* 67388*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LDtocJTI), 0|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCtoc_entry:{ *:[i64] } (tjumptable:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg) - Complexity = 6
                  // Dst: (LDtocJTI:{ *:[i64] } (tjumptable:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg)
/* 67396*/      /*SwitchOpcode*/ 12, TARGET_VAL(ISD::TargetConstantPool),// ->67411
/* 67399*/        OPC_MoveParent,
/* 67400*/        OPC_RecordChild1, // #1 = $reg
/* 67401*/        OPC_CheckType, MVT::i64,
/* 67403*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LDtocCPT), 0|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCtoc_entry:{ *:[i64] } (tconstpool:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg) - Complexity = 6
                  // Dst: (LDtocCPT:{ *:[i64] } (tconstpool:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg)
/* 67411*/      /*SwitchOpcode*/ 12, TARGET_VAL(ISD::TargetBlockAddress),// ->67426
/* 67414*/        OPC_MoveParent,
/* 67415*/        OPC_RecordChild1, // #1 = $reg
/* 67416*/        OPC_CheckType, MVT::i64,
/* 67418*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::LDtocBA), 0|OPFL_MemRefs,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCtoc_entry:{ *:[i64] } (tblockaddress:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg) - Complexity = 6
                  // Dst: (LDtocBA:{ *:[i64] } (tblockaddress:{ *:[i64] }):$disp, i64:{ *:[i64] }:$reg)
/* 67426*/      0, // EndSwitchOpcode
/* 67427*/    0, /*End of Scope*/
/* 67428*/  /*SwitchOpcode*/ 25, TARGET_VAL(PPCISD::EXTSWSLI),// ->67456
/* 67431*/    OPC_RecordChild0, // #0 = $rS
/* 67432*/    OPC_CheckChild0Type, MVT::i32,
/* 67434*/    OPC_RecordChild1, // #1 = $SH
/* 67435*/    OPC_MoveChild1,
/* 67436*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 67439*/    OPC_CheckType, MVT::i32,
/* 67441*/    OPC_MoveParent,
/* 67442*/    OPC_CheckType, MVT::i64,
/* 67444*/    OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 67446*/    OPC_EmitConvertToTarget, 1,
/* 67448*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSWSLI_32_64), 0,
                  MVT::i64, 2/*#Ops*/, 0, 2, 
              // Src: (PPCextswsli:{ *:[i64] } i32:{ *:[i32] }:$rS, (imm:{ *:[i32] }):$SH) - Complexity = 6
              // Dst: (EXTSWSLI_32_64:{ *:[i64] } i32:{ *:[i32] }:$rS, (imm:{ *:[i32] }):$SH)
/* 67456*/  /*SwitchOpcode*/ 17, TARGET_VAL(PPCISD::ADDIS_GOT_TPREL_HA),// ->67476
/* 67459*/    OPC_RecordChild0, // #0 = $reg
/* 67460*/    OPC_RecordChild1, // #1 = $disp
/* 67461*/    OPC_MoveChild1,
/* 67462*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67465*/    OPC_MoveParent,
/* 67466*/    OPC_CheckType, MVT::i64,
/* 67468*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDISgotTprelHA), 0,
                  MVT::i64, 2/*#Ops*/, 0, 1, 
              // Src: (PPCaddisGotTprelHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp) - Complexity = 6
              // Dst: (ADDISgotTprelHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp)
/* 67476*/  /*SwitchOpcode*/ 17, TARGET_VAL(PPCISD::ADDIS_TLSGD_HA),// ->67496
/* 67479*/    OPC_RecordChild0, // #0 = $reg
/* 67480*/    OPC_RecordChild1, // #1 = $disp
/* 67481*/    OPC_MoveChild1,
/* 67482*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67485*/    OPC_MoveParent,
/* 67486*/    OPC_CheckType, MVT::i64,
/* 67488*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIStlsgdHA), 0,
                  MVT::i64, 2/*#Ops*/, 0, 1, 
              // Src: (PPCaddisTlsgdHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp) - Complexity = 6
              // Dst: (ADDIStlsgdHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp)
/* 67496*/  /*SwitchOpcode*/ 17, TARGET_VAL(PPCISD::ADDIS_TLSLD_HA),// ->67516
/* 67499*/    OPC_RecordChild0, // #0 = $reg
/* 67500*/    OPC_RecordChild1, // #1 = $disp
/* 67501*/    OPC_MoveChild1,
/* 67502*/    OPC_CheckOpcode, TARGET_VAL(ISD::TargetGlobalTLSAddress),
/* 67505*/    OPC_MoveParent,
/* 67506*/    OPC_CheckType, MVT::i64,
/* 67508*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::ADDIStlsldHA), 0,
                  MVT::i64, 2/*#Ops*/, 0, 1, 
              // Src: (PPCaddisTlsldHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp) - Complexity = 6
              // Dst: (ADDIStlsldHA:{ *:[i64] } i64:{ *:[i64] }:$reg, (tglobaltlsaddr:{ *:[i64] }):$disp)
/* 67516*/  /*SwitchOpcode*/ 8|128,1/*136*/, TARGET_VAL(ISD::Constant),// ->67656
/* 67520*/    OPC_Scope, 10, /*->67532*/ // 4 children in Scope
/* 67522*/      OPC_CheckInteger, 1, 
/* 67524*/      OPC_CheckType, MVT::i1,
/* 67526*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CRSET), 0,
                    MVT::i1, 0/*#Ops*/, 
                // Src: 1:{ *:[i1] } - Complexity = 5
                // Dst: (CRSET:{ *:[i1] })
/* 67532*/    /*Scope*/ 10, /*->67543*/
/* 67533*/      OPC_CheckInteger, 0, 
/* 67535*/      OPC_CheckType, MVT::i1,
/* 67537*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CRUNSET), 0,
                    MVT::i1, 0/*#Ops*/, 
                // Src: 0:{ *:[i1] } - Complexity = 5
                // Dst: (CRUNSET:{ *:[i1] })
/* 67543*/    /*Scope*/ 19, /*->67563*/
/* 67544*/      OPC_CheckInteger, 127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,127|128,1/*18446744073709551615*/, 
/* 67555*/      OPC_CheckType, MVT::i1,
/* 67557*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CRSET), 0,
                    MVT::i1, 0/*#Ops*/, 
                // Src: -1:{ *:[i1] } - Complexity = 5
                // Dst: (CRSET:{ *:[i1] })
/* 67563*/    /*Scope*/ 91, /*->67655*/
/* 67564*/      OPC_RecordNode, // #0 = $imm
/* 67565*/      OPC_SwitchType /*2 cases */, 55, MVT::i32,// ->67623
/* 67568*/        OPC_Scope, 11, /*->67581*/ // 3 children in Scope
/* 67570*/          OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/* 67572*/          OPC_EmitConvertToTarget, 0,
/* 67574*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LI), 0,
                        MVT::i32, 1/*#Ops*/, 1, 
                    // Src: (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$imm - Complexity = 4
                    // Dst: (LI:{ *:[i32] } (imm:{ *:[i32] }):$imm)
/* 67581*/        /*Scope*/ 14, /*->67596*/
/* 67582*/          OPC_CheckPredicate, 19, // Predicate_imm16ShiftedSExt
/* 67584*/          OPC_EmitConvertToTarget, 0,
/* 67586*/          OPC_EmitNodeXForm, 0, 1, // HI16
/* 67589*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS), 0,
                        MVT::i32, 1/*#Ops*/, 2, 
                    // Src: (imm:{ *:[i32] })<<P:Predicate_imm16ShiftedSExt>><<X:HI16>>:$imm - Complexity = 4
                    // Dst: (LIS:{ *:[i32] } (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 67596*/        /*Scope*/ 25, /*->67622*/
/* 67597*/          OPC_EmitConvertToTarget, 0,
/* 67599*/          OPC_EmitNodeXForm, 0, 1, // HI16
/* 67602*/          OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                        MVT::i32, 1/*#Ops*/, 2,  // Results = #3
/* 67609*/          OPC_EmitConvertToTarget, 0,
/* 67611*/          OPC_EmitNodeXForm, 1, 4, // LO16
/* 67614*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::ORI), 0,
                        MVT::i32, 2/*#Ops*/, 3, 5, 
                    // Src: (imm:{ *:[i32] }):$imm - Complexity = 3
                    // Dst: (ORI:{ *:[i32] } (LIS:{ *:[i32] } (HI16:{ *:[i32] } (imm:{ *:[i32] }):$imm)), (LO16:{ *:[i32] } (imm:{ *:[i32] }):$imm))
/* 67622*/        0, /*End of Scope*/
/* 67623*/      /*SwitchType*/ 29, MVT::i64,// ->67654
/* 67625*/        OPC_Scope, 11, /*->67638*/ // 2 children in Scope
/* 67627*/          OPC_CheckPredicate, 14, // Predicate_imm64SExt16
/* 67629*/          OPC_EmitConvertToTarget, 0,
/* 67631*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LI8), 0,
                        MVT::i64, 1/*#Ops*/, 1, 
                    // Src: (imm:{ *:[i64] })<<P:Predicate_imm64SExt16>>:$imm - Complexity = 4
                    // Dst: (LI8:{ *:[i64] } (imm:{ *:[i64] }):$imm)
/* 67638*/        /*Scope*/ 14, /*->67653*/
/* 67639*/          OPC_CheckPredicate, 19, // Predicate_imm16ShiftedSExt
/* 67641*/          OPC_EmitConvertToTarget, 0,
/* 67643*/          OPC_EmitNodeXForm, 0, 1, // HI16
/* 67646*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::LIS8), 0,
                        MVT::i64, 1/*#Ops*/, 2, 
                    // Src: (imm:{ *:[i64] })<<P:Predicate_imm16ShiftedSExt>><<X:HI16>>:$imm - Complexity = 4
                    // Dst: (LIS8:{ *:[i64] } (HI16:{ *:[i64] } (imm:{ *:[i64] }):$imm))
/* 67653*/        0, /*End of Scope*/
/* 67654*/      0, // EndSwitchType
/* 67655*/    0, /*End of Scope*/
/* 67656*/  /*SwitchOpcode*/ 22, TARGET_VAL(PPCISD::RET_FLAG),// ->67681
/* 67659*/    OPC_RecordNode, // #0 = 'retflag' chained node
/* 67660*/    OPC_CaptureGlueInput,
/* 67661*/    OPC_Scope, 8, /*->67671*/ // 2 children in Scope
/* 67663*/      OPC_CheckPatternPredicate, 41, // (!PPCSubTarget->isPPC64())
/* 67665*/      OPC_EmitMergeInputChains1_0,
/* 67666*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BLR), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic0,
                    0/*#Ops*/, 
                // Src: (retflag) - Complexity = 3
                // Dst: (BLR)
/* 67671*/    /*Scope*/ 8, /*->67680*/
/* 67672*/      OPC_CheckPatternPredicate, 40, // (PPCSubTarget->isPPC64())
/* 67674*/      OPC_EmitMergeInputChains1_0,
/* 67675*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BLR8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_Variadic0,
                    0/*#Ops*/, 
                // Src: (retflag) - Complexity = 3
                // Dst: (BLR8)
/* 67680*/    0, /*End of Scope*/
/* 67681*/  /*SwitchOpcode*/ 14, TARGET_VAL(ISD::BR),// ->67698
/* 67684*/    OPC_RecordNode, // #0 = 'br' chained node
/* 67685*/    OPC_RecordChild1, // #1 = $dst
/* 67686*/    OPC_MoveChild1,
/* 67687*/    OPC_CheckOpcode, TARGET_VAL(ISD::BasicBlock),
/* 67690*/    OPC_MoveParent,
/* 67691*/    OPC_EmitMergeInputChains1_0,
/* 67692*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::B), 0|OPFL_Chain,
                  1/*#Ops*/, 1, 
              // Src: (br (bb:{ *:[Other] }):$dst) - Complexity = 3
              // Dst: (B (bb:{ *:[Other] }):$dst)
/* 67698*/  /*SwitchOpcode*/ 22, TARGET_VAL(PPCISD::BCTRL),// ->67723
/* 67701*/    OPC_RecordNode, // #0 = 'PPCbctrl' chained node
/* 67702*/    OPC_CaptureGlueInput,
/* 67703*/    OPC_Scope, 8, /*->67713*/ // 2 children in Scope
/* 67705*/      OPC_CheckPatternPredicate, 41, // (!PPCSubTarget->isPPC64())
/* 67707*/      OPC_EmitMergeInputChains1_0,
/* 67708*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BCTRL), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic0,
                    0/*#Ops*/, 
                // Src: (PPCbctrl) - Complexity = 3
                // Dst: (BCTRL)
/* 67713*/    /*Scope*/ 8, /*->67722*/
/* 67714*/      OPC_CheckPatternPredicate, 40, // (PPCSubTarget->isPPC64())
/* 67716*/      OPC_EmitMergeInputChains1_0,
/* 67717*/      OPC_MorphNodeTo0, TARGET_VAL(PPC::BCTRL8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput|OPFL_Variadic0,
                    0/*#Ops*/, 
                // Src: (PPCbctrl) - Complexity = 3
                // Dst: (BCTRL8)
/* 67722*/    0, /*End of Scope*/
/* 67723*/  /*SwitchOpcode*/ 7, TARGET_VAL(PPCISD::CLRBHRB),// ->67733
/* 67726*/    OPC_RecordNode, // #0 = 'PPCclrbhrb' chained node
/* 67727*/    OPC_EmitMergeInputChains1_0,
/* 67728*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::CLRBHRB), 0|OPFL_Chain,
                  0/*#Ops*/, 
              // Src: (PPCclrbhrb) - Complexity = 3
              // Dst: (CLRBHRB)
/* 67733*/  /*SwitchOpcode*/ 7, TARGET_VAL(ISD::TRAP),// ->67743
/* 67736*/    OPC_RecordNode, // #0 = 'trap' chained node
/* 67737*/    OPC_EmitMergeInputChains1_0,
/* 67738*/    OPC_MorphNodeTo0, TARGET_VAL(PPC::TRAP), 0|OPFL_Chain,
                  0/*#Ops*/, 
              // Src: (trap) - Complexity = 3
              // Dst: (TRAP)
/* 67743*/  /*SwitchOpcode*/ 123, TARGET_VAL(PPCISD::SHL),// ->67869
/* 67746*/    OPC_RecordChild0, // #0 = $rS
/* 67747*/    OPC_RecordChild1, // #1 = $rB
/* 67748*/    OPC_Scope, 24, /*->67774*/ // 6 children in Scope
/* 67750*/      OPC_CheckChild1Type, MVT::i32,
/* 67752*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67763
/* 67755*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SLW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCshl:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SLW:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 67763*/      /*SwitchType*/ 8, MVT::i64,// ->67773
/* 67765*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SLD), 0,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCshl:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SLD:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB)
/* 67773*/      0, // EndSwitchType
/* 67774*/    /*Scope*/ 14, /*->67789*/
/* 67775*/      OPC_CheckChild1Type, MVT::v16i8,
/* 67777*/      OPC_CheckType, MVT::v16i8,
/* 67779*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67781*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (PPCshl:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VSLB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vB)
/* 67789*/    /*Scope*/ 14, /*->67804*/
/* 67790*/      OPC_CheckChild1Type, MVT::v8i16,
/* 67792*/      OPC_CheckType, MVT::v8i16,
/* 67794*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67796*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (PPCshl:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VSLH:{ *:[v8i16] } ?:{ *:[v8i16] }:$vA, ?:{ *:[v8i16] }:$vB)
/* 67804*/    /*Scope*/ 14, /*->67819*/
/* 67805*/      OPC_CheckChild1Type, MVT::v4i32,
/* 67807*/      OPC_CheckType, MVT::v4i32,
/* 67809*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67811*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCshl:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VSLW:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vB)
/* 67819*/    /*Scope*/ 14, /*->67834*/
/* 67820*/      OPC_CheckChild1Type, MVT::v2i64,
/* 67822*/      OPC_CheckType, MVT::v2i64,
/* 67824*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 67826*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCshl:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VSLD:{ *:[v2i64] } ?:{ *:[v2i64] }:$vA, ?:{ *:[v2i64] }:$vB)
/* 67834*/    /*Scope*/ 33, /*->67868*/
/* 67835*/      OPC_CheckChild1Type, MVT::v1i128,
/* 67837*/      OPC_CheckType, MVT::v1i128,
/* 67839*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67841*/      OPC_EmitNode1, TARGET_VAL(PPC::VSLO), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1,  // Results = #2
/* 67849*/      OPC_EmitInteger, MVT::i32, 15, 
/* 67852*/      OPC_EmitNode1, TARGET_VAL(PPC::VSPLTB), 0,
                    MVT::v16i8, 2/*#Ops*/, 3, 1,  // Results = #4
/* 67860*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSL), 0,
                    MVT::v1i128, 2/*#Ops*/, 2, 4, 
                // Src: (PPCshl:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 3
                // Dst: (VSL:{ *:[v1i128] } (VSLO:{ *:[v16i8] } ?:{ *:[v1i128] }:$vA, ?:{ *:[v1i128] }:$vB), (VSPLTB:{ *:[v16i8] } 15:{ *:[i32] }, ?:{ *:[v1i128] }:$vB))
/* 67868*/    0, /*End of Scope*/
/* 67869*/  /*SwitchOpcode*/ 123, TARGET_VAL(PPCISD::SRL),// ->67995
/* 67872*/    OPC_RecordChild0, // #0 = $rS
/* 67873*/    OPC_RecordChild1, // #1 = $rB
/* 67874*/    OPC_Scope, 24, /*->67900*/ // 6 children in Scope
/* 67876*/      OPC_CheckChild1Type, MVT::i32,
/* 67878*/      OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->67889
/* 67881*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SRW), 0,
                      MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCsrl:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRW:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 67889*/      /*SwitchType*/ 8, MVT::i64,// ->67899
/* 67891*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SRD), 0,
                      MVT::i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCsrl:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRD:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB)
/* 67899*/      0, // EndSwitchType
/* 67900*/    /*Scope*/ 14, /*->67915*/
/* 67901*/      OPC_CheckChild1Type, MVT::v16i8,
/* 67903*/      OPC_CheckType, MVT::v16i8,
/* 67905*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67907*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsrl:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VSRB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vB)
/* 67915*/    /*Scope*/ 14, /*->67930*/
/* 67916*/      OPC_CheckChild1Type, MVT::v8i16,
/* 67918*/      OPC_CheckType, MVT::v8i16,
/* 67920*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67922*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsrl:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VSRH:{ *:[v8i16] } ?:{ *:[v8i16] }:$vA, ?:{ *:[v8i16] }:$vB)
/* 67930*/    /*Scope*/ 14, /*->67945*/
/* 67931*/      OPC_CheckChild1Type, MVT::v4i32,
/* 67933*/      OPC_CheckType, MVT::v4i32,
/* 67935*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67937*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsrl:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VSRW:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vB)
/* 67945*/    /*Scope*/ 14, /*->67960*/
/* 67946*/      OPC_CheckChild1Type, MVT::v2i64,
/* 67948*/      OPC_CheckType, MVT::v2i64,
/* 67950*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 67952*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsrl:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VSRD:{ *:[v2i64] } ?:{ *:[v2i64] }:$vA, ?:{ *:[v2i64] }:$vB)
/* 67960*/    /*Scope*/ 33, /*->67994*/
/* 67961*/      OPC_CheckChild1Type, MVT::v1i128,
/* 67963*/      OPC_CheckType, MVT::v1i128,
/* 67965*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 67967*/      OPC_EmitNode1, TARGET_VAL(PPC::VSRO), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1,  // Results = #2
/* 67975*/      OPC_EmitInteger, MVT::i32, 15, 
/* 67978*/      OPC_EmitNode1, TARGET_VAL(PPC::VSPLTB), 0,
                    MVT::v16i8, 2/*#Ops*/, 3, 1,  // Results = #4
/* 67986*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSR), 0,
                    MVT::v1i128, 2/*#Ops*/, 2, 4, 
                // Src: (PPCsrl:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$vA, v1i128:{ *:[v1i128] }:$vB) - Complexity = 3
                // Dst: (VSR:{ *:[v1i128] } (VSRO:{ *:[v16i8] } ?:{ *:[v1i128] }:$vA, ?:{ *:[v1i128] }:$vB), (VSPLTB:{ *:[v16i8] } 15:{ *:[i32] }, ?:{ *:[v1i128] }:$vB))
/* 67994*/    0, /*End of Scope*/
/* 67995*/  /*SwitchOpcode*/ 91, TARGET_VAL(PPCISD::SRA),// ->68089
/* 67998*/    OPC_RecordChild0, // #0 = $rS
/* 67999*/    OPC_RecordChild1, // #1 = $rB
/* 68000*/    OPC_Scope, 26, /*->68028*/ // 5 children in Scope
/* 68002*/      OPC_CheckChild1Type, MVT::i32,
/* 68004*/      OPC_SwitchType /*2 cases */, 9, MVT::i32,// ->68016
/* 68007*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SRAW), 0,
                      MVT::i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCsra:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRAW:{ *:[i32] }:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 68016*/      /*SwitchType*/ 9, MVT::i64,// ->68027
/* 68018*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::SRAD), 0,
                      MVT::i64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCsra:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                  // Dst: (SRAD:{ *:[i64] }:{ *:[i32] } i64:{ *:[i64] }:$rS, i32:{ *:[i32] }:$rB)
/* 68027*/      0, // EndSwitchType
/* 68028*/    /*Scope*/ 14, /*->68043*/
/* 68029*/      OPC_CheckChild1Type, MVT::v16i8,
/* 68031*/      OPC_CheckType, MVT::v16i8,
/* 68033*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 68035*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsra:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VSRAB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vB)
/* 68043*/    /*Scope*/ 14, /*->68058*/
/* 68044*/      OPC_CheckChild1Type, MVT::v8i16,
/* 68046*/      OPC_CheckType, MVT::v8i16,
/* 68048*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 68050*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsra:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VSRAH:{ *:[v8i16] } ?:{ *:[v8i16] }:$vA, ?:{ *:[v8i16] }:$vB)
/* 68058*/    /*Scope*/ 14, /*->68073*/
/* 68059*/      OPC_CheckChild1Type, MVT::v4i32,
/* 68061*/      OPC_CheckType, MVT::v4i32,
/* 68063*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 68065*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsra:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VSRAW:{ *:[v4i32] } ?:{ *:[v4i32] }:$vA, ?:{ *:[v4i32] }:$vB)
/* 68073*/    /*Scope*/ 14, /*->68088*/
/* 68074*/      OPC_CheckChild1Type, MVT::v2i64,
/* 68076*/      OPC_CheckType, MVT::v2i64,
/* 68078*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68080*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSRAD), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCsra:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VSRAD:{ *:[v2i64] } ?:{ *:[v2i64] }:$vA, ?:{ *:[v2i64] }:$vB)
/* 68088*/    0, /*End of Scope*/
/* 68089*/  /*SwitchOpcode*/ 77, TARGET_VAL(ISD::CTLZ),// ->68169
/* 68092*/    OPC_RecordChild0, // #0 = $rS
/* 68093*/    OPC_SwitchType /*6 cases */, 9, MVT::i32,// ->68105
/* 68096*/      OPC_CheckChild0Type, MVT::i32,
/* 68098*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CNTLZW), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (ctlz:{ *:[i32] } i32:{ *:[i32] }:$rS) - Complexity = 3
                // Dst: (CNTLZW:{ *:[i32] } i32:{ *:[i32] }:$rS)
/* 68105*/    /*SwitchType*/ 9, MVT::i64,// ->68116
/* 68107*/      OPC_CheckChild0Type, MVT::i64,
/* 68109*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CNTLZD), 0,
                    MVT::i64, 1/*#Ops*/, 0, 
                // Src: (ctlz:{ *:[i64] } i64:{ *:[i64] }:$rS) - Complexity = 3
                // Dst: (CNTLZD:{ *:[i64] } i64:{ *:[i64] }:$rS)
/* 68116*/    /*SwitchType*/ 11, MVT::v16i8,// ->68129
/* 68118*/      OPC_CheckChild0Type, MVT::v16i8,
/* 68120*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68122*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCLZB), 0,
                    MVT::v16i8, 1/*#Ops*/, 0, 
                // Src: (ctlz:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VCLZB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB)
/* 68129*/    /*SwitchType*/ 11, MVT::v8i16,// ->68142
/* 68131*/      OPC_CheckChild0Type, MVT::v8i16,
/* 68133*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68135*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCLZH), 0,
                    MVT::v8i16, 1/*#Ops*/, 0, 
                // Src: (ctlz:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VCLZH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vB)
/* 68142*/    /*SwitchType*/ 11, MVT::v4i32,// ->68155
/* 68144*/      OPC_CheckChild0Type, MVT::v4i32,
/* 68146*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68148*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCLZW), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (ctlz:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VCLZW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB)
/* 68155*/    /*SwitchType*/ 11, MVT::v2i64,// ->68168
/* 68157*/      OPC_CheckChild0Type, MVT::v2i64,
/* 68159*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68161*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCLZD), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (ctlz:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VCLZD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB)
/* 68168*/    0, // EndSwitchType
/* 68169*/  /*SwitchOpcode*/ 81, TARGET_VAL(ISD::CTTZ),// ->68253
/* 68172*/    OPC_RecordChild0, // #0 = $rS
/* 68173*/    OPC_SwitchType /*6 cases */, 11, MVT::i32,// ->68187
/* 68176*/      OPC_CheckChild0Type, MVT::i32,
/* 68178*/      OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 68180*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CNTTZW), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (cttz:{ *:[i32] } i32:{ *:[i32] }:$rS) - Complexity = 3
                // Dst: (CNTTZW:{ *:[i32] } i32:{ *:[i32] }:$rS)
/* 68187*/    /*SwitchType*/ 11, MVT::i64,// ->68200
/* 68189*/      OPC_CheckChild0Type, MVT::i64,
/* 68191*/      OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 68193*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CNTTZD), 0,
                    MVT::i64, 1/*#Ops*/, 0, 
                // Src: (cttz:{ *:[i64] } i64:{ *:[i64] }:$rS) - Complexity = 3
                // Dst: (CNTTZD:{ *:[i64] } i64:{ *:[i64] }:$rS)
/* 68200*/    /*SwitchType*/ 11, MVT::v16i8,// ->68213
/* 68202*/      OPC_CheckChild0Type, MVT::v16i8,
/* 68204*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 68206*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTZB), 0,
                    MVT::v16i8, 1/*#Ops*/, 0, 
                // Src: (cttz:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VCTZB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB)
/* 68213*/    /*SwitchType*/ 11, MVT::v8i16,// ->68226
/* 68215*/      OPC_CheckChild0Type, MVT::v8i16,
/* 68217*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 68219*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTZH), 0,
                    MVT::v8i16, 1/*#Ops*/, 0, 
                // Src: (cttz:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VCTZH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vB)
/* 68226*/    /*SwitchType*/ 11, MVT::v4i32,// ->68239
/* 68228*/      OPC_CheckChild0Type, MVT::v4i32,
/* 68230*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 68232*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTZW), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (cttz:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VCTZW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB)
/* 68239*/    /*SwitchType*/ 11, MVT::v2i64,// ->68252
/* 68241*/      OPC_CheckChild0Type, MVT::v2i64,
/* 68243*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/* 68245*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VCTZD), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (cttz:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VCTZD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB)
/* 68252*/    0, // EndSwitchType
/* 68253*/  /*SwitchOpcode*/ 63, TARGET_VAL(ISD::SIGN_EXTEND_INREG),// ->68319
/* 68256*/    OPC_RecordChild0, // #0 = $rS
/* 68257*/    OPC_MoveChild1,
/* 68258*/    OPC_Scope, 23, /*->68283*/ // 3 children in Scope
/* 68260*/      OPC_CheckValueType, MVT::i8,
/* 68262*/      OPC_MoveParent,
/* 68263*/      OPC_SwitchType /*2 cases */, 7, MVT::i32,// ->68273
/* 68266*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSB), 0,
                      MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (sext_inreg:{ *:[i32] } i32:{ *:[i32] }:$rS, i8:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTSB:{ *:[i32] } i32:{ *:[i32] }:$rS)
/* 68273*/      /*SwitchType*/ 7, MVT::i64,// ->68282
/* 68275*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSB8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (sext_inreg:{ *:[i64] } i64:{ *:[i64] }:$rS, i8:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTSB8:{ *:[i64] } i64:{ *:[i64] }:$rS)
/* 68282*/      0, // EndSwitchType
/* 68283*/    /*Scope*/ 23, /*->68307*/
/* 68284*/      OPC_CheckValueType, MVT::i16,
/* 68286*/      OPC_MoveParent,
/* 68287*/      OPC_SwitchType /*2 cases */, 7, MVT::i32,// ->68297
/* 68290*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSH), 0,
                      MVT::i32, 1/*#Ops*/, 0, 
                  // Src: (sext_inreg:{ *:[i32] } i32:{ *:[i32] }:$rS, i16:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTSH:{ *:[i32] } i32:{ *:[i32] }:$rS)
/* 68297*/      /*SwitchType*/ 7, MVT::i64,// ->68306
/* 68299*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSH8), 0,
                      MVT::i64, 1/*#Ops*/, 0, 
                  // Src: (sext_inreg:{ *:[i64] } i64:{ *:[i64] }:$rS, i16:{ *:[Other] }) - Complexity = 3
                  // Dst: (EXTSH8:{ *:[i64] } i64:{ *:[i64] }:$rS)
/* 68306*/      0, // EndSwitchType
/* 68307*/    /*Scope*/ 10, /*->68318*/
/* 68308*/      OPC_CheckValueType, MVT::i32,
/* 68310*/      OPC_MoveParent,
/* 68311*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::EXTSW), 0,
                    MVT::i64, 1/*#Ops*/, 0, 
                // Src: (sext_inreg:{ *:[i64] } i64:{ *:[i64] }:$rS, i32:{ *:[Other] }) - Complexity = 3
                // Dst: (EXTSW:{ *:[i64] } i64:{ *:[i64] }:$rS)
/* 68318*/    0, /*End of Scope*/
/* 68319*/  /*SwitchOpcode*/ 24, TARGET_VAL(PPCISD::CMPB),// ->68346
/* 68322*/    OPC_RecordChild0, // #0 = $rS
/* 68323*/    OPC_RecordChild1, // #1 = $rB
/* 68324*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->68335
/* 68327*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CMPB), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (PPCcmpb:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (CMPB:{ *:[i32] } i32:{ *:[i32] }:$rS, i32:{ *:[i32] }:$rB)
/* 68335*/    /*SwitchType*/ 8, MVT::i64,// ->68345
/* 68337*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CMPB8), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCcmpb:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (CMPB8:{ *:[i64] } i64:{ *:[i64] }:$rS, i64:{ *:[i64] }:$rB)
/* 68345*/    0, // EndSwitchType
/* 68346*/  /*SwitchOpcode*/ 9, TARGET_VAL(PPCISD::CR6SET),// ->68358
/* 68349*/    OPC_RecordNode, // #0 = 'PPCcr6set' chained node
/* 68350*/    OPC_CaptureGlueInput,
/* 68351*/    OPC_EmitMergeInputChains1_0,
/* 68352*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::CR6SET), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput,
                  MVT::i1, 0/*#Ops*/, 
              // Src: (PPCcr6set) - Complexity = 3
              // Dst: (CR6SET:{ *:[i1] })
/* 68358*/  /*SwitchOpcode*/ 9, TARGET_VAL(PPCISD::CR6UNSET),// ->68370
/* 68361*/    OPC_RecordNode, // #0 = 'PPCcr6unset' chained node
/* 68362*/    OPC_CaptureGlueInput,
/* 68363*/    OPC_EmitMergeInputChains1_0,
/* 68364*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::CR6UNSET), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput,
                  MVT::i1, 0/*#Ops*/, 
              // Src: (PPCcr6unset) - Complexity = 3
              // Dst: (CR6UNSET:{ *:[i1] })
/* 68370*/  /*SwitchOpcode*/ 27, TARGET_VAL(PPCISD::MTCTR),// ->68400
/* 68373*/    OPC_RecordNode, // #0 = 'PPCmtctr' chained node
/* 68374*/    OPC_CaptureGlueInput,
/* 68375*/    OPC_RecordChild1, // #1 = $rS
/* 68376*/    OPC_Scope, 10, /*->68388*/ // 2 children in Scope
/* 68378*/      OPC_CheckChild1Type, MVT::i32,
/* 68380*/      OPC_EmitMergeInputChains1_0,
/* 68381*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MTCTR), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput,
                    MVT::i32, 1/*#Ops*/, 1, 
                // Src: (PPCmtctr i32:{ *:[i32] }:$rS) - Complexity = 3
                // Dst: (MTCTR:{ *:[i32] } i32:{ *:[i32] }:$rS)
/* 68388*/    /*Scope*/ 10, /*->68399*/
/* 68389*/      OPC_CheckChild1Type, MVT::i64,
/* 68391*/      OPC_EmitMergeInputChains1_0,
/* 68392*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MTCTR8), 0|OPFL_Chain|OPFL_GlueInput|OPFL_GlueOutput,
                    MVT::i64, 1/*#Ops*/, 1, 
                // Src: (PPCmtctr i64:{ *:[i64] }:$rS) - Complexity = 3
                // Dst: (MTCTR8:{ *:[i64] } i64:{ *:[i64] }:$rS)
/* 68399*/    0, /*End of Scope*/
/* 68400*/  /*SwitchOpcode*/ 28, TARGET_VAL(ISD::SREM),// ->68431
/* 68403*/    OPC_RecordChild0, // #0 = $rA
/* 68404*/    OPC_RecordChild1, // #1 = $rB
/* 68405*/    OPC_SwitchType /*2 cases */, 10, MVT::i32,// ->68418
/* 68408*/      OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 68410*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MODSW), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (srem:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (MODSW:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 68418*/    /*SwitchType*/ 10, MVT::i64,// ->68430
/* 68420*/      OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 68422*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MODSD), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (srem:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (MODSD:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 68430*/    0, // EndSwitchType
/* 68431*/  /*SwitchOpcode*/ 28, TARGET_VAL(ISD::UREM),// ->68462
/* 68434*/    OPC_RecordChild0, // #0 = $rA
/* 68435*/    OPC_RecordChild1, // #1 = $rB
/* 68436*/    OPC_SwitchType /*2 cases */, 10, MVT::i32,// ->68449
/* 68439*/      OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 68441*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MODUW), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (urem:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (MODUW:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 68449*/    /*SwitchType*/ 10, MVT::i64,// ->68461
/* 68451*/      OPC_CheckPatternPredicate, 39, // (PPCSubTarget->isISA3_0())
/* 68453*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MODUD), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (urem:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (MODUD:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 68461*/    0, // EndSwitchType
/* 68462*/  /*SwitchOpcode*/ 24, TARGET_VAL(ISD::SDIV),// ->68489
/* 68465*/    OPC_RecordChild0, // #0 = $rA
/* 68466*/    OPC_RecordChild1, // #1 = $rB
/* 68467*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->68478
/* 68470*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVW), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (sdiv:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (DIVW:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 68478*/    /*SwitchType*/ 8, MVT::i64,// ->68488
/* 68480*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVD), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (sdiv:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (DIVD:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 68488*/    0, // EndSwitchType
/* 68489*/  /*SwitchOpcode*/ 24, TARGET_VAL(ISD::UDIV),// ->68516
/* 68492*/    OPC_RecordChild0, // #0 = $rA
/* 68493*/    OPC_RecordChild1, // #1 = $rB
/* 68494*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->68505
/* 68497*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVWU), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (udiv:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (DIVWU:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 68505*/    /*SwitchType*/ 8, MVT::i64,// ->68515
/* 68507*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::DIVDU), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (udiv:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (DIVDU:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 68515*/    0, // EndSwitchType
/* 68516*/  /*SwitchOpcode*/ 24, TARGET_VAL(ISD::MULHS),// ->68543
/* 68519*/    OPC_RecordChild0, // #0 = $rA
/* 68520*/    OPC_RecordChild1, // #1 = $rB
/* 68521*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->68532
/* 68524*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MULHW), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (mulhs:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (MULHW:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 68532*/    /*SwitchType*/ 8, MVT::i64,// ->68542
/* 68534*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MULHD), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (mulhs:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (MULHD:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 68542*/    0, // EndSwitchType
/* 68543*/  /*SwitchOpcode*/ 24, TARGET_VAL(ISD::MULHU),// ->68570
/* 68546*/    OPC_RecordChild0, // #0 = $rA
/* 68547*/    OPC_RecordChild1, // #1 = $rB
/* 68548*/    OPC_SwitchType /*2 cases */, 8, MVT::i32,// ->68559
/* 68551*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MULHWU), 0,
                    MVT::i32, 2/*#Ops*/, 0, 1, 
                // Src: (mulhu:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB) - Complexity = 3
                // Dst: (MULHWU:{ *:[i32] } i32:{ *:[i32] }:$rA, i32:{ *:[i32] }:$rB)
/* 68559*/    /*SwitchType*/ 8, MVT::i64,// ->68569
/* 68561*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MULHDU), 0,
                    MVT::i64, 2/*#Ops*/, 0, 1, 
                // Src: (mulhu:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 3
                // Dst: (MULHDU:{ *:[i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB)
/* 68569*/    0, // EndSwitchType
/* 68570*/  /*SwitchOpcode*/ 8, TARGET_VAL(PPCISD::PPC32_GOT),// ->68581
/* 68573*/    OPC_CheckType, MVT::i32,
/* 68575*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::PPC32GOT), 0,
                  MVT::i32, 0/*#Ops*/, 
              // Src: (PPCppc32GOT:{ *:[i32] }) - Complexity = 3
              // Dst: (PPC32GOT:{ *:[i32] })
/* 68581*/  /*SwitchOpcode*/ 10, TARGET_VAL(ISD::READCYCLECOUNTER),// ->68594
/* 68584*/    OPC_RecordNode, // #0 = 'readcyclecounter' chained node
/* 68585*/    OPC_CheckType, MVT::i64,
/* 68587*/    OPC_EmitMergeInputChains1_0,
/* 68588*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::MFTB8), 0|OPFL_Chain,
                  MVT::i64, 0/*#Ops*/, 
              // Src: (readcyclecounter:{ *:[i64] }) - Complexity = 3
              // Dst: (MFTB8:{ *:[i64] })
/* 68594*/  /*SwitchOpcode*/ 77, TARGET_VAL(ISD::CTPOP),// ->68674
/* 68597*/    OPC_RecordChild0, // #0 = $rS
/* 68598*/    OPC_SwitchType /*6 cases */, 9, MVT::i64,// ->68610
/* 68601*/      OPC_CheckChild0Type, MVT::i64,
/* 68603*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::POPCNTD), 0,
                    MVT::i64, 1/*#Ops*/, 0, 
                // Src: (ctpop:{ *:[i64] } i64:{ *:[i64] }:$rS) - Complexity = 3
                // Dst: (POPCNTD:{ *:[i64] } i64:{ *:[i64] }:$rS)
/* 68610*/    /*SwitchType*/ 9, MVT::i32,// ->68621
/* 68612*/      OPC_CheckChild0Type, MVT::i32,
/* 68614*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::POPCNTW), 0,
                    MVT::i32, 1/*#Ops*/, 0, 
                // Src: (ctpop:{ *:[i32] } i32:{ *:[i32] }:$rS) - Complexity = 3
                // Dst: (POPCNTW:{ *:[i32] } i32:{ *:[i32] }:$rS)
/* 68621*/    /*SwitchType*/ 11, MVT::v16i8,// ->68634
/* 68623*/      OPC_CheckChild0Type, MVT::v16i8,
/* 68625*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68627*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPOPCNTB), 0,
                    MVT::v16i8, 1/*#Ops*/, 0, 
                // Src: (ctpop:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB) - Complexity = 3
                // Dst: (VPOPCNTB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB)
/* 68634*/    /*SwitchType*/ 11, MVT::v8i16,// ->68647
/* 68636*/      OPC_CheckChild0Type, MVT::v8i16,
/* 68638*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68640*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPOPCNTH), 0,
                    MVT::v8i16, 1/*#Ops*/, 0, 
                // Src: (ctpop:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vB) - Complexity = 3
                // Dst: (VPOPCNTH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vB)
/* 68647*/    /*SwitchType*/ 11, MVT::v4i32,// ->68660
/* 68649*/      OPC_CheckChild0Type, MVT::v4i32,
/* 68651*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68653*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPOPCNTW), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (ctpop:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB) - Complexity = 3
                // Dst: (VPOPCNTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vB)
/* 68660*/    /*SwitchType*/ 11, MVT::v2i64,// ->68673
/* 68662*/      OPC_CheckChild0Type, MVT::v2i64,
/* 68664*/      OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/* 68666*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VPOPCNTD), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (ctpop:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB) - Complexity = 3
                // Dst: (VPOPCNTD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vB)
/* 68673*/    0, // EndSwitchType
/* 68674*/  /*SwitchOpcode*/ 91|128,1/*219*/, TARGET_VAL(ISD::SELECT),// ->68897
/* 68678*/    OPC_RecordChild0, // #0 = $cond
/* 68679*/    OPC_CheckChild0Type, MVT::i1,
/* 68681*/    OPC_RecordChild1, // #1 = $tval
/* 68682*/    OPC_RecordChild2, // #2 = $fval
/* 68683*/    OPC_SwitchType /*11 cases */, 32, MVT::i1,// ->68718
/* 68686*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #3
/* 68694*/      OPC_EmitNode1, TARGET_VAL(PPC::CRNOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 0,  // Results = #4
/* 68702*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 68710*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 3, 5, 
                // Src: (select:{ *:[i1] } i1:{ *:[i1] }:$cond, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } ?:{ *:[i1] }:$cond, ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRNOR:{ *:[i1] } ?:{ *:[i1] }:$cond, ?:{ *:[i1] }:$cond), ?:{ *:[i1] }:$fval))
/* 68718*/    /*SwitchType*/ 9, MVT::i32,// ->68729
/* 68720*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[i32] } i1:{ *:[i1] }:$cond, i32:{ *:[i32] }:$T, i32:{ *:[i32] }:$F) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } i1:{ *:[i1] }:$cond, i32:{ *:[i32] }:$T, i32:{ *:[i32] }:$F)
/* 68729*/    /*SwitchType*/ 9, MVT::i64,// ->68740
/* 68731*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[i64] } i1:{ *:[i1] }:$cond, i64:{ *:[i64] }:$T, i64:{ *:[i64] }:$F) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } i1:{ *:[i1] }:$cond, i64:{ *:[i64] }:$T, i64:{ *:[i64] }:$F)
/* 68740*/    /*SwitchType*/ 38, MVT::f64,// ->68780
/* 68742*/      OPC_Scope, 11, /*->68755*/ // 3 children in Scope
/* 68744*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 68746*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                      MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (select:{ *:[f64] } i1:{ *:[i1] }:$cond, f64:{ *:[f64] }:$T, f64:{ *:[f64] }:$F) - Complexity = 403
                  // Dst: (SELECT_VSFRC:{ *:[f64] } i1:{ *:[i1] }:$cond, f64:{ *:[f64] }:$T, f64:{ *:[f64] }:$F)
/* 68755*/      /*Scope*/ 11, /*->68767*/
/* 68756*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 68758*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                      MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (select:{ *:[f64] } i1:{ *:[i1] }:$cond, f64:{ *:[f64] }:$T, f64:{ *:[f64] }:$F) - Complexity = 3
                  // Dst: (SELECT_F8:{ *:[f64] } i1:{ *:[i1] }:$cond, f64:{ *:[f64] }:$T, f64:{ *:[f64] }:$F)
/* 68767*/      /*Scope*/ 11, /*->68779*/
/* 68768*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 68770*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                      MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (select:{ *:[f64] } i1:{ *:[i1] }:$cond, f64:{ *:[f64] }:$T, f64:{ *:[f64] }:$F) - Complexity = 3
                  // Dst: (SELECT_SPE:{ *:[f64] } i1:{ *:[i1] }:$cond, f64:{ *:[f64] }:$T, f64:{ *:[f64] }:$F)
/* 68779*/      0, /*End of Scope*/
/* 68780*/    /*SwitchType*/ 38, MVT::f32,// ->68820
/* 68782*/      OPC_Scope, 11, /*->68795*/ // 3 children in Scope
/* 68784*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 68786*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                      MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (select:{ *:[f32] } i1:{ *:[i1] }:$cond, f32:{ *:[f32] }:$T, f32:{ *:[f32] }:$F) - Complexity = 403
                  // Dst: (SELECT_VSSRC:{ *:[f32] } i1:{ *:[i1] }:$cond, f32:{ *:[f32] }:$T, f32:{ *:[f32] }:$F)
/* 68795*/      /*Scope*/ 11, /*->68807*/
/* 68796*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 68798*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                      MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (select:{ *:[f32] } i1:{ *:[i1] }:$cond, f32:{ *:[f32] }:$T, f32:{ *:[f32] }:$F) - Complexity = 3
                  // Dst: (SELECT_F4:{ *:[f32] } i1:{ *:[i1] }:$cond, f32:{ *:[f32] }:$T, f32:{ *:[f32] }:$F)
/* 68807*/      /*Scope*/ 11, /*->68819*/
/* 68808*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 68810*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                      MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (select:{ *:[f32] } i1:{ *:[i1] }:$cond, f32:{ *:[f32] }:$T, f32:{ *:[f32] }:$F) - Complexity = 3
                  // Dst: (SELECT_SPE4:{ *:[f32] } i1:{ *:[i1] }:$cond, f32:{ *:[f32] }:$T, f32:{ *:[f32] }:$F)
/* 68819*/      0, /*End of Scope*/
/* 68820*/    /*SwitchType*/ 11, MVT::f128,// ->68833
/* 68822*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 68824*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[f128] } i1:{ *:[i1] }:$cond, f128:{ *:[f128] }:$T, f128:{ *:[f128] }:$F) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } i1:{ *:[i1] }:$cond, f128:{ *:[f128] }:$T, f128:{ *:[f128] }:$F)
/* 68833*/    /*SwitchType*/ 9, MVT::v4i32,// ->68844
/* 68835*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[v4i32] } i1:{ *:[i1] }:$cond, v4i32:{ *:[v4i32] }:$T, v4i32:{ *:[v4i32] }:$F) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } i1:{ *:[i1] }:$cond, v4i32:{ *:[v4i32] }:$T, v4i32:{ *:[v4i32] }:$F)
/* 68844*/    /*SwitchType*/ 11, MVT::v4i1,// ->68857
/* 68846*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 68848*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[v4i1] } i1:{ *:[i1] }:$cond, v4i1:{ *:[v4i1] }:$T, v4i1:{ *:[v4i1] }:$F) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } i1:{ *:[i1] }:$cond, v4i1:{ *:[v4i1] }:$T, v4i1:{ *:[v4i1] }:$F)
/* 68857*/    /*SwitchType*/ 11, MVT::v2f64,// ->68870
/* 68859*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 68861*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[v2f64] } i1:{ *:[i1] }:$cond, v2f64:{ *:[v2f64] }:$T, v2f64:{ *:[v2f64] }:$F) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } i1:{ *:[i1] }:$cond, v2f64:{ *:[v2f64] }:$T, v2f64:{ *:[v2f64] }:$F)
/* 68870*/    /*SwitchType*/ 11, MVT::v4f64,// ->68883
/* 68872*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 68874*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[v4f64] } i1:{ *:[i1] }:$cond, v4f64:{ *:[v4f64] }:$T, v4f64:{ *:[v4f64] }:$F) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } i1:{ *:[i1] }:$cond, v4f64:{ *:[v4f64] }:$T, v4f64:{ *:[v4f64] }:$F)
/* 68883*/    /*SwitchType*/ 11, MVT::v4f32,// ->68896
/* 68885*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 68887*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (select:{ *:[v4f32] } i1:{ *:[i1] }:$cond, v4f32:{ *:[v4f32] }:$T, v4f32:{ *:[v4f32] }:$F) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } i1:{ *:[i1] }:$cond, v4f32:{ *:[v4f32] }:$T, v4f32:{ *:[v4f32] }:$F)
/* 68896*/    0, // EndSwitchType
/* 68897*/  /*SwitchOpcode*/ 49|128,30/*3889*/, TARGET_VAL(ISD::SELECT_CC),// ->72790
/* 68901*/    OPC_RecordChild0, // #0 = $lhs
/* 68902*/    OPC_CheckChild0Type, MVT::i1,
/* 68904*/    OPC_RecordChild1, // #1 = $rhs
/* 68905*/    OPC_RecordChild2, // #2 = $tval
/* 68906*/    OPC_RecordChild3, // #3 = $fval
/* 68907*/    OPC_MoveChild4,
/* 68908*/    OPC_Scope, 45, /*->68955*/ // 150 children in Scope
/* 68910*/      OPC_CheckCondCode, ISD::SETLT,
/* 68912*/      OPC_MoveParent,
/* 68913*/      OPC_CheckType, MVT::i1,
/* 68915*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 68923*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 68931*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #6
/* 68939*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 68947*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$fval))
/* 68955*/    /*Scope*/ 45, /*->69001*/
/* 68956*/      OPC_CheckCondCode, ISD::SETULT,
/* 68958*/      OPC_MoveParent,
/* 68959*/      OPC_CheckType, MVT::i1,
/* 68961*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 68969*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 68977*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #6
/* 68985*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 68993*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$fval))
/* 69001*/    /*Scope*/ 45, /*->69047*/
/* 69002*/      OPC_CheckCondCode, ISD::SETLE,
/* 69004*/      OPC_MoveParent,
/* 69005*/      OPC_CheckType, MVT::i1,
/* 69007*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69015*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 69023*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #6
/* 69031*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 69039*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$fval))
/* 69047*/    /*Scope*/ 45, /*->69093*/
/* 69048*/      OPC_CheckCondCode, ISD::SETULE,
/* 69050*/      OPC_MoveParent,
/* 69051*/      OPC_CheckType, MVT::i1,
/* 69053*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69061*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 69069*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #6
/* 69077*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 69085*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$fval))
/* 69093*/    /*Scope*/ 45, /*->69139*/
/* 69094*/      OPC_CheckCondCode, ISD::SETEQ,
/* 69096*/      OPC_MoveParent,
/* 69097*/      OPC_CheckType, MVT::i1,
/* 69099*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69107*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 69115*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #6
/* 69123*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 69131*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$fval))
/* 69139*/    /*Scope*/ 45, /*->69185*/
/* 69140*/      OPC_CheckCondCode, ISD::SETGE,
/* 69142*/      OPC_MoveParent,
/* 69143*/      OPC_CheckType, MVT::i1,
/* 69145*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69153*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 69161*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #6
/* 69169*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 69177*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$fval))
/* 69185*/    /*Scope*/ 45, /*->69231*/
/* 69186*/      OPC_CheckCondCode, ISD::SETUGE,
/* 69188*/      OPC_MoveParent,
/* 69189*/      OPC_CheckType, MVT::i1,
/* 69191*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69199*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 69207*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #6
/* 69215*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 69223*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$fval))
/* 69231*/    /*Scope*/ 45, /*->69277*/
/* 69232*/      OPC_CheckCondCode, ISD::SETGT,
/* 69234*/      OPC_MoveParent,
/* 69235*/      OPC_CheckType, MVT::i1,
/* 69237*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69245*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 69253*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #6
/* 69261*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 69269*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$fval))
/* 69277*/    /*Scope*/ 45, /*->69323*/
/* 69278*/      OPC_CheckCondCode, ISD::SETUGT,
/* 69280*/      OPC_MoveParent,
/* 69281*/      OPC_CheckType, MVT::i1,
/* 69283*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69291*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 2,  // Results = #5
/* 69299*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #6
/* 69307*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 3,  // Results = #7
/* 69315*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$tval), (CRAND:{ *:[i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i1] }:$fval))
/* 69323*/    /*Scope*/ 45, /*->69369*/
/* 69324*/      OPC_CheckCondCode, ISD::SETNE,
/* 69326*/      OPC_MoveParent,
/* 69327*/      OPC_CheckType, MVT::i1,
/* 69329*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69337*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 4, 3,  // Results = #5
/* 69345*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #6
/* 69353*/      OPC_EmitNode1, TARGET_VAL(PPC::CRAND), 0,
                    MVT::i1, 2/*#Ops*/, 6, 2,  // Results = #7
/* 69361*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::CROR), 0,
                    MVT::i1, 2/*#Ops*/, 5, 7, 
                // Src: (selectcc:{ *:[i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i1:{ *:[i1] }:$tval, i1:{ *:[i1] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (CROR:{ *:[i1] } (CRAND:{ *:[i1] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$fval), (CRAND:{ *:[i1] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i1] }:$tval))
/* 69369*/    /*Scope*/ 22, /*->69392*/
/* 69370*/      OPC_CheckCondCode, ISD::SETLT,
/* 69372*/      OPC_MoveParent,
/* 69373*/      OPC_CheckType, MVT::i32,
/* 69375*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69383*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69392*/    /*Scope*/ 22, /*->69415*/
/* 69393*/      OPC_CheckCondCode, ISD::SETULT,
/* 69395*/      OPC_MoveParent,
/* 69396*/      OPC_CheckType, MVT::i32,
/* 69398*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69406*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69415*/    /*Scope*/ 22, /*->69438*/
/* 69416*/      OPC_CheckCondCode, ISD::SETLE,
/* 69418*/      OPC_MoveParent,
/* 69419*/      OPC_CheckType, MVT::i32,
/* 69421*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69429*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69438*/    /*Scope*/ 22, /*->69461*/
/* 69439*/      OPC_CheckCondCode, ISD::SETULE,
/* 69441*/      OPC_MoveParent,
/* 69442*/      OPC_CheckType, MVT::i32,
/* 69444*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69452*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69461*/    /*Scope*/ 22, /*->69484*/
/* 69462*/      OPC_CheckCondCode, ISD::SETEQ,
/* 69464*/      OPC_MoveParent,
/* 69465*/      OPC_CheckType, MVT::i32,
/* 69467*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69475*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69484*/    /*Scope*/ 22, /*->69507*/
/* 69485*/      OPC_CheckCondCode, ISD::SETGE,
/* 69487*/      OPC_MoveParent,
/* 69488*/      OPC_CheckType, MVT::i32,
/* 69490*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69498*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69507*/    /*Scope*/ 22, /*->69530*/
/* 69508*/      OPC_CheckCondCode, ISD::SETUGE,
/* 69510*/      OPC_MoveParent,
/* 69511*/      OPC_CheckType, MVT::i32,
/* 69513*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69521*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69530*/    /*Scope*/ 22, /*->69553*/
/* 69531*/      OPC_CheckCondCode, ISD::SETGT,
/* 69533*/      OPC_MoveParent,
/* 69534*/      OPC_CheckType, MVT::i32,
/* 69536*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69544*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69553*/    /*Scope*/ 22, /*->69576*/
/* 69554*/      OPC_CheckCondCode, ISD::SETUGT,
/* 69556*/      OPC_MoveParent,
/* 69557*/      OPC_CheckType, MVT::i32,
/* 69559*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69567*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69576*/    /*Scope*/ 22, /*->69599*/
/* 69577*/      OPC_CheckCondCode, ISD::SETNE,
/* 69579*/      OPC_MoveParent,
/* 69580*/      OPC_CheckType, MVT::i32,
/* 69582*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69590*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I4), 0,
                    MVT::i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i32:{ *:[i32] }:$tval, i32:{ *:[i32] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I4:{ *:[i32] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i32] }:$tval, ?:{ *:[i32] }:$fval)
/* 69599*/    /*Scope*/ 22, /*->69622*/
/* 69600*/      OPC_CheckCondCode, ISD::SETLT,
/* 69602*/      OPC_MoveParent,
/* 69603*/      OPC_CheckType, MVT::i64,
/* 69605*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69613*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69622*/    /*Scope*/ 22, /*->69645*/
/* 69623*/      OPC_CheckCondCode, ISD::SETULT,
/* 69625*/      OPC_MoveParent,
/* 69626*/      OPC_CheckType, MVT::i64,
/* 69628*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69636*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69645*/    /*Scope*/ 22, /*->69668*/
/* 69646*/      OPC_CheckCondCode, ISD::SETLE,
/* 69648*/      OPC_MoveParent,
/* 69649*/      OPC_CheckType, MVT::i64,
/* 69651*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69659*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69668*/    /*Scope*/ 22, /*->69691*/
/* 69669*/      OPC_CheckCondCode, ISD::SETULE,
/* 69671*/      OPC_MoveParent,
/* 69672*/      OPC_CheckType, MVT::i64,
/* 69674*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69682*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69691*/    /*Scope*/ 22, /*->69714*/
/* 69692*/      OPC_CheckCondCode, ISD::SETEQ,
/* 69694*/      OPC_MoveParent,
/* 69695*/      OPC_CheckType, MVT::i64,
/* 69697*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69705*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69714*/    /*Scope*/ 22, /*->69737*/
/* 69715*/      OPC_CheckCondCode, ISD::SETGE,
/* 69717*/      OPC_MoveParent,
/* 69718*/      OPC_CheckType, MVT::i64,
/* 69720*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69728*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69737*/    /*Scope*/ 22, /*->69760*/
/* 69738*/      OPC_CheckCondCode, ISD::SETUGE,
/* 69740*/      OPC_MoveParent,
/* 69741*/      OPC_CheckType, MVT::i64,
/* 69743*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69751*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69760*/    /*Scope*/ 22, /*->69783*/
/* 69761*/      OPC_CheckCondCode, ISD::SETGT,
/* 69763*/      OPC_MoveParent,
/* 69764*/      OPC_CheckType, MVT::i64,
/* 69766*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69774*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69783*/    /*Scope*/ 22, /*->69806*/
/* 69784*/      OPC_CheckCondCode, ISD::SETUGT,
/* 69786*/      OPC_MoveParent,
/* 69787*/      OPC_CheckType, MVT::i64,
/* 69789*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69797*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69806*/    /*Scope*/ 22, /*->69829*/
/* 69807*/      OPC_CheckCondCode, ISD::SETNE,
/* 69809*/      OPC_MoveParent,
/* 69810*/      OPC_CheckType, MVT::i64,
/* 69812*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69820*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_I8), 0,
                    MVT::i64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[i64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, i64:{ *:[i64] }:$tval, i64:{ *:[i64] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_I8:{ *:[i64] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[i64] }:$tval, ?:{ *:[i64] }:$fval)
/* 69829*/    /*Scope*/ 24, /*->69854*/
/* 69830*/      OPC_CheckCondCode, ISD::SETLT,
/* 69832*/      OPC_MoveParent,
/* 69833*/      OPC_CheckType, MVT::f64,
/* 69835*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 69837*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69845*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETLT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 69854*/    /*Scope*/ 24, /*->69879*/
/* 69855*/      OPC_CheckCondCode, ISD::SETULT,
/* 69857*/      OPC_MoveParent,
/* 69858*/      OPC_CheckType, MVT::f64,
/* 69860*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 69862*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69870*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETULT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 69879*/    /*Scope*/ 24, /*->69904*/
/* 69880*/      OPC_CheckCondCode, ISD::SETLE,
/* 69882*/      OPC_MoveParent,
/* 69883*/      OPC_CheckType, MVT::f64,
/* 69885*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 69887*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69895*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETLE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 69904*/    /*Scope*/ 24, /*->69929*/
/* 69905*/      OPC_CheckCondCode, ISD::SETULE,
/* 69907*/      OPC_MoveParent,
/* 69908*/      OPC_CheckType, MVT::f64,
/* 69910*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 69912*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69920*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETULE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 69929*/    /*Scope*/ 24, /*->69954*/
/* 69930*/      OPC_CheckCondCode, ISD::SETEQ,
/* 69932*/      OPC_MoveParent,
/* 69933*/      OPC_CheckType, MVT::f64,
/* 69935*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 69937*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69945*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 69954*/    /*Scope*/ 24, /*->69979*/
/* 69955*/      OPC_CheckCondCode, ISD::SETGE,
/* 69957*/      OPC_MoveParent,
/* 69958*/      OPC_CheckType, MVT::f64,
/* 69960*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 69962*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 69970*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETGE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 69979*/    /*Scope*/ 24, /*->70004*/
/* 69980*/      OPC_CheckCondCode, ISD::SETUGE,
/* 69982*/      OPC_MoveParent,
/* 69983*/      OPC_CheckType, MVT::f64,
/* 69985*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 69987*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 69995*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70004*/    /*Scope*/ 24, /*->70029*/
/* 70005*/      OPC_CheckCondCode, ISD::SETGT,
/* 70007*/      OPC_MoveParent,
/* 70008*/      OPC_CheckType, MVT::f64,
/* 70010*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 70012*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70020*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETGT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70029*/    /*Scope*/ 24, /*->70054*/
/* 70030*/      OPC_CheckCondCode, ISD::SETUGT,
/* 70032*/      OPC_MoveParent,
/* 70033*/      OPC_CheckType, MVT::f64,
/* 70035*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 70037*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70045*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70054*/    /*Scope*/ 24, /*->70079*/
/* 70055*/      OPC_CheckCondCode, ISD::SETNE,
/* 70057*/      OPC_MoveParent,
/* 70058*/      OPC_CheckType, MVT::f64,
/* 70060*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 70062*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70070*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSFRC), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETNE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSFRC:{ *:[f64] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70079*/    /*Scope*/ 24, /*->70104*/
/* 70080*/      OPC_CheckCondCode, ISD::SETLT,
/* 70082*/      OPC_MoveParent,
/* 70083*/      OPC_CheckType, MVT::f32,
/* 70085*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70087*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70095*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETLT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70104*/    /*Scope*/ 24, /*->70129*/
/* 70105*/      OPC_CheckCondCode, ISD::SETULT,
/* 70107*/      OPC_MoveParent,
/* 70108*/      OPC_CheckType, MVT::f32,
/* 70110*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70112*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70120*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETULT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70129*/    /*Scope*/ 24, /*->70154*/
/* 70130*/      OPC_CheckCondCode, ISD::SETLE,
/* 70132*/      OPC_MoveParent,
/* 70133*/      OPC_CheckType, MVT::f32,
/* 70135*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70137*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70145*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETLE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70154*/    /*Scope*/ 24, /*->70179*/
/* 70155*/      OPC_CheckCondCode, ISD::SETULE,
/* 70157*/      OPC_MoveParent,
/* 70158*/      OPC_CheckType, MVT::f32,
/* 70160*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70162*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70170*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETULE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70179*/    /*Scope*/ 24, /*->70204*/
/* 70180*/      OPC_CheckCondCode, ISD::SETEQ,
/* 70182*/      OPC_MoveParent,
/* 70183*/      OPC_CheckType, MVT::f32,
/* 70185*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70187*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70195*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70204*/    /*Scope*/ 24, /*->70229*/
/* 70205*/      OPC_CheckCondCode, ISD::SETGE,
/* 70207*/      OPC_MoveParent,
/* 70208*/      OPC_CheckType, MVT::f32,
/* 70210*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70212*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70220*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETGE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70229*/    /*Scope*/ 24, /*->70254*/
/* 70230*/      OPC_CheckCondCode, ISD::SETUGE,
/* 70232*/      OPC_MoveParent,
/* 70233*/      OPC_CheckType, MVT::f32,
/* 70235*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70237*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70245*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70254*/    /*Scope*/ 24, /*->70279*/
/* 70255*/      OPC_CheckCondCode, ISD::SETGT,
/* 70257*/      OPC_MoveParent,
/* 70258*/      OPC_CheckType, MVT::f32,
/* 70260*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70262*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70270*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETGT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70279*/    /*Scope*/ 24, /*->70304*/
/* 70280*/      OPC_CheckCondCode, ISD::SETUGT,
/* 70282*/      OPC_MoveParent,
/* 70283*/      OPC_CheckType, MVT::f32,
/* 70285*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70287*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70295*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70304*/    /*Scope*/ 24, /*->70329*/
/* 70305*/      OPC_CheckCondCode, ISD::SETNE,
/* 70307*/      OPC_MoveParent,
/* 70308*/      OPC_CheckType, MVT::f32,
/* 70310*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 70312*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70320*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSSRC), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETNE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSSRC:{ *:[f32] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70329*/    /*Scope*/ 24, /*->70354*/
/* 70330*/      OPC_CheckCondCode, ISD::SETLT,
/* 70332*/      OPC_MoveParent,
/* 70333*/      OPC_CheckType, MVT::f32,
/* 70335*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70337*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70345*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70354*/    /*Scope*/ 24, /*->70379*/
/* 70355*/      OPC_CheckCondCode, ISD::SETULT,
/* 70357*/      OPC_MoveParent,
/* 70358*/      OPC_CheckType, MVT::f32,
/* 70360*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70362*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70370*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70379*/    /*Scope*/ 24, /*->70404*/
/* 70380*/      OPC_CheckCondCode, ISD::SETLE,
/* 70382*/      OPC_MoveParent,
/* 70383*/      OPC_CheckType, MVT::f32,
/* 70385*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70387*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70395*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70404*/    /*Scope*/ 24, /*->70429*/
/* 70405*/      OPC_CheckCondCode, ISD::SETULE,
/* 70407*/      OPC_MoveParent,
/* 70408*/      OPC_CheckType, MVT::f32,
/* 70410*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70412*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70420*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70429*/    /*Scope*/ 24, /*->70454*/
/* 70430*/      OPC_CheckCondCode, ISD::SETEQ,
/* 70432*/      OPC_MoveParent,
/* 70433*/      OPC_CheckType, MVT::f32,
/* 70435*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70437*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70445*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70454*/    /*Scope*/ 24, /*->70479*/
/* 70455*/      OPC_CheckCondCode, ISD::SETGE,
/* 70457*/      OPC_MoveParent,
/* 70458*/      OPC_CheckType, MVT::f32,
/* 70460*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70462*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70470*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70479*/    /*Scope*/ 24, /*->70504*/
/* 70480*/      OPC_CheckCondCode, ISD::SETUGE,
/* 70482*/      OPC_MoveParent,
/* 70483*/      OPC_CheckType, MVT::f32,
/* 70485*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70487*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70495*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70504*/    /*Scope*/ 24, /*->70529*/
/* 70505*/      OPC_CheckCondCode, ISD::SETGT,
/* 70507*/      OPC_MoveParent,
/* 70508*/      OPC_CheckType, MVT::f32,
/* 70510*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70512*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70520*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70529*/    /*Scope*/ 24, /*->70554*/
/* 70530*/      OPC_CheckCondCode, ISD::SETUGT,
/* 70532*/      OPC_MoveParent,
/* 70533*/      OPC_CheckType, MVT::f32,
/* 70535*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70537*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70545*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70554*/    /*Scope*/ 24, /*->70579*/
/* 70555*/      OPC_CheckCondCode, ISD::SETNE,
/* 70557*/      OPC_MoveParent,
/* 70558*/      OPC_CheckType, MVT::f32,
/* 70560*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70562*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70570*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE4:{ *:[f32] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70579*/    /*Scope*/ 24, /*->70604*/
/* 70580*/      OPC_CheckCondCode, ISD::SETLT,
/* 70582*/      OPC_MoveParent,
/* 70583*/      OPC_CheckType, MVT::f64,
/* 70585*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70587*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70595*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70604*/    /*Scope*/ 24, /*->70629*/
/* 70605*/      OPC_CheckCondCode, ISD::SETULT,
/* 70607*/      OPC_MoveParent,
/* 70608*/      OPC_CheckType, MVT::f64,
/* 70610*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70612*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70620*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70629*/    /*Scope*/ 24, /*->70654*/
/* 70630*/      OPC_CheckCondCode, ISD::SETLE,
/* 70632*/      OPC_MoveParent,
/* 70633*/      OPC_CheckType, MVT::f64,
/* 70635*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70637*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70645*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70654*/    /*Scope*/ 24, /*->70679*/
/* 70655*/      OPC_CheckCondCode, ISD::SETULE,
/* 70657*/      OPC_MoveParent,
/* 70658*/      OPC_CheckType, MVT::f64,
/* 70660*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70662*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70670*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70679*/    /*Scope*/ 24, /*->70704*/
/* 70680*/      OPC_CheckCondCode, ISD::SETEQ,
/* 70682*/      OPC_MoveParent,
/* 70683*/      OPC_CheckType, MVT::f64,
/* 70685*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70687*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70695*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70704*/    /*Scope*/ 24, /*->70729*/
/* 70705*/      OPC_CheckCondCode, ISD::SETGE,
/* 70707*/      OPC_MoveParent,
/* 70708*/      OPC_CheckType, MVT::f64,
/* 70710*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70712*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70720*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70729*/    /*Scope*/ 24, /*->70754*/
/* 70730*/      OPC_CheckCondCode, ISD::SETUGE,
/* 70732*/      OPC_MoveParent,
/* 70733*/      OPC_CheckType, MVT::f64,
/* 70735*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70737*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70745*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70754*/    /*Scope*/ 24, /*->70779*/
/* 70755*/      OPC_CheckCondCode, ISD::SETGT,
/* 70757*/      OPC_MoveParent,
/* 70758*/      OPC_CheckType, MVT::f64,
/* 70760*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70762*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70770*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70779*/    /*Scope*/ 24, /*->70804*/
/* 70780*/      OPC_CheckCondCode, ISD::SETUGT,
/* 70782*/      OPC_MoveParent,
/* 70783*/      OPC_CheckType, MVT::f64,
/* 70785*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70787*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70795*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70804*/    /*Scope*/ 24, /*->70829*/
/* 70805*/      OPC_CheckCondCode, ISD::SETNE,
/* 70807*/      OPC_MoveParent,
/* 70808*/      OPC_CheckType, MVT::f64,
/* 70810*/      OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 70812*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70820*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_SPE), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_SPE:{ *:[f64] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 70829*/    /*Scope*/ 24, /*->70854*/
/* 70830*/      OPC_CheckCondCode, ISD::SETLT,
/* 70832*/      OPC_MoveParent,
/* 70833*/      OPC_CheckType, MVT::f32,
/* 70835*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 70837*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70845*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70854*/    /*Scope*/ 24, /*->70879*/
/* 70855*/      OPC_CheckCondCode, ISD::SETULT,
/* 70857*/      OPC_MoveParent,
/* 70858*/      OPC_CheckType, MVT::f32,
/* 70860*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 70862*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70870*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70879*/    /*Scope*/ 24, /*->70904*/
/* 70880*/      OPC_CheckCondCode, ISD::SETLE,
/* 70882*/      OPC_MoveParent,
/* 70883*/      OPC_CheckType, MVT::f32,
/* 70885*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 70887*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70895*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70904*/    /*Scope*/ 24, /*->70929*/
/* 70905*/      OPC_CheckCondCode, ISD::SETULE,
/* 70907*/      OPC_MoveParent,
/* 70908*/      OPC_CheckType, MVT::f32,
/* 70910*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 70912*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70920*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70929*/    /*Scope*/ 24, /*->70954*/
/* 70930*/      OPC_CheckCondCode, ISD::SETEQ,
/* 70932*/      OPC_MoveParent,
/* 70933*/      OPC_CheckType, MVT::f32,
/* 70935*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 70937*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70945*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70954*/    /*Scope*/ 24, /*->70979*/
/* 70955*/      OPC_CheckCondCode, ISD::SETGE,
/* 70957*/      OPC_MoveParent,
/* 70958*/      OPC_CheckType, MVT::f32,
/* 70960*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 70962*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 70970*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 70979*/    /*Scope*/ 24, /*->71004*/
/* 70980*/      OPC_CheckCondCode, ISD::SETUGE,
/* 70982*/      OPC_MoveParent,
/* 70983*/      OPC_CheckType, MVT::f32,
/* 70985*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 70987*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 70995*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 71004*/    /*Scope*/ 24, /*->71029*/
/* 71005*/      OPC_CheckCondCode, ISD::SETGT,
/* 71007*/      OPC_MoveParent,
/* 71008*/      OPC_CheckType, MVT::f32,
/* 71010*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71012*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71020*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 71029*/    /*Scope*/ 24, /*->71054*/
/* 71030*/      OPC_CheckCondCode, ISD::SETUGT,
/* 71032*/      OPC_MoveParent,
/* 71033*/      OPC_CheckType, MVT::f32,
/* 71035*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71037*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71045*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 71054*/    /*Scope*/ 24, /*->71079*/
/* 71055*/      OPC_CheckCondCode, ISD::SETNE,
/* 71057*/      OPC_MoveParent,
/* 71058*/      OPC_CheckType, MVT::f32,
/* 71060*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71062*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71070*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F4), 0,
                    MVT::f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f32:{ *:[f32] }:$tval, f32:{ *:[f32] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F4:{ *:[f32] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f32] }:$tval, ?:{ *:[f32] }:$fval)
/* 71079*/    /*Scope*/ 24, /*->71104*/
/* 71080*/      OPC_CheckCondCode, ISD::SETLT,
/* 71082*/      OPC_MoveParent,
/* 71083*/      OPC_CheckType, MVT::f64,
/* 71085*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71087*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71095*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71104*/    /*Scope*/ 24, /*->71129*/
/* 71105*/      OPC_CheckCondCode, ISD::SETULT,
/* 71107*/      OPC_MoveParent,
/* 71108*/      OPC_CheckType, MVT::f64,
/* 71110*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71112*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71120*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71129*/    /*Scope*/ 24, /*->71154*/
/* 71130*/      OPC_CheckCondCode, ISD::SETLE,
/* 71132*/      OPC_MoveParent,
/* 71133*/      OPC_CheckType, MVT::f64,
/* 71135*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71137*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71145*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71154*/    /*Scope*/ 24, /*->71179*/
/* 71155*/      OPC_CheckCondCode, ISD::SETULE,
/* 71157*/      OPC_MoveParent,
/* 71158*/      OPC_CheckType, MVT::f64,
/* 71160*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71162*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71170*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71179*/    /*Scope*/ 24, /*->71204*/
/* 71180*/      OPC_CheckCondCode, ISD::SETEQ,
/* 71182*/      OPC_MoveParent,
/* 71183*/      OPC_CheckType, MVT::f64,
/* 71185*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71187*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71195*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71204*/    /*Scope*/ 24, /*->71229*/
/* 71205*/      OPC_CheckCondCode, ISD::SETGE,
/* 71207*/      OPC_MoveParent,
/* 71208*/      OPC_CheckType, MVT::f64,
/* 71210*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71212*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71220*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71229*/    /*Scope*/ 24, /*->71254*/
/* 71230*/      OPC_CheckCondCode, ISD::SETUGE,
/* 71232*/      OPC_MoveParent,
/* 71233*/      OPC_CheckType, MVT::f64,
/* 71235*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71237*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71245*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71254*/    /*Scope*/ 24, /*->71279*/
/* 71255*/      OPC_CheckCondCode, ISD::SETGT,
/* 71257*/      OPC_MoveParent,
/* 71258*/      OPC_CheckType, MVT::f64,
/* 71260*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71262*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71270*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71279*/    /*Scope*/ 24, /*->71304*/
/* 71280*/      OPC_CheckCondCode, ISD::SETUGT,
/* 71282*/      OPC_MoveParent,
/* 71283*/      OPC_CheckType, MVT::f64,
/* 71285*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71287*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71295*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71304*/    /*Scope*/ 24, /*->71329*/
/* 71305*/      OPC_CheckCondCode, ISD::SETNE,
/* 71307*/      OPC_MoveParent,
/* 71308*/      OPC_CheckType, MVT::f64,
/* 71310*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 71312*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71320*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F8), 0,
                    MVT::f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f64:{ *:[f64] }:$tval, f64:{ *:[f64] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F8:{ *:[f64] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f64] }:$tval, ?:{ *:[f64] }:$fval)
/* 71329*/    /*Scope*/ 22, /*->71352*/
/* 71330*/      OPC_CheckCondCode, ISD::SETLT,
/* 71332*/      OPC_MoveParent,
/* 71333*/      OPC_CheckType, MVT::f128,
/* 71335*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71343*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71352*/    /*Scope*/ 22, /*->71375*/
/* 71353*/      OPC_CheckCondCode, ISD::SETULT,
/* 71355*/      OPC_MoveParent,
/* 71356*/      OPC_CheckType, MVT::f128,
/* 71358*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71366*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71375*/    /*Scope*/ 22, /*->71398*/
/* 71376*/      OPC_CheckCondCode, ISD::SETLE,
/* 71378*/      OPC_MoveParent,
/* 71379*/      OPC_CheckType, MVT::f128,
/* 71381*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71389*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71398*/    /*Scope*/ 22, /*->71421*/
/* 71399*/      OPC_CheckCondCode, ISD::SETULE,
/* 71401*/      OPC_MoveParent,
/* 71402*/      OPC_CheckType, MVT::f128,
/* 71404*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71412*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71421*/    /*Scope*/ 22, /*->71444*/
/* 71422*/      OPC_CheckCondCode, ISD::SETEQ,
/* 71424*/      OPC_MoveParent,
/* 71425*/      OPC_CheckType, MVT::f128,
/* 71427*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71435*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71444*/    /*Scope*/ 22, /*->71467*/
/* 71445*/      OPC_CheckCondCode, ISD::SETGE,
/* 71447*/      OPC_MoveParent,
/* 71448*/      OPC_CheckType, MVT::f128,
/* 71450*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71458*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71467*/    /*Scope*/ 22, /*->71490*/
/* 71468*/      OPC_CheckCondCode, ISD::SETUGE,
/* 71470*/      OPC_MoveParent,
/* 71471*/      OPC_CheckType, MVT::f128,
/* 71473*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71481*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71490*/    /*Scope*/ 22, /*->71513*/
/* 71491*/      OPC_CheckCondCode, ISD::SETGT,
/* 71493*/      OPC_MoveParent,
/* 71494*/      OPC_CheckType, MVT::f128,
/* 71496*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71504*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71513*/    /*Scope*/ 22, /*->71536*/
/* 71514*/      OPC_CheckCondCode, ISD::SETUGT,
/* 71516*/      OPC_MoveParent,
/* 71517*/      OPC_CheckType, MVT::f128,
/* 71519*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71527*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71536*/    /*Scope*/ 22, /*->71559*/
/* 71537*/      OPC_CheckCondCode, ISD::SETNE,
/* 71539*/      OPC_MoveParent,
/* 71540*/      OPC_CheckType, MVT::f128,
/* 71542*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71550*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_F16), 0,
                    MVT::f128, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[f128] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, f128:{ *:[f128] }:$tval, f128:{ *:[f128] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_F16:{ *:[f128] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[f128] }:$tval, ?:{ *:[f128] }:$fval)
/* 71559*/    /*Scope*/ 24, /*->71584*/
/* 71560*/      OPC_CheckCondCode, ISD::SETLT,
/* 71562*/      OPC_MoveParent,
/* 71563*/      OPC_CheckType, MVT::v4i1,
/* 71565*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71567*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71575*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71584*/    /*Scope*/ 24, /*->71609*/
/* 71585*/      OPC_CheckCondCode, ISD::SETULT,
/* 71587*/      OPC_MoveParent,
/* 71588*/      OPC_CheckType, MVT::v4i1,
/* 71590*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71592*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71600*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71609*/    /*Scope*/ 24, /*->71634*/
/* 71610*/      OPC_CheckCondCode, ISD::SETLE,
/* 71612*/      OPC_MoveParent,
/* 71613*/      OPC_CheckType, MVT::v4i1,
/* 71615*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71617*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71625*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71634*/    /*Scope*/ 24, /*->71659*/
/* 71635*/      OPC_CheckCondCode, ISD::SETULE,
/* 71637*/      OPC_MoveParent,
/* 71638*/      OPC_CheckType, MVT::v4i1,
/* 71640*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71642*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71650*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71659*/    /*Scope*/ 24, /*->71684*/
/* 71660*/      OPC_CheckCondCode, ISD::SETEQ,
/* 71662*/      OPC_MoveParent,
/* 71663*/      OPC_CheckType, MVT::v4i1,
/* 71665*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71667*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71675*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71684*/    /*Scope*/ 24, /*->71709*/
/* 71685*/      OPC_CheckCondCode, ISD::SETGE,
/* 71687*/      OPC_MoveParent,
/* 71688*/      OPC_CheckType, MVT::v4i1,
/* 71690*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71692*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71700*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71709*/    /*Scope*/ 24, /*->71734*/
/* 71710*/      OPC_CheckCondCode, ISD::SETUGE,
/* 71712*/      OPC_MoveParent,
/* 71713*/      OPC_CheckType, MVT::v4i1,
/* 71715*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71717*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71725*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71734*/    /*Scope*/ 24, /*->71759*/
/* 71735*/      OPC_CheckCondCode, ISD::SETGT,
/* 71737*/      OPC_MoveParent,
/* 71738*/      OPC_CheckType, MVT::v4i1,
/* 71740*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71742*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71750*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71759*/    /*Scope*/ 24, /*->71784*/
/* 71760*/      OPC_CheckCondCode, ISD::SETUGT,
/* 71762*/      OPC_MoveParent,
/* 71763*/      OPC_CheckType, MVT::v4i1,
/* 71765*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71767*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71775*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71784*/    /*Scope*/ 24, /*->71809*/
/* 71785*/      OPC_CheckCondCode, ISD::SETNE,
/* 71787*/      OPC_MoveParent,
/* 71788*/      OPC_CheckType, MVT::v4i1,
/* 71790*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 71792*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71800*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QBRC), 0,
                    MVT::v4i1, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i1] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i1:{ *:[v4i1] }:$tval, v4i1:{ *:[v4i1] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QBRC:{ *:[v4i1] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i1] }:$tval, ?:{ *:[v4i1] }:$fval)
/* 71809*/    /*Scope*/ 22, /*->71832*/
/* 71810*/      OPC_CheckCondCode, ISD::SETLT,
/* 71812*/      OPC_MoveParent,
/* 71813*/      OPC_CheckType, MVT::v4i32,
/* 71815*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71823*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71832*/    /*Scope*/ 22, /*->71855*/
/* 71833*/      OPC_CheckCondCode, ISD::SETULT,
/* 71835*/      OPC_MoveParent,
/* 71836*/      OPC_CheckType, MVT::v4i32,
/* 71838*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71846*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71855*/    /*Scope*/ 22, /*->71878*/
/* 71856*/      OPC_CheckCondCode, ISD::SETLE,
/* 71858*/      OPC_MoveParent,
/* 71859*/      OPC_CheckType, MVT::v4i32,
/* 71861*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71869*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71878*/    /*Scope*/ 22, /*->71901*/
/* 71879*/      OPC_CheckCondCode, ISD::SETULE,
/* 71881*/      OPC_MoveParent,
/* 71882*/      OPC_CheckType, MVT::v4i32,
/* 71884*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71892*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71901*/    /*Scope*/ 22, /*->71924*/
/* 71902*/      OPC_CheckCondCode, ISD::SETEQ,
/* 71904*/      OPC_MoveParent,
/* 71905*/      OPC_CheckType, MVT::v4i32,
/* 71907*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71915*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71924*/    /*Scope*/ 22, /*->71947*/
/* 71925*/      OPC_CheckCondCode, ISD::SETGE,
/* 71927*/      OPC_MoveParent,
/* 71928*/      OPC_CheckType, MVT::v4i32,
/* 71930*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71938*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71947*/    /*Scope*/ 22, /*->71970*/
/* 71948*/      OPC_CheckCondCode, ISD::SETUGE,
/* 71950*/      OPC_MoveParent,
/* 71951*/      OPC_CheckType, MVT::v4i32,
/* 71953*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 71961*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71970*/    /*Scope*/ 22, /*->71993*/
/* 71971*/      OPC_CheckCondCode, ISD::SETGT,
/* 71973*/      OPC_MoveParent,
/* 71974*/      OPC_CheckType, MVT::v4i32,
/* 71976*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 71984*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 71993*/    /*Scope*/ 22, /*->72016*/
/* 71994*/      OPC_CheckCondCode, ISD::SETUGT,
/* 71996*/      OPC_MoveParent,
/* 71997*/      OPC_CheckType, MVT::v4i32,
/* 71999*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72007*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 72016*/    /*Scope*/ 22, /*->72039*/
/* 72017*/      OPC_CheckCondCode, ISD::SETNE,
/* 72019*/      OPC_MoveParent,
/* 72020*/      OPC_CheckType, MVT::v4i32,
/* 72022*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72030*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VRRC), 0,
                    MVT::v4i32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4i32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4i32:{ *:[v4i32] }:$tval, v4i32:{ *:[v4i32] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_VRRC:{ *:[v4i32] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4i32] }:$tval, ?:{ *:[v4i32] }:$fval)
/* 72039*/    /*Scope*/ 24, /*->72064*/
/* 72040*/      OPC_CheckCondCode, ISD::SETLT,
/* 72042*/      OPC_MoveParent,
/* 72043*/      OPC_CheckType, MVT::v2f64,
/* 72045*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72047*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72055*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETLT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72064*/    /*Scope*/ 24, /*->72089*/
/* 72065*/      OPC_CheckCondCode, ISD::SETULT,
/* 72067*/      OPC_MoveParent,
/* 72068*/      OPC_CheckType, MVT::v2f64,
/* 72070*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72072*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72080*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETULT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72089*/    /*Scope*/ 24, /*->72114*/
/* 72090*/      OPC_CheckCondCode, ISD::SETLE,
/* 72092*/      OPC_MoveParent,
/* 72093*/      OPC_CheckType, MVT::v2f64,
/* 72095*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72097*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72105*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETLE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72114*/    /*Scope*/ 24, /*->72139*/
/* 72115*/      OPC_CheckCondCode, ISD::SETULE,
/* 72117*/      OPC_MoveParent,
/* 72118*/      OPC_CheckType, MVT::v2f64,
/* 72120*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72122*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72130*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETULE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72139*/    /*Scope*/ 24, /*->72164*/
/* 72140*/      OPC_CheckCondCode, ISD::SETEQ,
/* 72142*/      OPC_MoveParent,
/* 72143*/      OPC_CheckType, MVT::v2f64,
/* 72145*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72147*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72155*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72164*/    /*Scope*/ 24, /*->72189*/
/* 72165*/      OPC_CheckCondCode, ISD::SETGE,
/* 72167*/      OPC_MoveParent,
/* 72168*/      OPC_CheckType, MVT::v2f64,
/* 72170*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72172*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72180*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETGE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72189*/    /*Scope*/ 24, /*->72214*/
/* 72190*/      OPC_CheckCondCode, ISD::SETUGE,
/* 72192*/      OPC_MoveParent,
/* 72193*/      OPC_CheckType, MVT::v2f64,
/* 72195*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72197*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72205*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72214*/    /*Scope*/ 24, /*->72239*/
/* 72215*/      OPC_CheckCondCode, ISD::SETGT,
/* 72217*/      OPC_MoveParent,
/* 72218*/      OPC_CheckType, MVT::v2f64,
/* 72220*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72222*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72230*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETGT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72239*/    /*Scope*/ 24, /*->72264*/
/* 72240*/      OPC_CheckCondCode, ISD::SETUGT,
/* 72242*/      OPC_MoveParent,
/* 72243*/      OPC_CheckType, MVT::v2f64,
/* 72245*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72247*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72255*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72264*/    /*Scope*/ 24, /*->72289*/
/* 72265*/      OPC_CheckCondCode, ISD::SETNE,
/* 72267*/      OPC_MoveParent,
/* 72268*/      OPC_CheckType, MVT::v2f64,
/* 72270*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 72272*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72280*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_VSRC), 0,
                    MVT::v2f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v2f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v2f64:{ *:[v2f64] }:$tval, v2f64:{ *:[v2f64] }:$fval, SETNE:{ *:[Other] }) - Complexity = 403
                // Dst: (SELECT_VSRC:{ *:[v2f64] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v2f64] }:$tval, ?:{ *:[v2f64] }:$fval)
/* 72289*/    /*Scope*/ 24, /*->72314*/
/* 72290*/      OPC_CheckCondCode, ISD::SETLT,
/* 72292*/      OPC_MoveParent,
/* 72293*/      OPC_CheckType, MVT::v4f64,
/* 72295*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72297*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72305*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72314*/    /*Scope*/ 24, /*->72339*/
/* 72315*/      OPC_CheckCondCode, ISD::SETULT,
/* 72317*/      OPC_MoveParent,
/* 72318*/      OPC_CheckType, MVT::v4f64,
/* 72320*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72322*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72330*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72339*/    /*Scope*/ 24, /*->72364*/
/* 72340*/      OPC_CheckCondCode, ISD::SETLE,
/* 72342*/      OPC_MoveParent,
/* 72343*/      OPC_CheckType, MVT::v4f64,
/* 72345*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72347*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72355*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72364*/    /*Scope*/ 24, /*->72389*/
/* 72365*/      OPC_CheckCondCode, ISD::SETULE,
/* 72367*/      OPC_MoveParent,
/* 72368*/      OPC_CheckType, MVT::v4f64,
/* 72370*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72372*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72380*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72389*/    /*Scope*/ 24, /*->72414*/
/* 72390*/      OPC_CheckCondCode, ISD::SETEQ,
/* 72392*/      OPC_MoveParent,
/* 72393*/      OPC_CheckType, MVT::v4f64,
/* 72395*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72397*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72405*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72414*/    /*Scope*/ 24, /*->72439*/
/* 72415*/      OPC_CheckCondCode, ISD::SETGE,
/* 72417*/      OPC_MoveParent,
/* 72418*/      OPC_CheckType, MVT::v4f64,
/* 72420*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72422*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72430*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72439*/    /*Scope*/ 24, /*->72464*/
/* 72440*/      OPC_CheckCondCode, ISD::SETUGE,
/* 72442*/      OPC_MoveParent,
/* 72443*/      OPC_CheckType, MVT::v4f64,
/* 72445*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72447*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72455*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72464*/    /*Scope*/ 24, /*->72489*/
/* 72465*/      OPC_CheckCondCode, ISD::SETGT,
/* 72467*/      OPC_MoveParent,
/* 72468*/      OPC_CheckType, MVT::v4f64,
/* 72470*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72472*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72480*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72489*/    /*Scope*/ 24, /*->72514*/
/* 72490*/      OPC_CheckCondCode, ISD::SETUGT,
/* 72492*/      OPC_MoveParent,
/* 72493*/      OPC_CheckType, MVT::v4f64,
/* 72495*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72497*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72505*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72514*/    /*Scope*/ 24, /*->72539*/
/* 72515*/      OPC_CheckCondCode, ISD::SETNE,
/* 72517*/      OPC_MoveParent,
/* 72518*/      OPC_CheckType, MVT::v4f64,
/* 72520*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72522*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72530*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QFRC), 0,
                    MVT::v4f64, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f64] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f64:{ *:[v4f64] }:$tval, v4f64:{ *:[v4f64] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QFRC:{ *:[v4f64] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f64] }:$tval, ?:{ *:[v4f64] }:$fval)
/* 72539*/    /*Scope*/ 24, /*->72564*/
/* 72540*/      OPC_CheckCondCode, ISD::SETLT,
/* 72542*/      OPC_MoveParent,
/* 72543*/      OPC_CheckType, MVT::v4f32,
/* 72545*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72547*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72555*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETLT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72564*/    /*Scope*/ 24, /*->72589*/
/* 72565*/      OPC_CheckCondCode, ISD::SETULT,
/* 72567*/      OPC_MoveParent,
/* 72568*/      OPC_CheckType, MVT::v4f32,
/* 72570*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72572*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72580*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETULT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72589*/    /*Scope*/ 24, /*->72614*/
/* 72590*/      OPC_CheckCondCode, ISD::SETLE,
/* 72592*/      OPC_MoveParent,
/* 72593*/      OPC_CheckType, MVT::v4f32,
/* 72595*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72597*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72605*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETLE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72614*/    /*Scope*/ 24, /*->72639*/
/* 72615*/      OPC_CheckCondCode, ISD::SETULE,
/* 72617*/      OPC_MoveParent,
/* 72618*/      OPC_CheckType, MVT::v4f32,
/* 72620*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72622*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72630*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETULE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72639*/    /*Scope*/ 24, /*->72664*/
/* 72640*/      OPC_CheckCondCode, ISD::SETEQ,
/* 72642*/      OPC_MoveParent,
/* 72643*/      OPC_CheckType, MVT::v4f32,
/* 72645*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72647*/      OPC_EmitNode1, TARGET_VAL(PPC::CREQV), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72655*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETEQ:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CREQV:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72664*/    /*Scope*/ 24, /*->72689*/
/* 72665*/      OPC_CheckCondCode, ISD::SETGE,
/* 72667*/      OPC_MoveParent,
/* 72668*/      OPC_CheckType, MVT::v4f32,
/* 72670*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72672*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72680*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72689*/    /*Scope*/ 24, /*->72714*/
/* 72690*/      OPC_CheckCondCode, ISD::SETUGE,
/* 72692*/      OPC_MoveParent,
/* 72693*/      OPC_CheckType, MVT::v4f32,
/* 72695*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72697*/      OPC_EmitNode1, TARGET_VAL(PPC::CRORC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72705*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETUGE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRORC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72714*/    /*Scope*/ 24, /*->72739*/
/* 72715*/      OPC_CheckCondCode, ISD::SETGT,
/* 72717*/      OPC_MoveParent,
/* 72718*/      OPC_CheckType, MVT::v4f32,
/* 72720*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72722*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 1, 0,  // Results = #4
/* 72730*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$rhs, ?:{ *:[i1] }:$lhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72739*/    /*Scope*/ 24, /*->72764*/
/* 72740*/      OPC_CheckCondCode, ISD::SETUGT,
/* 72742*/      OPC_MoveParent,
/* 72743*/      OPC_CheckType, MVT::v4f32,
/* 72745*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72747*/      OPC_EmitNode1, TARGET_VAL(PPC::CRANDC), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72755*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETUGT:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRANDC:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72764*/    /*Scope*/ 24, /*->72789*/
/* 72765*/      OPC_CheckCondCode, ISD::SETNE,
/* 72767*/      OPC_MoveParent,
/* 72768*/      OPC_CheckType, MVT::v4f32,
/* 72770*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 72772*/      OPC_EmitNode1, TARGET_VAL(PPC::CRXOR), 0,
                    MVT::i1, 2/*#Ops*/, 0, 1,  // Results = #4
/* 72780*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::SELECT_QSRC), 0,
                    MVT::v4f32, 3/*#Ops*/, 4, 2, 3, 
                // Src: (selectcc:{ *:[v4f32] } i1:{ *:[i1] }:$lhs, i1:{ *:[i1] }:$rhs, v4f32:{ *:[v4f32] }:$tval, v4f32:{ *:[v4f32] }:$fval, SETNE:{ *:[Other] }) - Complexity = 3
                // Dst: (SELECT_QSRC:{ *:[v4f32] } (CRXOR:{ *:[i1] } ?:{ *:[i1] }:$lhs, ?:{ *:[i1] }:$rhs), ?:{ *:[v4f32] }:$tval, ?:{ *:[v4f32] }:$fval)
/* 72789*/    0, /*End of Scope*/
/* 72790*/  /*SwitchOpcode*/ 28|128,107/*13724*/, TARGET_VAL(ISD::BITREVERSE),// ->86518
/* 72794*/    OPC_RecordChild0, // #0 = $A
/* 72795*/    OPC_SwitchType /*2 cases */, 6|128,21/*2694*/, MVT::i32,// ->75493
/* 72799*/      OPC_EmitInteger, MVT::i32, 31, 
/* 72802*/      OPC_EmitInteger, MVT::i32, 1, 
/* 72805*/      OPC_EmitInteger, MVT::i32, 31, 
/* 72808*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 1, 2, 3,  // Results = #4
/* 72818*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 72823*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 5,  // Results = #6
/* 72830*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 72835*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 6, 7,  // Results = #8
/* 72843*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 4, 8,  // Results = #9
/* 72851*/      OPC_EmitInteger, MVT::i32, 1, 
/* 72854*/      OPC_EmitInteger, MVT::i32, 0, 
/* 72857*/      OPC_EmitInteger, MVT::i32, 30, 
/* 72860*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 10, 11, 12,  // Results = #13
/* 72870*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 72875*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 14,  // Results = #15
/* 72882*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 72887*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 15, 16,  // Results = #17
/* 72895*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 13, 17,  // Results = #18
/* 72903*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 9, 18,  // Results = #19
/* 72911*/      OPC_EmitInteger, MVT::i32, 30, 
/* 72914*/      OPC_EmitInteger, MVT::i32, 2, 
/* 72917*/      OPC_EmitInteger, MVT::i32, 31, 
/* 72920*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 19, 20, 21, 22,  // Results = #23
/* 72930*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 72934*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 24,  // Results = #25
/* 72941*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 72945*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 25, 26,  // Results = #27
/* 72953*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 23, 27,  // Results = #28
/* 72961*/      OPC_EmitInteger, MVT::i32, 31, 
/* 72964*/      OPC_EmitInteger, MVT::i32, 1, 
/* 72967*/      OPC_EmitInteger, MVT::i32, 31, 
/* 72970*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 29, 30, 31,  // Results = #32
/* 72980*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 72985*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 33,  // Results = #34
/* 72992*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 72997*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 34, 35,  // Results = #36
/* 73005*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 32, 36,  // Results = #37
/* 73013*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73016*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73019*/      OPC_EmitInteger, MVT::i32, 30, 
/* 73022*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 38, 39, 40,  // Results = #41
/* 73032*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73037*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 42,  // Results = #43
/* 73044*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73049*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 43, 44,  // Results = #45
/* 73057*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 41, 45,  // Results = #46
/* 73065*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 37, 46,  // Results = #47
/* 73073*/      OPC_EmitInteger, MVT::i32, 2, 
/* 73076*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73079*/      OPC_EmitInteger, MVT::i32, 29, 
/* 73082*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 47, 48, 49, 50,  // Results = #51
/* 73092*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 73097*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 52,  // Results = #53
/* 73104*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 73109*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 53, 54,  // Results = #55
/* 73117*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 51, 55,  // Results = #56
/* 73125*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 28, 56,  // Results = #57
/* 73133*/      OPC_EmitInteger, MVT::i32, 28, 
/* 73136*/      OPC_EmitInteger, MVT::i32, 4, 
/* 73139*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73142*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 57, 58, 59, 60,  // Results = #61
/* 73152*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 73156*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 62,  // Results = #63
/* 73163*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 73167*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 63, 64,  // Results = #65
/* 73175*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 61, 65,  // Results = #66
/* 73183*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73186*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73189*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73192*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 67, 68, 69,  // Results = #70
/* 73202*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73207*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 71,  // Results = #72
/* 73214*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73219*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 72, 73,  // Results = #74
/* 73227*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 70, 74,  // Results = #75
/* 73235*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73238*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73241*/      OPC_EmitInteger, MVT::i32, 30, 
/* 73244*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 76, 77, 78,  // Results = #79
/* 73254*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73259*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 80,  // Results = #81
/* 73266*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73271*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 81, 82,  // Results = #83
/* 73279*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 79, 83,  // Results = #84
/* 73287*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 75, 84,  // Results = #85
/* 73295*/      OPC_EmitInteger, MVT::i32, 30, 
/* 73298*/      OPC_EmitInteger, MVT::i32, 2, 
/* 73301*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73304*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 85, 86, 87, 88,  // Results = #89
/* 73314*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 73318*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 90,  // Results = #91
/* 73325*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 73329*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 91, 92,  // Results = #93
/* 73337*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 89, 93,  // Results = #94
/* 73345*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73348*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73351*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73354*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 95, 96, 97,  // Results = #98
/* 73364*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73369*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 99,  // Results = #100
/* 73376*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73381*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 100, 101,  // Results = #102
/* 73389*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 98, 102,  // Results = #103
/* 73397*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73400*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73403*/      OPC_EmitInteger, MVT::i32, 30, 
/* 73406*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 104, 105, 106,  // Results = #107
/* 73416*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73421*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 108,  // Results = #109
/* 73428*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73433*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 109, 110,  // Results = #111
/* 73441*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 107, 111,  // Results = #112
/* 73449*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 103, 112,  // Results = #113
/* 73457*/      OPC_EmitInteger, MVT::i32, 2, 
/* 73460*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73463*/      OPC_EmitInteger, MVT::i32, 29, 
/* 73466*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 113, 114, 115, 116,  // Results = #117
/* 73476*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 73481*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 118,  // Results = #119
/* 73488*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 73493*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 119, 120,  // Results = #121
/* 73501*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 117, 121,  // Results = #122
/* 73509*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 94, 122,  // Results = #123
/* 73517*/      OPC_EmitInteger, MVT::i32, 4, 
/* 73520*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73523*/      OPC_EmitInteger, MVT::i32, 27, 
/* 73526*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 123, 124, 125, 126,  // Results = #127
/* 73536*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 73541*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 0|128,1/*128*/,  // Results = #129
/* 73549*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 73554*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 1|128,1/*129*/, 2|128,1/*130*/,  // Results = #131
/* 73564*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 127, 3|128,1/*131*/,  // Results = #132
/* 73573*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 66, 4|128,1/*132*/,  // Results = #133
/* 73582*/      OPC_EmitInteger, MVT::i32, 24, 
/* 73585*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73588*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73591*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 5|128,1/*133*/, 6|128,1/*134*/, 7|128,1/*135*/, 8|128,1/*136*/,  // Results = #137
/* 73605*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73608*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73611*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73614*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 10|128,1/*138*/, 11|128,1/*139*/, 12|128,1/*140*/,  // Results = #141
/* 73627*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73632*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 14|128,1/*142*/,  // Results = #143
/* 73640*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73645*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 15|128,1/*143*/, 16|128,1/*144*/,  // Results = #145
/* 73655*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 13|128,1/*141*/, 17|128,1/*145*/,  // Results = #146
/* 73665*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73668*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73671*/      OPC_EmitInteger, MVT::i32, 30, 
/* 73674*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 19|128,1/*147*/, 20|128,1/*148*/, 21|128,1/*149*/,  // Results = #150
/* 73687*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73692*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 23|128,1/*151*/,  // Results = #152
/* 73700*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73705*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 24|128,1/*152*/, 25|128,1/*153*/,  // Results = #154
/* 73715*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 22|128,1/*150*/, 26|128,1/*154*/,  // Results = #155
/* 73725*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 18|128,1/*146*/, 27|128,1/*155*/,  // Results = #156
/* 73735*/      OPC_EmitInteger, MVT::i32, 30, 
/* 73738*/      OPC_EmitInteger, MVT::i32, 2, 
/* 73741*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73744*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 28|128,1/*156*/, 29|128,1/*157*/, 30|128,1/*158*/, 31|128,1/*159*/,  // Results = #160
/* 73758*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 73762*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 33|128,1/*161*/,  // Results = #162
/* 73770*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 73774*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 34|128,1/*162*/, 35|128,1/*163*/,  // Results = #164
/* 73784*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 32|128,1/*160*/, 36|128,1/*164*/,  // Results = #165
/* 73794*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73797*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73800*/      OPC_EmitInteger, MVT::i32, 31, 
/* 73803*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 38|128,1/*166*/, 39|128,1/*167*/, 40|128,1/*168*/,  // Results = #169
/* 73816*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73821*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 42|128,1/*170*/,  // Results = #171
/* 73829*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 73834*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 43|128,1/*171*/, 44|128,1/*172*/,  // Results = #173
/* 73844*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 41|128,1/*169*/, 45|128,1/*173*/,  // Results = #174
/* 73854*/      OPC_EmitInteger, MVT::i32, 1, 
/* 73857*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73860*/      OPC_EmitInteger, MVT::i32, 30, 
/* 73863*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 47|128,1/*175*/, 48|128,1/*176*/, 49|128,1/*177*/,  // Results = #178
/* 73876*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73881*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 51|128,1/*179*/,  // Results = #180
/* 73889*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 73894*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 52|128,1/*180*/, 53|128,1/*181*/,  // Results = #182
/* 73904*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 50|128,1/*178*/, 54|128,1/*182*/,  // Results = #183
/* 73914*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 46|128,1/*174*/, 55|128,1/*183*/,  // Results = #184
/* 73924*/      OPC_EmitInteger, MVT::i32, 2, 
/* 73927*/      OPC_EmitInteger, MVT::i32, 0, 
/* 73930*/      OPC_EmitInteger, MVT::i32, 29, 
/* 73933*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 56|128,1/*184*/, 57|128,1/*185*/, 58|128,1/*186*/, 59|128,1/*187*/,  // Results = #188
/* 73947*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 73952*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 61|128,1/*189*/,  // Results = #190
/* 73960*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 73965*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 62|128,1/*190*/, 63|128,1/*191*/,  // Results = #192
/* 73975*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 60|128,1/*188*/, 64|128,1/*192*/,  // Results = #193
/* 73985*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 37|128,1/*165*/, 65|128,1/*193*/,  // Results = #194
/* 73995*/      OPC_EmitInteger, MVT::i32, 28, 
/* 73998*/      OPC_EmitInteger, MVT::i32, 4, 
/* 74001*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74004*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 66|128,1/*194*/, 67|128,1/*195*/, 68|128,1/*196*/, 69|128,1/*197*/,  // Results = #198
/* 74018*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 74022*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 71|128,1/*199*/,  // Results = #200
/* 74030*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 74034*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 72|128,1/*200*/, 73|128,1/*201*/,  // Results = #202
/* 74044*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 70|128,1/*198*/, 74|128,1/*202*/,  // Results = #203
/* 74054*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74057*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74060*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74063*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 76|128,1/*204*/, 77|128,1/*205*/, 78|128,1/*206*/,  // Results = #207
/* 74076*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74081*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 80|128,1/*208*/,  // Results = #209
/* 74089*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74094*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 81|128,1/*209*/, 82|128,1/*210*/,  // Results = #211
/* 74104*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 79|128,1/*207*/, 83|128,1/*211*/,  // Results = #212
/* 74114*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74117*/      OPC_EmitInteger, MVT::i32, 0, 
/* 74120*/      OPC_EmitInteger, MVT::i32, 30, 
/* 74123*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 85|128,1/*213*/, 86|128,1/*214*/, 87|128,1/*215*/,  // Results = #216
/* 74136*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74141*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 89|128,1/*217*/,  // Results = #218
/* 74149*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74154*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 90|128,1/*218*/, 91|128,1/*219*/,  // Results = #220
/* 74164*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 88|128,1/*216*/, 92|128,1/*220*/,  // Results = #221
/* 74174*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 84|128,1/*212*/, 93|128,1/*221*/,  // Results = #222
/* 74184*/      OPC_EmitInteger, MVT::i32, 30, 
/* 74187*/      OPC_EmitInteger, MVT::i32, 2, 
/* 74190*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74193*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 94|128,1/*222*/, 95|128,1/*223*/, 96|128,1/*224*/, 97|128,1/*225*/,  // Results = #226
/* 74207*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 74211*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 99|128,1/*227*/,  // Results = #228
/* 74219*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 74223*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 100|128,1/*228*/, 101|128,1/*229*/,  // Results = #230
/* 74233*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 98|128,1/*226*/, 102|128,1/*230*/,  // Results = #231
/* 74243*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74246*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74249*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74252*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 104|128,1/*232*/, 105|128,1/*233*/, 106|128,1/*234*/,  // Results = #235
/* 74265*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74270*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 108|128,1/*236*/,  // Results = #237
/* 74278*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74283*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 109|128,1/*237*/, 110|128,1/*238*/,  // Results = #239
/* 74293*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 107|128,1/*235*/, 111|128,1/*239*/,  // Results = #240
/* 74303*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74306*/      OPC_EmitInteger, MVT::i32, 0, 
/* 74309*/      OPC_EmitInteger, MVT::i32, 30, 
/* 74312*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 113|128,1/*241*/, 114|128,1/*242*/, 115|128,1/*243*/,  // Results = #244
/* 74325*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74330*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 117|128,1/*245*/,  // Results = #246
/* 74338*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74343*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 118|128,1/*246*/, 119|128,1/*247*/,  // Results = #248
/* 74353*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 116|128,1/*244*/, 120|128,1/*248*/,  // Results = #249
/* 74363*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 112|128,1/*240*/, 121|128,1/*249*/,  // Results = #250
/* 74373*/      OPC_EmitInteger, MVT::i32, 2, 
/* 74376*/      OPC_EmitInteger, MVT::i32, 0, 
/* 74379*/      OPC_EmitInteger, MVT::i32, 29, 
/* 74382*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 122|128,1/*250*/, 123|128,1/*251*/, 124|128,1/*252*/, 125|128,1/*253*/,  // Results = #254
/* 74396*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 74401*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 127|128,1/*255*/,  // Results = #256
/* 74409*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 74414*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 0|128,2/*256*/, 1|128,2/*257*/,  // Results = #258
/* 74424*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 126|128,1/*254*/, 2|128,2/*258*/,  // Results = #259
/* 74434*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 103|128,1/*231*/, 3|128,2/*259*/,  // Results = #260
/* 74444*/      OPC_EmitInteger, MVT::i32, 4, 
/* 74447*/      OPC_EmitInteger, MVT::i32, 0, 
/* 74450*/      OPC_EmitInteger, MVT::i32, 27, 
/* 74453*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 4|128,2/*260*/, 5|128,2/*261*/, 6|128,2/*262*/, 7|128,2/*263*/,  // Results = #264
/* 74467*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 74472*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 9|128,2/*265*/,  // Results = #266
/* 74480*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 74485*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 10|128,2/*266*/, 11|128,2/*267*/,  // Results = #268
/* 74495*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 8|128,2/*264*/, 12|128,2/*268*/,  // Results = #269
/* 74505*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 75|128,1/*203*/, 13|128,2/*269*/,  // Results = #270
/* 74515*/      OPC_EmitInteger, MVT::i32, 8, 
/* 74518*/      OPC_EmitInteger, MVT::i32, 8, 
/* 74521*/      OPC_EmitInteger, MVT::i32, 15, 
/* 74524*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWIMI), 0,
                    MVT::i32, 5/*#Ops*/, 9|128,1/*137*/, 14|128,2/*270*/, 15|128,2/*271*/, 16|128,2/*272*/, 17|128,2/*273*/,  // Results = #274
/* 74540*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74543*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74546*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74549*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 19|128,2/*275*/, 20|128,2/*276*/, 21|128,2/*277*/,  // Results = #278
/* 74562*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74567*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 23|128,2/*279*/,  // Results = #280
/* 74575*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74580*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 24|128,2/*280*/, 25|128,2/*281*/,  // Results = #282
/* 74590*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 22|128,2/*278*/, 26|128,2/*282*/,  // Results = #283
/* 74600*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74603*/      OPC_EmitInteger, MVT::i32, 0, 
/* 74606*/      OPC_EmitInteger, MVT::i32, 30, 
/* 74609*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 28|128,2/*284*/, 29|128,2/*285*/, 30|128,2/*286*/,  // Results = #287
/* 74622*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74627*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 32|128,2/*288*/,  // Results = #289
/* 74635*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74640*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 33|128,2/*289*/, 34|128,2/*290*/,  // Results = #291
/* 74650*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 31|128,2/*287*/, 35|128,2/*291*/,  // Results = #292
/* 74660*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 27|128,2/*283*/, 36|128,2/*292*/,  // Results = #293
/* 74670*/      OPC_EmitInteger, MVT::i32, 30, 
/* 74673*/      OPC_EmitInteger, MVT::i32, 2, 
/* 74676*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74679*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 37|128,2/*293*/, 38|128,2/*294*/, 39|128,2/*295*/, 40|128,2/*296*/,  // Results = #297
/* 74693*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 74697*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 42|128,2/*298*/,  // Results = #299
/* 74705*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 74709*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 43|128,2/*299*/, 44|128,2/*300*/,  // Results = #301
/* 74719*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 41|128,2/*297*/, 45|128,2/*301*/,  // Results = #302
/* 74729*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74732*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74735*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74738*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 47|128,2/*303*/, 48|128,2/*304*/, 49|128,2/*305*/,  // Results = #306
/* 74751*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74756*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 51|128,2/*307*/,  // Results = #308
/* 74764*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 74769*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 52|128,2/*308*/, 53|128,2/*309*/,  // Results = #310
/* 74779*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 50|128,2/*306*/, 54|128,2/*310*/,  // Results = #311
/* 74789*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74792*/      OPC_EmitInteger, MVT::i32, 0, 
/* 74795*/      OPC_EmitInteger, MVT::i32, 30, 
/* 74798*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 56|128,2/*312*/, 57|128,2/*313*/, 58|128,2/*314*/,  // Results = #315
/* 74811*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74816*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 60|128,2/*316*/,  // Results = #317
/* 74824*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 74829*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 61|128,2/*317*/, 62|128,2/*318*/,  // Results = #319
/* 74839*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 59|128,2/*315*/, 63|128,2/*319*/,  // Results = #320
/* 74849*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 55|128,2/*311*/, 64|128,2/*320*/,  // Results = #321
/* 74859*/      OPC_EmitInteger, MVT::i32, 2, 
/* 74862*/      OPC_EmitInteger, MVT::i32, 0, 
/* 74865*/      OPC_EmitInteger, MVT::i32, 29, 
/* 74868*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 65|128,2/*321*/, 66|128,2/*322*/, 67|128,2/*323*/, 68|128,2/*324*/,  // Results = #325
/* 74882*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 74887*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 70|128,2/*326*/,  // Results = #327
/* 74895*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 74900*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 71|128,2/*327*/, 72|128,2/*328*/,  // Results = #329
/* 74910*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 69|128,2/*325*/, 73|128,2/*329*/,  // Results = #330
/* 74920*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 46|128,2/*302*/, 74|128,2/*330*/,  // Results = #331
/* 74930*/      OPC_EmitInteger, MVT::i32, 28, 
/* 74933*/      OPC_EmitInteger, MVT::i32, 4, 
/* 74936*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74939*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 75|128,2/*331*/, 76|128,2/*332*/, 77|128,2/*333*/, 78|128,2/*334*/,  // Results = #335
/* 74953*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 74957*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 80|128,2/*336*/,  // Results = #337
/* 74965*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 74969*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 81|128,2/*337*/, 82|128,2/*338*/,  // Results = #339
/* 74979*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 79|128,2/*335*/, 83|128,2/*339*/,  // Results = #340
/* 74989*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74992*/      OPC_EmitInteger, MVT::i32, 1, 
/* 74995*/      OPC_EmitInteger, MVT::i32, 31, 
/* 74998*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 85|128,2/*341*/, 86|128,2/*342*/, 87|128,2/*343*/,  // Results = #344
/* 75011*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75016*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 89|128,2/*345*/,  // Results = #346
/* 75024*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75029*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 90|128,2/*346*/, 91|128,2/*347*/,  // Results = #348
/* 75039*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 88|128,2/*344*/, 92|128,2/*348*/,  // Results = #349
/* 75049*/      OPC_EmitInteger, MVT::i32, 1, 
/* 75052*/      OPC_EmitInteger, MVT::i32, 0, 
/* 75055*/      OPC_EmitInteger, MVT::i32, 30, 
/* 75058*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 94|128,2/*350*/, 95|128,2/*351*/, 96|128,2/*352*/,  // Results = #353
/* 75071*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75076*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 98|128,2/*354*/,  // Results = #355
/* 75084*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75089*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 99|128,2/*355*/, 100|128,2/*356*/,  // Results = #357
/* 75099*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 97|128,2/*353*/, 101|128,2/*357*/,  // Results = #358
/* 75109*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 93|128,2/*349*/, 102|128,2/*358*/,  // Results = #359
/* 75119*/      OPC_EmitInteger, MVT::i32, 30, 
/* 75122*/      OPC_EmitInteger, MVT::i32, 2, 
/* 75125*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75128*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 103|128,2/*359*/, 104|128,2/*360*/, 105|128,2/*361*/, 106|128,2/*362*/,  // Results = #363
/* 75142*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 75146*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 108|128,2/*364*/,  // Results = #365
/* 75154*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 75158*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 109|128,2/*365*/, 110|128,2/*366*/,  // Results = #367
/* 75168*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 107|128,2/*363*/, 111|128,2/*367*/,  // Results = #368
/* 75178*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75181*/      OPC_EmitInteger, MVT::i32, 1, 
/* 75184*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75187*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 113|128,2/*369*/, 114|128,2/*370*/, 115|128,2/*371*/,  // Results = #372
/* 75200*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75205*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 117|128,2/*373*/,  // Results = #374
/* 75213*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75218*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 118|128,2/*374*/, 119|128,2/*375*/,  // Results = #376
/* 75228*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 116|128,2/*372*/, 120|128,2/*376*/,  // Results = #377
/* 75238*/      OPC_EmitInteger, MVT::i32, 1, 
/* 75241*/      OPC_EmitInteger, MVT::i32, 0, 
/* 75244*/      OPC_EmitInteger, MVT::i32, 30, 
/* 75247*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 0, 122|128,2/*378*/, 123|128,2/*379*/, 124|128,2/*380*/,  // Results = #381
/* 75260*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75265*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 126|128,2/*382*/,  // Results = #383
/* 75273*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75278*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 127|128,2/*383*/, 0|128,3/*384*/,  // Results = #385
/* 75288*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 125|128,2/*381*/, 1|128,3/*385*/,  // Results = #386
/* 75298*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 121|128,2/*377*/, 2|128,3/*386*/,  // Results = #387
/* 75308*/      OPC_EmitInteger, MVT::i32, 2, 
/* 75311*/      OPC_EmitInteger, MVT::i32, 0, 
/* 75314*/      OPC_EmitInteger, MVT::i32, 29, 
/* 75317*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 3|128,3/*387*/, 4|128,3/*388*/, 5|128,3/*389*/, 6|128,3/*390*/,  // Results = #391
/* 75331*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 75336*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 8|128,3/*392*/,  // Results = #393
/* 75344*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 75349*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 9|128,3/*393*/, 10|128,3/*394*/,  // Results = #395
/* 75359*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 7|128,3/*391*/, 11|128,3/*395*/,  // Results = #396
/* 75369*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 112|128,2/*368*/, 12|128,3/*396*/,  // Results = #397
/* 75379*/      OPC_EmitInteger, MVT::i32, 4, 
/* 75382*/      OPC_EmitInteger, MVT::i32, 0, 
/* 75385*/      OPC_EmitInteger, MVT::i32, 27, 
/* 75388*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 13|128,3/*397*/, 14|128,3/*398*/, 15|128,3/*399*/, 16|128,3/*400*/,  // Results = #401
/* 75402*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 75407*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 18|128,3/*402*/,  // Results = #403
/* 75415*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 75420*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 19|128,3/*403*/, 20|128,3/*404*/,  // Results = #405
/* 75430*/      OPC_EmitNode1, TARGET_VAL(PPC::AND), 0,
                    MVT::i32, 2/*#Ops*/, 17|128,3/*401*/, 21|128,3/*405*/,  // Results = #406
/* 75440*/      OPC_EmitNode1, TARGET_VAL(PPC::OR), 0,
                    MVT::i32, 2/*#Ops*/, 84|128,2/*340*/, 22|128,3/*406*/,  // Results = #407
/* 75450*/      OPC_EmitInteger, MVT::i32, 8, 
/* 75453*/      OPC_EmitInteger, MVT::i32, 24, 
/* 75456*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75459*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWIMI), 0,
                    MVT::i32, 5/*#Ops*/, 18|128,2/*274*/, 23|128,3/*407*/, 24|128,3/*408*/, 25|128,3/*409*/, 26|128,3/*410*/,  // Results = #411
/* 75475*/      OPC_EmitInteger, MVT::i32, 0, 
/* 75478*/      OPC_EmitInteger, MVT::i32, 32, 
/* 75481*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::RLDICL_32), 0,
                    MVT::i32, 3/*#Ops*/, 27|128,3/*411*/, 28|128,3/*412*/, 29|128,3/*413*/, 
                // Src: (bitreverse:{ *:[i32] } i32:{ *:[i32] }:$A) - Complexity = 3
                // Dst: (RLDICL_32:{ *:[i32] } (RLWIMI:{ *:[i32] } (RLWIMI:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 30:{ *:[i32] }, 2:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 2:{ *:[i32] }, 0:{ *:[i32] }, 29:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }))), 28:{ *:[i32] }, 4:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 30:{ *:[i32] }, 2:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 2:{ *:[i32] }, 0:{ *:[i32] }, 29:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }))), 4:{ *:[i32] }, 0:{ *:[i32] }, 27:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }))), 24:{ *:[i32] }, 0:{ *:[i32] }, 31:{ *:[i32] }), (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 30:{ *:[i32] }, 2:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 2:{ *:[i32] }, 0:{ *:[i32] }, 29:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }))), 28:{ *:[i32] }, 4:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 30:{ *:[i32] }, 2:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 2:{ *:[i32] }, 0:{ *:[i32] }, 29:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }))), 4:{ *:[i32] }, 0:{ *:[i32] }, 27:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }))), 8:{ *:[i32] }, 8:{ *:[i32] }, 15:{ *:[i32] }), (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 30:{ *:[i32] }, 2:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 2:{ *:[i32] }, 0:{ *:[i32] }, 29:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }))), 28:{ *:[i32] }, 4:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 30:{ *:[i32] }, 2:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } (OR:{ *:[i32] } (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 31:{ *:[i32] }, 1:{ *:[i32] }, 31:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] })), (AND:{ *:[i32] } (RLWINM:{ *:[i32] } ?:{ *:[i32] }:$A, 1:{ *:[i32] }, 0:{ *:[i32] }, 30:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }))), 2:{ *:[i32] }, 0:{ *:[i32] }, 29:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }))), 4:{ *:[i32] }, 0:{ *:[i32] }, 27:{ *:[i32] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }))), 8:{ *:[i32] }, 24:{ *:[i32] }, 31:{ *:[i32] }), 0:{ *:[i32] }, 32:{ *:[i32] })
/* 75493*/    /*SwitchType*/ 13|128,86/*11021*/, MVT::i64,// ->86517
/* 75496*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1
/* 75502*/      OPC_EmitInteger, MVT::i32, 63, 
/* 75505*/      OPC_EmitInteger, MVT::i32, 1, 
/* 75508*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 2, 3,  // Results = #4
/* 75517*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #5
/* 75523*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75528*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 6,  // Results = #7
/* 75535*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75540*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 7, 8,  // Results = #9
/* 75548*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 75551*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 5, 9, 10,  // Results = #11
/* 75560*/      OPC_EmitInteger, MVT::i32, 32, 
/* 75563*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75566*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 11, 12, 13,  // Results = #14
/* 75575*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 75580*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 14, 15,  // Results = #16
/* 75588*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 75593*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 16, 17,  // Results = #18
/* 75601*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 4, 18,  // Results = #19
/* 75609*/      OPC_EmitInteger, MVT::i32, 1, 
/* 75612*/      OPC_EmitInteger, MVT::i32, 62, 
/* 75615*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 20, 21,  // Results = #22
/* 75624*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #23
/* 75630*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75635*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 24,  // Results = #25
/* 75642*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75647*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 25, 26,  // Results = #27
/* 75655*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 75658*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 23, 27, 28,  // Results = #29
/* 75667*/      OPC_EmitInteger, MVT::i32, 32, 
/* 75670*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75673*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 29, 30, 31,  // Results = #32
/* 75682*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 75687*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 32, 33,  // Results = #34
/* 75695*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 75700*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 34, 35,  // Results = #36
/* 75708*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 22, 36,  // Results = #37
/* 75716*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 19, 37,  // Results = #38
/* 75724*/      OPC_EmitInteger, MVT::i32, 62, 
/* 75727*/      OPC_EmitInteger, MVT::i32, 2, 
/* 75730*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 38, 39, 40,  // Results = #41
/* 75739*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #42
/* 75745*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 75749*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 43,  // Results = #44
/* 75756*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 75760*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 44, 45,  // Results = #46
/* 75768*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 75771*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 42, 46, 47,  // Results = #48
/* 75780*/      OPC_EmitInteger, MVT::i32, 32, 
/* 75783*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75786*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 48, 49, 50,  // Results = #51
/* 75795*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 75799*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 51, 52,  // Results = #53
/* 75807*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 75811*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 53, 54,  // Results = #55
/* 75819*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 41, 55,  // Results = #56
/* 75827*/      OPC_EmitInteger, MVT::i32, 63, 
/* 75830*/      OPC_EmitInteger, MVT::i32, 1, 
/* 75833*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 57, 58,  // Results = #59
/* 75842*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #60
/* 75848*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75853*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 61,  // Results = #62
/* 75860*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 75865*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 62, 63,  // Results = #64
/* 75873*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 75876*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 60, 64, 65,  // Results = #66
/* 75885*/      OPC_EmitInteger, MVT::i32, 32, 
/* 75888*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75891*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 66, 67, 68,  // Results = #69
/* 75900*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 75905*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 69, 70,  // Results = #71
/* 75913*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 75918*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 71, 72,  // Results = #73
/* 75926*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 59, 73,  // Results = #74
/* 75934*/      OPC_EmitInteger, MVT::i32, 1, 
/* 75937*/      OPC_EmitInteger, MVT::i32, 62, 
/* 75940*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 75, 76,  // Results = #77
/* 75949*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #78
/* 75955*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75960*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 79,  // Results = #80
/* 75967*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 75972*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 80, 81,  // Results = #82
/* 75980*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 75983*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 78, 82, 83,  // Results = #84
/* 75992*/      OPC_EmitInteger, MVT::i32, 32, 
/* 75995*/      OPC_EmitInteger, MVT::i32, 31, 
/* 75998*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 84, 85, 86,  // Results = #87
/* 76007*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 76012*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 87, 88,  // Results = #89
/* 76020*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 76025*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 89, 90,  // Results = #91
/* 76033*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 77, 91,  // Results = #92
/* 76041*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 74, 92,  // Results = #93
/* 76049*/      OPC_EmitInteger, MVT::i32, 2, 
/* 76052*/      OPC_EmitInteger, MVT::i32, 61, 
/* 76055*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 93, 94, 95,  // Results = #96
/* 76064*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #97
/* 76070*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 76075*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 98,  // Results = #99
/* 76082*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 76087*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 99, 100,  // Results = #101
/* 76095*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76098*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 97, 101, 102,  // Results = #103
/* 76107*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76110*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76113*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 103, 104, 105,  // Results = #106
/* 76122*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 76127*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 106, 107,  // Results = #108
/* 76135*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 76140*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 108, 109,  // Results = #110
/* 76148*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 96, 110,  // Results = #111
/* 76156*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 56, 111,  // Results = #112
/* 76164*/      OPC_EmitInteger, MVT::i32, 60, 
/* 76167*/      OPC_EmitInteger, MVT::i32, 4, 
/* 76170*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 112, 113, 114,  // Results = #115
/* 76179*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #116
/* 76185*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 76189*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 117,  // Results = #118
/* 76196*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 76200*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 118, 119,  // Results = #120
/* 76208*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76211*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 116, 120, 121,  // Results = #122
/* 76220*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76223*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76226*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 122, 123, 124,  // Results = #125
/* 76235*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 76239*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 125, 126,  // Results = #127
/* 76247*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 76251*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 127, 0|128,1/*128*/,  // Results = #129
/* 76260*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 115, 1|128,1/*129*/,  // Results = #130
/* 76269*/      OPC_EmitInteger, MVT::i32, 63, 
/* 76272*/      OPC_EmitInteger, MVT::i32, 1, 
/* 76275*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 3|128,1/*131*/, 4|128,1/*132*/,  // Results = #133
/* 76286*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #134
/* 76292*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 76297*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 7|128,1/*135*/,  // Results = #136
/* 76305*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 76310*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 8|128,1/*136*/, 9|128,1/*137*/,  // Results = #138
/* 76320*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76323*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 6|128,1/*134*/, 10|128,1/*138*/, 11|128,1/*139*/,  // Results = #140
/* 76335*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76338*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76341*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 12|128,1/*140*/, 13|128,1/*141*/, 14|128,1/*142*/,  // Results = #143
/* 76353*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 76358*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 15|128,1/*143*/, 16|128,1/*144*/,  // Results = #145
/* 76368*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 76373*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 17|128,1/*145*/, 18|128,1/*146*/,  // Results = #147
/* 76383*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 5|128,1/*133*/, 19|128,1/*147*/,  // Results = #148
/* 76393*/      OPC_EmitInteger, MVT::i32, 1, 
/* 76396*/      OPC_EmitInteger, MVT::i32, 62, 
/* 76399*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 21|128,1/*149*/, 22|128,1/*150*/,  // Results = #151
/* 76410*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #152
/* 76416*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 76421*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 25|128,1/*153*/,  // Results = #154
/* 76429*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 76434*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 26|128,1/*154*/, 27|128,1/*155*/,  // Results = #156
/* 76444*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76447*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 24|128,1/*152*/, 28|128,1/*156*/, 29|128,1/*157*/,  // Results = #158
/* 76459*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76462*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76465*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 30|128,1/*158*/, 31|128,1/*159*/, 32|128,1/*160*/,  // Results = #161
/* 76477*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 76482*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 33|128,1/*161*/, 34|128,1/*162*/,  // Results = #163
/* 76492*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 76497*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 35|128,1/*163*/, 36|128,1/*164*/,  // Results = #165
/* 76507*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 23|128,1/*151*/, 37|128,1/*165*/,  // Results = #166
/* 76517*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 20|128,1/*148*/, 38|128,1/*166*/,  // Results = #167
/* 76527*/      OPC_EmitInteger, MVT::i32, 62, 
/* 76530*/      OPC_EmitInteger, MVT::i32, 2, 
/* 76533*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 39|128,1/*167*/, 40|128,1/*168*/, 41|128,1/*169*/,  // Results = #170
/* 76545*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #171
/* 76551*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 76555*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 44|128,1/*172*/,  // Results = #173
/* 76563*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 76567*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 45|128,1/*173*/, 46|128,1/*174*/,  // Results = #175
/* 76577*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76580*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 43|128,1/*171*/, 47|128,1/*175*/, 48|128,1/*176*/,  // Results = #177
/* 76592*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76595*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76598*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 49|128,1/*177*/, 50|128,1/*178*/, 51|128,1/*179*/,  // Results = #180
/* 76610*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 76614*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 52|128,1/*180*/, 53|128,1/*181*/,  // Results = #182
/* 76624*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 76628*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 54|128,1/*182*/, 55|128,1/*183*/,  // Results = #184
/* 76638*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 42|128,1/*170*/, 56|128,1/*184*/,  // Results = #185
/* 76648*/      OPC_EmitInteger, MVT::i32, 63, 
/* 76651*/      OPC_EmitInteger, MVT::i32, 1, 
/* 76654*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 58|128,1/*186*/, 59|128,1/*187*/,  // Results = #188
/* 76665*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #189
/* 76671*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 76676*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 62|128,1/*190*/,  // Results = #191
/* 76684*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 76689*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 63|128,1/*191*/, 64|128,1/*192*/,  // Results = #193
/* 76699*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76702*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 61|128,1/*189*/, 65|128,1/*193*/, 66|128,1/*194*/,  // Results = #195
/* 76714*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76717*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76720*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 67|128,1/*195*/, 68|128,1/*196*/, 69|128,1/*197*/,  // Results = #198
/* 76732*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 76737*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 70|128,1/*198*/, 71|128,1/*199*/,  // Results = #200
/* 76747*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 76752*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 72|128,1/*200*/, 73|128,1/*201*/,  // Results = #202
/* 76762*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 60|128,1/*188*/, 74|128,1/*202*/,  // Results = #203
/* 76772*/      OPC_EmitInteger, MVT::i32, 1, 
/* 76775*/      OPC_EmitInteger, MVT::i32, 62, 
/* 76778*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 76|128,1/*204*/, 77|128,1/*205*/,  // Results = #206
/* 76789*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #207
/* 76795*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 76800*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 80|128,1/*208*/,  // Results = #209
/* 76808*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 76813*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 81|128,1/*209*/, 82|128,1/*210*/,  // Results = #211
/* 76823*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76826*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 79|128,1/*207*/, 83|128,1/*211*/, 84|128,1/*212*/,  // Results = #213
/* 76838*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76841*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76844*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 85|128,1/*213*/, 86|128,1/*214*/, 87|128,1/*215*/,  // Results = #216
/* 76856*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 76861*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 88|128,1/*216*/, 89|128,1/*217*/,  // Results = #218
/* 76871*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 76876*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 90|128,1/*218*/, 91|128,1/*219*/,  // Results = #220
/* 76886*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 78|128,1/*206*/, 92|128,1/*220*/,  // Results = #221
/* 76896*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 75|128,1/*203*/, 93|128,1/*221*/,  // Results = #222
/* 76906*/      OPC_EmitInteger, MVT::i32, 2, 
/* 76909*/      OPC_EmitInteger, MVT::i32, 61, 
/* 76912*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 94|128,1/*222*/, 95|128,1/*223*/, 96|128,1/*224*/,  // Results = #225
/* 76924*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #226
/* 76930*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 76935*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 99|128,1/*227*/,  // Results = #228
/* 76943*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 76948*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 100|128,1/*228*/, 101|128,1/*229*/,  // Results = #230
/* 76958*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 76961*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 98|128,1/*226*/, 102|128,1/*230*/, 103|128,1/*231*/,  // Results = #232
/* 76973*/      OPC_EmitInteger, MVT::i32, 32, 
/* 76976*/      OPC_EmitInteger, MVT::i32, 31, 
/* 76979*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 104|128,1/*232*/, 105|128,1/*233*/, 106|128,1/*234*/,  // Results = #235
/* 76991*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 76996*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 107|128,1/*235*/, 108|128,1/*236*/,  // Results = #237
/* 77006*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 77011*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 109|128,1/*237*/, 110|128,1/*238*/,  // Results = #239
/* 77021*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 97|128,1/*225*/, 111|128,1/*239*/,  // Results = #240
/* 77031*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 57|128,1/*185*/, 112|128,1/*240*/,  // Results = #241
/* 77041*/      OPC_EmitInteger, MVT::i32, 4, 
/* 77044*/      OPC_EmitInteger, MVT::i32, 59, 
/* 77047*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 113|128,1/*241*/, 114|128,1/*242*/, 115|128,1/*243*/,  // Results = #244
/* 77059*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #245
/* 77065*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 77070*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 118|128,1/*246*/,  // Results = #247
/* 77078*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 77083*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 119|128,1/*247*/, 120|128,1/*248*/,  // Results = #249
/* 77093*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77096*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 117|128,1/*245*/, 121|128,1/*249*/, 122|128,1/*250*/,  // Results = #251
/* 77108*/      OPC_EmitInteger, MVT::i32, 32, 
/* 77111*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77114*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 123|128,1/*251*/, 124|128,1/*252*/, 125|128,1/*253*/,  // Results = #254
/* 77126*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 77131*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 126|128,1/*254*/, 127|128,1/*255*/,  // Results = #256
/* 77141*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 77146*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 0|128,2/*256*/, 1|128,2/*257*/,  // Results = #258
/* 77156*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 116|128,1/*244*/, 2|128,2/*258*/,  // Results = #259
/* 77166*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 2|128,1/*130*/, 3|128,2/*259*/,  // Results = #260
/* 77176*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77179*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 4|128,2/*260*/, 5|128,2/*261*/,  // Results = #262
/* 77189*/      OPC_EmitInteger, MVT::i32, 24, 
/* 77192*/      OPC_EmitInteger, MVT::i32, 0, 
/* 77195*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77198*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 6|128,2/*262*/, 7|128,2/*263*/, 8|128,2/*264*/, 9|128,2/*265*/,  // Results = #266
/* 77212*/      OPC_EmitInteger, MVT::i32, 63, 
/* 77215*/      OPC_EmitInteger, MVT::i32, 1, 
/* 77218*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 11|128,2/*267*/, 12|128,2/*268*/,  // Results = #269
/* 77229*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #270
/* 77235*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 77240*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 15|128,2/*271*/,  // Results = #272
/* 77248*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 77253*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 16|128,2/*272*/, 17|128,2/*273*/,  // Results = #274
/* 77263*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77266*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 14|128,2/*270*/, 18|128,2/*274*/, 19|128,2/*275*/,  // Results = #276
/* 77278*/      OPC_EmitInteger, MVT::i32, 32, 
/* 77281*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77284*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 20|128,2/*276*/, 21|128,2/*277*/, 22|128,2/*278*/,  // Results = #279
/* 77296*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 77301*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 23|128,2/*279*/, 24|128,2/*280*/,  // Results = #281
/* 77311*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 77316*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 25|128,2/*281*/, 26|128,2/*282*/,  // Results = #283
/* 77326*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 13|128,2/*269*/, 27|128,2/*283*/,  // Results = #284
/* 77336*/      OPC_EmitInteger, MVT::i32, 1, 
/* 77339*/      OPC_EmitInteger, MVT::i32, 62, 
/* 77342*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 29|128,2/*285*/, 30|128,2/*286*/,  // Results = #287
/* 77353*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #288
/* 77359*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 77364*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 33|128,2/*289*/,  // Results = #290
/* 77372*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 77377*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 34|128,2/*290*/, 35|128,2/*291*/,  // Results = #292
/* 77387*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77390*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 32|128,2/*288*/, 36|128,2/*292*/, 37|128,2/*293*/,  // Results = #294
/* 77402*/      OPC_EmitInteger, MVT::i32, 32, 
/* 77405*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77408*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 38|128,2/*294*/, 39|128,2/*295*/, 40|128,2/*296*/,  // Results = #297
/* 77420*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 77425*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 41|128,2/*297*/, 42|128,2/*298*/,  // Results = #299
/* 77435*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 77440*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 43|128,2/*299*/, 44|128,2/*300*/,  // Results = #301
/* 77450*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 31|128,2/*287*/, 45|128,2/*301*/,  // Results = #302
/* 77460*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 28|128,2/*284*/, 46|128,2/*302*/,  // Results = #303
/* 77470*/      OPC_EmitInteger, MVT::i32, 62, 
/* 77473*/      OPC_EmitInteger, MVT::i32, 2, 
/* 77476*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 47|128,2/*303*/, 48|128,2/*304*/, 49|128,2/*305*/,  // Results = #306
/* 77488*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #307
/* 77494*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 77498*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 52|128,2/*308*/,  // Results = #309
/* 77506*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 77510*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 53|128,2/*309*/, 54|128,2/*310*/,  // Results = #311
/* 77520*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77523*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 51|128,2/*307*/, 55|128,2/*311*/, 56|128,2/*312*/,  // Results = #313
/* 77535*/      OPC_EmitInteger, MVT::i32, 32, 
/* 77538*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77541*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 57|128,2/*313*/, 58|128,2/*314*/, 59|128,2/*315*/,  // Results = #316
/* 77553*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 77557*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 60|128,2/*316*/, 61|128,2/*317*/,  // Results = #318
/* 77567*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 77571*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 62|128,2/*318*/, 63|128,2/*319*/,  // Results = #320
/* 77581*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 50|128,2/*306*/, 64|128,2/*320*/,  // Results = #321
/* 77591*/      OPC_EmitInteger, MVT::i32, 63, 
/* 77594*/      OPC_EmitInteger, MVT::i32, 1, 
/* 77597*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 66|128,2/*322*/, 67|128,2/*323*/,  // Results = #324
/* 77608*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #325
/* 77614*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 77619*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 70|128,2/*326*/,  // Results = #327
/* 77627*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 77632*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 71|128,2/*327*/, 72|128,2/*328*/,  // Results = #329
/* 77642*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77645*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 69|128,2/*325*/, 73|128,2/*329*/, 74|128,2/*330*/,  // Results = #331
/* 77657*/      OPC_EmitInteger, MVT::i32, 32, 
/* 77660*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77663*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 75|128,2/*331*/, 76|128,2/*332*/, 77|128,2/*333*/,  // Results = #334
/* 77675*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 77680*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 78|128,2/*334*/, 79|128,2/*335*/,  // Results = #336
/* 77690*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 77695*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 80|128,2/*336*/, 81|128,2/*337*/,  // Results = #338
/* 77705*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 68|128,2/*324*/, 82|128,2/*338*/,  // Results = #339
/* 77715*/      OPC_EmitInteger, MVT::i32, 1, 
/* 77718*/      OPC_EmitInteger, MVT::i32, 62, 
/* 77721*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 84|128,2/*340*/, 85|128,2/*341*/,  // Results = #342
/* 77732*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #343
/* 77738*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 77743*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 88|128,2/*344*/,  // Results = #345
/* 77751*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 77756*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 89|128,2/*345*/, 90|128,2/*346*/,  // Results = #347
/* 77766*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77769*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 87|128,2/*343*/, 91|128,2/*347*/, 92|128,2/*348*/,  // Results = #349
/* 77781*/      OPC_EmitInteger, MVT::i32, 32, 
/* 77784*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77787*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 93|128,2/*349*/, 94|128,2/*350*/, 95|128,2/*351*/,  // Results = #352
/* 77799*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 77804*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 96|128,2/*352*/, 97|128,2/*353*/,  // Results = #354
/* 77814*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 77819*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 98|128,2/*354*/, 99|128,2/*355*/,  // Results = #356
/* 77829*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 86|128,2/*342*/, 100|128,2/*356*/,  // Results = #357
/* 77839*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 83|128,2/*339*/, 101|128,2/*357*/,  // Results = #358
/* 77849*/      OPC_EmitInteger, MVT::i32, 2, 
/* 77852*/      OPC_EmitInteger, MVT::i32, 61, 
/* 77855*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 102|128,2/*358*/, 103|128,2/*359*/, 104|128,2/*360*/,  // Results = #361
/* 77867*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #362
/* 77873*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 77878*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 107|128,2/*363*/,  // Results = #364
/* 77886*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 77891*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 108|128,2/*364*/, 109|128,2/*365*/,  // Results = #366
/* 77901*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 77904*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 106|128,2/*362*/, 110|128,2/*366*/, 111|128,2/*367*/,  // Results = #368
/* 77916*/      OPC_EmitInteger, MVT::i32, 32, 
/* 77919*/      OPC_EmitInteger, MVT::i32, 31, 
/* 77922*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 112|128,2/*368*/, 113|128,2/*369*/, 114|128,2/*370*/,  // Results = #371
/* 77934*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 77939*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 115|128,2/*371*/, 116|128,2/*372*/,  // Results = #373
/* 77949*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 77954*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 117|128,2/*373*/, 118|128,2/*374*/,  // Results = #375
/* 77964*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 105|128,2/*361*/, 119|128,2/*375*/,  // Results = #376
/* 77974*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 65|128,2/*321*/, 120|128,2/*376*/,  // Results = #377
/* 77984*/      OPC_EmitInteger, MVT::i32, 60, 
/* 77987*/      OPC_EmitInteger, MVT::i32, 4, 
/* 77990*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 121|128,2/*377*/, 122|128,2/*378*/, 123|128,2/*379*/,  // Results = #380
/* 78002*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #381
/* 78008*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 78012*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 126|128,2/*382*/,  // Results = #383
/* 78020*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 78024*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 127|128,2/*383*/, 0|128,3/*384*/,  // Results = #385
/* 78034*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78037*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 125|128,2/*381*/, 1|128,3/*385*/, 2|128,3/*386*/,  // Results = #387
/* 78049*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78052*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78055*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 3|128,3/*387*/, 4|128,3/*388*/, 5|128,3/*389*/,  // Results = #390
/* 78067*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 78071*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 6|128,3/*390*/, 7|128,3/*391*/,  // Results = #392
/* 78081*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 78085*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 8|128,3/*392*/, 9|128,3/*393*/,  // Results = #394
/* 78095*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 124|128,2/*380*/, 10|128,3/*394*/,  // Results = #395
/* 78105*/      OPC_EmitInteger, MVT::i32, 63, 
/* 78108*/      OPC_EmitInteger, MVT::i32, 1, 
/* 78111*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 12|128,3/*396*/, 13|128,3/*397*/,  // Results = #398
/* 78122*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #399
/* 78128*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 78133*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 16|128,3/*400*/,  // Results = #401
/* 78141*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 78146*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 17|128,3/*401*/, 18|128,3/*402*/,  // Results = #403
/* 78156*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78159*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 15|128,3/*399*/, 19|128,3/*403*/, 20|128,3/*404*/,  // Results = #405
/* 78171*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78174*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78177*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 21|128,3/*405*/, 22|128,3/*406*/, 23|128,3/*407*/,  // Results = #408
/* 78189*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 78194*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 24|128,3/*408*/, 25|128,3/*409*/,  // Results = #410
/* 78204*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 78209*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 26|128,3/*410*/, 27|128,3/*411*/,  // Results = #412
/* 78219*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 14|128,3/*398*/, 28|128,3/*412*/,  // Results = #413
/* 78229*/      OPC_EmitInteger, MVT::i32, 1, 
/* 78232*/      OPC_EmitInteger, MVT::i32, 62, 
/* 78235*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 30|128,3/*414*/, 31|128,3/*415*/,  // Results = #416
/* 78246*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #417
/* 78252*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 78257*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 34|128,3/*418*/,  // Results = #419
/* 78265*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 78270*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 35|128,3/*419*/, 36|128,3/*420*/,  // Results = #421
/* 78280*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78283*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 33|128,3/*417*/, 37|128,3/*421*/, 38|128,3/*422*/,  // Results = #423
/* 78295*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78298*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78301*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 39|128,3/*423*/, 40|128,3/*424*/, 41|128,3/*425*/,  // Results = #426
/* 78313*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 78318*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 42|128,3/*426*/, 43|128,3/*427*/,  // Results = #428
/* 78328*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 78333*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 44|128,3/*428*/, 45|128,3/*429*/,  // Results = #430
/* 78343*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 32|128,3/*416*/, 46|128,3/*430*/,  // Results = #431
/* 78353*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 29|128,3/*413*/, 47|128,3/*431*/,  // Results = #432
/* 78363*/      OPC_EmitInteger, MVT::i32, 62, 
/* 78366*/      OPC_EmitInteger, MVT::i32, 2, 
/* 78369*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 48|128,3/*432*/, 49|128,3/*433*/, 50|128,3/*434*/,  // Results = #435
/* 78381*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #436
/* 78387*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 78391*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 53|128,3/*437*/,  // Results = #438
/* 78399*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 78403*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 54|128,3/*438*/, 55|128,3/*439*/,  // Results = #440
/* 78413*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78416*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 52|128,3/*436*/, 56|128,3/*440*/, 57|128,3/*441*/,  // Results = #442
/* 78428*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78431*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78434*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 58|128,3/*442*/, 59|128,3/*443*/, 60|128,3/*444*/,  // Results = #445
/* 78446*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 78450*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 61|128,3/*445*/, 62|128,3/*446*/,  // Results = #447
/* 78460*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 78464*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 63|128,3/*447*/, 64|128,3/*448*/,  // Results = #449
/* 78474*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 51|128,3/*435*/, 65|128,3/*449*/,  // Results = #450
/* 78484*/      OPC_EmitInteger, MVT::i32, 63, 
/* 78487*/      OPC_EmitInteger, MVT::i32, 1, 
/* 78490*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 67|128,3/*451*/, 68|128,3/*452*/,  // Results = #453
/* 78501*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #454
/* 78507*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 78512*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 71|128,3/*455*/,  // Results = #456
/* 78520*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 78525*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 72|128,3/*456*/, 73|128,3/*457*/,  // Results = #458
/* 78535*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78538*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 70|128,3/*454*/, 74|128,3/*458*/, 75|128,3/*459*/,  // Results = #460
/* 78550*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78553*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78556*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 76|128,3/*460*/, 77|128,3/*461*/, 78|128,3/*462*/,  // Results = #463
/* 78568*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 78573*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 79|128,3/*463*/, 80|128,3/*464*/,  // Results = #465
/* 78583*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 78588*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 81|128,3/*465*/, 82|128,3/*466*/,  // Results = #467
/* 78598*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 69|128,3/*453*/, 83|128,3/*467*/,  // Results = #468
/* 78608*/      OPC_EmitInteger, MVT::i32, 1, 
/* 78611*/      OPC_EmitInteger, MVT::i32, 62, 
/* 78614*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 85|128,3/*469*/, 86|128,3/*470*/,  // Results = #471
/* 78625*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #472
/* 78631*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 78636*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 89|128,3/*473*/,  // Results = #474
/* 78644*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 78649*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 90|128,3/*474*/, 91|128,3/*475*/,  // Results = #476
/* 78659*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78662*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 88|128,3/*472*/, 92|128,3/*476*/, 93|128,3/*477*/,  // Results = #478
/* 78674*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78677*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78680*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 94|128,3/*478*/, 95|128,3/*479*/, 96|128,3/*480*/,  // Results = #481
/* 78692*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 78697*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 97|128,3/*481*/, 98|128,3/*482*/,  // Results = #483
/* 78707*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 78712*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 99|128,3/*483*/, 100|128,3/*484*/,  // Results = #485
/* 78722*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 87|128,3/*471*/, 101|128,3/*485*/,  // Results = #486
/* 78732*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 84|128,3/*468*/, 102|128,3/*486*/,  // Results = #487
/* 78742*/      OPC_EmitInteger, MVT::i32, 2, 
/* 78745*/      OPC_EmitInteger, MVT::i32, 61, 
/* 78748*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 103|128,3/*487*/, 104|128,3/*488*/, 105|128,3/*489*/,  // Results = #490
/* 78760*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #491
/* 78766*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 78771*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 108|128,3/*492*/,  // Results = #493
/* 78779*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 78784*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 109|128,3/*493*/, 110|128,3/*494*/,  // Results = #495
/* 78794*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78797*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 107|128,3/*491*/, 111|128,3/*495*/, 112|128,3/*496*/,  // Results = #497
/* 78809*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78812*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78815*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 113|128,3/*497*/, 114|128,3/*498*/, 115|128,3/*499*/,  // Results = #500
/* 78827*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 78832*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 116|128,3/*500*/, 117|128,3/*501*/,  // Results = #502
/* 78842*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 78847*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 118|128,3/*502*/, 119|128,3/*503*/,  // Results = #504
/* 78857*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 106|128,3/*490*/, 120|128,3/*504*/,  // Results = #505
/* 78867*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 66|128,3/*450*/, 121|128,3/*505*/,  // Results = #506
/* 78877*/      OPC_EmitInteger, MVT::i32, 4, 
/* 78880*/      OPC_EmitInteger, MVT::i32, 59, 
/* 78883*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 122|128,3/*506*/, 123|128,3/*507*/, 124|128,3/*508*/,  // Results = #509
/* 78895*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #510
/* 78901*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 78906*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 127|128,3/*511*/,  // Results = #512
/* 78914*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 78919*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 0|128,4/*512*/, 1|128,4/*513*/,  // Results = #514
/* 78929*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 78932*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 126|128,3/*510*/, 2|128,4/*514*/, 3|128,4/*515*/,  // Results = #516
/* 78944*/      OPC_EmitInteger, MVT::i32, 32, 
/* 78947*/      OPC_EmitInteger, MVT::i32, 31, 
/* 78950*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 4|128,4/*516*/, 5|128,4/*517*/, 6|128,4/*518*/,  // Results = #519
/* 78962*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 78967*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 7|128,4/*519*/, 8|128,4/*520*/,  // Results = #521
/* 78977*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 78982*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 9|128,4/*521*/, 10|128,4/*522*/,  // Results = #523
/* 78992*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 125|128,3/*509*/, 11|128,4/*523*/,  // Results = #524
/* 79002*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 11|128,3/*395*/, 12|128,4/*524*/,  // Results = #525
/* 79012*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79015*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 13|128,4/*525*/, 14|128,4/*526*/,  // Results = #527
/* 79025*/      OPC_EmitInteger, MVT::i32, 8, 
/* 79028*/      OPC_EmitInteger, MVT::i32, 8, 
/* 79031*/      OPC_EmitInteger, MVT::i32, 15, 
/* 79034*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWIMI), 0,
                    MVT::i32, 5/*#Ops*/, 10|128,2/*266*/, 15|128,4/*527*/, 16|128,4/*528*/, 17|128,4/*529*/, 18|128,4/*530*/,  // Results = #531
/* 79050*/      OPC_EmitInteger, MVT::i32, 63, 
/* 79053*/      OPC_EmitInteger, MVT::i32, 1, 
/* 79056*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 20|128,4/*532*/, 21|128,4/*533*/,  // Results = #534
/* 79067*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #535
/* 79073*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 79078*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 24|128,4/*536*/,  // Results = #537
/* 79086*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 79091*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 25|128,4/*537*/, 26|128,4/*538*/,  // Results = #539
/* 79101*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79104*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 23|128,4/*535*/, 27|128,4/*539*/, 28|128,4/*540*/,  // Results = #541
/* 79116*/      OPC_EmitInteger, MVT::i32, 32, 
/* 79119*/      OPC_EmitInteger, MVT::i32, 31, 
/* 79122*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 29|128,4/*541*/, 30|128,4/*542*/, 31|128,4/*543*/,  // Results = #544
/* 79134*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 79139*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 32|128,4/*544*/, 33|128,4/*545*/,  // Results = #546
/* 79149*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 79154*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 34|128,4/*546*/, 35|128,4/*547*/,  // Results = #548
/* 79164*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 22|128,4/*534*/, 36|128,4/*548*/,  // Results = #549
/* 79174*/      OPC_EmitInteger, MVT::i32, 1, 
/* 79177*/      OPC_EmitInteger, MVT::i32, 62, 
/* 79180*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 38|128,4/*550*/, 39|128,4/*551*/,  // Results = #552
/* 79191*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #553
/* 79197*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 79202*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 42|128,4/*554*/,  // Results = #555
/* 79210*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 79215*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 43|128,4/*555*/, 44|128,4/*556*/,  // Results = #557
/* 79225*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79228*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 41|128,4/*553*/, 45|128,4/*557*/, 46|128,4/*558*/,  // Results = #559
/* 79240*/      OPC_EmitInteger, MVT::i32, 32, 
/* 79243*/      OPC_EmitInteger, MVT::i32, 31, 
/* 79246*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 47|128,4/*559*/, 48|128,4/*560*/, 49|128,4/*561*/,  // Results = #562
/* 79258*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 79263*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 50|128,4/*562*/, 51|128,4/*563*/,  // Results = #564
/* 79273*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 79278*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 52|128,4/*564*/, 53|128,4/*565*/,  // Results = #566
/* 79288*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 40|128,4/*552*/, 54|128,4/*566*/,  // Results = #567
/* 79298*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 37|128,4/*549*/, 55|128,4/*567*/,  // Results = #568
/* 79308*/      OPC_EmitInteger, MVT::i32, 62, 
/* 79311*/      OPC_EmitInteger, MVT::i32, 2, 
/* 79314*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 56|128,4/*568*/, 57|128,4/*569*/, 58|128,4/*570*/,  // Results = #571
/* 79326*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #572
/* 79332*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 79336*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 61|128,4/*573*/,  // Results = #574
/* 79344*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 79348*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 62|128,4/*574*/, 63|128,4/*575*/,  // Results = #576
/* 79358*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79361*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 60|128,4/*572*/, 64|128,4/*576*/, 65|128,4/*577*/,  // Results = #578
/* 79373*/      OPC_EmitInteger, MVT::i32, 32, 
/* 79376*/      OPC_EmitInteger, MVT::i32, 31, 
/* 79379*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 66|128,4/*578*/, 67|128,4/*579*/, 68|128,4/*580*/,  // Results = #581
/* 79391*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 79395*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 69|128,4/*581*/, 70|128,4/*582*/,  // Results = #583
/* 79405*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 79409*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 71|128,4/*583*/, 72|128,4/*584*/,  // Results = #585
/* 79419*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 59|128,4/*571*/, 73|128,4/*585*/,  // Results = #586
/* 79429*/      OPC_EmitInteger, MVT::i32, 63, 
/* 79432*/      OPC_EmitInteger, MVT::i32, 1, 
/* 79435*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 75|128,4/*587*/, 76|128,4/*588*/,  // Results = #589
/* 79446*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #590
/* 79452*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 79457*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 79|128,4/*591*/,  // Results = #592
/* 79465*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 79470*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 80|128,4/*592*/, 81|128,4/*593*/,  // Results = #594
/* 79480*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79483*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 78|128,4/*590*/, 82|128,4/*594*/, 83|128,4/*595*/,  // Results = #596
/* 79495*/      OPC_EmitInteger, MVT::i32, 32, 
/* 79498*/      OPC_EmitInteger, MVT::i32, 31, 
/* 79501*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 84|128,4/*596*/, 85|128,4/*597*/, 86|128,4/*598*/,  // Results = #599
/* 79513*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 79518*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 87|128,4/*599*/, 88|128,4/*600*/,  // Results = #601
/* 79528*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 79533*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 89|128,4/*601*/, 90|128,4/*602*/,  // Results = #603
/* 79543*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 77|128,4/*589*/, 91|128,4/*603*/,  // Results = #604
/* 79553*/      OPC_EmitInteger, MVT::i32, 1, 
/* 79556*/      OPC_EmitInteger, MVT::i32, 62, 
/* 79559*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 93|128,4/*605*/, 94|128,4/*606*/,  // Results = #607
/* 79570*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #608
/* 79576*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 79581*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 97|128,4/*609*/,  // Results = #610
/* 79589*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 79594*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 98|128,4/*610*/, 99|128,4/*611*/,  // Results = #612
/* 79604*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79607*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 96|128,4/*608*/, 100|128,4/*612*/, 101|128,4/*613*/,  // Results = #614
/* 79619*/      OPC_EmitInteger, MVT::i32, 32, 
/* 79622*/      OPC_EmitInteger, MVT::i32, 31, 
/* 79625*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 102|128,4/*614*/, 103|128,4/*615*/, 104|128,4/*616*/,  // Results = #617
/* 79637*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 79642*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 105|128,4/*617*/, 106|128,4/*618*/,  // Results = #619
/* 79652*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 79657*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 107|128,4/*619*/, 108|128,4/*620*/,  // Results = #621
/* 79667*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 95|128,4/*607*/, 109|128,4/*621*/,  // Results = #622
/* 79677*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 92|128,4/*604*/, 110|128,4/*622*/,  // Results = #623
/* 79687*/      OPC_EmitInteger, MVT::i32, 2, 
/* 79690*/      OPC_EmitInteger, MVT::i32, 61, 
/* 79693*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 111|128,4/*623*/, 112|128,4/*624*/, 113|128,4/*625*/,  // Results = #626
/* 79705*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #627
/* 79711*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 79716*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 116|128,4/*628*/,  // Results = #629
/* 79724*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 79729*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 117|128,4/*629*/, 118|128,4/*630*/,  // Results = #631
/* 79739*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79742*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 115|128,4/*627*/, 119|128,4/*631*/, 120|128,4/*632*/,  // Results = #633
/* 79754*/      OPC_EmitInteger, MVT::i32, 32, 
/* 79757*/      OPC_EmitInteger, MVT::i32, 31, 
/* 79760*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 121|128,4/*633*/, 122|128,4/*634*/, 123|128,4/*635*/,  // Results = #636
/* 79772*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 79777*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 124|128,4/*636*/, 125|128,4/*637*/,  // Results = #638
/* 79787*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 79792*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 126|128,4/*638*/, 127|128,4/*639*/,  // Results = #640
/* 79802*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 114|128,4/*626*/, 0|128,5/*640*/,  // Results = #641
/* 79812*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 74|128,4/*586*/, 1|128,5/*641*/,  // Results = #642
/* 79822*/      OPC_EmitInteger, MVT::i32, 60, 
/* 79825*/      OPC_EmitInteger, MVT::i32, 4, 
/* 79828*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 2|128,5/*642*/, 3|128,5/*643*/, 4|128,5/*644*/,  // Results = #645
/* 79840*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #646
/* 79846*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 79850*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 7|128,5/*647*/,  // Results = #648
/* 79858*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 79862*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 8|128,5/*648*/, 9|128,5/*649*/,  // Results = #650
/* 79872*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79875*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 6|128,5/*646*/, 10|128,5/*650*/, 11|128,5/*651*/,  // Results = #652
/* 79887*/      OPC_EmitInteger, MVT::i32, 32, 
/* 79890*/      OPC_EmitInteger, MVT::i32, 31, 
/* 79893*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 12|128,5/*652*/, 13|128,5/*653*/, 14|128,5/*654*/,  // Results = #655
/* 79905*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 79909*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 15|128,5/*655*/, 16|128,5/*656*/,  // Results = #657
/* 79919*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 79923*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 17|128,5/*657*/, 18|128,5/*658*/,  // Results = #659
/* 79933*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 5|128,5/*645*/, 19|128,5/*659*/,  // Results = #660
/* 79943*/      OPC_EmitInteger, MVT::i32, 63, 
/* 79946*/      OPC_EmitInteger, MVT::i32, 1, 
/* 79949*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 21|128,5/*661*/, 22|128,5/*662*/,  // Results = #663
/* 79960*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #664
/* 79966*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 79971*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 25|128,5/*665*/,  // Results = #666
/* 79979*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 79984*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 26|128,5/*666*/, 27|128,5/*667*/,  // Results = #668
/* 79994*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 79997*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 24|128,5/*664*/, 28|128,5/*668*/, 29|128,5/*669*/,  // Results = #670
/* 80009*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80012*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80015*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 30|128,5/*670*/, 31|128,5/*671*/, 32|128,5/*672*/,  // Results = #673
/* 80027*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 80032*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 33|128,5/*673*/, 34|128,5/*674*/,  // Results = #675
/* 80042*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 80047*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 35|128,5/*675*/, 36|128,5/*676*/,  // Results = #677
/* 80057*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 23|128,5/*663*/, 37|128,5/*677*/,  // Results = #678
/* 80067*/      OPC_EmitInteger, MVT::i32, 1, 
/* 80070*/      OPC_EmitInteger, MVT::i32, 62, 
/* 80073*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 39|128,5/*679*/, 40|128,5/*680*/,  // Results = #681
/* 80084*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #682
/* 80090*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 80095*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 43|128,5/*683*/,  // Results = #684
/* 80103*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 80108*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 44|128,5/*684*/, 45|128,5/*685*/,  // Results = #686
/* 80118*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80121*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 42|128,5/*682*/, 46|128,5/*686*/, 47|128,5/*687*/,  // Results = #688
/* 80133*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80136*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80139*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 48|128,5/*688*/, 49|128,5/*689*/, 50|128,5/*690*/,  // Results = #691
/* 80151*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 80156*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 51|128,5/*691*/, 52|128,5/*692*/,  // Results = #693
/* 80166*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 80171*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 53|128,5/*693*/, 54|128,5/*694*/,  // Results = #695
/* 80181*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 41|128,5/*681*/, 55|128,5/*695*/,  // Results = #696
/* 80191*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 38|128,5/*678*/, 56|128,5/*696*/,  // Results = #697
/* 80201*/      OPC_EmitInteger, MVT::i32, 62, 
/* 80204*/      OPC_EmitInteger, MVT::i32, 2, 
/* 80207*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 57|128,5/*697*/, 58|128,5/*698*/, 59|128,5/*699*/,  // Results = #700
/* 80219*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #701
/* 80225*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 80229*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 62|128,5/*702*/,  // Results = #703
/* 80237*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 80241*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 63|128,5/*703*/, 64|128,5/*704*/,  // Results = #705
/* 80251*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80254*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 61|128,5/*701*/, 65|128,5/*705*/, 66|128,5/*706*/,  // Results = #707
/* 80266*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80269*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80272*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 67|128,5/*707*/, 68|128,5/*708*/, 69|128,5/*709*/,  // Results = #710
/* 80284*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 80288*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 70|128,5/*710*/, 71|128,5/*711*/,  // Results = #712
/* 80298*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 80302*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 72|128,5/*712*/, 73|128,5/*713*/,  // Results = #714
/* 80312*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 60|128,5/*700*/, 74|128,5/*714*/,  // Results = #715
/* 80322*/      OPC_EmitInteger, MVT::i32, 63, 
/* 80325*/      OPC_EmitInteger, MVT::i32, 1, 
/* 80328*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 76|128,5/*716*/, 77|128,5/*717*/,  // Results = #718
/* 80339*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #719
/* 80345*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 80350*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 80|128,5/*720*/,  // Results = #721
/* 80358*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 80363*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 81|128,5/*721*/, 82|128,5/*722*/,  // Results = #723
/* 80373*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80376*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 79|128,5/*719*/, 83|128,5/*723*/, 84|128,5/*724*/,  // Results = #725
/* 80388*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80391*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80394*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 85|128,5/*725*/, 86|128,5/*726*/, 87|128,5/*727*/,  // Results = #728
/* 80406*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 80411*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 88|128,5/*728*/, 89|128,5/*729*/,  // Results = #730
/* 80421*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 80426*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 90|128,5/*730*/, 91|128,5/*731*/,  // Results = #732
/* 80436*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 78|128,5/*718*/, 92|128,5/*732*/,  // Results = #733
/* 80446*/      OPC_EmitInteger, MVT::i32, 1, 
/* 80449*/      OPC_EmitInteger, MVT::i32, 62, 
/* 80452*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 94|128,5/*734*/, 95|128,5/*735*/,  // Results = #736
/* 80463*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #737
/* 80469*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 80474*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 98|128,5/*738*/,  // Results = #739
/* 80482*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 80487*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 99|128,5/*739*/, 100|128,5/*740*/,  // Results = #741
/* 80497*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80500*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 97|128,5/*737*/, 101|128,5/*741*/, 102|128,5/*742*/,  // Results = #743
/* 80512*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80515*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80518*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 103|128,5/*743*/, 104|128,5/*744*/, 105|128,5/*745*/,  // Results = #746
/* 80530*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 80535*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 106|128,5/*746*/, 107|128,5/*747*/,  // Results = #748
/* 80545*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 80550*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 108|128,5/*748*/, 109|128,5/*749*/,  // Results = #750
/* 80560*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 96|128,5/*736*/, 110|128,5/*750*/,  // Results = #751
/* 80570*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 93|128,5/*733*/, 111|128,5/*751*/,  // Results = #752
/* 80580*/      OPC_EmitInteger, MVT::i32, 2, 
/* 80583*/      OPC_EmitInteger, MVT::i32, 61, 
/* 80586*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 112|128,5/*752*/, 113|128,5/*753*/, 114|128,5/*754*/,  // Results = #755
/* 80598*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #756
/* 80604*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 80609*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 117|128,5/*757*/,  // Results = #758
/* 80617*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 80622*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 118|128,5/*758*/, 119|128,5/*759*/,  // Results = #760
/* 80632*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80635*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 116|128,5/*756*/, 120|128,5/*760*/, 121|128,5/*761*/,  // Results = #762
/* 80647*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80650*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80653*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 122|128,5/*762*/, 123|128,5/*763*/, 124|128,5/*764*/,  // Results = #765
/* 80665*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 80670*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 125|128,5/*765*/, 126|128,5/*766*/,  // Results = #767
/* 80680*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 80685*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 127|128,5/*767*/, 0|128,6/*768*/,  // Results = #769
/* 80695*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 115|128,5/*755*/, 1|128,6/*769*/,  // Results = #770
/* 80705*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 75|128,5/*715*/, 2|128,6/*770*/,  // Results = #771
/* 80715*/      OPC_EmitInteger, MVT::i32, 4, 
/* 80718*/      OPC_EmitInteger, MVT::i32, 59, 
/* 80721*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 3|128,6/*771*/, 4|128,6/*772*/, 5|128,6/*773*/,  // Results = #774
/* 80733*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #775
/* 80739*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 80744*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 8|128,6/*776*/,  // Results = #777
/* 80752*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 80757*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 9|128,6/*777*/, 10|128,6/*778*/,  // Results = #779
/* 80767*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80770*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 7|128,6/*775*/, 11|128,6/*779*/, 12|128,6/*780*/,  // Results = #781
/* 80782*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80785*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80788*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 13|128,6/*781*/, 14|128,6/*782*/, 15|128,6/*783*/,  // Results = #784
/* 80800*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 80805*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 16|128,6/*784*/, 17|128,6/*785*/,  // Results = #786
/* 80815*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 80820*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 18|128,6/*786*/, 19|128,6/*787*/,  // Results = #788
/* 80830*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 6|128,6/*774*/, 20|128,6/*788*/,  // Results = #789
/* 80840*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 20|128,5/*660*/, 21|128,6/*789*/,  // Results = #790
/* 80850*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80853*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 22|128,6/*790*/, 23|128,6/*791*/,  // Results = #792
/* 80863*/      OPC_EmitInteger, MVT::i32, 8, 
/* 80866*/      OPC_EmitInteger, MVT::i32, 24, 
/* 80869*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80872*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWIMI), 0,
                    MVT::i32, 5/*#Ops*/, 19|128,4/*531*/, 24|128,6/*792*/, 25|128,6/*793*/, 26|128,6/*794*/, 27|128,6/*795*/,  // Results = #796
/* 80888*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80891*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 1, 28|128,6/*796*/, 29|128,6/*797*/,  // Results = #798
/* 80902*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80905*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80908*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 30|128,6/*798*/, 31|128,6/*799*/, 32|128,6/*800*/,  // Results = #801
/* 80920*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #802
/* 80926*/      OPC_EmitInteger, MVT::i32, 63, 
/* 80929*/      OPC_EmitInteger, MVT::i32, 1, 
/* 80932*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 35|128,6/*803*/, 36|128,6/*804*/,  // Results = #805
/* 80943*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #806
/* 80949*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 80954*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 39|128,6/*807*/,  // Results = #808
/* 80962*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 80967*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 40|128,6/*808*/, 41|128,6/*809*/,  // Results = #810
/* 80977*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 80980*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 38|128,6/*806*/, 42|128,6/*810*/, 43|128,6/*811*/,  // Results = #812
/* 80992*/      OPC_EmitInteger, MVT::i32, 32, 
/* 80995*/      OPC_EmitInteger, MVT::i32, 31, 
/* 80998*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 44|128,6/*812*/, 45|128,6/*813*/, 46|128,6/*814*/,  // Results = #815
/* 81010*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 81015*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 47|128,6/*815*/, 48|128,6/*816*/,  // Results = #817
/* 81025*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 81030*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 49|128,6/*817*/, 50|128,6/*818*/,  // Results = #819
/* 81040*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 37|128,6/*805*/, 51|128,6/*819*/,  // Results = #820
/* 81050*/      OPC_EmitInteger, MVT::i32, 1, 
/* 81053*/      OPC_EmitInteger, MVT::i32, 62, 
/* 81056*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 53|128,6/*821*/, 54|128,6/*822*/,  // Results = #823
/* 81067*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #824
/* 81073*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 81078*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 57|128,6/*825*/,  // Results = #826
/* 81086*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 81091*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 58|128,6/*826*/, 59|128,6/*827*/,  // Results = #828
/* 81101*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81104*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 56|128,6/*824*/, 60|128,6/*828*/, 61|128,6/*829*/,  // Results = #830
/* 81116*/      OPC_EmitInteger, MVT::i32, 32, 
/* 81119*/      OPC_EmitInteger, MVT::i32, 31, 
/* 81122*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 62|128,6/*830*/, 63|128,6/*831*/, 64|128,6/*832*/,  // Results = #833
/* 81134*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 81139*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 65|128,6/*833*/, 66|128,6/*834*/,  // Results = #835
/* 81149*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 81154*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 67|128,6/*835*/, 68|128,6/*836*/,  // Results = #837
/* 81164*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 55|128,6/*823*/, 69|128,6/*837*/,  // Results = #838
/* 81174*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 52|128,6/*820*/, 70|128,6/*838*/,  // Results = #839
/* 81184*/      OPC_EmitInteger, MVT::i32, 62, 
/* 81187*/      OPC_EmitInteger, MVT::i32, 2, 
/* 81190*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 71|128,6/*839*/, 72|128,6/*840*/, 73|128,6/*841*/,  // Results = #842
/* 81202*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #843
/* 81208*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 81212*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 76|128,6/*844*/,  // Results = #845
/* 81220*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 81224*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 77|128,6/*845*/, 78|128,6/*846*/,  // Results = #847
/* 81234*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81237*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 75|128,6/*843*/, 79|128,6/*847*/, 80|128,6/*848*/,  // Results = #849
/* 81249*/      OPC_EmitInteger, MVT::i32, 32, 
/* 81252*/      OPC_EmitInteger, MVT::i32, 31, 
/* 81255*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 81|128,6/*849*/, 82|128,6/*850*/, 83|128,6/*851*/,  // Results = #852
/* 81267*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 81271*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 84|128,6/*852*/, 85|128,6/*853*/,  // Results = #854
/* 81281*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 81285*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 86|128,6/*854*/, 87|128,6/*855*/,  // Results = #856
/* 81295*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 74|128,6/*842*/, 88|128,6/*856*/,  // Results = #857
/* 81305*/      OPC_EmitInteger, MVT::i32, 63, 
/* 81308*/      OPC_EmitInteger, MVT::i32, 1, 
/* 81311*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 90|128,6/*858*/, 91|128,6/*859*/,  // Results = #860
/* 81322*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #861
/* 81328*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 81333*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 94|128,6/*862*/,  // Results = #863
/* 81341*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 81346*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 95|128,6/*863*/, 96|128,6/*864*/,  // Results = #865
/* 81356*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81359*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 93|128,6/*861*/, 97|128,6/*865*/, 98|128,6/*866*/,  // Results = #867
/* 81371*/      OPC_EmitInteger, MVT::i32, 32, 
/* 81374*/      OPC_EmitInteger, MVT::i32, 31, 
/* 81377*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 99|128,6/*867*/, 100|128,6/*868*/, 101|128,6/*869*/,  // Results = #870
/* 81389*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 81394*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 102|128,6/*870*/, 103|128,6/*871*/,  // Results = #872
/* 81404*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 81409*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 104|128,6/*872*/, 105|128,6/*873*/,  // Results = #874
/* 81419*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 92|128,6/*860*/, 106|128,6/*874*/,  // Results = #875
/* 81429*/      OPC_EmitInteger, MVT::i32, 1, 
/* 81432*/      OPC_EmitInteger, MVT::i32, 62, 
/* 81435*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 108|128,6/*876*/, 109|128,6/*877*/,  // Results = #878
/* 81446*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #879
/* 81452*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 81457*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 112|128,6/*880*/,  // Results = #881
/* 81465*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 81470*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 113|128,6/*881*/, 114|128,6/*882*/,  // Results = #883
/* 81480*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81483*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 111|128,6/*879*/, 115|128,6/*883*/, 116|128,6/*884*/,  // Results = #885
/* 81495*/      OPC_EmitInteger, MVT::i32, 32, 
/* 81498*/      OPC_EmitInteger, MVT::i32, 31, 
/* 81501*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 117|128,6/*885*/, 118|128,6/*886*/, 119|128,6/*887*/,  // Results = #888
/* 81513*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 81518*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 120|128,6/*888*/, 121|128,6/*889*/,  // Results = #890
/* 81528*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 81533*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 122|128,6/*890*/, 123|128,6/*891*/,  // Results = #892
/* 81543*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 110|128,6/*878*/, 124|128,6/*892*/,  // Results = #893
/* 81553*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 107|128,6/*875*/, 125|128,6/*893*/,  // Results = #894
/* 81563*/      OPC_EmitInteger, MVT::i32, 2, 
/* 81566*/      OPC_EmitInteger, MVT::i32, 61, 
/* 81569*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 126|128,6/*894*/, 127|128,6/*895*/, 0|128,7/*896*/,  // Results = #897
/* 81581*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #898
/* 81587*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 81592*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 3|128,7/*899*/,  // Results = #900
/* 81600*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 81605*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 4|128,7/*900*/, 5|128,7/*901*/,  // Results = #902
/* 81615*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81618*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 2|128,7/*898*/, 6|128,7/*902*/, 7|128,7/*903*/,  // Results = #904
/* 81630*/      OPC_EmitInteger, MVT::i32, 32, 
/* 81633*/      OPC_EmitInteger, MVT::i32, 31, 
/* 81636*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 8|128,7/*904*/, 9|128,7/*905*/, 10|128,7/*906*/,  // Results = #907
/* 81648*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 81653*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 11|128,7/*907*/, 12|128,7/*908*/,  // Results = #909
/* 81663*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 81668*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 13|128,7/*909*/, 14|128,7/*910*/,  // Results = #911
/* 81678*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 1|128,7/*897*/, 15|128,7/*911*/,  // Results = #912
/* 81688*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 89|128,6/*857*/, 16|128,7/*912*/,  // Results = #913
/* 81698*/      OPC_EmitInteger, MVT::i32, 60, 
/* 81701*/      OPC_EmitInteger, MVT::i32, 4, 
/* 81704*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 17|128,7/*913*/, 18|128,7/*914*/, 19|128,7/*915*/,  // Results = #916
/* 81716*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #917
/* 81722*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 81726*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 22|128,7/*918*/,  // Results = #919
/* 81734*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 81738*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 23|128,7/*919*/, 24|128,7/*920*/,  // Results = #921
/* 81748*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81751*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 21|128,7/*917*/, 25|128,7/*921*/, 26|128,7/*922*/,  // Results = #923
/* 81763*/      OPC_EmitInteger, MVT::i32, 32, 
/* 81766*/      OPC_EmitInteger, MVT::i32, 31, 
/* 81769*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 27|128,7/*923*/, 28|128,7/*924*/, 29|128,7/*925*/,  // Results = #926
/* 81781*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 81785*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 30|128,7/*926*/, 31|128,7/*927*/,  // Results = #928
/* 81795*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 81799*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 32|128,7/*928*/, 33|128,7/*929*/,  // Results = #930
/* 81809*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 20|128,7/*916*/, 34|128,7/*930*/,  // Results = #931
/* 81819*/      OPC_EmitInteger, MVT::i32, 63, 
/* 81822*/      OPC_EmitInteger, MVT::i32, 1, 
/* 81825*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 36|128,7/*932*/, 37|128,7/*933*/,  // Results = #934
/* 81836*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #935
/* 81842*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 81847*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 40|128,7/*936*/,  // Results = #937
/* 81855*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 81860*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 41|128,7/*937*/, 42|128,7/*938*/,  // Results = #939
/* 81870*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81873*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 39|128,7/*935*/, 43|128,7/*939*/, 44|128,7/*940*/,  // Results = #941
/* 81885*/      OPC_EmitInteger, MVT::i32, 32, 
/* 81888*/      OPC_EmitInteger, MVT::i32, 31, 
/* 81891*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 45|128,7/*941*/, 46|128,7/*942*/, 47|128,7/*943*/,  // Results = #944
/* 81903*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 81908*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 48|128,7/*944*/, 49|128,7/*945*/,  // Results = #946
/* 81918*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 81923*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 50|128,7/*946*/, 51|128,7/*947*/,  // Results = #948
/* 81933*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 38|128,7/*934*/, 52|128,7/*948*/,  // Results = #949
/* 81943*/      OPC_EmitInteger, MVT::i32, 1, 
/* 81946*/      OPC_EmitInteger, MVT::i32, 62, 
/* 81949*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 54|128,7/*950*/, 55|128,7/*951*/,  // Results = #952
/* 81960*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #953
/* 81966*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 81971*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 58|128,7/*954*/,  // Results = #955
/* 81979*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 81984*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 59|128,7/*955*/, 60|128,7/*956*/,  // Results = #957
/* 81994*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 81997*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 57|128,7/*953*/, 61|128,7/*957*/, 62|128,7/*958*/,  // Results = #959
/* 82009*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82012*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82015*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 63|128,7/*959*/, 64|128,7/*960*/, 65|128,7/*961*/,  // Results = #962
/* 82027*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 82032*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 66|128,7/*962*/, 67|128,7/*963*/,  // Results = #964
/* 82042*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 82047*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 68|128,7/*964*/, 69|128,7/*965*/,  // Results = #966
/* 82057*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 56|128,7/*952*/, 70|128,7/*966*/,  // Results = #967
/* 82067*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 53|128,7/*949*/, 71|128,7/*967*/,  // Results = #968
/* 82077*/      OPC_EmitInteger, MVT::i32, 62, 
/* 82080*/      OPC_EmitInteger, MVT::i32, 2, 
/* 82083*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 72|128,7/*968*/, 73|128,7/*969*/, 74|128,7/*970*/,  // Results = #971
/* 82095*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #972
/* 82101*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 82105*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 77|128,7/*973*/,  // Results = #974
/* 82113*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 82117*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 78|128,7/*974*/, 79|128,7/*975*/,  // Results = #976
/* 82127*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82130*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 76|128,7/*972*/, 80|128,7/*976*/, 81|128,7/*977*/,  // Results = #978
/* 82142*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82145*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82148*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 82|128,7/*978*/, 83|128,7/*979*/, 84|128,7/*980*/,  // Results = #981
/* 82160*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 82164*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 85|128,7/*981*/, 86|128,7/*982*/,  // Results = #983
/* 82174*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 82178*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 87|128,7/*983*/, 88|128,7/*984*/,  // Results = #985
/* 82188*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 75|128,7/*971*/, 89|128,7/*985*/,  // Results = #986
/* 82198*/      OPC_EmitInteger, MVT::i32, 63, 
/* 82201*/      OPC_EmitInteger, MVT::i32, 1, 
/* 82204*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 91|128,7/*987*/, 92|128,7/*988*/,  // Results = #989
/* 82215*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #990
/* 82221*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 82226*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 95|128,7/*991*/,  // Results = #992
/* 82234*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 82239*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 96|128,7/*992*/, 97|128,7/*993*/,  // Results = #994
/* 82249*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82252*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 94|128,7/*990*/, 98|128,7/*994*/, 99|128,7/*995*/,  // Results = #996
/* 82264*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82267*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82270*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 100|128,7/*996*/, 101|128,7/*997*/, 102|128,7/*998*/,  // Results = #999
/* 82282*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 82287*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 103|128,7/*999*/, 104|128,7/*1000*/,  // Results = #1001
/* 82297*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 82302*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 105|128,7/*1001*/, 106|128,7/*1002*/,  // Results = #1003
/* 82312*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 93|128,7/*989*/, 107|128,7/*1003*/,  // Results = #1004
/* 82322*/      OPC_EmitInteger, MVT::i32, 1, 
/* 82325*/      OPC_EmitInteger, MVT::i32, 62, 
/* 82328*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 109|128,7/*1005*/, 110|128,7/*1006*/,  // Results = #1007
/* 82339*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1008
/* 82345*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 82350*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 113|128,7/*1009*/,  // Results = #1010
/* 82358*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 82363*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 114|128,7/*1010*/, 115|128,7/*1011*/,  // Results = #1012
/* 82373*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82376*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 112|128,7/*1008*/, 116|128,7/*1012*/, 117|128,7/*1013*/,  // Results = #1014
/* 82388*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82391*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82394*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 118|128,7/*1014*/, 119|128,7/*1015*/, 120|128,7/*1016*/,  // Results = #1017
/* 82406*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 82411*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 121|128,7/*1017*/, 122|128,7/*1018*/,  // Results = #1019
/* 82421*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 82426*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 123|128,7/*1019*/, 124|128,7/*1020*/,  // Results = #1021
/* 82436*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 111|128,7/*1007*/, 125|128,7/*1021*/,  // Results = #1022
/* 82446*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 108|128,7/*1004*/, 126|128,7/*1022*/,  // Results = #1023
/* 82456*/      OPC_EmitInteger, MVT::i32, 2, 
/* 82459*/      OPC_EmitInteger, MVT::i32, 61, 
/* 82462*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 127|128,7/*1023*/, 0|128,8/*1024*/, 1|128,8/*1025*/,  // Results = #1026
/* 82474*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1027
/* 82480*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 82485*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 4|128,8/*1028*/,  // Results = #1029
/* 82493*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 82498*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 5|128,8/*1029*/, 6|128,8/*1030*/,  // Results = #1031
/* 82508*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82511*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 3|128,8/*1027*/, 7|128,8/*1031*/, 8|128,8/*1032*/,  // Results = #1033
/* 82523*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82526*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82529*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 9|128,8/*1033*/, 10|128,8/*1034*/, 11|128,8/*1035*/,  // Results = #1036
/* 82541*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 82546*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 12|128,8/*1036*/, 13|128,8/*1037*/,  // Results = #1038
/* 82556*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 82561*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 14|128,8/*1038*/, 15|128,8/*1039*/,  // Results = #1040
/* 82571*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 2|128,8/*1026*/, 16|128,8/*1040*/,  // Results = #1041
/* 82581*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 90|128,7/*986*/, 17|128,8/*1041*/,  // Results = #1042
/* 82591*/      OPC_EmitInteger, MVT::i32, 4, 
/* 82594*/      OPC_EmitInteger, MVT::i32, 59, 
/* 82597*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 18|128,8/*1042*/, 19|128,8/*1043*/, 20|128,8/*1044*/,  // Results = #1045
/* 82609*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1046
/* 82615*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 82620*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 23|128,8/*1047*/,  // Results = #1048
/* 82628*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 82633*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 24|128,8/*1048*/, 25|128,8/*1049*/,  // Results = #1050
/* 82643*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82646*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 22|128,8/*1046*/, 26|128,8/*1050*/, 27|128,8/*1051*/,  // Results = #1052
/* 82658*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82661*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82664*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 28|128,8/*1052*/, 29|128,8/*1053*/, 30|128,8/*1054*/,  // Results = #1055
/* 82676*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 82681*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 31|128,8/*1055*/, 32|128,8/*1056*/,  // Results = #1057
/* 82691*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 82696*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 33|128,8/*1057*/, 34|128,8/*1058*/,  // Results = #1059
/* 82706*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 21|128,8/*1045*/, 35|128,8/*1059*/,  // Results = #1060
/* 82716*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 35|128,7/*931*/, 36|128,8/*1060*/,  // Results = #1061
/* 82726*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82729*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82732*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 37|128,8/*1061*/, 38|128,8/*1062*/, 39|128,8/*1063*/,  // Results = #1064
/* 82744*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82747*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 40|128,8/*1064*/, 41|128,8/*1065*/,  // Results = #1066
/* 82757*/      OPC_EmitInteger, MVT::i32, 24, 
/* 82760*/      OPC_EmitInteger, MVT::i32, 0, 
/* 82763*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82766*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWINM), 0,
                    MVT::i32, 4/*#Ops*/, 42|128,8/*1066*/, 43|128,8/*1067*/, 44|128,8/*1068*/, 45|128,8/*1069*/,  // Results = #1070
/* 82780*/      OPC_EmitInteger, MVT::i32, 63, 
/* 82783*/      OPC_EmitInteger, MVT::i32, 1, 
/* 82786*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 47|128,8/*1071*/, 48|128,8/*1072*/,  // Results = #1073
/* 82797*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1074
/* 82803*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 82808*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 51|128,8/*1075*/,  // Results = #1076
/* 82816*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 82821*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 52|128,8/*1076*/, 53|128,8/*1077*/,  // Results = #1078
/* 82831*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82834*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 50|128,8/*1074*/, 54|128,8/*1078*/, 55|128,8/*1079*/,  // Results = #1080
/* 82846*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82849*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82852*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 56|128,8/*1080*/, 57|128,8/*1081*/, 58|128,8/*1082*/,  // Results = #1083
/* 82864*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 82869*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 59|128,8/*1083*/, 60|128,8/*1084*/,  // Results = #1085
/* 82879*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 82884*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 61|128,8/*1085*/, 62|128,8/*1086*/,  // Results = #1087
/* 82894*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 49|128,8/*1073*/, 63|128,8/*1087*/,  // Results = #1088
/* 82904*/      OPC_EmitInteger, MVT::i32, 1, 
/* 82907*/      OPC_EmitInteger, MVT::i32, 62, 
/* 82910*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 65|128,8/*1089*/, 66|128,8/*1090*/,  // Results = #1091
/* 82921*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1092
/* 82927*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 82932*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 69|128,8/*1093*/,  // Results = #1094
/* 82940*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 82945*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 70|128,8/*1094*/, 71|128,8/*1095*/,  // Results = #1096
/* 82955*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 82958*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 68|128,8/*1092*/, 72|128,8/*1096*/, 73|128,8/*1097*/,  // Results = #1098
/* 82970*/      OPC_EmitInteger, MVT::i32, 32, 
/* 82973*/      OPC_EmitInteger, MVT::i32, 31, 
/* 82976*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 74|128,8/*1098*/, 75|128,8/*1099*/, 76|128,8/*1100*/,  // Results = #1101
/* 82988*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 82993*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 77|128,8/*1101*/, 78|128,8/*1102*/,  // Results = #1103
/* 83003*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 83008*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 79|128,8/*1103*/, 80|128,8/*1104*/,  // Results = #1105
/* 83018*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 67|128,8/*1091*/, 81|128,8/*1105*/,  // Results = #1106
/* 83028*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 64|128,8/*1088*/, 82|128,8/*1106*/,  // Results = #1107
/* 83038*/      OPC_EmitInteger, MVT::i32, 62, 
/* 83041*/      OPC_EmitInteger, MVT::i32, 2, 
/* 83044*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 83|128,8/*1107*/, 84|128,8/*1108*/, 85|128,8/*1109*/,  // Results = #1110
/* 83056*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1111
/* 83062*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 83066*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 88|128,8/*1112*/,  // Results = #1113
/* 83074*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 83078*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 89|128,8/*1113*/, 90|128,8/*1114*/,  // Results = #1115
/* 83088*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83091*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 87|128,8/*1111*/, 91|128,8/*1115*/, 92|128,8/*1116*/,  // Results = #1117
/* 83103*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83106*/      OPC_EmitInteger, MVT::i32, 31, 
/* 83109*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 93|128,8/*1117*/, 94|128,8/*1118*/, 95|128,8/*1119*/,  // Results = #1120
/* 83121*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 83125*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 96|128,8/*1120*/, 97|128,8/*1121*/,  // Results = #1122
/* 83135*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 83139*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 98|128,8/*1122*/, 99|128,8/*1123*/,  // Results = #1124
/* 83149*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 86|128,8/*1110*/, 100|128,8/*1124*/,  // Results = #1125
/* 83159*/      OPC_EmitInteger, MVT::i32, 63, 
/* 83162*/      OPC_EmitInteger, MVT::i32, 1, 
/* 83165*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 102|128,8/*1126*/, 103|128,8/*1127*/,  // Results = #1128
/* 83176*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1129
/* 83182*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 83187*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 106|128,8/*1130*/,  // Results = #1131
/* 83195*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 83200*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 107|128,8/*1131*/, 108|128,8/*1132*/,  // Results = #1133
/* 83210*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83213*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 105|128,8/*1129*/, 109|128,8/*1133*/, 110|128,8/*1134*/,  // Results = #1135
/* 83225*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83228*/      OPC_EmitInteger, MVT::i32, 31, 
/* 83231*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 111|128,8/*1135*/, 112|128,8/*1136*/, 113|128,8/*1137*/,  // Results = #1138
/* 83243*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 83248*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 114|128,8/*1138*/, 115|128,8/*1139*/,  // Results = #1140
/* 83258*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 83263*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 116|128,8/*1140*/, 117|128,8/*1141*/,  // Results = #1142
/* 83273*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 104|128,8/*1128*/, 118|128,8/*1142*/,  // Results = #1143
/* 83283*/      OPC_EmitInteger, MVT::i32, 1, 
/* 83286*/      OPC_EmitInteger, MVT::i32, 62, 
/* 83289*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 120|128,8/*1144*/, 121|128,8/*1145*/,  // Results = #1146
/* 83300*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1147
/* 83306*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 83311*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 124|128,8/*1148*/,  // Results = #1149
/* 83319*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 83324*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 125|128,8/*1149*/, 126|128,8/*1150*/,  // Results = #1151
/* 83334*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83337*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 123|128,8/*1147*/, 127|128,8/*1151*/, 0|128,9/*1152*/,  // Results = #1153
/* 83349*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83352*/      OPC_EmitInteger, MVT::i32, 31, 
/* 83355*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 1|128,9/*1153*/, 2|128,9/*1154*/, 3|128,9/*1155*/,  // Results = #1156
/* 83367*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 83372*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 4|128,9/*1156*/, 5|128,9/*1157*/,  // Results = #1158
/* 83382*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 83387*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 6|128,9/*1158*/, 7|128,9/*1159*/,  // Results = #1160
/* 83397*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 122|128,8/*1146*/, 8|128,9/*1160*/,  // Results = #1161
/* 83407*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 119|128,8/*1143*/, 9|128,9/*1161*/,  // Results = #1162
/* 83417*/      OPC_EmitInteger, MVT::i32, 2, 
/* 83420*/      OPC_EmitInteger, MVT::i32, 61, 
/* 83423*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 10|128,9/*1162*/, 11|128,9/*1163*/, 12|128,9/*1164*/,  // Results = #1165
/* 83435*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1166
/* 83441*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 83446*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 15|128,9/*1167*/,  // Results = #1168
/* 83454*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 83459*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 16|128,9/*1168*/, 17|128,9/*1169*/,  // Results = #1170
/* 83469*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83472*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 14|128,9/*1166*/, 18|128,9/*1170*/, 19|128,9/*1171*/,  // Results = #1172
/* 83484*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83487*/      OPC_EmitInteger, MVT::i32, 31, 
/* 83490*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 20|128,9/*1172*/, 21|128,9/*1173*/, 22|128,9/*1174*/,  // Results = #1175
/* 83502*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 83507*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 23|128,9/*1175*/, 24|128,9/*1176*/,  // Results = #1177
/* 83517*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 83522*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 25|128,9/*1177*/, 26|128,9/*1178*/,  // Results = #1179
/* 83532*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 13|128,9/*1165*/, 27|128,9/*1179*/,  // Results = #1180
/* 83542*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 101|128,8/*1125*/, 28|128,9/*1180*/,  // Results = #1181
/* 83552*/      OPC_EmitInteger, MVT::i32, 60, 
/* 83555*/      OPC_EmitInteger, MVT::i32, 4, 
/* 83558*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 29|128,9/*1181*/, 30|128,9/*1182*/, 31|128,9/*1183*/,  // Results = #1184
/* 83570*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1185
/* 83576*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 83580*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 34|128,9/*1186*/,  // Results = #1187
/* 83588*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 83592*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 35|128,9/*1187*/, 36|128,9/*1188*/,  // Results = #1189
/* 83602*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83605*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 33|128,9/*1185*/, 37|128,9/*1189*/, 38|128,9/*1190*/,  // Results = #1191
/* 83617*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83620*/      OPC_EmitInteger, MVT::i32, 31, 
/* 83623*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 39|128,9/*1191*/, 40|128,9/*1192*/, 41|128,9/*1193*/,  // Results = #1194
/* 83635*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 83639*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 42|128,9/*1194*/, 43|128,9/*1195*/,  // Results = #1196
/* 83649*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 83653*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 44|128,9/*1196*/, 45|128,9/*1197*/,  // Results = #1198
/* 83663*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 32|128,9/*1184*/, 46|128,9/*1198*/,  // Results = #1199
/* 83673*/      OPC_EmitInteger, MVT::i32, 63, 
/* 83676*/      OPC_EmitInteger, MVT::i32, 1, 
/* 83679*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 48|128,9/*1200*/, 49|128,9/*1201*/,  // Results = #1202
/* 83690*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1203
/* 83696*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 83701*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 52|128,9/*1204*/,  // Results = #1205
/* 83709*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 83714*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 53|128,9/*1205*/, 54|128,9/*1206*/,  // Results = #1207
/* 83724*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83727*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 51|128,9/*1203*/, 55|128,9/*1207*/, 56|128,9/*1208*/,  // Results = #1209
/* 83739*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83742*/      OPC_EmitInteger, MVT::i32, 31, 
/* 83745*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 57|128,9/*1209*/, 58|128,9/*1210*/, 59|128,9/*1211*/,  // Results = #1212
/* 83757*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 83762*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 60|128,9/*1212*/, 61|128,9/*1213*/,  // Results = #1214
/* 83772*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 83777*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 62|128,9/*1214*/, 63|128,9/*1215*/,  // Results = #1216
/* 83787*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 50|128,9/*1202*/, 64|128,9/*1216*/,  // Results = #1217
/* 83797*/      OPC_EmitInteger, MVT::i32, 1, 
/* 83800*/      OPC_EmitInteger, MVT::i32, 62, 
/* 83803*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 66|128,9/*1218*/, 67|128,9/*1219*/,  // Results = #1220
/* 83814*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1221
/* 83820*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 83825*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 70|128,9/*1222*/,  // Results = #1223
/* 83833*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 83838*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 71|128,9/*1223*/, 72|128,9/*1224*/,  // Results = #1225
/* 83848*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83851*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 69|128,9/*1221*/, 73|128,9/*1225*/, 74|128,9/*1226*/,  // Results = #1227
/* 83863*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83866*/      OPC_EmitInteger, MVT::i32, 31, 
/* 83869*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 75|128,9/*1227*/, 76|128,9/*1228*/, 77|128,9/*1229*/,  // Results = #1230
/* 83881*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 83886*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 78|128,9/*1230*/, 79|128,9/*1231*/,  // Results = #1232
/* 83896*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 83901*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 80|128,9/*1232*/, 81|128,9/*1233*/,  // Results = #1234
/* 83911*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 68|128,9/*1220*/, 82|128,9/*1234*/,  // Results = #1235
/* 83921*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 65|128,9/*1217*/, 83|128,9/*1235*/,  // Results = #1236
/* 83931*/      OPC_EmitInteger, MVT::i32, 62, 
/* 83934*/      OPC_EmitInteger, MVT::i32, 2, 
/* 83937*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 84|128,9/*1236*/, 85|128,9/*1237*/, 86|128,9/*1238*/,  // Results = #1239
/* 83949*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1240
/* 83955*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 83959*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 89|128,9/*1241*/,  // Results = #1242
/* 83967*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 83971*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 90|128,9/*1242*/, 91|128,9/*1243*/,  // Results = #1244
/* 83981*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 83984*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 88|128,9/*1240*/, 92|128,9/*1244*/, 93|128,9/*1245*/,  // Results = #1246
/* 83996*/      OPC_EmitInteger, MVT::i32, 32, 
/* 83999*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84002*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 94|128,9/*1246*/, 95|128,9/*1247*/, 96|128,9/*1248*/,  // Results = #1249
/* 84014*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 84018*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 97|128,9/*1249*/, 98|128,9/*1250*/,  // Results = #1251
/* 84028*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 84032*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 99|128,9/*1251*/, 100|128,9/*1252*/,  // Results = #1253
/* 84042*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 87|128,9/*1239*/, 101|128,9/*1253*/,  // Results = #1254
/* 84052*/      OPC_EmitInteger, MVT::i32, 63, 
/* 84055*/      OPC_EmitInteger, MVT::i32, 1, 
/* 84058*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 103|128,9/*1255*/, 104|128,9/*1256*/,  // Results = #1257
/* 84069*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1258
/* 84075*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 84080*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 107|128,9/*1259*/,  // Results = #1260
/* 84088*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 84093*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 108|128,9/*1260*/, 109|128,9/*1261*/,  // Results = #1262
/* 84103*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84106*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 106|128,9/*1258*/, 110|128,9/*1262*/, 111|128,9/*1263*/,  // Results = #1264
/* 84118*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84121*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84124*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 112|128,9/*1264*/, 113|128,9/*1265*/, 114|128,9/*1266*/,  // Results = #1267
/* 84136*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 84141*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 115|128,9/*1267*/, 116|128,9/*1268*/,  // Results = #1269
/* 84151*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 84156*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 117|128,9/*1269*/, 118|128,9/*1270*/,  // Results = #1271
/* 84166*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 105|128,9/*1257*/, 119|128,9/*1271*/,  // Results = #1272
/* 84176*/      OPC_EmitInteger, MVT::i32, 1, 
/* 84179*/      OPC_EmitInteger, MVT::i32, 62, 
/* 84182*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 121|128,9/*1273*/, 122|128,9/*1274*/,  // Results = #1275
/* 84193*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1276
/* 84199*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 84204*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 125|128,9/*1277*/,  // Results = #1278
/* 84212*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 84217*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 126|128,9/*1278*/, 127|128,9/*1279*/,  // Results = #1280
/* 84227*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84230*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 124|128,9/*1276*/, 0|128,10/*1280*/, 1|128,10/*1281*/,  // Results = #1282
/* 84242*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84245*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84248*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 2|128,10/*1282*/, 3|128,10/*1283*/, 4|128,10/*1284*/,  // Results = #1285
/* 84260*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 84265*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 5|128,10/*1285*/, 6|128,10/*1286*/,  // Results = #1287
/* 84275*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 84280*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 7|128,10/*1287*/, 8|128,10/*1288*/,  // Results = #1289
/* 84290*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 123|128,9/*1275*/, 9|128,10/*1289*/,  // Results = #1290
/* 84300*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 120|128,9/*1272*/, 10|128,10/*1290*/,  // Results = #1291
/* 84310*/      OPC_EmitInteger, MVT::i32, 2, 
/* 84313*/      OPC_EmitInteger, MVT::i32, 61, 
/* 84316*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 11|128,10/*1291*/, 12|128,10/*1292*/, 13|128,10/*1293*/,  // Results = #1294
/* 84328*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1295
/* 84334*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 84339*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 16|128,10/*1296*/,  // Results = #1297
/* 84347*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 84352*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 17|128,10/*1297*/, 18|128,10/*1298*/,  // Results = #1299
/* 84362*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84365*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 15|128,10/*1295*/, 19|128,10/*1299*/, 20|128,10/*1300*/,  // Results = #1301
/* 84377*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84380*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84383*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 21|128,10/*1301*/, 22|128,10/*1302*/, 23|128,10/*1303*/,  // Results = #1304
/* 84395*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 84400*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 24|128,10/*1304*/, 25|128,10/*1305*/,  // Results = #1306
/* 84410*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 84415*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 26|128,10/*1306*/, 27|128,10/*1307*/,  // Results = #1308
/* 84425*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 14|128,10/*1294*/, 28|128,10/*1308*/,  // Results = #1309
/* 84435*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 102|128,9/*1254*/, 29|128,10/*1309*/,  // Results = #1310
/* 84445*/      OPC_EmitInteger, MVT::i32, 4, 
/* 84448*/      OPC_EmitInteger, MVT::i32, 59, 
/* 84451*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 30|128,10/*1310*/, 31|128,10/*1311*/, 32|128,10/*1312*/,  // Results = #1313
/* 84463*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1314
/* 84469*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 84474*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 35|128,10/*1315*/,  // Results = #1316
/* 84482*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 84487*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 36|128,10/*1316*/, 37|128,10/*1317*/,  // Results = #1318
/* 84497*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84500*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 34|128,10/*1314*/, 38|128,10/*1318*/, 39|128,10/*1319*/,  // Results = #1320
/* 84512*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84515*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84518*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 40|128,10/*1320*/, 41|128,10/*1321*/, 42|128,10/*1322*/,  // Results = #1323
/* 84530*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 84535*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 43|128,10/*1323*/, 44|128,10/*1324*/,  // Results = #1325
/* 84545*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 84550*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 45|128,10/*1325*/, 46|128,10/*1326*/,  // Results = #1327
/* 84560*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 33|128,10/*1313*/, 47|128,10/*1327*/,  // Results = #1328
/* 84570*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 47|128,9/*1199*/, 48|128,10/*1328*/,  // Results = #1329
/* 84580*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84583*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84586*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 49|128,10/*1329*/, 50|128,10/*1330*/, 51|128,10/*1331*/,  // Results = #1332
/* 84598*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84601*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 52|128,10/*1332*/, 53|128,10/*1333*/,  // Results = #1334
/* 84611*/      OPC_EmitInteger, MVT::i32, 8, 
/* 84614*/      OPC_EmitInteger, MVT::i32, 8, 
/* 84617*/      OPC_EmitInteger, MVT::i32, 15, 
/* 84620*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWIMI), 0,
                    MVT::i32, 5/*#Ops*/, 46|128,8/*1070*/, 54|128,10/*1334*/, 55|128,10/*1335*/, 56|128,10/*1336*/, 57|128,10/*1337*/,  // Results = #1338
/* 84636*/      OPC_EmitInteger, MVT::i32, 63, 
/* 84639*/      OPC_EmitInteger, MVT::i32, 1, 
/* 84642*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 59|128,10/*1339*/, 60|128,10/*1340*/,  // Results = #1341
/* 84653*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1342
/* 84659*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 84664*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 63|128,10/*1343*/,  // Results = #1344
/* 84672*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 84677*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 64|128,10/*1344*/, 65|128,10/*1345*/,  // Results = #1346
/* 84687*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84690*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 62|128,10/*1342*/, 66|128,10/*1346*/, 67|128,10/*1347*/,  // Results = #1348
/* 84702*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84705*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84708*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 68|128,10/*1348*/, 69|128,10/*1349*/, 70|128,10/*1350*/,  // Results = #1351
/* 84720*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 84725*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 71|128,10/*1351*/, 72|128,10/*1352*/,  // Results = #1353
/* 84735*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 84740*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 73|128,10/*1353*/, 74|128,10/*1354*/,  // Results = #1355
/* 84750*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 61|128,10/*1341*/, 75|128,10/*1355*/,  // Results = #1356
/* 84760*/      OPC_EmitInteger, MVT::i32, 1, 
/* 84763*/      OPC_EmitInteger, MVT::i32, 62, 
/* 84766*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 77|128,10/*1357*/, 78|128,10/*1358*/,  // Results = #1359
/* 84777*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1360
/* 84783*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 84788*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 81|128,10/*1361*/,  // Results = #1362
/* 84796*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 84801*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 82|128,10/*1362*/, 83|128,10/*1363*/,  // Results = #1364
/* 84811*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84814*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 80|128,10/*1360*/, 84|128,10/*1364*/, 85|128,10/*1365*/,  // Results = #1366
/* 84826*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84829*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84832*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 86|128,10/*1366*/, 87|128,10/*1367*/, 88|128,10/*1368*/,  // Results = #1369
/* 84844*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 84849*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 89|128,10/*1369*/, 90|128,10/*1370*/,  // Results = #1371
/* 84859*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 84864*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 91|128,10/*1371*/, 92|128,10/*1372*/,  // Results = #1373
/* 84874*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 79|128,10/*1359*/, 93|128,10/*1373*/,  // Results = #1374
/* 84884*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 76|128,10/*1356*/, 94|128,10/*1374*/,  // Results = #1375
/* 84894*/      OPC_EmitInteger, MVT::i32, 62, 
/* 84897*/      OPC_EmitInteger, MVT::i32, 2, 
/* 84900*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 95|128,10/*1375*/, 96|128,10/*1376*/, 97|128,10/*1377*/,  // Results = #1378
/* 84912*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1379
/* 84918*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 84922*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 100|128,10/*1380*/,  // Results = #1381
/* 84930*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 84934*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 101|128,10/*1381*/, 102|128,10/*1382*/,  // Results = #1383
/* 84944*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 84947*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 99|128,10/*1379*/, 103|128,10/*1383*/, 104|128,10/*1384*/,  // Results = #1385
/* 84959*/      OPC_EmitInteger, MVT::i32, 32, 
/* 84962*/      OPC_EmitInteger, MVT::i32, 31, 
/* 84965*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 105|128,10/*1385*/, 106|128,10/*1386*/, 107|128,10/*1387*/,  // Results = #1388
/* 84977*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 84981*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 108|128,10/*1388*/, 109|128,10/*1389*/,  // Results = #1390
/* 84991*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 84995*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 110|128,10/*1390*/, 111|128,10/*1391*/,  // Results = #1392
/* 85005*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 98|128,10/*1378*/, 112|128,10/*1392*/,  // Results = #1393
/* 85015*/      OPC_EmitInteger, MVT::i32, 63, 
/* 85018*/      OPC_EmitInteger, MVT::i32, 1, 
/* 85021*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 114|128,10/*1394*/, 115|128,10/*1395*/,  // Results = #1396
/* 85032*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1397
/* 85038*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 85043*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 118|128,10/*1398*/,  // Results = #1399
/* 85051*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 85056*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 119|128,10/*1399*/, 120|128,10/*1400*/,  // Results = #1401
/* 85066*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85069*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 117|128,10/*1397*/, 121|128,10/*1401*/, 122|128,10/*1402*/,  // Results = #1403
/* 85081*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85084*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85087*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 123|128,10/*1403*/, 124|128,10/*1404*/, 125|128,10/*1405*/,  // Results = #1406
/* 85099*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 85104*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 126|128,10/*1406*/, 127|128,10/*1407*/,  // Results = #1408
/* 85114*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 85119*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 0|128,11/*1408*/, 1|128,11/*1409*/,  // Results = #1410
/* 85129*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 116|128,10/*1396*/, 2|128,11/*1410*/,  // Results = #1411
/* 85139*/      OPC_EmitInteger, MVT::i32, 1, 
/* 85142*/      OPC_EmitInteger, MVT::i32, 62, 
/* 85145*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 4|128,11/*1412*/, 5|128,11/*1413*/,  // Results = #1414
/* 85156*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1415
/* 85162*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 85167*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 8|128,11/*1416*/,  // Results = #1417
/* 85175*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 85180*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 9|128,11/*1417*/, 10|128,11/*1418*/,  // Results = #1419
/* 85190*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85193*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 7|128,11/*1415*/, 11|128,11/*1419*/, 12|128,11/*1420*/,  // Results = #1421
/* 85205*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85208*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85211*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 13|128,11/*1421*/, 14|128,11/*1422*/, 15|128,11/*1423*/,  // Results = #1424
/* 85223*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 85228*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 16|128,11/*1424*/, 17|128,11/*1425*/,  // Results = #1426
/* 85238*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 85243*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 18|128,11/*1426*/, 19|128,11/*1427*/,  // Results = #1428
/* 85253*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 6|128,11/*1414*/, 20|128,11/*1428*/,  // Results = #1429
/* 85263*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 3|128,11/*1411*/, 21|128,11/*1429*/,  // Results = #1430
/* 85273*/      OPC_EmitInteger, MVT::i32, 2, 
/* 85276*/      OPC_EmitInteger, MVT::i32, 61, 
/* 85279*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 22|128,11/*1430*/, 23|128,11/*1431*/, 24|128,11/*1432*/,  // Results = #1433
/* 85291*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1434
/* 85297*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 85302*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 27|128,11/*1435*/,  // Results = #1436
/* 85310*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 85315*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 28|128,11/*1436*/, 29|128,11/*1437*/,  // Results = #1438
/* 85325*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85328*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 26|128,11/*1434*/, 30|128,11/*1438*/, 31|128,11/*1439*/,  // Results = #1440
/* 85340*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85343*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85346*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 32|128,11/*1440*/, 33|128,11/*1441*/, 34|128,11/*1442*/,  // Results = #1443
/* 85358*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 85363*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 35|128,11/*1443*/, 36|128,11/*1444*/,  // Results = #1445
/* 85373*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 85378*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 37|128,11/*1445*/, 38|128,11/*1446*/,  // Results = #1447
/* 85388*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 25|128,11/*1433*/, 39|128,11/*1447*/,  // Results = #1448
/* 85398*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 113|128,10/*1393*/, 40|128,11/*1448*/,  // Results = #1449
/* 85408*/      OPC_EmitInteger, MVT::i32, 60, 
/* 85411*/      OPC_EmitInteger, MVT::i32, 4, 
/* 85414*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 41|128,11/*1449*/, 42|128,11/*1450*/, 43|128,11/*1451*/,  // Results = #1452
/* 85426*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1453
/* 85432*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 85436*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 46|128,11/*1454*/,  // Results = #1455
/* 85444*/      OPC_EmitInteger, MVT::i32, 15|128,30/*3855*/, 
/* 85448*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 47|128,11/*1455*/, 48|128,11/*1456*/,  // Results = #1457
/* 85458*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85461*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 45|128,11/*1453*/, 49|128,11/*1457*/, 50|128,11/*1458*/,  // Results = #1459
/* 85473*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85476*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85479*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 51|128,11/*1459*/, 52|128,11/*1460*/, 53|128,11/*1461*/,  // Results = #1462
/* 85491*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 85495*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 54|128,11/*1462*/, 55|128,11/*1463*/,  // Results = #1464
/* 85505*/      OPC_EmitInteger, MVT::i64, 15|128,30/*3855*/, 
/* 85509*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 56|128,11/*1464*/, 57|128,11/*1465*/,  // Results = #1466
/* 85519*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 44|128,11/*1452*/, 58|128,11/*1466*/,  // Results = #1467
/* 85529*/      OPC_EmitInteger, MVT::i32, 63, 
/* 85532*/      OPC_EmitInteger, MVT::i32, 1, 
/* 85535*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 60|128,11/*1468*/, 61|128,11/*1469*/,  // Results = #1470
/* 85546*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1471
/* 85552*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 85557*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 64|128,11/*1472*/,  // Results = #1473
/* 85565*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 85570*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 65|128,11/*1473*/, 66|128,11/*1474*/,  // Results = #1475
/* 85580*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85583*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 63|128,11/*1471*/, 67|128,11/*1475*/, 68|128,11/*1476*/,  // Results = #1477
/* 85595*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85598*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85601*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 69|128,11/*1477*/, 70|128,11/*1478*/, 71|128,11/*1479*/,  // Results = #1480
/* 85613*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 85618*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 72|128,11/*1480*/, 73|128,11/*1481*/,  // Results = #1482
/* 85628*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 85633*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 74|128,11/*1482*/, 75|128,11/*1483*/,  // Results = #1484
/* 85643*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 62|128,11/*1470*/, 76|128,11/*1484*/,  // Results = #1485
/* 85653*/      OPC_EmitInteger, MVT::i32, 1, 
/* 85656*/      OPC_EmitInteger, MVT::i32, 62, 
/* 85659*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 78|128,11/*1486*/, 79|128,11/*1487*/,  // Results = #1488
/* 85670*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1489
/* 85676*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 85681*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 82|128,11/*1490*/,  // Results = #1491
/* 85689*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 85694*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 83|128,11/*1491*/, 84|128,11/*1492*/,  // Results = #1493
/* 85704*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85707*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 81|128,11/*1489*/, 85|128,11/*1493*/, 86|128,11/*1494*/,  // Results = #1495
/* 85719*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85722*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85725*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 87|128,11/*1495*/, 88|128,11/*1496*/, 89|128,11/*1497*/,  // Results = #1498
/* 85737*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 85742*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 90|128,11/*1498*/, 91|128,11/*1499*/,  // Results = #1500
/* 85752*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 85757*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 92|128,11/*1500*/, 93|128,11/*1501*/,  // Results = #1502
/* 85767*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 80|128,11/*1488*/, 94|128,11/*1502*/,  // Results = #1503
/* 85777*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 77|128,11/*1485*/, 95|128,11/*1503*/,  // Results = #1504
/* 85787*/      OPC_EmitInteger, MVT::i32, 62, 
/* 85790*/      OPC_EmitInteger, MVT::i32, 2, 
/* 85793*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 96|128,11/*1504*/, 97|128,11/*1505*/, 98|128,11/*1506*/,  // Results = #1507
/* 85805*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1508
/* 85811*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 85815*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 101|128,11/*1509*/,  // Results = #1510
/* 85823*/      OPC_EmitInteger, MVT::i32, 51|128,102/*13107*/, 
/* 85827*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 102|128,11/*1510*/, 103|128,11/*1511*/,  // Results = #1512
/* 85837*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85840*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 100|128,11/*1508*/, 104|128,11/*1512*/, 105|128,11/*1513*/,  // Results = #1514
/* 85852*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85855*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85858*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 106|128,11/*1514*/, 107|128,11/*1515*/, 108|128,11/*1516*/,  // Results = #1517
/* 85870*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 85874*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 109|128,11/*1517*/, 110|128,11/*1518*/,  // Results = #1519
/* 85884*/      OPC_EmitInteger, MVT::i64, 51|128,102/*13107*/, 
/* 85888*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 111|128,11/*1519*/, 112|128,11/*1520*/,  // Results = #1521
/* 85898*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 99|128,11/*1507*/, 113|128,11/*1521*/,  // Results = #1522
/* 85908*/      OPC_EmitInteger, MVT::i32, 63, 
/* 85911*/      OPC_EmitInteger, MVT::i32, 1, 
/* 85914*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 0, 115|128,11/*1523*/, 116|128,11/*1524*/,  // Results = #1525
/* 85925*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1526
/* 85931*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 85936*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 119|128,11/*1527*/,  // Results = #1528
/* 85944*/      OPC_EmitInteger, MVT::i32, 85|128,42|128,1/*21845*/, 
/* 85949*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 120|128,11/*1528*/, 121|128,11/*1529*/,  // Results = #1530
/* 85959*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 85962*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 118|128,11/*1526*/, 122|128,11/*1530*/, 123|128,11/*1531*/,  // Results = #1532
/* 85974*/      OPC_EmitInteger, MVT::i32, 32, 
/* 85977*/      OPC_EmitInteger, MVT::i32, 31, 
/* 85980*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 124|128,11/*1532*/, 125|128,11/*1533*/, 126|128,11/*1534*/,  // Results = #1535
/* 85992*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 85997*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 127|128,11/*1535*/, 0|128,12/*1536*/,  // Results = #1537
/* 86007*/      OPC_EmitInteger, MVT::i64, 85|128,42|128,1/*21845*/, 
/* 86012*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 1|128,12/*1537*/, 2|128,12/*1538*/,  // Results = #1539
/* 86022*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 117|128,11/*1525*/, 3|128,12/*1539*/,  // Results = #1540
/* 86032*/      OPC_EmitInteger, MVT::i32, 1, 
/* 86035*/      OPC_EmitInteger, MVT::i32, 62, 
/* 86038*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 0, 5|128,12/*1541*/, 6|128,12/*1542*/,  // Results = #1543
/* 86049*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1544
/* 86055*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 86060*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 9|128,12/*1545*/,  // Results = #1546
/* 86068*/      OPC_EmitInteger, MVT::i32, 42|128,85|128,2/*43690*/, 
/* 86073*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 10|128,12/*1546*/, 11|128,12/*1547*/,  // Results = #1548
/* 86083*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 86086*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 8|128,12/*1544*/, 12|128,12/*1548*/, 13|128,12/*1549*/,  // Results = #1550
/* 86098*/      OPC_EmitInteger, MVT::i32, 32, 
/* 86101*/      OPC_EmitInteger, MVT::i32, 31, 
/* 86104*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 14|128,12/*1550*/, 15|128,12/*1551*/, 16|128,12/*1552*/,  // Results = #1553
/* 86116*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 86121*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 17|128,12/*1553*/, 18|128,12/*1554*/,  // Results = #1555
/* 86131*/      OPC_EmitInteger, MVT::i64, 42|128,85|128,2/*43690*/, 
/* 86136*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 19|128,12/*1555*/, 20|128,12/*1556*/,  // Results = #1557
/* 86146*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 7|128,12/*1543*/, 21|128,12/*1557*/,  // Results = #1558
/* 86156*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 4|128,12/*1540*/, 22|128,12/*1558*/,  // Results = #1559
/* 86166*/      OPC_EmitInteger, MVT::i32, 2, 
/* 86169*/      OPC_EmitInteger, MVT::i32, 61, 
/* 86172*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 23|128,12/*1559*/, 24|128,12/*1560*/, 25|128,12/*1561*/,  // Results = #1562
/* 86184*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1563
/* 86190*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 86195*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 28|128,12/*1564*/,  // Results = #1565
/* 86203*/      OPC_EmitInteger, MVT::i32, 76|128,25|128,3/*52428*/, 
/* 86208*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 29|128,12/*1565*/, 30|128,12/*1566*/,  // Results = #1567
/* 86218*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 86221*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 27|128,12/*1563*/, 31|128,12/*1567*/, 32|128,12/*1568*/,  // Results = #1569
/* 86233*/      OPC_EmitInteger, MVT::i32, 32, 
/* 86236*/      OPC_EmitInteger, MVT::i32, 31, 
/* 86239*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 33|128,12/*1569*/, 34|128,12/*1570*/, 35|128,12/*1571*/,  // Results = #1572
/* 86251*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 86256*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 36|128,12/*1572*/, 37|128,12/*1573*/,  // Results = #1574
/* 86266*/      OPC_EmitInteger, MVT::i64, 76|128,25|128,3/*52428*/, 
/* 86271*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 38|128,12/*1574*/, 39|128,12/*1575*/,  // Results = #1576
/* 86281*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 26|128,12/*1562*/, 40|128,12/*1576*/,  // Results = #1577
/* 86291*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 114|128,11/*1522*/, 41|128,12/*1577*/,  // Results = #1578
/* 86301*/      OPC_EmitInteger, MVT::i32, 4, 
/* 86304*/      OPC_EmitInteger, MVT::i32, 59, 
/* 86307*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 42|128,12/*1578*/, 43|128,12/*1579*/, 44|128,12/*1580*/,  // Results = #1581
/* 86319*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                    MVT::i64, 0/*#Ops*/,  // Results = #1582
/* 86325*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 86330*/      OPC_EmitNode1, TARGET_VAL(PPC::LIS), 0,
                    MVT::i32, 1/*#Ops*/, 47|128,12/*1583*/,  // Results = #1584
/* 86338*/      OPC_EmitInteger, MVT::i32, 112|128,97|128,3/*61680*/, 
/* 86343*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI), 0,
                    MVT::i32, 2/*#Ops*/, 48|128,12/*1584*/, 49|128,12/*1585*/,  // Results = #1586
/* 86353*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 86356*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 46|128,12/*1582*/, 50|128,12/*1586*/, 51|128,12/*1587*/,  // Results = #1588
/* 86368*/      OPC_EmitInteger, MVT::i32, 32, 
/* 86371*/      OPC_EmitInteger, MVT::i32, 31, 
/* 86374*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                    MVT::i64, 3/*#Ops*/, 52|128,12/*1588*/, 53|128,12/*1589*/, 54|128,12/*1590*/,  // Results = #1591
/* 86386*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 86391*/      OPC_EmitNode1, TARGET_VAL(PPC::ORIS8), 0,
                    MVT::i64, 2/*#Ops*/, 55|128,12/*1591*/, 56|128,12/*1592*/,  // Results = #1593
/* 86401*/      OPC_EmitInteger, MVT::i64, 112|128,97|128,3/*61680*/, 
/* 86406*/      OPC_EmitNode1, TARGET_VAL(PPC::ORI8), 0,
                    MVT::i64, 2/*#Ops*/, 57|128,12/*1593*/, 58|128,12/*1594*/,  // Results = #1595
/* 86416*/      OPC_EmitNode1, TARGET_VAL(PPC::AND8), 0,
                    MVT::i64, 2/*#Ops*/, 45|128,12/*1581*/, 59|128,12/*1595*/,  // Results = #1596
/* 86426*/      OPC_EmitNode1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 59|128,11/*1467*/, 60|128,12/*1596*/,  // Results = #1597
/* 86436*/      OPC_EmitInteger, MVT::i32, 32, 
/* 86439*/      OPC_EmitInteger, MVT::i32, 32, 
/* 86442*/      OPC_EmitNode1, TARGET_VAL(PPC::RLDICL), 0,
                    MVT::i64, 3/*#Ops*/, 61|128,12/*1597*/, 62|128,12/*1598*/, 63|128,12/*1599*/,  // Results = #1600
/* 86454*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 86457*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                    MVT::i32, 2/*#Ops*/, 64|128,12/*1600*/, 65|128,12/*1601*/,  // Results = #1602
/* 86467*/      OPC_EmitInteger, MVT::i32, 8, 
/* 86470*/      OPC_EmitInteger, MVT::i32, 24, 
/* 86473*/      OPC_EmitInteger, MVT::i32, 31, 
/* 86476*/      OPC_EmitNode1, TARGET_VAL(PPC::RLWIMI), 0,
                    MVT::i32, 5/*#Ops*/, 58|128,10/*1338*/, 66|128,12/*1602*/, 67|128,12/*1603*/, 68|128,12/*1604*/, 69|128,12/*1605*/,  // Results = #1606
/* 86492*/      OPC_EmitInteger, MVT::i32, PPC::sub_32,
/* 86495*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                    MVT::i64, 3/*#Ops*/, 34|128,6/*802*/, 70|128,12/*1606*/, 71|128,12/*1607*/,  // Results = #1608
/* 86507*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::OR8), 0,
                    MVT::i64, 2/*#Ops*/, 33|128,6/*801*/, 72|128,12/*1608*/, 
                // Src: (bitreverse:{ *:[i64] } i64:{ *:[i64] }:$A) - Complexity = 3
                // Dst: (OR8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWIMI:{ *:[i32] } (RLWIMI:{ *:[i32] } (RLWINM:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i32] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 60:{ *:[i32] }, 4:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 3855:{ *:[i64] }), 3855:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 4:{ *:[i32] }, 59:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 61680:{ *:[i64] }), 61680:{ *:[i64] }))), sub_32:{ *:[i32] }), 24:{ *:[i32] }, 0:{ *:[i32] }, 31:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i32] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 60:{ *:[i32] }, 4:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 3855:{ *:[i64] }), 3855:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 4:{ *:[i32] }, 59:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 61680:{ *:[i64] }), 61680:{ *:[i64] }))), sub_32:{ *:[i32] }), 8:{ *:[i32] }, 8:{ *:[i32] }, 15:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i32] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 60:{ *:[i32] }, 4:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 3855:{ *:[i64] }), 3855:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 4:{ *:[i32] }, 59:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 61680:{ *:[i64] }), 61680:{ *:[i64] }))), sub_32:{ *:[i32] }), 8:{ *:[i32] }, 24:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (RLWIMI:{ *:[i32] } (RLWIMI:{ *:[i32] } (RLWINM:{ *:[i32] } (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 60:{ *:[i32] }, 4:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 3855:{ *:[i64] }), 3855:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 4:{ *:[i32] }, 59:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 61680:{ *:[i64] }), 61680:{ *:[i64] }))), 32:{ *:[i32] }, 32:{ *:[i32] }), sub_32:{ *:[i32] }), 24:{ *:[i32] }, 0:{ *:[i32] }, 31:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 60:{ *:[i32] }, 4:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 3855:{ *:[i64] }), 3855:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 4:{ *:[i32] }, 59:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 61680:{ *:[i64] }), 61680:{ *:[i64] }))), 32:{ *:[i32] }, 32:{ *:[i32] }), sub_32:{ *:[i32] }), 8:{ *:[i32] }, 8:{ *:[i32] }, 15:{ *:[i32] }), (EXTRACT_SUBREG:{ *:[i32] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 60:{ *:[i32] }, 4:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 3855:{ *:[i32] }), 3855:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 3855:{ *:[i64] }), 3855:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 62:{ *:[i32] }, 2:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 13107:{ *:[i32] }), 13107:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 13107:{ *:[i64] }), 13107:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } (OR8:{ *:[i64] } (AND8:{ *:[i64] } (RLDICL:{ *:[i64] } ?:{ *:[i64] }:$A, 63:{ *:[i32] }, 1:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 21845:{ *:[i32] }), 21845:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 21845:{ *:[i64] }), 21845:{ *:[i64] })), (AND8:{ *:[i64] } (RLDICR:{ *:[i64] } ?:{ *:[i64] }:$A, 1:{ *:[i32] }, 62:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 43690:{ *:[i32] }), 43690:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 43690:{ *:[i64] }), 43690:{ *:[i64] }))), 2:{ *:[i32] }, 61:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 52428:{ *:[i32] }), 52428:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 52428:{ *:[i64] }), 52428:{ *:[i64] }))), 4:{ *:[i32] }, 59:{ *:[i32] }), (ORI8:{ *:[i64] } (ORIS8:{ *:[i64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), (ORI:{ *:[i32] } (LIS:{ *:[i32] } 61680:{ *:[i32] }), 61680:{ *:[i32] }), sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] }), 61680:{ *:[i64] }), 61680:{ *:[i64] }))), 32:{ *:[i32] }, 32:{ *:[i32] }), sub_32:{ *:[i32] }), 8:{ *:[i32] }, 24:{ *:[i32] }, 31:{ *:[i32] }), sub_32:{ *:[i32] }))
/* 86517*/    0, // EndSwitchType
/* 86518*/  /*SwitchOpcode*/ 13|128,21/*2701*/, TARGET_VAL(ISD::UINT_TO_FP),// ->89223
/* 86522*/    OPC_Scope, 24|128,20/*2584*/, /*->89109*/ // 2 children in Scope
/* 86525*/      OPC_MoveChild0,
/* 86526*/      OPC_Scope, 77|128,2/*333*/, /*->86862*/ // 7 children in Scope
/* 86529*/        OPC_CheckAndImm, 127|128,127|128,3/*65535*/, 
/* 86533*/        OPC_MoveChild0,
/* 86534*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 86537*/        OPC_RecordChild0, // #0 = $src
/* 86538*/        OPC_CheckChild0Type, MVT::v8i16,
/* 86540*/        OPC_Scope, 39, /*->86581*/ // 8 children in Scope
/* 86542*/          OPC_CheckChild1Integer, 0, 
/* 86544*/          OPC_MoveParent,
/* 86545*/          OPC_CheckType, MVT::i32,
/* 86547*/          OPC_MoveParent,
/* 86548*/          OPC_CheckType, MVT::f128,
/* 86550*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86552*/          OPC_EmitInteger, MVT::i32, 0, 
/* 86555*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86563*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86566*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86574*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 0:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86581*/        /*Scope*/ 39, /*->86621*/
/* 86582*/          OPC_CheckChild1Integer, 1, 
/* 86584*/          OPC_MoveParent,
/* 86585*/          OPC_CheckType, MVT::i32,
/* 86587*/          OPC_MoveParent,
/* 86588*/          OPC_CheckType, MVT::f128,
/* 86590*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86592*/          OPC_EmitInteger, MVT::i32, 2, 
/* 86595*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86603*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86606*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86614*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 1:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86621*/        /*Scope*/ 39, /*->86661*/
/* 86622*/          OPC_CheckChild1Integer, 2, 
/* 86624*/          OPC_MoveParent,
/* 86625*/          OPC_CheckType, MVT::i32,
/* 86627*/          OPC_MoveParent,
/* 86628*/          OPC_CheckType, MVT::f128,
/* 86630*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86632*/          OPC_EmitInteger, MVT::i32, 4, 
/* 86635*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86643*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86646*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86654*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 2:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86661*/        /*Scope*/ 39, /*->86701*/
/* 86662*/          OPC_CheckChild1Integer, 3, 
/* 86664*/          OPC_MoveParent,
/* 86665*/          OPC_CheckType, MVT::i32,
/* 86667*/          OPC_MoveParent,
/* 86668*/          OPC_CheckType, MVT::f128,
/* 86670*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86672*/          OPC_EmitInteger, MVT::i32, 6, 
/* 86675*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86683*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86686*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86694*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 3:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86701*/        /*Scope*/ 39, /*->86741*/
/* 86702*/          OPC_CheckChild1Integer, 4, 
/* 86704*/          OPC_MoveParent,
/* 86705*/          OPC_CheckType, MVT::i32,
/* 86707*/          OPC_MoveParent,
/* 86708*/          OPC_CheckType, MVT::f128,
/* 86710*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86712*/          OPC_EmitInteger, MVT::i32, 8, 
/* 86715*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86723*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86726*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86734*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 4:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86741*/        /*Scope*/ 39, /*->86781*/
/* 86742*/          OPC_CheckChild1Integer, 5, 
/* 86744*/          OPC_MoveParent,
/* 86745*/          OPC_CheckType, MVT::i32,
/* 86747*/          OPC_MoveParent,
/* 86748*/          OPC_CheckType, MVT::f128,
/* 86750*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86752*/          OPC_EmitInteger, MVT::i32, 10, 
/* 86755*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86763*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86766*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86774*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 5:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86781*/        /*Scope*/ 39, /*->86821*/
/* 86782*/          OPC_CheckChild1Integer, 6, 
/* 86784*/          OPC_MoveParent,
/* 86785*/          OPC_CheckType, MVT::i32,
/* 86787*/          OPC_MoveParent,
/* 86788*/          OPC_CheckType, MVT::f128,
/* 86790*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86792*/          OPC_EmitInteger, MVT::i32, 12, 
/* 86795*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86803*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86806*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86814*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 6:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86821*/        /*Scope*/ 39, /*->86861*/
/* 86822*/          OPC_CheckChild1Integer, 7, 
/* 86824*/          OPC_MoveParent,
/* 86825*/          OPC_CheckType, MVT::i32,
/* 86827*/          OPC_MoveParent,
/* 86828*/          OPC_CheckType, MVT::f128,
/* 86830*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86832*/          OPC_EmitInteger, MVT::i32, 14, 
/* 86835*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86843*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86846*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86854*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 7:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 86861*/        0, /*End of Scope*/
/* 86862*/      /*Scope*/ 12|128,5/*652*/, /*->87516*/
/* 86864*/        OPC_CheckAndImm, 127|128,1/*255*/, 
/* 86867*/        OPC_MoveChild0,
/* 86868*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 86871*/        OPC_RecordChild0, // #0 = $src
/* 86872*/        OPC_CheckChild0Type, MVT::v16i8,
/* 86874*/        OPC_Scope, 39, /*->86915*/ // 16 children in Scope
/* 86876*/          OPC_CheckChild1Integer, 0, 
/* 86878*/          OPC_MoveParent,
/* 86879*/          OPC_CheckType, MVT::i32,
/* 86881*/          OPC_MoveParent,
/* 86882*/          OPC_CheckType, MVT::f128,
/* 86884*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86886*/          OPC_EmitInteger, MVT::i32, 0, 
/* 86889*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86897*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86900*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86908*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 0:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 86915*/        /*Scope*/ 39, /*->86955*/
/* 86916*/          OPC_CheckChild1Integer, 1, 
/* 86918*/          OPC_MoveParent,
/* 86919*/          OPC_CheckType, MVT::i32,
/* 86921*/          OPC_MoveParent,
/* 86922*/          OPC_CheckType, MVT::f128,
/* 86924*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86926*/          OPC_EmitInteger, MVT::i32, 1, 
/* 86929*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86937*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86940*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86948*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 1:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 1:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 86955*/        /*Scope*/ 39, /*->86995*/
/* 86956*/          OPC_CheckChild1Integer, 2, 
/* 86958*/          OPC_MoveParent,
/* 86959*/          OPC_CheckType, MVT::i32,
/* 86961*/          OPC_MoveParent,
/* 86962*/          OPC_CheckType, MVT::f128,
/* 86964*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 86966*/          OPC_EmitInteger, MVT::i32, 2, 
/* 86969*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 86977*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 86980*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 86988*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 2:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 86995*/        /*Scope*/ 39, /*->87035*/
/* 86996*/          OPC_CheckChild1Integer, 3, 
/* 86998*/          OPC_MoveParent,
/* 86999*/          OPC_CheckType, MVT::i32,
/* 87001*/          OPC_MoveParent,
/* 87002*/          OPC_CheckType, MVT::f128,
/* 87004*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87006*/          OPC_EmitInteger, MVT::i32, 3, 
/* 87009*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87017*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87020*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87028*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 3:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 3:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87035*/        /*Scope*/ 39, /*->87075*/
/* 87036*/          OPC_CheckChild1Integer, 4, 
/* 87038*/          OPC_MoveParent,
/* 87039*/          OPC_CheckType, MVT::i32,
/* 87041*/          OPC_MoveParent,
/* 87042*/          OPC_CheckType, MVT::f128,
/* 87044*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87046*/          OPC_EmitInteger, MVT::i32, 4, 
/* 87049*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87057*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87060*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87068*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 4:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87075*/        /*Scope*/ 39, /*->87115*/
/* 87076*/          OPC_CheckChild1Integer, 5, 
/* 87078*/          OPC_MoveParent,
/* 87079*/          OPC_CheckType, MVT::i32,
/* 87081*/          OPC_MoveParent,
/* 87082*/          OPC_CheckType, MVT::f128,
/* 87084*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87086*/          OPC_EmitInteger, MVT::i32, 5, 
/* 87089*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87097*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87100*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87108*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 5:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 5:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87115*/        /*Scope*/ 39, /*->87155*/
/* 87116*/          OPC_CheckChild1Integer, 6, 
/* 87118*/          OPC_MoveParent,
/* 87119*/          OPC_CheckType, MVT::i32,
/* 87121*/          OPC_MoveParent,
/* 87122*/          OPC_CheckType, MVT::f128,
/* 87124*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87126*/          OPC_EmitInteger, MVT::i32, 6, 
/* 87129*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87137*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87140*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87148*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 6:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87155*/        /*Scope*/ 39, /*->87195*/
/* 87156*/          OPC_CheckChild1Integer, 7, 
/* 87158*/          OPC_MoveParent,
/* 87159*/          OPC_CheckType, MVT::i32,
/* 87161*/          OPC_MoveParent,
/* 87162*/          OPC_CheckType, MVT::f128,
/* 87164*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87166*/          OPC_EmitInteger, MVT::i32, 7, 
/* 87169*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87177*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87180*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87188*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 7:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 7:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87195*/        /*Scope*/ 39, /*->87235*/
/* 87196*/          OPC_CheckChild1Integer, 8, 
/* 87198*/          OPC_MoveParent,
/* 87199*/          OPC_CheckType, MVT::i32,
/* 87201*/          OPC_MoveParent,
/* 87202*/          OPC_CheckType, MVT::f128,
/* 87204*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87206*/          OPC_EmitInteger, MVT::i32, 8, 
/* 87209*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87217*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87220*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87228*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 8:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87235*/        /*Scope*/ 39, /*->87275*/
/* 87236*/          OPC_CheckChild1Integer, 9, 
/* 87238*/          OPC_MoveParent,
/* 87239*/          OPC_CheckType, MVT::i32,
/* 87241*/          OPC_MoveParent,
/* 87242*/          OPC_CheckType, MVT::f128,
/* 87244*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87246*/          OPC_EmitInteger, MVT::i32, 9, 
/* 87249*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87257*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87260*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87268*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 9:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 9:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87275*/        /*Scope*/ 39, /*->87315*/
/* 87276*/          OPC_CheckChild1Integer, 10, 
/* 87278*/          OPC_MoveParent,
/* 87279*/          OPC_CheckType, MVT::i32,
/* 87281*/          OPC_MoveParent,
/* 87282*/          OPC_CheckType, MVT::f128,
/* 87284*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87286*/          OPC_EmitInteger, MVT::i32, 10, 
/* 87289*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87297*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87300*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87308*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 10:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87315*/        /*Scope*/ 39, /*->87355*/
/* 87316*/          OPC_CheckChild1Integer, 11, 
/* 87318*/          OPC_MoveParent,
/* 87319*/          OPC_CheckType, MVT::i32,
/* 87321*/          OPC_MoveParent,
/* 87322*/          OPC_CheckType, MVT::f128,
/* 87324*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87326*/          OPC_EmitInteger, MVT::i32, 11, 
/* 87329*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87337*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87340*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87348*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 11:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 11:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87355*/        /*Scope*/ 39, /*->87395*/
/* 87356*/          OPC_CheckChild1Integer, 12, 
/* 87358*/          OPC_MoveParent,
/* 87359*/          OPC_CheckType, MVT::i32,
/* 87361*/          OPC_MoveParent,
/* 87362*/          OPC_CheckType, MVT::f128,
/* 87364*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87366*/          OPC_EmitInteger, MVT::i32, 12, 
/* 87369*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87377*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87380*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87388*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 12:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87395*/        /*Scope*/ 39, /*->87435*/
/* 87396*/          OPC_CheckChild1Integer, 13, 
/* 87398*/          OPC_MoveParent,
/* 87399*/          OPC_CheckType, MVT::i32,
/* 87401*/          OPC_MoveParent,
/* 87402*/          OPC_CheckType, MVT::f128,
/* 87404*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87406*/          OPC_EmitInteger, MVT::i32, 13, 
/* 87409*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87417*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87420*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87428*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 13:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 13:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87435*/        /*Scope*/ 39, /*->87475*/
/* 87436*/          OPC_CheckChild1Integer, 14, 
/* 87438*/          OPC_MoveParent,
/* 87439*/          OPC_CheckType, MVT::i32,
/* 87441*/          OPC_MoveParent,
/* 87442*/          OPC_CheckType, MVT::f128,
/* 87444*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87446*/          OPC_EmitInteger, MVT::i32, 14, 
/* 87449*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87457*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87460*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87468*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 14:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87475*/        /*Scope*/ 39, /*->87515*/
/* 87476*/          OPC_CheckChild1Integer, 15, 
/* 87478*/          OPC_MoveParent,
/* 87479*/          OPC_CheckType, MVT::i32,
/* 87481*/          OPC_MoveParent,
/* 87482*/          OPC_CheckType, MVT::f128,
/* 87484*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 87486*/          OPC_EmitInteger, MVT::i32, 15, 
/* 87489*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87497*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87500*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87508*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 15:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 15:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87515*/        0, /*End of Scope*/
/* 87516*/      /*Scope*/ 77|128,2/*333*/, /*->87851*/
/* 87518*/        OPC_CheckAndImm, 127|128,127|128,3/*65535*/, 
/* 87522*/        OPC_MoveChild0,
/* 87523*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 87526*/        OPC_RecordChild0, // #0 = $src
/* 87527*/        OPC_CheckChild0Type, MVT::v8i16,
/* 87529*/        OPC_Scope, 39, /*->87570*/ // 8 children in Scope
/* 87531*/          OPC_CheckChild1Integer, 0, 
/* 87533*/          OPC_MoveParent,
/* 87534*/          OPC_CheckType, MVT::i32,
/* 87536*/          OPC_MoveParent,
/* 87537*/          OPC_CheckType, MVT::f128,
/* 87539*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87541*/          OPC_EmitInteger, MVT::i32, 14, 
/* 87544*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87552*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87555*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87563*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 0:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87570*/        /*Scope*/ 39, /*->87610*/
/* 87571*/          OPC_CheckChild1Integer, 1, 
/* 87573*/          OPC_MoveParent,
/* 87574*/          OPC_CheckType, MVT::i32,
/* 87576*/          OPC_MoveParent,
/* 87577*/          OPC_CheckType, MVT::f128,
/* 87579*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87581*/          OPC_EmitInteger, MVT::i32, 12, 
/* 87584*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87592*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87595*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87603*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 1:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87610*/        /*Scope*/ 39, /*->87650*/
/* 87611*/          OPC_CheckChild1Integer, 2, 
/* 87613*/          OPC_MoveParent,
/* 87614*/          OPC_CheckType, MVT::i32,
/* 87616*/          OPC_MoveParent,
/* 87617*/          OPC_CheckType, MVT::f128,
/* 87619*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87621*/          OPC_EmitInteger, MVT::i32, 10, 
/* 87624*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87632*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87635*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87643*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 2:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87650*/        /*Scope*/ 39, /*->87690*/
/* 87651*/          OPC_CheckChild1Integer, 3, 
/* 87653*/          OPC_MoveParent,
/* 87654*/          OPC_CheckType, MVT::i32,
/* 87656*/          OPC_MoveParent,
/* 87657*/          OPC_CheckType, MVT::f128,
/* 87659*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87661*/          OPC_EmitInteger, MVT::i32, 8, 
/* 87664*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87672*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87675*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87683*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 3:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87690*/        /*Scope*/ 39, /*->87730*/
/* 87691*/          OPC_CheckChild1Integer, 4, 
/* 87693*/          OPC_MoveParent,
/* 87694*/          OPC_CheckType, MVT::i32,
/* 87696*/          OPC_MoveParent,
/* 87697*/          OPC_CheckType, MVT::f128,
/* 87699*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87701*/          OPC_EmitInteger, MVT::i32, 6, 
/* 87704*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87712*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87715*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87723*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 4:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87730*/        /*Scope*/ 39, /*->87770*/
/* 87731*/          OPC_CheckChild1Integer, 5, 
/* 87733*/          OPC_MoveParent,
/* 87734*/          OPC_CheckType, MVT::i32,
/* 87736*/          OPC_MoveParent,
/* 87737*/          OPC_CheckType, MVT::f128,
/* 87739*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87741*/          OPC_EmitInteger, MVT::i32, 4, 
/* 87744*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87752*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87755*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87763*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 5:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87770*/        /*Scope*/ 39, /*->87810*/
/* 87771*/          OPC_CheckChild1Integer, 6, 
/* 87773*/          OPC_MoveParent,
/* 87774*/          OPC_CheckType, MVT::i32,
/* 87776*/          OPC_MoveParent,
/* 87777*/          OPC_CheckType, MVT::f128,
/* 87779*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87781*/          OPC_EmitInteger, MVT::i32, 2, 
/* 87784*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87792*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87795*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87803*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 6:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87810*/        /*Scope*/ 39, /*->87850*/
/* 87811*/          OPC_CheckChild1Integer, 7, 
/* 87813*/          OPC_MoveParent,
/* 87814*/          OPC_CheckType, MVT::i32,
/* 87816*/          OPC_MoveParent,
/* 87817*/          OPC_CheckType, MVT::f128,
/* 87819*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87821*/          OPC_EmitInteger, MVT::i32, 0, 
/* 87824*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87832*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87835*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87843*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 7:{ *:[iPTR] }), 65535:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUH:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v8i16] }:$src), sub_64:{ *:[i32] }))
/* 87850*/        0, /*End of Scope*/
/* 87851*/      /*Scope*/ 12|128,5/*652*/, /*->88505*/
/* 87853*/        OPC_CheckAndImm, 127|128,1/*255*/, 
/* 87856*/        OPC_MoveChild0,
/* 87857*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 87860*/        OPC_RecordChild0, // #0 = $src
/* 87861*/        OPC_CheckChild0Type, MVT::v16i8,
/* 87863*/        OPC_Scope, 39, /*->87904*/ // 16 children in Scope
/* 87865*/          OPC_CheckChild1Integer, 0, 
/* 87867*/          OPC_MoveParent,
/* 87868*/          OPC_CheckType, MVT::i32,
/* 87870*/          OPC_MoveParent,
/* 87871*/          OPC_CheckType, MVT::f128,
/* 87873*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87875*/          OPC_EmitInteger, MVT::i32, 15, 
/* 87878*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87886*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87889*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87897*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 0:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 15:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87904*/        /*Scope*/ 39, /*->87944*/
/* 87905*/          OPC_CheckChild1Integer, 1, 
/* 87907*/          OPC_MoveParent,
/* 87908*/          OPC_CheckType, MVT::i32,
/* 87910*/          OPC_MoveParent,
/* 87911*/          OPC_CheckType, MVT::f128,
/* 87913*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87915*/          OPC_EmitInteger, MVT::i32, 14, 
/* 87918*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87926*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87929*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87937*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 1:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87944*/        /*Scope*/ 39, /*->87984*/
/* 87945*/          OPC_CheckChild1Integer, 2, 
/* 87947*/          OPC_MoveParent,
/* 87948*/          OPC_CheckType, MVT::i32,
/* 87950*/          OPC_MoveParent,
/* 87951*/          OPC_CheckType, MVT::f128,
/* 87953*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87955*/          OPC_EmitInteger, MVT::i32, 13, 
/* 87958*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 87966*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 87969*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 87977*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 2:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 13:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 87984*/        /*Scope*/ 39, /*->88024*/
/* 87985*/          OPC_CheckChild1Integer, 3, 
/* 87987*/          OPC_MoveParent,
/* 87988*/          OPC_CheckType, MVT::i32,
/* 87990*/          OPC_MoveParent,
/* 87991*/          OPC_CheckType, MVT::f128,
/* 87993*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 87995*/          OPC_EmitInteger, MVT::i32, 12, 
/* 87998*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88006*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88009*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88017*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 3:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88024*/        /*Scope*/ 39, /*->88064*/
/* 88025*/          OPC_CheckChild1Integer, 4, 
/* 88027*/          OPC_MoveParent,
/* 88028*/          OPC_CheckType, MVT::i32,
/* 88030*/          OPC_MoveParent,
/* 88031*/          OPC_CheckType, MVT::f128,
/* 88033*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88035*/          OPC_EmitInteger, MVT::i32, 11, 
/* 88038*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88046*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88049*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88057*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 4:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 11:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88064*/        /*Scope*/ 39, /*->88104*/
/* 88065*/          OPC_CheckChild1Integer, 5, 
/* 88067*/          OPC_MoveParent,
/* 88068*/          OPC_CheckType, MVT::i32,
/* 88070*/          OPC_MoveParent,
/* 88071*/          OPC_CheckType, MVT::f128,
/* 88073*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88075*/          OPC_EmitInteger, MVT::i32, 10, 
/* 88078*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88086*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88089*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88097*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 5:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88104*/        /*Scope*/ 39, /*->88144*/
/* 88105*/          OPC_CheckChild1Integer, 6, 
/* 88107*/          OPC_MoveParent,
/* 88108*/          OPC_CheckType, MVT::i32,
/* 88110*/          OPC_MoveParent,
/* 88111*/          OPC_CheckType, MVT::f128,
/* 88113*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88115*/          OPC_EmitInteger, MVT::i32, 9, 
/* 88118*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88126*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88129*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88137*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 6:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 9:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88144*/        /*Scope*/ 39, /*->88184*/
/* 88145*/          OPC_CheckChild1Integer, 7, 
/* 88147*/          OPC_MoveParent,
/* 88148*/          OPC_CheckType, MVT::i32,
/* 88150*/          OPC_MoveParent,
/* 88151*/          OPC_CheckType, MVT::f128,
/* 88153*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88155*/          OPC_EmitInteger, MVT::i32, 8, 
/* 88158*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88166*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88169*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88177*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 7:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88184*/        /*Scope*/ 39, /*->88224*/
/* 88185*/          OPC_CheckChild1Integer, 8, 
/* 88187*/          OPC_MoveParent,
/* 88188*/          OPC_CheckType, MVT::i32,
/* 88190*/          OPC_MoveParent,
/* 88191*/          OPC_CheckType, MVT::f128,
/* 88193*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88195*/          OPC_EmitInteger, MVT::i32, 7, 
/* 88198*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88206*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88209*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88217*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 8:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 7:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88224*/        /*Scope*/ 39, /*->88264*/
/* 88225*/          OPC_CheckChild1Integer, 9, 
/* 88227*/          OPC_MoveParent,
/* 88228*/          OPC_CheckType, MVT::i32,
/* 88230*/          OPC_MoveParent,
/* 88231*/          OPC_CheckType, MVT::f128,
/* 88233*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88235*/          OPC_EmitInteger, MVT::i32, 6, 
/* 88238*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88246*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88249*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88257*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 9:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88264*/        /*Scope*/ 39, /*->88304*/
/* 88265*/          OPC_CheckChild1Integer, 10, 
/* 88267*/          OPC_MoveParent,
/* 88268*/          OPC_CheckType, MVT::i32,
/* 88270*/          OPC_MoveParent,
/* 88271*/          OPC_CheckType, MVT::f128,
/* 88273*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88275*/          OPC_EmitInteger, MVT::i32, 5, 
/* 88278*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88286*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88289*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88297*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 10:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 5:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88304*/        /*Scope*/ 39, /*->88344*/
/* 88305*/          OPC_CheckChild1Integer, 11, 
/* 88307*/          OPC_MoveParent,
/* 88308*/          OPC_CheckType, MVT::i32,
/* 88310*/          OPC_MoveParent,
/* 88311*/          OPC_CheckType, MVT::f128,
/* 88313*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88315*/          OPC_EmitInteger, MVT::i32, 4, 
/* 88318*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88326*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88329*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88337*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 11:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88344*/        /*Scope*/ 39, /*->88384*/
/* 88345*/          OPC_CheckChild1Integer, 12, 
/* 88347*/          OPC_MoveParent,
/* 88348*/          OPC_CheckType, MVT::i32,
/* 88350*/          OPC_MoveParent,
/* 88351*/          OPC_CheckType, MVT::f128,
/* 88353*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88355*/          OPC_EmitInteger, MVT::i32, 3, 
/* 88358*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88366*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88369*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88377*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 12:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 3:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88384*/        /*Scope*/ 39, /*->88424*/
/* 88385*/          OPC_CheckChild1Integer, 13, 
/* 88387*/          OPC_MoveParent,
/* 88388*/          OPC_CheckType, MVT::i32,
/* 88390*/          OPC_MoveParent,
/* 88391*/          OPC_CheckType, MVT::f128,
/* 88393*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88395*/          OPC_EmitInteger, MVT::i32, 2, 
/* 88398*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88406*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88409*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88417*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 13:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88424*/        /*Scope*/ 39, /*->88464*/
/* 88425*/          OPC_CheckChild1Integer, 14, 
/* 88427*/          OPC_MoveParent,
/* 88428*/          OPC_CheckType, MVT::i32,
/* 88430*/          OPC_MoveParent,
/* 88431*/          OPC_CheckType, MVT::f128,
/* 88433*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88435*/          OPC_EmitInteger, MVT::i32, 1, 
/* 88438*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88446*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88449*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88457*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 14:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 1:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88464*/        /*Scope*/ 39, /*->88504*/
/* 88465*/          OPC_CheckChild1Integer, 15, 
/* 88467*/          OPC_MoveParent,
/* 88468*/          OPC_CheckType, MVT::i32,
/* 88470*/          OPC_MoveParent,
/* 88471*/          OPC_CheckType, MVT::f128,
/* 88473*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88475*/          OPC_EmitInteger, MVT::i32, 0, 
/* 88478*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                        MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 88486*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88489*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88497*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (and:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 15:{ *:[iPTR] }), 255:{ *:[i32] })) - Complexity = 419
                    // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTRACTUB:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v16i8] }:$src), sub_64:{ *:[i32] }))
/* 88504*/        0, /*End of Scope*/
/* 88505*/      /*Scope*/ 29|128,1/*157*/, /*->88664*/
/* 88507*/        OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/* 88510*/        OPC_RecordMemRef,
/* 88511*/        OPC_RecordNode, // #0 = 'ld' chained node
/* 88512*/        OPC_RecordChild1, // #1 = $src
/* 88513*/        OPC_CheckPredicate, 20, // Predicate_unindexedload
/* 88515*/        OPC_Scope, 56, /*->88573*/ // 3 children in Scope
/* 88517*/          OPC_CheckPredicate, 23, // Predicate_load
/* 88519*/          OPC_SwitchType /*2 cases */, 24, MVT::i32,// ->88546
/* 88522*/            OPC_MoveParent,
/* 88523*/            OPC_CheckType, MVT::f128,
/* 88525*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 88527*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 88530*/            OPC_EmitMergeInputChains1_0,
/* 88531*/            OPC_EmitNode1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88539*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 4, 
                      // Src: (uint_to_fp:{ *:[f128] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XSCVUDQP:{ *:[f128] } (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src))
/* 88546*/          /*SwitchType*/ 24, MVT::i64,// ->88572
/* 88548*/            OPC_MoveParent,
/* 88549*/            OPC_CheckType, MVT::f128,
/* 88551*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 88553*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 88556*/            OPC_EmitMergeInputChains1_0,
/* 88557*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSD), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88565*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 4, 
                      // Src: (uint_to_fp:{ *:[f128] } (ld:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XSCVUDQP:{ *:[f128] } (LXSD:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src))
/* 88572*/          0, // EndSwitchType
/* 88573*/        /*Scope*/ 60, /*->88634*/
/* 88574*/          OPC_CheckPredicate, 21, // Predicate_zextload
/* 88576*/          OPC_CheckType, MVT::i32,
/* 88578*/          OPC_Scope, 26, /*->88606*/ // 2 children in Scope
/* 88580*/            OPC_CheckPredicate, 3, // Predicate_zextloadi16
/* 88582*/            OPC_MoveParent,
/* 88583*/            OPC_CheckType, MVT::f128,
/* 88585*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 88587*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 88590*/            OPC_EmitMergeInputChains1_0,
/* 88591*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSIHZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88599*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 4, 
                      // Src: (uint_to_fp:{ *:[f128] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi16>>) - Complexity = 416
                      // Dst: (XSCVUDQP:{ *:[f128] } (LXSIHZX:{ *:[f64] } xaddr:{ *:[iPTR] }:$src))
/* 88606*/          /*Scope*/ 26, /*->88633*/
/* 88607*/            OPC_CheckPredicate, 2, // Predicate_zextloadi8
/* 88609*/            OPC_MoveParent,
/* 88610*/            OPC_CheckType, MVT::f128,
/* 88612*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 88614*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 88617*/            OPC_EmitMergeInputChains1_0,
/* 88618*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88626*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 4, 
                      // Src: (uint_to_fp:{ *:[f128] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>>) - Complexity = 416
                      // Dst: (XSCVUDQP:{ *:[f128] } (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src))
/* 88633*/          0, /*End of Scope*/
/* 88634*/        /*Scope*/ 28, /*->88663*/
/* 88635*/          OPC_CheckPredicate, 23, // Predicate_load
/* 88637*/          OPC_CheckType, MVT::i64,
/* 88639*/          OPC_MoveParent,
/* 88640*/          OPC_CheckType, MVT::f128,
/* 88642*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 88644*/          OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/* 88647*/          OPC_EmitMergeInputChains1_0,
/* 88648*/          OPC_EmitNode1, TARGET_VAL(PPC::LXSDX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88656*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (uint_to_fp:{ *:[f128] } (ld:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                    // Dst: (XSCVUDQP:{ *:[f128] } (LXSDX:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src))
/* 88663*/        0, /*End of Scope*/
/* 88664*/      /*Scope*/ 84|128,2/*340*/, /*->89006*/
/* 88666*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 88669*/        OPC_RecordChild0, // #0 = $src
/* 88670*/        OPC_Scope, 114, /*->88786*/ // 4 children in Scope
/* 88672*/          OPC_CheckChild1Integer, 0, 
/* 88674*/          OPC_SwitchType /*2 cases */, 59, MVT::i64,// ->88736
/* 88677*/            OPC_MoveParent,
/* 88678*/            OPC_CheckType, MVT::f128,
/* 88680*/            OPC_Scope, 20, /*->88702*/ // 2 children in Scope
/* 88682*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 88684*/              OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 88687*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88695*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$src, VFRC:{ *:[i32] }))
/* 88702*/            /*Scope*/ 32, /*->88735*/
/* 88703*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88705*/              OPC_EmitInteger, MVT::i32, 3, 
/* 88708*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 88717*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88720*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88728*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 4, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$src, ?:{ *:[v2i64] }:$src, 3:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 88735*/            0, /*End of Scope*/
/* 88736*/          /*SwitchType*/ 47, MVT::i32,// ->88785
/* 88738*/            OPC_MoveParent,
/* 88739*/            OPC_CheckType, MVT::f128,
/* 88741*/            OPC_Scope, 20, /*->88763*/ // 2 children in Scope
/* 88743*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 88745*/              OPC_EmitInteger, MVT::i32, 0, 
/* 88748*/              OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88756*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 0:{ *:[i32] }))
/* 88763*/            /*Scope*/ 20, /*->88784*/
/* 88764*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88766*/              OPC_EmitInteger, MVT::i32, 12, 
/* 88769*/              OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88777*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 12:{ *:[i32] }))
/* 88784*/            0, /*End of Scope*/
/* 88785*/          0, // EndSwitchType
/* 88786*/        /*Scope*/ 114, /*->88901*/
/* 88787*/          OPC_CheckChild1Integer, 1, 
/* 88789*/          OPC_SwitchType /*2 cases */, 47, MVT::i32,// ->88839
/* 88792*/            OPC_MoveParent,
/* 88793*/            OPC_CheckType, MVT::f128,
/* 88795*/            OPC_Scope, 20, /*->88817*/ // 2 children in Scope
/* 88797*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 88799*/              OPC_EmitInteger, MVT::i32, 4, 
/* 88802*/              OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88810*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 4:{ *:[i32] }))
/* 88817*/            /*Scope*/ 20, /*->88838*/
/* 88818*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88820*/              OPC_EmitInteger, MVT::i32, 8, 
/* 88823*/              OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88831*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 8:{ *:[i32] }))
/* 88838*/            0, /*End of Scope*/
/* 88839*/          /*SwitchType*/ 59, MVT::i64,// ->88900
/* 88841*/            OPC_MoveParent,
/* 88842*/            OPC_CheckType, MVT::f128,
/* 88844*/            OPC_Scope, 20, /*->88866*/ // 2 children in Scope
/* 88846*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88848*/              OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 88851*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88859*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$src, VFRC:{ *:[i32] }))
/* 88866*/            /*Scope*/ 32, /*->88899*/
/* 88867*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 88869*/              OPC_EmitInteger, MVT::i32, 3, 
/* 88872*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 88881*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 88884*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 88892*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                            MVT::f128, 1/*#Ops*/, 4, 
                        // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVUDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$src, ?:{ *:[v2i64] }:$src, 3:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 88899*/            0, /*End of Scope*/
/* 88900*/          0, // EndSwitchType
/* 88901*/        /*Scope*/ 51, /*->88953*/
/* 88902*/          OPC_CheckChild1Integer, 2, 
/* 88904*/          OPC_CheckType, MVT::i32,
/* 88906*/          OPC_MoveParent,
/* 88907*/          OPC_CheckType, MVT::f128,
/* 88909*/          OPC_Scope, 20, /*->88931*/ // 2 children in Scope
/* 88911*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 88913*/            OPC_EmitInteger, MVT::i32, 8, 
/* 88916*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88924*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                          MVT::f128, 1/*#Ops*/, 2, 
                      // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 8:{ *:[i32] }))
/* 88931*/          /*Scope*/ 20, /*->88952*/
/* 88932*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88934*/            OPC_EmitInteger, MVT::i32, 4, 
/* 88937*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88945*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                          MVT::f128, 1/*#Ops*/, 2, 
                      // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 4:{ *:[i32] }))
/* 88952*/          0, /*End of Scope*/
/* 88953*/        /*Scope*/ 51, /*->89005*/
/* 88954*/          OPC_CheckChild1Integer, 3, 
/* 88956*/          OPC_CheckType, MVT::i32,
/* 88958*/          OPC_MoveParent,
/* 88959*/          OPC_CheckType, MVT::f128,
/* 88961*/          OPC_Scope, 20, /*->88983*/ // 2 children in Scope
/* 88963*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 88965*/            OPC_EmitInteger, MVT::i32, 12, 
/* 88968*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88976*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                          MVT::f128, 1/*#Ops*/, 2, 
                      // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 12:{ *:[i32] }))
/* 88983*/          /*Scope*/ 20, /*->89004*/
/* 88984*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 88986*/            OPC_EmitInteger, MVT::i32, 0, 
/* 88989*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 88997*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                          MVT::f128, 1/*#Ops*/, 2, 
                      // Src: (uint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$src, 0:{ *:[i32] }))
/* 89004*/          0, /*End of Scope*/
/* 89005*/        0, /*End of Scope*/
/* 89006*/      /*Scope*/ 101, /*->89108*/
/* 89007*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 89010*/        OPC_RecordChild0, // #0 = $src
/* 89011*/        OPC_CheckChild0Type, MVT::f64,
/* 89013*/        OPC_SwitchType /*2 cases */, 12, MVT::i64,// ->89028
/* 89016*/          OPC_MoveParent,
/* 89017*/          OPC_CheckType, MVT::f128,
/* 89019*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89021*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 0, 
                    // Src: (uint_to_fp:{ *:[f128] } (PPCmfvsr:{ *:[i64] } f64:{ *:[f64] }:$src)) - Complexity = 406
                    // Dst: (XSCVUDQP:{ *:[f128] } ?:{ *:[f64] }:$src)
/* 89028*/        /*SwitchType*/ 77, MVT::i32,// ->89107
/* 89030*/          OPC_MoveParent,
/* 89031*/          OPC_CheckType, MVT::f128,
/* 89033*/          OPC_Scope, 35, /*->89070*/ // 2 children in Scope
/* 89035*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 89037*/            OPC_EmitInteger, MVT::i64, 1, 
/* 89040*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89043*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 0, 2,  // Results = #3
/* 89052*/            OPC_EmitInteger, MVT::i32, 4, 
/* 89055*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89063*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                          MVT::f128, 1/*#Ops*/, 5, 
                      // Src: (uint_to_fp:{ *:[f128] } (PPCmfvsr:{ *:[i32] } f64:{ *:[f64] }:$src)) - Complexity = 406
                      // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } (SUBREG_TO_REG:{ *:[v4i32] } 1:{ *:[i64] }, ?:{ *:[f64] }:$src, sub_64:{ *:[i32] }), 4:{ *:[i32] }))
/* 89070*/          /*Scope*/ 35, /*->89106*/
/* 89071*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 89073*/            OPC_EmitInteger, MVT::i64, 1, 
/* 89076*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89079*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 0, 2,  // Results = #3
/* 89088*/            OPC_EmitInteger, MVT::i32, 8, 
/* 89091*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89099*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                          MVT::f128, 1/*#Ops*/, 5, 
                      // Src: (uint_to_fp:{ *:[f128] } (PPCmfvsr:{ *:[i32] } f64:{ *:[f64] }:$src)) - Complexity = 406
                      // Dst: (XSCVUDQP:{ *:[f128] } (XXEXTRACTUW:{ *:[f64] } (SUBREG_TO_REG:{ *:[v4i32] } 1:{ *:[i64] }, ?:{ *:[f64] }:$src, sub_64:{ *:[i32] }), 8:{ *:[i32] }))
/* 89106*/          0, /*End of Scope*/
/* 89107*/        0, // EndSwitchType
/* 89108*/      0, /*End of Scope*/
/* 89109*/    /*Scope*/ 112, /*->89222*/
/* 89110*/      OPC_RecordChild0, // #0 = $src
/* 89111*/      OPC_Scope, 24, /*->89137*/ // 4 children in Scope
/* 89113*/        OPC_CheckChild0Type, MVT::i64,
/* 89115*/        OPC_CheckType, MVT::f128,
/* 89117*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89119*/        OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 89122*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 89130*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                      MVT::f128, 1/*#Ops*/, 2, 
                  // Src: (uint_to_fp:{ *:[f128] } i64:{ *:[i64] }:$src) - Complexity = 403
                  // Dst: (XSCVUDQP:{ *:[f128] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[i64] }:$src, VFRC:{ *:[i32] }))
/* 89137*/      /*Scope*/ 44, /*->89182*/
/* 89138*/        OPC_CheckChild0Type, MVT::i32,
/* 89140*/        OPC_SwitchType /*3 cases */, 16, MVT::f128,// ->89159
/* 89143*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89145*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 89152*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUDQP), 0,
                        MVT::f128, 1/*#Ops*/, 1, 
                    // Src: (uint_to_fp:{ *:[f128] } i32:{ *:[i32] }:$src) - Complexity = 403
                    // Dst: (XSCVUDQP:{ *:[f128] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$src))
/* 89159*/        /*SwitchType*/ 9, MVT::f64,// ->89170
/* 89161*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 89163*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDCFUI), 0,
                        MVT::f64, 1/*#Ops*/, 0, 
                    // Src: (uint_to_fp:{ *:[f64] } i32:{ *:[i32] }:$RB) - Complexity = 3
                    // Dst: (EFDCFUI:{ *:[f64] } i32:{ *:[i32] }:$RB)
/* 89170*/        /*SwitchType*/ 9, MVT::f32,// ->89181
/* 89172*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 89174*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSCFUI), 0,
                        MVT::f32, 1/*#Ops*/, 0, 
                    // Src: (uint_to_fp:{ *:[f32] } i32:{ *:[i32] }:$RB) - Complexity = 3
                    // Dst: (EFSCFUI:{ *:[f32] } i32:{ *:[i32] }:$RB)
/* 89181*/        0, // EndSwitchType
/* 89182*/      /*Scope*/ 11, /*->89194*/
/* 89183*/        OPC_CheckType, MVT::v2f64,
/* 89185*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 89187*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVUXDDP), 0,
                      MVT::v2f64, 1/*#Ops*/, 0, 
                  // Src: (uint_to_fp:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$XB) - Complexity = 403
                  // Dst: (XVCVUXDDP:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$XB)
/* 89194*/      /*Scope*/ 26, /*->89221*/
/* 89195*/        OPC_CheckType, MVT::v4f32,
/* 89197*/        OPC_CheckChild0Type, MVT::v4i32,
/* 89199*/        OPC_Scope, 9, /*->89210*/ // 2 children in Scope
/* 89201*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 89203*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVUXWSP), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (uint_to_fp:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$XB) - Complexity = 403
                    // Dst: (XVCVUXWSP:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$XB)
/* 89210*/        /*Scope*/ 9, /*->89220*/
/* 89211*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 89213*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VCFUX_0), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (uint_to_fp:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$vA) - Complexity = 3
                    // Dst: (VCFUX_0:{ *:[v4f32] } ?:{ *:[v4i32] }:$vA)
/* 89220*/        0, /*End of Scope*/
/* 89221*/      0, /*End of Scope*/
/* 89222*/    0, /*End of Scope*/
/* 89223*/  /*SwitchOpcode*/ 38, TARGET_VAL(PPCISD::LXSIZX),// ->89264
/* 89226*/    OPC_RecordNode, // #0 = 'PPClxsizx' chained node
/* 89227*/    OPC_RecordChild1, // #1 = $src
/* 89228*/    OPC_Scope, 16, /*->89246*/ // 2 children in Scope
/* 89230*/      OPC_CheckChild2Integer, 1, 
/* 89232*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89234*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 89237*/      OPC_EmitMergeInputChains1_0,
/* 89238*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain,
                    MVT::f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPClxsizx:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src, 1:{ *:[iPTR] }) - Complexity = 417
                // Dst: (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)
/* 89246*/    /*Scope*/ 16, /*->89263*/
/* 89247*/      OPC_CheckChild2Integer, 2, 
/* 89249*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89251*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 89254*/      OPC_EmitMergeInputChains1_0,
/* 89255*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXSIHZX), 0|OPFL_Chain,
                    MVT::f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPClxsizx:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src, 2:{ *:[iPTR] }) - Complexity = 417
                // Dst: (LXSIHZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)
/* 89263*/    0, /*End of Scope*/
/* 89264*/  /*SwitchOpcode*/ 20|128,1/*148*/, TARGET_VAL(ISD::FP_ROUND),// ->89416
/* 89268*/    OPC_Scope, 50, /*->89320*/ // 2 children in Scope
/* 89270*/      OPC_MoveChild0,
/* 89271*/      OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/* 89274*/      OPC_RecordMemRef,
/* 89275*/      OPC_RecordNode, // #0 = 'ld' chained node
/* 89276*/      OPC_RecordChild1, // #1 = $src
/* 89277*/      OPC_CheckPredicate, 20, // Predicate_unindexedload
/* 89279*/      OPC_CheckPredicate, 25, // Predicate_extload
/* 89281*/      OPC_CheckPredicate, 28, // Predicate_extloadf32
/* 89283*/      OPC_CheckType, MVT::f64,
/* 89285*/      OPC_MoveParent,
/* 89286*/      OPC_CheckType, MVT::f32,
/* 89288*/      OPC_Scope, 14, /*->89304*/ // 2 children in Scope
/* 89290*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89292*/        OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 89295*/        OPC_EmitMergeInputChains1_0,
/* 89296*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::DFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::f32, 2/*#Ops*/, 2, 3, 
                  // Src: (fpround:{ *:[f32] } (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>) - Complexity = 416
                  // Dst: (DFLOADf32:{ *:[f32] } iaddrX4:{ *:[iPTR] }:$src)
/* 89304*/      /*Scope*/ 14, /*->89319*/
/* 89305*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 89307*/        OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 89310*/        OPC_EmitMergeInputChains1_0,
/* 89311*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                      MVT::f32, 2/*#Ops*/, 2, 3, 
                  // Src: (fpround:{ *:[f32] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>) - Complexity = 416
                  // Dst: (XFLOADf32:{ *:[f32] } xoaddr:{ *:[iPTR] }:$src)
/* 89319*/      0, /*End of Scope*/
/* 89320*/    /*Scope*/ 94, /*->89415*/
/* 89321*/      OPC_RecordChild0, // #0 = $src
/* 89322*/      OPC_SwitchType /*3 cases */, 9, MVT::f64,// ->89334
/* 89325*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89327*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVQPDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fpround:{ *:[f64] } f128:{ *:[f128] }:$src) - Complexity = 403
                  // Dst: (XSCVQPDP:{ *:[f64] } ?:{ *:[f128] }:$src)
/* 89334*/      /*SwitchType*/ 46, MVT::f32,// ->89382
/* 89336*/        OPC_Scope, 18, /*->89356*/ // 2 children in Scope
/* 89338*/          OPC_CheckChild0Type, MVT::f128,
/* 89340*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89342*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVQPDPO), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 89349*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRSP), 0,
                        MVT::f32, 1/*#Ops*/, 1, 
                    // Src: (fpround:{ *:[f32] } f128:{ *:[f128] }:$src) - Complexity = 403
                    // Dst: (XSRSP:{ *:[f32] } (XSCVQPDPO:{ *:[f64] } ?:{ *:[f128] }:$src))
/* 89356*/        /*Scope*/ 24, /*->89381*/
/* 89357*/          OPC_CheckChild0Type, MVT::f64,
/* 89359*/          OPC_Scope, 9, /*->89370*/ // 2 children in Scope
/* 89361*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 89363*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FRSP), 0,
                          MVT::f32, 1/*#Ops*/, 0, 
                      // Src: (fpround:{ *:[f32] } f64:{ *:[f64] }:$frB) - Complexity = 3
                      // Dst: (FRSP:{ *:[f32] } f64:{ *:[f64] }:$frB)
/* 89370*/          /*Scope*/ 9, /*->89380*/
/* 89371*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 89373*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSCFD), 0,
                          MVT::f32, 1/*#Ops*/, 0, 
                      // Src: (fpround:{ *:[f32] } f64:{ *:[f64] }:$RB) - Complexity = 3
                      // Dst: (EFSCFD:{ *:[f32] } f64:{ *:[f64] }:$RB)
/* 89380*/          0, /*End of Scope*/
/* 89381*/        0, /*End of Scope*/
/* 89382*/      /*SwitchType*/ 30, MVT::v4f32,// ->89414
/* 89384*/        OPC_Scope, 11, /*->89397*/ // 2 children in Scope
/* 89386*/          OPC_CheckPredicate, 32, // Predicate_fround_inexact
/* 89388*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 89390*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRSPs), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (fpround:{ *:[v4f32] } v4f64:{ *:[v4f64] }:$FRB)<<P:Predicate_fround_inexact>> - Complexity = 4
                    // Dst: (QVFRSPs:{ *:[v4f32] } v4f64:{ *:[v4f64] }:$FRB)
/* 89397*/        /*Scope*/ 15, /*->89413*/
/* 89398*/          OPC_CheckPredicate, 33, // Predicate_fround_exact
/* 89400*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 89402*/          OPC_EmitInteger, MVT::i32, PPC::QSRCRegClassID,
/* 89405*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4f32, 2/*#Ops*/, 0, 1, 
                    // Src: (fpround:{ *:[v4f32] } v4f64:{ *:[v4f64] }:$src)<<P:Predicate_fround_exact>> - Complexity = 4
                    // Dst: (COPY_TO_REGCLASS:{ *:[v4f32] } ?:{ *:[v4f64] }:$src, QSRC:{ *:[i32] })
/* 89413*/        0, /*End of Scope*/
/* 89414*/      0, // EndSwitchType
/* 89415*/    0, /*End of Scope*/
/* 89416*/  /*SwitchOpcode*/ 26|128,23/*2970*/, TARGET_VAL(ISD::SINT_TO_FP),// ->92390
/* 89420*/    OPC_Scope, 37|128,22/*2853*/, /*->92276*/ // 2 children in Scope
/* 89423*/      OPC_MoveChild0,
/* 89424*/      OPC_SwitchOpcode /*4 cases */, 84, TARGET_VAL(ISD::LOAD),// ->89512
/* 89428*/        OPC_RecordMemRef,
/* 89429*/        OPC_RecordNode, // #0 = 'ld' chained node
/* 89430*/        OPC_RecordChild1, // #1 = $src
/* 89431*/        OPC_CheckPredicate, 20, // Predicate_unindexedload
/* 89433*/        OPC_CheckPredicate, 23, // Predicate_load
/* 89435*/        OPC_SwitchType /*2 cases */, 24, MVT::i32,// ->89462
/* 89438*/          OPC_MoveParent,
/* 89439*/          OPC_CheckType, MVT::f128,
/* 89441*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89443*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 89446*/          OPC_EmitMergeInputChains1_0,
/* 89447*/          OPC_EmitNode1, TARGET_VAL(PPC::LIWAX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 89455*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0|OPFL_Chain,
                        MVT::f128, 1/*#Ops*/, 4, 
                    // Src: (sint_to_fp:{ *:[f128] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                    // Dst: (XSCVSDQP:{ *:[f128] } (LIWAX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src))
/* 89462*/        /*SwitchType*/ 47, MVT::i64,// ->89511
/* 89464*/          OPC_MoveParent,
/* 89465*/          OPC_CheckType, MVT::f128,
/* 89467*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 89469*/          OPC_Scope, 19, /*->89490*/ // 2 children in Scope
/* 89471*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/* 89474*/            OPC_EmitMergeInputChains1_0,
/* 89475*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSD), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 89483*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 4, 
                      // Src: (sint_to_fp:{ *:[f128] } (ld:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XSCVSDQP:{ *:[f128] } (LXSD:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src))
/* 89490*/          /*Scope*/ 19, /*->89510*/
/* 89491*/            OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/* 89494*/            OPC_EmitMergeInputChains1_0,
/* 89495*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSDX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 89503*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0|OPFL_Chain,
                          MVT::f128, 1/*#Ops*/, 4, 
                      // Src: (sint_to_fp:{ *:[f128] } (ld:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XSCVSDQP:{ *:[f128] } (LXSDX:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src))
/* 89510*/          0, /*End of Scope*/
/* 89511*/        0, // EndSwitchType
/* 89512*/      /*SwitchOpcode*/ 75|128,17/*2251*/, TARGET_VAL(ISD::SIGN_EXTEND_INREG),// ->91767
/* 89516*/        OPC_MoveChild0,
/* 89517*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 89520*/        OPC_RecordChild0, // #0 = $src
/* 89521*/        OPC_Scope, 108|128,5/*748*/, /*->90272*/ // 2 children in Scope
/* 89524*/          OPC_CheckChild0Type, MVT::v8i16,
/* 89526*/          OPC_Scope, 92, /*->89620*/ // 8 children in Scope
/* 89528*/            OPC_CheckChild1Integer, 0, 
/* 89530*/            OPC_MoveParent,
/* 89531*/            OPC_MoveChild1,
/* 89532*/            OPC_CheckValueType, MVT::i16,
/* 89534*/            OPC_MoveParent,
/* 89535*/            OPC_CheckType, MVT::i32,
/* 89537*/            OPC_MoveParent,
/* 89538*/            OPC_CheckType, MVT::f128,
/* 89540*/            OPC_Scope, 38, /*->89580*/ // 2 children in Scope
/* 89542*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 89544*/              OPC_EmitInteger, MVT::i32, 0, 
/* 89547*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89555*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89562*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89565*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89573*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 0:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89580*/            /*Scope*/ 38, /*->89619*/
/* 89581*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 89583*/              OPC_EmitInteger, MVT::i32, 14, 
/* 89586*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89594*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89601*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89604*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89612*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 0:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89619*/            0, /*End of Scope*/
/* 89620*/          /*Scope*/ 92, /*->89713*/
/* 89621*/            OPC_CheckChild1Integer, 1, 
/* 89623*/            OPC_MoveParent,
/* 89624*/            OPC_MoveChild1,
/* 89625*/            OPC_CheckValueType, MVT::i16,
/* 89627*/            OPC_MoveParent,
/* 89628*/            OPC_CheckType, MVT::i32,
/* 89630*/            OPC_MoveParent,
/* 89631*/            OPC_CheckType, MVT::f128,
/* 89633*/            OPC_Scope, 38, /*->89673*/ // 2 children in Scope
/* 89635*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 89637*/              OPC_EmitInteger, MVT::i32, 2, 
/* 89640*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89648*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89655*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89658*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89666*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 1:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89673*/            /*Scope*/ 38, /*->89712*/
/* 89674*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 89676*/              OPC_EmitInteger, MVT::i32, 12, 
/* 89679*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89687*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89694*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89697*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89705*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 1:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89712*/            0, /*End of Scope*/
/* 89713*/          /*Scope*/ 92, /*->89806*/
/* 89714*/            OPC_CheckChild1Integer, 2, 
/* 89716*/            OPC_MoveParent,
/* 89717*/            OPC_MoveChild1,
/* 89718*/            OPC_CheckValueType, MVT::i16,
/* 89720*/            OPC_MoveParent,
/* 89721*/            OPC_CheckType, MVT::i32,
/* 89723*/            OPC_MoveParent,
/* 89724*/            OPC_CheckType, MVT::f128,
/* 89726*/            OPC_Scope, 38, /*->89766*/ // 2 children in Scope
/* 89728*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 89730*/              OPC_EmitInteger, MVT::i32, 4, 
/* 89733*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89741*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89748*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89751*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89759*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 2:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89766*/            /*Scope*/ 38, /*->89805*/
/* 89767*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 89769*/              OPC_EmitInteger, MVT::i32, 10, 
/* 89772*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89780*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89787*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89790*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89798*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 2:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89805*/            0, /*End of Scope*/
/* 89806*/          /*Scope*/ 92, /*->89899*/
/* 89807*/            OPC_CheckChild1Integer, 3, 
/* 89809*/            OPC_MoveParent,
/* 89810*/            OPC_MoveChild1,
/* 89811*/            OPC_CheckValueType, MVT::i16,
/* 89813*/            OPC_MoveParent,
/* 89814*/            OPC_CheckType, MVT::i32,
/* 89816*/            OPC_MoveParent,
/* 89817*/            OPC_CheckType, MVT::f128,
/* 89819*/            OPC_Scope, 38, /*->89859*/ // 2 children in Scope
/* 89821*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 89823*/              OPC_EmitInteger, MVT::i32, 6, 
/* 89826*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89834*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89841*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89844*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89852*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 3:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89859*/            /*Scope*/ 38, /*->89898*/
/* 89860*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 89862*/              OPC_EmitInteger, MVT::i32, 8, 
/* 89865*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89873*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89880*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89883*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89891*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 3:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89898*/            0, /*End of Scope*/
/* 89899*/          /*Scope*/ 92, /*->89992*/
/* 89900*/            OPC_CheckChild1Integer, 4, 
/* 89902*/            OPC_MoveParent,
/* 89903*/            OPC_MoveChild1,
/* 89904*/            OPC_CheckValueType, MVT::i16,
/* 89906*/            OPC_MoveParent,
/* 89907*/            OPC_CheckType, MVT::i32,
/* 89909*/            OPC_MoveParent,
/* 89910*/            OPC_CheckType, MVT::f128,
/* 89912*/            OPC_Scope, 38, /*->89952*/ // 2 children in Scope
/* 89914*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 89916*/              OPC_EmitInteger, MVT::i32, 8, 
/* 89919*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89927*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89934*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89937*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89945*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 4:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89952*/            /*Scope*/ 38, /*->89991*/
/* 89953*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 89955*/              OPC_EmitInteger, MVT::i32, 6, 
/* 89958*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 89966*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 89973*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 89976*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 89984*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 4:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 89991*/            0, /*End of Scope*/
/* 89992*/          /*Scope*/ 92, /*->90085*/
/* 89993*/            OPC_CheckChild1Integer, 5, 
/* 89995*/            OPC_MoveParent,
/* 89996*/            OPC_MoveChild1,
/* 89997*/            OPC_CheckValueType, MVT::i16,
/* 89999*/            OPC_MoveParent,
/* 90000*/            OPC_CheckType, MVT::i32,
/* 90002*/            OPC_MoveParent,
/* 90003*/            OPC_CheckType, MVT::f128,
/* 90005*/            OPC_Scope, 38, /*->90045*/ // 2 children in Scope
/* 90007*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90009*/              OPC_EmitInteger, MVT::i32, 10, 
/* 90012*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90020*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90027*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90030*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90038*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 5:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 90045*/            /*Scope*/ 38, /*->90084*/
/* 90046*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90048*/              OPC_EmitInteger, MVT::i32, 4, 
/* 90051*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90059*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90066*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90069*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90077*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 5:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 90084*/            0, /*End of Scope*/
/* 90085*/          /*Scope*/ 92, /*->90178*/
/* 90086*/            OPC_CheckChild1Integer, 6, 
/* 90088*/            OPC_MoveParent,
/* 90089*/            OPC_MoveChild1,
/* 90090*/            OPC_CheckValueType, MVT::i16,
/* 90092*/            OPC_MoveParent,
/* 90093*/            OPC_CheckType, MVT::i32,
/* 90095*/            OPC_MoveParent,
/* 90096*/            OPC_CheckType, MVT::f128,
/* 90098*/            OPC_Scope, 38, /*->90138*/ // 2 children in Scope
/* 90100*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90102*/              OPC_EmitInteger, MVT::i32, 12, 
/* 90105*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90113*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90120*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90123*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90131*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 6:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 90138*/            /*Scope*/ 38, /*->90177*/
/* 90139*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90141*/              OPC_EmitInteger, MVT::i32, 2, 
/* 90144*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90152*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90159*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90162*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90170*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 6:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 90177*/            0, /*End of Scope*/
/* 90178*/          /*Scope*/ 92, /*->90271*/
/* 90179*/            OPC_CheckChild1Integer, 7, 
/* 90181*/            OPC_MoveParent,
/* 90182*/            OPC_MoveChild1,
/* 90183*/            OPC_CheckValueType, MVT::i16,
/* 90185*/            OPC_MoveParent,
/* 90186*/            OPC_CheckType, MVT::i32,
/* 90188*/            OPC_MoveParent,
/* 90189*/            OPC_CheckType, MVT::f128,
/* 90191*/            OPC_Scope, 38, /*->90231*/ // 2 children in Scope
/* 90193*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90195*/              OPC_EmitInteger, MVT::i32, 14, 
/* 90198*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90206*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90213*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90216*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90224*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 7:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 90231*/            /*Scope*/ 38, /*->90270*/
/* 90232*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90234*/              OPC_EmitInteger, MVT::i32, 0, 
/* 90237*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUH), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90245*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90252*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90255*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90263*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$src, 7:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSH2D:{ *:[f128] } (VEXTRACTUH:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v8i16] }:$src)), sub_64:{ *:[i32] }))
/* 90270*/            0, /*End of Scope*/
/* 90271*/          0, /*End of Scope*/
/* 90272*/        /*Scope*/ 84|128,11/*1492*/, /*->91766*/
/* 90274*/          OPC_CheckChild0Type, MVT::v16i8,
/* 90276*/          OPC_Scope, 92, /*->90370*/ // 16 children in Scope
/* 90278*/            OPC_CheckChild1Integer, 0, 
/* 90280*/            OPC_MoveParent,
/* 90281*/            OPC_MoveChild1,
/* 90282*/            OPC_CheckValueType, MVT::i8,
/* 90284*/            OPC_MoveParent,
/* 90285*/            OPC_CheckType, MVT::i32,
/* 90287*/            OPC_MoveParent,
/* 90288*/            OPC_CheckType, MVT::f128,
/* 90290*/            OPC_Scope, 38, /*->90330*/ // 2 children in Scope
/* 90292*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90294*/              OPC_EmitInteger, MVT::i32, 0, 
/* 90297*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90305*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90312*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90315*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90323*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 0:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90330*/            /*Scope*/ 38, /*->90369*/
/* 90331*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90333*/              OPC_EmitInteger, MVT::i32, 15, 
/* 90336*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90344*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90351*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90354*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90362*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 0:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 15:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90369*/            0, /*End of Scope*/
/* 90370*/          /*Scope*/ 92, /*->90463*/
/* 90371*/            OPC_CheckChild1Integer, 1, 
/* 90373*/            OPC_MoveParent,
/* 90374*/            OPC_MoveChild1,
/* 90375*/            OPC_CheckValueType, MVT::i8,
/* 90377*/            OPC_MoveParent,
/* 90378*/            OPC_CheckType, MVT::i32,
/* 90380*/            OPC_MoveParent,
/* 90381*/            OPC_CheckType, MVT::f128,
/* 90383*/            OPC_Scope, 38, /*->90423*/ // 2 children in Scope
/* 90385*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90387*/              OPC_EmitInteger, MVT::i32, 1, 
/* 90390*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90398*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90405*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90408*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90416*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 1:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 1:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90423*/            /*Scope*/ 38, /*->90462*/
/* 90424*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90426*/              OPC_EmitInteger, MVT::i32, 14, 
/* 90429*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90437*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90444*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90447*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90455*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 1:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90462*/            0, /*End of Scope*/
/* 90463*/          /*Scope*/ 92, /*->90556*/
/* 90464*/            OPC_CheckChild1Integer, 2, 
/* 90466*/            OPC_MoveParent,
/* 90467*/            OPC_MoveChild1,
/* 90468*/            OPC_CheckValueType, MVT::i8,
/* 90470*/            OPC_MoveParent,
/* 90471*/            OPC_CheckType, MVT::i32,
/* 90473*/            OPC_MoveParent,
/* 90474*/            OPC_CheckType, MVT::f128,
/* 90476*/            OPC_Scope, 38, /*->90516*/ // 2 children in Scope
/* 90478*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90480*/              OPC_EmitInteger, MVT::i32, 2, 
/* 90483*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90491*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90498*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90501*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90509*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 2:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90516*/            /*Scope*/ 38, /*->90555*/
/* 90517*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90519*/              OPC_EmitInteger, MVT::i32, 13, 
/* 90522*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90530*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90537*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90540*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90548*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 2:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 13:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90555*/            0, /*End of Scope*/
/* 90556*/          /*Scope*/ 92, /*->90649*/
/* 90557*/            OPC_CheckChild1Integer, 3, 
/* 90559*/            OPC_MoveParent,
/* 90560*/            OPC_MoveChild1,
/* 90561*/            OPC_CheckValueType, MVT::i8,
/* 90563*/            OPC_MoveParent,
/* 90564*/            OPC_CheckType, MVT::i32,
/* 90566*/            OPC_MoveParent,
/* 90567*/            OPC_CheckType, MVT::f128,
/* 90569*/            OPC_Scope, 38, /*->90609*/ // 2 children in Scope
/* 90571*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90573*/              OPC_EmitInteger, MVT::i32, 3, 
/* 90576*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90584*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90591*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90594*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90602*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 3:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 3:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90609*/            /*Scope*/ 38, /*->90648*/
/* 90610*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90612*/              OPC_EmitInteger, MVT::i32, 12, 
/* 90615*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90623*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90630*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90633*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90641*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 3:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90648*/            0, /*End of Scope*/
/* 90649*/          /*Scope*/ 92, /*->90742*/
/* 90650*/            OPC_CheckChild1Integer, 4, 
/* 90652*/            OPC_MoveParent,
/* 90653*/            OPC_MoveChild1,
/* 90654*/            OPC_CheckValueType, MVT::i8,
/* 90656*/            OPC_MoveParent,
/* 90657*/            OPC_CheckType, MVT::i32,
/* 90659*/            OPC_MoveParent,
/* 90660*/            OPC_CheckType, MVT::f128,
/* 90662*/            OPC_Scope, 38, /*->90702*/ // 2 children in Scope
/* 90664*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90666*/              OPC_EmitInteger, MVT::i32, 4, 
/* 90669*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90677*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90684*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90687*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90695*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 4:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90702*/            /*Scope*/ 38, /*->90741*/
/* 90703*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90705*/              OPC_EmitInteger, MVT::i32, 11, 
/* 90708*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90716*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90723*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90726*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90734*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 4:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 11:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90741*/            0, /*End of Scope*/
/* 90742*/          /*Scope*/ 92, /*->90835*/
/* 90743*/            OPC_CheckChild1Integer, 5, 
/* 90745*/            OPC_MoveParent,
/* 90746*/            OPC_MoveChild1,
/* 90747*/            OPC_CheckValueType, MVT::i8,
/* 90749*/            OPC_MoveParent,
/* 90750*/            OPC_CheckType, MVT::i32,
/* 90752*/            OPC_MoveParent,
/* 90753*/            OPC_CheckType, MVT::f128,
/* 90755*/            OPC_Scope, 38, /*->90795*/ // 2 children in Scope
/* 90757*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90759*/              OPC_EmitInteger, MVT::i32, 5, 
/* 90762*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90770*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90777*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90780*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90788*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 5:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 5:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90795*/            /*Scope*/ 38, /*->90834*/
/* 90796*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90798*/              OPC_EmitInteger, MVT::i32, 10, 
/* 90801*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90809*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90816*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90819*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90827*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 5:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90834*/            0, /*End of Scope*/
/* 90835*/          /*Scope*/ 92, /*->90928*/
/* 90836*/            OPC_CheckChild1Integer, 6, 
/* 90838*/            OPC_MoveParent,
/* 90839*/            OPC_MoveChild1,
/* 90840*/            OPC_CheckValueType, MVT::i8,
/* 90842*/            OPC_MoveParent,
/* 90843*/            OPC_CheckType, MVT::i32,
/* 90845*/            OPC_MoveParent,
/* 90846*/            OPC_CheckType, MVT::f128,
/* 90848*/            OPC_Scope, 38, /*->90888*/ // 2 children in Scope
/* 90850*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90852*/              OPC_EmitInteger, MVT::i32, 6, 
/* 90855*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90863*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90870*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90873*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90881*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 6:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90888*/            /*Scope*/ 38, /*->90927*/
/* 90889*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90891*/              OPC_EmitInteger, MVT::i32, 9, 
/* 90894*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90902*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90909*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90912*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90920*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 6:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 9:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90927*/            0, /*End of Scope*/
/* 90928*/          /*Scope*/ 92, /*->91021*/
/* 90929*/            OPC_CheckChild1Integer, 7, 
/* 90931*/            OPC_MoveParent,
/* 90932*/            OPC_MoveChild1,
/* 90933*/            OPC_CheckValueType, MVT::i8,
/* 90935*/            OPC_MoveParent,
/* 90936*/            OPC_CheckType, MVT::i32,
/* 90938*/            OPC_MoveParent,
/* 90939*/            OPC_CheckType, MVT::f128,
/* 90941*/            OPC_Scope, 38, /*->90981*/ // 2 children in Scope
/* 90943*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 90945*/              OPC_EmitInteger, MVT::i32, 7, 
/* 90948*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90956*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 90963*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 90966*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 90974*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 7:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 7:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 90981*/            /*Scope*/ 38, /*->91020*/
/* 90982*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 90984*/              OPC_EmitInteger, MVT::i32, 8, 
/* 90987*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 90995*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91002*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91005*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91013*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 7:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91020*/            0, /*End of Scope*/
/* 91021*/          /*Scope*/ 92, /*->91114*/
/* 91022*/            OPC_CheckChild1Integer, 8, 
/* 91024*/            OPC_MoveParent,
/* 91025*/            OPC_MoveChild1,
/* 91026*/            OPC_CheckValueType, MVT::i8,
/* 91028*/            OPC_MoveParent,
/* 91029*/            OPC_CheckType, MVT::i32,
/* 91031*/            OPC_MoveParent,
/* 91032*/            OPC_CheckType, MVT::f128,
/* 91034*/            OPC_Scope, 38, /*->91074*/ // 2 children in Scope
/* 91036*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91038*/              OPC_EmitInteger, MVT::i32, 8, 
/* 91041*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91049*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91056*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91059*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91067*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 8:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 8:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91074*/            /*Scope*/ 38, /*->91113*/
/* 91075*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91077*/              OPC_EmitInteger, MVT::i32, 7, 
/* 91080*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91088*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91095*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91098*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91106*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 8:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 7:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91113*/            0, /*End of Scope*/
/* 91114*/          /*Scope*/ 92, /*->91207*/
/* 91115*/            OPC_CheckChild1Integer, 9, 
/* 91117*/            OPC_MoveParent,
/* 91118*/            OPC_MoveChild1,
/* 91119*/            OPC_CheckValueType, MVT::i8,
/* 91121*/            OPC_MoveParent,
/* 91122*/            OPC_CheckType, MVT::i32,
/* 91124*/            OPC_MoveParent,
/* 91125*/            OPC_CheckType, MVT::f128,
/* 91127*/            OPC_Scope, 38, /*->91167*/ // 2 children in Scope
/* 91129*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91131*/              OPC_EmitInteger, MVT::i32, 9, 
/* 91134*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91142*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91149*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91152*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91160*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 9:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 9:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91167*/            /*Scope*/ 38, /*->91206*/
/* 91168*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91170*/              OPC_EmitInteger, MVT::i32, 6, 
/* 91173*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91181*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91188*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91191*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91199*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 9:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 6:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91206*/            0, /*End of Scope*/
/* 91207*/          /*Scope*/ 92, /*->91300*/
/* 91208*/            OPC_CheckChild1Integer, 10, 
/* 91210*/            OPC_MoveParent,
/* 91211*/            OPC_MoveChild1,
/* 91212*/            OPC_CheckValueType, MVT::i8,
/* 91214*/            OPC_MoveParent,
/* 91215*/            OPC_CheckType, MVT::i32,
/* 91217*/            OPC_MoveParent,
/* 91218*/            OPC_CheckType, MVT::f128,
/* 91220*/            OPC_Scope, 38, /*->91260*/ // 2 children in Scope
/* 91222*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91224*/              OPC_EmitInteger, MVT::i32, 10, 
/* 91227*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91235*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91242*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91245*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91253*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 10:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 10:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91260*/            /*Scope*/ 38, /*->91299*/
/* 91261*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91263*/              OPC_EmitInteger, MVT::i32, 5, 
/* 91266*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91274*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91281*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91284*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91292*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 10:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 5:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91299*/            0, /*End of Scope*/
/* 91300*/          /*Scope*/ 92, /*->91393*/
/* 91301*/            OPC_CheckChild1Integer, 11, 
/* 91303*/            OPC_MoveParent,
/* 91304*/            OPC_MoveChild1,
/* 91305*/            OPC_CheckValueType, MVT::i8,
/* 91307*/            OPC_MoveParent,
/* 91308*/            OPC_CheckType, MVT::i32,
/* 91310*/            OPC_MoveParent,
/* 91311*/            OPC_CheckType, MVT::f128,
/* 91313*/            OPC_Scope, 38, /*->91353*/ // 2 children in Scope
/* 91315*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91317*/              OPC_EmitInteger, MVT::i32, 11, 
/* 91320*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91328*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91335*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91338*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91346*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 11:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 11:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91353*/            /*Scope*/ 38, /*->91392*/
/* 91354*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91356*/              OPC_EmitInteger, MVT::i32, 4, 
/* 91359*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91367*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91374*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91377*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91385*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 11:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 4:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91392*/            0, /*End of Scope*/
/* 91393*/          /*Scope*/ 92, /*->91486*/
/* 91394*/            OPC_CheckChild1Integer, 12, 
/* 91396*/            OPC_MoveParent,
/* 91397*/            OPC_MoveChild1,
/* 91398*/            OPC_CheckValueType, MVT::i8,
/* 91400*/            OPC_MoveParent,
/* 91401*/            OPC_CheckType, MVT::i32,
/* 91403*/            OPC_MoveParent,
/* 91404*/            OPC_CheckType, MVT::f128,
/* 91406*/            OPC_Scope, 38, /*->91446*/ // 2 children in Scope
/* 91408*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91410*/              OPC_EmitInteger, MVT::i32, 12, 
/* 91413*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91421*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91428*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91431*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91439*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 12:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 12:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91446*/            /*Scope*/ 38, /*->91485*/
/* 91447*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91449*/              OPC_EmitInteger, MVT::i32, 3, 
/* 91452*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91460*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91467*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91470*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91478*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 12:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 3:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91485*/            0, /*End of Scope*/
/* 91486*/          /*Scope*/ 92, /*->91579*/
/* 91487*/            OPC_CheckChild1Integer, 13, 
/* 91489*/            OPC_MoveParent,
/* 91490*/            OPC_MoveChild1,
/* 91491*/            OPC_CheckValueType, MVT::i8,
/* 91493*/            OPC_MoveParent,
/* 91494*/            OPC_CheckType, MVT::i32,
/* 91496*/            OPC_MoveParent,
/* 91497*/            OPC_CheckType, MVT::f128,
/* 91499*/            OPC_Scope, 38, /*->91539*/ // 2 children in Scope
/* 91501*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91503*/              OPC_EmitInteger, MVT::i32, 13, 
/* 91506*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91514*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91521*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91524*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91532*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 13:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 13:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91539*/            /*Scope*/ 38, /*->91578*/
/* 91540*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91542*/              OPC_EmitInteger, MVT::i32, 2, 
/* 91545*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91553*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91560*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91563*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91571*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 13:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91578*/            0, /*End of Scope*/
/* 91579*/          /*Scope*/ 92, /*->91672*/
/* 91580*/            OPC_CheckChild1Integer, 14, 
/* 91582*/            OPC_MoveParent,
/* 91583*/            OPC_MoveChild1,
/* 91584*/            OPC_CheckValueType, MVT::i8,
/* 91586*/            OPC_MoveParent,
/* 91587*/            OPC_CheckType, MVT::i32,
/* 91589*/            OPC_MoveParent,
/* 91590*/            OPC_CheckType, MVT::f128,
/* 91592*/            OPC_Scope, 38, /*->91632*/ // 2 children in Scope
/* 91594*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91596*/              OPC_EmitInteger, MVT::i32, 14, 
/* 91599*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91607*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91614*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91617*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91625*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 14:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 14:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91632*/            /*Scope*/ 38, /*->91671*/
/* 91633*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91635*/              OPC_EmitInteger, MVT::i32, 1, 
/* 91638*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91646*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91653*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91656*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91664*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 14:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 1:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91671*/            0, /*End of Scope*/
/* 91672*/          /*Scope*/ 92, /*->91765*/
/* 91673*/            OPC_CheckChild1Integer, 15, 
/* 91675*/            OPC_MoveParent,
/* 91676*/            OPC_MoveChild1,
/* 91677*/            OPC_CheckValueType, MVT::i8,
/* 91679*/            OPC_MoveParent,
/* 91680*/            OPC_CheckType, MVT::i32,
/* 91682*/            OPC_MoveParent,
/* 91683*/            OPC_CheckType, MVT::f128,
/* 91685*/            OPC_Scope, 38, /*->91725*/ // 2 children in Scope
/* 91687*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91689*/              OPC_EmitInteger, MVT::i32, 15, 
/* 91692*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91700*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91707*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91710*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91718*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 15:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 15:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91725*/            /*Scope*/ 38, /*->91764*/
/* 91726*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91728*/              OPC_EmitInteger, MVT::i32, 0, 
/* 91731*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTRACTUB), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91739*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91746*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91749*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91757*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$src, 15:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 414
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSB2D:{ *:[f128] } (VEXTRACTUB:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v16i8] }:$src)), sub_64:{ *:[i32] }))
/* 91764*/            0, /*End of Scope*/
/* 91765*/          0, /*End of Scope*/
/* 91766*/        0, /*End of Scope*/
/* 91767*/      /*SwitchOpcode*/ 77|128,3/*461*/, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),// ->92232
/* 91771*/        OPC_RecordChild0, // #0 = $src
/* 91772*/        OPC_Scope, 22|128,1/*150*/, /*->91925*/ // 4 children in Scope
/* 91775*/          OPC_CheckChild1Integer, 0, 
/* 91777*/          OPC_SwitchType /*2 cases */, 59, MVT::i64,// ->91839
/* 91780*/            OPC_MoveParent,
/* 91781*/            OPC_CheckType, MVT::f128,
/* 91783*/            OPC_Scope, 20, /*->91805*/ // 2 children in Scope
/* 91785*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91787*/              OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 91790*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 91798*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$src, VFRC:{ *:[i32] }))
/* 91805*/            /*Scope*/ 32, /*->91838*/
/* 91806*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91808*/              OPC_EmitInteger, MVT::i32, 3, 
/* 91811*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 91820*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91823*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 91831*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 4, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$src, ?:{ *:[v2i64] }:$src, 3:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 91838*/            0, /*End of Scope*/
/* 91839*/          /*SwitchType*/ 83, MVT::i32,// ->91924
/* 91841*/            OPC_MoveParent,
/* 91842*/            OPC_CheckType, MVT::f128,
/* 91844*/            OPC_Scope, 38, /*->91884*/ // 2 children in Scope
/* 91846*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91848*/              OPC_EmitInteger, MVT::i32, 0, 
/* 91851*/              OPC_EmitNode1, TARGET_VAL(PPC::VSPLTW), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91859*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91866*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91869*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91877*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } (VSPLTW:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v4i32] }:$src)), sub_64:{ *:[i32] }))
/* 91884*/            /*Scope*/ 38, /*->91923*/
/* 91885*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91887*/              OPC_EmitInteger, MVT::i32, 3, 
/* 91890*/              OPC_EmitNode1, TARGET_VAL(PPC::VSPLTW), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 91898*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 91905*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91908*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 91916*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 0:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } (VSPLTW:{ *:[f128] } 3:{ *:[i32] }, ?:{ *:[v4i32] }:$src)), sub_64:{ *:[i32] }))
/* 91923*/            0, /*End of Scope*/
/* 91924*/          0, // EndSwitchType
/* 91925*/        /*Scope*/ 11|128,1/*139*/, /*->92066*/
/* 91927*/          OPC_CheckChild1Integer, 1, 
/* 91929*/          OPC_SwitchType /*2 cases */, 59, MVT::i64,// ->91991
/* 91932*/            OPC_MoveParent,
/* 91933*/            OPC_CheckType, MVT::f128,
/* 91935*/            OPC_Scope, 20, /*->91957*/ // 2 children in Scope
/* 91937*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 91939*/              OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 91942*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 91950*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 2, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$src, VFRC:{ *:[i32] }))
/* 91957*/            /*Scope*/ 32, /*->91990*/
/* 91958*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 91960*/              OPC_EmitInteger, MVT::i32, 3, 
/* 91963*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 91972*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 91975*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 91983*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 4, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i64] } v2i64:{ *:[v2i64] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$src, ?:{ *:[v2i64] }:$src, 3:{ *:[i32] }), sub_64:{ *:[i32] }))
/* 91990*/            0, /*End of Scope*/
/* 91991*/          /*SwitchType*/ 72, MVT::i32,// ->92065
/* 91993*/            OPC_MoveParent,
/* 91994*/            OPC_CheckType, MVT::f128,
/* 91996*/            OPC_Scope, 27, /*->92025*/ // 2 children in Scope
/* 91998*/              OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 92000*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                            MVT::f128, 1/*#Ops*/, 0,  // Results = #1
/* 92007*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 92010*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 92018*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 3, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } ?:{ *:[v4i32] }:$src), sub_64:{ *:[i32] }))
/* 92025*/            /*Scope*/ 38, /*->92064*/
/* 92026*/              OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 92028*/              OPC_EmitInteger, MVT::i32, 2, 
/* 92031*/              OPC_EmitNode1, TARGET_VAL(PPC::VSPLTW), 0,
                            MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 92039*/              OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                            MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 92046*/              OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 92049*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                            MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 92057*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                            MVT::f128, 1/*#Ops*/, 5, 
                        // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 1:{ *:[iPTR] })) - Complexity = 411
                        // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } (VSPLTW:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v4i32] }:$src)), sub_64:{ *:[i32] }))
/* 92064*/            0, /*End of Scope*/
/* 92065*/          0, // EndSwitchType
/* 92066*/        /*Scope*/ 76, /*->92143*/
/* 92067*/          OPC_CheckChild1Integer, 2, 
/* 92069*/          OPC_CheckType, MVT::i32,
/* 92071*/          OPC_MoveParent,
/* 92072*/          OPC_CheckType, MVT::f128,
/* 92074*/          OPC_Scope, 27, /*->92103*/ // 2 children in Scope
/* 92076*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 92078*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                          MVT::f128, 1/*#Ops*/, 0,  // Results = #1
/* 92085*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 92088*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 92096*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                          MVT::f128, 1/*#Ops*/, 3, 
                      // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } ?:{ *:[v4i32] }:$src), sub_64:{ *:[i32] }))
/* 92103*/          /*Scope*/ 38, /*->92142*/
/* 92104*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 92106*/            OPC_EmitInteger, MVT::i32, 2, 
/* 92109*/            OPC_EmitNode1, TARGET_VAL(PPC::VSPLTW), 0,
                          MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 92117*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                          MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 92124*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 92127*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 92135*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                          MVT::f128, 1/*#Ops*/, 5, 
                      // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 2:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } (VSPLTW:{ *:[f128] } 2:{ *:[i32] }, ?:{ *:[v4i32] }:$src)), sub_64:{ *:[i32] }))
/* 92142*/          0, /*End of Scope*/
/* 92143*/        /*Scope*/ 87, /*->92231*/
/* 92144*/          OPC_CheckChild1Integer, 3, 
/* 92146*/          OPC_CheckType, MVT::i32,
/* 92148*/          OPC_MoveParent,
/* 92149*/          OPC_CheckType, MVT::f128,
/* 92151*/          OPC_Scope, 38, /*->92191*/ // 2 children in Scope
/* 92153*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 92155*/            OPC_EmitInteger, MVT::i32, 3, 
/* 92158*/            OPC_EmitNode1, TARGET_VAL(PPC::VSPLTW), 0,
                          MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 92166*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                          MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 92173*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 92176*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 92184*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                          MVT::f128, 1/*#Ops*/, 5, 
                      // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } (VSPLTW:{ *:[f128] } 3:{ *:[i32] }, ?:{ *:[v4i32] }:$src)), sub_64:{ *:[i32] }))
/* 92191*/          /*Scope*/ 38, /*->92230*/
/* 92192*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 92194*/            OPC_EmitInteger, MVT::i32, 0, 
/* 92197*/            OPC_EmitNode1, TARGET_VAL(PPC::VSPLTW), 0,
                          MVT::f128, 2/*#Ops*/, 1, 0,  // Results = #2
/* 92205*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2D), 0,
                          MVT::f128, 1/*#Ops*/, 2,  // Results = #3
/* 92212*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 92215*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::EXTRACT_SUBREG), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4,  // Results = #5
/* 92223*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                          MVT::f128, 1/*#Ops*/, 5, 
                      // Src: (sint_to_fp:{ *:[f128] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$src, 3:{ *:[iPTR] })) - Complexity = 411
                      // Dst: (XSCVSDQP:{ *:[f128] } (EXTRACT_SUBREG:{ *:[f64] } (VEXTSW2D:{ *:[f128] } (VSPLTW:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[v4i32] }:$src)), sub_64:{ *:[i32] }))
/* 92230*/          0, /*End of Scope*/
/* 92231*/        0, /*End of Scope*/
/* 92232*/      /*SwitchOpcode*/ 40, TARGET_VAL(PPCISD::MFVSR),// ->92275
/* 92235*/        OPC_RecordChild0, // #0 = $src
/* 92236*/        OPC_CheckChild0Type, MVT::f64,
/* 92238*/        OPC_SwitchType /*2 cases */, 12, MVT::i64,// ->92253
/* 92241*/          OPC_MoveParent,
/* 92242*/          OPC_CheckType, MVT::f128,
/* 92244*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92246*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                        MVT::f128, 1/*#Ops*/, 0, 
                    // Src: (sint_to_fp:{ *:[f128] } (PPCmfvsr:{ *:[i64] } f64:{ *:[f64] }:$src)) - Complexity = 406
                    // Dst: (XSCVSDQP:{ *:[f128] } ?:{ *:[f64] }:$src)
/* 92253*/        /*SwitchType*/ 19, MVT::i32,// ->92274
/* 92255*/          OPC_MoveParent,
/* 92256*/          OPC_CheckType, MVT::f128,
/* 92258*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92260*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTSW2Ds), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 92267*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                        MVT::f128, 1/*#Ops*/, 1, 
                    // Src: (sint_to_fp:{ *:[f128] } (PPCmfvsr:{ *:[i32] } f64:{ *:[f64] }:$src)) - Complexity = 406
                    // Dst: (XSCVSDQP:{ *:[f128] } (VEXTSW2Ds:{ *:[f64] } ?:{ *:[f64] }:$src))
/* 92274*/        0, // EndSwitchType
/* 92275*/      0, // EndSwitchOpcode
/* 92276*/    /*Scope*/ 112, /*->92389*/
/* 92277*/      OPC_RecordChild0, // #0 = $src
/* 92278*/      OPC_Scope, 24, /*->92304*/ // 4 children in Scope
/* 92280*/        OPC_CheckChild0Type, MVT::i64,
/* 92282*/        OPC_CheckType, MVT::f128,
/* 92284*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92286*/        OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 92289*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 92297*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                      MVT::f128, 1/*#Ops*/, 2, 
                  // Src: (sint_to_fp:{ *:[f128] } i64:{ *:[i64] }:$src) - Complexity = 403
                  // Dst: (XSCVSDQP:{ *:[f128] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[i64] }:$src, VFRC:{ *:[i32] }))
/* 92304*/      /*Scope*/ 44, /*->92349*/
/* 92305*/        OPC_CheckChild0Type, MVT::i32,
/* 92307*/        OPC_SwitchType /*3 cases */, 16, MVT::f128,// ->92326
/* 92310*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92312*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWA), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 92319*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSDQP), 0,
                        MVT::f128, 1/*#Ops*/, 1, 
                    // Src: (sint_to_fp:{ *:[f128] } i32:{ *:[i32] }:$src) - Complexity = 403
                    // Dst: (XSCVSDQP:{ *:[f128] } (MTVSRWA:{ *:[f64] } ?:{ *:[i32] }:$src))
/* 92326*/        /*SwitchType*/ 9, MVT::f64,// ->92337
/* 92328*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 92330*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDCFSI), 0,
                        MVT::f64, 1/*#Ops*/, 0, 
                    // Src: (sint_to_fp:{ *:[f64] } i32:{ *:[i32] }:$RB) - Complexity = 3
                    // Dst: (EFDCFSI:{ *:[f64] } i32:{ *:[i32] }:$RB)
/* 92337*/        /*SwitchType*/ 9, MVT::f32,// ->92348
/* 92339*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 92341*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSCFSI), 0,
                        MVT::f32, 1/*#Ops*/, 0, 
                    // Src: (sint_to_fp:{ *:[f32] } i32:{ *:[i32] }:$RB) - Complexity = 3
                    // Dst: (EFSCFSI:{ *:[f32] } i32:{ *:[i32] }:$RB)
/* 92348*/        0, // EndSwitchType
/* 92349*/      /*Scope*/ 11, /*->92361*/
/* 92350*/        OPC_CheckType, MVT::v2f64,
/* 92352*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92354*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSXDDP), 0,
                      MVT::v2f64, 1/*#Ops*/, 0, 
                  // Src: (sint_to_fp:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$XB) - Complexity = 403
                  // Dst: (XVCVSXDDP:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$XB)
/* 92361*/      /*Scope*/ 26, /*->92388*/
/* 92362*/        OPC_CheckType, MVT::v4f32,
/* 92364*/        OPC_CheckChild0Type, MVT::v4i32,
/* 92366*/        OPC_Scope, 9, /*->92377*/ // 2 children in Scope
/* 92368*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92370*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (sint_to_fp:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$XB) - Complexity = 403
                    // Dst: (XVCVSXWSP:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$XB)
/* 92377*/        /*Scope*/ 9, /*->92387*/
/* 92378*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 92380*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VCFSX_0), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (sint_to_fp:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$vA) - Complexity = 3
                    // Dst: (VCFSX_0:{ *:[v4f32] } ?:{ *:[v4i32] }:$vA)
/* 92387*/        0, /*End of Scope*/
/* 92388*/      0, /*End of Scope*/
/* 92389*/    0, /*End of Scope*/
/* 92390*/  /*SwitchOpcode*/ 32|128,5/*672*/, TARGET_VAL(ISD::FNEG),// ->93066
/* 92394*/    OPC_Scope, 47|128,1/*175*/, /*->92572*/ // 8 children in Scope
/* 92397*/      OPC_MoveChild0,
/* 92398*/      OPC_SwitchOpcode /*3 cases */, 40, TARGET_VAL(ISD::INTRINSIC_WO_CHAIN),// ->92442
/* 92402*/        OPC_CheckChild0Integer, 35|128,42/*5411*/, 
/* 92405*/        OPC_RecordChild1, // #0 = $vA
/* 92406*/        OPC_RecordChild2, // #1 = $vB
/* 92407*/        OPC_Scope, 18, /*->92427*/ // 2 children in Scope
/* 92409*/          OPC_MoveChild3,
/* 92410*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 92413*/          OPC_RecordChild0, // #2 = $vTi
/* 92414*/          OPC_MoveParent,
/* 92415*/          OPC_MoveParent,
/* 92416*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92418*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBQPO), 0,
                        MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                    // Src: (fneg:{ *:[f128] } (intrinsic_wo_chain:{ *:[f128] } 5411:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, (fneg:{ *:[f128] } f128:{ *:[f128] }:$vTi))) - Complexity = 414
                    // Dst: (XSNMSUBQPO:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 92427*/        /*Scope*/ 13, /*->92441*/
/* 92428*/          OPC_RecordChild3, // #2 = $vTi
/* 92429*/          OPC_MoveParent,
/* 92430*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92432*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMADDQPO), 0,
                        MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                    // Src: (fneg:{ *:[f128] } (intrinsic_wo_chain:{ *:[f128] } 5411:{ *:[iPTR] }, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, f128:{ *:[f128] }:$vTi)) - Complexity = 411
                    // Dst: (XSNMADDQPO:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 92441*/        0, /*End of Scope*/
/* 92442*/      /*SwitchOpcode*/ 97, TARGET_VAL(ISD::FMA),// ->92542
/* 92445*/        OPC_RecordChild0, // #0 = $XA
/* 92446*/        OPC_RecordChild1, // #1 = $XB
/* 92447*/        OPC_Scope, 48, /*->92497*/ // 2 children in Scope
/* 92449*/          OPC_MoveChild2,
/* 92450*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 92453*/          OPC_RecordChild0, // #2 = $XTi
/* 92454*/          OPC_MoveParent,
/* 92455*/          OPC_MoveParent,
/* 92456*/          OPC_SwitchType /*3 cases */, 11, MVT::f64,// ->92470
/* 92459*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92461*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBADP), 0,
                          MVT::f64, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[f64] } (fma:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB, (fneg:{ *:[f64] } f64:{ *:[f64] }:$XTi))) - Complexity = 409
                      // Dst: (XSNMSUBADP:{ *:[f64] } f64:{ *:[f64] }:$XTi, f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 92470*/          /*SwitchType*/ 11, MVT::f32,// ->92483
/* 92472*/            OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 92474*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBASP), 0,
                          MVT::f32, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[f32] } (fma:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB, (fneg:{ *:[f32] } f32:{ *:[f32] }:$XTi))) - Complexity = 409
                      // Dst: (XSNMSUBASP:{ *:[f32] } f32:{ *:[f32] }:$XTi, f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 92483*/          /*SwitchType*/ 11, MVT::f128,// ->92496
/* 92485*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92487*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBQP), 0,
                          MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[f128] } (fma:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, (fneg:{ *:[f128] } f128:{ *:[f128] }:$vTi))) - Complexity = 409
                      // Dst: (XSNMSUBQP:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 92496*/          0, // EndSwitchType
/* 92497*/        /*Scope*/ 43, /*->92541*/
/* 92498*/          OPC_RecordChild2, // #2 = $XTi
/* 92499*/          OPC_MoveParent,
/* 92500*/          OPC_SwitchType /*3 cases */, 11, MVT::f64,// ->92514
/* 92503*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92505*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMADDADP), 0,
                          MVT::f64, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[f64] } (fma:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB, f64:{ *:[f64] }:$XTi)) - Complexity = 406
                      // Dst: (XSNMADDADP:{ *:[f64] } f64:{ *:[f64] }:$XTi, f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 92514*/          /*SwitchType*/ 11, MVT::f32,// ->92527
/* 92516*/            OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 92518*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMADDASP), 0,
                          MVT::f32, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[f32] } (fma:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB, f32:{ *:[f32] }:$XTi)) - Complexity = 406
                      // Dst: (XSNMADDASP:{ *:[f32] } f32:{ *:[f32] }:$XTi, f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 92527*/          /*SwitchType*/ 11, MVT::f128,// ->92540
/* 92529*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92531*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMADDQP), 0,
                          MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[f128] } (fma:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, f128:{ *:[f128] }:$vTi)) - Complexity = 406
                      // Dst: (XSNMADDQP:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 92540*/          0, // EndSwitchType
/* 92541*/        0, /*End of Scope*/
/* 92542*/      /*SwitchOpcode*/ 26, TARGET_VAL(ISD::FABS),// ->92571
/* 92545*/        OPC_RecordChild0, // #0 = $XB
/* 92546*/        OPC_MoveParent,
/* 92547*/        OPC_SwitchType /*2 cases */, 9, MVT::f64,// ->92559
/* 92550*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92552*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNABSDP), 0,
                        MVT::f64, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[f64] } (fabs:{ *:[f64] } f64:{ *:[f64] }:$XB)) - Complexity = 406
                    // Dst: (XSNABSDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 92559*/        /*SwitchType*/ 9, MVT::f128,// ->92570
/* 92561*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92563*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNABSQP), 0,
                        MVT::f128, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[f128] } (fabs:{ *:[f128] } f128:{ *:[f128] }:$vB)) - Complexity = 406
                    // Dst: (XSNABSQP:{ *:[f128] } f128:{ *:[f128] }:$vB)
/* 92570*/        0, // EndSwitchType
/* 92571*/      0, // EndSwitchOpcode
/* 92572*/    /*Scope*/ 25, /*->92598*/
/* 92573*/      OPC_RecordChild0, // #0 = $XB
/* 92574*/      OPC_SwitchType /*2 cases */, 9, MVT::f64,// ->92586
/* 92577*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92579*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNEGDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fneg:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSNEGDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 92586*/      /*SwitchType*/ 9, MVT::f128,// ->92597
/* 92588*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 92590*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNEGQP), 0,
                      MVT::f128, 1/*#Ops*/, 0, 
                  // Src: (fneg:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                  // Dst: (XSNEGQP:{ *:[f128] } f128:{ *:[f128] }:$vB)
/* 92597*/      0, // EndSwitchType
/* 92598*/    /*Scope*/ 4|128,1/*132*/, /*->92732*/
/* 92600*/      OPC_MoveChild0,
/* 92601*/      OPC_SwitchOpcode /*2 cases */, 71, TARGET_VAL(ISD::FMA),// ->92676
/* 92605*/        OPC_RecordChild0, // #0 = $FRA
/* 92606*/        OPC_RecordChild1, // #1 = $FRC
/* 92607*/        OPC_Scope, 35, /*->92644*/ // 2 children in Scope
/* 92609*/          OPC_MoveChild2,
/* 92610*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 92613*/          OPC_RecordChild0, // #2 = $FRB
/* 92614*/          OPC_MoveParent,
/* 92615*/          OPC_MoveParent,
/* 92616*/          OPC_SwitchType /*2 cases */, 11, MVT::f64,// ->92630
/* 92619*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92621*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMSUB), 0,
                          MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fneg:{ *:[f64] } (fma:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, (fneg:{ *:[f64] } f64:{ *:[f64] }:$FRB))) - Complexity = 9
                      // Dst: (FNMSUB:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB)
/* 92630*/          /*SwitchType*/ 11, MVT::f32,// ->92643
/* 92632*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92634*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMSUBS), 0,
                          MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fneg:{ *:[f32] } (fma:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, (fneg:{ *:[f32] } f32:{ *:[f32] }:$FRB))) - Complexity = 9
                      // Dst: (FNMSUBS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB)
/* 92643*/          0, // EndSwitchType
/* 92644*/        /*Scope*/ 30, /*->92675*/
/* 92645*/          OPC_RecordChild2, // #2 = $FRB
/* 92646*/          OPC_MoveParent,
/* 92647*/          OPC_SwitchType /*2 cases */, 11, MVT::f64,// ->92661
/* 92650*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92652*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMADD), 0,
                          MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fneg:{ *:[f64] } (fma:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB)) - Complexity = 6
                      // Dst: (FNMADD:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB)
/* 92661*/          /*SwitchType*/ 11, MVT::f32,// ->92674
/* 92663*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92665*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMADDS), 0,
                          MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fneg:{ *:[f32] } (fma:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB)) - Complexity = 6
                      // Dst: (FNMADDS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB)
/* 92674*/          0, // EndSwitchType
/* 92675*/        0, /*End of Scope*/
/* 92676*/      /*SwitchOpcode*/ 52, TARGET_VAL(ISD::FABS),// ->92731
/* 92679*/        OPC_RecordChild0, // #0 = $frB
/* 92680*/        OPC_MoveParent,
/* 92681*/        OPC_SwitchType /*2 cases */, 22, MVT::f32,// ->92706
/* 92684*/          OPC_Scope, 9, /*->92695*/ // 2 children in Scope
/* 92686*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92688*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FNABSS), 0,
                          MVT::f32, 1/*#Ops*/, 0, 
                      // Src: (fneg:{ *:[f32] } (fabs:{ *:[f32] } f32:{ *:[f32] }:$frB)) - Complexity = 6
                      // Dst: (FNABSS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 92695*/          /*Scope*/ 9, /*->92705*/
/* 92696*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 92698*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSNABS), 0,
                          MVT::f32, 1/*#Ops*/, 0, 
                      // Src: (fneg:{ *:[f32] } (fabs:{ *:[f32] } f32:{ *:[f32] }:$RA)) - Complexity = 6
                      // Dst: (EFSNABS:{ *:[f32] } f32:{ *:[f32] }:$RA)
/* 92705*/          0, /*End of Scope*/
/* 92706*/        /*SwitchType*/ 22, MVT::f64,// ->92730
/* 92708*/          OPC_Scope, 9, /*->92719*/ // 2 children in Scope
/* 92710*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92712*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FNABSD), 0,
                          MVT::f64, 1/*#Ops*/, 0, 
                      // Src: (fneg:{ *:[f64] } (fabs:{ *:[f64] } f64:{ *:[f64] }:$frB)) - Complexity = 6
                      // Dst: (FNABSD:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 92719*/          /*Scope*/ 9, /*->92729*/
/* 92720*/            OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 92722*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDNABS), 0,
                          MVT::f64, 1/*#Ops*/, 0, 
                      // Src: (fneg:{ *:[f64] } (fabs:{ *:[f64] } f64:{ *:[f64] }:$RA)) - Complexity = 6
                      // Dst: (EFDNABS:{ *:[f64] } f64:{ *:[f64] }:$RA)
/* 92729*/          0, /*End of Scope*/
/* 92730*/        0, // EndSwitchType
/* 92731*/      0, // EndSwitchOpcode
/* 92732*/    /*Scope*/ 51, /*->92784*/
/* 92733*/      OPC_RecordChild0, // #0 = $frB
/* 92734*/      OPC_SwitchType /*2 cases */, 22, MVT::f32,// ->92759
/* 92737*/        OPC_Scope, 9, /*->92748*/ // 2 children in Scope
/* 92739*/          OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92741*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::FNEGS), 0,
                        MVT::f32, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                    // Dst: (FNEGS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 92748*/        /*Scope*/ 9, /*->92758*/
/* 92749*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 92751*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSNEG), 0,
                        MVT::f32, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[f32] } f32:{ *:[f32] }:$RA) - Complexity = 3
                    // Dst: (EFSNEG:{ *:[f32] } f32:{ *:[f32] }:$RA)
/* 92758*/        0, /*End of Scope*/
/* 92759*/      /*SwitchType*/ 22, MVT::f64,// ->92783
/* 92761*/        OPC_Scope, 9, /*->92772*/ // 2 children in Scope
/* 92763*/          OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 92765*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::FNEGD), 0,
                        MVT::f64, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                    // Dst: (FNEGD:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 92772*/        /*Scope*/ 9, /*->92782*/
/* 92773*/          OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 92775*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDNEG), 0,
                        MVT::f64, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[f64] } f64:{ *:[f64] }:$RA) - Complexity = 3
                    // Dst: (EFDNEG:{ *:[f64] } f64:{ *:[f64] }:$RA)
/* 92782*/        0, /*End of Scope*/
/* 92783*/      0, // EndSwitchType
/* 92784*/    /*Scope*/ 106, /*->92891*/
/* 92785*/      OPC_MoveChild0,
/* 92786*/      OPC_SwitchOpcode /*2 cases */, 71, TARGET_VAL(ISD::FMA),// ->92861
/* 92790*/        OPC_RecordChild0, // #0 = $XA
/* 92791*/        OPC_RecordChild1, // #1 = $XB
/* 92792*/        OPC_Scope, 35, /*->92829*/ // 2 children in Scope
/* 92794*/          OPC_MoveChild2,
/* 92795*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 92798*/          OPC_RecordChild0, // #2 = $XTi
/* 92799*/          OPC_MoveParent,
/* 92800*/          OPC_MoveParent,
/* 92801*/          OPC_SwitchType /*2 cases */, 11, MVT::v2f64,// ->92815
/* 92804*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92806*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMSUBADP), 0,
                          MVT::v2f64, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[v2f64] } (fma:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB, (fneg:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XTi))) - Complexity = 409
                      // Dst: (XVNMSUBADP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XTi, v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 92815*/          /*SwitchType*/ 11, MVT::v4f32,// ->92828
/* 92817*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92819*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMSUBASP), 0,
                          MVT::v4f32, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[v4f32] } (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB, (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XTi))) - Complexity = 409
                      // Dst: (XVNMSUBASP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XTi, v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 92828*/          0, // EndSwitchType
/* 92829*/        /*Scope*/ 30, /*->92860*/
/* 92830*/          OPC_RecordChild2, // #2 = $XTi
/* 92831*/          OPC_MoveParent,
/* 92832*/          OPC_SwitchType /*2 cases */, 11, MVT::v2f64,// ->92846
/* 92835*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92837*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMADDADP), 0,
                          MVT::v2f64, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[v2f64] } (fma:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB, v2f64:{ *:[v2f64] }:$XTi)) - Complexity = 406
                      // Dst: (XVNMADDADP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XTi, v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 92846*/          /*SwitchType*/ 11, MVT::v4f32,// ->92859
/* 92848*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92850*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMADDASP), 0,
                          MVT::v4f32, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fneg:{ *:[v4f32] } (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB, v4f32:{ *:[v4f32] }:$XTi)) - Complexity = 406
                      // Dst: (XVNMADDASP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XTi, v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 92859*/          0, // EndSwitchType
/* 92860*/        0, /*End of Scope*/
/* 92861*/      /*SwitchOpcode*/ 26, TARGET_VAL(ISD::FABS),// ->92890
/* 92864*/        OPC_RecordChild0, // #0 = $XB
/* 92865*/        OPC_MoveParent,
/* 92866*/        OPC_SwitchType /*2 cases */, 9, MVT::v2f64,// ->92878
/* 92869*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92871*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNABSDP), 0,
                        MVT::v2f64, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[v2f64] } (fabs:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)) - Complexity = 406
                    // Dst: (XVNABSDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 92878*/        /*SwitchType*/ 9, MVT::v4f32,// ->92889
/* 92880*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92882*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNABSSP), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[v4f32] } (fabs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)) - Complexity = 406
                    // Dst: (XVNABSSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 92889*/        0, // EndSwitchType
/* 92890*/      0, // EndSwitchOpcode
/* 92891*/    /*Scope*/ 25, /*->92917*/
/* 92892*/      OPC_RecordChild0, // #0 = $XB
/* 92893*/      OPC_SwitchType /*2 cases */, 9, MVT::v2f64,// ->92905
/* 92896*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92898*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNEGDP), 0,
                      MVT::v2f64, 1/*#Ops*/, 0, 
                  // Src: (fneg:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                  // Dst: (XVNEGDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 92905*/      /*SwitchType*/ 9, MVT::v4f32,// ->92916
/* 92907*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 92909*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNEGSP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVNEGSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 92916*/      0, // EndSwitchType
/* 92917*/    /*Scope*/ 121, /*->93039*/
/* 92918*/      OPC_MoveChild0,
/* 92919*/      OPC_SwitchOpcode /*2 cases */, 86, TARGET_VAL(ISD::FMA),// ->93009
/* 92923*/        OPC_RecordChild0, // #0 = $vA
/* 92924*/        OPC_RecordChild1, // #1 = $vC
/* 92925*/        OPC_Scope, 50, /*->92977*/ // 2 children in Scope
/* 92927*/          OPC_MoveChild2,
/* 92928*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 92931*/          OPC_RecordChild0, // #2 = $vB
/* 92932*/          OPC_MoveParent,
/* 92933*/          OPC_MoveParent,
/* 92934*/          OPC_SwitchType /*2 cases */, 26, MVT::v4f32,// ->92963
/* 92937*/            OPC_Scope, 11, /*->92950*/ // 2 children in Scope
/* 92939*/              OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 92941*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VNMSUBFP), 0,
                            MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
                        // Src: (fneg:{ *:[v4f32] } (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vC, (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vB))) - Complexity = 9
                        // Dst: (VNMSUBFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vC, v4f32:{ *:[v4f32] }:$vB)
/* 92950*/            /*Scope*/ 11, /*->92962*/
/* 92951*/              OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 92953*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUBSs), 0,
                            MVT::v4f32, 3/*#Ops*/, 0, 2, 1, 
                        // Src: (fneg:{ *:[v4f32] } (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRC, (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB))) - Complexity = 9
                        // Dst: (QVFNMSUBSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, v4f32:{ *:[v4f32] }:$FRC)
/* 92962*/            0, /*End of Scope*/
/* 92963*/          /*SwitchType*/ 11, MVT::v4f64,// ->92976
/* 92965*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 92967*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUB), 0,
                          MVT::v4f64, 3/*#Ops*/, 0, 2, 1, 
                      // Src: (fneg:{ *:[v4f64] } (fma:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC, (fneg:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB))) - Complexity = 9
                      // Dst: (QVFNMSUB:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 92976*/          0, // EndSwitchType
/* 92977*/        /*Scope*/ 30, /*->93008*/
/* 92978*/          OPC_RecordChild2, // #2 = $FRB
/* 92979*/          OPC_MoveParent,
/* 92980*/          OPC_SwitchType /*2 cases */, 11, MVT::v4f64,// ->92994
/* 92983*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 92985*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMADD), 0,
                          MVT::v4f64, 3/*#Ops*/, 0, 2, 1, 
                      // Src: (fneg:{ *:[v4f64] } (fma:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC, v4f64:{ *:[v4f64] }:$FRB)) - Complexity = 6
                      // Dst: (QVFNMADD:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 92994*/          /*SwitchType*/ 11, MVT::v4f32,// ->93007
/* 92996*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 92998*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMADDSs), 0,
                          MVT::v4f32, 3/*#Ops*/, 0, 2, 1, 
                      // Src: (fneg:{ *:[v4f32] } (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRC, v4f32:{ *:[v4f32] }:$FRB)) - Complexity = 6
                      // Dst: (QVFNMADDSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, v4f32:{ *:[v4f32] }:$FRC)
/* 93007*/          0, // EndSwitchType
/* 93008*/        0, /*End of Scope*/
/* 93009*/      /*SwitchOpcode*/ 26, TARGET_VAL(ISD::FABS),// ->93038
/* 93012*/        OPC_RecordChild0, // #0 = $FRB
/* 93013*/        OPC_MoveParent,
/* 93014*/        OPC_SwitchType /*2 cases */, 9, MVT::v4f64,// ->93026
/* 93017*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 93019*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNABS), 0,
                        MVT::v4f64, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[v4f64] } (fabs:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)) - Complexity = 6
                    // Dst: (QVFNABS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 93026*/        /*SwitchType*/ 9, MVT::v4f32,// ->93037
/* 93028*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 93030*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNABSs), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (fneg:{ *:[v4f32] } (fabs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)) - Complexity = 6
                    // Dst: (QVFNABSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 93037*/        0, // EndSwitchType
/* 93038*/      0, // EndSwitchOpcode
/* 93039*/    /*Scope*/ 25, /*->93065*/
/* 93040*/      OPC_RecordChild0, // #0 = $FRB
/* 93041*/      OPC_SwitchType /*2 cases */, 9, MVT::v4f64,// ->93053
/* 93044*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 93046*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNEG), 0,
                      MVT::v4f64, 1/*#Ops*/, 0, 
                  // Src: (fneg:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                  // Dst: (QVFNEG:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 93053*/      /*SwitchType*/ 9, MVT::v4f32,// ->93064
/* 93055*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 93057*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNEGs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFNEGs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 93064*/      0, // EndSwitchType
/* 93065*/    0, /*End of Scope*/
/* 93066*/  /*SwitchOpcode*/ 96|128,3/*480*/, TARGET_VAL(PPCISD::FCFID),// ->93550
/* 93070*/    OPC_Scope, 68|128,3/*452*/, /*->93525*/ // 2 children in Scope
/* 93073*/      OPC_MoveChild0,
/* 93074*/      OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/* 93077*/      OPC_MoveChild0,
/* 93078*/      OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 93081*/      OPC_RecordChild0, // #0 = $S
/* 93082*/      OPC_SwitchType /*2 cases */, 13|128,1/*141*/, MVT::i64,// ->93227
/* 93086*/        OPC_CheckChild0Type, MVT::v2i64,
/* 93088*/        OPC_Scope, 62, /*->93152*/ // 2 children in Scope
/* 93090*/          OPC_CheckChild1Integer, 0, 
/* 93092*/          OPC_MoveParent,
/* 93093*/          OPC_MoveParent,
/* 93094*/          OPC_CheckType, MVT::f64,
/* 93096*/          OPC_Scope, 20, /*->93118*/ // 2 children in Scope
/* 93098*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93100*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93103*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93111*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S, VSFRC:{ *:[i32] }))
/* 93118*/          /*Scope*/ 32, /*->93151*/
/* 93119*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93121*/            OPC_EmitInteger, MVT::i32, 2, 
/* 93124*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 93133*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93136*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 93144*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, ?:{ *:[v2i64] }:$S, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 93151*/          0, /*End of Scope*/
/* 93152*/        /*Scope*/ 73, /*->93226*/
/* 93153*/          OPC_CheckChild1Integer, 1, 
/* 93155*/          OPC_MoveParent,
/* 93156*/          OPC_MoveParent,
/* 93157*/          OPC_CheckType, MVT::f64,
/* 93159*/          OPC_Scope, 31, /*->93192*/ // 2 children in Scope
/* 93161*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93163*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 93166*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93174*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93177*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 93185*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 93192*/          /*Scope*/ 32, /*->93225*/
/* 93193*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93195*/            OPC_EmitInteger, MVT::i32, 2, 
/* 93198*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 93207*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93210*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 93218*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, ?:{ *:[v2i64] }:$S, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 93225*/          0, /*End of Scope*/
/* 93226*/        0, /*End of Scope*/
/* 93227*/      /*SwitchType*/ 38|128,2/*294*/, MVT::i32,// ->93524
/* 93230*/        OPC_Scope, 72, /*->93304*/ // 4 children in Scope
/* 93232*/          OPC_CheckChild1Integer, 0, 
/* 93234*/          OPC_MoveParent,
/* 93235*/          OPC_MoveParent,
/* 93236*/          OPC_CheckType, MVT::f64,
/* 93238*/          OPC_Scope, 31, /*->93271*/ // 2 children in Scope
/* 93240*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93242*/            OPC_EmitInteger, MVT::i32, 3, 
/* 93245*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93253*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93260*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93263*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 3:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93271*/          /*Scope*/ 31, /*->93303*/
/* 93272*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93274*/            OPC_EmitInteger, MVT::i32, 0, 
/* 93277*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93285*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93292*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93295*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93303*/          0, /*End of Scope*/
/* 93304*/        /*Scope*/ 72, /*->93377*/
/* 93305*/          OPC_CheckChild1Integer, 1, 
/* 93307*/          OPC_MoveParent,
/* 93308*/          OPC_MoveParent,
/* 93309*/          OPC_CheckType, MVT::f64,
/* 93311*/          OPC_Scope, 31, /*->93344*/ // 2 children in Scope
/* 93313*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93315*/            OPC_EmitInteger, MVT::i32, 2, 
/* 93318*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93326*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93333*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93336*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 2:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93344*/          /*Scope*/ 31, /*->93376*/
/* 93345*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93347*/            OPC_EmitInteger, MVT::i32, 1, 
/* 93350*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93358*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93365*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93368*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 1:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93376*/          0, /*End of Scope*/
/* 93377*/        /*Scope*/ 72, /*->93450*/
/* 93378*/          OPC_CheckChild1Integer, 2, 
/* 93380*/          OPC_MoveParent,
/* 93381*/          OPC_MoveParent,
/* 93382*/          OPC_CheckType, MVT::f64,
/* 93384*/          OPC_Scope, 31, /*->93417*/ // 2 children in Scope
/* 93386*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93388*/            OPC_EmitInteger, MVT::i32, 1, 
/* 93391*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93399*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93406*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93409*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 1:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93417*/          /*Scope*/ 31, /*->93449*/
/* 93418*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93420*/            OPC_EmitInteger, MVT::i32, 2, 
/* 93423*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93431*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93438*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93441*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 2:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93449*/          0, /*End of Scope*/
/* 93450*/        /*Scope*/ 72, /*->93523*/
/* 93451*/          OPC_CheckChild1Integer, 3, 
/* 93453*/          OPC_MoveParent,
/* 93454*/          OPC_MoveParent,
/* 93455*/          OPC_CheckType, MVT::f64,
/* 93457*/          OPC_Scope, 31, /*->93490*/ // 2 children in Scope
/* 93459*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93461*/            OPC_EmitInteger, MVT::i32, 0, 
/* 93464*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93472*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93479*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93482*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93490*/          /*Scope*/ 31, /*->93522*/
/* 93491*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93493*/            OPC_EmitInteger, MVT::i32, 3, 
/* 93496*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93504*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 93511*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93514*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 3, 4, 
                      // Src: (PPCfcfid:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (XVCVSXWDP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 3:{ *:[i32] })), VSFRC:{ *:[i32] })
/* 93522*/          0, /*End of Scope*/
/* 93523*/        0, /*End of Scope*/
/* 93524*/      0, // EndSwitchType
/* 93525*/    /*Scope*/ 23, /*->93549*/
/* 93526*/      OPC_RecordChild0, // #0 = $XB
/* 93527*/      OPC_CheckType, MVT::f64,
/* 93529*/      OPC_Scope, 9, /*->93540*/ // 2 children in Scope
/* 93531*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 93533*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfid:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVSXDDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 93540*/      /*Scope*/ 7, /*->93548*/
/* 93541*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCFID), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfid:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCFID:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 93548*/      0, /*End of Scope*/
/* 93549*/    0, /*End of Scope*/
/* 93550*/  /*SwitchOpcode*/ 16|128,3/*400*/, TARGET_VAL(PPCISD::FCFIDU),// ->93954
/* 93554*/    OPC_Scope, 116|128,2/*372*/, /*->93929*/ // 2 children in Scope
/* 93557*/      OPC_MoveChild0,
/* 93558*/      OPC_SwitchOpcode /*2 cases */, 20|128,1/*148*/, TARGET_VAL(PPCISD::MTVSRA),// ->93711
/* 93563*/        OPC_MoveChild0,
/* 93564*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 93567*/        OPC_RecordChild0, // #0 = $S
/* 93568*/        OPC_CheckChild0Type, MVT::v2i64,
/* 93570*/        OPC_CheckType, MVT::i64,
/* 93572*/        OPC_Scope, 62, /*->93636*/ // 2 children in Scope
/* 93574*/          OPC_CheckChild1Integer, 0, 
/* 93576*/          OPC_MoveParent,
/* 93577*/          OPC_MoveParent,
/* 93578*/          OPC_CheckType, MVT::f64,
/* 93580*/          OPC_Scope, 20, /*->93602*/ // 2 children in Scope
/* 93582*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93584*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93587*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93595*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S, VSFRC:{ *:[i32] }))
/* 93602*/          /*Scope*/ 32, /*->93635*/
/* 93603*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93605*/            OPC_EmitInteger, MVT::i32, 2, 
/* 93608*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 93617*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93620*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 93628*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, ?:{ *:[v2i64] }:$S, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 93635*/          0, /*End of Scope*/
/* 93636*/        /*Scope*/ 73, /*->93710*/
/* 93637*/          OPC_CheckChild1Integer, 1, 
/* 93639*/          OPC_MoveParent,
/* 93640*/          OPC_MoveParent,
/* 93641*/          OPC_CheckType, MVT::f64,
/* 93643*/          OPC_Scope, 31, /*->93676*/ // 2 children in Scope
/* 93645*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 93647*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 93650*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93658*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93661*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 93669*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S, VSRC:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 93676*/          /*Scope*/ 32, /*->93709*/
/* 93677*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93679*/            OPC_EmitInteger, MVT::i32, 2, 
/* 93682*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 93691*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93694*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 93702*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S, ?:{ *:[v2i64] }:$S, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 93709*/          0, /*End of Scope*/
/* 93710*/        0, /*End of Scope*/
/* 93711*/      /*SwitchOpcode*/ 85|128,1/*213*/, TARGET_VAL(PPCISD::MTVSRZ),// ->93928
/* 93715*/        OPC_MoveChild0,
/* 93716*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 93719*/        OPC_RecordChild0, // #0 = $A
/* 93720*/        OPC_CheckType, MVT::i32,
/* 93722*/        OPC_Scope, 50, /*->93774*/ // 4 children in Scope
/* 93724*/          OPC_CheckChild1Integer, 0, 
/* 93726*/          OPC_MoveParent,
/* 93727*/          OPC_MoveParent,
/* 93728*/          OPC_CheckType, MVT::f64,
/* 93730*/          OPC_Scope, 20, /*->93752*/ // 2 children in Scope
/* 93732*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 93734*/            OPC_EmitInteger, MVT::i32, 12, 
/* 93737*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93745*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 12:{ *:[i32] }))
/* 93752*/          /*Scope*/ 20, /*->93773*/
/* 93753*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 93755*/            OPC_EmitInteger, MVT::i32, 0, 
/* 93758*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93766*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] }))
/* 93773*/          0, /*End of Scope*/
/* 93774*/        /*Scope*/ 50, /*->93825*/
/* 93775*/          OPC_CheckChild1Integer, 1, 
/* 93777*/          OPC_MoveParent,
/* 93778*/          OPC_MoveParent,
/* 93779*/          OPC_CheckType, MVT::f64,
/* 93781*/          OPC_Scope, 20, /*->93803*/ // 2 children in Scope
/* 93783*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 93785*/            OPC_EmitInteger, MVT::i32, 8, 
/* 93788*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93796*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 8:{ *:[i32] }))
/* 93803*/          /*Scope*/ 20, /*->93824*/
/* 93804*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 93806*/            OPC_EmitInteger, MVT::i32, 4, 
/* 93809*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93817*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 4:{ *:[i32] }))
/* 93824*/          0, /*End of Scope*/
/* 93825*/        /*Scope*/ 50, /*->93876*/
/* 93826*/          OPC_CheckChild1Integer, 2, 
/* 93828*/          OPC_MoveParent,
/* 93829*/          OPC_MoveParent,
/* 93830*/          OPC_CheckType, MVT::f64,
/* 93832*/          OPC_Scope, 20, /*->93854*/ // 2 children in Scope
/* 93834*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 93836*/            OPC_EmitInteger, MVT::i32, 4, 
/* 93839*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93847*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 4:{ *:[i32] }))
/* 93854*/          /*Scope*/ 20, /*->93875*/
/* 93855*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 93857*/            OPC_EmitInteger, MVT::i32, 8, 
/* 93860*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93868*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 8:{ *:[i32] }))
/* 93875*/          0, /*End of Scope*/
/* 93876*/        /*Scope*/ 50, /*->93927*/
/* 93877*/          OPC_CheckChild1Integer, 3, 
/* 93879*/          OPC_MoveParent,
/* 93880*/          OPC_MoveParent,
/* 93881*/          OPC_CheckType, MVT::f64,
/* 93883*/          OPC_Scope, 20, /*->93905*/ // 2 children in Scope
/* 93885*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 93887*/            OPC_EmitInteger, MVT::i32, 0, 
/* 93890*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93898*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] }))
/* 93905*/          /*Scope*/ 20, /*->93926*/
/* 93906*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 93908*/            OPC_EmitInteger, MVT::i32, 12, 
/* 93911*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 93919*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                          MVT::f64, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidu:{ *:[f64] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDDP:{ *:[f64] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 12:{ *:[i32] }))
/* 93926*/          0, /*End of Scope*/
/* 93927*/        0, /*End of Scope*/
/* 93928*/      0, // EndSwitchOpcode
/* 93929*/    /*Scope*/ 23, /*->93953*/
/* 93930*/      OPC_RecordChild0, // #0 = $XB
/* 93931*/      OPC_CheckType, MVT::f64,
/* 93933*/      OPC_Scope, 9, /*->93944*/ // 2 children in Scope
/* 93935*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 93937*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfidu:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVUXDDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 93944*/      /*Scope*/ 7, /*->93952*/
/* 93945*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCFIDU), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfidu:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCFIDU:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 93952*/      0, /*End of Scope*/
/* 93953*/    0, /*End of Scope*/
/* 93954*/  /*SwitchOpcode*/ 78|128,3/*462*/, TARGET_VAL(PPCISD::FCFIDS),// ->94420
/* 93958*/    OPC_Scope, 48|128,3/*432*/, /*->94393*/ // 2 children in Scope
/* 93961*/      OPC_MoveChild0,
/* 93962*/      OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/* 93965*/      OPC_MoveChild0,
/* 93966*/      OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 93969*/      OPC_RecordChild0, // #0 = $S1
/* 93970*/      OPC_SwitchType /*2 cases */, 17|128,1/*145*/, MVT::i64,// ->94119
/* 93974*/        OPC_CheckChild0Type, MVT::v2i64,
/* 93976*/        OPC_Scope, 64, /*->94042*/ // 2 children in Scope
/* 93978*/          OPC_CheckChild1Integer, 0, 
/* 93980*/          OPC_MoveParent,
/* 93981*/          OPC_CheckType, MVT::f64,
/* 93983*/          OPC_MoveParent,
/* 93984*/          OPC_CheckType, MVT::f32,
/* 93986*/          OPC_Scope, 20, /*->94008*/ // 2 children in Scope
/* 93988*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 93990*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 93993*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94001*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S1, VSFRC:{ *:[i32] }))
/* 94008*/          /*Scope*/ 32, /*->94041*/
/* 94009*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94011*/            OPC_EmitInteger, MVT::i32, 2, 
/* 94014*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 94023*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94026*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 94034*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1, ?:{ *:[v2i64] }:$S1, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 94041*/          0, /*End of Scope*/
/* 94042*/        /*Scope*/ 75, /*->94118*/
/* 94043*/          OPC_CheckChild1Integer, 1, 
/* 94045*/          OPC_MoveParent,
/* 94046*/          OPC_CheckType, MVT::f64,
/* 94048*/          OPC_MoveParent,
/* 94049*/          OPC_CheckType, MVT::f32,
/* 94051*/          OPC_Scope, 31, /*->94084*/ // 2 children in Scope
/* 94053*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94055*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 94058*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94066*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94069*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 94077*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S1, VSRC:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 94084*/          /*Scope*/ 32, /*->94117*/
/* 94085*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 94087*/            OPC_EmitInteger, MVT::i32, 2, 
/* 94090*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 94099*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94102*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 94110*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1, ?:{ *:[v2i64] }:$S1, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 94117*/          0, /*End of Scope*/
/* 94118*/        0, /*End of Scope*/
/* 94119*/      /*SwitchType*/ 14|128,2/*270*/, MVT::i32,// ->94392
/* 94122*/        OPC_Scope, 66, /*->94190*/ // 4 children in Scope
/* 94124*/          OPC_CheckChild1Integer, 0, 
/* 94126*/          OPC_MoveParent,
/* 94127*/          OPC_CheckType, MVT::f64,
/* 94129*/          OPC_MoveParent,
/* 94130*/          OPC_CheckType, MVT::f32,
/* 94132*/          OPC_Scope, 27, /*->94161*/ // 2 children in Scope
/* 94134*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94136*/            OPC_EmitInteger, MVT::i32, 3, 
/* 94139*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94147*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94154*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 3:{ *:[i32] })))
/* 94161*/          /*Scope*/ 27, /*->94189*/
/* 94162*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 94164*/            OPC_EmitInteger, MVT::i32, 0, 
/* 94167*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94175*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94182*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] })))
/* 94189*/          0, /*End of Scope*/
/* 94190*/        /*Scope*/ 66, /*->94257*/
/* 94191*/          OPC_CheckChild1Integer, 1, 
/* 94193*/          OPC_MoveParent,
/* 94194*/          OPC_CheckType, MVT::f64,
/* 94196*/          OPC_MoveParent,
/* 94197*/          OPC_CheckType, MVT::f32,
/* 94199*/          OPC_Scope, 27, /*->94228*/ // 2 children in Scope
/* 94201*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94203*/            OPC_EmitInteger, MVT::i32, 2, 
/* 94206*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94214*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94221*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 2:{ *:[i32] })))
/* 94228*/          /*Scope*/ 27, /*->94256*/
/* 94229*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 94231*/            OPC_EmitInteger, MVT::i32, 1, 
/* 94234*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94242*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94249*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 1:{ *:[i32] })))
/* 94256*/          0, /*End of Scope*/
/* 94257*/        /*Scope*/ 66, /*->94324*/
/* 94258*/          OPC_CheckChild1Integer, 2, 
/* 94260*/          OPC_MoveParent,
/* 94261*/          OPC_CheckType, MVT::f64,
/* 94263*/          OPC_MoveParent,
/* 94264*/          OPC_CheckType, MVT::f32,
/* 94266*/          OPC_Scope, 27, /*->94295*/ // 2 children in Scope
/* 94268*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94270*/            OPC_EmitInteger, MVT::i32, 1, 
/* 94273*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94281*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94288*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 1:{ *:[i32] })))
/* 94295*/          /*Scope*/ 27, /*->94323*/
/* 94296*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 94298*/            OPC_EmitInteger, MVT::i32, 2, 
/* 94301*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94309*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94316*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 2:{ *:[i32] })))
/* 94323*/          0, /*End of Scope*/
/* 94324*/        /*Scope*/ 66, /*->94391*/
/* 94325*/          OPC_CheckChild1Integer, 3, 
/* 94327*/          OPC_MoveParent,
/* 94328*/          OPC_CheckType, MVT::f64,
/* 94330*/          OPC_MoveParent,
/* 94331*/          OPC_CheckType, MVT::f32,
/* 94333*/          OPC_Scope, 27, /*->94362*/ // 2 children in Scope
/* 94335*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94337*/            OPC_EmitInteger, MVT::i32, 0, 
/* 94340*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94348*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94355*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] })))
/* 94362*/          /*Scope*/ 27, /*->94390*/
/* 94363*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 94365*/            OPC_EmitInteger, MVT::i32, 3, 
/* 94368*/            OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94376*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXWSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/* 94383*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSPDPN), 0,
                          MVT::f32, 1/*#Ops*/, 3, 
                      // Src: (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVSPDPN:{ *:[f32] } (XVCVSXWSP:{ *:[v4i32] } (XXSPLTW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, 3:{ *:[i32] })))
/* 94390*/          0, /*End of Scope*/
/* 94391*/        0, /*End of Scope*/
/* 94392*/      0, // EndSwitchType
/* 94393*/    /*Scope*/ 25, /*->94419*/
/* 94394*/      OPC_RecordChild0, // #0 = $XB
/* 94395*/      OPC_CheckChild0Type, MVT::f64,
/* 94397*/      OPC_CheckType, MVT::f32,
/* 94399*/      OPC_Scope, 9, /*->94410*/ // 2 children in Scope
/* 94401*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 94403*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVSXDSP), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfids:{ *:[f32] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVSXDSP:{ *:[f32] } f64:{ *:[f64] }:$XB)
/* 94410*/      /*Scope*/ 7, /*->94418*/
/* 94411*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCFIDS), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfids:{ *:[f32] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCFIDS:{ *:[f32] } f64:{ *:[f64] }:$frB)
/* 94418*/      0, /*End of Scope*/
/* 94419*/    0, /*End of Scope*/
/* 94420*/  /*SwitchOpcode*/ 30|128,3/*414*/, TARGET_VAL(PPCISD::FCFIDUS),// ->94838
/* 94424*/    OPC_Scope, 0|128,3/*384*/, /*->94811*/ // 2 children in Scope
/* 94427*/      OPC_MoveChild0,
/* 94428*/      OPC_SwitchOpcode /*2 cases */, 24|128,1/*152*/, TARGET_VAL(PPCISD::MTVSRA),// ->94585
/* 94433*/        OPC_MoveChild0,
/* 94434*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 94437*/        OPC_RecordChild0, // #0 = $S1
/* 94438*/        OPC_CheckChild0Type, MVT::v2i64,
/* 94440*/        OPC_CheckType, MVT::i64,
/* 94442*/        OPC_Scope, 64, /*->94508*/ // 2 children in Scope
/* 94444*/          OPC_CheckChild1Integer, 0, 
/* 94446*/          OPC_MoveParent,
/* 94447*/          OPC_CheckType, MVT::f64,
/* 94449*/          OPC_MoveParent,
/* 94450*/          OPC_CheckType, MVT::f32,
/* 94452*/          OPC_Scope, 20, /*->94474*/ // 2 children in Scope
/* 94454*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 94456*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94459*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94467*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S1, VSFRC:{ *:[i32] }))
/* 94474*/          /*Scope*/ 32, /*->94507*/
/* 94475*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94477*/            OPC_EmitInteger, MVT::i32, 2, 
/* 94480*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 94489*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94492*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 94500*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1, ?:{ *:[v2i64] }:$S1, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 94507*/          0, /*End of Scope*/
/* 94508*/        /*Scope*/ 75, /*->94584*/
/* 94509*/          OPC_CheckChild1Integer, 1, 
/* 94511*/          OPC_MoveParent,
/* 94512*/          OPC_CheckType, MVT::f64,
/* 94514*/          OPC_MoveParent,
/* 94515*/          OPC_CheckType, MVT::f32,
/* 94517*/          OPC_Scope, 31, /*->94550*/ // 2 children in Scope
/* 94519*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/* 94521*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 94524*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94532*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94535*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 94543*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[v2i64] }:$S1, VSRC:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 94550*/          /*Scope*/ 32, /*->94583*/
/* 94551*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/* 94553*/            OPC_EmitInteger, MVT::i32, 2, 
/* 94556*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 0, 0, 1,  // Results = #2
/* 94565*/            OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94568*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/* 94576*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 4, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f64] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1, ?:{ *:[v2i64] }:$S1, 2:{ *:[i32] }), VSFRC:{ *:[i32] }))
/* 94583*/          0, /*End of Scope*/
/* 94584*/        0, /*End of Scope*/
/* 94585*/      /*SwitchOpcode*/ 93|128,1/*221*/, TARGET_VAL(PPCISD::MTVSRZ),// ->94810
/* 94589*/        OPC_MoveChild0,
/* 94590*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 94593*/        OPC_RecordChild0, // #0 = $A
/* 94594*/        OPC_CheckType, MVT::i32,
/* 94596*/        OPC_Scope, 52, /*->94650*/ // 4 children in Scope
/* 94598*/          OPC_CheckChild1Integer, 0, 
/* 94600*/          OPC_MoveParent,
/* 94601*/          OPC_CheckType, MVT::f64,
/* 94603*/          OPC_MoveParent,
/* 94604*/          OPC_CheckType, MVT::f32,
/* 94606*/          OPC_Scope, 20, /*->94628*/ // 2 children in Scope
/* 94608*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 94610*/            OPC_EmitInteger, MVT::i32, 12, 
/* 94613*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94621*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 12:{ *:[i32] }))
/* 94628*/          /*Scope*/ 20, /*->94649*/
/* 94629*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 94631*/            OPC_EmitInteger, MVT::i32, 0, 
/* 94634*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94642*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] }))
/* 94649*/          0, /*End of Scope*/
/* 94650*/        /*Scope*/ 52, /*->94703*/
/* 94651*/          OPC_CheckChild1Integer, 1, 
/* 94653*/          OPC_MoveParent,
/* 94654*/          OPC_CheckType, MVT::f64,
/* 94656*/          OPC_MoveParent,
/* 94657*/          OPC_CheckType, MVT::f32,
/* 94659*/          OPC_Scope, 20, /*->94681*/ // 2 children in Scope
/* 94661*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 94663*/            OPC_EmitInteger, MVT::i32, 8, 
/* 94666*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94674*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 8:{ *:[i32] }))
/* 94681*/          /*Scope*/ 20, /*->94702*/
/* 94682*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 94684*/            OPC_EmitInteger, MVT::i32, 4, 
/* 94687*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94695*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 4:{ *:[i32] }))
/* 94702*/          0, /*End of Scope*/
/* 94703*/        /*Scope*/ 52, /*->94756*/
/* 94704*/          OPC_CheckChild1Integer, 2, 
/* 94706*/          OPC_MoveParent,
/* 94707*/          OPC_CheckType, MVT::f64,
/* 94709*/          OPC_MoveParent,
/* 94710*/          OPC_CheckType, MVT::f32,
/* 94712*/          OPC_Scope, 20, /*->94734*/ // 2 children in Scope
/* 94714*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 94716*/            OPC_EmitInteger, MVT::i32, 4, 
/* 94719*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94727*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 4:{ *:[i32] }))
/* 94734*/          /*Scope*/ 20, /*->94755*/
/* 94735*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 94737*/            OPC_EmitInteger, MVT::i32, 8, 
/* 94740*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94748*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 8:{ *:[i32] }))
/* 94755*/          0, /*End of Scope*/
/* 94756*/        /*Scope*/ 52, /*->94809*/
/* 94757*/          OPC_CheckChild1Integer, 3, 
/* 94759*/          OPC_MoveParent,
/* 94760*/          OPC_CheckType, MVT::f64,
/* 94762*/          OPC_MoveParent,
/* 94763*/          OPC_CheckType, MVT::f32,
/* 94765*/          OPC_Scope, 20, /*->94787*/ // 2 children in Scope
/* 94767*/            OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/* 94769*/            OPC_EmitInteger, MVT::i32, 0, 
/* 94772*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94780*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 0:{ *:[i32] }))
/* 94787*/          /*Scope*/ 20, /*->94808*/
/* 94788*/            OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/* 94790*/            OPC_EmitInteger, MVT::i32, 12, 
/* 94793*/            OPC_EmitNode1, TARGET_VAL(PPC::XXEXTRACTUW), 0,
                          MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 94801*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                          MVT::f32, 1/*#Ops*/, 2, 
                      // Src: (PPCfcfidus:{ *:[f32] } (PPCmtvsrz:{ *:[f64] } (extractelt:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 414
                      // Dst: (XSCVUXDSP:{ *:[f32] } (XXEXTRACTUW:{ *:[f64] } ?:{ *:[v4i32] }:$A, 12:{ *:[i32] }))
/* 94808*/          0, /*End of Scope*/
/* 94809*/        0, /*End of Scope*/
/* 94810*/      0, // EndSwitchOpcode
/* 94811*/    /*Scope*/ 25, /*->94837*/
/* 94812*/      OPC_RecordChild0, // #0 = $XB
/* 94813*/      OPC_CheckChild0Type, MVT::f64,
/* 94815*/      OPC_CheckType, MVT::f32,
/* 94817*/      OPC_Scope, 9, /*->94828*/ // 2 children in Scope
/* 94819*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 94821*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVUXDSP), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfidus:{ *:[f32] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVUXDSP:{ *:[f32] } f64:{ *:[f64] }:$XB)
/* 94828*/      /*Scope*/ 7, /*->94836*/
/* 94829*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCFIDUS), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfcfidus:{ *:[f32] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCFIDUS:{ *:[f32] } f64:{ *:[f64] }:$frB)
/* 94836*/      0, /*End of Scope*/
/* 94837*/    0, /*End of Scope*/
/* 94838*/  /*SwitchOpcode*/ 35, TARGET_VAL(PPCISD::LFIWAX),// ->94876
/* 94841*/    OPC_RecordMemRef,
/* 94842*/    OPC_RecordNode, // #0 = 'PPClfiwax' chained node
/* 94843*/    OPC_RecordChild1, // #1 = $src
/* 94844*/    OPC_Scope, 14, /*->94860*/ // 2 children in Scope
/* 94846*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 94848*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 94851*/      OPC_EmitMergeInputChains1_0,
/* 94852*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LIWAX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPClfiwax:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (LIWAX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)
/* 94860*/    /*Scope*/ 14, /*->94875*/
/* 94861*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 94863*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 94866*/      OPC_EmitMergeInputChains1_0,
/* 94867*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LFIWAX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPClfiwax:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 12
                // Dst: (LFIWAX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)
/* 94875*/    0, /*End of Scope*/
/* 94876*/  /*SwitchOpcode*/ 35, TARGET_VAL(PPCISD::LFIWZX),// ->94914
/* 94879*/    OPC_RecordMemRef,
/* 94880*/    OPC_RecordNode, // #0 = 'PPClfiwzx' chained node
/* 94881*/    OPC_RecordChild1, // #1 = $src
/* 94882*/    OPC_Scope, 14, /*->94898*/ // 2 children in Scope
/* 94884*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 94886*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 94889*/      OPC_EmitMergeInputChains1_0,
/* 94890*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPClfiwzx:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)
/* 94898*/    /*Scope*/ 14, /*->94913*/
/* 94899*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 94901*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/* 94904*/      OPC_EmitMergeInputChains1_0,
/* 94905*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LFIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPClfiwzx:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 12
                // Dst: (LFIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)
/* 94913*/    0, /*End of Scope*/
/* 94914*/  /*SwitchOpcode*/ 25|128,2/*281*/, TARGET_VAL(ISD::FMINNUM_IEEE),// ->95199
/* 94918*/    OPC_Scope, 88, /*->95008*/ // 4 children in Scope
/* 94920*/      OPC_MoveChild0,
/* 94921*/      OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 94924*/      OPC_RecordChild0, // #0 = $A
/* 94925*/      OPC_MoveParent,
/* 94926*/      OPC_Scope, 65, /*->94993*/ // 2 children in Scope
/* 94928*/        OPC_MoveChild1,
/* 94929*/        OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 94932*/        OPC_RecordChild0, // #1 = $B
/* 94933*/        OPC_MoveParent,
/* 94934*/        OPC_SwitchType /*2 cases */, 10, MVT::f64,// ->94947
/* 94937*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 94939*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMINDP), 0,
                        MVT::f64, 2/*#Ops*/, 0, 1, 
                    // Src: (fminnum_ieee:{ *:[f64] } (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$A), (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$B)) - Complexity = 409
                    // Dst: (XSMINDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 94947*/        /*SwitchType*/ 43, MVT::f32,// ->94992
/* 94949*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 94951*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94954*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 94962*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 94965*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 94973*/          OPC_EmitNode1, TARGET_VAL(PPC::XSMINDP), 0,
                        MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 94981*/          OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 94984*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f32, 2/*#Ops*/, 6, 7, 
                    // Src: (fminnum_ieee:{ *:[f32] } (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$A), (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$B)) - Complexity = 409
                    // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMINDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 94992*/        0, // EndSwitchType
/* 94993*/      /*Scope*/ 13, /*->95007*/
/* 94994*/        OPC_RecordChild1, // #1 = $B
/* 94995*/        OPC_CheckType, MVT::f64,
/* 94997*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 94999*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMINDP), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fminnum_ieee:{ *:[f64] } (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$A), f64:{ *:[f64] }:$B) - Complexity = 406
                  // Dst: (XSMINDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95007*/      0, /*End of Scope*/
/* 95008*/    /*Scope*/ 19, /*->95028*/
/* 95009*/      OPC_RecordChild0, // #0 = $A
/* 95010*/      OPC_MoveChild1,
/* 95011*/      OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95014*/      OPC_RecordChild0, // #1 = $B
/* 95015*/      OPC_MoveParent,
/* 95016*/      OPC_CheckType, MVT::f64,
/* 95018*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95020*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMINDP), 0,
                    MVT::f64, 2/*#Ops*/, 0, 1, 
                // Src: (fminnum_ieee:{ *:[f64] } f64:{ *:[f64] }:$A, (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$B)) - Complexity = 406
                // Dst: (XSMINDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95028*/    /*Scope*/ 52, /*->95081*/
/* 95029*/      OPC_MoveChild0,
/* 95030*/      OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95033*/      OPC_RecordChild0, // #0 = $A
/* 95034*/      OPC_MoveParent,
/* 95035*/      OPC_RecordChild1, // #1 = $B
/* 95036*/      OPC_CheckType, MVT::f32,
/* 95038*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95040*/      OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95043*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 95051*/      OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95054*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 95062*/      OPC_EmitNode1, TARGET_VAL(PPC::XSMINDP), 0,
                    MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 95070*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 95073*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f32, 2/*#Ops*/, 6, 7, 
                // Src: (fminnum_ieee:{ *:[f32] } (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$A), f32:{ *:[f32] }:$B) - Complexity = 406
                // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMINDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 95081*/    /*Scope*/ 116, /*->95198*/
/* 95082*/      OPC_RecordChild0, // #0 = $A
/* 95083*/      OPC_Scope, 51, /*->95136*/ // 2 children in Scope
/* 95085*/        OPC_MoveChild1,
/* 95086*/        OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95089*/        OPC_RecordChild0, // #1 = $B
/* 95090*/        OPC_MoveParent,
/* 95091*/        OPC_CheckType, MVT::f32,
/* 95093*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95095*/        OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95098*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 95106*/        OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95109*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 95117*/        OPC_EmitNode1, TARGET_VAL(PPC::XSMINDP), 0,
                      MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 95125*/        OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 95128*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f32, 2/*#Ops*/, 6, 7, 
                  // Src: (fminnum_ieee:{ *:[f32] } f32:{ *:[f32] }:$A, (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$B)) - Complexity = 406
                  // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMINDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 95136*/      /*Scope*/ 60, /*->95197*/
/* 95137*/        OPC_RecordChild1, // #1 = $B
/* 95138*/        OPC_SwitchType /*2 cases */, 10, MVT::f64,// ->95151
/* 95141*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95143*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMINDP), 0,
                        MVT::f64, 2/*#Ops*/, 0, 1, 
                    // Src: (fminnum_ieee:{ *:[f64] } f64:{ *:[f64] }:$A, f64:{ *:[f64] }:$B) - Complexity = 403
                    // Dst: (XSMINDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95151*/        /*SwitchType*/ 43, MVT::f32,// ->95196
/* 95153*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95155*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95158*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 95166*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95169*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 95177*/          OPC_EmitNode1, TARGET_VAL(PPC::XSMINDP), 0,
                        MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 95185*/          OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 95188*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f32, 2/*#Ops*/, 6, 7, 
                    // Src: (fminnum_ieee:{ *:[f32] } f32:{ *:[f32] }:$A, f32:{ *:[f32] }:$B) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMINDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 95196*/        0, // EndSwitchType
/* 95197*/      0, /*End of Scope*/
/* 95198*/    0, /*End of Scope*/
/* 95199*/  /*SwitchOpcode*/ 25|128,2/*281*/, TARGET_VAL(ISD::FMAXNUM_IEEE),// ->95484
/* 95203*/    OPC_Scope, 88, /*->95293*/ // 4 children in Scope
/* 95205*/      OPC_MoveChild0,
/* 95206*/      OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95209*/      OPC_RecordChild0, // #0 = $A
/* 95210*/      OPC_MoveParent,
/* 95211*/      OPC_Scope, 65, /*->95278*/ // 2 children in Scope
/* 95213*/        OPC_MoveChild1,
/* 95214*/        OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95217*/        OPC_RecordChild0, // #1 = $B
/* 95218*/        OPC_MoveParent,
/* 95219*/        OPC_SwitchType /*2 cases */, 10, MVT::f64,// ->95232
/* 95222*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95224*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMAXDP), 0,
                        MVT::f64, 2/*#Ops*/, 0, 1, 
                    // Src: (fmaxnum_ieee:{ *:[f64] } (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$A), (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$B)) - Complexity = 409
                    // Dst: (XSMAXDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95232*/        /*SwitchType*/ 43, MVT::f32,// ->95277
/* 95234*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95236*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95239*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 95247*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95250*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 95258*/          OPC_EmitNode1, TARGET_VAL(PPC::XSMAXDP), 0,
                        MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 95266*/          OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 95269*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f32, 2/*#Ops*/, 6, 7, 
                    // Src: (fmaxnum_ieee:{ *:[f32] } (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$A), (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$B)) - Complexity = 409
                    // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMAXDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 95277*/        0, // EndSwitchType
/* 95278*/      /*Scope*/ 13, /*->95292*/
/* 95279*/        OPC_RecordChild1, // #1 = $B
/* 95280*/        OPC_CheckType, MVT::f64,
/* 95282*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95284*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMAXDP), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fmaxnum_ieee:{ *:[f64] } (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$A), f64:{ *:[f64] }:$B) - Complexity = 406
                  // Dst: (XSMAXDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95292*/      0, /*End of Scope*/
/* 95293*/    /*Scope*/ 19, /*->95313*/
/* 95294*/      OPC_RecordChild0, // #0 = $A
/* 95295*/      OPC_MoveChild1,
/* 95296*/      OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95299*/      OPC_RecordChild0, // #1 = $B
/* 95300*/      OPC_MoveParent,
/* 95301*/      OPC_CheckType, MVT::f64,
/* 95303*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95305*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMAXDP), 0,
                    MVT::f64, 2/*#Ops*/, 0, 1, 
                // Src: (fmaxnum_ieee:{ *:[f64] } f64:{ *:[f64] }:$A, (fcanonicalize:{ *:[f64] } f64:{ *:[f64] }:$B)) - Complexity = 406
                // Dst: (XSMAXDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95313*/    /*Scope*/ 52, /*->95366*/
/* 95314*/      OPC_MoveChild0,
/* 95315*/      OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95318*/      OPC_RecordChild0, // #0 = $A
/* 95319*/      OPC_MoveParent,
/* 95320*/      OPC_RecordChild1, // #1 = $B
/* 95321*/      OPC_CheckType, MVT::f32,
/* 95323*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95325*/      OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95328*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 95336*/      OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95339*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 95347*/      OPC_EmitNode1, TARGET_VAL(PPC::XSMAXDP), 0,
                    MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 95355*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 95358*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f32, 2/*#Ops*/, 6, 7, 
                // Src: (fmaxnum_ieee:{ *:[f32] } (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$A), f32:{ *:[f32] }:$B) - Complexity = 406
                // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMAXDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 95366*/    /*Scope*/ 116, /*->95483*/
/* 95367*/      OPC_RecordChild0, // #0 = $A
/* 95368*/      OPC_Scope, 51, /*->95421*/ // 2 children in Scope
/* 95370*/        OPC_MoveChild1,
/* 95371*/        OPC_CheckOpcode, TARGET_VAL(ISD::FCANONICALIZE),
/* 95374*/        OPC_RecordChild0, // #1 = $B
/* 95375*/        OPC_MoveParent,
/* 95376*/        OPC_CheckType, MVT::f32,
/* 95378*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95380*/        OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95383*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 95391*/        OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95394*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 95402*/        OPC_EmitNode1, TARGET_VAL(PPC::XSMAXDP), 0,
                      MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 95410*/        OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 95413*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f32, 2/*#Ops*/, 6, 7, 
                  // Src: (fmaxnum_ieee:{ *:[f32] } f32:{ *:[f32] }:$A, (fcanonicalize:{ *:[f32] } f32:{ *:[f32] }:$B)) - Complexity = 406
                  // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMAXDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 95421*/      /*Scope*/ 60, /*->95482*/
/* 95422*/        OPC_RecordChild1, // #1 = $B
/* 95423*/        OPC_SwitchType /*2 cases */, 10, MVT::f64,// ->95436
/* 95426*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95428*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMAXDP), 0,
                        MVT::f64, 2/*#Ops*/, 0, 1, 
                    // Src: (fmaxnum_ieee:{ *:[f64] } f64:{ *:[f64] }:$A, f64:{ *:[f64] }:$B) - Complexity = 403
                    // Dst: (XSMAXDP:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95436*/        /*SwitchType*/ 43, MVT::f32,// ->95481
/* 95438*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95440*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95443*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 95451*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95454*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 95462*/          OPC_EmitNode1, TARGET_VAL(PPC::XSMAXDP), 0,
                        MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 95470*/          OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 95473*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f32, 2/*#Ops*/, 6, 7, 
                    // Src: (fmaxnum_ieee:{ *:[f32] } f32:{ *:[f32] }:$A, f32:{ *:[f32] }:$B) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMAXDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$A, VSFRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$B, VSFRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 95481*/        0, // EndSwitchType
/* 95482*/      0, /*End of Scope*/
/* 95483*/    0, /*End of Scope*/
/* 95484*/  /*SwitchOpcode*/ 49, TARGET_VAL(PPCISD::VEXTS),// ->95536
/* 95487*/    OPC_RecordChild0, // #0 = $A
/* 95488*/    OPC_Scope, 22, /*->95512*/ // 2 children in Scope
/* 95490*/      OPC_CheckChild1Integer, 1, 
/* 95492*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 95494*/      OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2Ds), 0,
                    MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 95501*/      OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95504*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 1, 2, 
                // Src: (PPCVexts:{ *:[f64] } f64:{ *:[f64] }:$A, 1:{ *:[iPTR] }) - Complexity = 408
                // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (VEXTSB2Ds:{ *:[f64] } ?:{ *:[f64] }:$A), VSFRC:{ *:[i32] })
/* 95512*/    /*Scope*/ 22, /*->95535*/
/* 95513*/      OPC_CheckChild1Integer, 2, 
/* 95515*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 95517*/      OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2Ds), 0,
                    MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 95524*/      OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 95527*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 1, 2, 
                // Src: (PPCVexts:{ *:[f64] } f64:{ *:[f64] }:$A, 2:{ *:[iPTR] }) - Complexity = 408
                // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (VEXTSH2Ds:{ *:[f64] } ?:{ *:[f64] }:$A), VSFRC:{ *:[i32] })
/* 95535*/    0, /*End of Scope*/
/* 95536*/  /*SwitchOpcode*/ 106|128,5/*746*/, TARGET_VAL(ISD::FMA),// ->96286
/* 95540*/    OPC_Scope, 21, /*->95563*/ // 19 children in Scope
/* 95542*/      OPC_RecordChild0, // #0 = $XA
/* 95543*/      OPC_RecordChild1, // #1 = $XB
/* 95544*/      OPC_MoveChild2,
/* 95545*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95548*/      OPC_RecordChild0, // #2 = $XTi
/* 95549*/      OPC_MoveParent,
/* 95550*/      OPC_CheckType, MVT::f64,
/* 95552*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95554*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMSUBADP), 0,
                    MVT::f64, 3/*#Ops*/, 2, 0, 1, 
                // Src: (fma:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB, (fneg:{ *:[f64] } f64:{ *:[f64] }:$XTi)) - Complexity = 406
                // Dst: (XSMSUBADP:{ *:[f64] } f64:{ *:[f64] }:$XTi, f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 95563*/    /*Scope*/ 21, /*->95585*/
/* 95564*/      OPC_MoveChild0,
/* 95565*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95568*/      OPC_RecordChild0, // #0 = $A
/* 95569*/      OPC_MoveParent,
/* 95570*/      OPC_RecordChild1, // #1 = $B
/* 95571*/      OPC_RecordChild2, // #2 = $C
/* 95572*/      OPC_CheckType, MVT::f64,
/* 95574*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95576*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBADP), 0,
                    MVT::f64, 3/*#Ops*/, 2, 0, 1, 
                // Src: (fma:{ *:[f64] } (fneg:{ *:[f64] } f64:{ *:[f64] }:$A), f64:{ *:[f64] }:$B, f64:{ *:[f64] }:$C) - Complexity = 406
                // Dst: (XSNMSUBADP:{ *:[f64] } ?:{ *:[f64] }:$C, ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95585*/    /*Scope*/ 45, /*->95631*/
/* 95586*/      OPC_RecordChild0, // #0 = $A
/* 95587*/      OPC_Scope, 20, /*->95609*/ // 2 children in Scope
/* 95589*/        OPC_MoveChild1,
/* 95590*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95593*/        OPC_RecordChild0, // #1 = $B
/* 95594*/        OPC_MoveParent,
/* 95595*/        OPC_RecordChild2, // #2 = $C
/* 95596*/        OPC_CheckType, MVT::f64,
/* 95598*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95600*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBADP), 0,
                      MVT::f64, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (fma:{ *:[f64] } f64:{ *:[f64] }:$A, (fneg:{ *:[f64] } f64:{ *:[f64] }:$B), f64:{ *:[f64] }:$C) - Complexity = 406
                  // Dst: (XSNMSUBADP:{ *:[f64] } ?:{ *:[f64] }:$C, ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$B)
/* 95609*/      /*Scope*/ 20, /*->95630*/
/* 95610*/        OPC_RecordChild1, // #1 = $XB
/* 95611*/        OPC_MoveChild2,
/* 95612*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95615*/        OPC_RecordChild0, // #2 = $XTi
/* 95616*/        OPC_MoveParent,
/* 95617*/        OPC_CheckType, MVT::f32,
/* 95619*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 95621*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMSUBASP), 0,
                      MVT::f32, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (fma:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB, (fneg:{ *:[f32] } f32:{ *:[f32] }:$XTi)) - Complexity = 406
                  // Dst: (XSMSUBASP:{ *:[f32] } f32:{ *:[f32] }:$XTi, f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 95630*/      0, /*End of Scope*/
/* 95631*/    /*Scope*/ 21, /*->95653*/
/* 95632*/      OPC_MoveChild0,
/* 95633*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95636*/      OPC_RecordChild0, // #0 = $A
/* 95637*/      OPC_MoveParent,
/* 95638*/      OPC_RecordChild1, // #1 = $B
/* 95639*/      OPC_RecordChild2, // #2 = $C
/* 95640*/      OPC_CheckType, MVT::f32,
/* 95642*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 95644*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBASP), 0,
                    MVT::f32, 3/*#Ops*/, 2, 0, 1, 
                // Src: (fma:{ *:[f32] } (fneg:{ *:[f32] } f32:{ *:[f32] }:$A), f32:{ *:[f32] }:$B, f32:{ *:[f32] }:$C) - Complexity = 406
                // Dst: (XSNMSUBASP:{ *:[f32] } ?:{ *:[f32] }:$C, ?:{ *:[f32] }:$A, ?:{ *:[f32] }:$B)
/* 95653*/    /*Scope*/ 45, /*->95699*/
/* 95654*/      OPC_RecordChild0, // #0 = $A
/* 95655*/      OPC_Scope, 20, /*->95677*/ // 2 children in Scope
/* 95657*/        OPC_MoveChild1,
/* 95658*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95661*/        OPC_RecordChild0, // #1 = $B
/* 95662*/        OPC_MoveParent,
/* 95663*/        OPC_RecordChild2, // #2 = $C
/* 95664*/        OPC_CheckType, MVT::f32,
/* 95666*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 95668*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBASP), 0,
                      MVT::f32, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (fma:{ *:[f32] } f32:{ *:[f32] }:$A, (fneg:{ *:[f32] } f32:{ *:[f32] }:$B), f32:{ *:[f32] }:$C) - Complexity = 406
                  // Dst: (XSNMSUBASP:{ *:[f32] } ?:{ *:[f32] }:$C, ?:{ *:[f32] }:$A, ?:{ *:[f32] }:$B)
/* 95677*/      /*Scope*/ 20, /*->95698*/
/* 95678*/        OPC_RecordChild1, // #1 = $vB
/* 95679*/        OPC_MoveChild2,
/* 95680*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95683*/        OPC_RecordChild0, // #2 = $vTi
/* 95684*/        OPC_MoveParent,
/* 95685*/        OPC_CheckType, MVT::f128,
/* 95687*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 95689*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMSUBQP), 0,
                      MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (fma:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, (fneg:{ *:[f128] } f128:{ *:[f128] }:$vTi)) - Complexity = 406
                  // Dst: (XSMSUBQP:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 95698*/      0, /*End of Scope*/
/* 95699*/    /*Scope*/ 21, /*->95721*/
/* 95700*/      OPC_MoveChild0,
/* 95701*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95704*/      OPC_RecordChild0, // #0 = $A
/* 95705*/      OPC_MoveParent,
/* 95706*/      OPC_RecordChild1, // #1 = $B
/* 95707*/      OPC_RecordChild2, // #2 = $C
/* 95708*/      OPC_CheckType, MVT::f128,
/* 95710*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 95712*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBQP), 0,
                    MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                // Src: (fma:{ *:[f128] } (fneg:{ *:[f128] } f128:{ *:[f128] }:$A), f128:{ *:[f128] }:$B, f128:{ *:[f128] }:$C) - Complexity = 406
                // Dst: (XSNMSUBQP:{ *:[f128] } ?:{ *:[f128] }:$C, ?:{ *:[f128] }:$A, ?:{ *:[f128] }:$B)
/* 95721*/    /*Scope*/ 106, /*->95828*/
/* 95722*/      OPC_RecordChild0, // #0 = $A
/* 95723*/      OPC_Scope, 20, /*->95745*/ // 2 children in Scope
/* 95725*/        OPC_MoveChild1,
/* 95726*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95729*/        OPC_RecordChild0, // #1 = $B
/* 95730*/        OPC_MoveParent,
/* 95731*/        OPC_RecordChild2, // #2 = $C
/* 95732*/        OPC_CheckType, MVT::f128,
/* 95734*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 95736*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSNMSUBQP), 0,
                      MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (fma:{ *:[f128] } f128:{ *:[f128] }:$A, (fneg:{ *:[f128] } f128:{ *:[f128] }:$B), f128:{ *:[f128] }:$C) - Complexity = 406
                  // Dst: (XSNMSUBQP:{ *:[f128] } ?:{ *:[f128] }:$C, ?:{ *:[f128] }:$A, ?:{ *:[f128] }:$B)
/* 95745*/      /*Scope*/ 81, /*->95827*/
/* 95746*/        OPC_RecordChild1, // #1 = $XB
/* 95747*/        OPC_Scope, 42, /*->95791*/ // 2 children in Scope
/* 95749*/          OPC_RecordChild2, // #2 = $XTi
/* 95750*/          OPC_SwitchType /*3 cases */, 11, MVT::f64,// ->95764
/* 95753*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95755*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMADDADP), 0,
                          MVT::f64, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fma:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB, f64:{ *:[f64] }:$XTi) - Complexity = 403
                      // Dst: (XSMADDADP:{ *:[f64] } f64:{ *:[f64] }:$XTi, f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 95764*/          /*SwitchType*/ 11, MVT::f32,// ->95777
/* 95766*/            OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 95768*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMADDASP), 0,
                          MVT::f32, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fma:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB, f32:{ *:[f32] }:$XTi) - Complexity = 403
                      // Dst: (XSMADDASP:{ *:[f32] } f32:{ *:[f32] }:$XTi, f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 95777*/          /*SwitchType*/ 11, MVT::f128,// ->95790
/* 95779*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 95781*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMADDQP), 0,
                          MVT::f128, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fma:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB, f128:{ *:[f128] }:$vTi) - Complexity = 403
                      // Dst: (XSMADDQP:{ *:[f128] } f128:{ *:[f128] }:$vTi, f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 95790*/          0, // EndSwitchType
/* 95791*/        /*Scope*/ 34, /*->95826*/
/* 95792*/          OPC_MoveChild2,
/* 95793*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95796*/          OPC_RecordChild0, // #2 = $FRB
/* 95797*/          OPC_MoveParent,
/* 95798*/          OPC_SwitchType /*2 cases */, 11, MVT::f64,// ->95812
/* 95801*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95803*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FMSUB), 0,
                          MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fma:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, (fneg:{ *:[f64] } f64:{ *:[f64] }:$FRB)) - Complexity = 6
                      // Dst: (FMSUB:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB)
/* 95812*/          /*SwitchType*/ 11, MVT::f32,// ->95825
/* 95814*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95816*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FMSUBS), 0,
                          MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fma:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, (fneg:{ *:[f32] } f32:{ *:[f32] }:$FRB)) - Complexity = 6
                      // Dst: (FMSUBS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB)
/* 95825*/          0, // EndSwitchType
/* 95826*/        0, /*End of Scope*/
/* 95827*/      0, /*End of Scope*/
/* 95828*/    /*Scope*/ 21, /*->95850*/
/* 95829*/      OPC_MoveChild0,
/* 95830*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95833*/      OPC_RecordChild0, // #0 = $A
/* 95834*/      OPC_MoveParent,
/* 95835*/      OPC_RecordChild1, // #1 = $C
/* 95836*/      OPC_RecordChild2, // #2 = $B
/* 95837*/      OPC_CheckType, MVT::f64,
/* 95839*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95841*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMSUB), 0,
                    MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (fma:{ *:[f64] } (fneg:{ *:[f64] } f64:{ *:[f64] }:$A), f64:{ *:[f64] }:$C, f64:{ *:[f64] }:$B) - Complexity = 6
                // Dst: (FNMSUB:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$C, ?:{ *:[f64] }:$B)
/* 95850*/    /*Scope*/ 21, /*->95872*/
/* 95851*/      OPC_RecordChild0, // #0 = $A
/* 95852*/      OPC_MoveChild1,
/* 95853*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95856*/      OPC_RecordChild0, // #1 = $C
/* 95857*/      OPC_MoveParent,
/* 95858*/      OPC_RecordChild2, // #2 = $B
/* 95859*/      OPC_CheckType, MVT::f64,
/* 95861*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95863*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMSUB), 0,
                    MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (fma:{ *:[f64] } f64:{ *:[f64] }:$A, (fneg:{ *:[f64] } f64:{ *:[f64] }:$C), f64:{ *:[f64] }:$B) - Complexity = 6
                // Dst: (FNMSUB:{ *:[f64] } ?:{ *:[f64] }:$A, ?:{ *:[f64] }:$C, ?:{ *:[f64] }:$B)
/* 95872*/    /*Scope*/ 21, /*->95894*/
/* 95873*/      OPC_MoveChild0,
/* 95874*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95877*/      OPC_RecordChild0, // #0 = $A
/* 95878*/      OPC_MoveParent,
/* 95879*/      OPC_RecordChild1, // #1 = $C
/* 95880*/      OPC_RecordChild2, // #2 = $B
/* 95881*/      OPC_CheckType, MVT::f32,
/* 95883*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95885*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMSUBS), 0,
                    MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (fma:{ *:[f32] } (fneg:{ *:[f32] } f32:{ *:[f32] }:$A), f32:{ *:[f32] }:$C, f32:{ *:[f32] }:$B) - Complexity = 6
                // Dst: (FNMSUBS:{ *:[f32] } ?:{ *:[f32] }:$A, ?:{ *:[f32] }:$C, ?:{ *:[f32] }:$B)
/* 95894*/    /*Scope*/ 93, /*->95988*/
/* 95895*/      OPC_RecordChild0, // #0 = $A
/* 95896*/      OPC_Scope, 20, /*->95918*/ // 2 children in Scope
/* 95898*/        OPC_MoveChild1,
/* 95899*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95902*/        OPC_RecordChild0, // #1 = $C
/* 95903*/        OPC_MoveParent,
/* 95904*/        OPC_RecordChild2, // #2 = $B
/* 95905*/        OPC_CheckType, MVT::f32,
/* 95907*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95909*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FNMSUBS), 0,
                      MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                  // Src: (fma:{ *:[f32] } f32:{ *:[f32] }:$A, (fneg:{ *:[f32] } f32:{ *:[f32] }:$C), f32:{ *:[f32] }:$B) - Complexity = 6
                  // Dst: (FNMSUBS:{ *:[f32] } ?:{ *:[f32] }:$A, ?:{ *:[f32] }:$C, ?:{ *:[f32] }:$B)
/* 95918*/      /*Scope*/ 68, /*->95987*/
/* 95919*/        OPC_RecordChild1, // #1 = $FRC
/* 95920*/        OPC_Scope, 29, /*->95951*/ // 2 children in Scope
/* 95922*/          OPC_RecordChild2, // #2 = $FRB
/* 95923*/          OPC_SwitchType /*2 cases */, 11, MVT::f64,// ->95937
/* 95926*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95928*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FMADD), 0,
                          MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fma:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB) - Complexity = 3
                      // Dst: (FMADD:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB)
/* 95937*/          /*SwitchType*/ 11, MVT::f32,// ->95950
/* 95939*/            OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 95941*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::FMADDS), 0,
                          MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fma:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB) - Complexity = 3
                      // Dst: (FMADDS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB)
/* 95950*/          0, // EndSwitchType
/* 95951*/        /*Scope*/ 34, /*->95986*/
/* 95952*/          OPC_MoveChild2,
/* 95953*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95956*/          OPC_RecordChild0, // #2 = $XTi
/* 95957*/          OPC_MoveParent,
/* 95958*/          OPC_SwitchType /*2 cases */, 11, MVT::v2f64,// ->95972
/* 95961*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95963*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMSUBADP), 0,
                          MVT::v2f64, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fma:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB, (fneg:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XTi)) - Complexity = 406
                      // Dst: (XVMSUBADP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XTi, v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 95972*/          /*SwitchType*/ 11, MVT::v4f32,// ->95985
/* 95974*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 95976*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMSUBASP), 0,
                          MVT::v4f32, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB, (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XTi)) - Complexity = 406
                      // Dst: (XVMSUBASP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XTi, v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 95985*/          0, // EndSwitchType
/* 95986*/        0, /*End of Scope*/
/* 95987*/      0, /*End of Scope*/
/* 95988*/    /*Scope*/ 21, /*->96010*/
/* 95989*/      OPC_MoveChild0,
/* 95990*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 95993*/      OPC_RecordChild0, // #0 = $A
/* 95994*/      OPC_MoveParent,
/* 95995*/      OPC_RecordChild1, // #1 = $B
/* 95996*/      OPC_RecordChild2, // #2 = $C
/* 95997*/      OPC_CheckType, MVT::v2f64,
/* 95999*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96001*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMSUBADP), 0,
                    MVT::v2f64, 3/*#Ops*/, 2, 0, 1, 
                // Src: (fma:{ *:[v2f64] } (fneg:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$A), v2f64:{ *:[v2f64] }:$B, v2f64:{ *:[v2f64] }:$C) - Complexity = 406
                // Dst: (XVNMSUBADP:{ *:[v2f64] } ?:{ *:[v2f64] }:$C, ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$B)
/* 96010*/    /*Scope*/ 21, /*->96032*/
/* 96011*/      OPC_RecordChild0, // #0 = $A
/* 96012*/      OPC_MoveChild1,
/* 96013*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96016*/      OPC_RecordChild0, // #1 = $B
/* 96017*/      OPC_MoveParent,
/* 96018*/      OPC_RecordChild2, // #2 = $C
/* 96019*/      OPC_CheckType, MVT::v2f64,
/* 96021*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96023*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMSUBADP), 0,
                    MVT::v2f64, 3/*#Ops*/, 2, 0, 1, 
                // Src: (fma:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$A, (fneg:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$B), v2f64:{ *:[v2f64] }:$C) - Complexity = 406
                // Dst: (XVNMSUBADP:{ *:[v2f64] } ?:{ *:[v2f64] }:$C, ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$B)
/* 96032*/    /*Scope*/ 21, /*->96054*/
/* 96033*/      OPC_MoveChild0,
/* 96034*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96037*/      OPC_RecordChild0, // #0 = $A
/* 96038*/      OPC_MoveParent,
/* 96039*/      OPC_RecordChild1, // #1 = $B
/* 96040*/      OPC_RecordChild2, // #2 = $C
/* 96041*/      OPC_CheckType, MVT::v4f32,
/* 96043*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96045*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMSUBASP), 0,
                    MVT::v4f32, 3/*#Ops*/, 2, 0, 1, 
                // Src: (fma:{ *:[v4f32] } (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A), v4f32:{ *:[v4f32] }:$B, v4f32:{ *:[v4f32] }:$C) - Complexity = 406
                // Dst: (XVNMSUBASP:{ *:[v4f32] } ?:{ *:[v4f32] }:$C, ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B)
/* 96054*/    /*Scope*/ 93, /*->96148*/
/* 96055*/      OPC_RecordChild0, // #0 = $A
/* 96056*/      OPC_Scope, 20, /*->96078*/ // 2 children in Scope
/* 96058*/        OPC_MoveChild1,
/* 96059*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96062*/        OPC_RecordChild0, // #1 = $B
/* 96063*/        OPC_MoveParent,
/* 96064*/        OPC_RecordChild2, // #2 = $C
/* 96065*/        OPC_CheckType, MVT::v4f32,
/* 96067*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96069*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVNMSUBASP), 0,
                      MVT::v4f32, 3/*#Ops*/, 2, 0, 1, 
                  // Src: (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$B), v4f32:{ *:[v4f32] }:$C) - Complexity = 406
                  // Dst: (XVNMSUBASP:{ *:[v4f32] } ?:{ *:[v4f32] }:$C, ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B)
/* 96078*/      /*Scope*/ 68, /*->96147*/
/* 96079*/        OPC_RecordChild1, // #1 = $XB
/* 96080*/        OPC_Scope, 29, /*->96111*/ // 2 children in Scope
/* 96082*/          OPC_RecordChild2, // #2 = $XTi
/* 96083*/          OPC_SwitchType /*2 cases */, 11, MVT::v2f64,// ->96097
/* 96086*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96088*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMADDADP), 0,
                          MVT::v2f64, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fma:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB, v2f64:{ *:[v2f64] }:$XTi) - Complexity = 403
                      // Dst: (XVMADDADP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XTi, v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 96097*/          /*SwitchType*/ 11, MVT::v4f32,// ->96110
/* 96099*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96101*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMADDASP), 0,
                          MVT::v4f32, 3/*#Ops*/, 2, 0, 1, 
                      // Src: (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB, v4f32:{ *:[v4f32] }:$XTi) - Complexity = 403
                      // Dst: (XVMADDASP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XTi, v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 96110*/          0, // EndSwitchType
/* 96111*/        /*Scope*/ 34, /*->96146*/
/* 96112*/          OPC_MoveChild2,
/* 96113*/          OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96116*/          OPC_RecordChild0, // #2 = $FRB
/* 96117*/          OPC_MoveParent,
/* 96118*/          OPC_SwitchType /*2 cases */, 11, MVT::v4f64,// ->96132
/* 96121*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96123*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMSUB), 0,
                          MVT::v4f64, 3/*#Ops*/, 0, 2, 1, 
                      // Src: (fma:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC, (fneg:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)) - Complexity = 6
                      // Dst: (QVFMSUB:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 96132*/          /*SwitchType*/ 11, MVT::v4f32,// ->96145
/* 96134*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96136*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMSUBSs), 0,
                          MVT::v4f32, 3/*#Ops*/, 0, 2, 1, 
                      // Src: (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRC, (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)) - Complexity = 6
                      // Dst: (QVFMSUBSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, v4f32:{ *:[v4f32] }:$FRC)
/* 96145*/          0, // EndSwitchType
/* 96146*/        0, /*End of Scope*/
/* 96147*/      0, /*End of Scope*/
/* 96148*/    /*Scope*/ 21, /*->96170*/
/* 96149*/      OPC_MoveChild0,
/* 96150*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96153*/      OPC_RecordChild0, // #0 = $A
/* 96154*/      OPC_MoveParent,
/* 96155*/      OPC_RecordChild1, // #1 = $C
/* 96156*/      OPC_RecordChild2, // #2 = $B
/* 96157*/      OPC_CheckType, MVT::v4f64,
/* 96159*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96161*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUB), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 2, 1, 
                // Src: (fma:{ *:[v4f64] } (fneg:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$A), v4f64:{ *:[v4f64] }:$C, v4f64:{ *:[v4f64] }:$B) - Complexity = 6
                // Dst: (QVFNMSUB:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, ?:{ *:[v4f64] }:$C)
/* 96170*/    /*Scope*/ 21, /*->96192*/
/* 96171*/      OPC_RecordChild0, // #0 = $A
/* 96172*/      OPC_MoveChild1,
/* 96173*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96176*/      OPC_RecordChild0, // #1 = $C
/* 96177*/      OPC_MoveParent,
/* 96178*/      OPC_RecordChild2, // #2 = $B
/* 96179*/      OPC_CheckType, MVT::v4f64,
/* 96181*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96183*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUB), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 2, 1, 
                // Src: (fma:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$A, (fneg:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$C), v4f64:{ *:[v4f64] }:$B) - Complexity = 6
                // Dst: (QVFNMSUB:{ *:[v4f64] } ?:{ *:[v4f64] }:$A, ?:{ *:[v4f64] }:$B, ?:{ *:[v4f64] }:$C)
/* 96192*/    /*Scope*/ 21, /*->96214*/
/* 96193*/      OPC_MoveChild0,
/* 96194*/      OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96197*/      OPC_RecordChild0, // #0 = $A
/* 96198*/      OPC_MoveParent,
/* 96199*/      OPC_RecordChild1, // #1 = $C
/* 96200*/      OPC_RecordChild2, // #2 = $B
/* 96201*/      OPC_CheckType, MVT::v4f32,
/* 96203*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96205*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUBSs), 0,
                    MVT::v4f32, 3/*#Ops*/, 0, 2, 1, 
                // Src: (fma:{ *:[v4f32] } (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A), v4f32:{ *:[v4f32] }:$C, v4f32:{ *:[v4f32] }:$B) - Complexity = 6
                // Dst: (QVFNMSUBSs:{ *:[v4f32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B, ?:{ *:[v4f32] }:$C)
/* 96214*/    /*Scope*/ 70, /*->96285*/
/* 96215*/      OPC_RecordChild0, // #0 = $A
/* 96216*/      OPC_Scope, 20, /*->96238*/ // 2 children in Scope
/* 96218*/        OPC_MoveChild1,
/* 96219*/        OPC_CheckOpcode, TARGET_VAL(ISD::FNEG),
/* 96222*/        OPC_RecordChild0, // #1 = $C
/* 96223*/        OPC_MoveParent,
/* 96224*/        OPC_RecordChild2, // #2 = $B
/* 96225*/        OPC_CheckType, MVT::v4f32,
/* 96227*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96229*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFNMSUBSs), 0,
                      MVT::v4f32, 3/*#Ops*/, 0, 2, 1, 
                  // Src: (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (fneg:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$C), v4f32:{ *:[v4f32] }:$B) - Complexity = 6
                  // Dst: (QVFNMSUBSs:{ *:[v4f32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B, ?:{ *:[v4f32] }:$C)
/* 96238*/      /*Scope*/ 45, /*->96284*/
/* 96239*/        OPC_RecordChild1, // #1 = $vC
/* 96240*/        OPC_RecordChild2, // #2 = $vB
/* 96241*/        OPC_SwitchType /*2 cases */, 26, MVT::v4f32,// ->96270
/* 96244*/          OPC_Scope, 11, /*->96257*/ // 2 children in Scope
/* 96246*/            OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 96248*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VMADDFP), 0,
                          MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
                      // Src: (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vC, v4f32:{ *:[v4f32] }:$vB) - Complexity = 3
                      // Dst: (VMADDFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vC, v4f32:{ *:[v4f32] }:$vB)
/* 96257*/          /*Scope*/ 11, /*->96269*/
/* 96258*/            OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96260*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMADDSs), 0,
                          MVT::v4f32, 3/*#Ops*/, 0, 2, 1, 
                      // Src: (fma:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRC, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                      // Dst: (QVFMADDSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, v4f32:{ *:[v4f32] }:$FRC)
/* 96269*/          0, /*End of Scope*/
/* 96270*/        /*SwitchType*/ 11, MVT::v4f64,// ->96283
/* 96272*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96274*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMADD), 0,
                        MVT::v4f64, 3/*#Ops*/, 0, 2, 1, 
                    // Src: (fma:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                    // Dst: (QVFMADD:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/* 96283*/        0, // EndSwitchType
/* 96284*/      0, /*End of Scope*/
/* 96285*/    0, /*End of Scope*/
/* 96286*/  /*SwitchOpcode*/ 24, TARGET_VAL(ISD::ConstantFP),// ->96313
/* 96289*/    OPC_CheckPredicate, 34, // Predicate_fpimm0
/* 96291*/    OPC_SwitchType /*2 cases */, 8, MVT::f64,// ->96302
/* 96294*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96296*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLXORdpz), 0,
                    MVT::f64, 0/*#Ops*/, 
                // Src: (fpimm:{ *:[f64] })<<P:Predicate_fpimm0>> - Complexity = 404
                // Dst: (XXLXORdpz:{ *:[f64] })
/* 96302*/    /*SwitchType*/ 8, MVT::f32,// ->96312
/* 96304*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96306*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLXORspz), 0,
                    MVT::f32, 0/*#Ops*/, 
                // Src: (fpimm:{ *:[f32] })<<P:Predicate_fpimm0>> - Complexity = 404
                // Dst: (XXLXORspz:{ *:[f32] })
/* 96312*/    0, // EndSwitchType
/* 96313*/  /*SwitchOpcode*/ 23|128,1/*151*/, TARGET_VAL(ISD::FADD),// ->96468
/* 96317*/    OPC_RecordChild0, // #0 = $XA
/* 96318*/    OPC_RecordChild1, // #1 = $XB
/* 96319*/    OPC_SwitchType /*6 cases */, 35, MVT::f64,// ->96357
/* 96322*/      OPC_Scope, 10, /*->96334*/ // 3 children in Scope
/* 96324*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96326*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSADDDP), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSADDDP:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 96334*/      /*Scope*/ 10, /*->96345*/
/* 96335*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96337*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FADD), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB) - Complexity = 3
                  // Dst: (FADD:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB)
/* 96345*/      /*Scope*/ 10, /*->96356*/
/* 96346*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96348*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDADD), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB) - Complexity = 3
                  // Dst: (EFDADD:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB)
/* 96356*/      0, /*End of Scope*/
/* 96357*/    /*SwitchType*/ 35, MVT::f32,// ->96394
/* 96359*/      OPC_Scope, 10, /*->96371*/ // 3 children in Scope
/* 96361*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 96363*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSADDSP), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB) - Complexity = 403
                  // Dst: (XSADDSP:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 96371*/      /*Scope*/ 10, /*->96382*/
/* 96372*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96374*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FADDS), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRB) - Complexity = 3
                  // Dst: (FADDS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRB)
/* 96382*/      /*Scope*/ 10, /*->96393*/
/* 96383*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96385*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSADD), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB) - Complexity = 3
                  // Dst: (EFSADD:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB)
/* 96393*/      0, /*End of Scope*/
/* 96394*/    /*SwitchType*/ 10, MVT::f128,// ->96406
/* 96396*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 96398*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSADDQP), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (fadd:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSADDQP:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 96406*/    /*SwitchType*/ 10, MVT::v2f64,// ->96418
/* 96408*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96410*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVADDDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (fadd:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVADDDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 96418*/    /*SwitchType*/ 35, MVT::v4f32,// ->96455
/* 96420*/      OPC_Scope, 10, /*->96432*/ // 3 children in Scope
/* 96422*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96424*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVADDSP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVADDSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 96432*/      /*Scope*/ 10, /*->96443*/
/* 96433*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 96435*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VADDFP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB) - Complexity = 3
                  // Dst: (VADDFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/* 96443*/      /*Scope*/ 10, /*->96454*/
/* 96444*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96446*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFADDSs), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fadd:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFADDSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB)
/* 96454*/      0, /*End of Scope*/
/* 96455*/    /*SwitchType*/ 10, MVT::v4f64,// ->96467
/* 96457*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96459*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFADD), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (fadd:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFADD:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 96467*/    0, // EndSwitchType
/* 96468*/  /*SwitchOpcode*/ 44|128,1/*172*/, TARGET_VAL(ISD::FMUL),// ->96644
/* 96472*/    OPC_RecordChild0, // #0 = $XA
/* 96473*/    OPC_RecordChild1, // #1 = $XB
/* 96474*/    OPC_SwitchType /*6 cases */, 35, MVT::f64,// ->96512
/* 96477*/      OPC_Scope, 10, /*->96489*/ // 3 children in Scope
/* 96479*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96481*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMULDP), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSMULDP:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 96489*/      /*Scope*/ 10, /*->96500*/
/* 96490*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96492*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FMUL), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC) - Complexity = 3
                  // Dst: (FMUL:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC)
/* 96500*/      /*Scope*/ 10, /*->96511*/
/* 96501*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96503*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDMUL), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB) - Complexity = 3
                  // Dst: (EFDMUL:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB)
/* 96511*/      0, /*End of Scope*/
/* 96512*/    /*SwitchType*/ 35, MVT::f32,// ->96549
/* 96514*/      OPC_Scope, 10, /*->96526*/ // 3 children in Scope
/* 96516*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 96518*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMULSP), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB) - Complexity = 403
                  // Dst: (XSMULSP:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 96526*/      /*Scope*/ 10, /*->96537*/
/* 96527*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96529*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FMULS), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC) - Complexity = 3
                  // Dst: (FMULS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRC)
/* 96537*/      /*Scope*/ 10, /*->96548*/
/* 96538*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96540*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSMUL), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB) - Complexity = 3
                  // Dst: (EFSMUL:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB)
/* 96548*/      0, /*End of Scope*/
/* 96549*/    /*SwitchType*/ 10, MVT::f128,// ->96561
/* 96551*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 96553*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMULQP), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (fmul:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSMULQP:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 96561*/    /*SwitchType*/ 10, MVT::v2f64,// ->96573
/* 96563*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96565*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMULDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (fmul:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVMULDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 96573*/    /*SwitchType*/ 56, MVT::v4f32,// ->96631
/* 96575*/      OPC_Scope, 10, /*->96587*/ // 3 children in Scope
/* 96577*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96579*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMULSP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVMULSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 96587*/      /*Scope*/ 10, /*->96598*/
/* 96588*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96590*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMULSs), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fmul:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRC) - Complexity = 3
                  // Dst: (QVFMULSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRC)
/* 96598*/      /*Scope*/ 31, /*->96630*/
/* 96599*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 96601*/        OPC_EmitNode1, TARGET_VAL(PPC::V_SETALLONES), 0,
                      MVT::v4i32, 0/*#Ops*/,  // Results = #2
/* 96607*/        OPC_EmitNode1, TARGET_VAL(PPC::V_SETALLONES), 0,
                      MVT::v4i32, 0/*#Ops*/,  // Results = #3
/* 96613*/        OPC_EmitNode1, TARGET_VAL(PPC::VSLW), 0,
                      MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/* 96621*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMADDFP), 0,
                      MVT::v4f32, 3/*#Ops*/, 0, 1, 4, 
                  // Src: (fmul:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB) - Complexity = 3
                  // Dst: (VMADDFP:{ *:[v4f32] } ?:{ *:[v4f32] }:$vA, ?:{ *:[v4f32] }:$vB, (VSLW:{ *:[v4i32] } (V_SETALLONES:{ *:[v4i32] }), (V_SETALLONES:{ *:[v4i32] })))
/* 96630*/      0, /*End of Scope*/
/* 96631*/    /*SwitchType*/ 10, MVT::v4f64,// ->96643
/* 96633*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96635*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFMUL), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (fmul:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 3
                // Dst: (QVFMUL:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRC)
/* 96643*/    0, // EndSwitchType
/* 96644*/  /*SwitchOpcode*/ 23|128,1/*151*/, TARGET_VAL(ISD::FSUB),// ->96799
/* 96648*/    OPC_RecordChild0, // #0 = $XA
/* 96649*/    OPC_RecordChild1, // #1 = $XB
/* 96650*/    OPC_SwitchType /*6 cases */, 35, MVT::f64,// ->96688
/* 96653*/      OPC_Scope, 10, /*->96665*/ // 3 children in Scope
/* 96655*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96657*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSUBDP), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSSUBDP:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 96665*/      /*Scope*/ 10, /*->96676*/
/* 96666*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96668*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FSUB), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB) - Complexity = 3
                  // Dst: (FSUB:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB)
/* 96676*/      /*Scope*/ 10, /*->96687*/
/* 96677*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96679*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDSUB), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB) - Complexity = 3
                  // Dst: (EFDSUB:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB)
/* 96687*/      0, /*End of Scope*/
/* 96688*/    /*SwitchType*/ 35, MVT::f32,// ->96725
/* 96690*/      OPC_Scope, 10, /*->96702*/ // 3 children in Scope
/* 96692*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 96694*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSUBSP), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB) - Complexity = 403
                  // Dst: (XSSUBSP:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 96702*/      /*Scope*/ 10, /*->96713*/
/* 96703*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96705*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FSUBS), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRB) - Complexity = 3
                  // Dst: (FSUBS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRB)
/* 96713*/      /*Scope*/ 10, /*->96724*/
/* 96714*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96716*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSSUB), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB) - Complexity = 3
                  // Dst: (EFSSUB:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB)
/* 96724*/      0, /*End of Scope*/
/* 96725*/    /*SwitchType*/ 10, MVT::f128,// ->96737
/* 96727*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 96729*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSUBQP), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (fsub:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSSUBQP:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 96737*/    /*SwitchType*/ 10, MVT::v2f64,// ->96749
/* 96739*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96741*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVSUBDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (fsub:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVSUBDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 96749*/    /*SwitchType*/ 35, MVT::v4f32,// ->96786
/* 96751*/      OPC_Scope, 10, /*->96763*/ // 3 children in Scope
/* 96753*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96755*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVSUBSP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVSUBSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 96763*/      /*Scope*/ 10, /*->96774*/
/* 96764*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 96766*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSUBFP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB) - Complexity = 3
                  // Dst: (VSUBFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/* 96774*/      /*Scope*/ 10, /*->96785*/
/* 96775*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96777*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSUBSs), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fsub:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFSUBSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB)
/* 96785*/      0, /*End of Scope*/
/* 96786*/    /*SwitchType*/ 10, MVT::v4f64,// ->96798
/* 96788*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 96790*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSUB), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (fsub:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFSUB:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 96798*/    0, // EndSwitchType
/* 96799*/  /*SwitchOpcode*/ 114, TARGET_VAL(ISD::FDIV),// ->96916
/* 96802*/    OPC_RecordChild0, // #0 = $XA
/* 96803*/    OPC_RecordChild1, // #1 = $XB
/* 96804*/    OPC_SwitchType /*5 cases */, 35, MVT::f64,// ->96842
/* 96807*/      OPC_Scope, 10, /*->96819*/ // 3 children in Scope
/* 96809*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96811*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSDIVDP), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fdiv:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSDIVDP:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 96819*/      /*Scope*/ 10, /*->96830*/
/* 96820*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96822*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FDIV), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fdiv:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB) - Complexity = 3
                  // Dst: (FDIV:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB)
/* 96830*/      /*Scope*/ 10, /*->96841*/
/* 96831*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96833*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDDIV), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fdiv:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB) - Complexity = 3
                  // Dst: (EFDDIV:{ *:[f64] } f64:{ *:[f64] }:$RA, f64:{ *:[f64] }:$RB)
/* 96841*/      0, /*End of Scope*/
/* 96842*/    /*SwitchType*/ 35, MVT::f32,// ->96879
/* 96844*/      OPC_Scope, 10, /*->96856*/ // 3 children in Scope
/* 96846*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 96848*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSDIVSP), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fdiv:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB) - Complexity = 403
                  // Dst: (XSDIVSP:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB)
/* 96856*/      /*Scope*/ 10, /*->96867*/
/* 96857*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96859*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FDIVS), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fdiv:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRB) - Complexity = 3
                  // Dst: (FDIVS:{ *:[f32] } f32:{ *:[f32] }:$FRA, f32:{ *:[f32] }:$FRB)
/* 96867*/      /*Scope*/ 10, /*->96878*/
/* 96868*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 96870*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSDIV), 0,
                      MVT::f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fdiv:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB) - Complexity = 3
                  // Dst: (EFSDIV:{ *:[f32] } f32:{ *:[f32] }:$RA, f32:{ *:[f32] }:$RB)
/* 96878*/      0, /*End of Scope*/
/* 96879*/    /*SwitchType*/ 10, MVT::f128,// ->96891
/* 96881*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 96883*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSDIVQP), 0,
                    MVT::f128, 2/*#Ops*/, 0, 1, 
                // Src: (fdiv:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSDIVQP:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 96891*/    /*SwitchType*/ 10, MVT::v2f64,// ->96903
/* 96893*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96895*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVDIVDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (fdiv:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVDIVDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 96903*/    /*SwitchType*/ 10, MVT::v4f32,// ->96915
/* 96905*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96907*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVDIVSP), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 1, 
                // Src: (fdiv:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                // Dst: (XVDIVSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 96915*/    0, // EndSwitchType
/* 96916*/  /*SwitchOpcode*/ 84, TARGET_VAL(ISD::FSQRT),// ->97003
/* 96919*/    OPC_RecordChild0, // #0 = $XB
/* 96920*/    OPC_SwitchType /*5 cases */, 22, MVT::f64,// ->96945
/* 96923*/      OPC_Scope, 9, /*->96934*/ // 2 children in Scope
/* 96925*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96927*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSQRTDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fsqrt:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSSQRTDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 96934*/      /*Scope*/ 9, /*->96944*/
/* 96935*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96937*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FSQRT), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fsqrt:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FSQRT:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 96944*/      0, /*End of Scope*/
/* 96945*/    /*SwitchType*/ 22, MVT::f32,// ->96969
/* 96947*/      OPC_Scope, 9, /*->96958*/ // 2 children in Scope
/* 96949*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 96951*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSQRTSP), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (fsqrt:{ *:[f32] } f32:{ *:[f32] }:$XB) - Complexity = 403
                  // Dst: (XSSQRTSP:{ *:[f32] } f32:{ *:[f32] }:$XB)
/* 96958*/      /*Scope*/ 9, /*->96968*/
/* 96959*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 96961*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FSQRTS), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (fsqrt:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                  // Dst: (FSQRTS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 96968*/      0, /*End of Scope*/
/* 96969*/    /*SwitchType*/ 9, MVT::f128,// ->96980
/* 96971*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 96973*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSSQRTQP), 0,
                    MVT::f128, 1/*#Ops*/, 0, 
                // Src: (fsqrt:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSSQRTQP:{ *:[f128] } f128:{ *:[f128] }:$vB)
/* 96980*/    /*SwitchType*/ 9, MVT::v2f64,// ->96991
/* 96982*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96984*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVSQRTDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (fsqrt:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVSQRTDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 96991*/    /*SwitchType*/ 9, MVT::v4f32,// ->97002
/* 96993*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 96995*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVSQRTSP), 0,
                    MVT::v4f32, 1/*#Ops*/, 0, 
                // Src: (fsqrt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                // Dst: (XVSQRTSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 97002*/    0, // EndSwitchType
/* 97003*/  /*SwitchOpcode*/ 107, TARGET_VAL(PPCISD::FRE),// ->97113
/* 97006*/    OPC_RecordChild0, // #0 = $XB
/* 97007*/    OPC_SwitchType /*5 cases */, 22, MVT::f64,// ->97032
/* 97010*/      OPC_Scope, 9, /*->97021*/ // 2 children in Scope
/* 97012*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97014*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSREDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfre:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSREDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97021*/      /*Scope*/ 9, /*->97031*/
/* 97022*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97024*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRE), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfre:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FRE:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97031*/      0, /*End of Scope*/
/* 97032*/    /*SwitchType*/ 22, MVT::f32,// ->97056
/* 97034*/      OPC_Scope, 9, /*->97045*/ // 2 children in Scope
/* 97036*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 97038*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRESP), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfre:{ *:[f32] } f32:{ *:[f32] }:$XB) - Complexity = 403
                  // Dst: (XSRESP:{ *:[f32] } f32:{ *:[f32] }:$XB)
/* 97045*/      /*Scope*/ 9, /*->97055*/
/* 97046*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97048*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRES), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfre:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                  // Dst: (FRES:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 97055*/      0, /*End of Scope*/
/* 97056*/    /*SwitchType*/ 9, MVT::v2f64,// ->97067
/* 97058*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97060*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVREDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (PPCfre:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVREDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 97067*/    /*SwitchType*/ 32, MVT::v4f32,// ->97101
/* 97069*/      OPC_Scope, 9, /*->97080*/ // 3 children in Scope
/* 97071*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97073*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRESP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfre:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVRESP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 97080*/      /*Scope*/ 9, /*->97090*/
/* 97081*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 97083*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VREFP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfre:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A) - Complexity = 3
                  // Dst: (VREFP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A)
/* 97090*/      /*Scope*/ 9, /*->97100*/
/* 97091*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97093*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRESs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfre:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFRESs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 97100*/      0, /*End of Scope*/
/* 97101*/    /*SwitchType*/ 9, MVT::v4f64,// ->97112
/* 97103*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97105*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRE), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (PPCfre:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFRE:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 97112*/    0, // EndSwitchType
/* 97113*/  /*SwitchOpcode*/ 107, TARGET_VAL(PPCISD::FRSQRTE),// ->97223
/* 97116*/    OPC_RecordChild0, // #0 = $XB
/* 97117*/    OPC_SwitchType /*5 cases */, 22, MVT::f64,// ->97142
/* 97120*/      OPC_Scope, 9, /*->97131*/ // 2 children in Scope
/* 97122*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97124*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRSQRTEDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfrsqrte:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSRSQRTEDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97131*/      /*Scope*/ 9, /*->97141*/
/* 97132*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97134*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRSQRTE), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfrsqrte:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FRSQRTE:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97141*/      0, /*End of Scope*/
/* 97142*/    /*SwitchType*/ 22, MVT::f32,// ->97166
/* 97144*/      OPC_Scope, 9, /*->97155*/ // 2 children in Scope
/* 97146*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 97148*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRSQRTESP), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfrsqrte:{ *:[f32] } f32:{ *:[f32] }:$XB) - Complexity = 403
                  // Dst: (XSRSQRTESP:{ *:[f32] } f32:{ *:[f32] }:$XB)
/* 97155*/      /*Scope*/ 9, /*->97165*/
/* 97156*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97158*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRSQRTES), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfrsqrte:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                  // Dst: (FRSQRTES:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 97165*/      0, /*End of Scope*/
/* 97166*/    /*SwitchType*/ 9, MVT::v2f64,// ->97177
/* 97168*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97170*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSQRTEDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (PPCfrsqrte:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVRSQRTEDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 97177*/    /*SwitchType*/ 32, MVT::v4f32,// ->97211
/* 97179*/      OPC_Scope, 9, /*->97190*/ // 3 children in Scope
/* 97181*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97183*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSQRTESP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfrsqrte:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVRSQRTESP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 97190*/      /*Scope*/ 9, /*->97200*/
/* 97191*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 97193*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VRSQRTEFP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfrsqrte:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A) - Complexity = 3
                  // Dst: (VRSQRTEFP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A)
/* 97200*/      /*Scope*/ 9, /*->97210*/
/* 97201*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97203*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRSQRTESs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (PPCfrsqrte:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFRSQRTESs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 97210*/      0, /*End of Scope*/
/* 97211*/    /*SwitchType*/ 9, MVT::v4f64,// ->97222
/* 97213*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97215*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRSQRTE), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (PPCfrsqrte:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFRSQRTE:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 97222*/    0, // EndSwitchType
/* 97223*/  /*SwitchOpcode*/ 118, TARGET_VAL(ISD::FABS),// ->97344
/* 97226*/    OPC_RecordChild0, // #0 = $XB
/* 97227*/    OPC_SwitchType /*6 cases */, 32, MVT::f64,// ->97262
/* 97230*/      OPC_Scope, 9, /*->97241*/ // 3 children in Scope
/* 97232*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97234*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSABSDP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fabs:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSABSDP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97241*/      /*Scope*/ 9, /*->97251*/
/* 97242*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97244*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FABSD), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fabs:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FABSD:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97251*/      /*Scope*/ 9, /*->97261*/
/* 97252*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 97254*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDABS), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fabs:{ *:[f64] } f64:{ *:[f64] }:$RA) - Complexity = 3
                  // Dst: (EFDABS:{ *:[f64] } f64:{ *:[f64] }:$RA)
/* 97261*/      0, /*End of Scope*/
/* 97262*/    /*SwitchType*/ 9, MVT::f128,// ->97273
/* 97264*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 97266*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSABSQP), 0,
                    MVT::f128, 1/*#Ops*/, 0, 
                // Src: (fabs:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSABSQP:{ *:[f128] } f128:{ *:[f128] }:$vB)
/* 97273*/    /*SwitchType*/ 22, MVT::f32,// ->97297
/* 97275*/      OPC_Scope, 9, /*->97286*/ // 2 children in Scope
/* 97277*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97279*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FABSS), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (fabs:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                  // Dst: (FABSS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 97286*/      /*Scope*/ 9, /*->97296*/
/* 97287*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 97289*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::EFSABS), 0,
                      MVT::f32, 1/*#Ops*/, 0, 
                  // Src: (fabs:{ *:[f32] } f32:{ *:[f32] }:$RA) - Complexity = 3
                  // Dst: (EFSABS:{ *:[f32] } f32:{ *:[f32] }:$RA)
/* 97296*/      0, /*End of Scope*/
/* 97297*/    /*SwitchType*/ 9, MVT::v2f64,// ->97308
/* 97299*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97301*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVABSDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (fabs:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVABSDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 97308*/    /*SwitchType*/ 22, MVT::v4f32,// ->97332
/* 97310*/      OPC_Scope, 9, /*->97321*/ // 2 children in Scope
/* 97312*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97314*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVABSSP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fabs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVABSSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 97321*/      /*Scope*/ 9, /*->97331*/
/* 97322*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97324*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFABSs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fabs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFABSs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 97331*/      0, /*End of Scope*/
/* 97332*/    /*SwitchType*/ 9, MVT::v4f64,// ->97343
/* 97334*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97336*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFABS), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (fabs:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFABS:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 97343*/    0, // EndSwitchType
/* 97344*/  /*SwitchOpcode*/ 94|128,1/*222*/, TARGET_VAL(ISD::FCOPYSIGN),// ->97570
/* 97348*/    OPC_RecordChild0, // #0 = $XB
/* 97349*/    OPC_RecordChild1, // #1 = $XA
/* 97350*/    OPC_Scope, 53, /*->97405*/ // 6 children in Scope
/* 97352*/      OPC_CheckChild1Type, MVT::f64,
/* 97354*/      OPC_SwitchType /*2 cases */, 24, MVT::f64,// ->97381
/* 97357*/        OPC_Scope, 10, /*->97369*/ // 2 children in Scope
/* 97359*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97361*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCPSGNDP), 0,
                        MVT::f64, 2/*#Ops*/, 1, 0, 
                    // Src: (fcopysign:{ *:[f64] } f64:{ *:[f64] }:$XB, f64:{ *:[f64] }:$XA) - Complexity = 403
                    // Dst: (XSCPSGNDP:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 97369*/        /*Scope*/ 10, /*->97380*/
/* 97370*/          OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97372*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::FCPSGND), 0,
                        MVT::f64, 2/*#Ops*/, 1, 0, 
                    // Src: (fcopysign:{ *:[f64] } f64:{ *:[f64] }:$frB, f64:{ *:[f64] }:$frA) - Complexity = 3
                    // Dst: (FCPSGND:{ *:[f64] } f64:{ *:[f64] }:$frA, f64:{ *:[f64] }:$frB)
/* 97380*/        0, /*End of Scope*/
/* 97381*/      /*SwitchType*/ 21, MVT::f32,// ->97404
/* 97383*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97385*/        OPC_EmitInteger, MVT::i32, PPC::F4RCRegClassID,
/* 97388*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f32, 2/*#Ops*/, 1, 2,  // Results = #3
/* 97396*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCPSGNS), 0,
                      MVT::f32, 2/*#Ops*/, 3, 0, 
                  // Src: (fcopysign:{ *:[f32] } f32:{ *:[f32] }:$frB, f64:{ *:[f64] }:$frA) - Complexity = 3
                  // Dst: (FCPSGNS:{ *:[f32] } (COPY_TO_REGCLASS:{ *:[f32] } ?:{ *:[f64] }:$frA, F4RC:{ *:[i32] }), ?:{ *:[f32] }:$frB)
/* 97404*/      0, // EndSwitchType
/* 97405*/    /*Scope*/ 14, /*->97420*/
/* 97406*/      OPC_CheckChild1Type, MVT::f128,
/* 97408*/      OPC_CheckType, MVT::f128,
/* 97410*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 97412*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCPSGNQP), 0,
                    MVT::f128, 2/*#Ops*/, 1, 0, 
                // Src: (fcopysign:{ *:[f128] } f128:{ *:[f128] }:$vB, f128:{ *:[f128] }:$vA) - Complexity = 403
                // Dst: (XSCPSGNQP:{ *:[f128] } f128:{ *:[f128] }:$vA, f128:{ *:[f128] }:$vB)
/* 97420*/    /*Scope*/ 39, /*->97460*/
/* 97421*/      OPC_CheckChild1Type, MVT::f32,
/* 97423*/      OPC_SwitchType /*2 cases */, 10, MVT::f32,// ->97436
/* 97426*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97428*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCPSGNS), 0,
                      MVT::f32, 2/*#Ops*/, 1, 0, 
                  // Src: (fcopysign:{ *:[f32] } f32:{ *:[f32] }:$frB, f32:{ *:[f32] }:$frA) - Complexity = 3
                  // Dst: (FCPSGNS:{ *:[f32] } f32:{ *:[f32] }:$frA, f32:{ *:[f32] }:$frB)
/* 97436*/      /*SwitchType*/ 21, MVT::f64,// ->97459
/* 97438*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97440*/        OPC_EmitInteger, MVT::i32, PPC::F8RCRegClassID,
/* 97443*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 97451*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCPSGND), 0,
                      MVT::f64, 2/*#Ops*/, 3, 0, 
                  // Src: (fcopysign:{ *:[f64] } f64:{ *:[f64] }:$frB, f32:{ *:[f32] }:$frA) - Complexity = 3
                  // Dst: (FCPSGND:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$frA, F8RC:{ *:[i32] }), ?:{ *:[f64] }:$frB)
/* 97459*/      0, // EndSwitchType
/* 97460*/    /*Scope*/ 14, /*->97475*/
/* 97461*/      OPC_CheckChild1Type, MVT::v2f64,
/* 97463*/      OPC_CheckType, MVT::v2f64,
/* 97465*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97467*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCPSGNDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 1, 0, 
                // Src: (fcopysign:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB, v2f64:{ *:[v2f64] }:$XA) - Complexity = 403
                // Dst: (XVCPSGNDP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/* 97475*/    /*Scope*/ 53, /*->97529*/
/* 97476*/      OPC_CheckChild1Type, MVT::v4f32,
/* 97478*/      OPC_SwitchType /*2 cases */, 24, MVT::v4f32,// ->97505
/* 97481*/        OPC_Scope, 10, /*->97493*/ // 2 children in Scope
/* 97483*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97485*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCPSGNSP), 0,
                        MVT::v4f32, 2/*#Ops*/, 1, 0, 
                    // Src: (fcopysign:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB, v4f32:{ *:[v4f32] }:$XA) - Complexity = 403
                    // Dst: (XVCPSGNSP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/* 97493*/        /*Scope*/ 10, /*->97504*/
/* 97494*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97496*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCPSGNs), 0,
                        MVT::v4f32, 2/*#Ops*/, 1, 0, 
                    // Src: (fcopysign:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB, v4f32:{ *:[v4f32] }:$FRA) - Complexity = 3
                    // Dst: (QVFCPSGNs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB)
/* 97504*/        0, /*End of Scope*/
/* 97505*/      /*SwitchType*/ 21, MVT::v4f64,// ->97528
/* 97507*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97509*/        OPC_EmitInteger, MVT::i32, PPC::QFRCRegClassID,
/* 97512*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 97520*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCPSGN), 0,
                      MVT::v4f64, 2/*#Ops*/, 3, 0, 
                  // Src: (fcopysign:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$frB, v4f32:{ *:[v4f32] }:$frA) - Complexity = 3
                  // Dst: (QVFCPSGN:{ *:[v4f64] } (COPY_TO_REGCLASS:{ *:[v4f64] } ?:{ *:[v4f32] }:$frA, QFRC:{ *:[i32] }), ?:{ *:[v4f64] }:$frB)
/* 97528*/      0, // EndSwitchType
/* 97529*/    /*Scope*/ 39, /*->97569*/
/* 97530*/      OPC_CheckChild1Type, MVT::v4f64,
/* 97532*/      OPC_SwitchType /*2 cases */, 10, MVT::v4f64,// ->97545
/* 97535*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97537*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCPSGN), 0,
                      MVT::v4f64, 2/*#Ops*/, 1, 0, 
                  // Src: (fcopysign:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRA) - Complexity = 3
                  // Dst: (QVFCPSGN:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB)
/* 97545*/      /*SwitchType*/ 21, MVT::v4f32,// ->97568
/* 97547*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97549*/        OPC_EmitInteger, MVT::i32, PPC::QSRCRegClassID,
/* 97552*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4f32, 2/*#Ops*/, 1, 2,  // Results = #3
/* 97560*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFCPSGNs), 0,
                      MVT::v4f32, 2/*#Ops*/, 3, 0, 
                  // Src: (fcopysign:{ *:[v4f32] } QSRC:{ *:[v4f32] }:$frB, QFRC:{ *:[v4f64] }:$frA) - Complexity = 3
                  // Dst: (QVFCPSGNs:{ *:[v4f32] } (COPY_TO_REGCLASS:{ *:[v4f32] } ?:{ *:[v4f64] }:$frA, QSRC:{ *:[i32] }), ?:{ *:[v4f32] }:$frB)
/* 97568*/      0, // EndSwitchType
/* 97569*/    0, /*End of Scope*/
/* 97570*/  /*SwitchOpcode*/ 36, TARGET_VAL(PPCISD::FCTIDZ),// ->97609
/* 97573*/    OPC_RecordChild0, // #0 = $XB
/* 97574*/    OPC_SwitchType /*2 cases */, 20, MVT::f64,// ->97597
/* 97577*/      OPC_Scope, 9, /*->97588*/ // 2 children in Scope
/* 97579*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97581*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctidz:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVDPSXDS:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97588*/      /*Scope*/ 7, /*->97596*/
/* 97589*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCTIDZ), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctidz:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCTIDZ:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97596*/      0, /*End of Scope*/
/* 97597*/    /*SwitchType*/ 9, MVT::f32,// ->97608
/* 97599*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97601*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPSXDSs), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (PPCfctidz:{ *:[f32] } f32:{ *:[f32] }:$XB) - Complexity = 403
                // Dst: (XSCVDPSXDSs:{ *:[f32] } f32:{ *:[f32] }:$XB)
/* 97608*/    0, // EndSwitchType
/* 97609*/  /*SwitchOpcode*/ 38, TARGET_VAL(PPCISD::FCTIWZ),// ->97650
/* 97612*/    OPC_RecordChild0, // #0 = $XB
/* 97613*/    OPC_SwitchType /*2 cases */, 22, MVT::f64,// ->97638
/* 97616*/      OPC_Scope, 9, /*->97627*/ // 2 children in Scope
/* 97618*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97620*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPSXWS), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVDPSXWS:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97627*/      /*Scope*/ 9, /*->97637*/
/* 97628*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97630*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCTIWZ), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCTIWZ:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97637*/      0, /*End of Scope*/
/* 97638*/    /*SwitchType*/ 9, MVT::f32,// ->97649
/* 97640*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97642*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPSXWSs), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (PPCfctiwz:{ *:[f32] } f32:{ *:[f32] }:$XB) - Complexity = 403
                // Dst: (XSCVDPSXWSs:{ *:[f32] } f32:{ *:[f32] }:$XB)
/* 97649*/    0, // EndSwitchType
/* 97650*/  /*SwitchOpcode*/ 36, TARGET_VAL(PPCISD::FCTIDUZ),// ->97689
/* 97653*/    OPC_RecordChild0, // #0 = $XB
/* 97654*/    OPC_SwitchType /*2 cases */, 20, MVT::f64,// ->97677
/* 97657*/      OPC_Scope, 9, /*->97668*/ // 2 children in Scope
/* 97659*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97661*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctiduz:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVDPUXDS:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97668*/      /*Scope*/ 7, /*->97676*/
/* 97669*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCTIDUZ), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctiduz:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCTIDUZ:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97676*/      0, /*End of Scope*/
/* 97677*/    /*SwitchType*/ 9, MVT::f32,// ->97688
/* 97679*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97681*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPUXDSs), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (PPCfctiduz:{ *:[f32] } f32:{ *:[f32] }:$XB) - Complexity = 403
                // Dst: (XSCVDPUXDSs:{ *:[f32] } f32:{ *:[f32] }:$XB)
/* 97688*/    0, // EndSwitchType
/* 97689*/  /*SwitchOpcode*/ 36, TARGET_VAL(PPCISD::FCTIWUZ),// ->97728
/* 97692*/    OPC_RecordChild0, // #0 = $XB
/* 97693*/    OPC_SwitchType /*2 cases */, 20, MVT::f64,// ->97716
/* 97696*/      OPC_Scope, 9, /*->97707*/ // 2 children in Scope
/* 97698*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97700*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPUXWS), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSCVDPUXWS:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97707*/      /*Scope*/ 7, /*->97715*/
/* 97708*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FCTIWUZ), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FCTIWUZ:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97715*/      0, /*End of Scope*/
/* 97716*/    /*SwitchType*/ 9, MVT::f32,// ->97727
/* 97718*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97720*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPUXWSs), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (PPCfctiwuz:{ *:[f32] } f32:{ *:[f32] }:$XB) - Complexity = 403
                // Dst: (XSCVDPUXWSs:{ *:[f32] } f32:{ *:[f32] }:$XB)
/* 97727*/    0, // EndSwitchType
/* 97728*/  /*SwitchOpcode*/ 103, TARGET_VAL(ISD::FROUND),// ->97834
/* 97731*/    OPC_RecordChild0, // #0 = $XB
/* 97732*/    OPC_SwitchType /*6 cases */, 22, MVT::f64,// ->97757
/* 97735*/      OPC_Scope, 9, /*->97746*/ // 2 children in Scope
/* 97737*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97739*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRDPI), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fround:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSRDPI:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97746*/      /*Scope*/ 9, /*->97756*/
/* 97747*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97749*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRIND), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fround:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FRIND:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97756*/      0, /*End of Scope*/
/* 97757*/    /*SwitchType*/ 17, MVT::f128,// ->97776
/* 97759*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 97761*/      OPC_EmitInteger, MVT::i32, 0, 
/* 97764*/      OPC_EmitInteger, MVT::i32, 0, 
/* 97767*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRQPI), 0,
                    MVT::f128, 3/*#Ops*/, 1, 0, 2, 
                // Src: (fround:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSRQPI:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[f128] }:$vB, 0:{ *:[i32] })
/* 97776*/    /*SwitchType*/ 9, MVT::f32,// ->97787
/* 97778*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97780*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FRINS), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (fround:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                // Dst: (FRINS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 97787*/    /*SwitchType*/ 9, MVT::v2f64,// ->97798
/* 97789*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97791*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRDPI), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (fround:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVRDPI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 97798*/    /*SwitchType*/ 22, MVT::v4f32,// ->97822
/* 97800*/      OPC_Scope, 9, /*->97811*/ // 2 children in Scope
/* 97802*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97804*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSPI), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fround:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVRSPI:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 97811*/      /*Scope*/ 9, /*->97821*/
/* 97812*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97814*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRINs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fround:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFRINs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 97821*/      0, /*End of Scope*/
/* 97822*/    /*SwitchType*/ 9, MVT::v4f64,// ->97833
/* 97824*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 97826*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIN), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (fround:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFRIN:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 97833*/    0, // EndSwitchType
/* 97834*/  /*SwitchOpcode*/ 68, TARGET_VAL(ISD::FNEARBYINT),// ->97905
/* 97837*/    OPC_RecordChild0, // #0 = $XB
/* 97838*/    OPC_SwitchType /*4 cases */, 9, MVT::f64,// ->97850
/* 97841*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97843*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRDPIC), 0,
                    MVT::f64, 1/*#Ops*/, 0, 
                // Src: (fnearbyint:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                // Dst: (XSRDPIC:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97850*/    /*SwitchType*/ 17, MVT::f128,// ->97869
/* 97852*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 97854*/      OPC_EmitInteger, MVT::i32, 0, 
/* 97857*/      OPC_EmitInteger, MVT::i32, 3, 
/* 97860*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRQPI), 0,
                    MVT::f128, 3/*#Ops*/, 1, 0, 2, 
                // Src: (fnearbyint:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSRQPI:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[f128] }:$vB, 3:{ *:[i32] })
/* 97869*/    /*SwitchType*/ 9, MVT::v2f64,// ->97880
/* 97871*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97873*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRDPIC), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (fnearbyint:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVRDPIC:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 97880*/    /*SwitchType*/ 22, MVT::v4f32,// ->97904
/* 97882*/      OPC_Scope, 9, /*->97893*/ // 2 children in Scope
/* 97884*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97886*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSPIC), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fnearbyint:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVRSPIC:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 97893*/      /*Scope*/ 9, /*->97903*/
/* 97894*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 97896*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIN), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fnearbyint:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA) - Complexity = 3
                  // Dst: (VRFIN:{ *:[v4f32] } ?:{ *:[v4f32] }:$vA)
/* 97903*/      0, /*End of Scope*/
/* 97904*/    0, // EndSwitchType
/* 97905*/  /*SwitchOpcode*/ 113, TARGET_VAL(ISD::FFLOOR),// ->98021
/* 97908*/    OPC_RecordChild0, // #0 = $XB
/* 97909*/    OPC_SwitchType /*6 cases */, 22, MVT::f64,// ->97934
/* 97912*/      OPC_Scope, 9, /*->97923*/ // 2 children in Scope
/* 97914*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97916*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRDPIM), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (ffloor:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSRDPIM:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 97923*/      /*Scope*/ 9, /*->97933*/
/* 97924*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97926*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRIMD), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (ffloor:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FRIMD:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 97933*/      0, /*End of Scope*/
/* 97934*/    /*SwitchType*/ 17, MVT::f128,// ->97953
/* 97936*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 97938*/      OPC_EmitInteger, MVT::i32, 1, 
/* 97941*/      OPC_EmitInteger, MVT::i32, 3, 
/* 97944*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRQPI), 0,
                    MVT::f128, 3/*#Ops*/, 1, 0, 2, 
                // Src: (ffloor:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSRQPI:{ *:[f128] } 1:{ *:[i32] }, ?:{ *:[f128] }:$vB, 3:{ *:[i32] })
/* 97953*/    /*SwitchType*/ 9, MVT::f32,// ->97964
/* 97955*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 97957*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FRIMS), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (ffloor:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                // Dst: (FRIMS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 97964*/    /*SwitchType*/ 9, MVT::v2f64,// ->97975
/* 97966*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97968*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRDPIM), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (ffloor:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVRDPIM:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 97975*/    /*SwitchType*/ 32, MVT::v4f32,// ->98009
/* 97977*/      OPC_Scope, 9, /*->97988*/ // 3 children in Scope
/* 97979*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 97981*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSPIM), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (ffloor:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVRSPIM:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 97988*/      /*Scope*/ 9, /*->97998*/
/* 97989*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 97991*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIM), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (ffloor:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA) - Complexity = 3
                  // Dst: (VRFIM:{ *:[v4f32] } ?:{ *:[v4f32] }:$vA)
/* 97998*/      /*Scope*/ 9, /*->98008*/
/* 97999*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 98001*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIMs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (ffloor:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFRIMs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 98008*/      0, /*End of Scope*/
/* 98009*/    /*SwitchType*/ 9, MVT::v4f64,// ->98020
/* 98011*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 98013*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIM), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (ffloor:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFRIM:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 98020*/    0, // EndSwitchType
/* 98021*/  /*SwitchOpcode*/ 113, TARGET_VAL(ISD::FCEIL),// ->98137
/* 98024*/    OPC_RecordChild0, // #0 = $XB
/* 98025*/    OPC_SwitchType /*6 cases */, 22, MVT::f64,// ->98050
/* 98028*/      OPC_Scope, 9, /*->98039*/ // 2 children in Scope
/* 98030*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 98032*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRDPIP), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fceil:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSRDPIP:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 98039*/      /*Scope*/ 9, /*->98049*/
/* 98040*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98042*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRIPD), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (fceil:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FRIPD:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 98049*/      0, /*End of Scope*/
/* 98050*/    /*SwitchType*/ 17, MVT::f128,// ->98069
/* 98052*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98054*/      OPC_EmitInteger, MVT::i32, 1, 
/* 98057*/      OPC_EmitInteger, MVT::i32, 2, 
/* 98060*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRQPI), 0,
                    MVT::f128, 3/*#Ops*/, 1, 0, 2, 
                // Src: (fceil:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSRQPI:{ *:[f128] } 1:{ *:[i32] }, ?:{ *:[f128] }:$vB, 2:{ *:[i32] })
/* 98069*/    /*SwitchType*/ 9, MVT::f32,// ->98080
/* 98071*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98073*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FRIPS), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (fceil:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                // Dst: (FRIPS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 98080*/    /*SwitchType*/ 9, MVT::v2f64,// ->98091
/* 98082*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 98084*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRDPIP), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (fceil:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVRDPIP:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 98091*/    /*SwitchType*/ 32, MVT::v4f32,// ->98125
/* 98093*/      OPC_Scope, 9, /*->98104*/ // 3 children in Scope
/* 98095*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 98097*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSPIP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fceil:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVRSPIP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 98104*/      /*Scope*/ 9, /*->98114*/
/* 98105*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 98107*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIP), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fceil:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA) - Complexity = 3
                  // Dst: (VRFIP:{ *:[v4f32] } ?:{ *:[v4f32] }:$vA)
/* 98114*/      /*Scope*/ 9, /*->98124*/
/* 98115*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 98117*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIPs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (fceil:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFRIPs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 98124*/      0, /*End of Scope*/
/* 98125*/    /*SwitchType*/ 9, MVT::v4f64,// ->98136
/* 98127*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 98129*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIP), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (fceil:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFRIP:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 98136*/    0, // EndSwitchType
/* 98137*/  /*SwitchOpcode*/ 113, TARGET_VAL(ISD::FTRUNC),// ->98253
/* 98140*/    OPC_RecordChild0, // #0 = $XB
/* 98141*/    OPC_SwitchType /*6 cases */, 22, MVT::f64,// ->98166
/* 98144*/      OPC_Scope, 9, /*->98155*/ // 2 children in Scope
/* 98146*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 98148*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRDPIZ), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (ftrunc:{ *:[f64] } f64:{ *:[f64] }:$XB) - Complexity = 403
                  // Dst: (XSRDPIZ:{ *:[f64] } f64:{ *:[f64] }:$XB)
/* 98155*/      /*Scope*/ 9, /*->98165*/
/* 98156*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98158*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::FRIZD), 0,
                      MVT::f64, 1/*#Ops*/, 0, 
                  // Src: (ftrunc:{ *:[f64] } f64:{ *:[f64] }:$frB) - Complexity = 3
                  // Dst: (FRIZD:{ *:[f64] } f64:{ *:[f64] }:$frB)
/* 98165*/      0, /*End of Scope*/
/* 98166*/    /*SwitchType*/ 17, MVT::f128,// ->98185
/* 98168*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98170*/      OPC_EmitInteger, MVT::i32, 1, 
/* 98173*/      OPC_EmitInteger, MVT::i32, 1, 
/* 98176*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRQPI), 0,
                    MVT::f128, 3/*#Ops*/, 1, 0, 2, 
                // Src: (ftrunc:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
                // Dst: (XSRQPI:{ *:[f128] } 1:{ *:[i32] }, ?:{ *:[f128] }:$vB, 1:{ *:[i32] })
/* 98185*/    /*SwitchType*/ 9, MVT::f32,// ->98196
/* 98187*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98189*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FRIZS), 0,
                    MVT::f32, 1/*#Ops*/, 0, 
                // Src: (ftrunc:{ *:[f32] } f32:{ *:[f32] }:$frB) - Complexity = 3
                // Dst: (FRIZS:{ *:[f32] } f32:{ *:[f32] }:$frB)
/* 98196*/    /*SwitchType*/ 9, MVT::v2f64,// ->98207
/* 98198*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 98200*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRDPIZ), 0,
                    MVT::v2f64, 1/*#Ops*/, 0, 
                // Src: (ftrunc:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB) - Complexity = 403
                // Dst: (XVRDPIZ:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XB)
/* 98207*/    /*SwitchType*/ 32, MVT::v4f32,// ->98241
/* 98209*/      OPC_Scope, 9, /*->98220*/ // 3 children in Scope
/* 98211*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 98213*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVRSPIZ), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (ftrunc:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB) - Complexity = 403
                  // Dst: (XVRSPIZ:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XB)
/* 98220*/      /*Scope*/ 9, /*->98230*/
/* 98221*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/* 98223*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VRFIZ), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (ftrunc:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA) - Complexity = 3
                  // Dst: (VRFIZ:{ *:[v4f32] } ?:{ *:[v4f32] }:$vA)
/* 98230*/      /*Scope*/ 9, /*->98240*/
/* 98231*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 98233*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIZs), 0,
                      MVT::v4f32, 1/*#Ops*/, 0, 
                  // Src: (ftrunc:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFRIZs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRB)
/* 98240*/      0, /*End of Scope*/
/* 98241*/    /*SwitchType*/ 9, MVT::v4f64,// ->98252
/* 98243*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 98245*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFRIZ), 0,
                    MVT::v4f64, 1/*#Ops*/, 0, 
                // Src: (ftrunc:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                // Dst: (QVFRIZ:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRB)
/* 98252*/    0, // EndSwitchType
/* 98253*/  /*SwitchOpcode*/ 114, TARGET_VAL(ISD::FP_EXTEND),// ->98370
/* 98256*/    OPC_RecordChild0, // #0 = $src
/* 98257*/    OPC_SwitchType /*3 cases */, 55, MVT::f64,// ->98315
/* 98260*/      OPC_Scope, 13, /*->98275*/ // 3 children in Scope
/* 98262*/        OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/* 98264*/        OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 98267*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fpextend:{ *:[f64] } f32:{ *:[f32] }:$src) - Complexity = 403
                  // Dst: (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$src, VSFRC:{ *:[i32] })
/* 98275*/      /*Scope*/ 13, /*->98289*/
/* 98276*/        OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98278*/        OPC_EmitInteger, MVT::i32, PPC::F8RCRegClassID,
/* 98281*/        OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1, 
                  // Src: (fpextend:{ *:[f64] } f32:{ *:[f32] }:$src) - Complexity = 3
                  // Dst: (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$src, F8RC:{ *:[i32] })
/* 98289*/      /*Scope*/ 24, /*->98314*/
/* 98290*/        OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 98292*/        OPC_Scope, 7, /*->98301*/ // 2 children in Scope
/* 98294*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::EFDCFS), 0,
                        MVT::f64, 1/*#Ops*/, 0, 
                    // Src: (fpextend:{ *:[f64] } f32:{ *:[f32] }:$RB) - Complexity = 3
                    // Dst: (EFDCFS:{ *:[f64] } f32:{ *:[f32] }:$RB)
/* 98301*/        /*Scope*/ 11, /*->98313*/
/* 98302*/          OPC_EmitInteger, MVT::i32, PPC::SPERCRegClassID,
/* 98305*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 0, 1, 
                    // Src: (fpextend:{ *:[f64] } f32:{ *:[f32] }:$src) - Complexity = 3
                    // Dst: (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$src, SPERC:{ *:[i32] })
/* 98313*/        0, /*End of Scope*/
/* 98314*/      0, /*End of Scope*/
/* 98315*/    /*SwitchType*/ 37, MVT::f128,// ->98354
/* 98317*/      OPC_Scope, 11, /*->98330*/ // 2 children in Scope
/* 98319*/        OPC_CheckChild0Type, MVT::f64,
/* 98321*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98323*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPQP), 0,
                      MVT::f128, 1/*#Ops*/, 0, 
                  // Src: (fpextend:{ *:[f128] } f64:{ *:[f64] }:$vB) - Complexity = 403
                  // Dst: (XSCVDPQP:{ *:[f128] } f64:{ *:[f64] }:$vB)
/* 98330*/      /*Scope*/ 22, /*->98353*/
/* 98331*/        OPC_CheckChild0Type, MVT::f32,
/* 98333*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98335*/        OPC_EmitInteger, MVT::i32, PPC::VFRCRegClassID,
/* 98338*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::f64, 2/*#Ops*/, 0, 1,  // Results = #2
/* 98346*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPQP), 0,
                      MVT::f128, 1/*#Ops*/, 2, 
                  // Src: (fpextend:{ *:[f128] } f32:{ *:[f32] }:$src) - Complexity = 403
                  // Dst: (XSCVDPQP:{ *:[f128] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$src, VFRC:{ *:[i32] }))
/* 98353*/      0, /*End of Scope*/
/* 98354*/    /*SwitchType*/ 13, MVT::v4f64,// ->98369
/* 98356*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/* 98358*/      OPC_EmitInteger, MVT::i32, PPC::QFRCRegClassID,
/* 98361*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 1, 
                // Src: (fpextend:{ *:[v4f64] } v4f32:{ *:[v4f32] }:$src) - Complexity = 3
                // Dst: (COPY_TO_REGCLASS:{ *:[v4f64] } ?:{ *:[v4f32] }:$src, QFRC:{ *:[i32] })
/* 98369*/    0, // EndSwitchType
/* 98370*/  /*SwitchOpcode*/ 29, TARGET_VAL(PPCISD::MTVSRA),// ->98402
/* 98373*/    OPC_RecordChild0, // #0 = $rA
/* 98374*/    OPC_CheckType, MVT::f64,
/* 98376*/    OPC_Scope, 11, /*->98389*/ // 2 children in Scope
/* 98378*/      OPC_CheckChild0Type, MVT::i64,
/* 98380*/      OPC_CheckPatternPredicate, 36, // (PPCSubTarget->hasDirectMove())
/* 98382*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRD), 0,
                    MVT::f64, 1/*#Ops*/, 0, 
                // Src: (PPCmtvsra:{ *:[f64] } i64:{ *:[i64] }:$rA) - Complexity = 403
                // Dst: (MTVSRD:{ *:[f64] } i64:{ *:[i64] }:$rA)
/* 98389*/    /*Scope*/ 11, /*->98401*/
/* 98390*/      OPC_CheckChild0Type, MVT::i32,
/* 98392*/      OPC_CheckPatternPredicate, 36, // (PPCSubTarget->hasDirectMove())
/* 98394*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRWA), 0,
                    MVT::f64, 1/*#Ops*/, 0, 
                // Src: (PPCmtvsra:{ *:[f64] } i32:{ *:[i32] }:$rA) - Complexity = 403
                // Dst: (MTVSRWA:{ *:[f64] } i32:{ *:[i32] }:$rA)
/* 98401*/    0, /*End of Scope*/
/* 98402*/  /*SwitchOpcode*/ 68, TARGET_VAL(PPCISD::MTVSRZ),// ->98473
/* 98405*/    OPC_RecordChild0, // #0 = $rA
/* 98406*/    OPC_CheckChild0Type, MVT::i32,
/* 98408*/    OPC_SwitchType /*3 cases */, 9, MVT::f64,// ->98420
/* 98411*/      OPC_CheckPatternPredicate, 36, // (PPCSubTarget->hasDirectMove())
/* 98413*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRWZ), 0,
                    MVT::f64, 1/*#Ops*/, 0, 
                // Src: (PPCmtvsrz:{ *:[f64] } i32:{ *:[i32] }:$rA) - Complexity = 403
                // Dst: (MTVSRWZ:{ *:[f64] } i32:{ *:[i32] }:$rA)
/* 98420*/    /*SwitchType*/ 24, MVT::v8i16,// ->98446
/* 98422*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98424*/      OPC_EmitInteger, MVT::i64, 1, 
/* 98427*/      OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                    MVT::f64, 1/*#Ops*/, 0,  // Results = #2
/* 98434*/      OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 98437*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                    MVT::v8i16, 3/*#Ops*/, 1, 2, 3, 
                // Src: (PPCmtvsrz:{ *:[v8i16] } i32:{ *:[i32] }:$A) - Complexity = 403
                // Dst: (SUBREG_TO_REG:{ *:[v8i16] } 1:{ *:[i64] }, (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$A), sub_64:{ *:[i32] })
/* 98446*/    /*SwitchType*/ 24, MVT::v16i8,// ->98472
/* 98448*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98450*/      OPC_EmitInteger, MVT::i64, 1, 
/* 98453*/      OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                    MVT::f64, 1/*#Ops*/, 0,  // Results = #2
/* 98460*/      OPC_EmitInteger, MVT::i32, PPC::sub_64,
/* 98463*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                    MVT::v16i8, 3/*#Ops*/, 1, 2, 3, 
                // Src: (PPCmtvsrz:{ *:[v16i8] } i32:{ *:[i32] }:$A) - Complexity = 403
                // Dst: (SUBREG_TO_REG:{ *:[v16i8] } 1:{ *:[i64] }, (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$A), sub_64:{ *:[i32] })
/* 98472*/    0, // EndSwitchType
/* 98473*/  /*SwitchOpcode*/ 20, TARGET_VAL(ISD::FRINT),// ->98496
/* 98476*/    OPC_RecordChild0, // #0 = $vB
/* 98477*/    OPC_CheckType, MVT::f128,
/* 98479*/    OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98481*/    OPC_EmitInteger, MVT::i32, 0, 
/* 98484*/    OPC_EmitInteger, MVT::i32, 3, 
/* 98487*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::XSRQPIX), 0,
                  MVT::f128, 3/*#Ops*/, 1, 0, 2, 
              // Src: (frint:{ *:[f128] } f128:{ *:[f128] }:$vB) - Complexity = 403
              // Dst: (XSRQPIX:{ *:[f128] } 0:{ *:[i32] }, ?:{ *:[f128] }:$vB, 3:{ *:[i32] })
/* 98496*/  /*SwitchOpcode*/ 61, TARGET_VAL(PPCISD::XSMAXCDP),// ->98560
/* 98499*/    OPC_RecordChild0, // #0 = $XA
/* 98500*/    OPC_RecordChild1, // #1 = $XB
/* 98501*/    OPC_SwitchType /*2 cases */, 10, MVT::f64,// ->98514
/* 98504*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98506*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMAXCDP), 0,
                    MVT::f64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCxsmaxc:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB) - Complexity = 403
                // Dst: (XSMAXCDP:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 98514*/    /*SwitchType*/ 43, MVT::f32,// ->98559
/* 98516*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98518*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 98521*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 98529*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 98532*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 98540*/      OPC_EmitNode1, TARGET_VAL(PPC::XSMAXCDP), 0,
                    MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 98548*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 98551*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f32, 2/*#Ops*/, 6, 7, 
                // Src: (PPCxsmaxc:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB) - Complexity = 403
                // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMAXCDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$XA, VSSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$XB, VSSRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 98559*/    0, // EndSwitchType
/* 98560*/  /*SwitchOpcode*/ 61, TARGET_VAL(PPCISD::XSMINCDP),// ->98624
/* 98563*/    OPC_RecordChild0, // #0 = $XA
/* 98564*/    OPC_RecordChild1, // #1 = $XB
/* 98565*/    OPC_SwitchType /*2 cases */, 10, MVT::f64,// ->98578
/* 98568*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98570*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XSMINCDP), 0,
                    MVT::f64, 2/*#Ops*/, 0, 1, 
                // Src: (PPCxsminc:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB) - Complexity = 403
                // Dst: (XSMINCDP:{ *:[f64] } f64:{ *:[f64] }:$XA, f64:{ *:[f64] }:$XB)
/* 98578*/    /*SwitchType*/ 43, MVT::f32,// ->98623
/* 98580*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98582*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 98585*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 0, 2,  // Results = #3
/* 98593*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 98596*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f64, 2/*#Ops*/, 1, 4,  // Results = #5
/* 98604*/      OPC_EmitNode1, TARGET_VAL(PPC::XSMINCDP), 0,
                    MVT::f64, 2/*#Ops*/, 3, 5,  // Results = #6
/* 98612*/      OPC_EmitInteger, MVT::i32, PPC::VSSRCRegClassID,
/* 98615*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f32, 2/*#Ops*/, 6, 7, 
                // Src: (PPCxsminc:{ *:[f32] } f32:{ *:[f32] }:$XA, f32:{ *:[f32] }:$XB) - Complexity = 403
                // Dst: (COPY_TO_REGCLASS:{ *:[f32] } (XSMINCDP:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$XA, VSSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f64] } ?:{ *:[f32] }:$XB, VSSRC:{ *:[i32] })), VSSRC:{ *:[i32] })
/* 98623*/    0, // EndSwitchType
/* 98624*/  /*SwitchOpcode*/ 52, TARGET_VAL(PPCISD::BUILD_FP128),// ->98679
/* 98627*/    OPC_RecordChild0, // #0 = $rB
/* 98628*/    OPC_CheckChild0Type, MVT::i64,
/* 98630*/    OPC_RecordChild1, // #1 = $rA
/* 98631*/    OPC_CheckType, MVT::f128,
/* 98633*/    OPC_Scope, 21, /*->98656*/ // 2 children in Scope
/* 98635*/      OPC_CheckPatternPredicate, 42, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian()) && (PPCSubTarget->isISA3_0())
/* 98637*/      OPC_EmitNode1, TARGET_VAL(PPC::MTVSRDD), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/* 98645*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 98648*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 2, 3, 
                // Src: (PPCbuild_fp128:{ *:[f128] } i64:{ *:[i64] }:$rB, i64:{ *:[i64] }:$rA) - Complexity = 403
                // Dst: (COPY_TO_REGCLASS:{ *:[f128] } (MTVSRDD:{ *:[v4i32] } ?:{ *:[i64] }:$rB, ?:{ *:[i64] }:$rA), VRRC:{ *:[i32] })
/* 98656*/    /*Scope*/ 21, /*->98678*/
/* 98657*/      OPC_CheckPatternPredicate, 43, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isISA3_0()) && (PPCSubTarget->isLittleEndian())
/* 98659*/      OPC_EmitNode1, TARGET_VAL(PPC::MTVSRDD), 0,
                    MVT::v4i32, 2/*#Ops*/, 1, 0,  // Results = #2
/* 98667*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/* 98670*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 2, 3, 
                // Src: (PPCbuild_fp128:{ *:[f128] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 403
                // Dst: (COPY_TO_REGCLASS:{ *:[f128] } (MTVSRDD:{ *:[v4i32] } ?:{ *:[i64] }:$rB, ?:{ *:[i64] }:$rA), VRRC:{ *:[i32] })
/* 98678*/    0, /*End of Scope*/
/* 98679*/  /*SwitchOpcode*/ 8, TARGET_VAL(PPCISD::MFFS),// ->98690
/* 98682*/    OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98684*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::MFFS), 0,
                  MVT::f64, 0/*#Ops*/, 
              // Src: (PPCmffs:{ *:[f64] }) - Complexity = 3
              // Dst: (MFFS:{ *:[f64] })
/* 98690*/  /*SwitchOpcode*/ 31, TARGET_VAL(PPCISD::FSEL),// ->98724
/* 98693*/    OPC_RecordChild0, // #0 = $FRA
/* 98694*/    OPC_RecordChild1, // #1 = $FRC
/* 98695*/    OPC_RecordChild2, // #2 = $FRB
/* 98696*/    OPC_SwitchType /*2 cases */, 11, MVT::f64,// ->98710
/* 98699*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98701*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FSELD), 0,
                    MVT::f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCfsel:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB) - Complexity = 3
                // Dst: (FSELD:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRC, f64:{ *:[f64] }:$FRB)
/* 98710*/    /*SwitchType*/ 11, MVT::f32,// ->98723
/* 98712*/      OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98714*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::FSELS), 0,
                    MVT::f32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCfsel:{ *:[f32] } f64:{ *:[f64] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB) - Complexity = 3
                // Dst: (FSELS:{ *:[f32] } f64:{ *:[f64] }:$FRA, f32:{ *:[f32] }:$FRC, f32:{ *:[f32] }:$FRB)
/* 98723*/    0, // EndSwitchType
/* 98724*/  /*SwitchOpcode*/ 25, TARGET_VAL(PPCISD::BUILD_SPE64),// ->98752
/* 98727*/    OPC_RecordChild0, // #0 = $rB
/* 98728*/    OPC_RecordChild1, // #1 = $rA
/* 98729*/    OPC_CheckChild1Type, MVT::i32,
/* 98731*/    OPC_CheckPatternPredicate, 12, // (PPCSubTarget->hasSPE())
/* 98733*/    OPC_EmitNode1, TARGET_VAL(PPC::EVMERGELO), 0,
                  MVT::f64, 2/*#Ops*/, 1, 0,  // Results = #2
/* 98741*/    OPC_EmitInteger, MVT::i32, PPC::SPERCRegClassID,
/* 98744*/    OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                  MVT::f64, 2/*#Ops*/, 2, 3, 
              // Src: (PPCbuild_spe64:{ *:[f64] } i32:{ *:[i32] }:$rB, i32:{ *:[i32] }:$rA) - Complexity = 3
              // Dst: (COPY_TO_REGCLASS:{ *:[f64] } (EVMERGELO:{ *:[f64] } ?:{ *:[i32] }:$rA, ?:{ *:[i32] }:$rB), SPERC:{ *:[i32] })
/* 98752*/  /*SwitchOpcode*/ 14, TARGET_VAL(PPCISD::FADDRTZ),// ->98769
/* 98755*/    OPC_RecordChild0, // #0 = $FRA
/* 98756*/    OPC_RecordChild1, // #1 = $FRB
/* 98757*/    OPC_CheckType, MVT::f64,
/* 98759*/    OPC_CheckPatternPredicate, 11, // (PPCSubTarget->hasFPU())
/* 98761*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::FADDrtz), 0,
                  MVT::f64, 2/*#Ops*/, 0, 1, 
              // Src: (PPCfaddrtz:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB) - Complexity = 3
              // Dst: (FADDrtz:{ *:[f64] } f64:{ *:[f64] }:$FRA, f64:{ *:[f64] }:$FRB)
/* 98769*/  /*SwitchOpcode*/ 91|128,31/*4059*/, TARGET_VAL(ISD::BUILD_VECTOR),// ->102832
/* 98773*/    OPC_Scope, 96, /*->98871*/ // 13 children in Scope
/* 98775*/      OPC_RecordChild0, // #0 = $A
/* 98776*/      OPC_MoveChild0,
/* 98777*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/* 98780*/      OPC_CheckPredicate, 35, // Predicate_immNonAllOneAnyExt8
/* 98782*/      OPC_CheckType, MVT::i32,
/* 98784*/      OPC_MoveParent,
/* 98785*/      OPC_CheckChild1Same, 0,
/* 98787*/      OPC_CheckChild2Same, 0,
/* 98789*/      OPC_CheckChild3Same, 0,
/* 98791*/      OPC_MoveChild4,
/* 98792*/      OPC_CheckSame, 0,
/* 98794*/      OPC_MoveParent,
/* 98795*/      OPC_MoveChild5,
/* 98796*/      OPC_CheckSame, 0,
/* 98798*/      OPC_MoveParent,
/* 98799*/      OPC_MoveChild6,
/* 98800*/      OPC_CheckSame, 0,
/* 98802*/      OPC_MoveParent,
/* 98803*/      OPC_MoveChild7,
/* 98804*/      OPC_CheckSame, 0,
/* 98806*/      OPC_MoveParent,
/* 98807*/      OPC_MoveChild, 8,
/* 98809*/      OPC_CheckSame, 0,
/* 98811*/      OPC_MoveParent,
/* 98812*/      OPC_MoveChild, 9,
/* 98814*/      OPC_CheckSame, 0,
/* 98816*/      OPC_MoveParent,
/* 98817*/      OPC_MoveChild, 10,
/* 98819*/      OPC_CheckSame, 0,
/* 98821*/      OPC_MoveParent,
/* 98822*/      OPC_MoveChild, 11,
/* 98824*/      OPC_CheckSame, 0,
/* 98826*/      OPC_MoveParent,
/* 98827*/      OPC_MoveChild, 12,
/* 98829*/      OPC_CheckSame, 0,
/* 98831*/      OPC_MoveParent,
/* 98832*/      OPC_MoveChild, 13,
/* 98834*/      OPC_CheckSame, 0,
/* 98836*/      OPC_MoveParent,
/* 98837*/      OPC_MoveChild, 14,
/* 98839*/      OPC_CheckSame, 0,
/* 98841*/      OPC_MoveParent,
/* 98842*/      OPC_MoveChild, 15,
/* 98844*/      OPC_CheckSame, 0,
/* 98846*/      OPC_MoveParent,
/* 98847*/      OPC_CheckType, MVT::v16i8,
/* 98849*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/* 98851*/      OPC_EmitConvertToTarget, 0,
/* 98853*/      OPC_EmitNode1, TARGET_VAL(PPC::XXSPLTIB), 0,
                    MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/* 98860*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 98863*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v16i8, 2/*#Ops*/, 2, 3, 
                // Src: (build_vector:{ *:[v16i8] } (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A, (imm:{ *:[i32] })<<P:Predicate_immNonAllOneAnyExt8>>:$A) - Complexity = 467
                // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } (XXSPLTIB:{ *:[v4i32] } (imm:{ *:[i32] }):$A), VSRC:{ *:[i32] })
/* 98871*/    /*Scope*/ 51|128,14/*1843*/, /*->100716*/
/* 98873*/      OPC_MoveChild0,
/* 98874*/      OPC_SwitchOpcode /*3 cases */, 21|128,9/*1173*/, TARGET_VAL(PPCISD::MFVSR),// ->100052
/* 98879*/        OPC_MoveChild0,
/* 98880*/        OPC_SwitchOpcode /*4 cases */, 0|128,4/*512*/, TARGET_VAL(PPCISD::FCTIWZ),// ->99397
/* 98885*/          OPC_Scope, 60|128,1/*188*/, /*->99076*/ // 2 children in Scope
/* 98888*/            OPC_MoveChild0,
/* 98889*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 98892*/            OPC_RecordChild0, // #0 = $A
/* 98893*/            OPC_CheckChild0Type, MVT::v2f64,
/* 98895*/            OPC_CheckChild1Integer, 0, 
/* 98897*/            OPC_MoveParent,
/* 98898*/            OPC_CheckType, MVT::f64,
/* 98900*/            OPC_MoveParent,
/* 98901*/            OPC_CheckType, MVT::i32,
/* 98903*/            OPC_MoveParent,
/* 98904*/            OPC_MoveChild1,
/* 98905*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 98908*/            OPC_MoveChild0,
/* 98909*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 98912*/            OPC_MoveChild0,
/* 98913*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 98916*/            OPC_CheckChild0Same, 0,
/* 98918*/            OPC_CheckChild1Integer, 1, 
/* 98920*/            OPC_MoveParent,
/* 98921*/            OPC_CheckType, MVT::f64,
/* 98923*/            OPC_MoveParent,
/* 98924*/            OPC_CheckType, MVT::i32,
/* 98926*/            OPC_MoveParent,
/* 98927*/            OPC_MoveChild2,
/* 98928*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 98931*/            OPC_MoveChild0,
/* 98932*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 98935*/            OPC_MoveChild0,
/* 98936*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 98939*/            OPC_RecordChild0, // #1 = $B
/* 98940*/            OPC_CheckChild0Type, MVT::v2f64,
/* 98942*/            OPC_CheckChild1Integer, 0, 
/* 98944*/            OPC_MoveParent,
/* 98945*/            OPC_CheckType, MVT::f64,
/* 98947*/            OPC_MoveParent,
/* 98948*/            OPC_CheckType, MVT::i32,
/* 98950*/            OPC_MoveParent,
/* 98951*/            OPC_MoveChild3,
/* 98952*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 98955*/            OPC_MoveChild0,
/* 98956*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 98959*/            OPC_MoveChild0,
/* 98960*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 98963*/            OPC_CheckChild0Same, 1,
/* 98965*/            OPC_CheckChild1Integer, 1, 
/* 98967*/            OPC_MoveParent,
/* 98968*/            OPC_CheckType, MVT::f64,
/* 98970*/            OPC_MoveParent,
/* 98971*/            OPC_CheckType, MVT::i32,
/* 98973*/            OPC_MoveParent,
/* 98974*/            OPC_CheckType, MVT::v4i32,
/* 98976*/            OPC_Scope, 48, /*->99026*/ // 2 children in Scope
/* 98978*/              OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 98980*/              OPC_EmitInteger, MVT::i32, 0, 
/* 98983*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 0, 1, 2,  // Results = #3
/* 98992*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 3,  // Results = #4
/* 98999*/              OPC_EmitInteger, MVT::i32, 3, 
/* 99002*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 0, 1, 5,  // Results = #6
/* 99011*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 6,  // Results = #7
/* 99018*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                            MVT::v4i32, 2/*#Ops*/, 4, 7, 
                        // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 1:{ *:[iPTR] })))) - Complexity = 459
                        // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$A, v2f64:{ *:[v2f64] }:$B, 0:{ *:[i32] })), (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$A, v2f64:{ *:[v2f64] }:$B, 3:{ *:[i32] })))
/* 99026*/            /*Scope*/ 48, /*->99075*/
/* 99027*/              OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/* 99029*/              OPC_EmitInteger, MVT::i32, 0, 
/* 99032*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 1, 0, 2,  // Results = #3
/* 99041*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 3,  // Results = #4
/* 99048*/              OPC_EmitInteger, MVT::i32, 3, 
/* 99051*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 1, 0, 5,  // Results = #6
/* 99060*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 6,  // Results = #7
/* 99067*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                            MVT::v4i32, 2/*#Ops*/, 4, 7, 
                        // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 1:{ *:[iPTR] })))) - Complexity = 459
                        // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$B, v2f64:{ *:[v2f64] }:$A, 0:{ *:[i32] })), (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$B, v2f64:{ *:[v2f64] }:$A, 3:{ *:[i32] })))
/* 99075*/            0, /*End of Scope*/
/* 99076*/          /*Scope*/ 62|128,2/*318*/, /*->99396*/
/* 99078*/            OPC_RecordChild0, // #0 = $A
/* 99079*/            OPC_CheckType, MVT::f64,
/* 99081*/            OPC_MoveParent,
/* 99082*/            OPC_CheckType, MVT::i32,
/* 99084*/            OPC_MoveParent,
/* 99085*/            OPC_MoveChild1,
/* 99086*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99089*/            OPC_MoveChild0,
/* 99090*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 99093*/            OPC_CheckType, MVT::f64,
/* 99095*/            OPC_Scope, 71, /*->99168*/ // 2 children in Scope
/* 99097*/              OPC_CheckChild0Same, 0,
/* 99099*/              OPC_MoveParent,
/* 99100*/              OPC_CheckType, MVT::i32,
/* 99102*/              OPC_MoveParent,
/* 99103*/              OPC_MoveChild2,
/* 99104*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99107*/              OPC_MoveChild0,
/* 99108*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 99111*/              OPC_CheckChild0Same, 0,
/* 99113*/              OPC_CheckType, MVT::f64,
/* 99115*/              OPC_MoveParent,
/* 99116*/              OPC_CheckType, MVT::i32,
/* 99118*/              OPC_MoveParent,
/* 99119*/              OPC_MoveChild3,
/* 99120*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99123*/              OPC_MoveChild0,
/* 99124*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 99127*/              OPC_CheckChild0Same, 0,
/* 99129*/              OPC_CheckType, MVT::f64,
/* 99131*/              OPC_MoveParent,
/* 99132*/              OPC_CheckType, MVT::i32,
/* 99134*/              OPC_MoveParent,
/* 99135*/              OPC_CheckType, MVT::v4i32,
/* 99137*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 99139*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXWS), 0,
                            MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 99146*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99149*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 1, 2,  // Results = #3
/* 99157*/              OPC_EmitInteger, MVT::i32, 1, 
/* 99160*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                            MVT::v4i32, 2/*#Ops*/, 3, 4, 
                        // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$A))) - Complexity = 427
                        // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPSXWS:{ *:[f64] } ?:{ *:[f64] }:$A), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/* 99168*/            /*Scope*/ 97|128,1/*225*/, /*->99395*/
/* 99170*/              OPC_RecordChild0, // #1 = $B
/* 99171*/              OPC_MoveParent,
/* 99172*/              OPC_CheckType, MVT::i32,
/* 99174*/              OPC_MoveParent,
/* 99175*/              OPC_MoveChild2,
/* 99176*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99179*/              OPC_MoveChild0,
/* 99180*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 99183*/              OPC_RecordChild0, // #2 = $C
/* 99184*/              OPC_CheckType, MVT::f64,
/* 99186*/              OPC_MoveParent,
/* 99187*/              OPC_CheckType, MVT::i32,
/* 99189*/              OPC_MoveParent,
/* 99190*/              OPC_MoveChild3,
/* 99191*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99194*/              OPC_MoveChild0,
/* 99195*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWZ),
/* 99198*/              OPC_RecordChild0, // #3 = $D
/* 99199*/              OPC_CheckType, MVT::f64,
/* 99201*/              OPC_MoveParent,
/* 99202*/              OPC_CheckType, MVT::i32,
/* 99204*/              OPC_MoveParent,
/* 99205*/              OPC_CheckType, MVT::v4i32,
/* 99207*/              OPC_Scope, 92, /*->99301*/ // 2 children in Scope
/* 99209*/                OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 99211*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99214*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 0, 4,  // Results = #5
/* 99222*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99225*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 2, 6,  // Results = #7
/* 99233*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99236*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 5, 7, 8,  // Results = #9
/* 99245*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 9,  // Results = #10
/* 99252*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99255*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 1, 11,  // Results = #12
/* 99263*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99266*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 3, 13,  // Results = #14
/* 99274*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99277*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 12, 14, 15,  // Results = #16
/* 99286*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 16,  // Results = #17
/* 99293*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                              MVT::v4i32, 2/*#Ops*/, 10, 17, 
                          // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$B)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$C)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$D))) - Complexity = 427
                          // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$A, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$C, VSRC:{ *:[i32] }), 0:{ *:[i32] })), (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$B, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$D, VSRC:{ *:[i32] }), 0:{ *:[i32] })))
/* 99301*/              /*Scope*/ 92, /*->99394*/
/* 99302*/                OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/* 99304*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99307*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 3, 4,  // Results = #5
/* 99315*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99318*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 1, 6,  // Results = #7
/* 99326*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99329*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 5, 7, 8,  // Results = #9
/* 99338*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 9,  // Results = #10
/* 99345*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99348*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 2, 11,  // Results = #12
/* 99356*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99359*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 0, 13,  // Results = #14
/* 99367*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99370*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 12, 14, 15,  // Results = #16
/* 99379*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 16,  // Results = #17
/* 99386*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                              MVT::v4i32, 2/*#Ops*/, 10, 17, 
                          // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$B)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$C)), (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } f64:{ *:[f64] }:$D))) - Complexity = 427
                          // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$D, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$B, VSRC:{ *:[i32] }), 0:{ *:[i32] })), (XVCVDPSXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$C, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$A, VSRC:{ *:[i32] }), 0:{ *:[i32] })))
/* 99394*/              0, /*End of Scope*/
/* 99395*/            0, /*End of Scope*/
/* 99396*/          0, /*End of Scope*/
/* 99397*/        /*SwitchOpcode*/ 0|128,4/*512*/, TARGET_VAL(PPCISD::FCTIWUZ),// ->99913
/* 99401*/          OPC_Scope, 60|128,1/*188*/, /*->99592*/ // 2 children in Scope
/* 99404*/            OPC_MoveChild0,
/* 99405*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 99408*/            OPC_RecordChild0, // #0 = $A
/* 99409*/            OPC_CheckChild0Type, MVT::v2f64,
/* 99411*/            OPC_CheckChild1Integer, 0, 
/* 99413*/            OPC_MoveParent,
/* 99414*/            OPC_CheckType, MVT::f64,
/* 99416*/            OPC_MoveParent,
/* 99417*/            OPC_CheckType, MVT::i32,
/* 99419*/            OPC_MoveParent,
/* 99420*/            OPC_MoveChild1,
/* 99421*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99424*/            OPC_MoveChild0,
/* 99425*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99428*/            OPC_MoveChild0,
/* 99429*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 99432*/            OPC_CheckChild0Same, 0,
/* 99434*/            OPC_CheckChild1Integer, 1, 
/* 99436*/            OPC_MoveParent,
/* 99437*/            OPC_CheckType, MVT::f64,
/* 99439*/            OPC_MoveParent,
/* 99440*/            OPC_CheckType, MVT::i32,
/* 99442*/            OPC_MoveParent,
/* 99443*/            OPC_MoveChild2,
/* 99444*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99447*/            OPC_MoveChild0,
/* 99448*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99451*/            OPC_MoveChild0,
/* 99452*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 99455*/            OPC_RecordChild0, // #1 = $B
/* 99456*/            OPC_CheckChild0Type, MVT::v2f64,
/* 99458*/            OPC_CheckChild1Integer, 0, 
/* 99460*/            OPC_MoveParent,
/* 99461*/            OPC_CheckType, MVT::f64,
/* 99463*/            OPC_MoveParent,
/* 99464*/            OPC_CheckType, MVT::i32,
/* 99466*/            OPC_MoveParent,
/* 99467*/            OPC_MoveChild3,
/* 99468*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99471*/            OPC_MoveChild0,
/* 99472*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99475*/            OPC_MoveChild0,
/* 99476*/            OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/* 99479*/            OPC_CheckChild0Same, 1,
/* 99481*/            OPC_CheckChild1Integer, 1, 
/* 99483*/            OPC_MoveParent,
/* 99484*/            OPC_CheckType, MVT::f64,
/* 99486*/            OPC_MoveParent,
/* 99487*/            OPC_CheckType, MVT::i32,
/* 99489*/            OPC_MoveParent,
/* 99490*/            OPC_CheckType, MVT::v4i32,
/* 99492*/            OPC_Scope, 48, /*->99542*/ // 2 children in Scope
/* 99494*/              OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 99496*/              OPC_EmitInteger, MVT::i32, 0, 
/* 99499*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 0, 1, 2,  // Results = #3
/* 99508*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 3,  // Results = #4
/* 99515*/              OPC_EmitInteger, MVT::i32, 3, 
/* 99518*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 0, 1, 5,  // Results = #6
/* 99527*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 6,  // Results = #7
/* 99534*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                            MVT::v4i32, 2/*#Ops*/, 4, 7, 
                        // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 1:{ *:[iPTR] })))) - Complexity = 459
                        // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$A, v2f64:{ *:[v2f64] }:$B, 0:{ *:[i32] })), (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$A, v2f64:{ *:[v2f64] }:$B, 3:{ *:[i32] })))
/* 99542*/            /*Scope*/ 48, /*->99591*/
/* 99543*/              OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/* 99545*/              OPC_EmitInteger, MVT::i32, 0, 
/* 99548*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 1, 0, 2,  // Results = #3
/* 99557*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 3,  // Results = #4
/* 99564*/              OPC_EmitInteger, MVT::i32, 3, 
/* 99567*/              OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                            MVT::v2f64, 3/*#Ops*/, 1, 0, 5,  // Results = #6
/* 99576*/              OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                            MVT::v4i32, 1/*#Ops*/, 6,  // Results = #7
/* 99583*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                            MVT::v4i32, 2/*#Ops*/, 4, 7, 
                        // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 0:{ *:[iPTR] }))), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 1:{ *:[iPTR] })))) - Complexity = 459
                        // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$B, v2f64:{ *:[v2f64] }:$A, 0:{ *:[i32] })), (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$B, v2f64:{ *:[v2f64] }:$A, 3:{ *:[i32] })))
/* 99591*/            0, /*End of Scope*/
/* 99592*/          /*Scope*/ 62|128,2/*318*/, /*->99912*/
/* 99594*/            OPC_RecordChild0, // #0 = $A
/* 99595*/            OPC_CheckType, MVT::f64,
/* 99597*/            OPC_MoveParent,
/* 99598*/            OPC_CheckType, MVT::i32,
/* 99600*/            OPC_MoveParent,
/* 99601*/            OPC_MoveChild1,
/* 99602*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99605*/            OPC_MoveChild0,
/* 99606*/            OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99609*/            OPC_CheckType, MVT::f64,
/* 99611*/            OPC_Scope, 71, /*->99684*/ // 2 children in Scope
/* 99613*/              OPC_CheckChild0Same, 0,
/* 99615*/              OPC_MoveParent,
/* 99616*/              OPC_CheckType, MVT::i32,
/* 99618*/              OPC_MoveParent,
/* 99619*/              OPC_MoveChild2,
/* 99620*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99623*/              OPC_MoveChild0,
/* 99624*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99627*/              OPC_CheckChild0Same, 0,
/* 99629*/              OPC_CheckType, MVT::f64,
/* 99631*/              OPC_MoveParent,
/* 99632*/              OPC_CheckType, MVT::i32,
/* 99634*/              OPC_MoveParent,
/* 99635*/              OPC_MoveChild3,
/* 99636*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99639*/              OPC_MoveChild0,
/* 99640*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99643*/              OPC_CheckChild0Same, 0,
/* 99645*/              OPC_CheckType, MVT::f64,
/* 99647*/              OPC_MoveParent,
/* 99648*/              OPC_CheckType, MVT::i32,
/* 99650*/              OPC_MoveParent,
/* 99651*/              OPC_CheckType, MVT::v4i32,
/* 99653*/              OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 99655*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXWS), 0,
                            MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/* 99662*/              OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99665*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::v4i32, 2/*#Ops*/, 1, 2,  // Results = #3
/* 99673*/              OPC_EmitInteger, MVT::i32, 1, 
/* 99676*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                            MVT::v4i32, 2/*#Ops*/, 3, 4, 
                        // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$A))) - Complexity = 427
                        // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPUXWS:{ *:[f64] } ?:{ *:[f64] }:$A), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/* 99684*/            /*Scope*/ 97|128,1/*225*/, /*->99911*/
/* 99686*/              OPC_RecordChild0, // #1 = $B
/* 99687*/              OPC_MoveParent,
/* 99688*/              OPC_CheckType, MVT::i32,
/* 99690*/              OPC_MoveParent,
/* 99691*/              OPC_MoveChild2,
/* 99692*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99695*/              OPC_MoveChild0,
/* 99696*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99699*/              OPC_RecordChild0, // #2 = $C
/* 99700*/              OPC_CheckType, MVT::f64,
/* 99702*/              OPC_MoveParent,
/* 99703*/              OPC_CheckType, MVT::i32,
/* 99705*/              OPC_MoveParent,
/* 99706*/              OPC_MoveChild3,
/* 99707*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99710*/              OPC_MoveChild0,
/* 99711*/              OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIWUZ),
/* 99714*/              OPC_RecordChild0, // #3 = $D
/* 99715*/              OPC_CheckType, MVT::f64,
/* 99717*/              OPC_MoveParent,
/* 99718*/              OPC_CheckType, MVT::i32,
/* 99720*/              OPC_MoveParent,
/* 99721*/              OPC_CheckType, MVT::v4i32,
/* 99723*/              OPC_Scope, 92, /*->99817*/ // 2 children in Scope
/* 99725*/                OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/* 99727*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99730*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 0, 4,  // Results = #5
/* 99738*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99741*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 2, 6,  // Results = #7
/* 99749*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99752*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 5, 7, 8,  // Results = #9
/* 99761*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 9,  // Results = #10
/* 99768*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99771*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 1, 11,  // Results = #12
/* 99779*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99782*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 3, 13,  // Results = #14
/* 99790*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99793*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 12, 14, 15,  // Results = #16
/* 99802*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 16,  // Results = #17
/* 99809*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                              MVT::v4i32, 2/*#Ops*/, 10, 17, 
                          // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$B)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$C)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$D))) - Complexity = 427
                          // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$A, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$C, VSRC:{ *:[i32] }), 0:{ *:[i32] })), (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$B, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$D, VSRC:{ *:[i32] }), 0:{ *:[i32] })))
/* 99817*/              /*Scope*/ 92, /*->99910*/
/* 99818*/                OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/* 99820*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99823*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 3, 4,  // Results = #5
/* 99831*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99834*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 1, 6,  // Results = #7
/* 99842*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99845*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 5, 7, 8,  // Results = #9
/* 99854*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 9,  // Results = #10
/* 99861*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99864*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 2, 11,  // Results = #12
/* 99872*/                OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/* 99875*/                OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                              MVT::v4i32, 2/*#Ops*/, 0, 13,  // Results = #14
/* 99883*/                OPC_EmitInteger, MVT::i32, 0, 
/* 99886*/                OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                              MVT::v2f64, 3/*#Ops*/, 12, 14, 15,  // Results = #16
/* 99895*/                OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPUXWS), 0,
                              MVT::v4i32, 1/*#Ops*/, 16,  // Results = #17
/* 99902*/                OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                              MVT::v4i32, 2/*#Ops*/, 10, 17, 
                          // Src: (build_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$B)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$C)), (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } f64:{ *:[f64] }:$D))) - Complexity = 427
                          // Dst: (VMRGEW:{ *:[v4i32] } (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$D, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$B, VSRC:{ *:[i32] }), 0:{ *:[i32] })), (XVCVDPUXWS:{ *:[v4i32] } (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$C, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } f64:{ *:[f64] }:$A, VSRC:{ *:[i32] }), 0:{ *:[i32] })))
/* 99910*/              0, /*End of Scope*/
/* 99911*/            0, /*End of Scope*/
/* 99912*/          0, /*End of Scope*/
/* 99913*/        /*SwitchOpcode*/ 66, TARGET_VAL(PPCISD::FCTIDZ),// ->99982
/* 99916*/          OPC_MoveChild0,
/* 99917*/          OPC_CheckOpcode, TARGET_VAL(ISD::FP_EXTEND),
/* 99920*/          OPC_RecordChild0, // #0 = $A
/* 99921*/          OPC_MoveParent,
/* 99922*/          OPC_CheckType, MVT::f64,
/* 99924*/          OPC_MoveParent,
/* 99925*/          OPC_CheckType, MVT::i64,
/* 99927*/          OPC_MoveParent,
/* 99928*/          OPC_MoveChild1,
/* 99929*/          OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/* 99932*/          OPC_MoveChild0,
/* 99933*/          OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIDZ),
/* 99936*/          OPC_MoveChild0,
/* 99937*/          OPC_CheckOpcode, TARGET_VAL(ISD::FP_EXTEND),
/* 99940*/          OPC_CheckChild0Same, 0,
/* 99942*/          OPC_MoveParent,
/* 99943*/          OPC_CheckType, MVT::f64,
/* 99945*/          OPC_MoveParent,
/* 99946*/          OPC_CheckType, MVT::i64,
/* 99948*/          OPC_MoveParent,
/* 99949*/          OPC_CheckType, MVT::v2i64,
/* 99951*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/* 99953*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDSs), 0,
                        MVT::f32, 1/*#Ops*/, 0,  // Results = #1
/* 99960*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/* 99963*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/* 99971*/          OPC_EmitInteger, MVT::i32, 0, 
/* 99974*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0,
                        MVT::v2i64, 2/*#Ops*/, 3, 4, 
                    // Src: (build_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctidz:{ *:[f64] } (fpextend:{ *:[f64] } f32:{ *:[f32] }:$A))), (PPCmfvsr:{ *:[i64] } (PPCfctidz:{ *:[f64] } (fpextend:{ *:[f64] } f32:{ *:[f32] }:$A)))) - Complexity = 421
                    // Dst: (XXPERMDIs:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f64] } (XSCVDPSXDSs:{ *:[f32] } ?:{ *:[f32] }:$A), VSFRC:{ *:[i32] }), 0:{ *:[i32] })
/* 99982*/        /*SwitchOpcode*/ 66, TARGET_VAL(PPCISD::FCTIDUZ),// ->100051
/* 99985*/          OPC_MoveChild0,
/* 99986*/          OPC_CheckOpcode, TARGET_VAL(ISD::FP_EXTEND),
/* 99989*/          OPC_RecordChild0, // #0 = $A
/* 99990*/          OPC_MoveParent,
/* 99991*/          OPC_CheckType, MVT::f64,
/* 99993*/          OPC_MoveParent,
/* 99994*/          OPC_CheckType, MVT::i64,
/* 99996*/          OPC_MoveParent,
/* 99997*/          OPC_MoveChild1,
/* 99998*/          OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/*100001*/          OPC_MoveChild0,
/*100002*/          OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIDUZ),
/*100005*/          OPC_MoveChild0,
/*100006*/          OPC_CheckOpcode, TARGET_VAL(ISD::FP_EXTEND),
/*100009*/          OPC_CheckChild0Same, 0,
/*100011*/          OPC_MoveParent,
/*100012*/          OPC_CheckType, MVT::f64,
/*100014*/          OPC_MoveParent,
/*100015*/          OPC_CheckType, MVT::i64,
/*100017*/          OPC_MoveParent,
/*100018*/          OPC_CheckType, MVT::v2i64,
/*100020*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*100022*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDSs), 0,
                        MVT::f32, 1/*#Ops*/, 0,  // Results = #1
/*100029*/          OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/*100032*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 1, 2,  // Results = #3
/*100040*/          OPC_EmitInteger, MVT::i32, 0, 
/*100043*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0,
                        MVT::v2i64, 2/*#Ops*/, 3, 4, 
                    // Src: (build_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctiduz:{ *:[f64] } (fpextend:{ *:[f64] } f32:{ *:[f32] }:$A))), (PPCmfvsr:{ *:[i64] } (PPCfctiduz:{ *:[f64] } (fpextend:{ *:[f64] } f32:{ *:[f32] }:$A)))) - Complexity = 421
                    // Dst: (XXPERMDIs:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f64] } (XSCVDPUXDSs:{ *:[f32] } ?:{ *:[f32] }:$A), VSFRC:{ *:[i32] }), 0:{ *:[i32] })
/*100051*/        0, // EndSwitchOpcode
/*100052*/      /*SwitchOpcode*/ 61|128,4/*573*/, TARGET_VAL(ISD::SIGN_EXTEND_INREG),// ->100629
/*100056*/        OPC_MoveChild0,
/*100057*/        OPC_SwitchOpcode /*2 cases */, 87|128,2/*343*/, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),// ->100405
/*100062*/          OPC_RecordChild0, // #0 = $A
/*100063*/          OPC_Scope, 40|128,1/*168*/, /*->100234*/ // 2 children in Scope
/*100066*/            OPC_CheckChild0Type, MVT::v8i16,
/*100068*/            OPC_Scope, 81, /*->100151*/ // 2 children in Scope
/*100070*/              OPC_CheckChild1Integer, 0, 
/*100072*/              OPC_MoveParent,
/*100073*/              OPC_MoveChild1,
/*100074*/              OPC_CheckValueType, MVT::i16,
/*100076*/              OPC_MoveParent,
/*100077*/              OPC_CheckType, MVT::i32,
/*100079*/              OPC_MoveParent,
/*100080*/              OPC_MoveChild1,
/*100081*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100084*/              OPC_MoveChild0,
/*100085*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100088*/              OPC_CheckChild0Same, 0,
/*100090*/              OPC_CheckChild1Integer, 2, 
/*100092*/              OPC_MoveParent,
/*100093*/              OPC_MoveChild1,
/*100094*/              OPC_CheckValueType, MVT::i16,
/*100096*/              OPC_MoveParent,
/*100097*/              OPC_CheckType, MVT::i32,
/*100099*/              OPC_MoveParent,
/*100100*/              OPC_MoveChild2,
/*100101*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100104*/              OPC_MoveChild0,
/*100105*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100108*/              OPC_CheckChild0Same, 0,
/*100110*/              OPC_CheckChild1Integer, 4, 
/*100112*/              OPC_MoveParent,
/*100113*/              OPC_MoveChild1,
/*100114*/              OPC_CheckValueType, MVT::i16,
/*100116*/              OPC_MoveParent,
/*100117*/              OPC_CheckType, MVT::i32,
/*100119*/              OPC_MoveParent,
/*100120*/              OPC_MoveChild3,
/*100121*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100124*/              OPC_MoveChild0,
/*100125*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100128*/              OPC_CheckChild0Same, 0,
/*100130*/              OPC_CheckChild1Integer, 6, 
/*100132*/              OPC_MoveParent,
/*100133*/              OPC_MoveChild1,
/*100134*/              OPC_CheckValueType, MVT::i16,
/*100136*/              OPC_MoveParent,
/*100137*/              OPC_CheckType, MVT::i32,
/*100139*/              OPC_MoveParent,
/*100140*/              OPC_CheckType, MVT::v4i32,
/*100142*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*100144*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSH2W), 0,
                            MVT::v4i32, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v4i32] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 0:{ *:[iPTR] }), i16:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 2:{ *:[iPTR] }), i16:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 4:{ *:[iPTR] }), i16:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 6:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 447
                        // Dst: (VEXTSH2W:{ *:[v4i32] } ?:{ *:[v8i16] }:$A)
/*100151*/            /*Scope*/ 81, /*->100233*/
/*100152*/              OPC_CheckChild1Integer, 1, 
/*100154*/              OPC_MoveParent,
/*100155*/              OPC_MoveChild1,
/*100156*/              OPC_CheckValueType, MVT::i16,
/*100158*/              OPC_MoveParent,
/*100159*/              OPC_CheckType, MVT::i32,
/*100161*/              OPC_MoveParent,
/*100162*/              OPC_MoveChild1,
/*100163*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100166*/              OPC_MoveChild0,
/*100167*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100170*/              OPC_CheckChild0Same, 0,
/*100172*/              OPC_CheckChild1Integer, 3, 
/*100174*/              OPC_MoveParent,
/*100175*/              OPC_MoveChild1,
/*100176*/              OPC_CheckValueType, MVT::i16,
/*100178*/              OPC_MoveParent,
/*100179*/              OPC_CheckType, MVT::i32,
/*100181*/              OPC_MoveParent,
/*100182*/              OPC_MoveChild2,
/*100183*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100186*/              OPC_MoveChild0,
/*100187*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100190*/              OPC_CheckChild0Same, 0,
/*100192*/              OPC_CheckChild1Integer, 5, 
/*100194*/              OPC_MoveParent,
/*100195*/              OPC_MoveChild1,
/*100196*/              OPC_CheckValueType, MVT::i16,
/*100198*/              OPC_MoveParent,
/*100199*/              OPC_CheckType, MVT::i32,
/*100201*/              OPC_MoveParent,
/*100202*/              OPC_MoveChild3,
/*100203*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100206*/              OPC_MoveChild0,
/*100207*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100210*/              OPC_CheckChild0Same, 0,
/*100212*/              OPC_CheckChild1Integer, 7, 
/*100214*/              OPC_MoveParent,
/*100215*/              OPC_MoveChild1,
/*100216*/              OPC_CheckValueType, MVT::i16,
/*100218*/              OPC_MoveParent,
/*100219*/              OPC_CheckType, MVT::i32,
/*100221*/              OPC_MoveParent,
/*100222*/              OPC_CheckType, MVT::v4i32,
/*100224*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*100226*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSH2W), 0,
                            MVT::v4i32, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v4i32] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 1:{ *:[iPTR] }), i16:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 3:{ *:[iPTR] }), i16:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 5:{ *:[iPTR] }), i16:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 7:{ *:[iPTR] }), i16:{ *:[Other] })) - Complexity = 447
                        // Dst: (VEXTSH2W:{ *:[v4i32] } ?:{ *:[v8i16] }:$A)
/*100233*/            0, /*End of Scope*/
/*100234*/          /*Scope*/ 40|128,1/*168*/, /*->100404*/
/*100236*/            OPC_CheckChild0Type, MVT::v16i8,
/*100238*/            OPC_Scope, 81, /*->100321*/ // 2 children in Scope
/*100240*/              OPC_CheckChild1Integer, 0, 
/*100242*/              OPC_MoveParent,
/*100243*/              OPC_MoveChild1,
/*100244*/              OPC_CheckValueType, MVT::i8,
/*100246*/              OPC_MoveParent,
/*100247*/              OPC_CheckType, MVT::i32,
/*100249*/              OPC_MoveParent,
/*100250*/              OPC_MoveChild1,
/*100251*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100254*/              OPC_MoveChild0,
/*100255*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100258*/              OPC_CheckChild0Same, 0,
/*100260*/              OPC_CheckChild1Integer, 4, 
/*100262*/              OPC_MoveParent,
/*100263*/              OPC_MoveChild1,
/*100264*/              OPC_CheckValueType, MVT::i8,
/*100266*/              OPC_MoveParent,
/*100267*/              OPC_CheckType, MVT::i32,
/*100269*/              OPC_MoveParent,
/*100270*/              OPC_MoveChild2,
/*100271*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100274*/              OPC_MoveChild0,
/*100275*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100278*/              OPC_CheckChild0Same, 0,
/*100280*/              OPC_CheckChild1Integer, 8, 
/*100282*/              OPC_MoveParent,
/*100283*/              OPC_MoveChild1,
/*100284*/              OPC_CheckValueType, MVT::i8,
/*100286*/              OPC_MoveParent,
/*100287*/              OPC_CheckType, MVT::i32,
/*100289*/              OPC_MoveParent,
/*100290*/              OPC_MoveChild3,
/*100291*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100294*/              OPC_MoveChild0,
/*100295*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100298*/              OPC_CheckChild0Same, 0,
/*100300*/              OPC_CheckChild1Integer, 12, 
/*100302*/              OPC_MoveParent,
/*100303*/              OPC_MoveChild1,
/*100304*/              OPC_CheckValueType, MVT::i8,
/*100306*/              OPC_MoveParent,
/*100307*/              OPC_CheckType, MVT::i32,
/*100309*/              OPC_MoveParent,
/*100310*/              OPC_CheckType, MVT::v4i32,
/*100312*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*100314*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSB2W), 0,
                            MVT::v4i32, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v4i32] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 0:{ *:[iPTR] }), i8:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 4:{ *:[iPTR] }), i8:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 8:{ *:[iPTR] }), i8:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 12:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 447
                        // Dst: (VEXTSB2W:{ *:[v4i32] } ?:{ *:[v16i8] }:$A)
/*100321*/            /*Scope*/ 81, /*->100403*/
/*100322*/              OPC_CheckChild1Integer, 3, 
/*100324*/              OPC_MoveParent,
/*100325*/              OPC_MoveChild1,
/*100326*/              OPC_CheckValueType, MVT::i8,
/*100328*/              OPC_MoveParent,
/*100329*/              OPC_CheckType, MVT::i32,
/*100331*/              OPC_MoveParent,
/*100332*/              OPC_MoveChild1,
/*100333*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100336*/              OPC_MoveChild0,
/*100337*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100340*/              OPC_CheckChild0Same, 0,
/*100342*/              OPC_CheckChild1Integer, 7, 
/*100344*/              OPC_MoveParent,
/*100345*/              OPC_MoveChild1,
/*100346*/              OPC_CheckValueType, MVT::i8,
/*100348*/              OPC_MoveParent,
/*100349*/              OPC_CheckType, MVT::i32,
/*100351*/              OPC_MoveParent,
/*100352*/              OPC_MoveChild2,
/*100353*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100356*/              OPC_MoveChild0,
/*100357*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100360*/              OPC_CheckChild0Same, 0,
/*100362*/              OPC_CheckChild1Integer, 11, 
/*100364*/              OPC_MoveParent,
/*100365*/              OPC_MoveChild1,
/*100366*/              OPC_CheckValueType, MVT::i8,
/*100368*/              OPC_MoveParent,
/*100369*/              OPC_CheckType, MVT::i32,
/*100371*/              OPC_MoveParent,
/*100372*/              OPC_MoveChild3,
/*100373*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100376*/              OPC_MoveChild0,
/*100377*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100380*/              OPC_CheckChild0Same, 0,
/*100382*/              OPC_CheckChild1Integer, 15, 
/*100384*/              OPC_MoveParent,
/*100385*/              OPC_MoveChild1,
/*100386*/              OPC_CheckValueType, MVT::i8,
/*100388*/              OPC_MoveParent,
/*100389*/              OPC_CheckType, MVT::i32,
/*100391*/              OPC_MoveParent,
/*100392*/              OPC_CheckType, MVT::v4i32,
/*100394*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*100396*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSB2W), 0,
                            MVT::v4i32, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v4i32] } (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 3:{ *:[iPTR] }), i8:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 7:{ *:[iPTR] }), i8:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 11:{ *:[iPTR] }), i8:{ *:[Other] }), (sext_inreg:{ *:[i32] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 15:{ *:[iPTR] }), i8:{ *:[Other] })) - Complexity = 447
                        // Dst: (VEXTSB2W:{ *:[v4i32] } ?:{ *:[v16i8] }:$A)
/*100403*/            0, /*End of Scope*/
/*100404*/          0, /*End of Scope*/
/*100405*/        /*SwitchOpcode*/ 91|128,1/*219*/, TARGET_VAL(ISD::ANY_EXTEND),// ->100628
/*100409*/          OPC_MoveChild0,
/*100410*/          OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100413*/          OPC_RecordChild0, // #0 = $A
/*100414*/          OPC_CheckType, MVT::i32,
/*100416*/          OPC_Scope, 104, /*->100522*/ // 2 children in Scope
/*100418*/            OPC_CheckChild0Type, MVT::v8i16,
/*100420*/            OPC_Scope, 49, /*->100471*/ // 2 children in Scope
/*100422*/              OPC_CheckChild1Integer, 0, 
/*100424*/              OPC_MoveParent,
/*100425*/              OPC_MoveParent,
/*100426*/              OPC_MoveChild1,
/*100427*/              OPC_CheckValueType, MVT::i16,
/*100429*/              OPC_MoveParent,
/*100430*/              OPC_CheckType, MVT::i64,
/*100432*/              OPC_MoveParent,
/*100433*/              OPC_MoveChild1,
/*100434*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100437*/              OPC_MoveChild0,
/*100438*/              OPC_CheckOpcode, TARGET_VAL(ISD::ANY_EXTEND),
/*100441*/              OPC_MoveChild0,
/*100442*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100445*/              OPC_CheckChild0Same, 0,
/*100447*/              OPC_CheckChild1Integer, 4, 
/*100449*/              OPC_CheckType, MVT::i32,
/*100451*/              OPC_MoveParent,
/*100452*/              OPC_MoveParent,
/*100453*/              OPC_MoveChild1,
/*100454*/              OPC_CheckValueType, MVT::i16,
/*100456*/              OPC_MoveParent,
/*100457*/              OPC_CheckType, MVT::i64,
/*100459*/              OPC_MoveParent,
/*100460*/              OPC_CheckType, MVT::v2i64,
/*100462*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*100464*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::v2i64, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v2i64] } (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 0:{ *:[iPTR] })), i16:{ *:[Other] }), (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 4:{ *:[iPTR] })), i16:{ *:[Other] })) - Complexity = 431
                        // Dst: (VEXTSH2D:{ *:[v2i64] } ?:{ *:[v8i16] }:$A)
/*100471*/            /*Scope*/ 49, /*->100521*/
/*100472*/              OPC_CheckChild1Integer, 3, 
/*100474*/              OPC_MoveParent,
/*100475*/              OPC_MoveParent,
/*100476*/              OPC_MoveChild1,
/*100477*/              OPC_CheckValueType, MVT::i16,
/*100479*/              OPC_MoveParent,
/*100480*/              OPC_CheckType, MVT::i64,
/*100482*/              OPC_MoveParent,
/*100483*/              OPC_MoveChild1,
/*100484*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100487*/              OPC_MoveChild0,
/*100488*/              OPC_CheckOpcode, TARGET_VAL(ISD::ANY_EXTEND),
/*100491*/              OPC_MoveChild0,
/*100492*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100495*/              OPC_CheckChild0Same, 0,
/*100497*/              OPC_CheckChild1Integer, 7, 
/*100499*/              OPC_CheckType, MVT::i32,
/*100501*/              OPC_MoveParent,
/*100502*/              OPC_MoveParent,
/*100503*/              OPC_MoveChild1,
/*100504*/              OPC_CheckValueType, MVT::i16,
/*100506*/              OPC_MoveParent,
/*100507*/              OPC_CheckType, MVT::i64,
/*100509*/              OPC_MoveParent,
/*100510*/              OPC_CheckType, MVT::v2i64,
/*100512*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*100514*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSH2D), 0,
                            MVT::v2i64, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v2i64] } (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 3:{ *:[iPTR] })), i16:{ *:[Other] }), (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v8i16:{ *:[v8i16] }:$A, 7:{ *:[iPTR] })), i16:{ *:[Other] })) - Complexity = 431
                        // Dst: (VEXTSH2D:{ *:[v2i64] } ?:{ *:[v8i16] }:$A)
/*100521*/            0, /*End of Scope*/
/*100522*/          /*Scope*/ 104, /*->100627*/
/*100523*/            OPC_CheckChild0Type, MVT::v16i8,
/*100525*/            OPC_Scope, 49, /*->100576*/ // 2 children in Scope
/*100527*/              OPC_CheckChild1Integer, 0, 
/*100529*/              OPC_MoveParent,
/*100530*/              OPC_MoveParent,
/*100531*/              OPC_MoveChild1,
/*100532*/              OPC_CheckValueType, MVT::i8,
/*100534*/              OPC_MoveParent,
/*100535*/              OPC_CheckType, MVT::i64,
/*100537*/              OPC_MoveParent,
/*100538*/              OPC_MoveChild1,
/*100539*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100542*/              OPC_MoveChild0,
/*100543*/              OPC_CheckOpcode, TARGET_VAL(ISD::ANY_EXTEND),
/*100546*/              OPC_MoveChild0,
/*100547*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100550*/              OPC_CheckChild0Same, 0,
/*100552*/              OPC_CheckChild1Integer, 8, 
/*100554*/              OPC_CheckType, MVT::i32,
/*100556*/              OPC_MoveParent,
/*100557*/              OPC_MoveParent,
/*100558*/              OPC_MoveChild1,
/*100559*/              OPC_CheckValueType, MVT::i8,
/*100561*/              OPC_MoveParent,
/*100562*/              OPC_CheckType, MVT::i64,
/*100564*/              OPC_MoveParent,
/*100565*/              OPC_CheckType, MVT::v2i64,
/*100567*/              OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*100569*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::v2i64, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v2i64] } (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 0:{ *:[iPTR] })), i8:{ *:[Other] }), (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 8:{ *:[iPTR] })), i8:{ *:[Other] })) - Complexity = 431
                        // Dst: (VEXTSB2D:{ *:[v2i64] } ?:{ *:[v16i8] }:$A)
/*100576*/            /*Scope*/ 49, /*->100626*/
/*100577*/              OPC_CheckChild1Integer, 7, 
/*100579*/              OPC_MoveParent,
/*100580*/              OPC_MoveParent,
/*100581*/              OPC_MoveChild1,
/*100582*/              OPC_CheckValueType, MVT::i8,
/*100584*/              OPC_MoveParent,
/*100585*/              OPC_CheckType, MVT::i64,
/*100587*/              OPC_MoveParent,
/*100588*/              OPC_MoveChild1,
/*100589*/              OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND_INREG),
/*100592*/              OPC_MoveChild0,
/*100593*/              OPC_CheckOpcode, TARGET_VAL(ISD::ANY_EXTEND),
/*100596*/              OPC_MoveChild0,
/*100597*/              OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100600*/              OPC_CheckChild0Same, 0,
/*100602*/              OPC_CheckChild1Integer, 15, 
/*100604*/              OPC_CheckType, MVT::i32,
/*100606*/              OPC_MoveParent,
/*100607*/              OPC_MoveParent,
/*100608*/              OPC_MoveChild1,
/*100609*/              OPC_CheckValueType, MVT::i8,
/*100611*/              OPC_MoveParent,
/*100612*/              OPC_CheckType, MVT::i64,
/*100614*/              OPC_MoveParent,
/*100615*/              OPC_CheckType, MVT::v2i64,
/*100617*/              OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*100619*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSB2D), 0,
                            MVT::v2i64, 1/*#Ops*/, 0, 
                        // Src: (build_vector:{ *:[v2i64] } (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 7:{ *:[iPTR] })), i8:{ *:[Other] }), (sext_inreg:{ *:[i64] } (anyext:{ *:[i64] } (vector_extract:{ *:[i32] } v16i8:{ *:[v16i8] }:$A, 15:{ *:[iPTR] })), i8:{ *:[Other] })) - Complexity = 431
                        // Dst: (VEXTSB2D:{ *:[v2i64] } ?:{ *:[v16i8] }:$A)
/*100626*/            0, /*End of Scope*/
/*100627*/          0, /*End of Scope*/
/*100628*/        0, // EndSwitchOpcode
/*100629*/      /*SwitchOpcode*/ 83, TARGET_VAL(ISD::SIGN_EXTEND),// ->100715
/*100632*/        OPC_MoveChild0,
/*100633*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100636*/        OPC_RecordChild0, // #0 = $A
/*100637*/        OPC_CheckChild0Type, MVT::v4i32,
/*100639*/        OPC_CheckType, MVT::i32,
/*100641*/        OPC_Scope, 35, /*->100678*/ // 2 children in Scope
/*100643*/          OPC_CheckChild1Integer, 0, 
/*100645*/          OPC_MoveParent,
/*100646*/          OPC_CheckType, MVT::i64,
/*100648*/          OPC_MoveParent,
/*100649*/          OPC_MoveChild1,
/*100650*/          OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND),
/*100653*/          OPC_MoveChild0,
/*100654*/          OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100657*/          OPC_CheckChild0Same, 0,
/*100659*/          OPC_CheckChild1Integer, 2, 
/*100661*/          OPC_CheckType, MVT::i32,
/*100663*/          OPC_MoveParent,
/*100664*/          OPC_CheckType, MVT::i64,
/*100666*/          OPC_MoveParent,
/*100667*/          OPC_CheckType, MVT::v2i64,
/*100669*/          OPC_CheckPatternPredicate, 20, // (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian())
/*100671*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSW2D), 0,
                        MVT::v2i64, 1/*#Ops*/, 0, 
                    // Src: (build_vector:{ *:[v2i64] } (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 0:{ *:[iPTR] })), (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 2:{ *:[iPTR] }))) - Complexity = 425
                    // Dst: (VEXTSW2D:{ *:[v2i64] } ?:{ *:[v4i32] }:$A)
/*100678*/        /*Scope*/ 35, /*->100714*/
/*100679*/          OPC_CheckChild1Integer, 1, 
/*100681*/          OPC_MoveParent,
/*100682*/          OPC_CheckType, MVT::i64,
/*100684*/          OPC_MoveParent,
/*100685*/          OPC_MoveChild1,
/*100686*/          OPC_CheckOpcode, TARGET_VAL(ISD::SIGN_EXTEND),
/*100689*/          OPC_MoveChild0,
/*100690*/          OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*100693*/          OPC_CheckChild0Same, 0,
/*100695*/          OPC_CheckChild1Integer, 3, 
/*100697*/          OPC_CheckType, MVT::i32,
/*100699*/          OPC_MoveParent,
/*100700*/          OPC_CheckType, MVT::i64,
/*100702*/          OPC_MoveParent,
/*100703*/          OPC_CheckType, MVT::v2i64,
/*100705*/          OPC_CheckPatternPredicate, 21, // (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian())
/*100707*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSW2D), 0,
                        MVT::v2i64, 1/*#Ops*/, 0, 
                    // Src: (build_vector:{ *:[v2i64] } (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 1:{ *:[iPTR] })), (sext:{ *:[i64] } (vector_extract:{ *:[i32] } v4i32:{ *:[v4i32] }:$A, 3:{ *:[iPTR] }))) - Complexity = 425
                    // Dst: (VEXTSW2D:{ *:[v2i64] } ?:{ *:[v4i32] }:$A)
/*100714*/        0, /*End of Scope*/
/*100715*/      0, // EndSwitchOpcode
/*100716*/    /*Scope*/ 29, /*->100746*/
/*100717*/      OPC_RecordChild0, // #0 = $A
/*100718*/      OPC_MoveChild0,
/*100719*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*100722*/      OPC_CheckPredicate, 36, // Predicate_immSExt5NonZero
/*100724*/      OPC_CheckType, MVT::i32,
/*100726*/      OPC_MoveParent,
/*100727*/      OPC_CheckChild1Same, 0,
/*100729*/      OPC_CheckChild2Same, 0,
/*100731*/      OPC_CheckChild3Same, 0,
/*100733*/      OPC_CheckType, MVT::v4i32,
/*100735*/      OPC_CheckPatternPredicate, 36, // (PPCSubTarget->hasDirectMove())
/*100737*/      OPC_EmitConvertToTarget, 0,
/*100739*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTISW), 0,
                    MVT::v4i32, 1/*#Ops*/, 1, 
                // Src: (build_vector:{ *:[v4i32] } (imm:{ *:[i32] })<<P:Predicate_immSExt5NonZero>>:$A, (imm:{ *:[i32] })<<P:Predicate_immSExt5NonZero>>:$A, (imm:{ *:[i32] })<<P:Predicate_immSExt5NonZero>>:$A, (imm:{ *:[i32] })<<P:Predicate_immSExt5NonZero>>:$A) - Complexity = 419
                // Dst: (VSPLTISW:{ *:[v4i32] } (imm:{ *:[i32] }):$A)
/*100746*/    /*Scope*/ 35|128,1/*163*/, /*->100911*/
/*100748*/      OPC_MoveChild0,
/*100749*/      OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/*100752*/      OPC_MoveChild0,
/*100753*/      OPC_SwitchOpcode /*2 cases */, 75, TARGET_VAL(PPCISD::FCTIDZ),// ->100832
/*100757*/        OPC_RecordChild0, // #0 = $A
/*100758*/        OPC_CheckType, MVT::f64,
/*100760*/        OPC_MoveParent,
/*100761*/        OPC_CheckType, MVT::i64,
/*100763*/        OPC_MoveParent,
/*100764*/        OPC_MoveChild1,
/*100765*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/*100768*/        OPC_MoveChild0,
/*100769*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIDZ),
/*100772*/        OPC_CheckChild0Same, 0,
/*100774*/        OPC_CheckType, MVT::f64,
/*100776*/        OPC_MoveParent,
/*100777*/        OPC_CheckType, MVT::i64,
/*100779*/        OPC_MoveParent,
/*100780*/        OPC_CheckType, MVT::v2i64,
/*100782*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*100784*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                      MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/*100791*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*100794*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 2,  // Results = #3
/*100802*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                      MVT::f64, 1/*#Ops*/, 0,  // Results = #4
/*100809*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*100812*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 4, 5,  // Results = #6
/*100820*/        OPC_EmitInteger, MVT::i32, 0, 
/*100823*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v2i64, 3/*#Ops*/, 3, 6, 7, 
                  // Src: (build_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctidz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i64] } (PPCfctidz:{ *:[f64] } f64:{ *:[f64] }:$A))) - Complexity = 415
                  // Dst: (XXPERMDI:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPSXDS:{ *:[f64] } ?:{ *:[f64] }:$A), VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPSXDS:{ *:[f64] } ?:{ *:[f64] }:$A), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*100832*/      /*SwitchOpcode*/ 75, TARGET_VAL(PPCISD::FCTIDUZ),// ->100910
/*100835*/        OPC_RecordChild0, // #0 = $A
/*100836*/        OPC_CheckType, MVT::f64,
/*100838*/        OPC_MoveParent,
/*100839*/        OPC_CheckType, MVT::i64,
/*100841*/        OPC_MoveParent,
/*100842*/        OPC_MoveChild1,
/*100843*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MFVSR),
/*100846*/        OPC_MoveChild0,
/*100847*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCTIDUZ),
/*100850*/        OPC_CheckChild0Same, 0,
/*100852*/        OPC_CheckType, MVT::f64,
/*100854*/        OPC_MoveParent,
/*100855*/        OPC_CheckType, MVT::i64,
/*100857*/        OPC_MoveParent,
/*100858*/        OPC_CheckType, MVT::v2i64,
/*100860*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*100862*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                      MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/*100869*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*100872*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 1, 2,  // Results = #3
/*100880*/        OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                      MVT::f64, 1/*#Ops*/, 0,  // Results = #4
/*100887*/        OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*100890*/        OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                      MVT::v4i32, 2/*#Ops*/, 4, 5,  // Results = #6
/*100898*/        OPC_EmitInteger, MVT::i32, 0, 
/*100901*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v2i64, 3/*#Ops*/, 3, 6, 7, 
                  // Src: (build_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctiduz:{ *:[f64] } f64:{ *:[f64] }:$A)), (PPCmfvsr:{ *:[i64] } (PPCfctiduz:{ *:[f64] } f64:{ *:[f64] }:$A))) - Complexity = 415
                  // Dst: (XXPERMDI:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPUXDS:{ *:[f64] } ?:{ *:[f64] }:$A), VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPUXDS:{ *:[f64] } ?:{ *:[f64] }:$A), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*100910*/      0, // EndSwitchOpcode
/*100911*/    /*Scope*/ 21, /*->100933*/
/*100912*/      OPC_CheckImmAllZerosV,
/*100913*/      OPC_SwitchType /*2 cases */, 8, MVT::v4i32,// ->100924
/*100916*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*100918*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLXORz), 0,
                      MVT::v4i32, 0/*#Ops*/, 
                  // Src: immAllZerosV:{ *:[v4i32] } - Complexity = 403
                  // Dst: (XXLXORz:{ *:[v4i32] })
/*100924*/      /*SwitchType*/ 6, MVT::v2i64,// ->100932
/*100926*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXLXORz), 0,
                      MVT::v2i64, 0/*#Ops*/, 
                  // Src: immAllZerosV:{ *:[v2i64] } - Complexity = 403
                  // Dst: (XXLXORz:{ *:[v2i64] })
/*100932*/      0, // EndSwitchType
/*100933*/    /*Scope*/ 53, /*->100987*/
/*100934*/      OPC_RecordChild0, // #0 = $A
/*100935*/      OPC_SwitchType /*2 cases */, 17, MVT::v4i32,// ->100955
/*100938*/        OPC_CheckChild0Type, MVT::i32,
/*100940*/        OPC_CheckChild1Same, 0,
/*100942*/        OPC_CheckChild2Same, 0,
/*100944*/        OPC_CheckChild3Same, 0,
/*100946*/        OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*100948*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRWS), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (build_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A) - Complexity = 403
                  // Dst: (MTVSRWS:{ *:[v4i32] } ?:{ *:[i32] }:$A)
/*100955*/      /*SwitchType*/ 29, MVT::v2i64,// ->100986
/*100957*/        OPC_CheckChild0Type, MVT::i64,
/*100959*/        OPC_RecordChild1, // #1 = $rA
/*100960*/        OPC_CheckChild1Type, MVT::i64,
/*100962*/        OPC_Scope, 10, /*->100974*/ // 2 children in Scope
/*100964*/          OPC_CheckPatternPredicate, 22, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (PPCSubTarget->isISA3_0())
/*100966*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRDD), 0,
                        MVT::v2i64, 2/*#Ops*/, 0, 1, 
                    // Src: (build_vector:{ *:[v2i64] } i64:{ *:[i64] }:$rB, i64:{ *:[i64] }:$rA) - Complexity = 403
                    // Dst: (MTVSRDD:{ *:[v2i64] } ?:{ *:[i64] }:$rB, ?:{ *:[i64] }:$rA)
/*100974*/        /*Scope*/ 10, /*->100985*/
/*100975*/          OPC_CheckPatternPredicate, 27, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isISA3_0()) && (PPCSubTarget->isLittleEndian())
/*100977*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRDD), 0,
                        MVT::v2i64, 2/*#Ops*/, 1, 0, 
                    // Src: (build_vector:{ *:[v2i64] } i64:{ *:[i64] }:$rA, i64:{ *:[i64] }:$rB) - Complexity = 403
                    // Dst: (MTVSRDD:{ *:[v2i64] } ?:{ *:[i64] }:$rB, ?:{ *:[i64] }:$rA)
/*100985*/        0, /*End of Scope*/
/*100986*/      0, // EndSwitchType
/*100987*/    /*Scope*/ 22, /*->101010*/
/*100988*/      OPC_CheckImmAllOnesV,
/*100989*/      OPC_CheckType, MVT::v16i8,
/*100991*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*100993*/      OPC_EmitNode1, TARGET_VAL(PPC::XXLEQVOnes), 0,
                    MVT::v4i32, 0/*#Ops*/,  // Results = #0
/*100999*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101002*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: immAllOnesV:{ *:[v16i8] } - Complexity = 403
                // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } (XXLEQVOnes:{ *:[v4i32] }), VSRC:{ *:[i32] })
/*101010*/    /*Scope*/ 109|128,5/*749*/, /*->101761*/
/*101012*/      OPC_RecordChild0, // #0 = $A
/*101013*/      OPC_SwitchType /*2 cases */, 120|128,4/*632*/, MVT::v4i32,// ->101649
/*101017*/        OPC_CheckChild0Type, MVT::i32,
/*101019*/        OPC_Scope, 72, /*->101093*/ // 2 children in Scope
/*101021*/          OPC_CheckChild1Same, 0,
/*101023*/          OPC_CheckChild2Same, 0,
/*101025*/          OPC_CheckChild3Same, 0,
/*101027*/          OPC_Scope, 31, /*->101060*/ // 2 children in Scope
/*101029*/            OPC_CheckPatternPredicate, 44, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*101031*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                          MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/*101038*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101041*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 1, 2,  // Results = #3
/*101049*/            OPC_EmitInteger, MVT::i32, 1, 
/*101052*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 3, 4, 
                      // Src: (build_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$A), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*101060*/          /*Scope*/ 31, /*->101092*/
/*101061*/            OPC_CheckPatternPredicate, 45, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*101063*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                          MVT::f64, 1/*#Ops*/, 0,  // Results = #1
/*101070*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101073*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 1, 2,  // Results = #3
/*101081*/            OPC_EmitInteger, MVT::i32, 1, 
/*101084*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 3, 4, 
                      // Src: (build_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$A), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*101092*/          0, /*End of Scope*/
/*101093*/        /*Scope*/ 41|128,4/*553*/, /*->101648*/
/*101095*/          OPC_RecordChild1, // #1 = $B
/*101096*/          OPC_CheckChild1Type, MVT::i32,
/*101098*/          OPC_RecordChild2, // #2 = $C
/*101099*/          OPC_CheckChild2Type, MVT::i32,
/*101101*/          OPC_RecordChild3, // #3 = $D
/*101102*/          OPC_CheckChild3Type, MVT::i32,
/*101104*/          OPC_Scope, 114, /*->101220*/ // 4 children in Scope
/*101106*/            OPC_CheckPatternPredicate, 22, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (PPCSubTarget->isISA3_0())
/*101108*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #4
/*101114*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101117*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 4, 1, 5,  // Results = #6
/*101126*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #7
/*101132*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101135*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 7, 0, 8,  // Results = #9
/*101144*/            OPC_EmitInteger, MVT::i32, 32, 
/*101147*/            OPC_EmitInteger, MVT::i32, 0, 
/*101150*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 6, 9, 10, 11,  // Results = #12
/*101160*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #13
/*101166*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101169*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 13, 3, 14,  // Results = #15
/*101178*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #16
/*101184*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101187*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 16, 2, 17,  // Results = #18
/*101196*/            OPC_EmitInteger, MVT::i32, 32, 
/*101199*/            OPC_EmitInteger, MVT::i32, 0, 
/*101202*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 15, 18, 19, 20,  // Results = #21
/*101212*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRDD), 0,
                          MVT::v4i32, 2/*#Ops*/, 12, 21, 
                      // Src: (build_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$B, i32:{ *:[i32] }:$C, i32:{ *:[i32] }:$D) - Complexity = 403
                      // Dst: (MTVSRDD:{ *:[v4i32] } (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$B, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] }), (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$D, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$C, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] }))
/*101220*/          /*Scope*/ 114, /*->101335*/
/*101221*/            OPC_CheckPatternPredicate, 27, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isISA3_0()) && (PPCSubTarget->isLittleEndian())
/*101223*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #4
/*101229*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101232*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 4, 2, 5,  // Results = #6
/*101241*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #7
/*101247*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101250*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 7, 3, 8,  // Results = #9
/*101259*/            OPC_EmitInteger, MVT::i32, 32, 
/*101262*/            OPC_EmitInteger, MVT::i32, 0, 
/*101265*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 6, 9, 10, 11,  // Results = #12
/*101275*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #13
/*101281*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101284*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 13, 0, 14,  // Results = #15
/*101293*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #16
/*101299*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101302*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 16, 1, 17,  // Results = #18
/*101311*/            OPC_EmitInteger, MVT::i32, 32, 
/*101314*/            OPC_EmitInteger, MVT::i32, 0, 
/*101317*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 15, 18, 19, 20,  // Results = #21
/*101327*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRDD), 0,
                          MVT::v4i32, 2/*#Ops*/, 12, 21, 
                      // Src: (build_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$B, i32:{ *:[i32] }:$C, i32:{ *:[i32] }:$D) - Complexity = 403
                      // Dst: (MTVSRDD:{ *:[v4i32] } (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$C, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$D, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] }), (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$B, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] }))
/*101335*/          /*Scope*/ 26|128,1/*154*/, /*->101491*/
/*101337*/            OPC_CheckPatternPredicate, 44, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*101339*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #4
/*101345*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101348*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 4, 1, 5,  // Results = #6
/*101357*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #7
/*101363*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101366*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 7, 0, 8,  // Results = #9
/*101375*/            OPC_EmitInteger, MVT::i32, 32, 
/*101378*/            OPC_EmitInteger, MVT::i32, 0, 
/*101381*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 6, 9, 10, 11,  // Results = #12
/*101391*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 12,  // Results = #13
/*101398*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101401*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 13, 14,  // Results = #15
/*101409*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #16
/*101415*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101418*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 16, 3, 17,  // Results = #18
/*101427*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #19
/*101433*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101436*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 19, 2, 20,  // Results = #21
/*101445*/            OPC_EmitInteger, MVT::i32, 32, 
/*101448*/            OPC_EmitInteger, MVT::i32, 0, 
/*101451*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 18, 21, 22, 23,  // Results = #24
/*101461*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 24,  // Results = #25
/*101468*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101471*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 25, 26,  // Results = #27
/*101479*/            OPC_EmitInteger, MVT::i32, 0, 
/*101482*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 15, 27, 28, 
                      // Src: (build_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$B, i32:{ *:[i32] }:$C, i32:{ *:[i32] }:$D) - Complexity = 403
                      // Dst: (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$B, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] })), VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$D, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$C, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] })), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*101491*/          /*Scope*/ 26|128,1/*154*/, /*->101647*/
/*101493*/            OPC_CheckPatternPredicate, 45, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*101495*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #4
/*101501*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101504*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 4, 2, 5,  // Results = #6
/*101513*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #7
/*101519*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101522*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 7, 3, 8,  // Results = #9
/*101531*/            OPC_EmitInteger, MVT::i32, 32, 
/*101534*/            OPC_EmitInteger, MVT::i32, 0, 
/*101537*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 6, 9, 10, 11,  // Results = #12
/*101547*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 12,  // Results = #13
/*101554*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101557*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 13, 14,  // Results = #15
/*101565*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #16
/*101571*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101574*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 16, 0, 17,  // Results = #18
/*101583*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #19
/*101589*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*101592*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 19, 1, 20,  // Results = #21
/*101601*/            OPC_EmitInteger, MVT::i32, 32, 
/*101604*/            OPC_EmitInteger, MVT::i32, 0, 
/*101607*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDIMI), 0,
                          MVT::i64, 4/*#Ops*/, 18, 21, 22, 23,  // Results = #24
/*101617*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 24,  // Results = #25
/*101624*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101627*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 25, 26,  // Results = #27
/*101635*/            OPC_EmitInteger, MVT::i32, 0, 
/*101638*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 15, 27, 28, 
                      // Src: (build_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A, i32:{ *:[i32] }:$B, i32:{ *:[i32] }:$C, i32:{ *:[i32] }:$D) - Complexity = 403
                      // Dst: (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$C, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$D, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] })), VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } (RLDIMI:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] }), (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$B, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 0:{ *:[i32] })), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*101647*/          0, /*End of Scope*/
/*101648*/        0, /*End of Scope*/
/*101649*/      /*SwitchType*/ 109, MVT::v2i64,// ->101760
/*101651*/        OPC_CheckChild0Type, MVT::i64,
/*101653*/        OPC_RecordChild1, // #1 = $B
/*101654*/        OPC_CheckChild1Type, MVT::i64,
/*101656*/        OPC_Scope, 50, /*->101708*/ // 2 children in Scope
/*101658*/          OPC_CheckPatternPredicate, 44, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*101660*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #2
/*101667*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101670*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*101678*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #5
/*101685*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101688*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*101696*/          OPC_EmitInteger, MVT::i32, 0, 
/*101699*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v2i64, 3/*#Ops*/, 4, 7, 8, 
                    // Src: (build_vector:{ *:[v2i64] } i64:{ *:[i64] }:$A, i64:{ *:[i64] }:$B) - Complexity = 403
                    // Dst: (XXPERMDI:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$A), VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$B), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*101708*/        /*Scope*/ 50, /*->101759*/
/*101709*/          OPC_CheckPatternPredicate, 45, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector())
/*101711*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*101718*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101721*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*101729*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #5
/*101736*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*101739*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*101747*/          OPC_EmitInteger, MVT::i32, 0, 
/*101750*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v2i64, 3/*#Ops*/, 4, 7, 8, 
                    // Src: (build_vector:{ *:[v2i64] } i64:{ *:[i64] }:$A, i64:{ *:[i64] }:$B) - Complexity = 403
                    // Dst: (XXPERMDI:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$B), VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$A), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*101759*/        0, /*End of Scope*/
/*101760*/      0, // EndSwitchType
/*101761*/    /*Scope*/ 51, /*->101813*/
/*101762*/      OPC_RecordNode, // #0 = $SIMM
/*101763*/      OPC_SwitchType /*3 cases */, 14, MVT::v16i8,// ->101780
/*101766*/        OPC_CheckPredicate, 37, // Predicate_vecspltisb
/*101768*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101770*/        OPC_EmitNodeXForm, 10, 0, // VSPLTISB_get_imm
/*101773*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTISB), 0,
                      MVT::v16i8, 1/*#Ops*/, 1, 
                  // Src: (build_vector:{ *:[v16i8] })<<P:Predicate_vecspltisb>><<X:VSPLTISB_get_imm>>:$SIMM - Complexity = 4
                  // Dst: (VSPLTISB:{ *:[v16i8] } (VSPLTISB_get_imm:{ *:[i32] } (build_vector:{ *:[v16i8] }):$SIMM))
/*101780*/      /*SwitchType*/ 14, MVT::v8i16,// ->101796
/*101782*/        OPC_CheckPredicate, 38, // Predicate_vecspltish
/*101784*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101786*/        OPC_EmitNodeXForm, 11, 0, // VSPLTISH_get_imm
/*101789*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTISH), 0,
                      MVT::v8i16, 1/*#Ops*/, 1, 
                  // Src: (build_vector:{ *:[v8i16] })<<P:Predicate_vecspltish>><<X:VSPLTISH_get_imm>>:$SIMM - Complexity = 4
                  // Dst: (VSPLTISH:{ *:[v8i16] } (VSPLTISH_get_imm:{ *:[i32] } (build_vector:{ *:[v8i16] }):$SIMM))
/*101796*/      /*SwitchType*/ 14, MVT::v4i32,// ->101812
/*101798*/        OPC_CheckPredicate, 39, // Predicate_vecspltisw
/*101800*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101802*/        OPC_EmitNodeXForm, 12, 0, // VSPLTISW_get_imm
/*101805*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTISW), 0,
                      MVT::v4i32, 1/*#Ops*/, 1, 
                  // Src: (build_vector:{ *:[v4i32] })<<P:Predicate_vecspltisw>><<X:VSPLTISW_get_imm>>:$SIMM - Complexity = 4
                  // Dst: (VSPLTISW:{ *:[v4i32] } (VSPLTISW_get_imm:{ *:[i32] } (build_vector:{ *:[v4i32] }):$SIMM))
/*101812*/      0, // EndSwitchType
/*101813*/    /*Scope*/ 33, /*->101847*/
/*101814*/      OPC_CheckImmAllZerosV,
/*101815*/      OPC_SwitchType /*3 cases */, 8, MVT::v16i8,// ->101826
/*101818*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101820*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::V_SET0B), 0,
                      MVT::v16i8, 0/*#Ops*/, 
                  // Src: immAllZerosV:{ *:[v16i8] } - Complexity = 3
                  // Dst: (V_SET0B:{ *:[v16i8] })
/*101826*/      /*SwitchType*/ 8, MVT::v8i16,// ->101836
/*101828*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101830*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::V_SET0H), 0,
                      MVT::v8i16, 0/*#Ops*/, 
                  // Src: immAllZerosV:{ *:[v8i16] } - Complexity = 3
                  // Dst: (V_SET0H:{ *:[v8i16] })
/*101836*/      /*SwitchType*/ 8, MVT::v4i32,// ->101846
/*101838*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101840*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::V_SET0), 0,
                      MVT::v4i32, 0/*#Ops*/, 
                  // Src: immAllZerosV:{ *:[v4i32] } - Complexity = 3
                  // Dst: (V_SET0:{ *:[v4i32] })
/*101846*/      0, // EndSwitchType
/*101847*/    /*Scope*/ 33, /*->101881*/
/*101848*/      OPC_CheckImmAllOnesV,
/*101849*/      OPC_SwitchType /*3 cases */, 8, MVT::v16i8,// ->101860
/*101852*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101854*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::V_SETALLONESB), 0,
                      MVT::v16i8, 0/*#Ops*/, 
                  // Src: immAllOnesV:{ *:[v16i8] } - Complexity = 3
                  // Dst: (V_SETALLONESB:{ *:[v16i8] })
/*101860*/      /*SwitchType*/ 8, MVT::v8i16,// ->101870
/*101862*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101864*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::V_SETALLONESH), 0,
                      MVT::v8i16, 0/*#Ops*/, 
                  // Src: immAllOnesV:{ *:[v8i16] } - Complexity = 3
                  // Dst: (V_SETALLONESH:{ *:[v8i16] })
/*101870*/      /*SwitchType*/ 8, MVT::v4i32,// ->101880
/*101872*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*101874*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::V_SETALLONES), 0,
                      MVT::v4i32, 0/*#Ops*/, 
                  // Src: immAllOnesV:{ *:[v4i32] } - Complexity = 3
                  // Dst: (V_SETALLONES:{ *:[v4i32] })
/*101880*/      0, // EndSwitchType
/*101881*/    /*Scope*/ 115|128,4/*627*/, /*->102510*/
/*101883*/      OPC_MoveChild0,
/*101884*/      OPC_SwitchOpcode /*3 cases */, 100|128,1/*228*/, TARGET_VAL(PPCISD::FCFIDUS),// ->102117
/*101889*/        OPC_MoveChild0,
/*101890*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*101893*/        OPC_MoveChild0,
/*101894*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*101897*/        OPC_RecordChild0, // #0 = $S1
/*101898*/        OPC_CheckChild0Type, MVT::v2i64,
/*101900*/        OPC_CheckChild1Integer, 0, 
/*101902*/        OPC_CheckType, MVT::i64,
/*101904*/        OPC_MoveParent,
/*101905*/        OPC_CheckType, MVT::f64,
/*101907*/        OPC_MoveParent,
/*101908*/        OPC_CheckType, MVT::f32,
/*101910*/        OPC_MoveParent,
/*101911*/        OPC_MoveChild1,
/*101912*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCFIDUS),
/*101915*/        OPC_MoveChild0,
/*101916*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*101919*/        OPC_MoveChild0,
/*101920*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*101923*/        OPC_CheckChild0Same, 0,
/*101925*/        OPC_CheckChild1Integer, 1, 
/*101927*/        OPC_CheckType, MVT::i64,
/*101929*/        OPC_MoveParent,
/*101930*/        OPC_CheckType, MVT::f64,
/*101932*/        OPC_MoveParent,
/*101933*/        OPC_CheckType, MVT::f32,
/*101935*/        OPC_MoveParent,
/*101936*/        OPC_MoveChild2,
/*101937*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCFIDUS),
/*101940*/        OPC_MoveChild0,
/*101941*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*101944*/        OPC_MoveChild0,
/*101945*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*101948*/        OPC_RecordChild0, // #1 = $S2
/*101949*/        OPC_CheckChild0Type, MVT::v2i64,
/*101951*/        OPC_CheckChild1Integer, 0, 
/*101953*/        OPC_CheckType, MVT::i64,
/*101955*/        OPC_MoveParent,
/*101956*/        OPC_CheckType, MVT::f64,
/*101958*/        OPC_MoveParent,
/*101959*/        OPC_CheckType, MVT::f32,
/*101961*/        OPC_MoveParent,
/*101962*/        OPC_MoveChild3,
/*101963*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCFIDUS),
/*101966*/        OPC_MoveChild0,
/*101967*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*101970*/        OPC_MoveChild0,
/*101971*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*101974*/        OPC_CheckChild0Same, 1,
/*101976*/        OPC_CheckChild1Integer, 1, 
/*101978*/        OPC_CheckType, MVT::i64,
/*101980*/        OPC_MoveParent,
/*101981*/        OPC_CheckType, MVT::f64,
/*101983*/        OPC_MoveParent,
/*101984*/        OPC_CheckType, MVT::f32,
/*101986*/        OPC_MoveParent,
/*101987*/        OPC_CheckType, MVT::v4f32,
/*101989*/        OPC_Scope, 62, /*->102053*/ // 2 children in Scope
/*101991*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*101993*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #2
/*102000*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #3
/*102007*/          OPC_EmitInteger, MVT::i32, 3, 
/*102010*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*102019*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #6
/*102026*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #7
/*102033*/          OPC_EmitInteger, MVT::i32, 3, 
/*102036*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 6, 7, 8,  // Results = #9
/*102045*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUM), 0,
                        MVT::v4f32, 2/*#Ops*/, 5, 9, 
                    // Src: (build_vector:{ *:[v4f32] } (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))), (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))), (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 0:{ *:[iPTR] }))), (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 1:{ *:[iPTR] })))) - Complexity = 459
                    // Dst: (VPKUDUM:{ *:[v4f32] } (XXSLDWI:{ *:[v4i32] } (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), 3:{ *:[i32] }), (XXSLDWI:{ *:[v4i32] } (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), 3:{ *:[i32] }))
/*102053*/        /*Scope*/ 62, /*->102116*/
/*102054*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*102056*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*102063*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*102070*/          OPC_EmitInteger, MVT::i32, 3, 
/*102073*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*102082*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #6
/*102089*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVUXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #7
/*102096*/          OPC_EmitInteger, MVT::i32, 3, 
/*102099*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 6, 7, 8,  // Results = #9
/*102108*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUM), 0,
                        MVT::v4f32, 2/*#Ops*/, 5, 9, 
                    // Src: (build_vector:{ *:[v4f32] } (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))), (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))), (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 0:{ *:[iPTR] }))), (PPCfcfidus:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 1:{ *:[iPTR] })))) - Complexity = 459
                    // Dst: (VPKUDUM:{ *:[v4f32] } (XXSLDWI:{ *:[v4i32] } (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), 3:{ *:[i32] }), (XXSLDWI:{ *:[v4i32] } (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), (XVCVUXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), 3:{ *:[i32] }))
/*102116*/        0, /*End of Scope*/
/*102117*/      /*SwitchOpcode*/ 100|128,1/*228*/, TARGET_VAL(PPCISD::FCFIDS),// ->102349
/*102121*/        OPC_MoveChild0,
/*102122*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*102125*/        OPC_MoveChild0,
/*102126*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102129*/        OPC_RecordChild0, // #0 = $S1
/*102130*/        OPC_CheckChild0Type, MVT::v2i64,
/*102132*/        OPC_CheckChild1Integer, 0, 
/*102134*/        OPC_CheckType, MVT::i64,
/*102136*/        OPC_MoveParent,
/*102137*/        OPC_CheckType, MVT::f64,
/*102139*/        OPC_MoveParent,
/*102140*/        OPC_CheckType, MVT::f32,
/*102142*/        OPC_MoveParent,
/*102143*/        OPC_MoveChild1,
/*102144*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCFIDS),
/*102147*/        OPC_MoveChild0,
/*102148*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*102151*/        OPC_MoveChild0,
/*102152*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102155*/        OPC_CheckChild0Same, 0,
/*102157*/        OPC_CheckChild1Integer, 1, 
/*102159*/        OPC_CheckType, MVT::i64,
/*102161*/        OPC_MoveParent,
/*102162*/        OPC_CheckType, MVT::f64,
/*102164*/        OPC_MoveParent,
/*102165*/        OPC_CheckType, MVT::f32,
/*102167*/        OPC_MoveParent,
/*102168*/        OPC_MoveChild2,
/*102169*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCFIDS),
/*102172*/        OPC_MoveChild0,
/*102173*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*102176*/        OPC_MoveChild0,
/*102177*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102180*/        OPC_RecordChild0, // #1 = $S2
/*102181*/        OPC_CheckChild0Type, MVT::v2i64,
/*102183*/        OPC_CheckChild1Integer, 0, 
/*102185*/        OPC_CheckType, MVT::i64,
/*102187*/        OPC_MoveParent,
/*102188*/        OPC_CheckType, MVT::f64,
/*102190*/        OPC_MoveParent,
/*102191*/        OPC_CheckType, MVT::f32,
/*102193*/        OPC_MoveParent,
/*102194*/        OPC_MoveChild3,
/*102195*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::FCFIDS),
/*102198*/        OPC_MoveChild0,
/*102199*/        OPC_CheckOpcode, TARGET_VAL(PPCISD::MTVSRA),
/*102202*/        OPC_MoveChild0,
/*102203*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102206*/        OPC_CheckChild0Same, 1,
/*102208*/        OPC_CheckChild1Integer, 1, 
/*102210*/        OPC_CheckType, MVT::i64,
/*102212*/        OPC_MoveParent,
/*102213*/        OPC_CheckType, MVT::f64,
/*102215*/        OPC_MoveParent,
/*102216*/        OPC_CheckType, MVT::f32,
/*102218*/        OPC_MoveParent,
/*102219*/        OPC_CheckType, MVT::v4f32,
/*102221*/        OPC_Scope, 62, /*->102285*/ // 2 children in Scope
/*102223*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*102225*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #2
/*102232*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #3
/*102239*/          OPC_EmitInteger, MVT::i32, 3, 
/*102242*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*102251*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #6
/*102258*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #7
/*102265*/          OPC_EmitInteger, MVT::i32, 3, 
/*102268*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 6, 7, 8,  // Results = #9
/*102277*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUM), 0,
                        MVT::v4f32, 2/*#Ops*/, 5, 9, 
                    // Src: (build_vector:{ *:[v4f32] } (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))), (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))), (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 0:{ *:[iPTR] }))), (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 1:{ *:[iPTR] })))) - Complexity = 459
                    // Dst: (VPKUDUM:{ *:[v4f32] } (XXSLDWI:{ *:[v4i32] } (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), 3:{ *:[i32] }), (XXSLDWI:{ *:[v4i32] } (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), 3:{ *:[i32] }))
/*102285*/        /*Scope*/ 62, /*->102348*/
/*102286*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*102288*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*102295*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*102302*/          OPC_EmitInteger, MVT::i32, 3, 
/*102305*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*102314*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #6
/*102321*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVSXDSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #7
/*102328*/          OPC_EmitInteger, MVT::i32, 3, 
/*102331*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4i32, 3/*#Ops*/, 6, 7, 8,  // Results = #9
/*102340*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUM), 0,
                        MVT::v4f32, 2/*#Ops*/, 5, 9, 
                    // Src: (build_vector:{ *:[v4f32] } (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 0:{ *:[iPTR] }))), (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S1, 1:{ *:[iPTR] }))), (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 0:{ *:[iPTR] }))), (PPCfcfids:{ *:[f32] } (PPCmtvsra:{ *:[f64] } (vector_extract:{ *:[i64] } v2i64:{ *:[v2i64] }:$S2, 1:{ *:[iPTR] })))) - Complexity = 459
                    // Dst: (VPKUDUM:{ *:[v4f32] } (XXSLDWI:{ *:[v4i32] } (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S2), 3:{ *:[i32] }), (XXSLDWI:{ *:[v4i32] } (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), (XVCVSXDSP:{ *:[v4i32] } ?:{ *:[v2i64] }:$S1), 3:{ *:[i32] }))
/*102348*/        0, /*End of Scope*/
/*102349*/      /*SwitchOpcode*/ 28|128,1/*156*/, TARGET_VAL(ISD::FP_ROUND),// ->102509
/*102353*/        OPC_MoveChild0,
/*102354*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102357*/        OPC_RecordChild0, // #0 = $A
/*102358*/        OPC_CheckChild0Type, MVT::v2f64,
/*102360*/        OPC_CheckChild1Integer, 0, 
/*102362*/        OPC_MoveParent,
/*102363*/        OPC_MoveParent,
/*102364*/        OPC_MoveChild1,
/*102365*/        OPC_CheckOpcode, TARGET_VAL(ISD::FP_ROUND),
/*102368*/        OPC_MoveChild0,
/*102369*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102372*/        OPC_CheckChild0Same, 0,
/*102374*/        OPC_CheckChild1Integer, 1, 
/*102376*/        OPC_MoveParent,
/*102377*/        OPC_MoveParent,
/*102378*/        OPC_MoveChild2,
/*102379*/        OPC_CheckOpcode, TARGET_VAL(ISD::FP_ROUND),
/*102382*/        OPC_MoveChild0,
/*102383*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102386*/        OPC_RecordChild0, // #1 = $B
/*102387*/        OPC_CheckChild0Type, MVT::v2f64,
/*102389*/        OPC_CheckChild1Integer, 0, 
/*102391*/        OPC_MoveParent,
/*102392*/        OPC_MoveParent,
/*102393*/        OPC_MoveChild3,
/*102394*/        OPC_CheckOpcode, TARGET_VAL(ISD::FP_ROUND),
/*102397*/        OPC_MoveChild0,
/*102398*/        OPC_CheckOpcode, TARGET_VAL(ISD::EXTRACT_VECTOR_ELT),
/*102401*/        OPC_CheckChild0Same, 1,
/*102403*/        OPC_CheckChild1Integer, 1, 
/*102405*/        OPC_MoveParent,
/*102406*/        OPC_MoveParent,
/*102407*/        OPC_CheckType, MVT::v4f32,
/*102409*/        OPC_Scope, 48, /*->102459*/ // 2 children in Scope
/*102411*/          OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/*102413*/          OPC_EmitInteger, MVT::i32, 0, 
/*102416*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 1, 2,  // Results = #3
/*102425*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 3,  // Results = #4
/*102432*/          OPC_EmitInteger, MVT::i32, 3, 
/*102435*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 1, 5,  // Results = #6
/*102444*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 6,  // Results = #7
/*102451*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                        MVT::v4f32, 2/*#Ops*/, 4, 7, 
                    // Src: (build_vector:{ *:[v4f32] } (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] })), (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] })), (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 0:{ *:[iPTR] })), (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 1:{ *:[iPTR] }))) - Complexity = 447
                    // Dst: (VMRGEW:{ *:[v4f32] } (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$B, 0:{ *:[i32] })), (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$A, ?:{ *:[v2f64] }:$B, 3:{ *:[i32] })))
/*102459*/        /*Scope*/ 48, /*->102508*/
/*102460*/          OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*102462*/          OPC_EmitInteger, MVT::i32, 0, 
/*102465*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 1, 0, 2,  // Results = #3
/*102474*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 3,  // Results = #4
/*102481*/          OPC_EmitInteger, MVT::i32, 3, 
/*102484*/          OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v4i32, 3/*#Ops*/, 1, 0, 5,  // Results = #6
/*102493*/          OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                        MVT::v4i32, 1/*#Ops*/, 6,  // Results = #7
/*102500*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                        MVT::v4f32, 2/*#Ops*/, 4, 7, 
                    // Src: (build_vector:{ *:[v4f32] } (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 0:{ *:[iPTR] })), (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$A, 1:{ *:[iPTR] })), (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 0:{ *:[iPTR] })), (fpround:{ *:[f32] } (extractelt:{ *:[f64] } v2f64:{ *:[v2f64] }:$B, 1:{ *:[iPTR] }))) - Complexity = 447
                    // Dst: (VMRGEW:{ *:[v4f32] } (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$B, ?:{ *:[v2f64] }:$A, 0:{ *:[i32] })), (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } ?:{ *:[v2f64] }:$B, ?:{ *:[v2f64] }:$A, 3:{ *:[i32] })))
/*102508*/        0, /*End of Scope*/
/*102509*/      0, // EndSwitchOpcode
/*102510*/    /*Scope*/ 63|128,2/*319*/, /*->102831*/
/*102512*/      OPC_RecordChild0, // #0 = $A
/*102513*/      OPC_SwitchType /*2 cases */, 102|128,1/*230*/, MVT::v4f32,// ->102747
/*102517*/        OPC_CheckChild0Type, MVT::f32,
/*102519*/        OPC_Scope, 26, /*->102547*/ // 2 children in Scope
/*102521*/          OPC_CheckChild1Same, 0,
/*102523*/          OPC_CheckChild2Same, 0,
/*102525*/          OPC_CheckChild3Same, 0,
/*102527*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*102529*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4f32, 1/*#Ops*/, 0,  // Results = #1
/*102536*/          OPC_EmitInteger, MVT::i32, 0, 
/*102539*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                        MVT::v4f32, 2/*#Ops*/, 1, 2, 
                    // Src: (build_vector:{ *:[v4f32] } f32:{ *:[f32] }:$A, f32:{ *:[f32] }:$A, f32:{ *:[f32] }:$A, f32:{ *:[f32] }:$A) - Complexity = 403
                    // Dst: (XXSPLTW:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4f32] } ?:{ *:[f32] }:$A), 0:{ *:[i32] })
/*102547*/        /*Scope*/ 69|128,1/*197*/, /*->102746*/
/*102549*/          OPC_RecordChild1, // #1 = $B
/*102550*/          OPC_CheckChild1Type, MVT::f32,
/*102552*/          OPC_RecordChild2, // #2 = $C
/*102553*/          OPC_CheckChild2Type, MVT::f32,
/*102555*/          OPC_RecordChild3, // #3 = $D
/*102556*/          OPC_CheckChild3Type, MVT::f32,
/*102558*/          OPC_Scope, 92, /*->102652*/ // 2 children in Scope
/*102560*/            OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/*102562*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102565*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 4,  // Results = #5
/*102573*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102576*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 2, 6,  // Results = #7
/*102584*/            OPC_EmitInteger, MVT::i32, 0, 
/*102587*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 5, 7, 8,  // Results = #9
/*102596*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 9,  // Results = #10
/*102603*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102606*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 1, 11,  // Results = #12
/*102614*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102617*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 3, 13,  // Results = #14
/*102625*/            OPC_EmitInteger, MVT::i32, 0, 
/*102628*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 12, 14, 15,  // Results = #16
/*102637*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 16,  // Results = #17
/*102644*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                          MVT::v4f32, 2/*#Ops*/, 10, 17, 
                      // Src: (build_vector:{ *:[v4f32] } f32:{ *:[f32] }:$A, f32:{ *:[f32] }:$B, f32:{ *:[f32] }:$C, f32:{ *:[f32] }:$D) - Complexity = 403
                      // Dst: (VMRGEW:{ *:[v4f32] } (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$A, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$C, VSRC:{ *:[i32] }), 0:{ *:[i32] })), (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$B, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$D, VSRC:{ *:[i32] }), 0:{ *:[i32] })))
/*102652*/          /*Scope*/ 92, /*->102745*/
/*102653*/            OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*102655*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102658*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 3, 4,  // Results = #5
/*102666*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102669*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 1, 6,  // Results = #7
/*102677*/            OPC_EmitInteger, MVT::i32, 0, 
/*102680*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 5, 7, 8,  // Results = #9
/*102689*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 9,  // Results = #10
/*102696*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102699*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 2, 11,  // Results = #12
/*102707*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102710*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 0, 13,  // Results = #14
/*102718*/            OPC_EmitInteger, MVT::i32, 0, 
/*102721*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 12, 14, 15,  // Results = #16
/*102730*/            OPC_EmitNode1, TARGET_VAL(PPC::XVCVDPSP), 0,
                          MVT::v4i32, 1/*#Ops*/, 16,  // Results = #17
/*102737*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                          MVT::v4f32, 2/*#Ops*/, 10, 17, 
                      // Src: (build_vector:{ *:[v4f32] } f32:{ *:[f32] }:$D, f32:{ *:[f32] }:$C, f32:{ *:[f32] }:$B, f32:{ *:[f32] }:$A) - Complexity = 403
                      // Dst: (VMRGEW:{ *:[v4f32] } (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$A, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$C, VSRC:{ *:[i32] }), 0:{ *:[i32] })), (XVCVDPSP:{ *:[v4i32] } (XXPERMDI:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$B, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f32] }:$D, VSRC:{ *:[i32] }), 0:{ *:[i32] })))
/*102745*/          0, /*End of Scope*/
/*102746*/        0, /*End of Scope*/
/*102747*/      /*SwitchType*/ 81, MVT::v2f64,// ->102830
/*102749*/        OPC_CheckChild0Type, MVT::f64,
/*102751*/        OPC_RecordChild1, // #1 = $B
/*102752*/        OPC_CheckChild1Type, MVT::f64,
/*102754*/        OPC_Scope, 36, /*->102792*/ // 2 children in Scope
/*102756*/          OPC_CheckPatternPredicate, 30, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian())
/*102758*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102761*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 2,  // Results = #3
/*102769*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102772*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 4,  // Results = #5
/*102780*/          OPC_EmitInteger, MVT::i32, 0, 
/*102783*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v2f64, 3/*#Ops*/, 3, 5, 6, 
                    // Src: (build_vector:{ *:[v2f64] } f64:{ *:[f64] }:$A, f64:{ *:[f64] }:$B) - Complexity = 403
                    // Dst: (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f64] }:$A, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f64] }:$B, VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*102792*/        /*Scope*/ 36, /*->102829*/
/*102793*/          OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*102795*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102798*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 2,  // Results = #3
/*102806*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*102809*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 4,  // Results = #5
/*102817*/          OPC_EmitInteger, MVT::i32, 0, 
/*102820*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v2f64, 3/*#Ops*/, 3, 5, 6, 
                    // Src: (build_vector:{ *:[v2f64] } f64:{ *:[f64] }:$A, f64:{ *:[f64] }:$B) - Complexity = 403
                    // Dst: (XXPERMDI:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f64] }:$B, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[f64] }:$A, VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*102829*/        0, /*End of Scope*/
/*102830*/      0, // EndSwitchType
/*102831*/    0, /*End of Scope*/
/*102832*/  /*SwitchOpcode*/ 37|128,20/*2597*/, TARGET_VAL(ISD::SCALAR_TO_VECTOR),// ->105433
/*102836*/    OPC_Scope, 27|128,12/*1563*/, /*->104402*/ // 4 children in Scope
/*102839*/      OPC_MoveChild0,
/*102840*/      OPC_SwitchOpcode /*3 cases */, 105|128,5/*745*/, TARGET_VAL(PPCISD::MFVSR),// ->103590
/*102845*/        OPC_MoveChild0,
/*102846*/        OPC_SwitchOpcode /*4 cases */, 21|128,1/*149*/, TARGET_VAL(PPCISD::FCTIDZ),// ->103000
/*102851*/          OPC_MoveChild0,
/*102852*/          OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/*102855*/          OPC_RecordMemRef,
/*102856*/          OPC_RecordNode, // #0 = 'ld' chained node
/*102857*/          OPC_CheckFoldableChainNode,
/*102858*/          OPC_RecordChild1, // #1 = $A
/*102859*/          OPC_CheckPredicate, 20, // Predicate_unindexedload
/*102861*/          OPC_Scope, 32, /*->102895*/ // 2 children in Scope
/*102863*/            OPC_CheckPredicate, 23, // Predicate_load
/*102865*/            OPC_MoveParent,
/*102866*/            OPC_CheckType, MVT::f64,
/*102868*/            OPC_MoveParent,
/*102869*/            OPC_CheckType, MVT::i64,
/*102871*/            OPC_MoveParent,
/*102872*/            OPC_CheckType, MVT::v2i64,
/*102874*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*102876*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*102879*/            OPC_EmitMergeInputChains1_0,
/*102880*/            OPC_EmitNode1, TARGET_VAL(PPC::LXVDSX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*102888*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVDPSXDS), 0,
                          MVT::v2i64, 1/*#Ops*/, 4, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctidz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_load>>))) - Complexity = 422
                      // Dst: (XVCVDPSXDS:{ *:[v2i64] } (LXVDSX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$A))
/*102895*/          /*Scope*/ 103, /*->102999*/
/*102896*/            OPC_CheckPredicate, 25, // Predicate_extload
/*102898*/            OPC_CheckPredicate, 28, // Predicate_extloadf32
/*102900*/            OPC_MoveParent,
/*102901*/            OPC_CheckType, MVT::f64,
/*102903*/            OPC_MoveParent,
/*102904*/            OPC_CheckType, MVT::i64,
/*102906*/            OPC_MoveParent,
/*102907*/            OPC_CheckType, MVT::v2i64,
/*102909*/            OPC_Scope, 43, /*->102954*/ // 2 children in Scope
/*102911*/              OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*102913*/              OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$A #2 #3
/*102916*/              OPC_EmitMergeInputChains1_0,
/*102917*/              OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/*102925*/              OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/*102928*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*102936*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                            MVT::f64, 1/*#Ops*/, 6,  // Results = #7
/*102943*/              OPC_EmitInteger, MVT::i32, 0, 
/*102946*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                            MVT::v2i64, 2/*#Ops*/, 7, 8, 
                        // Src: (scalar_to_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctidz:{ *:[f64] } (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                        // Dst: (XXPERMDIs:{ *:[v2i64] } (XSCVDPSXDS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (DFLOADf32:{ *:[f32] } iaddrX4:{ *:[iPTR] }:$A), VSFRC:{ *:[i32] })), 0:{ *:[i32] })
/*102954*/            /*Scope*/ 43, /*->102998*/
/*102955*/              OPC_CheckPatternPredicate, 46, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->hasP9Vector())
/*102957*/              OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*102960*/              OPC_EmitMergeInputChains1_0,
/*102961*/              OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/*102969*/              OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/*102972*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*102980*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXDS), 0,
                            MVT::f64, 1/*#Ops*/, 6,  // Results = #7
/*102987*/              OPC_EmitInteger, MVT::i32, 0, 
/*102990*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                            MVT::v2i64, 2/*#Ops*/, 7, 8, 
                        // Src: (scalar_to_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctidz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                        // Dst: (XXPERMDIs:{ *:[v2i64] } (XSCVDPSXDS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (XFLOADf32:{ *:[f32] } xoaddr:{ *:[iPTR] }:$A), VSFRC:{ *:[i32] })), 0:{ *:[i32] })
/*102998*/            0, /*End of Scope*/
/*102999*/          0, /*End of Scope*/
/*103000*/        /*SwitchOpcode*/ 21|128,1/*149*/, TARGET_VAL(PPCISD::FCTIDUZ),// ->103153
/*103004*/          OPC_MoveChild0,
/*103005*/          OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/*103008*/          OPC_RecordMemRef,
/*103009*/          OPC_RecordNode, // #0 = 'ld' chained node
/*103010*/          OPC_CheckFoldableChainNode,
/*103011*/          OPC_RecordChild1, // #1 = $A
/*103012*/          OPC_CheckPredicate, 20, // Predicate_unindexedload
/*103014*/          OPC_Scope, 32, /*->103048*/ // 2 children in Scope
/*103016*/            OPC_CheckPredicate, 23, // Predicate_load
/*103018*/            OPC_MoveParent,
/*103019*/            OPC_CheckType, MVT::f64,
/*103021*/            OPC_MoveParent,
/*103022*/            OPC_CheckType, MVT::i64,
/*103024*/            OPC_MoveParent,
/*103025*/            OPC_CheckType, MVT::v2i64,
/*103027*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*103029*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103032*/            OPC_EmitMergeInputChains1_0,
/*103033*/            OPC_EmitNode1, TARGET_VAL(PPC::LXVDSX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*103041*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVDPUXDS), 0,
                          MVT::v2i64, 1/*#Ops*/, 4, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctiduz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_load>>))) - Complexity = 422
                      // Dst: (XVCVDPUXDS:{ *:[v2i64] } (LXVDSX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$A))
/*103048*/          /*Scope*/ 103, /*->103152*/
/*103049*/            OPC_CheckPredicate, 25, // Predicate_extload
/*103051*/            OPC_CheckPredicate, 28, // Predicate_extloadf32
/*103053*/            OPC_MoveParent,
/*103054*/            OPC_CheckType, MVT::f64,
/*103056*/            OPC_MoveParent,
/*103057*/            OPC_CheckType, MVT::i64,
/*103059*/            OPC_MoveParent,
/*103060*/            OPC_CheckType, MVT::v2i64,
/*103062*/            OPC_Scope, 43, /*->103107*/ // 2 children in Scope
/*103064*/              OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103066*/              OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$A #2 #3
/*103069*/              OPC_EmitMergeInputChains1_0,
/*103070*/              OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/*103078*/              OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/*103081*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*103089*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                            MVT::f64, 1/*#Ops*/, 6,  // Results = #7
/*103096*/              OPC_EmitInteger, MVT::i32, 0, 
/*103099*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                            MVT::v2i64, 2/*#Ops*/, 7, 8, 
                        // Src: (scalar_to_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctiduz:{ *:[f64] } (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                        // Dst: (XXPERMDIs:{ *:[v2i64] } (XSCVDPUXDS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (DFLOADf32:{ *:[f32] } iaddrX4:{ *:[iPTR] }:$A), VSFRC:{ *:[i32] })), 0:{ *:[i32] })
/*103107*/            /*Scope*/ 43, /*->103151*/
/*103108*/              OPC_CheckPatternPredicate, 46, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->hasP9Vector())
/*103110*/              OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103113*/              OPC_EmitMergeInputChains1_0,
/*103114*/              OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/*103122*/              OPC_EmitInteger, MVT::i32, PPC::VSFRCRegClassID,
/*103125*/              OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                            MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*103133*/              OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXDS), 0,
                            MVT::f64, 1/*#Ops*/, 6,  // Results = #7
/*103140*/              OPC_EmitInteger, MVT::i32, 0, 
/*103143*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                            MVT::v2i64, 2/*#Ops*/, 7, 8, 
                        // Src: (scalar_to_vector:{ *:[v2i64] } (PPCmfvsr:{ *:[i64] } (PPCfctiduz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                        // Dst: (XXPERMDIs:{ *:[v2i64] } (XSCVDPUXDS:{ *:[f64] } (COPY_TO_REGCLASS:{ *:[f64] } (XFLOADf32:{ *:[f32] } xoaddr:{ *:[iPTR] }:$A), VSFRC:{ *:[i32] })), 0:{ *:[i32] })
/*103151*/            0, /*End of Scope*/
/*103152*/          0, /*End of Scope*/
/*103153*/        /*SwitchOpcode*/ 86|128,1/*214*/, TARGET_VAL(PPCISD::FCTIWZ),// ->103371
/*103157*/          OPC_MoveChild0,
/*103158*/          OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/*103161*/          OPC_RecordMemRef,
/*103162*/          OPC_RecordNode, // #0 = 'ld' chained node
/*103163*/          OPC_CheckFoldableChainNode,
/*103164*/          OPC_RecordChild1, // #1 = $A
/*103165*/          OPC_CheckPredicate, 20, // Predicate_unindexedload
/*103167*/          OPC_Scope, 34, /*->103203*/ // 4 children in Scope
/*103169*/            OPC_CheckPredicate, 25, // Predicate_extload
/*103171*/            OPC_CheckPredicate, 28, // Predicate_extloadf32
/*103173*/            OPC_MoveParent,
/*103174*/            OPC_CheckType, MVT::f64,
/*103176*/            OPC_MoveParent,
/*103177*/            OPC_CheckType, MVT::i32,
/*103179*/            OPC_MoveParent,
/*103180*/            OPC_CheckType, MVT::v4i32,
/*103182*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103184*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103187*/            OPC_EmitMergeInputChains1_0,
/*103188*/            OPC_EmitNode1, TARGET_VAL(PPC::LXVWSX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*103196*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPSXWS), 0,
                          MVT::v4i32, 1/*#Ops*/, 4, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                      // Dst: (XVCVSPSXWS:{ *:[v4i32] } (LXVWSX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$A))
/*103203*/          /*Scope*/ 54, /*->103258*/
/*103204*/            OPC_CheckPredicate, 23, // Predicate_load
/*103206*/            OPC_MoveParent,
/*103207*/            OPC_CheckType, MVT::f64,
/*103209*/            OPC_MoveParent,
/*103210*/            OPC_CheckType, MVT::i32,
/*103212*/            OPC_MoveParent,
/*103213*/            OPC_CheckType, MVT::v4i32,
/*103215*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103217*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$A #2 #3
/*103220*/            OPC_EmitMergeInputChains1_0,
/*103221*/            OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103229*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXWS), 0,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*103236*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103239*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*103247*/            OPC_EmitInteger, MVT::i32, 1, 
/*103250*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 7, 8, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_load>>))) - Complexity = 422
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPSXWS:{ *:[f64] } (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$A)), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*103258*/          /*Scope*/ 56, /*->103315*/
/*103259*/            OPC_CheckPredicate, 25, // Predicate_extload
/*103261*/            OPC_CheckPredicate, 28, // Predicate_extloadf32
/*103263*/            OPC_MoveParent,
/*103264*/            OPC_CheckType, MVT::f64,
/*103266*/            OPC_MoveParent,
/*103267*/            OPC_CheckType, MVT::i32,
/*103269*/            OPC_MoveParent,
/*103270*/            OPC_CheckType, MVT::v4i32,
/*103272*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*103274*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103277*/            OPC_EmitMergeInputChains1_0,
/*103278*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/*103286*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXWSs), 0,
                          MVT::f32, 1/*#Ops*/, 4,  // Results = #5
/*103293*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103296*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*103304*/            OPC_EmitInteger, MVT::i32, 1, 
/*103307*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 7, 8, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPSXWSs:{ *:[f32] } (XFLOADf32:{ *:[f32] } xoaddr:{ *:[iPTR] }:$A)), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*103315*/          /*Scope*/ 54, /*->103370*/
/*103316*/            OPC_CheckPredicate, 23, // Predicate_load
/*103318*/            OPC_MoveParent,
/*103319*/            OPC_CheckType, MVT::f64,
/*103321*/            OPC_MoveParent,
/*103322*/            OPC_CheckType, MVT::i32,
/*103324*/            OPC_MoveParent,
/*103325*/            OPC_CheckType, MVT::v4i32,
/*103327*/            OPC_CheckPatternPredicate, 46, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->hasP9Vector())
/*103329*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103332*/            OPC_EmitMergeInputChains1_0,
/*103333*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103341*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSXWS), 0,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*103348*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103351*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*103359*/            OPC_EmitInteger, MVT::i32, 1, 
/*103362*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 7, 8, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_load>>))) - Complexity = 422
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPSXWS:{ *:[f64] } (XFLOADf64:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*103370*/          0, /*End of Scope*/
/*103371*/        /*SwitchOpcode*/ 86|128,1/*214*/, TARGET_VAL(PPCISD::FCTIWUZ),// ->103589
/*103375*/          OPC_MoveChild0,
/*103376*/          OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/*103379*/          OPC_RecordMemRef,
/*103380*/          OPC_RecordNode, // #0 = 'ld' chained node
/*103381*/          OPC_CheckFoldableChainNode,
/*103382*/          OPC_RecordChild1, // #1 = $A
/*103383*/          OPC_CheckPredicate, 20, // Predicate_unindexedload
/*103385*/          OPC_Scope, 34, /*->103421*/ // 4 children in Scope
/*103387*/            OPC_CheckPredicate, 25, // Predicate_extload
/*103389*/            OPC_CheckPredicate, 28, // Predicate_extloadf32
/*103391*/            OPC_MoveParent,
/*103392*/            OPC_CheckType, MVT::f64,
/*103394*/            OPC_MoveParent,
/*103395*/            OPC_CheckType, MVT::i32,
/*103397*/            OPC_MoveParent,
/*103398*/            OPC_CheckType, MVT::v4i32,
/*103400*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103402*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103405*/            OPC_EmitMergeInputChains1_0,
/*103406*/            OPC_EmitNode1, TARGET_VAL(PPC::LXVWSX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*103414*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPUXWS), 0,
                          MVT::v4i32, 1/*#Ops*/, 4, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                      // Dst: (XVCVSPUXWS:{ *:[v4i32] } (LXVWSX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$A))
/*103421*/          /*Scope*/ 54, /*->103476*/
/*103422*/            OPC_CheckPredicate, 23, // Predicate_load
/*103424*/            OPC_MoveParent,
/*103425*/            OPC_CheckType, MVT::f64,
/*103427*/            OPC_MoveParent,
/*103428*/            OPC_CheckType, MVT::i32,
/*103430*/            OPC_MoveParent,
/*103431*/            OPC_CheckType, MVT::v4i32,
/*103433*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103435*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$A #2 #3
/*103438*/            OPC_EmitMergeInputChains1_0,
/*103439*/            OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103447*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXWS), 0,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*103454*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103457*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*103465*/            OPC_EmitInteger, MVT::i32, 1, 
/*103468*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 7, 8, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_load>>))) - Complexity = 422
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPUXWS:{ *:[f64] } (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$A)), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*103476*/          /*Scope*/ 56, /*->103533*/
/*103477*/            OPC_CheckPredicate, 25, // Predicate_extload
/*103479*/            OPC_CheckPredicate, 28, // Predicate_extloadf32
/*103481*/            OPC_MoveParent,
/*103482*/            OPC_CheckType, MVT::f64,
/*103484*/            OPC_MoveParent,
/*103485*/            OPC_CheckType, MVT::i32,
/*103487*/            OPC_MoveParent,
/*103488*/            OPC_CheckType, MVT::v4i32,
/*103490*/            OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*103492*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103495*/            OPC_EmitMergeInputChains1_0,
/*103496*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf32), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f32, 2/*#Ops*/, 2, 3,  // Results = #4
/*103504*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXWSs), 0,
                          MVT::f32, 1/*#Ops*/, 4,  // Results = #5
/*103511*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103514*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*103522*/            OPC_EmitInteger, MVT::i32, 1, 
/*103525*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 7, 8, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadf32>>))) - Complexity = 422
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPUXWSs:{ *:[f32] } (XFLOADf32:{ *:[f32] } xoaddr:{ *:[iPTR] }:$A)), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*103533*/          /*Scope*/ 54, /*->103588*/
/*103534*/            OPC_CheckPredicate, 23, // Predicate_load
/*103536*/            OPC_MoveParent,
/*103537*/            OPC_CheckType, MVT::f64,
/*103539*/            OPC_MoveParent,
/*103540*/            OPC_CheckType, MVT::i32,
/*103542*/            OPC_MoveParent,
/*103543*/            OPC_CheckType, MVT::v4i32,
/*103545*/            OPC_CheckPatternPredicate, 46, // (PPCSubTarget->hasVSX()) && (!PPCSubTarget->hasP9Vector())
/*103547*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*103550*/            OPC_EmitMergeInputChains1_0,
/*103551*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103559*/            OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPUXWS), 0,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*103566*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103569*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v4i32, 2/*#Ops*/, 5, 6,  // Results = #7
/*103577*/            OPC_EmitInteger, MVT::i32, 1, 
/*103580*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                          MVT::v4i32, 2/*#Ops*/, 7, 8, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (PPCmfvsr:{ *:[i32] } (PPCfctiwuz:{ *:[f64] } (ld:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)<<P:Predicate_unindexedload>><<P:Predicate_load>>))) - Complexity = 422
                      // Dst: (XXSPLTW:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } (XSCVDPUXWS:{ *:[f64] } (XFLOADf64:{ *:[f64] } xoaddr:{ *:[iPTR] }:$A)), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*103588*/          0, /*End of Scope*/
/*103589*/        0, // EndSwitchOpcode
/*103590*/      /*SwitchOpcode*/ 95, TARGET_VAL(ISD::SIGN_EXTEND_INREG),// ->103688
/*103593*/        OPC_MoveChild0,
/*103594*/        OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/*103597*/        OPC_RecordMemRef,
/*103598*/        OPC_RecordNode, // #0 = 'ld' chained node
/*103599*/        OPC_CheckFoldableChainNode,
/*103600*/        OPC_RecordChild1, // #1 = $src
/*103601*/        OPC_CheckPredicate, 20, // Predicate_unindexedload
/*103603*/        OPC_CheckPredicate, 25, // Predicate_extload
/*103605*/        OPC_CheckPredicate, 2, // Predicate_extloadi8
/*103607*/        OPC_MoveParent,
/*103608*/        OPC_MoveChild1,
/*103609*/        OPC_CheckValueType, MVT::i8,
/*103611*/        OPC_MoveParent,
/*103612*/        OPC_SwitchType /*2 cases */, 35, MVT::i32,// ->103650
/*103615*/          OPC_MoveParent,
/*103616*/          OPC_CheckType, MVT::v4i32,
/*103618*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103620*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103623*/          OPC_EmitMergeInputChains1_0,
/*103624*/          OPC_EmitNode1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103632*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2Ws), 0|OPFL_Chain,
                        MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*103639*/          OPC_EmitInteger, MVT::i32, 1, 
/*103642*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTWs), 0|OPFL_Chain,
                        MVT::v4i32, 2/*#Ops*/, 5, 6, 
                    // Src: (scalar_to_vector:{ *:[v4i32] } (sext_inreg:{ *:[i32] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi8>>, i8:{ *:[Other] })) - Complexity = 419
                    // Dst: (XXSPLTWs:{ *:[v4i32] } (VEXTSB2Ws:{ *:[f64] } (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)), 1:{ *:[i32] })
/*103650*/        /*SwitchType*/ 35, MVT::i64,// ->103687
/*103652*/          OPC_MoveParent,
/*103653*/          OPC_CheckType, MVT::v2i64,
/*103655*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103657*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103660*/          OPC_EmitMergeInputChains1_0,
/*103661*/          OPC_EmitNode1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103669*/          OPC_EmitNode1, TARGET_VAL(PPC::VEXTSB2Ds), 0|OPFL_Chain,
                        MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*103676*/          OPC_EmitInteger, MVT::i32, 0, 
/*103679*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                        MVT::v2i64, 2/*#Ops*/, 5, 6, 
                    // Src: (scalar_to_vector:{ *:[v2i64] } (sext_inreg:{ *:[i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi8>>, i8:{ *:[Other] })) - Complexity = 419
                    // Dst: (XXPERMDIs:{ *:[v2i64] } (VEXTSB2Ds:{ *:[f64] } (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)), 0:{ *:[i32] })
/*103687*/        0, // EndSwitchType
/*103688*/      /*SwitchOpcode*/ 69|128,5/*709*/, TARGET_VAL(ISD::LOAD),// ->104401
/*103692*/        OPC_RecordMemRef,
/*103693*/        OPC_RecordNode, // #0 = 'ld' chained node
/*103694*/        OPC_RecordChild1, // #1 = $src
/*103695*/        OPC_CheckPredicate, 20, // Predicate_unindexedload
/*103697*/        OPC_Scope, 34, /*->103733*/ // 12 children in Scope
/*103699*/          OPC_CheckPredicate, 22, // Predicate_sextload
/*103701*/          OPC_CheckPredicate, 8, // Predicate_sextloadi32
/*103703*/          OPC_CheckType, MVT::i64,
/*103705*/          OPC_MoveParent,
/*103706*/          OPC_CheckType, MVT::v2i64,
/*103708*/          OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/*103710*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103713*/          OPC_EmitMergeInputChains1_0,
/*103714*/          OPC_EmitNode1, TARGET_VAL(PPC::LIWAX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103722*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103725*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::v2i64, 2/*#Ops*/, 4, 5, 
                    // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi32>>) - Complexity = 416
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } (LIWAX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*103733*/        /*Scope*/ 34, /*->103768*/
/*103734*/          OPC_CheckPredicate, 21, // Predicate_zextload
/*103736*/          OPC_CheckPredicate, 8, // Predicate_zextloadi32
/*103738*/          OPC_CheckType, MVT::i64,
/*103740*/          OPC_MoveParent,
/*103741*/          OPC_CheckType, MVT::v2i64,
/*103743*/          OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/*103745*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103748*/          OPC_EmitMergeInputChains1_0,
/*103749*/          OPC_EmitNode1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103757*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*103760*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                        MVT::v2i64, 2/*#Ops*/, 4, 5, 
                    // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi32>>) - Complexity = 416
                    // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*103768*/        /*Scope*/ 34, /*->103803*/
/*103769*/          OPC_CheckPredicate, 25, // Predicate_extload
/*103771*/          OPC_CheckPredicate, 2, // Predicate_extloadi8
/*103773*/          OPC_CheckType, MVT::i32,
/*103775*/          OPC_MoveParent,
/*103776*/          OPC_CheckType, MVT::v16i8,
/*103778*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103780*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103783*/          OPC_EmitMergeInputChains1_0,
/*103784*/          OPC_EmitInteger, MVT::i32, 7, 
/*103787*/          OPC_EmitNode1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #5
/*103795*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTBs), 0|OPFL_Chain,
                        MVT::v16i8, 2/*#Ops*/, 4, 5, 
                    // Src: (scalar_to_vector:{ *:[v16i8] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi8>>) - Complexity = 416
                    // Dst: (VSPLTBs:{ *:[v16i8] } 7:{ *:[i32] }, (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src))
/*103803*/        /*Scope*/ 95, /*->103899*/
/*103804*/          OPC_CheckPredicate, 21, // Predicate_zextload
/*103806*/          OPC_CheckPredicate, 2, // Predicate_zextloadi8
/*103808*/          OPC_SwitchType /*2 cases */, 57, MVT::i32,// ->103868
/*103811*/            OPC_MoveParent,
/*103812*/            OPC_SwitchType /*2 cases */, 25, MVT::v8i16,// ->103840
/*103815*/              OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103817*/              OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103820*/              OPC_EmitMergeInputChains1_0,
/*103821*/              OPC_EmitInteger, MVT::i32, 3, 
/*103824*/              OPC_EmitNode1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #5
/*103832*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTHs), 0|OPFL_Chain,
                            MVT::v8i16, 2/*#Ops*/, 4, 5, 
                        // Src: (scalar_to_vector:{ *:[v8i16] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>>) - Complexity = 416
                        // Dst: (VSPLTHs:{ *:[v8i16] } 3:{ *:[i32] }, (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src))
/*103840*/            /*SwitchType*/ 25, MVT::v4i32,// ->103867
/*103842*/              OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103844*/              OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103847*/              OPC_EmitMergeInputChains1_0,
/*103848*/              OPC_EmitNode1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain|OPFL_MemRefs,
                            MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103856*/              OPC_EmitInteger, MVT::i32, 1, 
/*103859*/              OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTWs), 0|OPFL_Chain,
                            MVT::v4i32, 2/*#Ops*/, 4, 5, 
                        // Src: (scalar_to_vector:{ *:[v4i32] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>>) - Complexity = 416
                        // Dst: (XXSPLTWs:{ *:[v4i32] } (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), 1:{ *:[i32] })
/*103867*/            0, // EndSwitchType
/*103868*/          /*SwitchType*/ 28, MVT::i64,// ->103898
/*103870*/            OPC_MoveParent,
/*103871*/            OPC_CheckType, MVT::v2i64,
/*103873*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103875*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103878*/            OPC_EmitMergeInputChains1_0,
/*103879*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSIBZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103887*/            OPC_EmitInteger, MVT::i32, 0, 
/*103890*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v2i64, 2/*#Ops*/, 4, 5, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi8>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v2i64] } (LXSIBZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), 0:{ *:[i32] })
/*103898*/          0, // EndSwitchType
/*103899*/        /*Scope*/ 34, /*->103934*/
/*103900*/          OPC_CheckPredicate, 25, // Predicate_extload
/*103902*/          OPC_CheckPredicate, 3, // Predicate_extloadi16
/*103904*/          OPC_CheckType, MVT::i32,
/*103906*/          OPC_MoveParent,
/*103907*/          OPC_CheckType, MVT::v8i16,
/*103909*/          OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103911*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103914*/          OPC_EmitMergeInputChains1_0,
/*103915*/          OPC_EmitInteger, MVT::i32, 3, 
/*103918*/          OPC_EmitNode1, TARGET_VAL(PPC::LXSIHZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #5
/*103926*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTHs), 0|OPFL_Chain,
                        MVT::v8i16, 2/*#Ops*/, 4, 5, 
                    // Src: (scalar_to_vector:{ *:[v8i16] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_extload>><<P:Predicate_extloadi16>>) - Complexity = 416
                    // Dst: (VSPLTHs:{ *:[v8i16] } 3:{ *:[i32] }, (LXSIHZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src))
/*103934*/        /*Scope*/ 66, /*->104001*/
/*103935*/          OPC_CheckPredicate, 21, // Predicate_zextload
/*103937*/          OPC_CheckPredicate, 3, // Predicate_zextloadi16
/*103939*/          OPC_SwitchType /*2 cases */, 28, MVT::i32,// ->103970
/*103942*/            OPC_MoveParent,
/*103943*/            OPC_CheckType, MVT::v4i32,
/*103945*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103947*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103950*/            OPC_EmitMergeInputChains1_0,
/*103951*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSIHZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103959*/            OPC_EmitInteger, MVT::i32, 1, 
/*103962*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTWs), 0|OPFL_Chain,
                          MVT::v4i32, 2/*#Ops*/, 4, 5, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi16>>) - Complexity = 416
                      // Dst: (XXSPLTWs:{ *:[v4i32] } (LXSIHZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), 1:{ *:[i32] })
/*103970*/          /*SwitchType*/ 28, MVT::i64,// ->104000
/*103972*/            OPC_MoveParent,
/*103973*/            OPC_CheckType, MVT::v2i64,
/*103975*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*103977*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*103980*/            OPC_EmitMergeInputChains1_0,
/*103981*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSIHZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*103989*/            OPC_EmitInteger, MVT::i32, 0, 
/*103992*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v2i64, 2/*#Ops*/, 4, 5, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi16>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v2i64] } (LXSIHZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), 0:{ *:[i32] })
/*104000*/          0, // EndSwitchType
/*104001*/        /*Scope*/ 59, /*->104061*/
/*104002*/          OPC_CheckPredicate, 23, // Predicate_load
/*104004*/          OPC_CheckType, MVT::i64,
/*104006*/          OPC_MoveParent,
/*104007*/          OPC_CheckType, MVT::v2i64,
/*104009*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*104011*/          OPC_Scope, 23, /*->104036*/ // 2 children in Scope
/*104013*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/*104016*/            OPC_EmitMergeInputChains1_0,
/*104017*/            OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104025*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104028*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                          MVT::v2i64, 2/*#Ops*/, 4, 5, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*104036*/          /*Scope*/ 23, /*->104060*/
/*104037*/            OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/*104040*/            OPC_EmitMergeInputChains1_0,
/*104041*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104049*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104052*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                          MVT::v2i64, 2/*#Ops*/, 4, 5, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2i64] } (XFLOADf64:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*104060*/          0, /*End of Scope*/
/*104061*/        /*Scope*/ 45, /*->104107*/
/*104062*/          OPC_CheckPredicate, 22, // Predicate_sextload
/*104064*/          OPC_CheckPredicate, 8, // Predicate_sextloadi32
/*104066*/          OPC_CheckType, MVT::i64,
/*104068*/          OPC_MoveParent,
/*104069*/          OPC_CheckType, MVT::v2i64,
/*104071*/          OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/*104073*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*104076*/          OPC_EmitMergeInputChains1_0,
/*104077*/          OPC_EmitNode1, TARGET_VAL(PPC::LIWAX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104085*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104088*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*104096*/          OPC_EmitInteger, MVT::i32, 2, 
/*104099*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                        MVT::v2i64, 2/*#Ops*/, 6, 7, 
                    // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi32>>) - Complexity = 416
                    // Dst: (XXPERMDIs:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f64] } (LIWAX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*104107*/        /*Scope*/ 45, /*->104153*/
/*104108*/          OPC_CheckPredicate, 21, // Predicate_zextload
/*104110*/          OPC_CheckPredicate, 8, // Predicate_zextloadi32
/*104112*/          OPC_CheckType, MVT::i64,
/*104114*/          OPC_MoveParent,
/*104115*/          OPC_CheckType, MVT::v2i64,
/*104117*/          OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/*104119*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*104122*/          OPC_EmitMergeInputChains1_0,
/*104123*/          OPC_EmitNode1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104131*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104134*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*104142*/          OPC_EmitInteger, MVT::i32, 2, 
/*104145*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                        MVT::v2i64, 2/*#Ops*/, 6, 7, 
                    // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_zextload>><<P:Predicate_zextloadi32>>) - Complexity = 416
                    // Dst: (XXPERMDIs:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f64] } (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*104153*/        /*Scope*/ 83, /*->104237*/
/*104154*/          OPC_CheckPredicate, 23, // Predicate_load
/*104156*/          OPC_CheckType, MVT::i32,
/*104158*/          OPC_MoveParent,
/*104159*/          OPC_CheckType, MVT::v4i32,
/*104161*/          OPC_Scope, 36, /*->104199*/ // 2 children in Scope
/*104163*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/*104165*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*104168*/            OPC_EmitMergeInputChains1_0,
/*104169*/            OPC_EmitNode1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104177*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104180*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*104188*/            OPC_EmitInteger, MVT::i32, 2, 
/*104191*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v4i32, 2/*#Ops*/, 6, 7, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[f64] } (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*104199*/          /*Scope*/ 36, /*->104236*/
/*104200*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/*104202*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*104205*/            OPC_EmitMergeInputChains1_0,
/*104206*/            OPC_EmitNode1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104214*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104217*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*104225*/            OPC_EmitInteger, MVT::i32, 1, 
/*104228*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSLDWIs), 0|OPFL_Chain,
                          MVT::v4i32, 2/*#Ops*/, 6, 7, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XXSLDWIs:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[f64] } (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*104236*/          0, /*End of Scope*/
/*104237*/        /*Scope*/ 80, /*->104318*/
/*104238*/          OPC_CheckPredicate, 22, // Predicate_sextload
/*104240*/          OPC_CheckPredicate, 3, // Predicate_sextloadi16
/*104242*/          OPC_SwitchType /*2 cases */, 35, MVT::i32,// ->104280
/*104245*/            OPC_MoveParent,
/*104246*/            OPC_CheckType, MVT::v4i32,
/*104248*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*104250*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*104253*/            OPC_EmitMergeInputChains1_0,
/*104254*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSIHZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104262*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2Ws), 0|OPFL_Chain,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*104269*/            OPC_EmitInteger, MVT::i32, 1, 
/*104272*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTWs), 0|OPFL_Chain,
                          MVT::v4i32, 2/*#Ops*/, 5, 6, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } (ld:{ *:[i32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi16>>) - Complexity = 416
                      // Dst: (XXSPLTWs:{ *:[v4i32] } (VEXTSH2Ws:{ *:[f64] } (LXSIHZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)), 1:{ *:[i32] })
/*104280*/          /*SwitchType*/ 35, MVT::i64,// ->104317
/*104282*/            OPC_MoveParent,
/*104283*/            OPC_CheckType, MVT::v2i64,
/*104285*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*104287*/            OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*104290*/            OPC_EmitMergeInputChains1_0,
/*104291*/            OPC_EmitNode1, TARGET_VAL(PPC::LXSIHZX), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104299*/            OPC_EmitNode1, TARGET_VAL(PPC::VEXTSH2Ds), 0|OPFL_Chain,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*104306*/            OPC_EmitInteger, MVT::i32, 0, 
/*104309*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v2i64, 2/*#Ops*/, 5, 6, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_sextload>><<P:Predicate_sextloadi16>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v2i64] } (VEXTSH2Ds:{ *:[f64] } (LXSIHZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src)), 0:{ *:[i32] })
/*104317*/          0, // EndSwitchType
/*104318*/        /*Scope*/ 81, /*->104400*/
/*104319*/          OPC_CheckPredicate, 23, // Predicate_load
/*104321*/          OPC_CheckType, MVT::i64,
/*104323*/          OPC_MoveParent,
/*104324*/          OPC_CheckType, MVT::v2i64,
/*104326*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*104328*/          OPC_Scope, 34, /*->104364*/ // 2 children in Scope
/*104330*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/*104333*/            OPC_EmitMergeInputChains1_0,
/*104334*/            OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104342*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104345*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*104353*/            OPC_EmitInteger, MVT::i32, 2, 
/*104356*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v2i64, 2/*#Ops*/, 6, 7, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f64] } (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*104364*/          /*Scope*/ 34, /*->104399*/
/*104365*/            OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/*104368*/            OPC_EmitMergeInputChains1_0,
/*104369*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*104377*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104380*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*104388*/            OPC_EmitInteger, MVT::i32, 2, 
/*104391*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v2i64, 2/*#Ops*/, 6, 7, 
                      // Src: (scalar_to_vector:{ *:[v2i64] } (ld:{ *:[i64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f64] } (XFLOADf64:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*104399*/          0, /*End of Scope*/
/*104400*/        0, /*End of Scope*/
/*104401*/      0, // EndSwitchOpcode
/*104402*/    /*Scope*/ 118|128,4/*630*/, /*->105034*/
/*104404*/      OPC_RecordChild0, // #0 = $A
/*104405*/      OPC_Scope, 16|128,4/*528*/, /*->104936*/ // 2 children in Scope
/*104408*/        OPC_CheckChild0Type, MVT::i32,
/*104410*/        OPC_SwitchType /*3 cases */, 43|128,1/*171*/, MVT::v4i32,// ->104585
/*104414*/          OPC_Scope, 9, /*->104425*/ // 3 children in Scope
/*104416*/            OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*104418*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::MTVSRWS), 0,
                          MVT::v4i32, 1/*#Ops*/, 0, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (MTVSRWS:{ *:[v4i32] } ?:{ *:[i32] }:$A)
/*104425*/          /*Scope*/ 57, /*->104483*/
/*104426*/            OPC_CheckPatternPredicate, 24, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian())
/*104428*/            OPC_EmitInteger, MVT::i64, 1, 
/*104431*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*104437*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104440*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 0, 3,  // Results = #4
/*104449*/            OPC_EmitInteger, MVT::i32, 32, 
/*104452*/            OPC_EmitInteger, MVT::i32, 31, 
/*104455*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                          MVT::i64, 3/*#Ops*/, 4, 5, 6,  // Results = #7
/*104464*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 7,  // Results = #8
/*104471*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104474*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 8, 9, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (SUBREG_TO_REG:{ *:[v4i32] } 1:{ *:[i64] }, (MTVSRD:{ *:[f64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] }), 32:{ *:[i32] }, 31:{ *:[i32] })), sub_64:{ *:[i32] })
/*104483*/          /*Scope*/ 100, /*->104584*/
/*104484*/            OPC_CheckPatternPredicate, 23, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian())
/*104486*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::v2i64, 0/*#Ops*/,  // Results = #1
/*104492*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*104498*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104501*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 0, 3,  // Results = #4
/*104510*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*104517*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104520*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::v2i64, 3/*#Ops*/, 1, 5, 6,  // Results = #7
/*104529*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::v2i64, 0/*#Ops*/,  // Results = #8
/*104535*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #9
/*104541*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104544*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 9, 0, 10,  // Results = #11
/*104553*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 11,  // Results = #12
/*104560*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104563*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::v2i64, 3/*#Ops*/, 8, 12, 13,  // Results = #14
/*104572*/            OPC_EmitInteger, MVT::i32, 2, 
/*104575*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 7, 14, 15, 
                      // Src: (scalar_to_vector:{ *:[v4i32] } i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (XXPERMDI:{ *:[v4i32] } (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), 2:{ *:[i32] })
/*104584*/          0, /*End of Scope*/
/*104585*/        /*SwitchType*/ 44|128,1/*172*/, MVT::v16i8,// ->104760
/*104588*/          OPC_Scope, 57, /*->104647*/ // 2 children in Scope
/*104590*/            OPC_CheckPatternPredicate, 24, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian())
/*104592*/            OPC_EmitInteger, MVT::i64, 1, 
/*104595*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*104601*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104604*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 0, 3,  // Results = #4
/*104613*/            OPC_EmitInteger, MVT::i32, 56, 
/*104616*/            OPC_EmitInteger, MVT::i32, 7, 
/*104619*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                          MVT::i64, 3/*#Ops*/, 4, 5, 6,  // Results = #7
/*104628*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 7,  // Results = #8
/*104635*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104638*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v16i8, 3/*#Ops*/, 1, 8, 9, 
                      // Src: (scalar_to_vector:{ *:[v16i8] } i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (SUBREG_TO_REG:{ *:[v16i8] } 1:{ *:[i64] }, (MTVSRD:{ *:[f64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] }), 56:{ *:[i32] }, 7:{ *:[i32] })), sub_64:{ *:[i32] })
/*104647*/          /*Scope*/ 111, /*->104759*/
/*104648*/            OPC_CheckPatternPredicate, 23, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian())
/*104650*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::v2i64, 0/*#Ops*/,  // Results = #1
/*104656*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*104662*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104665*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 0, 3,  // Results = #4
/*104674*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*104681*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104684*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::v2i64, 3/*#Ops*/, 1, 5, 6,  // Results = #7
/*104693*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::v2i64, 0/*#Ops*/,  // Results = #8
/*104699*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #9
/*104705*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104708*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 9, 0, 10,  // Results = #11
/*104717*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 11,  // Results = #12
/*104724*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104727*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::v2i64, 3/*#Ops*/, 8, 12, 13,  // Results = #14
/*104736*/            OPC_EmitInteger, MVT::i32, 2, 
/*104739*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 7, 14, 15,  // Results = #16
/*104748*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104751*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v16i8, 2/*#Ops*/, 16, 17, 
                      // Src: (scalar_to_vector:{ *:[v16i8] } i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } (XXPERMDI:{ *:[v4i32] } (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), 2:{ *:[i32] }), VSRC:{ *:[i32] })
/*104759*/          0, /*End of Scope*/
/*104760*/        /*SwitchType*/ 44|128,1/*172*/, MVT::v8i16,// ->104935
/*104763*/          OPC_Scope, 57, /*->104822*/ // 2 children in Scope
/*104765*/            OPC_CheckPatternPredicate, 24, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian())
/*104767*/            OPC_EmitInteger, MVT::i64, 1, 
/*104770*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*104776*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104779*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 0, 3,  // Results = #4
/*104788*/            OPC_EmitInteger, MVT::i32, 48, 
/*104791*/            OPC_EmitInteger, MVT::i32, 15, 
/*104794*/            OPC_EmitNode1, TARGET_VAL(PPC::RLDICR), 0,
                          MVT::i64, 3/*#Ops*/, 4, 5, 6,  // Results = #7
/*104803*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 7,  // Results = #8
/*104810*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104813*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v8i16, 3/*#Ops*/, 1, 8, 9, 
                      // Src: (scalar_to_vector:{ *:[v8i16] } i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (SUBREG_TO_REG:{ *:[v8i16] } 1:{ *:[i64] }, (MTVSRD:{ *:[f64] } (RLDICR:{ *:[i64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] }), 48:{ *:[i32] }, 15:{ *:[i32] })), sub_64:{ *:[i32] })
/*104822*/          /*Scope*/ 111, /*->104934*/
/*104823*/            OPC_CheckPatternPredicate, 23, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian())
/*104825*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::v2i64, 0/*#Ops*/,  // Results = #1
/*104831*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #2
/*104837*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104840*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 2, 0, 3,  // Results = #4
/*104849*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 4,  // Results = #5
/*104856*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104859*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::v2i64, 3/*#Ops*/, 1, 5, 6,  // Results = #7
/*104868*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::v2i64, 0/*#Ops*/,  // Results = #8
/*104874*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                          MVT::i64, 0/*#Ops*/,  // Results = #9
/*104880*/            OPC_EmitInteger, MVT::i32, PPC::sub_32,
/*104883*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::i64, 3/*#Ops*/, 9, 0, 10,  // Results = #11
/*104892*/            OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                          MVT::f64, 1/*#Ops*/, 11,  // Results = #12
/*104899*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104902*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                          MVT::v2i64, 3/*#Ops*/, 8, 12, 13,  // Results = #14
/*104911*/            OPC_EmitInteger, MVT::i32, 2, 
/*104914*/            OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v4i32, 3/*#Ops*/, 7, 14, 15,  // Results = #16
/*104923*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*104926*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::v8i16, 2/*#Ops*/, 16, 17, 
                      // Src: (scalar_to_vector:{ *:[v8i16] } i32:{ *:[i32] }:$A) - Complexity = 403
                      // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } (XXPERMDI:{ *:[v4i32] } (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } (INSERT_SUBREG:{ *:[i64] } (IMPLICIT_DEF:{ *:[i64] }), ?:{ *:[i32] }:$A, sub_32:{ *:[i32] })), sub_64:{ *:[i32] }), 2:{ *:[i32] }), VSRC:{ *:[i32] })
/*104934*/          0, /*End of Scope*/
/*104935*/        0, // EndSwitchType
/*104936*/      /*Scope*/ 96, /*->105033*/
/*104937*/        OPC_CheckChild0Type, MVT::i64,
/*104939*/        OPC_CheckType, MVT::v2i64,
/*104941*/        OPC_Scope, 24, /*->104967*/ // 2 children in Scope
/*104943*/          OPC_CheckPatternPredicate, 24, // (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian())
/*104945*/          OPC_EmitInteger, MVT::i64, 1, 
/*104948*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #2
/*104955*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104958*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                        MVT::v2i64, 3/*#Ops*/, 1, 2, 3, 
                    // Src: (scalar_to_vector:{ *:[v2i64] } i64:{ *:[i64] }:$A) - Complexity = 403
                    // Dst: (SUBREG_TO_REG:{ *:[v2i64] } 1:{ *:[i64] }, (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$A), sub_64:{ *:[i32] })
/*104967*/        /*Scope*/ 64, /*->105032*/
/*104968*/          OPC_CheckPatternPredicate, 23, // (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian())
/*104970*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                        MVT::v2i64, 0/*#Ops*/,  // Results = #1
/*104976*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #2
/*104983*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*104986*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                        MVT::v2i64, 3/*#Ops*/, 1, 2, 3,  // Results = #4
/*104995*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                        MVT::v2i64, 0/*#Ops*/,  // Results = #5
/*105001*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRD), 0,
                        MVT::f64, 1/*#Ops*/, 0,  // Results = #6
/*105008*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*105011*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                        MVT::v2i64, 3/*#Ops*/, 5, 6, 7,  // Results = #8
/*105020*/          OPC_EmitInteger, MVT::i32, 2, 
/*105023*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                        MVT::v2i64, 3/*#Ops*/, 4, 8, 9, 
                    // Src: (scalar_to_vector:{ *:[v2i64] } i64:{ *:[i64] }:$A) - Complexity = 403
                    // Dst: (XXPERMDI:{ *:[v2i64] } (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$A), sub_64:{ *:[i32] }), (INSERT_SUBREG:{ *:[v2i64] } (IMPLICIT_DEF:{ *:[v2i64] }), (MTVSRD:{ *:[f64] } ?:{ *:[i64] }:$A), sub_64:{ *:[i32] }), 2:{ *:[i32] })
/*105032*/        0, /*End of Scope*/
/*105033*/      0, /*End of Scope*/
/*105034*/    /*Scope*/ 102|128,1/*230*/, /*->105266*/
/*105036*/      OPC_MoveChild0,
/*105037*/      OPC_CheckOpcode, TARGET_VAL(ISD::LOAD),
/*105040*/      OPC_RecordMemRef,
/*105041*/      OPC_RecordNode, // #0 = 'ld' chained node
/*105042*/      OPC_RecordChild1, // #1 = $src
/*105043*/      OPC_CheckPredicate, 20, // Predicate_unindexedload
/*105045*/      OPC_CheckPredicate, 23, // Predicate_load
/*105047*/      OPC_SwitchType /*2 cases */, 5|128,1/*133*/, MVT::f64,// ->105184
/*105051*/        OPC_MoveParent,
/*105052*/        OPC_CheckType, MVT::v2f64,
/*105054*/        OPC_Scope, 52, /*->105108*/ // 2 children in Scope
/*105056*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*105058*/          OPC_Scope, 23, /*->105083*/ // 2 children in Scope
/*105060*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/*105063*/            OPC_EmitMergeInputChains1_0,
/*105064*/            OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*105072*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105075*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                          MVT::v2f64, 2/*#Ops*/, 4, 5, 
                      // Src: (scalar_to_vector:{ *:[v2f64] } (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*105083*/          /*Scope*/ 23, /*->105107*/
/*105084*/            OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/*105087*/            OPC_EmitMergeInputChains1_0,
/*105088*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*105096*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105099*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                          MVT::v2f64, 2/*#Ops*/, 4, 5, 
                      // Src: (scalar_to_vector:{ *:[v2f64] } (ld:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (COPY_TO_REGCLASS:{ *:[v2f64] } (XFLOADf64:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*105107*/          0, /*End of Scope*/
/*105108*/        /*Scope*/ 74, /*->105183*/
/*105109*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*105111*/          OPC_Scope, 34, /*->105147*/ // 2 children in Scope
/*105113*/            OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/*105116*/            OPC_EmitMergeInputChains1_0,
/*105117*/            OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*105125*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105128*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*105136*/            OPC_EmitInteger, MVT::i32, 2, 
/*105139*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v2f64, 2/*#Ops*/, 6, 7, 
                      // Src: (scalar_to_vector:{ *:[v2f64] } (ld:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[f64] } (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*105147*/          /*Scope*/ 34, /*->105182*/
/*105148*/            OPC_CheckComplexPat, /*CP*/2, /*#*/1, // SelectAddrIdxX4:$src #2 #3
/*105151*/            OPC_EmitMergeInputChains1_0,
/*105152*/            OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                          MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*105160*/            OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105163*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                          MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*105171*/            OPC_EmitInteger, MVT::i32, 2, 
/*105174*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                          MVT::v2f64, 2/*#Ops*/, 6, 7, 
                      // Src: (scalar_to_vector:{ *:[v2f64] } (ld:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                      // Dst: (XXPERMDIs:{ *:[v2f64] } (COPY_TO_REGCLASS:{ *:[f64] } (XFLOADf64:{ *:[f64] } xaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*105182*/          0, /*End of Scope*/
/*105183*/        0, /*End of Scope*/
/*105184*/      /*SwitchType*/ 79, MVT::f32,// ->105265
/*105186*/        OPC_MoveParent,
/*105187*/        OPC_CheckType, MVT::v4f32,
/*105189*/        OPC_Scope, 36, /*->105227*/ // 2 children in Scope
/*105191*/          OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/*105193*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105196*/          OPC_EmitMergeInputChains1_0,
/*105197*/          OPC_EmitNode1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*105205*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105208*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*105216*/          OPC_EmitInteger, MVT::i32, 2, 
/*105219*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDIs), 0|OPFL_Chain,
                        MVT::v4f32, 2/*#Ops*/, 6, 7, 
                    // Src: (scalar_to_vector:{ *:[v4f32] } (ld:{ *:[f32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                    // Dst: (XXPERMDIs:{ *:[v4f32] } (COPY_TO_REGCLASS:{ *:[f64] } (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 2:{ *:[i32] })
/*105227*/        /*Scope*/ 36, /*->105264*/
/*105228*/          OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/*105230*/          OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105233*/          OPC_EmitMergeInputChains1_0,
/*105234*/          OPC_EmitNode1, TARGET_VAL(PPC::LIWZX), 0|OPFL_Chain|OPFL_MemRefs,
                        MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*105242*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105245*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::f64, 2/*#Ops*/, 4, 5,  // Results = #6
/*105253*/          OPC_EmitInteger, MVT::i32, 1, 
/*105256*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSLDWIs), 0|OPFL_Chain,
                        MVT::v4f32, 2/*#Ops*/, 6, 7, 
                    // Src: (scalar_to_vector:{ *:[v4f32] } (ld:{ *:[f32] } xoaddr:{ *:[iPTR] }:$src)<<P:Predicate_unindexedload>><<P:Predicate_load>>) - Complexity = 416
                    // Dst: (XXSLDWIs:{ *:[v4f32] } (COPY_TO_REGCLASS:{ *:[f64] } (LIWZX:{ *:[f64] } xoaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] }), 1:{ *:[i32] })
/*105264*/        0, /*End of Scope*/
/*105265*/      0, // EndSwitchType
/*105266*/    /*Scope*/ 36|128,1/*164*/, /*->105432*/
/*105268*/      OPC_RecordChild0, // #0 = $A
/*105269*/      OPC_Scope, 93, /*->105364*/ // 2 children in Scope
/*105271*/        OPC_CheckChild0Type, MVT::f64,
/*105273*/        OPC_SwitchType /*2 cases */, 65, MVT::v2f64,// ->105341
/*105276*/          OPC_Scope, 17, /*->105295*/ // 2 children in Scope
/*105278*/            OPC_CheckPatternPredicate, 28, // (!PPCSubTarget->isLittleEndian())
/*105280*/            OPC_EmitInteger, MVT::i64, 1, 
/*105283*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*105286*/            OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v2f64, 3/*#Ops*/, 1, 0, 2, 
                      // Src: (scalar_to_vector:{ *:[v2f64] } f64:{ *:[f64] }:$A) - Complexity = 403
                      // Dst: (SUBREG_TO_REG:{ *:[v2f64] } 1:{ *:[i64] }, ?:{ *:[f64] }:$A, sub_64:{ *:[i32] })
/*105295*/          /*Scope*/ 44, /*->105340*/
/*105296*/            OPC_CheckPatternPredicate, 29, // (PPCSubTarget->isLittleEndian())
/*105298*/            OPC_EmitInteger, MVT::i64, 1, 
/*105301*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*105304*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v4i32, 3/*#Ops*/, 1, 0, 2,  // Results = #3
/*105313*/            OPC_EmitInteger, MVT::i64, 1, 
/*105316*/            OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*105319*/            OPC_EmitNode1, TARGET_VAL(TargetOpcode::SUBREG_TO_REG), 0,
                          MVT::v4i32, 3/*#Ops*/, 4, 0, 5,  // Results = #6
/*105328*/            OPC_EmitInteger, MVT::i32, 0, 
/*105331*/            OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                          MVT::v2f64, 3/*#Ops*/, 3, 6, 7, 
                      // Src: (scalar_to_vector:{ *:[v2f64] } f64:{ *:[f64] }:$A) - Complexity = 403
                      // Dst: (XXPERMDI:{ *:[v2f64] } (SUBREG_TO_REG:{ *:[v4i32] } 1:{ *:[i64] }, ?:{ *:[f64] }:$A, sub_64:{ *:[i32] }), (SUBREG_TO_REG:{ *:[v4i32] } 1:{ *:[i64] }, ?:{ *:[f64] }:$A, sub_64:{ *:[i32] }), 0:{ *:[i32] })
/*105340*/          0, /*End of Scope*/
/*105341*/        /*SwitchType*/ 20, MVT::v4f64,// ->105363
/*105343*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*105345*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                        MVT::v4f64, 0/*#Ops*/,  // Results = #1
/*105351*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*105354*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                        MVT::v4f64, 3/*#Ops*/, 1, 0, 2, 
                    // Src: (scalar_to_vector:{ *:[v4f64] } f64:{ *:[f64] }:$A) - Complexity = 3
                    // Dst: (INSERT_SUBREG:{ *:[v4f64] } (IMPLICIT_DEF:{ *:[v4f64] }), ?:{ *:[f64] }:$A, sub_64:{ *:[i32] })
/*105363*/        0, // EndSwitchType
/*105364*/      /*Scope*/ 66, /*->105431*/
/*105365*/        OPC_CheckChild0Type, MVT::f32,
/*105367*/        OPC_CheckType, MVT::v4f32,
/*105369*/        OPC_Scope, 9, /*->105380*/ // 3 children in Scope
/*105371*/          OPC_CheckPatternPredicate, 4, // (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian())
/*105373*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4f32, 1/*#Ops*/, 0, 
                    // Src: (scalar_to_vector:{ *:[v4f32] } f32:{ *:[f32] }:$A) - Complexity = 403
                    // Dst: (XSCVDPSPN:{ *:[v4f32] } ?:{ *:[f32] }:$A)
/*105380*/        /*Scope*/ 28, /*->105409*/
/*105381*/          OPC_CheckPatternPredicate, 5, // (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian())
/*105383*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #1
/*105390*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 0,  // Results = #2
/*105397*/          OPC_EmitInteger, MVT::i32, 1, 
/*105400*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 1, 2, 3, 
                    // Src: (scalar_to_vector:{ *:[v4f32] } f32:{ *:[f32] }:$A) - Complexity = 403
                    // Dst: (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$A), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$A), 1:{ *:[i32] })
/*105409*/        /*Scope*/ 20, /*->105430*/
/*105410*/          OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*105412*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::IMPLICIT_DEF), 0,
                        MVT::v4f32, 0/*#Ops*/,  // Results = #1
/*105418*/          OPC_EmitInteger, MVT::i32, PPC::sub_64,
/*105421*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::INSERT_SUBREG), 0,
                        MVT::v4f32, 3/*#Ops*/, 1, 0, 2, 
                    // Src: (scalar_to_vector:{ *:[v4f32] } f32:{ *:[f32] }:$A) - Complexity = 3
                    // Dst: (INSERT_SUBREG:{ *:[v4f32] } (IMPLICIT_DEF:{ *:[v4f32] }), ?:{ *:[f32] }:$A, sub_64:{ *:[i32] })
/*105430*/        0, /*End of Scope*/
/*105431*/      0, /*End of Scope*/
/*105432*/    0, /*End of Scope*/
/*105433*/  /*SwitchOpcode*/ 123, TARGET_VAL(PPCISD::LOAD_VEC_BE),// ->105559
/*105436*/    OPC_RecordMemRef,
/*105437*/    OPC_RecordNode, // #0 = 'PPCld_vec_be' chained node
/*105438*/    OPC_RecordChild1, // #1 = $src
/*105439*/    OPC_SwitchType /*6 cases */, 14, MVT::v2i64,// ->105456
/*105442*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*105444*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105447*/      OPC_EmitMergeInputChains1_0,
/*105448*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVD2X), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v2i64, 2/*#Ops*/, 2, 3, 
                // Src: (PPCld_vec_be:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (LXVD2X:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$src)
/*105456*/    /*SwitchType*/ 14, MVT::v4i32,// ->105472
/*105458*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*105460*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105463*/      OPC_EmitMergeInputChains1_0,
/*105464*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVW4X), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4i32, 2/*#Ops*/, 2, 3, 
                // Src: (PPCld_vec_be:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (LXVW4X:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src)
/*105472*/    /*SwitchType*/ 25, MVT::v8i16,// ->105499
/*105474*/      OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*105476*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105479*/      OPC_EmitMergeInputChains1_0,
/*105480*/      OPC_EmitNode1, TARGET_VAL(PPC::LXVH8X), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*105488*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*105491*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                    MVT::v8i16, 2/*#Ops*/, 4, 5, 
                // Src: (PPCld_vec_be:{ *:[v8i16] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } (LXVH8X:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src), VRRC:{ *:[i32] })
/*105499*/    /*SwitchType*/ 25, MVT::v16i8,// ->105526
/*105501*/      OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*105503*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105506*/      OPC_EmitMergeInputChains1_0,
/*105507*/      OPC_EmitNode1, TARGET_VAL(PPC::LXVB16X), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*105515*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*105518*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                    MVT::v16i8, 2/*#Ops*/, 4, 5, 
                // Src: (PPCld_vec_be:{ *:[v16i8] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } (LXVB16X:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$src), VRRC:{ *:[i32] })
/*105526*/    /*SwitchType*/ 14, MVT::v2f64,// ->105542
/*105528*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*105530*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105533*/      OPC_EmitMergeInputChains1_0,
/*105534*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVD2X), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v2f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPCld_vec_be:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (LXVD2X:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)
/*105542*/    /*SwitchType*/ 14, MVT::v4f32,// ->105558
/*105544*/      OPC_CheckPatternPredicate, 19, // (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian())
/*105546*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*105549*/      OPC_EmitMergeInputChains1_0,
/*105550*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVW4X), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4f32, 2/*#Ops*/, 2, 3, 
                // Src: (PPCld_vec_be:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (LXVW4X:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$src)
/*105558*/    0, // EndSwitchType
/*105559*/  /*SwitchOpcode*/ 69, TARGET_VAL(PPCISD::LD_SPLAT),// ->105631
/*105562*/    OPC_RecordMemRef,
/*105563*/    OPC_RecordNode, // #0 = 'PPCldsplat' chained node
/*105564*/    OPC_RecordChild1, // #1 = $A
/*105565*/    OPC_SwitchType /*4 cases */, 14, MVT::v2i64,// ->105582
/*105568*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*105570*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*105573*/      OPC_EmitMergeInputChains1_0,
/*105574*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVDSX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v2i64, 2/*#Ops*/, 2, 3, 
                // Src: (PPCldsplat:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$A) - Complexity = 412
                // Dst: (LXVDSX:{ *:[v2i64] } xoaddr:{ *:[iPTR] }:$A)
/*105582*/    /*SwitchType*/ 14, MVT::v4i32,// ->105598
/*105584*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*105586*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*105589*/      OPC_EmitMergeInputChains1_0,
/*105590*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVWSX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4i32, 2/*#Ops*/, 2, 3, 
                // Src: (PPCldsplat:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$A) - Complexity = 412
                // Dst: (LXVWSX:{ *:[v4i32] } xoaddr:{ *:[iPTR] }:$A)
/*105598*/    /*SwitchType*/ 14, MVT::v2f64,// ->105614
/*105600*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*105602*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*105605*/      OPC_EmitMergeInputChains1_0,
/*105606*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVDSX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v2f64, 2/*#Ops*/, 2, 3, 
                // Src: (PPCldsplat:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$A) - Complexity = 412
                // Dst: (LXVDSX:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$A)
/*105614*/    /*SwitchType*/ 14, MVT::v4f32,// ->105630
/*105616*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*105618*/      OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$A #2 #3
/*105621*/      OPC_EmitMergeInputChains1_0,
/*105622*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVWSX), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::v4f32, 2/*#Ops*/, 2, 3, 
                // Src: (PPCldsplat:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$A) - Complexity = 412
                // Dst: (LXVWSX:{ *:[v4f32] } xoaddr:{ *:[iPTR] }:$A)
/*105630*/    0, // EndSwitchType
/*105631*/  /*SwitchOpcode*/ 89, TARGET_VAL(PPCISD::VECSHL),// ->105723
/*105634*/    OPC_RecordChild0, // #0 = $src
/*105635*/    OPC_Scope, 54, /*->105691*/ // 2 children in Scope
/*105637*/      OPC_CheckChild0Type, MVT::v4i32,
/*105639*/      OPC_Scope, 20, /*->105661*/ // 2 children in Scope
/*105641*/        OPC_CheckChild1Same, 0,
/*105643*/        OPC_CheckChild2Integer, 2, 
/*105645*/        OPC_CheckType, MVT::v4i32,
/*105647*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*105649*/        OPC_EmitInteger, MVT::i32, 2, 
/*105652*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                      MVT::v4i32, 3/*#Ops*/, 0, 0, 1, 
                  // Src: (PPCvecshl:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$src, v4i32:{ *:[v4i32] }:$src, 2:{ *:[iPTR] }) - Complexity = 408
                  // Dst: (XXPERMDI:{ *:[v4i32] } ?:{ *:[v4i32] }:$src, ?:{ *:[v4i32] }:$src, 2:{ *:[i32] })
/*105661*/      /*Scope*/ 28, /*->105690*/
/*105662*/        OPC_RecordChild1, // #1 = $XB
/*105663*/        OPC_CheckChild1Type, MVT::v4i32,
/*105665*/        OPC_RecordChild2, // #2 = $SHW
/*105666*/        OPC_MoveChild2,
/*105667*/        OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*105670*/        OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*105672*/        OPC_CheckType, MVT::i32,
/*105674*/        OPC_MoveParent,
/*105675*/        OPC_CheckType, MVT::v4i32,
/*105677*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*105679*/        OPC_EmitConvertToTarget, 2,
/*105681*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSLDWI), 0,
                      MVT::v4i32, 3/*#Ops*/, 0, 1, 3, 
                  // Src: (PPCvecshl:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$SHW) - Complexity = 407
                  // Dst: (XXSLDWI:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XA, v4i32:{ *:[v4i32] }:$XB, (imm:{ *:[i32] }):$SHW)
/*105690*/      0, /*End of Scope*/
/*105691*/    /*Scope*/ 30, /*->105722*/
/*105692*/      OPC_CheckChild0Type, MVT::v16i8,
/*105694*/      OPC_RecordChild1, // #1 = $vB
/*105695*/      OPC_CheckChild1Type, MVT::v16i8,
/*105697*/      OPC_RecordChild2, // #2 = $SH
/*105698*/      OPC_MoveChild2,
/*105699*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*105702*/      OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*105704*/      OPC_CheckType, MVT::i32,
/*105706*/      OPC_MoveParent,
/*105707*/      OPC_CheckType, MVT::v16i8,
/*105709*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*105711*/      OPC_EmitConvertToTarget, 2,
/*105713*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLDOI), 0,
                    MVT::v16i8, 3/*#Ops*/, 0, 1, 3, 
                // Src: (PPCvecshl:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$SH) - Complexity = 7
                // Dst: (VSLDOI:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, (imm:{ *:[i32] }):$SH)
/*105722*/    0, /*End of Scope*/
/*105723*/  /*SwitchOpcode*/ 12|128,5/*652*/, TARGET_VAL(ISD::INSERT_VECTOR_ELT),// ->106379
/*105727*/    OPC_RecordChild0, // #0 = $A
/*105728*/    OPC_RecordChild1, // #1 = $B
/*105729*/    OPC_Scope, 32|128,1/*160*/, /*->105892*/ // 4 children in Scope
/*105732*/      OPC_CheckChild2Integer, 0, 
/*105734*/      OPC_SwitchType /*2 cases */, 68, MVT::v4i32,// ->105805
/*105737*/        OPC_Scope, 32, /*->105771*/ // 2 children in Scope
/*105739*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*105741*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*105748*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105751*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*105759*/          OPC_EmitInteger, MVT::i32, 12, 
/*105762*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 12:{ *:[i32] })
/*105771*/        /*Scope*/ 32, /*->105804*/
/*105772*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*105774*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*105781*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105784*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*105792*/          OPC_EmitInteger, MVT::i32, 0, 
/*105795*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*105804*/        0, /*End of Scope*/
/*105805*/      /*SwitchType*/ 84, MVT::v4f32,// ->105891
/*105807*/        OPC_Scope, 40, /*->105849*/ // 2 children in Scope
/*105809*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*105811*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*105818*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*105825*/          OPC_EmitInteger, MVT::i32, 3, 
/*105828*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*105837*/          OPC_EmitInteger, MVT::i32, 12, 
/*105840*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 12:{ *:[i32] })
/*105849*/        /*Scope*/ 40, /*->105890*/
/*105850*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*105852*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*105859*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*105866*/          OPC_EmitInteger, MVT::i32, 3, 
/*105869*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*105878*/          OPC_EmitInteger, MVT::i32, 0, 
/*105881*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 0:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 0:{ *:[i32] })
/*105890*/        0, /*End of Scope*/
/*105891*/      0, // EndSwitchType
/*105892*/    /*Scope*/ 32|128,1/*160*/, /*->106054*/
/*105894*/      OPC_CheckChild2Integer, 1, 
/*105896*/      OPC_SwitchType /*2 cases */, 68, MVT::v4i32,// ->105967
/*105899*/        OPC_Scope, 32, /*->105933*/ // 2 children in Scope
/*105901*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*105903*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*105910*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105913*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*105921*/          OPC_EmitInteger, MVT::i32, 8, 
/*105924*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 8:{ *:[i32] })
/*105933*/        /*Scope*/ 32, /*->105966*/
/*105934*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*105936*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*105943*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*105946*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*105954*/          OPC_EmitInteger, MVT::i32, 4, 
/*105957*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 4:{ *:[i32] })
/*105966*/        0, /*End of Scope*/
/*105967*/      /*SwitchType*/ 84, MVT::v4f32,// ->106053
/*105969*/        OPC_Scope, 40, /*->106011*/ // 2 children in Scope
/*105971*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*105973*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*105980*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*105987*/          OPC_EmitInteger, MVT::i32, 3, 
/*105990*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*105999*/          OPC_EmitInteger, MVT::i32, 8, 
/*106002*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 8:{ *:[i32] })
/*106011*/        /*Scope*/ 40, /*->106052*/
/*106012*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*106014*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*106021*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*106028*/          OPC_EmitInteger, MVT::i32, 3, 
/*106031*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*106040*/          OPC_EmitInteger, MVT::i32, 4, 
/*106043*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 1:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 4:{ *:[i32] })
/*106052*/        0, /*End of Scope*/
/*106053*/      0, // EndSwitchType
/*106054*/    /*Scope*/ 32|128,1/*160*/, /*->106216*/
/*106056*/      OPC_CheckChild2Integer, 2, 
/*106058*/      OPC_SwitchType /*2 cases */, 68, MVT::v4i32,// ->106129
/*106061*/        OPC_Scope, 32, /*->106095*/ // 2 children in Scope
/*106063*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*106065*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*106072*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106075*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*106083*/          OPC_EmitInteger, MVT::i32, 4, 
/*106086*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 4:{ *:[i32] })
/*106095*/        /*Scope*/ 32, /*->106128*/
/*106096*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*106098*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*106105*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106108*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*106116*/          OPC_EmitInteger, MVT::i32, 8, 
/*106119*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 8:{ *:[i32] })
/*106128*/        0, /*End of Scope*/
/*106129*/      /*SwitchType*/ 84, MVT::v4f32,// ->106215
/*106131*/        OPC_Scope, 40, /*->106173*/ // 2 children in Scope
/*106133*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*106135*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*106142*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*106149*/          OPC_EmitInteger, MVT::i32, 3, 
/*106152*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*106161*/          OPC_EmitInteger, MVT::i32, 4, 
/*106164*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 4:{ *:[i32] })
/*106173*/        /*Scope*/ 40, /*->106214*/
/*106174*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*106176*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*106183*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*106190*/          OPC_EmitInteger, MVT::i32, 3, 
/*106193*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*106202*/          OPC_EmitInteger, MVT::i32, 8, 
/*106205*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 2:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 8:{ *:[i32] })
/*106214*/        0, /*End of Scope*/
/*106215*/      0, // EndSwitchType
/*106216*/    /*Scope*/ 32|128,1/*160*/, /*->106378*/
/*106218*/      OPC_CheckChild2Integer, 3, 
/*106220*/      OPC_SwitchType /*2 cases */, 68, MVT::v4i32,// ->106291
/*106223*/        OPC_Scope, 32, /*->106257*/ // 2 children in Scope
/*106225*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*106227*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*106234*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106237*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*106245*/          OPC_EmitInteger, MVT::i32, 0, 
/*106248*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 0:{ *:[i32] })
/*106257*/        /*Scope*/ 32, /*->106290*/
/*106258*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*106260*/          OPC_EmitNode1, TARGET_VAL(PPC::MTVSRWZ), 0,
                        MVT::f64, 1/*#Ops*/, 1,  // Results = #2
/*106267*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106270*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*106278*/          OPC_EmitInteger, MVT::i32, 12, 
/*106281*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4i32, 3/*#Ops*/, 0, 4, 5, 
                    // Src: (insertelt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, i32:{ *:[i32] }:$B, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, (COPY_TO_REGCLASS:{ *:[v4i32] } (MTVSRWZ:{ *:[f64] } ?:{ *:[i32] }:$B), VSRC:{ *:[i32] }), 12:{ *:[i32] })
/*106290*/        0, /*End of Scope*/
/*106291*/      /*SwitchType*/ 84, MVT::v4f32,// ->106377
/*106293*/        OPC_Scope, 40, /*->106335*/ // 2 children in Scope
/*106295*/          OPC_CheckPatternPredicate, 1, // (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian())
/*106297*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*106304*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*106311*/          OPC_EmitInteger, MVT::i32, 3, 
/*106314*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*106323*/          OPC_EmitInteger, MVT::i32, 0, 
/*106326*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 0:{ *:[i32] })
/*106335*/        /*Scope*/ 40, /*->106376*/
/*106336*/          OPC_CheckPatternPredicate, 0, // (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian())
/*106338*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #2
/*106345*/          OPC_EmitNode1, TARGET_VAL(PPC::XSCVDPSPN), 0,
                        MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*106352*/          OPC_EmitInteger, MVT::i32, 3, 
/*106355*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSLDWI), 0,
                        MVT::v4f32, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*106364*/          OPC_EmitInteger, MVT::i32, 12, 
/*106367*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                        MVT::v4f32, 3/*#Ops*/, 0, 5, 6, 
                    // Src: (insertelt:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, f32:{ *:[f32] }:$B, 3:{ *:[iPTR] }) - Complexity = 408
                    // Dst: (XXINSERTW:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, (XXSLDWI:{ *:[v4f32] } (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), (XSCVDPSPN:{ *:[v4i32] } ?:{ *:[f32] }:$B), 3:{ *:[i32] }), 12:{ *:[i32] })
/*106376*/        0, /*End of Scope*/
/*106377*/      0, // EndSwitchType
/*106378*/    0, /*End of Scope*/
/*106379*/  /*SwitchOpcode*/ 31, TARGET_VAL(PPCISD::XXPERMDI),// ->106413
/*106382*/    OPC_RecordChild0, // #0 = $XA
/*106383*/    OPC_CheckChild0Type, MVT::v2i64,
/*106385*/    OPC_RecordChild1, // #1 = $XB
/*106386*/    OPC_CheckChild1Type, MVT::v2i64,
/*106388*/    OPC_RecordChild2, // #2 = $DM
/*106389*/    OPC_MoveChild2,
/*106390*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*106393*/    OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*106395*/    OPC_CheckType, MVT::i32,
/*106397*/    OPC_MoveParent,
/*106398*/    OPC_CheckType, MVT::v2i64,
/*106400*/    OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106402*/    OPC_EmitConvertToTarget, 2,
/*106404*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                  MVT::v2i64, 3/*#Ops*/, 0, 1, 3, 
              // Src: (PPCxxpermdi:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$XA, v2i64:{ *:[v2i64] }:$XB, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$DM) - Complexity = 407
              // Dst: (XXPERMDI:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$XA, v2i64:{ *:[v2i64] }:$XB, (imm:{ *:[i32] }):$DM)
/*106413*/  /*SwitchOpcode*/ 27, TARGET_VAL(PPCISD::XXSPLT),// ->106443
/*106416*/    OPC_RecordChild0, // #0 = $XB
/*106417*/    OPC_CheckChild0Type, MVT::v4i32,
/*106419*/    OPC_RecordChild1, // #1 = $UIM
/*106420*/    OPC_MoveChild1,
/*106421*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*106424*/    OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*106426*/    OPC_CheckType, MVT::i32,
/*106428*/    OPC_MoveParent,
/*106429*/    OPC_CheckType, MVT::v4i32,
/*106431*/    OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106433*/    OPC_EmitConvertToTarget, 1,
/*106435*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSPLTW), 0,
                  MVT::v4i32, 2/*#Ops*/, 0, 2, 
              // Src: (PPCxxsplt:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$UIM) - Complexity = 407
              // Dst: (XXSPLTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XB, (imm:{ *:[i32] }):$UIM)
/*106443*/  /*SwitchOpcode*/ 96, TARGET_VAL(PPCISD::VECINSERT),// ->106542
/*106446*/    OPC_RecordChild0, // #0 = $XTi
/*106447*/    OPC_Scope, 30, /*->106479*/ // 3 children in Scope
/*106449*/      OPC_CheckChild0Type, MVT::v4i32,
/*106451*/      OPC_RecordChild1, // #1 = $XB
/*106452*/      OPC_CheckChild1Type, MVT::v4i32,
/*106454*/      OPC_RecordChild2, // #2 = $UIM
/*106455*/      OPC_MoveChild2,
/*106456*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*106459*/      OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*106461*/      OPC_CheckType, MVT::i32,
/*106463*/      OPC_MoveParent,
/*106464*/      OPC_CheckType, MVT::v4i32,
/*106466*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*106468*/      OPC_EmitConvertToTarget, 2,
/*106470*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXINSERTW), 0,
                    MVT::v4i32, 3/*#Ops*/, 0, 1, 3, 
                // Src: (PPCvecinsert:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XTi, v4i32:{ *:[v4i32] }:$XB, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$UIM) - Complexity = 407
                // Dst: (XXINSERTW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$XTi, v4i32:{ *:[v4i32] }:$XB, (imm:{ *:[i32] }):$UIM)
/*106479*/    /*Scope*/ 30, /*->106510*/
/*106480*/      OPC_CheckChild0Type, MVT::v16i8,
/*106482*/      OPC_RecordChild1, // #1 = $vB
/*106483*/      OPC_CheckChild1Type, MVT::v16i8,
/*106485*/      OPC_RecordChild2, // #2 = $UIM
/*106486*/      OPC_MoveChild2,
/*106487*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*106490*/      OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*106492*/      OPC_CheckType, MVT::i32,
/*106494*/      OPC_MoveParent,
/*106495*/      OPC_CheckType, MVT::v16i8,
/*106497*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*106499*/      OPC_EmitConvertToTarget, 2,
/*106501*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VINSERTB), 0,
                    MVT::v16i8, 3/*#Ops*/, 0, 3, 1, 
                // Src: (PPCvecinsert:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vDi, v16i8:{ *:[v16i8] }:$vB, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$UIM) - Complexity = 7
                // Dst: (VINSERTB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vDi, (imm:{ *:[i32] }):$UIM, v16i8:{ *:[v16i8] }:$vB)
/*106510*/    /*Scope*/ 30, /*->106541*/
/*106511*/      OPC_CheckChild0Type, MVT::v8i16,
/*106513*/      OPC_RecordChild1, // #1 = $vB
/*106514*/      OPC_CheckChild1Type, MVT::v8i16,
/*106516*/      OPC_RecordChild2, // #2 = $UIM
/*106517*/      OPC_MoveChild2,
/*106518*/      OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*106521*/      OPC_CheckPredicate, 13, // Predicate_imm32SExt16
/*106523*/      OPC_CheckType, MVT::i32,
/*106525*/      OPC_MoveParent,
/*106526*/      OPC_CheckType, MVT::v8i16,
/*106528*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*106530*/      OPC_EmitConvertToTarget, 2,
/*106532*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VINSERTH), 0,
                    MVT::v8i16, 3/*#Ops*/, 0, 3, 1, 
                // Src: (PPCvecinsert:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vDi, v8i16:{ *:[v8i16] }:$vB, (imm:{ *:[i32] })<<P:Predicate_imm32SExt16>>:$UIM) - Complexity = 7
                // Dst: (VINSERTH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vDi, (imm:{ *:[i32] }):$UIM, v8i16:{ *:[v8i16] }:$vB)
/*106541*/    0, /*End of Scope*/
/*106542*/  /*SwitchOpcode*/ 84, TARGET_VAL(PPCISD::XXSWAPD),// ->106629
/*106545*/    OPC_RecordNode, // #0 = 'PPCxxswapd' chained node
/*106546*/    OPC_RecordChild1, // #1 = $src
/*106547*/    OPC_SwitchType /*4 cases */, 18, MVT::v2i64,// ->106568
/*106550*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106552*/      OPC_EmitMergeInputChains1_0,
/*106553*/      OPC_EmitInteger, MVT::i32, 2, 
/*106556*/      OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                    MVT::v2i64, 3/*#Ops*/, 1, 1, 2,  // Results = #3
/*106565*/      OPC_CompleteMatch, 1, 3, 
                 // Src: (PPCxxswapd:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$src) - Complexity = 403
                 // Dst: (XXPERMDI:{ *:[v2i64] } ?:{ *:[v2i64] }:$src, ?:{ *:[v2i64] }:$src, 2:{ *:[i32] })
/*106568*/    /*SwitchType*/ 18, MVT::v4i32,// ->106588
/*106570*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106572*/      OPC_EmitMergeInputChains1_0,
/*106573*/      OPC_EmitInteger, MVT::i32, 2, 
/*106576*/      OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                    MVT::v4i32, 3/*#Ops*/, 1, 1, 2,  // Results = #3
/*106585*/      OPC_CompleteMatch, 1, 3, 
                 // Src: (PPCxxswapd:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$src) - Complexity = 403
                 // Dst: (XXPERMDI:{ *:[v4i32] } ?:{ *:[v4i32] }:$src, ?:{ *:[v4i32] }:$src, 2:{ *:[i32] })
/*106588*/    /*SwitchType*/ 18, MVT::v2f64,// ->106608
/*106590*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106592*/      OPC_EmitMergeInputChains1_0,
/*106593*/      OPC_EmitInteger, MVT::i32, 2, 
/*106596*/      OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                    MVT::v2f64, 3/*#Ops*/, 1, 1, 2,  // Results = #3
/*106605*/      OPC_CompleteMatch, 1, 3, 
                 // Src: (PPCxxswapd:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$src) - Complexity = 403
                 // Dst: (XXPERMDI:{ *:[v2f64] } ?:{ *:[v2f64] }:$src, ?:{ *:[v2f64] }:$src, 2:{ *:[i32] })
/*106608*/    /*SwitchType*/ 18, MVT::v4f32,// ->106628
/*106610*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106612*/      OPC_EmitMergeInputChains1_0,
/*106613*/      OPC_EmitInteger, MVT::i32, 2, 
/*106616*/      OPC_EmitNode1, TARGET_VAL(PPC::XXPERMDI), 0,
                    MVT::v4f32, 3/*#Ops*/, 1, 1, 2,  // Results = #3
/*106625*/      OPC_CompleteMatch, 1, 3, 
                 // Src: (PPCxxswapd:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$src) - Complexity = 403
                 // Dst: (XXPERMDI:{ *:[v4f32] } ?:{ *:[v4f32] }:$src, ?:{ *:[v4f32] }:$src, 2:{ *:[i32] })
/*106628*/    0, // EndSwitchType
/*106629*/  /*SwitchOpcode*/ 81|128,2/*337*/, TARGET_VAL(ISD::VSELECT),// ->106970
/*106633*/    OPC_RecordChild0, // #0 = $vA
/*106634*/    OPC_Scope, 17, /*->106653*/ // 10 children in Scope
/*106636*/      OPC_CheckChild0Type, MVT::v4i32,
/*106638*/      OPC_RecordChild1, // #1 = $vB
/*106639*/      OPC_RecordChild2, // #2 = $vC
/*106640*/      OPC_CheckType, MVT::v4i32,
/*106642*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106644*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                    MVT::v4i32, 3/*#Ops*/, 2, 1, 0, 
                // Src: (vselect:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 403
                // Dst: (XXSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$vC, ?:{ *:[v4i32] }:$vB, ?:{ *:[v4i32] }:$vA)
/*106653*/    /*Scope*/ 33|128,1/*161*/, /*->106816*/
/*106655*/      OPC_RecordChild1, // #1 = $vB
/*106656*/      OPC_RecordChild2, // #2 = $vC
/*106657*/      OPC_SwitchType /*3 cases */, 11, MVT::v2i64,// ->106671
/*106660*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106662*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                      MVT::v2i64, 3/*#Ops*/, 2, 1, 0, 
                  // Src: (vselect:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, v2i64:{ *:[v2i64] }:$vC) - Complexity = 403
                  // Dst: (XXSEL:{ *:[v2i64] } ?:{ *:[v2i64] }:$vC, ?:{ *:[v2i64] }:$vB, ?:{ *:[v2i64] }:$vA)
/*106671*/      /*SwitchType*/ 70, MVT::v16i8,// ->106743
/*106673*/        OPC_Scope, 55, /*->106730*/ // 2 children in Scope
/*106675*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106677*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106680*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*106688*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106691*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*106699*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106702*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 7,  // Results = #8
/*106710*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSEL), 0,
                        MVT::v4i32, 3/*#Ops*/, 4, 6, 8,  // Results = #9
/*106719*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*106722*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v16i8, 2/*#Ops*/, 9, 10, 
                    // Src: (vselect:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v16i8:{ *:[v16i8] }:$vC) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v16i8] } (XXSEL:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$vC, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$vB, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v16i8] }:$vA, VSRC:{ *:[i32] })), VRRC:{ *:[i32] })
/*106730*/        /*Scope*/ 11, /*->106742*/
/*106731*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*106733*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VSEL), 0,
                        MVT::v16i8, 3/*#Ops*/, 2, 1, 0, 
                    // Src: (vselect:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v16i8:{ *:[v16i8] }:$vC) - Complexity = 3
                    // Dst: (VSEL:{ *:[v16i8] } ?:{ *:[v16i8] }:$vC, ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*106742*/        0, /*End of Scope*/
/*106743*/      /*SwitchType*/ 70, MVT::v8i16,// ->106815
/*106745*/        OPC_Scope, 55, /*->106802*/ // 2 children in Scope
/*106747*/          OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106749*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106752*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 2, 3,  // Results = #4
/*106760*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106763*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 1, 5,  // Results = #6
/*106771*/          OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*106774*/          OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v4i32, 2/*#Ops*/, 0, 7,  // Results = #8
/*106782*/          OPC_EmitNode1, TARGET_VAL(PPC::XXSEL), 0,
                        MVT::v4i32, 3/*#Ops*/, 4, 6, 8,  // Results = #9
/*106791*/          OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*106794*/          OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                        MVT::v8i16, 2/*#Ops*/, 9, 10, 
                    // Src: (vselect:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC) - Complexity = 403
                    // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } (XXSEL:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$vC, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$vB, VSRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$vA, VSRC:{ *:[i32] })), VRRC:{ *:[i32] })
/*106802*/        /*Scope*/ 11, /*->106814*/
/*106803*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*106805*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VSEL), 0,
                        MVT::v8i16, 3/*#Ops*/, 2, 1, 0, 
                    // Src: (vselect:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, v8i16:{ *:[v8i16] }:$vC) - Complexity = 3
                    // Dst: (VSEL:{ *:[v8i16] } ?:{ *:[v8i16] }:$vC, ?:{ *:[v8i16] }:$vB, ?:{ *:[v8i16] }:$vA)
/*106814*/        0, /*End of Scope*/
/*106815*/      0, // EndSwitchType
/*106816*/    /*Scope*/ 17, /*->106834*/
/*106817*/      OPC_CheckChild0Type, MVT::v4i32,
/*106819*/      OPC_RecordChild1, // #1 = $vB
/*106820*/      OPC_RecordChild2, // #2 = $vC
/*106821*/      OPC_CheckType, MVT::v4i32,
/*106823*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*106825*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSEL), 0,
                    MVT::v4i32, 3/*#Ops*/, 2, 1, 0, 
                // Src: (vselect:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, v4i32:{ *:[v4i32] }:$vC) - Complexity = 3
                // Dst: (VSEL:{ *:[v4i32] } ?:{ *:[v4i32] }:$vC, ?:{ *:[v4i32] }:$vB, ?:{ *:[v4i32] }:$vA)
/*106834*/    /*Scope*/ 15, /*->106850*/
/*106835*/      OPC_RecordChild1, // #1 = $vB
/*106836*/      OPC_RecordChild2, // #2 = $vC
/*106837*/      OPC_CheckType, MVT::v2i64,
/*106839*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*106841*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSEL), 0,
                    MVT::v2i64, 3/*#Ops*/, 2, 1, 0, 
                // Src: (vselect:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, v2i64:{ *:[v2i64] }:$vC) - Complexity = 3
                // Dst: (VSEL:{ *:[v2i64] } ?:{ *:[v2i64] }:$vC, ?:{ *:[v2i64] }:$vB, ?:{ *:[v2i64] }:$vA)
/*106850*/    /*Scope*/ 17, /*->106868*/
/*106851*/      OPC_CheckChild0Type, MVT::v4i1,
/*106853*/      OPC_RecordChild1, // #1 = $FRC
/*106854*/      OPC_RecordChild2, // #2 = $FRB
/*106855*/      OPC_CheckType, MVT::v4i1,
/*106857*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*106859*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELbb), 0,
                    MVT::v4i1, 3/*#Ops*/, 0, 2, 1, 
                // Src: (vselect:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRC, v4i1:{ *:[v4i1] }:$FRB) - Complexity = 3
                // Dst: (QVFSELbb:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB, v4i1:{ *:[v4i1] }:$FRC)
/*106868*/    /*Scope*/ 17, /*->106886*/
/*106869*/      OPC_CheckChild0Type, MVT::v4i32,
/*106871*/      OPC_RecordChild1, // #1 = $vB
/*106872*/      OPC_RecordChild2, // #2 = $vC
/*106873*/      OPC_CheckType, MVT::v4f32,
/*106875*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106877*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                    MVT::v4f32, 3/*#Ops*/, 2, 1, 0, 
                // Src: (vselect:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$vA, v4f32:{ *:[v4f32] }:$vB, v4f32:{ *:[v4f32] }:$vC) - Complexity = 403
                // Dst: (XXSEL:{ *:[v4f32] } ?:{ *:[v4f32] }:$vC, ?:{ *:[v4f32] }:$vB, ?:{ *:[v4i32] }:$vA)
/*106886*/    /*Scope*/ 15, /*->106902*/
/*106887*/      OPC_RecordChild1, // #1 = $vB
/*106888*/      OPC_RecordChild2, // #2 = $vC
/*106889*/      OPC_CheckType, MVT::v2f64,
/*106891*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*106893*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXSEL), 0,
                    MVT::v2f64, 3/*#Ops*/, 2, 1, 0, 
                // Src: (vselect:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$vA, v2f64:{ *:[v2f64] }:$vB, v2f64:{ *:[v2f64] }:$vC) - Complexity = 403
                // Dst: (XXSEL:{ *:[v2f64] } ?:{ *:[v2f64] }:$vC, ?:{ *:[v2f64] }:$vB, ?:{ *:[v2i64] }:$vA)
/*106902*/    /*Scope*/ 17, /*->106920*/
/*106903*/      OPC_CheckChild0Type, MVT::v4i32,
/*106905*/      OPC_RecordChild1, // #1 = $vB
/*106906*/      OPC_RecordChild2, // #2 = $vC
/*106907*/      OPC_CheckType, MVT::v4f32,
/*106909*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*106911*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSEL), 0,
                    MVT::v4f32, 3/*#Ops*/, 2, 1, 0, 
                // Src: (vselect:{ *:[v4f32] } v4i32:{ *:[v4i32] }:$vA, v4f32:{ *:[v4f32] }:$vB, v4f32:{ *:[v4f32] }:$vC) - Complexity = 3
                // Dst: (VSEL:{ *:[v4f32] } ?:{ *:[v4f32] }:$vC, ?:{ *:[v4f32] }:$vB, ?:{ *:[v4i32] }:$vA)
/*106920*/    /*Scope*/ 15, /*->106936*/
/*106921*/      OPC_RecordChild1, // #1 = $vB
/*106922*/      OPC_RecordChild2, // #2 = $vC
/*106923*/      OPC_CheckType, MVT::v2f64,
/*106925*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*106927*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VSEL), 0,
                    MVT::v2f64, 3/*#Ops*/, 2, 1, 0, 
                // Src: (vselect:{ *:[v2f64] } v2i64:{ *:[v2i64] }:$vA, v2f64:{ *:[v2f64] }:$vB, v2f64:{ *:[v2f64] }:$vC) - Complexity = 3
                // Dst: (VSEL:{ *:[v2f64] } ?:{ *:[v2f64] }:$vC, ?:{ *:[v2f64] }:$vB, ?:{ *:[v2i64] }:$vA)
/*106936*/    /*Scope*/ 32, /*->106969*/
/*106937*/      OPC_CheckChild0Type, MVT::v4i1,
/*106939*/      OPC_RecordChild1, // #1 = $FRC
/*106940*/      OPC_RecordChild2, // #2 = $FRB
/*106941*/      OPC_SwitchType /*2 cases */, 11, MVT::v4f64,// ->106955
/*106944*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*106946*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELb), 0,
                      MVT::v4f64, 3/*#Ops*/, 0, 2, 1, 
                  // Src: (vselect:{ *:[v4f64] } v4i1:{ *:[v4i1] }:$FRA, v4f64:{ *:[v4f64] }:$FRC, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELb:{ *:[v4f64] } v4i1:{ *:[v4i1] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/*106955*/      /*SwitchType*/ 11, MVT::v4f32,// ->106968
/*106957*/        OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*106959*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELbs), 0,
                      MVT::v4f32, 3/*#Ops*/, 0, 2, 1, 
                  // Src: (vselect:{ *:[v4f32] } v4i1:{ *:[v4i1] }:$FRA, v4f32:{ *:[v4f32] }:$FRC, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELbs:{ *:[v4f32] } v4i1:{ *:[v4i1] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, v4f32:{ *:[v4f32] }:$FRC)
/*106968*/      0, // EndSwitchType
/*106969*/    0, /*End of Scope*/
/*106970*/  /*SwitchOpcode*/ 99, TARGET_VAL(PPCISD::XXREVERSE),// ->107072
/*106973*/    OPC_RecordChild0, // #0 = $A
/*106974*/    OPC_SwitchType /*4 cases */, 11, MVT::v4i32,// ->106988
/*106977*/      OPC_CheckChild0Type, MVT::v4i32,
/*106979*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*106981*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXBRW), 0,
                    MVT::v4i32, 1/*#Ops*/, 0, 
                // Src: (PPCxxreverse:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A) - Complexity = 403
                // Dst: (XXBRW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A)
/*106988*/    /*SwitchType*/ 11, MVT::v2i64,// ->107001
/*106990*/      OPC_CheckChild0Type, MVT::v2i64,
/*106992*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*106994*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XXBRD), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (PPCxxreverse:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$A) - Complexity = 403
                // Dst: (XXBRD:{ *:[v2i64] } ?:{ *:[v2i64] }:$A)
/*107001*/    /*SwitchType*/ 33, MVT::v8i16,// ->107036
/*107003*/      OPC_CheckChild0Type, MVT::v8i16,
/*107005*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*107007*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*107010*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/*107018*/      OPC_EmitNode1, TARGET_VAL(PPC::XXBRH), 0,
                    MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/*107025*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107028*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v8i16, 2/*#Ops*/, 3, 4, 
                // Src: (PPCxxreverse:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$A) - Complexity = 403
                // Dst: (COPY_TO_REGCLASS:{ *:[v8i16] } (XXBRH:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v8i16] }:$A, VSRC:{ *:[i32] })), VRRC:{ *:[i32] })
/*107036*/    /*SwitchType*/ 33, MVT::v1i128,// ->107071
/*107038*/      OPC_CheckChild0Type, MVT::v1i128,
/*107040*/      OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*107042*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*107045*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1,  // Results = #2
/*107053*/      OPC_EmitNode1, TARGET_VAL(PPC::XXBRQ), 0,
                    MVT::v4i32, 1/*#Ops*/, 2,  // Results = #3
/*107060*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107063*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::v1i128, 2/*#Ops*/, 3, 4, 
                // Src: (PPCxxreverse:{ *:[v1i128] } v1i128:{ *:[v1i128] }:$A) - Complexity = 403
                // Dst: (COPY_TO_REGCLASS:{ *:[v1i128] } (XXBRQ:{ *:[v4i32] } (COPY_TO_REGCLASS:{ *:[v4i32] } ?:{ *:[v1i128] }:$A, VSRC:{ *:[i32] })), VRRC:{ *:[i32] })
/*107071*/    0, // EndSwitchType
/*107072*/  /*SwitchOpcode*/ 71, TARGET_VAL(PPCISD::SExtVElems),// ->107146
/*107075*/    OPC_RecordChild0, // #0 = $A
/*107076*/    OPC_Scope, 26, /*->107104*/ // 3 children in Scope
/*107078*/      OPC_CheckChild0Type, MVT::v16i8,
/*107080*/      OPC_SwitchType /*2 cases */, 9, MVT::v2i64,// ->107092
/*107083*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107085*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSB2D), 0,
                      MVT::v2i64, 1/*#Ops*/, 0, 
                  // Src: (PPCSExtVElems:{ *:[v2i64] } v16i8:{ *:[v16i8] }:$A) - Complexity = 403
                  // Dst: (VEXTSB2D:{ *:[v2i64] } ?:{ *:[v16i8] }:$A)
/*107092*/      /*SwitchType*/ 9, MVT::v4i32,// ->107103
/*107094*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107096*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSB2W), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (PPCSExtVElems:{ *:[v4i32] } v16i8:{ *:[v16i8] }:$A) - Complexity = 403
                  // Dst: (VEXTSB2W:{ *:[v4i32] } ?:{ *:[v16i8] }:$A)
/*107103*/      0, // EndSwitchType
/*107104*/    /*Scope*/ 26, /*->107131*/
/*107105*/      OPC_CheckChild0Type, MVT::v8i16,
/*107107*/      OPC_SwitchType /*2 cases */, 9, MVT::v2i64,// ->107119
/*107110*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107112*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSH2D), 0,
                      MVT::v2i64, 1/*#Ops*/, 0, 
                  // Src: (PPCSExtVElems:{ *:[v2i64] } v8i16:{ *:[v8i16] }:$A) - Complexity = 403
                  // Dst: (VEXTSH2D:{ *:[v2i64] } ?:{ *:[v8i16] }:$A)
/*107119*/      /*SwitchType*/ 9, MVT::v4i32,// ->107130
/*107121*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107123*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSH2W), 0,
                      MVT::v4i32, 1/*#Ops*/, 0, 
                  // Src: (PPCSExtVElems:{ *:[v4i32] } v8i16:{ *:[v8i16] }:$A) - Complexity = 403
                  // Dst: (VEXTSH2W:{ *:[v4i32] } ?:{ *:[v8i16] }:$A)
/*107130*/      0, // EndSwitchType
/*107131*/    /*Scope*/ 13, /*->107145*/
/*107132*/      OPC_CheckChild0Type, MVT::v4i32,
/*107134*/      OPC_CheckType, MVT::v2i64,
/*107136*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107138*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VEXTSW2D), 0,
                    MVT::v2i64, 1/*#Ops*/, 0, 
                // Src: (PPCSExtVElems:{ *:[v2i64] } v4i32:{ *:[v4i32] }:$A) - Complexity = 403
                // Dst: (VEXTSW2D:{ *:[v2i64] } ?:{ *:[v4i32] }:$A)
/*107145*/    0, /*End of Scope*/
/*107146*/  /*SwitchOpcode*/ 74, TARGET_VAL(ISD::SMAX),// ->107223
/*107149*/    OPC_RecordChild0, // #0 = $src1
/*107150*/    OPC_RecordChild1, // #1 = $src2
/*107151*/    OPC_SwitchType /*4 cases */, 32, MVT::v2i64,// ->107186
/*107154*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*107156*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107159*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 0, 2,  // Results = #3
/*107167*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107170*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 1, 4,  // Results = #5
/*107178*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSD), 0,
                    MVT::v2i64, 2/*#Ops*/, 3, 5, 
                // Src: (smax:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$src1, v2i64:{ *:[v2i64] }:$src2) - Complexity = 403
                // Dst: (VMAXSD:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src1, VRRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src2, VRRC:{ *:[i32] }))
/*107186*/    /*SwitchType*/ 10, MVT::v16i8,// ->107198
/*107188*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107190*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (smax:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$src1, v16i8:{ *:[v16i8] }:$src2) - Complexity = 3
                // Dst: (VMAXSB:{ *:[v16i8] } ?:{ *:[v16i8] }:$src1, ?:{ *:[v16i8] }:$src2)
/*107198*/    /*SwitchType*/ 10, MVT::v8i16,// ->107210
/*107200*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107202*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (smax:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$src1, v8i16:{ *:[v8i16] }:$src2) - Complexity = 3
                // Dst: (VMAXSH:{ *:[v8i16] } ?:{ *:[v8i16] }:$src1, ?:{ *:[v8i16] }:$src2)
/*107210*/    /*SwitchType*/ 10, MVT::v4i32,// ->107222
/*107212*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107214*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXSW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (smax:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$src1, v4i32:{ *:[v4i32] }:$src2) - Complexity = 3
                // Dst: (VMAXSW:{ *:[v4i32] } ?:{ *:[v4i32] }:$src1, ?:{ *:[v4i32] }:$src2)
/*107222*/    0, // EndSwitchType
/*107223*/  /*SwitchOpcode*/ 74, TARGET_VAL(ISD::UMAX),// ->107300
/*107226*/    OPC_RecordChild0, // #0 = $src1
/*107227*/    OPC_RecordChild1, // #1 = $src2
/*107228*/    OPC_SwitchType /*4 cases */, 32, MVT::v2i64,// ->107263
/*107231*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*107233*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107236*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 0, 2,  // Results = #3
/*107244*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107247*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 1, 4,  // Results = #5
/*107255*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUD), 0,
                    MVT::v2i64, 2/*#Ops*/, 3, 5, 
                // Src: (umax:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$src1, v2i64:{ *:[v2i64] }:$src2) - Complexity = 403
                // Dst: (VMAXUD:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src1, VRRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src2, VRRC:{ *:[i32] }))
/*107263*/    /*SwitchType*/ 10, MVT::v16i8,// ->107275
/*107265*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107267*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (umax:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$src1, v16i8:{ *:[v16i8] }:$src2) - Complexity = 3
                // Dst: (VMAXUB:{ *:[v16i8] } ?:{ *:[v16i8] }:$src1, ?:{ *:[v16i8] }:$src2)
/*107275*/    /*SwitchType*/ 10, MVT::v8i16,// ->107287
/*107277*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107279*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (umax:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$src1, v8i16:{ *:[v8i16] }:$src2) - Complexity = 3
                // Dst: (VMAXUH:{ *:[v8i16] } ?:{ *:[v8i16] }:$src1, ?:{ *:[v8i16] }:$src2)
/*107287*/    /*SwitchType*/ 10, MVT::v4i32,// ->107299
/*107289*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107291*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMAXUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (umax:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$src1, v4i32:{ *:[v4i32] }:$src2) - Complexity = 3
                // Dst: (VMAXUW:{ *:[v4i32] } ?:{ *:[v4i32] }:$src1, ?:{ *:[v4i32] }:$src2)
/*107299*/    0, // EndSwitchType
/*107300*/  /*SwitchOpcode*/ 74, TARGET_VAL(ISD::SMIN),// ->107377
/*107303*/    OPC_RecordChild0, // #0 = $src1
/*107304*/    OPC_RecordChild1, // #1 = $src2
/*107305*/    OPC_SwitchType /*4 cases */, 32, MVT::v2i64,// ->107340
/*107308*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*107310*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107313*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 0, 2,  // Results = #3
/*107321*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107324*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 1, 4,  // Results = #5
/*107332*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSD), 0,
                    MVT::v2i64, 2/*#Ops*/, 3, 5, 
                // Src: (smin:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$src1, v2i64:{ *:[v2i64] }:$src2) - Complexity = 403
                // Dst: (VMINSD:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src1, VRRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src2, VRRC:{ *:[i32] }))
/*107340*/    /*SwitchType*/ 10, MVT::v16i8,// ->107352
/*107342*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107344*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (smin:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$src1, v16i8:{ *:[v16i8] }:$src2) - Complexity = 3
                // Dst: (VMINSB:{ *:[v16i8] } ?:{ *:[v16i8] }:$src1, ?:{ *:[v16i8] }:$src2)
/*107352*/    /*SwitchType*/ 10, MVT::v8i16,// ->107364
/*107354*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107356*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (smin:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$src1, v8i16:{ *:[v8i16] }:$src2) - Complexity = 3
                // Dst: (VMINSH:{ *:[v8i16] } ?:{ *:[v8i16] }:$src1, ?:{ *:[v8i16] }:$src2)
/*107364*/    /*SwitchType*/ 10, MVT::v4i32,// ->107376
/*107366*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107368*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINSW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (smin:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$src1, v4i32:{ *:[v4i32] }:$src2) - Complexity = 3
                // Dst: (VMINSW:{ *:[v4i32] } ?:{ *:[v4i32] }:$src1, ?:{ *:[v4i32] }:$src2)
/*107376*/    0, // EndSwitchType
/*107377*/  /*SwitchOpcode*/ 74, TARGET_VAL(ISD::UMIN),// ->107454
/*107380*/    OPC_RecordChild0, // #0 = $src1
/*107381*/    OPC_RecordChild1, // #1 = $src2
/*107382*/    OPC_SwitchType /*4 cases */, 32, MVT::v2i64,// ->107417
/*107385*/      OPC_CheckPatternPredicate, 10, // (PPCSubTarget->hasP8Vector())
/*107387*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107390*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 0, 2,  // Results = #3
/*107398*/      OPC_EmitInteger, MVT::i32, PPC::VRRCRegClassID,
/*107401*/      OPC_EmitNode1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                    MVT::f128, 2/*#Ops*/, 1, 4,  // Results = #5
/*107409*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUD), 0,
                    MVT::v2i64, 2/*#Ops*/, 3, 5, 
                // Src: (umin:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$src1, v2i64:{ *:[v2i64] }:$src2) - Complexity = 403
                // Dst: (VMINUD:{ *:[v2i64] } (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src1, VRRC:{ *:[i32] }), (COPY_TO_REGCLASS:{ *:[f128] } ?:{ *:[v2i64] }:$src2, VRRC:{ *:[i32] }))
/*107417*/    /*SwitchType*/ 10, MVT::v16i8,// ->107429
/*107419*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107421*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUB), 0,
                    MVT::v16i8, 2/*#Ops*/, 0, 1, 
                // Src: (umin:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$src1, v16i8:{ *:[v16i8] }:$src2) - Complexity = 3
                // Dst: (VMINUB:{ *:[v16i8] } ?:{ *:[v16i8] }:$src1, ?:{ *:[v16i8] }:$src2)
/*107429*/    /*SwitchType*/ 10, MVT::v8i16,// ->107441
/*107431*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107433*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUH), 0,
                    MVT::v8i16, 2/*#Ops*/, 0, 1, 
                // Src: (umin:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$src1, v8i16:{ *:[v8i16] }:$src2) - Complexity = 3
                // Dst: (VMINUH:{ *:[v8i16] } ?:{ *:[v8i16] }:$src1, ?:{ *:[v8i16] }:$src2)
/*107441*/    /*SwitchType*/ 10, MVT::v4i32,// ->107453
/*107443*/      OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107445*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VMINUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 1, 
                // Src: (umin:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$src1, v4i32:{ *:[v4i32] }:$src2) - Complexity = 3
                // Dst: (VMINUW:{ *:[v4i32] } ?:{ *:[v4i32] }:$src1, ?:{ *:[v4i32] }:$src2)
/*107453*/    0, // EndSwitchType
/*107454*/  /*SwitchOpcode*/ 18, TARGET_VAL(PPCISD::QVLFSb),// ->107475
/*107457*/    OPC_RecordNode, // #0 = 'PPCqvlfsb' chained node
/*107458*/    OPC_RecordChild1, // #1 = $src
/*107459*/    OPC_CheckType, MVT::v4i1,
/*107461*/    OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*107463*/    OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*107466*/    OPC_EmitMergeInputChains1_0,
/*107467*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::QVLFSXb), 0|OPFL_Chain,
                  MVT::v4i1, 2/*#Ops*/, 2, 3, 
              // Src: (PPCqvlfsb:{ *:[v4i1] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 12
              // Dst: (QVLFSXb:{ *:[v4i1] } xoaddr:{ *:[iPTR] }:$src)
/*107475*/  /*SwitchOpcode*/ 72|128,2/*328*/, TARGET_VAL(PPCISD::VCMP),// ->107807
/*107479*/    OPC_RecordChild0, // #0 = $vA
/*107480*/    OPC_RecordChild1, // #1 = $vB
/*107481*/    OPC_SwitchType /*5 cases */, 70, MVT::v16i8,// ->107554
/*107484*/      OPC_Scope, 12, /*->107498*/ // 5 children in Scope
/*107486*/        OPC_CheckChild2Integer, 6, 
/*107488*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107490*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPEQUB), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 6:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107498*/      /*Scope*/ 13, /*->107512*/
/*107499*/        OPC_CheckChild2Integer, 6|128,6/*774*/, 
/*107502*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107504*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTSB), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 774:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107512*/      /*Scope*/ 13, /*->107526*/
/*107513*/        OPC_CheckChild2Integer, 6|128,4/*518*/, 
/*107516*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107518*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTUB), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 518:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107526*/      /*Scope*/ 12, /*->107539*/
/*107527*/        OPC_CheckChild2Integer, 7, 
/*107529*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107531*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPNEB), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 7:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107539*/      /*Scope*/ 13, /*->107553*/
/*107540*/        OPC_CheckChild2Integer, 7|128,2/*263*/, 
/*107543*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107545*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPNEZB), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 263:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEZB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107553*/      0, /*End of Scope*/
/*107554*/    /*SwitchType*/ 70, MVT::v8i16,// ->107626
/*107556*/      OPC_Scope, 12, /*->107570*/ // 5 children in Scope
/*107558*/        OPC_CheckChild2Integer, 70, 
/*107560*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107562*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPEQUH), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 70:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107570*/      /*Scope*/ 13, /*->107584*/
/*107571*/        OPC_CheckChild2Integer, 70|128,6/*838*/, 
/*107574*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107576*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTSH), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 838:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107584*/      /*Scope*/ 13, /*->107598*/
/*107585*/        OPC_CheckChild2Integer, 70|128,4/*582*/, 
/*107588*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107590*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTUH), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 582:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107598*/      /*Scope*/ 12, /*->107611*/
/*107599*/        OPC_CheckChild2Integer, 71, 
/*107601*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107603*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPNEH), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 71:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107611*/      /*Scope*/ 13, /*->107625*/
/*107612*/        OPC_CheckChild2Integer, 71|128,2/*327*/, 
/*107615*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107617*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPNEZH), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 327:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEZH:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107625*/      0, /*End of Scope*/
/*107626*/    /*SwitchType*/ 72, MVT::v4i32,// ->107700
/*107628*/      OPC_Scope, 13, /*->107643*/ // 5 children in Scope
/*107630*/        OPC_CheckChild2Integer, 6|128,1/*134*/, 
/*107633*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107635*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPEQUW), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 134:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*107643*/      /*Scope*/ 13, /*->107657*/
/*107644*/        OPC_CheckChild2Integer, 6|128,7/*902*/, 
/*107647*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107649*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTSW), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 902:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*107657*/      /*Scope*/ 13, /*->107671*/
/*107658*/        OPC_CheckChild2Integer, 6|128,5/*646*/, 
/*107661*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107663*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTUW), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 646:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*107671*/      /*Scope*/ 13, /*->107685*/
/*107672*/        OPC_CheckChild2Integer, 7|128,1/*135*/, 
/*107675*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107677*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPNEW), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 135:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*107685*/      /*Scope*/ 13, /*->107699*/
/*107686*/        OPC_CheckChild2Integer, 7|128,3/*391*/, 
/*107689*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107691*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPNEZW), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 391:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEZW:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*107699*/      0, /*End of Scope*/
/*107700*/    /*SwitchType*/ 44, MVT::v2i64,// ->107746
/*107702*/      OPC_Scope, 13, /*->107717*/ // 3 children in Scope
/*107704*/        OPC_CheckChild2Integer, 71|128,1/*199*/, 
/*107707*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*107709*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPEQUD), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, 199:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/*107717*/      /*Scope*/ 13, /*->107731*/
/*107718*/        OPC_CheckChild2Integer, 71|128,7/*967*/, 
/*107721*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*107723*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTSD), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, 967:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/*107731*/      /*Scope*/ 13, /*->107745*/
/*107732*/        OPC_CheckChild2Integer, 71|128,5/*711*/, 
/*107735*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*107737*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTUD), 0,
                      MVT::v2i64, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, 711:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUD:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/*107745*/      0, /*End of Scope*/
/*107746*/    /*SwitchType*/ 58, MVT::v4f32,// ->107806
/*107748*/      OPC_Scope, 13, /*->107763*/ // 4 children in Scope
/*107750*/        OPC_CheckChild2Integer, 70|128,7/*966*/, 
/*107753*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107755*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPBFP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 966:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPBFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*107763*/      /*Scope*/ 13, /*->107777*/
/*107764*/        OPC_CheckChild2Integer, 70|128,1/*198*/, 
/*107767*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107769*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPEQFP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 198:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*107777*/      /*Scope*/ 13, /*->107791*/
/*107778*/        OPC_CheckChild2Integer, 70|128,3/*454*/, 
/*107781*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107783*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGEFP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 454:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGEFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*107791*/      /*Scope*/ 13, /*->107805*/
/*107792*/        OPC_CheckChild2Integer, 70|128,5/*710*/, 
/*107795*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107797*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VCMPGTFP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 710:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTFP:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*107805*/      0, /*End of Scope*/
/*107806*/    0, // EndSwitchType
/*107807*/  /*SwitchOpcode*/ 54|128,3/*438*/, TARGET_VAL(PPCISD::VCMPo),// ->108249
/*107811*/    OPC_RecordChild0, // #0 = $vA
/*107812*/    OPC_RecordChild1, // #1 = $vB
/*107813*/    OPC_SwitchType /*6 cases */, 75, MVT::v16i8,// ->107891
/*107816*/      OPC_Scope, 13, /*->107831*/ // 5 children in Scope
/*107818*/        OPC_CheckChild2Integer, 6, 
/*107820*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107822*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPEQUBo), 0|OPFL_GlueOutput,
                      MVT::v16i8, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 6:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUBo:{ *:[v16i8] }:{ *:[i32] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107831*/      /*Scope*/ 14, /*->107846*/
/*107832*/        OPC_CheckChild2Integer, 6|128,6/*774*/, 
/*107835*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107837*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTSBo), 0|OPFL_GlueOutput,
                      MVT::v16i8, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 774:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSBo:{ *:[v16i8] }:{ *:[i32] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107846*/      /*Scope*/ 14, /*->107861*/
/*107847*/        OPC_CheckChild2Integer, 6|128,4/*518*/, 
/*107850*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107852*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTUBo), 0|OPFL_GlueOutput,
                      MVT::v16i8, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 518:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUBo:{ *:[v16i8] }:{ *:[i32] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107861*/      /*Scope*/ 13, /*->107875*/
/*107862*/        OPC_CheckChild2Integer, 7, 
/*107864*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107866*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPNEBo), 0|OPFL_GlueOutput,
                      MVT::v16i8, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 7:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEBo:{ *:[v16i8] }:{ *:[i32] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107875*/      /*Scope*/ 14, /*->107890*/
/*107876*/        OPC_CheckChild2Integer, 7|128,2/*263*/, 
/*107879*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107881*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPNEZBo), 0|OPFL_GlueOutput,
                      MVT::v16i8, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, 263:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEZBo:{ *:[v16i8] }:{ *:[i32] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*107890*/      0, /*End of Scope*/
/*107891*/    /*SwitchType*/ 75, MVT::v8i16,// ->107968
/*107893*/      OPC_Scope, 13, /*->107908*/ // 5 children in Scope
/*107895*/        OPC_CheckChild2Integer, 70, 
/*107897*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107899*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPEQUHo), 0|OPFL_GlueOutput,
                      MVT::v8i16, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 70:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUHo:{ *:[v8i16] }:{ *:[i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107908*/      /*Scope*/ 14, /*->107923*/
/*107909*/        OPC_CheckChild2Integer, 70|128,6/*838*/, 
/*107912*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107914*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTSHo), 0|OPFL_GlueOutput,
                      MVT::v8i16, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 838:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSHo:{ *:[v8i16] }:{ *:[i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107923*/      /*Scope*/ 14, /*->107938*/
/*107924*/        OPC_CheckChild2Integer, 70|128,4/*582*/, 
/*107927*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107929*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTUHo), 0|OPFL_GlueOutput,
                      MVT::v8i16, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 582:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUHo:{ *:[v8i16] }:{ *:[i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107938*/      /*Scope*/ 13, /*->107952*/
/*107939*/        OPC_CheckChild2Integer, 71, 
/*107941*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107943*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPNEHo), 0|OPFL_GlueOutput,
                      MVT::v8i16, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 71:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEHo:{ *:[v8i16] }:{ *:[i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107952*/      /*Scope*/ 14, /*->107967*/
/*107953*/        OPC_CheckChild2Integer, 71|128,2/*327*/, 
/*107956*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*107958*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPNEZHo), 0|OPFL_GlueOutput,
                      MVT::v8i16, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB, 327:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEZHo:{ *:[v8i16] }:{ *:[i32] } v8i16:{ *:[v8i16] }:$vA, v8i16:{ *:[v8i16] }:$vB)
/*107967*/      0, /*End of Scope*/
/*107968*/    /*SwitchType*/ 77, MVT::v4i32,// ->108047
/*107970*/      OPC_Scope, 14, /*->107986*/ // 5 children in Scope
/*107972*/        OPC_CheckChild2Integer, 6|128,1/*134*/, 
/*107975*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107977*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPEQUWo), 0|OPFL_GlueOutput,
                      MVT::v4i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 134:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUWo:{ *:[v4i32] }:{ *:[i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*107986*/      /*Scope*/ 14, /*->108001*/
/*107987*/        OPC_CheckChild2Integer, 6|128,7/*902*/, 
/*107990*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*107992*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTSWo), 0|OPFL_GlueOutput,
                      MVT::v4i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 902:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSWo:{ *:[v4i32] }:{ *:[i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*108001*/      /*Scope*/ 14, /*->108016*/
/*108002*/        OPC_CheckChild2Integer, 6|128,5/*646*/, 
/*108005*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108007*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTUWo), 0|OPFL_GlueOutput,
                      MVT::v4i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 646:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUWo:{ *:[v4i32] }:{ *:[i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*108016*/      /*Scope*/ 14, /*->108031*/
/*108017*/        OPC_CheckChild2Integer, 7|128,1/*135*/, 
/*108020*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*108022*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPNEWo), 0|OPFL_GlueOutput,
                      MVT::v4i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 135:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEWo:{ *:[v4i32] }:{ *:[i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*108031*/      /*Scope*/ 14, /*->108046*/
/*108032*/        OPC_CheckChild2Integer, 7|128,3/*391*/, 
/*108035*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*108037*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPNEZWo), 0|OPFL_GlueOutput,
                      MVT::v4i32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB, 391:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPNEZWo:{ *:[v4i32] }:{ *:[i32] } v4i32:{ *:[v4i32] }:$vA, v4i32:{ *:[v4i32] }:$vB)
/*108046*/      0, /*End of Scope*/
/*108047*/    /*SwitchType*/ 47, MVT::v2i64,// ->108096
/*108049*/      OPC_Scope, 14, /*->108065*/ // 3 children in Scope
/*108051*/        OPC_CheckChild2Integer, 71|128,1/*199*/, 
/*108054*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108056*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPEQUDo), 0|OPFL_GlueOutput,
                      MVT::v2i64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, 199:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQUDo:{ *:[v2i64] }:{ *:[i32] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/*108065*/      /*Scope*/ 14, /*->108080*/
/*108066*/        OPC_CheckChild2Integer, 71|128,7/*967*/, 
/*108069*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108071*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTSDo), 0|OPFL_GlueOutput,
                      MVT::v2i64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, 967:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTSDo:{ *:[v2i64] }:{ *:[i32] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/*108080*/      /*Scope*/ 14, /*->108095*/
/*108081*/        OPC_CheckChild2Integer, 71|128,5/*711*/, 
/*108084*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108086*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTUDo), 0|OPFL_GlueOutput,
                      MVT::v2i64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v2i64] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB, 711:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTUDo:{ *:[v2i64] }:{ *:[i32] } v2i64:{ *:[v2i64] }:$vA, v2i64:{ *:[v2i64] }:$vB)
/*108095*/      0, /*End of Scope*/
/*108096*/    /*SwitchType*/ 44, MVT::v2f64,// ->108142
/*108098*/      OPC_Scope, 13, /*->108113*/ // 3 children in Scope
/*108100*/        OPC_CheckChild2Integer, 99, 
/*108102*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*108104*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::XVCMPEQDPo), 0|OPFL_GlueOutput,
                      MVT::v2f64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB, 99:{ *:[i32] }) - Complexity = 408
                  // Dst: (XVCMPEQDPo:{ *:[v2f64] }:{ *:[i32] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/*108113*/      /*Scope*/ 13, /*->108127*/
/*108114*/        OPC_CheckChild2Integer, 115, 
/*108116*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*108118*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::XVCMPGEDPo), 0|OPFL_GlueOutput,
                      MVT::v2f64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB, 115:{ *:[i32] }) - Complexity = 408
                  // Dst: (XVCMPGEDPo:{ *:[v2f64] }:{ *:[i32] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/*108127*/      /*Scope*/ 13, /*->108141*/
/*108128*/        OPC_CheckChild2Integer, 107, 
/*108130*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*108132*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::XVCMPGTDPo), 0|OPFL_GlueOutput,
                      MVT::v2f64, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB, 107:{ *:[i32] }) - Complexity = 408
                  // Dst: (XVCMPGTDPo:{ *:[v2f64] }:{ *:[i32] } v2f64:{ *:[v2f64] }:$XA, v2f64:{ *:[v2f64] }:$XB)
/*108141*/      0, /*End of Scope*/
/*108142*/    /*SwitchType*/ 104, MVT::v4f32,// ->108248
/*108144*/      OPC_Scope, 13, /*->108159*/ // 7 children in Scope
/*108146*/        OPC_CheckChild2Integer, 67, 
/*108148*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*108150*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::XVCMPEQSPo), 0|OPFL_GlueOutput,
                      MVT::v4f32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB, 67:{ *:[i32] }) - Complexity = 408
                  // Dst: (XVCMPEQSPo:{ *:[v4f32] }:{ *:[i32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/*108159*/      /*Scope*/ 13, /*->108173*/
/*108160*/        OPC_CheckChild2Integer, 83, 
/*108162*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*108164*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::XVCMPGESPo), 0|OPFL_GlueOutput,
                      MVT::v4f32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB, 83:{ *:[i32] }) - Complexity = 408
                  // Dst: (XVCMPGESPo:{ *:[v4f32] }:{ *:[i32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/*108173*/      /*Scope*/ 13, /*->108187*/
/*108174*/        OPC_CheckChild2Integer, 75, 
/*108176*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*108178*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::XVCMPGTSPo), 0|OPFL_GlueOutput,
                      MVT::v4f32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB, 75:{ *:[i32] }) - Complexity = 408
                  // Dst: (XVCMPGTSPo:{ *:[v4f32] }:{ *:[i32] } v4f32:{ *:[v4f32] }:$XA, v4f32:{ *:[v4f32] }:$XB)
/*108187*/      /*Scope*/ 14, /*->108202*/
/*108188*/        OPC_CheckChild2Integer, 70|128,7/*966*/, 
/*108191*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108193*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPBFPo), 0|OPFL_GlueOutput,
                      MVT::v4f32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 966:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPBFPo:{ *:[v4f32] }:{ *:[i32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*108202*/      /*Scope*/ 14, /*->108217*/
/*108203*/        OPC_CheckChild2Integer, 70|128,1/*198*/, 
/*108206*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108208*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPEQFPo), 0|OPFL_GlueOutput,
                      MVT::v4f32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 198:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPEQFPo:{ *:[v4f32] }:{ *:[i32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*108217*/      /*Scope*/ 14, /*->108232*/
/*108218*/        OPC_CheckChild2Integer, 70|128,3/*454*/, 
/*108221*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108223*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGEFPo), 0|OPFL_GlueOutput,
                      MVT::v4f32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 454:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGEFPo:{ *:[v4f32] }:{ *:[i32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*108232*/      /*Scope*/ 14, /*->108247*/
/*108233*/        OPC_CheckChild2Integer, 70|128,5/*710*/, 
/*108236*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108238*/        OPC_MorphNodeTo2, TARGET_VAL(PPC::VCMPGTFPo), 0|OPFL_GlueOutput,
                      MVT::v4f32, MVT::i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvcmp_o:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB, 710:{ *:[i32] }) - Complexity = 8
                  // Dst: (VCMPGTFPo:{ *:[v4f32] }:{ *:[i32] } v4f32:{ *:[v4f32] }:$vA, v4f32:{ *:[v4f32] }:$vB)
/*108247*/      0, /*End of Scope*/
/*108248*/    0, // EndSwitchType
/*108249*/  /*SwitchOpcode*/ 74, TARGET_VAL(PPCISD::VABSD),// ->108326
/*108252*/    OPC_RecordChild0, // #0 = $A
/*108253*/    OPC_RecordChild1, // #1 = $B
/*108254*/    OPC_Scope, 40, /*->108296*/ // 2 children in Scope
/*108256*/      OPC_CheckChild2Integer, 0, 
/*108258*/      OPC_SwitchType /*3 cases */, 10, MVT::v4i32,// ->108271
/*108261*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*108263*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VABSDUW), 0,
                      MVT::v4i32, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvabsd:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, v4i32:{ *:[v4i32] }:$B, 0:{ *:[i32] }) - Complexity = 8
                  // Dst: (VABSDUW:{ *:[v4i32] } ?:{ *:[v4i32] }:$A, ?:{ *:[v4i32] }:$B)
/*108271*/      /*SwitchType*/ 10, MVT::v8i16,// ->108283
/*108273*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*108275*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VABSDUH), 0,
                      MVT::v8i16, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvabsd:{ *:[v8i16] } v8i16:{ *:[v8i16] }:$A, v8i16:{ *:[v8i16] }:$B, 0:{ *:[i32] }) - Complexity = 8
                  // Dst: (VABSDUH:{ *:[v8i16] } ?:{ *:[v8i16] }:$A, ?:{ *:[v8i16] }:$B)
/*108283*/      /*SwitchType*/ 10, MVT::v16i8,// ->108295
/*108285*/        OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*108287*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VABSDUB), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (PPCvabsd:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$A, v16i8:{ *:[v16i8] }:$B, 0:{ *:[i32] }) - Complexity = 8
                  // Dst: (VABSDUB:{ *:[v16i8] } ?:{ *:[v16i8] }:$A, ?:{ *:[v16i8] }:$B)
/*108295*/      0, // EndSwitchType
/*108296*/    /*Scope*/ 28, /*->108325*/
/*108297*/      OPC_CheckChild2Integer, 1, 
/*108299*/      OPC_CheckType, MVT::v4i32,
/*108301*/      OPC_CheckPatternPredicate, 32, // (PPCSubTarget->hasP9Altivec())
/*108303*/      OPC_EmitNode1, TARGET_VAL(PPC::XVNEGSP), 0,
                    MVT::v4i32, 1/*#Ops*/, 0,  // Results = #2
/*108310*/      OPC_EmitNode1, TARGET_VAL(PPC::XVNEGSP), 0,
                    MVT::v4i32, 1/*#Ops*/, 1,  // Results = #3
/*108317*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::VABSDUW), 0,
                    MVT::v4i32, 2/*#Ops*/, 2, 3, 
                // Src: (PPCvabsd:{ *:[v4i32] } v4i32:{ *:[v4i32] }:$A, v4i32:{ *:[v4i32] }:$B, 1:{ *:[i32] }) - Complexity = 8
                // Dst: (VABSDUW:{ *:[v4i32] } (XVNEGSP:{ *:[v4i32] } ?:{ *:[v4i32] }:$A), (XVNEGSP:{ *:[v4i32] } ?:{ *:[v4i32] }:$B))
/*108325*/    0, /*End of Scope*/
/*108326*/  /*SwitchOpcode*/ 68|128,4/*580*/, TARGET_VAL(ISD::VECTOR_SHUFFLE),// ->108910
/*108330*/    OPC_Scope, 76, /*->108408*/ // 4 children in Scope
/*108332*/      OPC_RecordNode, // #0 = $UIMM
/*108333*/      OPC_RecordChild0, // #1 = $vB
/*108334*/      OPC_MoveChild1,
/*108335*/      OPC_CheckOpcode, TARGET_VAL(ISD::UNDEF),
/*108338*/      OPC_MoveParent,
/*108339*/      OPC_CheckType, MVT::v16i8,
/*108341*/      OPC_Scope, 15, /*->108358*/ // 4 children in Scope
/*108343*/        OPC_CheckPredicate, 40, // Predicate_vspltb_shuffle
/*108345*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108347*/        OPC_EmitNodeXForm, 13, 0, // VSPLTB_get_imm
/*108350*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTB), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 1, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB, (undef:{ *:[v16i8] }))<<P:Predicate_vspltb_shuffle>><<X:VSPLTB_get_imm>>:$UIMM - Complexity = 7
                  // Dst: (VSPLTB:{ *:[v16i8] } (VSPLTB_get_imm:{ *:[i32] } (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB, (undef:{ *:[v16i8] })):$UIMM), v16i8:{ *:[v16i8] }:$vB)
/*108358*/      /*Scope*/ 15, /*->108374*/
/*108359*/        OPC_CheckPredicate, 41, // Predicate_vsplth_shuffle
/*108361*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108363*/        OPC_EmitNodeXForm, 14, 0, // VSPLTH_get_imm
/*108366*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTH), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 1, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB, (undef:{ *:[v16i8] }))<<P:Predicate_vsplth_shuffle>><<X:VSPLTH_get_imm>>:$UIMM - Complexity = 7
                  // Dst: (VSPLTH:{ *:[v16i8] } (VSPLTH_get_imm:{ *:[i32] } (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB, (undef:{ *:[v16i8] })):$UIMM), v16i8:{ *:[v16i8] }:$vB)
/*108374*/      /*Scope*/ 15, /*->108390*/
/*108375*/        OPC_CheckPredicate, 42, // Predicate_vspltw_shuffle
/*108377*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108379*/        OPC_EmitNodeXForm, 15, 0, // VSPLTW_get_imm
/*108382*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSPLTW), 0,
                      MVT::v16i8, 2/*#Ops*/, 2, 1, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB, (undef:{ *:[v16i8] }))<<P:Predicate_vspltw_shuffle>><<X:VSPLTW_get_imm>>:$UIMM - Complexity = 7
                  // Dst: (VSPLTW:{ *:[v16i8] } (VSPLTW_get_imm:{ *:[i32] } (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vB, (undef:{ *:[v16i8] })):$UIMM), v16i8:{ *:[v16i8] }:$vB)
/*108390*/      /*Scope*/ 16, /*->108407*/
/*108391*/        OPC_CheckPredicate, 43, // Predicate_vsldoi_unary_shuffle
/*108393*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108395*/        OPC_EmitNodeXForm, 16, 0, // VSLDOI_unary_get_imm
/*108398*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLDOI), 0,
                      MVT::v16i8, 3/*#Ops*/, 1, 1, 2, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vsldoi_unary_shuffle>><<X:VSLDOI_unary_get_imm>>:$in - Complexity = 7
                  // Dst: (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA, (VSLDOI_unary_get_imm:{ *:[i32] } ?:{ *:[v16i8] }:$in))
/*108407*/      0, /*End of Scope*/
/*108408*/    /*Scope*/ 11|128,2/*267*/, /*->108677*/
/*108410*/      OPC_RecordChild0, // #0 = $vA
/*108411*/      OPC_Scope, 24|128,1/*152*/, /*->108566*/ // 2 children in Scope
/*108414*/        OPC_MoveChild1,
/*108415*/        OPC_CheckOpcode, TARGET_VAL(ISD::UNDEF),
/*108418*/        OPC_MoveParent,
/*108419*/        OPC_CheckType, MVT::v16i8,
/*108421*/        OPC_Scope, 12, /*->108435*/ // 11 children in Scope
/*108423*/          OPC_CheckPredicate, 44, // Predicate_vpkuwum_unary_shuffle
/*108425*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108427*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUWUM), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vpkuwum_unary_shuffle>> - Complexity = 7
                    // Dst: (VPKUWUM:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108435*/        /*Scope*/ 12, /*->108448*/
/*108436*/          OPC_CheckPredicate, 45, // Predicate_vpkuhum_unary_shuffle
/*108438*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108440*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUHUM), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vpkuhum_unary_shuffle>> - Complexity = 7
                    // Dst: (VPKUHUM:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108448*/        /*Scope*/ 12, /*->108461*/
/*108449*/          OPC_CheckPredicate, 46, // Predicate_vmrglb_unary_shuffle
/*108451*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108453*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLB), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrglb_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGLB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108461*/        /*Scope*/ 12, /*->108474*/
/*108462*/          OPC_CheckPredicate, 47, // Predicate_vmrglh_unary_shuffle
/*108464*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108466*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLH), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrglh_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGLH:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108474*/        /*Scope*/ 12, /*->108487*/
/*108475*/          OPC_CheckPredicate, 48, // Predicate_vmrglw_unary_shuffle
/*108477*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108479*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLW), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrglw_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGLW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108487*/        /*Scope*/ 12, /*->108500*/
/*108488*/          OPC_CheckPredicate, 49, // Predicate_vmrghb_unary_shuffle
/*108490*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108492*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHB), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrghb_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGHB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108500*/        /*Scope*/ 12, /*->108513*/
/*108501*/          OPC_CheckPredicate, 50, // Predicate_vmrghh_unary_shuffle
/*108503*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108505*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHH), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrghh_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGHH:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108513*/        /*Scope*/ 12, /*->108526*/
/*108514*/          OPC_CheckPredicate, 51, // Predicate_vmrghw_unary_shuffle
/*108516*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108518*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHW), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrghw_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGHW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108526*/        /*Scope*/ 12, /*->108539*/
/*108527*/          OPC_CheckPredicate, 52, // Predicate_vmrgew_unary_shuffle
/*108529*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108531*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrgew_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGEW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108539*/        /*Scope*/ 12, /*->108552*/
/*108540*/          OPC_CheckPredicate, 53, // Predicate_vmrgow_unary_shuffle
/*108542*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108544*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGOW), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vmrgow_unary_shuffle>> - Complexity = 7
                    // Dst: (VMRGOW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108552*/        /*Scope*/ 12, /*->108565*/
/*108553*/          OPC_CheckPredicate, 54, // Predicate_vpkudum_unary_shuffle
/*108555*/          OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108557*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUM), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 0, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, (undef:{ *:[v16i8] }))<<P:Predicate_vpkudum_unary_shuffle>> - Complexity = 7
                    // Dst: (VPKUDUM:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vA)
/*108565*/        0, /*End of Scope*/
/*108566*/      /*Scope*/ 109, /*->108676*/
/*108567*/        OPC_RecordChild1, // #1 = $vB
/*108568*/        OPC_CheckType, MVT::v16i8,
/*108570*/        OPC_Scope, 12, /*->108584*/ // 8 children in Scope
/*108572*/          OPC_CheckPredicate, 55, // Predicate_vmrghb_shuffle
/*108574*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108576*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHB), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrghb_shuffle>> - Complexity = 4
                    // Dst: (VMRGHB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108584*/        /*Scope*/ 12, /*->108597*/
/*108585*/          OPC_CheckPredicate, 56, // Predicate_vmrghh_shuffle
/*108587*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108589*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHH), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrghh_shuffle>> - Complexity = 4
                    // Dst: (VMRGHH:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108597*/        /*Scope*/ 12, /*->108610*/
/*108598*/          OPC_CheckPredicate, 57, // Predicate_vmrghw_shuffle
/*108600*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108602*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHW), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrghw_shuffle>> - Complexity = 4
                    // Dst: (VMRGHW:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108610*/        /*Scope*/ 12, /*->108623*/
/*108611*/          OPC_CheckPredicate, 58, // Predicate_vmrglb_shuffle
/*108613*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108615*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLB), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrglb_shuffle>> - Complexity = 4
                    // Dst: (VMRGLB:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108623*/        /*Scope*/ 12, /*->108636*/
/*108624*/          OPC_CheckPredicate, 59, // Predicate_vmrglh_shuffle
/*108626*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108628*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLH), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrglh_shuffle>> - Complexity = 4
                    // Dst: (VMRGLH:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108636*/        /*Scope*/ 12, /*->108649*/
/*108637*/          OPC_CheckPredicate, 60, // Predicate_vmrglw_shuffle
/*108639*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108641*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLW), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrglw_shuffle>> - Complexity = 4
                    // Dst: (VMRGLW:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108649*/        /*Scope*/ 12, /*->108662*/
/*108650*/          OPC_CheckPredicate, 61, // Predicate_vpkuhum_shuffle
/*108652*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108654*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUHUM), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vpkuhum_shuffle>> - Complexity = 4
                    // Dst: (VPKUHUM:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108662*/        /*Scope*/ 12, /*->108675*/
/*108663*/          OPC_CheckPredicate, 62, // Predicate_vpkuwum_shuffle
/*108665*/          OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108667*/          OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUWUM), 0,
                        MVT::v16i8, 2/*#Ops*/, 0, 1, 
                    // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vpkuwum_shuffle>> - Complexity = 4
                    // Dst: (VPKUWUM:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108675*/        0, /*End of Scope*/
/*108676*/      0, /*End of Scope*/
/*108677*/    /*Scope*/ 41, /*->108719*/
/*108678*/      OPC_RecordNode, // #0 = $SH
/*108679*/      OPC_RecordChild0, // #1 = $vA
/*108680*/      OPC_RecordChild1, // #2 = $vB
/*108681*/      OPC_CheckType, MVT::v16i8,
/*108683*/      OPC_Scope, 16, /*->108701*/ // 2 children in Scope
/*108685*/        OPC_CheckPredicate, 63, // Predicate_vsldoi_shuffle
/*108687*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108689*/        OPC_EmitNodeXForm, 17, 0, // VSLDOI_get_imm
/*108692*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLDOI), 0,
                      MVT::v16i8, 3/*#Ops*/, 1, 2, 3, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vsldoi_shuffle>><<X:VSLDOI_get_imm>>:$SH - Complexity = 4
                  // Dst: (VSLDOI:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, (VSLDOI_get_imm:{ *:[i32] } ?:{ *:[v16i8] }:$SH))
/*108701*/      /*Scope*/ 16, /*->108718*/
/*108702*/        OPC_CheckPredicate, 64, // Predicate_vsldoi_swapped_shuffle
/*108704*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108706*/        OPC_EmitNodeXForm, 18, 0, // VSLDOI_swapped_get_imm
/*108709*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VSLDOI), 0,
                      MVT::v16i8, 3/*#Ops*/, 2, 1, 3, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vsldoi_swapped_shuffle>><<X:VSLDOI_get_imm>>:$in - Complexity = 4
                  // Dst: (VSLDOI:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA, (VSLDOI_swapped_get_imm:{ *:[i32] } ?:{ *:[v16i8] }:$in))
/*108718*/      0, /*End of Scope*/
/*108719*/    /*Scope*/ 60|128,1/*188*/, /*->108909*/
/*108721*/      OPC_RecordChild0, // #0 = $vA
/*108722*/      OPC_RecordChild1, // #1 = $vB
/*108723*/      OPC_CheckType, MVT::v16i8,
/*108725*/      OPC_Scope, 12, /*->108739*/ // 14 children in Scope
/*108727*/        OPC_CheckPredicate, 65, // Predicate_vpkuwum_swapped_shuffle
/*108729*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108731*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUWUM), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vpkuwum_swapped_shuffle>> - Complexity = 4
                  // Dst: (VPKUWUM:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108739*/      /*Scope*/ 12, /*->108752*/
/*108740*/        OPC_CheckPredicate, 66, // Predicate_vpkuhum_swapped_shuffle
/*108742*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108744*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUHUM), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vpkuhum_swapped_shuffle>> - Complexity = 4
                  // Dst: (VPKUHUM:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108752*/      /*Scope*/ 12, /*->108765*/
/*108753*/        OPC_CheckPredicate, 67, // Predicate_vmrglb_swapped_shuffle
/*108755*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108757*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLB), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrglb_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGLB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108765*/      /*Scope*/ 12, /*->108778*/
/*108766*/        OPC_CheckPredicate, 68, // Predicate_vmrglh_swapped_shuffle
/*108768*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108770*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLH), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrglh_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGLH:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108778*/      /*Scope*/ 12, /*->108791*/
/*108779*/        OPC_CheckPredicate, 69, // Predicate_vmrglw_swapped_shuffle
/*108781*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108783*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGLW), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrglw_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGLW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108791*/      /*Scope*/ 12, /*->108804*/
/*108792*/        OPC_CheckPredicate, 70, // Predicate_vmrghb_swapped_shuffle
/*108794*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108796*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHB), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrghb_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGHB:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108804*/      /*Scope*/ 12, /*->108817*/
/*108805*/        OPC_CheckPredicate, 71, // Predicate_vmrghh_swapped_shuffle
/*108807*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108809*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHH), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrghh_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGHH:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108817*/      /*Scope*/ 12, /*->108830*/
/*108818*/        OPC_CheckPredicate, 72, // Predicate_vmrghw_swapped_shuffle
/*108820*/        OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*108822*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGHW), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrghw_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGHW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108830*/      /*Scope*/ 12, /*->108843*/
/*108831*/        OPC_CheckPredicate, 73, // Predicate_vmrgew_shuffle
/*108833*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108835*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrgew_shuffle>> - Complexity = 4
                  // Dst: (VMRGEW:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108843*/      /*Scope*/ 12, /*->108856*/
/*108844*/        OPC_CheckPredicate, 74, // Predicate_vmrgow_shuffle
/*108846*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108848*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGOW), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrgow_shuffle>> - Complexity = 4
                  // Dst: (VMRGOW:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108856*/      /*Scope*/ 12, /*->108869*/
/*108857*/        OPC_CheckPredicate, 75, // Predicate_vmrgew_swapped_shuffle
/*108859*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108861*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGEW), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrgew_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGEW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108869*/      /*Scope*/ 12, /*->108882*/
/*108870*/        OPC_CheckPredicate, 76, // Predicate_vmrgow_swapped_shuffle
/*108872*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108874*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VMRGOW), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vmrgow_swapped_shuffle>> - Complexity = 4
                  // Dst: (VMRGOW:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108882*/      /*Scope*/ 12, /*->108895*/
/*108883*/        OPC_CheckPredicate, 77, // Predicate_vpkudum_shuffle
/*108885*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108887*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUM), 0,
                      MVT::v16i8, 2/*#Ops*/, 0, 1, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vpkudum_shuffle>> - Complexity = 4
                  // Dst: (VPKUDUM:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)
/*108895*/      /*Scope*/ 12, /*->108908*/
/*108896*/        OPC_CheckPredicate, 78, // Predicate_vpkudum_swapped_shuffle
/*108898*/        OPC_CheckPatternPredicate, 35, // (PPCSubTarget->hasP8Altivec())
/*108900*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::VPKUDUM), 0,
                      MVT::v16i8, 2/*#Ops*/, 1, 0, 
                  // Src: (vector_shuffle:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB)<<P:Predicate_vpkudum_swapped_shuffle>> - Complexity = 4
                  // Dst: (VPKUDUM:{ *:[v16i8] } ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vA)
/*108908*/      0, /*End of Scope*/
/*108909*/    0, /*End of Scope*/
/*108910*/  /*SwitchOpcode*/ 57, TARGET_VAL(PPCISD::QVALIGNI),// ->108970
/*108913*/    OPC_RecordChild0, // #0 = $FRA
/*108914*/    OPC_RecordChild1, // #1 = $FRB
/*108915*/    OPC_RecordChild2, // #2 = $idx
/*108916*/    OPC_MoveChild2,
/*108917*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*108920*/    OPC_CheckType, MVT::i32,
/*108922*/    OPC_MoveParent,
/*108923*/    OPC_SwitchType /*3 cases */, 13, MVT::v4i1,// ->108939
/*108926*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*108928*/      OPC_EmitConvertToTarget, 2,
/*108930*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVALIGNIb), 0,
                    MVT::v4i1, 3/*#Ops*/, 0, 1, 3, 
                // Src: (PPCqvaligni:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB, (imm:{ *:[i32] }):$idx) - Complexity = 6
                // Dst: (QVALIGNIb:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, v4i1:{ *:[v4i1] }:$FRB, (imm:{ *:[i32] }):$idx)
/*108939*/    /*SwitchType*/ 13, MVT::v4f64,// ->108954
/*108941*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*108943*/      OPC_EmitConvertToTarget, 2,
/*108945*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVALIGNI), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 3, 
                // Src: (PPCqvaligni:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, (imm:{ *:[i32] }):$idx) - Complexity = 6
                // Dst: (QVALIGNI:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, (imm:{ *:[i32] }):$idx)
/*108954*/    /*SwitchType*/ 13, MVT::v4f32,// ->108969
/*108956*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*108958*/      OPC_EmitConvertToTarget, 2,
/*108960*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVALIGNIs), 0,
                    MVT::v4f32, 3/*#Ops*/, 0, 1, 3, 
                // Src: (PPCqvaligni:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, (imm:{ *:[i32] }):$idx) - Complexity = 6
                // Dst: (QVALIGNIs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, (imm:{ *:[i32] }):$idx)
/*108969*/    0, // EndSwitchType
/*108970*/  /*SwitchOpcode*/ 53, TARGET_VAL(PPCISD::QVESPLATI),// ->109026
/*108973*/    OPC_RecordChild0, // #0 = $FRA
/*108974*/    OPC_RecordChild1, // #1 = $idx
/*108975*/    OPC_MoveChild1,
/*108976*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*108979*/    OPC_CheckType, MVT::i32,
/*108981*/    OPC_MoveParent,
/*108982*/    OPC_SwitchType /*3 cases */, 12, MVT::v4i1,// ->108997
/*108985*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*108987*/      OPC_EmitConvertToTarget, 1,
/*108989*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVESPLATIb), 0,
                    MVT::v4i1, 2/*#Ops*/, 0, 2, 
                // Src: (PPCqvesplati:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, (imm:{ *:[i32] }):$idx) - Complexity = 6
                // Dst: (QVESPLATIb:{ *:[v4i1] } v4i1:{ *:[v4i1] }:$FRA, (imm:{ *:[i32] }):$idx)
/*108997*/    /*SwitchType*/ 12, MVT::v4f64,// ->109011
/*108999*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*109001*/      OPC_EmitConvertToTarget, 1,
/*109003*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVESPLATI), 0,
                    MVT::v4f64, 2/*#Ops*/, 0, 2, 
                // Src: (PPCqvesplati:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, (imm:{ *:[i32] }):$idx) - Complexity = 6
                // Dst: (QVESPLATI:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, (imm:{ *:[i32] }):$idx)
/*109011*/    /*SwitchType*/ 12, MVT::v4f32,// ->109025
/*109013*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*109015*/      OPC_EmitConvertToTarget, 1,
/*109017*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVESPLATIs), 0,
                    MVT::v4f32, 2/*#Ops*/, 0, 2, 
                // Src: (PPCqvesplati:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, (imm:{ *:[i32] }):$idx) - Complexity = 6
                // Dst: (QVESPLATIs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, (imm:{ *:[i32] }):$idx)
/*109025*/    0, // EndSwitchType
/*109026*/  /*SwitchOpcode*/ 16, TARGET_VAL(PPCISD::VPERM),// ->109045
/*109029*/    OPC_RecordChild0, // #0 = $vA
/*109030*/    OPC_RecordChild1, // #1 = $vB
/*109031*/    OPC_RecordChild2, // #2 = $vC
/*109032*/    OPC_CheckType, MVT::v16i8,
/*109034*/    OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*109036*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::VPERM), 0,
                  MVT::v16i8, 3/*#Ops*/, 0, 1, 2, 
              // Src: (PPCvperm:{ *:[v16i8] } v16i8:{ *:[v16i8] }:$vA, v16i8:{ *:[v16i8] }:$vB, v16i8:{ *:[v16i8] }:$vC) - Complexity = 3
              // Dst: (VPERM:{ *:[v16i8] } ?:{ *:[v16i8] }:$vA, ?:{ *:[v16i8] }:$vB, ?:{ *:[v16i8] }:$vC)
/*109045*/  /*SwitchOpcode*/ 17, TARGET_VAL(PPCISD::LXVD2X),// ->109065
/*109048*/    OPC_RecordMemRef,
/*109049*/    OPC_RecordNode, // #0 = 'PPClxvd2x' chained node
/*109050*/    OPC_RecordChild1, // #1 = $src
/*109051*/    OPC_CheckPatternPredicate, 15, // (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX())
/*109053*/    OPC_CheckComplexPat, /*CP*/0, /*#*/1, // SelectAddrIdxOnly:$src #2 #3
/*109056*/    OPC_EmitMergeInputChains1_0,
/*109057*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::LXVD2X), 0|OPFL_Chain|OPFL_MemRefs,
                  MVT::v2f64, 2/*#Ops*/, 2, 3, 
              // Src: (PPClxvd2x:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src) - Complexity = 412
              // Dst: (LXVD2X:{ *:[v2f64] } xoaddr:{ *:[iPTR] }:$src)
/*109065*/  /*SwitchOpcode*/ 55, TARGET_VAL(PPCISD::LD_VSX_LH),// ->109123
/*109068*/    OPC_RecordMemRef,
/*109069*/    OPC_RecordNode, // #0 = 'PPCldvsxlh' chained node
/*109070*/    OPC_RecordChild1, // #1 = $src
/*109071*/    OPC_CheckPatternPredicate, 7, // (PPCSubTarget->hasP9Vector())
/*109073*/    OPC_Scope, 23, /*->109098*/ // 2 children in Scope
/*109075*/      OPC_CheckComplexPat, /*CP*/1, /*#*/1, // SelectAddrImmX4:$src #2 #3
/*109078*/      OPC_EmitMergeInputChains1_0,
/*109079*/      OPC_EmitNode1, TARGET_VAL(PPC::DFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*109087*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*109090*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                    MVT::v4f32, 2/*#Ops*/, 4, 5, 
                // Src: (PPCldvsxlh:{ *:[v4f32] } iaddrX4:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (COPY_TO_REGCLASS:{ *:[v4f32] } (DFLOADf64:{ *:[f64] } iaddrX4:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*109098*/    /*Scope*/ 23, /*->109122*/
/*109099*/      OPC_CheckComplexPat, /*CP*/6, /*#*/1, // SelectAddrIdx:$src #2 #3
/*109102*/      OPC_EmitMergeInputChains1_0,
/*109103*/      OPC_EmitNode1, TARGET_VAL(PPC::XFLOADf64), 0|OPFL_Chain|OPFL_MemRefs,
                    MVT::f64, 2/*#Ops*/, 2, 3,  // Results = #4
/*109111*/      OPC_EmitInteger, MVT::i32, PPC::VSRCRegClassID,
/*109114*/      OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0|OPFL_Chain,
                    MVT::v4f32, 2/*#Ops*/, 4, 5, 
                // Src: (PPCldvsxlh:{ *:[v4f32] } xaddr:{ *:[iPTR] }:$src) - Complexity = 412
                // Dst: (COPY_TO_REGCLASS:{ *:[v4f32] } (XFLOADf64:{ *:[f64] } xaddr:{ *:[iPTR] }:$src), VSRC:{ *:[i32] })
/*109122*/    0, /*End of Scope*/
/*109123*/  /*SwitchOpcode*/ 47, TARGET_VAL(PPCISD::SINT_VEC_TO_FP),// ->109173
/*109126*/    OPC_RecordChild0, // #0 = $C
/*109127*/    OPC_CheckChild0Type, MVT::v4i32,
/*109129*/    OPC_CheckType, MVT::v2f64,
/*109131*/    OPC_Scope, 19, /*->109152*/ // 2 children in Scope
/*109133*/      OPC_CheckChild1Integer, 0, 
/*109135*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109137*/      OPC_EmitNode1, TARGET_VAL(PPC::XXMRGHW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 0,  // Results = #1
/*109145*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 1, 
                // Src: (PPCsvec2fp:{ *:[v2f64] } v4i32:{ *:[v4i32] }:$C, 0:{ *:[iPTR] }) - Complexity = 408
                // Dst: (XVCVSXWDP:{ *:[v2f64] } (XXMRGHW:{ *:[v2i64] } ?:{ *:[v4i32] }:$C, ?:{ *:[v4i32] }:$C))
/*109152*/    /*Scope*/ 19, /*->109172*/
/*109153*/      OPC_CheckChild1Integer, 1, 
/*109155*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109157*/      OPC_EmitNode1, TARGET_VAL(PPC::XXMRGLW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 0,  // Results = #1
/*109165*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSXWDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 1, 
                // Src: (PPCsvec2fp:{ *:[v2f64] } v4i32:{ *:[v4i32] }:$C, 1:{ *:[iPTR] }) - Complexity = 408
                // Dst: (XVCVSXWDP:{ *:[v2f64] } (XXMRGLW:{ *:[v2i64] } ?:{ *:[v4i32] }:$C, ?:{ *:[v4i32] }:$C))
/*109172*/    0, /*End of Scope*/
/*109173*/  /*SwitchOpcode*/ 47, TARGET_VAL(PPCISD::UINT_VEC_TO_FP),// ->109223
/*109176*/    OPC_RecordChild0, // #0 = $C
/*109177*/    OPC_CheckChild0Type, MVT::v4i32,
/*109179*/    OPC_CheckType, MVT::v2f64,
/*109181*/    OPC_Scope, 19, /*->109202*/ // 2 children in Scope
/*109183*/      OPC_CheckChild1Integer, 0, 
/*109185*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109187*/      OPC_EmitNode1, TARGET_VAL(PPC::XXMRGHW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 0,  // Results = #1
/*109195*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVUXWDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 1, 
                // Src: (PPCuvec2fp:{ *:[v2f64] } v4i32:{ *:[v4i32] }:$C, 0:{ *:[iPTR] }) - Complexity = 408
                // Dst: (XVCVUXWDP:{ *:[v2f64] } (XXMRGHW:{ *:[v2i64] } ?:{ *:[v4i32] }:$C, ?:{ *:[v4i32] }:$C))
/*109202*/    /*Scope*/ 19, /*->109222*/
/*109203*/      OPC_CheckChild1Integer, 1, 
/*109205*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109207*/      OPC_EmitNode1, TARGET_VAL(PPC::XXMRGLW), 0,
                    MVT::v2i64, 2/*#Ops*/, 0, 0,  // Results = #1
/*109215*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVUXWDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 1, 
                // Src: (PPCuvec2fp:{ *:[v2f64] } v4i32:{ *:[v4i32] }:$C, 1:{ *:[iPTR] }) - Complexity = 408
                // Dst: (XVCVUXWDP:{ *:[v2f64] } (XXMRGLW:{ *:[v2i64] } ?:{ *:[v4i32] }:$C, ?:{ *:[v4i32] }:$C))
/*109222*/    0, /*End of Scope*/
/*109223*/  /*SwitchOpcode*/ 43, TARGET_VAL(PPCISD::FP_EXTEND_HALF),// ->109269
/*109226*/    OPC_RecordChild0, // #0 = $C
/*109227*/    OPC_Scope, 19, /*->109248*/ // 2 children in Scope
/*109229*/      OPC_CheckChild1Integer, 0, 
/*109231*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109233*/      OPC_EmitNode1, TARGET_VAL(PPC::XXMRGHW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 0,  // Results = #1
/*109241*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 1, 
                // Src: (PPCfpexth:{ *:[v2f64] } v4f32:{ *:[v4f32] }:$C, 0:{ *:[iPTR] }) - Complexity = 408
                // Dst: (XVCVSPDP:{ *:[v2f64] } (XXMRGHW:{ *:[v4i32] } ?:{ *:[v4f32] }:$C, ?:{ *:[v4f32] }:$C))
/*109248*/    /*Scope*/ 19, /*->109268*/
/*109249*/      OPC_CheckChild1Integer, 1, 
/*109251*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109253*/      OPC_EmitNode1, TARGET_VAL(PPC::XXMRGLW), 0,
                    MVT::v4i32, 2/*#Ops*/, 0, 0,  // Results = #1
/*109261*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVCVSPDP), 0,
                    MVT::v2f64, 1/*#Ops*/, 1, 
                // Src: (PPCfpexth:{ *:[v2f64] } v4f32:{ *:[v4f32] }:$C, 1:{ *:[iPTR] }) - Complexity = 408
                // Dst: (XVCVSPDP:{ *:[v2f64] } (XXMRGLW:{ *:[v4i32] } ?:{ *:[v4f32] }:$C, ?:{ *:[v4f32] }:$C))
/*109268*/    0, /*End of Scope*/
/*109269*/  /*SwitchOpcode*/ 17, TARGET_VAL(PPCISD::SWAP_NO_CHAIN),// ->109289
/*109272*/    OPC_RecordChild0, // #0 = $src
/*109273*/    OPC_CheckType, MVT::v2f64,
/*109275*/    OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109277*/    OPC_EmitInteger, MVT::i32, 2, 
/*109280*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::XXPERMDI), 0,
                  MVT::v2f64, 3/*#Ops*/, 0, 0, 1, 
              // Src: (PPCswapNoChain:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$src) - Complexity = 403
              // Dst: (XXPERMDI:{ *:[v2f64] } ?:{ *:[v2f64] }:$src, ?:{ *:[v2f64] }:$src, 2:{ *:[i32] })
/*109289*/  /*SwitchOpcode*/ 27|128,1/*155*/, TARGET_VAL(ISD::FMAXNUM),// ->109448
/*109293*/    OPC_RecordChild0, // #0 = $src1
/*109294*/    OPC_RecordChild1, // #1 = $src2
/*109295*/    OPC_SwitchType /*3 cases */, 73, MVT::v4f32,// ->109371
/*109298*/      OPC_Scope, 10, /*->109310*/ // 3 children in Scope
/*109300*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109302*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMAXSP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fmaxnum:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$src1, v4f32:{ *:[v4f32] }:$src2) - Complexity = 403
                  // Dst: (XVMAXSP:{ *:[v4f32] } ?:{ *:[v4f32] }:$src1, ?:{ *:[v4f32] }:$src2)
/*109310*/      /*Scope*/ 19, /*->109330*/
/*109311*/        OPC_CheckPatternPredicate, 47, // (PPCSubTarget->hasQPX()) && (TM.Options.NoNaNsFPMath)
/*109313*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109321*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELbs), 0,
                      MVT::v4f32, 3/*#Ops*/, 2, 1, 0, 
                  // Src: (fmaxnum:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELbs:{ *:[v4f32] } (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), ?:{ *:[v4f32] }:$FRB, ?:{ *:[v4f32] }:$FRA)
/*109330*/      /*Scope*/ 39, /*->109370*/
/*109331*/        OPC_CheckPatternPredicate, 48, // (PPCSubTarget->hasQPX()) && (!TM.Options.NoNaNsFPMath)
/*109333*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109341*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 1, 1,  // Results = #3
/*109349*/        OPC_EmitInteger, MVT::i32, 7, 
/*109352*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*109361*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELbs), 0,
                      MVT::v4f32, 3/*#Ops*/, 5, 1, 0, 
                  // Src: (fmaxnum:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELbs:{ *:[v4f32] } (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRB, ?:{ *:[v4f32] }:$FRB), 7:{ *:[i32] }), ?:{ *:[v4f32] }:$FRB, ?:{ *:[v4f32] }:$FRA)
/*109370*/      0, /*End of Scope*/
/*109371*/    /*SwitchType*/ 10, MVT::v2f64,// ->109383
/*109373*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109375*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMAXDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (fmaxnum:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$src1, v2f64:{ *:[v2f64] }:$src2) - Complexity = 403
                // Dst: (XVMAXDP:{ *:[v2f64] } ?:{ *:[v2f64] }:$src1, ?:{ *:[v2f64] }:$src2)
/*109383*/    /*SwitchType*/ 62, MVT::v4f64,// ->109447
/*109385*/      OPC_Scope, 19, /*->109406*/ // 2 children in Scope
/*109387*/        OPC_CheckPatternPredicate, 47, // (PPCSubTarget->hasQPX()) && (TM.Options.NoNaNsFPMath)
/*109389*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109397*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELb), 0,
                      MVT::v4f64, 3/*#Ops*/, 2, 1, 0, 
                  // Src: (fmaxnum:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELb:{ *:[v4f64] } (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), ?:{ *:[v4f64] }:$FRB, ?:{ *:[v4f64] }:$FRA)
/*109406*/      /*Scope*/ 39, /*->109446*/
/*109407*/        OPC_CheckPatternPredicate, 48, // (PPCSubTarget->hasQPX()) && (!TM.Options.NoNaNsFPMath)
/*109409*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPGTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109417*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 1, 1,  // Results = #3
/*109425*/        OPC_EmitInteger, MVT::i32, 7, 
/*109428*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*109437*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELb), 0,
                      MVT::v4f64, 3/*#Ops*/, 5, 1, 0, 
                  // Src: (fmaxnum:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELb:{ *:[v4f64] } (QVFLOGICALb:{ *:[v4i1] } (QVFCMPGTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRB, ?:{ *:[v4f64] }:$FRB), 7:{ *:[i32] }), ?:{ *:[v4f64] }:$FRB, ?:{ *:[v4f64] }:$FRA)
/*109446*/      0, /*End of Scope*/
/*109447*/    0, // EndSwitchType
/*109448*/  /*SwitchOpcode*/ 27|128,1/*155*/, TARGET_VAL(ISD::FMINNUM),// ->109607
/*109452*/    OPC_RecordChild0, // #0 = $src1
/*109453*/    OPC_RecordChild1, // #1 = $src2
/*109454*/    OPC_SwitchType /*3 cases */, 73, MVT::v4f32,// ->109530
/*109457*/      OPC_Scope, 10, /*->109469*/ // 3 children in Scope
/*109459*/        OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109461*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMINSP), 0,
                      MVT::v4f32, 2/*#Ops*/, 0, 1, 
                  // Src: (fminnum:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$src1, v4f32:{ *:[v4f32] }:$src2) - Complexity = 403
                  // Dst: (XVMINSP:{ *:[v4f32] } ?:{ *:[v4f32] }:$src1, ?:{ *:[v4f32] }:$src2)
/*109469*/      /*Scope*/ 19, /*->109489*/
/*109470*/        OPC_CheckPatternPredicate, 47, // (PPCSubTarget->hasQPX()) && (TM.Options.NoNaNsFPMath)
/*109472*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109480*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELbs), 0,
                      MVT::v4f32, 3/*#Ops*/, 2, 1, 0, 
                  // Src: (fminnum:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELbs:{ *:[v4f32] } (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), ?:{ *:[v4f32] }:$FRB, ?:{ *:[v4f32] }:$FRA)
/*109489*/      /*Scope*/ 39, /*->109529*/
/*109490*/        OPC_CheckPatternPredicate, 48, // (PPCSubTarget->hasQPX()) && (!TM.Options.NoNaNsFPMath)
/*109492*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109500*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANbs), 0,
                      MVT::v4i1, 2/*#Ops*/, 1, 1,  // Results = #3
/*109508*/        OPC_EmitInteger, MVT::i32, 7, 
/*109511*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*109520*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELbs), 0,
                      MVT::v4f32, 3/*#Ops*/, 5, 1, 0, 
                  // Src: (fminnum:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELbs:{ *:[v4f32] } (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRA, ?:{ *:[v4f32] }:$FRB), (QVFTSTNANbs:{ *:[v4i1] } ?:{ *:[v4f32] }:$FRB, ?:{ *:[v4f32] }:$FRB), 7:{ *:[i32] }), ?:{ *:[v4f32] }:$FRB, ?:{ *:[v4f32] }:$FRA)
/*109529*/      0, /*End of Scope*/
/*109530*/    /*SwitchType*/ 10, MVT::v2f64,// ->109542
/*109532*/      OPC_CheckPatternPredicate, 13, // (PPCSubTarget->hasVSX())
/*109534*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::XVMINDP), 0,
                    MVT::v2f64, 2/*#Ops*/, 0, 1, 
                // Src: (fminnum:{ *:[v2f64] } v2f64:{ *:[v2f64] }:$src1, v2f64:{ *:[v2f64] }:$src2) - Complexity = 403
                // Dst: (XVMINDP:{ *:[v2f64] } ?:{ *:[v2f64] }:$src1, ?:{ *:[v2f64] }:$src2)
/*109542*/    /*SwitchType*/ 62, MVT::v4f64,// ->109606
/*109544*/      OPC_Scope, 19, /*->109565*/ // 2 children in Scope
/*109546*/        OPC_CheckPatternPredicate, 47, // (PPCSubTarget->hasQPX()) && (TM.Options.NoNaNsFPMath)
/*109548*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109556*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELb), 0,
                      MVT::v4f64, 3/*#Ops*/, 2, 1, 0, 
                  // Src: (fminnum:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELb:{ *:[v4f64] } (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), ?:{ *:[v4f64] }:$FRB, ?:{ *:[v4f64] }:$FRA)
/*109565*/      /*Scope*/ 39, /*->109605*/
/*109566*/        OPC_CheckPatternPredicate, 48, // (PPCSubTarget->hasQPX()) && (!TM.Options.NoNaNsFPMath)
/*109568*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFCMPLTb), 0,
                      MVT::v4i1, 2/*#Ops*/, 0, 1,  // Results = #2
/*109576*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFTSTNANb), 0,
                      MVT::v4i1, 2/*#Ops*/, 1, 1,  // Results = #3
/*109584*/        OPC_EmitInteger, MVT::i32, 7, 
/*109587*/        OPC_EmitNode1, TARGET_VAL(PPC::QVFLOGICALb), 0,
                      MVT::v4i1, 3/*#Ops*/, 2, 3, 4,  // Results = #5
/*109596*/        OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFSELb), 0,
                      MVT::v4f64, 3/*#Ops*/, 5, 1, 0, 
                  // Src: (fminnum:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB) - Complexity = 3
                  // Dst: (QVFSELb:{ *:[v4f64] } (QVFLOGICALb:{ *:[v4i1] } (QVFCMPLTb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRA, ?:{ *:[v4f64] }:$FRB), (QVFTSTNANb:{ *:[v4i1] } ?:{ *:[v4f64] }:$FRB, ?:{ *:[v4f64] }:$FRB), 7:{ *:[i32] }), ?:{ *:[v4f64] }:$FRB, ?:{ *:[v4f64] }:$FRA)
/*109605*/      0, /*End of Scope*/
/*109606*/    0, // EndSwitchType
/*109607*/  /*SwitchOpcode*/ 23, TARGET_VAL(PPCISD::QVGPCI),// ->109633
/*109610*/    OPC_RecordChild0, // #0 = $idx
/*109611*/    OPC_MoveChild0,
/*109612*/    OPC_CheckOpcode, TARGET_VAL(ISD::Constant),
/*109615*/    OPC_CheckPredicate, 16, // Predicate_u12
/*109617*/    OPC_CheckType, MVT::i32,
/*109619*/    OPC_MoveParent,
/*109620*/    OPC_CheckType, MVT::v4f64,
/*109622*/    OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*109624*/    OPC_EmitConvertToTarget, 0,
/*109626*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::QVGPCI), 0,
                  MVT::v4f64, 1/*#Ops*/, 1, 
              // Src: (PPCqvgpci:{ *:[v4f64] } (imm:{ *:[i32] })<<P:Predicate_u12>>:$idx) - Complexity = 7
              // Dst: (QVGPCI:{ *:[v4f64] } (imm:{ *:[i32] }):$idx)
/*109633*/  /*SwitchOpcode*/ 16, TARGET_VAL(PPCISD::VMADDFP),// ->109652
/*109636*/    OPC_RecordChild0, // #0 = $A
/*109637*/    OPC_RecordChild1, // #1 = $B
/*109638*/    OPC_RecordChild2, // #2 = $C
/*109639*/    OPC_CheckType, MVT::v4f32,
/*109641*/    OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*109643*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::VMADDFP), 0,
                  MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
              // Src: (PPCvmaddfp:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, v4f32:{ *:[v4f32] }:$B, v4f32:{ *:[v4f32] }:$C) - Complexity = 3
              // Dst: (VMADDFP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B, ?:{ *:[v4f32] }:$C)
/*109652*/  /*SwitchOpcode*/ 16, TARGET_VAL(PPCISD::VNMSUBFP),// ->109671
/*109655*/    OPC_RecordChild0, // #0 = $A
/*109656*/    OPC_RecordChild1, // #1 = $B
/*109657*/    OPC_RecordChild2, // #2 = $C
/*109658*/    OPC_CheckType, MVT::v4f32,
/*109660*/    OPC_CheckPatternPredicate, 8, // (PPCSubTarget->hasAltivec())
/*109662*/    OPC_MorphNodeTo1, TARGET_VAL(PPC::VNMSUBFP), 0,
                  MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
              // Src: (PPCvnmsubfp:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$A, v4f32:{ *:[v4f32] }:$B, v4f32:{ *:[v4f32] }:$C) - Complexity = 3
              // Dst: (VNMSUBFP:{ *:[v4f32] } ?:{ *:[v4f32] }:$A, ?:{ *:[v4f32] }:$B, ?:{ *:[v4f32] }:$C)
/*109671*/  /*SwitchOpcode*/ 33, TARGET_VAL(PPCISD::QVFPERM),// ->109707
/*109674*/    OPC_RecordChild0, // #0 = $FRA
/*109675*/    OPC_RecordChild1, // #1 = $FRB
/*109676*/    OPC_RecordChild2, // #2 = $FRC
/*109677*/    OPC_CheckChild2Type, MVT::v4f64,
/*109679*/    OPC_SwitchType /*2 cases */, 11, MVT::v4f64,// ->109693
/*109682*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*109684*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFPERM), 0,
                    MVT::v4f64, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCqvfperm:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 3
                // Dst: (QVFPERM:{ *:[v4f64] } v4f64:{ *:[v4f64] }:$FRA, v4f64:{ *:[v4f64] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/*109693*/    /*SwitchType*/ 11, MVT::v4f32,// ->109706
/*109695*/      OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*109697*/      OPC_MorphNodeTo1, TARGET_VAL(PPC::QVFPERMs), 0,
                    MVT::v4f32, 3/*#Ops*/, 0, 1, 2, 
                // Src: (PPCqvfperm:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, v4f64:{ *:[v4f64] }:$FRC) - Complexity = 3
                // Dst: (QVFPERMs:{ *:[v4f32] } v4f32:{ *:[v4f32] }:$FRA, v4f32:{ *:[v4f32] }:$FRB, v4f64:{ *:[v4f64] }:$FRC)
/*109706*/    0, // EndSwitchType
/*109707*/  /*SwitchOpcode*/ 18, TARGET_VAL(PPCISD::QBFLT),// ->109728
/*109710*/    OPC_RecordChild0, // #0 = $src
/*109711*/    OPC_CheckChild0Type, MVT::v4i1,
/*109713*/    OPC_CheckType, MVT::v4f64,
/*109715*/    OPC_CheckPatternPredicate, 9, // (PPCSubTarget->hasQPX())
/*109717*/    OPC_EmitInteger, MVT::i32, PPC::QFRCRegClassID,
/*109720*/    OPC_MorphNodeTo1, TARGET_VAL(TargetOpcode::COPY_TO_REGCLASS), 0,
                  MVT::v4f64, 2/*#Ops*/, 0, 1, 
              // Src: (PPCqbflt:{ *:[v4f64] } v4i1:{ *:[v4i1] }:$src) - Complexity = 3
              // Dst: (COPY_TO_REGCLASS:{ *:[v4f64] } ?:{ *:[v4i1] }:$src, QFRC:{ *:[i32] })
/*109728*/  0, // EndSwitchOpcode
    0
  }; // Total Array size is 109730 bytes

  // Opcode Histogram:
  // #OPC_Scope                                = 893
  // #OPC_RecordNode                           = 75
  // #OPC_RecordChild                          = 1473
  // #OPC_RecordMemRef                         = 37
  // #OPC_CaptureGlueInput                     = 12
  // #OPC_MoveChild                            = 553
  // #OPC_MoveParent                           = 1776
  // #OPC_CheckSame                            = 12
  // #OPC_CheckChildSame                       = 70
  // #OPC_CheckPatternPredicate                = 2189
  // #OPC_CheckPredicate                       = 541
  // #OPC_CheckOpcode                          = 399
  // #OPC_SwitchOpcode                         = 39
  // #OPC_CheckType                            = 1797
  // #OPC_SwitchType                           = 242
  // #OPC_CheckChildType                       = 367
  // #OPC_CheckInteger                         = 3
  // #OPC_CheckChildInteger                    = 825
  // #OPC_CheckCondCode                        = 150
  // #OPC_CheckChild2CondCode                  = 504
  // #OPC_CheckValueType                       = 58
  // #OPC_CheckComplexPat                      = 472
  // #OPC_CheckAndImm                          = 4
  // #OPC_CheckOrImm                           = 0
  // #OPC_CheckImmAllOnesV                     = 53
  // #OPC_CheckImmAllZerosV                    = 4
  // #OPC_CheckFoldableChainNode               = 5
  // #OPC_EmitInteger                          = 2688
  // #OPC_EmitStringInteger                    = 1525
  // #OPC_EmitRegister                         = 12
  // #OPC_EmitConvertToTarget                  = 271
  // #OPC_EmitMergeInputChains                 = 569
  // #OPC_EmitCopyToReg                        = 0
  // #OPC_EmitNode                             = 4883
  // #OPC_EmitNodeXForm                        = 88
  // #OPC_CompleteMatch                        = 35
  // #OPC_MorphNodeTo                          = 3026

  #undef TARGET_VAL
  SelectCodeCommon(N, MatcherTable,sizeof(MatcherTable));
}
#endif // GET_DAGISEL_BODY

#ifdef GET_DAGISEL_DECL
bool CheckPatternPredicate(unsigned PredNo) const override;
#endif
#if defined(GET_DAGISEL_BODY) || DAGISEL_INLINE
bool DAGISEL_CLASS_COLONCOLON CheckPatternPredicate(unsigned PredNo) const
#if DAGISEL_INLINE
  override
#endif
{
  switch (PredNo) {
  default: llvm_unreachable("Invalid predicate in table?");
  case 0: return (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian());
  case 1: return (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isLittleEndian());
  case 2: return (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector());
  case 3: return (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector());
  case 4: return (PPCSubTarget->hasP8Vector()) && (!PPCSubTarget->isLittleEndian());
  case 5: return (PPCSubTarget->hasP8Vector()) && (PPCSubTarget->isLittleEndian());
  case 6: return (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian());
  case 7: return (PPCSubTarget->hasP9Vector());
  case 8: return (PPCSubTarget->hasAltivec());
  case 9: return (PPCSubTarget->hasQPX());
  case 10: return (PPCSubTarget->hasP8Vector());
  case 11: return (PPCSubTarget->hasFPU());
  case 12: return (PPCSubTarget->hasSPE());
  case 13: return (PPCSubTarget->hasVSX());
  case 14: return (!PPCSubTarget->hasP9Vector());
  case 15: return (!PPCSubTarget->hasP9Vector()) && (PPCSubTarget->hasVSX());
  case 16: return (!PPCSubTarget->hasOnlyMSYNC());
  case 17: return (PPCSubTarget->hasOnlyMSYNC());
  case 18: return (PPCSubTarget->hasHTM());
  case 19: return (PPCSubTarget->hasVSX()) && (PPCSubTarget->isLittleEndian());
  case 20: return (PPCSubTarget->hasP9Altivec()) && (PPCSubTarget->isLittleEndian());
  case 21: return (PPCSubTarget->hasP9Altivec()) && (!PPCSubTarget->isLittleEndian());
  case 22: return (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (PPCSubTarget->isISA3_0());
  case 23: return (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian());
  case 24: return (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian());
  case 25: return (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec());
  case 26: return (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Altivec());
  case 27: return (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isISA3_0()) && (PPCSubTarget->isLittleEndian());
  case 28: return (!PPCSubTarget->isLittleEndian());
  case 29: return (PPCSubTarget->isLittleEndian());
  case 30: return (PPCSubTarget->hasVSX()) && (!PPCSubTarget->isLittleEndian());
  case 31: return (PPCSubTarget->hasExtDiv());
  case 32: return (PPCSubTarget->hasP9Altivec());
  case 33: return (PPCSubTarget->hasBPERMD());
  case 34: return (PPCSubTarget->hasP8Crypto());
  case 35: return (PPCSubTarget->hasP8Altivec());
  case 36: return (PPCSubTarget->hasDirectMove());
  case 37: return (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasVSX());
  case 38: return (PPCSubTarget->hasICBT());
  case 39: return (PPCSubTarget->isISA3_0());
  case 40: return (PPCSubTarget->isPPC64());
  case 41: return (!PPCSubTarget->isPPC64());
  case 42: return (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasP9Vector()) && (!PPCSubTarget->isLittleEndian()) && (PPCSubTarget->isISA3_0());
  case 43: return (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->hasP9Vector()) && (PPCSubTarget->isISA3_0()) && (PPCSubTarget->isLittleEndian());
  case 44: return (PPCSubTarget->hasDirectMove()) && (!PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector());
  case 45: return (PPCSubTarget->hasDirectMove()) && (PPCSubTarget->isLittleEndian()) && (!PPCSubTarget->hasP9Vector());
  case 46: return (PPCSubTarget->hasVSX()) && (!PPCSubTarget->hasP9Vector());
  case 47: return (PPCSubTarget->hasQPX()) && (TM.Options.NoNaNsFPMath);
  case 48: return (PPCSubTarget->hasQPX()) && (!TM.Options.NoNaNsFPMath);
  }
}
#endif // GET_DAGISEL_BODY

#ifdef GET_DAGISEL_DECL
bool CheckNodePredicate(SDNode *Node, unsigned PredNo) const override;
#endif
#if defined(GET_DAGISEL_BODY) || DAGISEL_INLINE
bool DAGISEL_CLASS_COLONCOLON CheckNodePredicate(SDNode *Node, unsigned PredNo) const
#if DAGISEL_INLINE
  override
#endif
{
  switch (PredNo) {
  default: llvm_unreachable("Invalid predicate in table?");
  case 0: { 
    // Predicate_unindexedstore
    SDNode *N = Node;
    (void)N;
if (cast<StoreSDNode>(N)->getAddressingMode() != ISD::UNINDEXED) return false;
return true;

  }
  case 1: { 
    // Predicate_truncstore
    // Predicate_itruncstore
    SDNode *N = Node;
    (void)N;
 if (!cast<StoreSDNode>(N)->isTruncatingStore()) return false;
return true;

  }
  case 2: { 
    // Predicate_truncstorei8
    // Predicate_pre_truncsti8
    // Predicate_zextloadi8
    // Predicate_extloadi8
    // Predicate_atomic_load_8
    // Predicate_atomic_store_8
    // Predicate_atomic_load_add_8
    // Predicate_atomic_load_sub_8
    // Predicate_atomic_load_and_8
    // Predicate_atomic_load_or_8
    // Predicate_atomic_load_xor_8
    // Predicate_atomic_load_nand_8
    // Predicate_atomic_load_min_8
    // Predicate_atomic_load_max_8
    // Predicate_atomic_load_umin_8
    // Predicate_atomic_load_umax_8
    // Predicate_atomic_cmp_swap_8
    // Predicate_atomic_swap_8
    SDNode *N = Node;
    (void)N;
if (cast<MemSDNode>(N)->getMemoryVT() != MVT::i8) return false;
return true;

  }
  case 3: { 
    // Predicate_truncstorei16
    // Predicate_pre_truncsti16
    // Predicate_sextloadi16
    // Predicate_zextloadi16
    // Predicate_extloadi16
    // Predicate_atomic_load_16
    // Predicate_atomic_store_16
    // Predicate_atomic_load_add_16
    // Predicate_atomic_load_sub_16
    // Predicate_atomic_load_and_16
    // Predicate_atomic_load_or_16
    // Predicate_atomic_load_xor_16
    // Predicate_atomic_load_nand_16
    // Predicate_atomic_load_min_16
    // Predicate_atomic_load_max_16
    // Predicate_atomic_load_umin_16
    // Predicate_atomic_load_umax_16
    // Predicate_atomic_cmp_swap_16
    // Predicate_atomic_swap_16
    SDNode *N = Node;
    (void)N;
if (cast<MemSDNode>(N)->getMemoryVT() != MVT::i16) return false;
return true;

  }
  case 4: { 
    // Predicate_store
    // Predicate_istore
    SDNode *N = Node;
    (void)N;
 if (cast<StoreSDNode>(N)->isTruncatingStore()) return false;
return true;

  }
  case 5: { 
    // Predicate_quadwOffsetStore
    // Predicate_quadwOffsetLoad
    SDNode *N = Node;
    (void)N;

  return isOffsetMultipleOf(N, 16);

  }
  case 6: { 
    // Predicate_nonQuadwOffsetStore
    // Predicate_nonQuadwOffsetLoad
    SDNode *N = Node;
    (void)N;

  return !isOffsetMultipleOf(N, 16);

  }
  case 7: { 
    // Predicate_pre_store
    // Predicate_pre_truncst
    SDNode *N = Node;
    (void)N;

  ISD::MemIndexedMode AM = cast<StoreSDNode>(N)->getAddressingMode();
  return AM == ISD::PRE_INC || AM == ISD::PRE_DEC;

  }
  case 8: { 
    // Predicate_truncstorei32
    // Predicate_pre_truncsti32
    // Predicate_sextloadi32
    // Predicate_zextloadi32
    // Predicate_extloadi32
    // Predicate_atomic_load_32
    // Predicate_atomic_store_32
    // Predicate_atomic_load_add_32
    // Predicate_atomic_load_sub_32
    // Predicate_atomic_load_and_32
    // Predicate_atomic_load_or_32
    // Predicate_atomic_load_xor_32
    // Predicate_atomic_load_nand_32
    // Predicate_atomic_load_min_32
    // Predicate_atomic_load_max_32
    // Predicate_atomic_load_umin_32
    // Predicate_atomic_load_umax_32
    // Predicate_atomic_cmp_swap_32
    // Predicate_atomic_swap_32
    SDNode *N = Node;
    (void)N;
if (cast<MemSDNode>(N)->getMemoryVT() != MVT::i32) return false;
return true;

  }
  case 9: { 
    // Predicate_aligned4store
    // Predicate_aligned4pre_store
    SDNode *N = Node;
    (void)N;

  return cast<StoreSDNode>(N)->getAlignment() >= 4;

  }
  case 10: { 
    // Predicate_unaligned4store
    SDNode *N = Node;
    (void)N;

  return cast<StoreSDNode>(N)->getAlignment() < 4;

  }
  case 11: { 
    // Predicate_truncstorev4f32
    // Predicate_pre_truncstv4f32
    SDNode *N = Node;
    (void)N;

  return cast<StoreSDNode>(N)->getMemoryVT() == MVT::v4f32;

  }
  case 12: { 
    // Predicate_immZExt16
    auto *N = cast<ConstantSDNode>(Node);
    (void)N;

  // immZExt16 predicate - True if the immediate fits in a 16-bit zero extended
  // field.  Used by instructions like 'ori'.
  return (uint64_t)N->getZExtValue() == (unsigned short)N->getZExtValue();

  }
  case 13: { 
    // Predicate_imm32SExt16
    int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();

  // imm32SExt16 predicate - True if the i32 immediate fits in a 16-bit
  // sign extended field.  Used by instructions like 'addi'.
  return (int32_t)Imm == (short)Imm;

  }
  case 14: { 
    // Predicate_imm64SExt16
    int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();

  // imm64SExt16 predicate - True if the i64 immediate fits in a 16-bit
  // sign extended field.  Used by instructions like 'addi'.
  return (int64_t)Imm == (short)Imm;

  }
  case 15: { 
    // Predicate_imm64ZExt32
    int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();

  // imm64ZExt32 predicate - True if the i64 immediate fits in a 32-bit
  // zero extended field.
  return isUInt<32>(Imm);

  }
  case 16: { 
    // Predicate_u12
    int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();
 return (Imm & 0xFFF) == Imm; 
  }
  case 17: { 
    // Predicate_imm16ShiftedZExt
    auto *N = cast<ConstantSDNode>(Node);
    (void)N;

  // imm16ShiftedZExt predicate - True if only bits in the top 16-bits of the
  // immediate are set.  Used by instructions like 'xoris'.
  return (N->getZExtValue() & ~uint64_t(0xFFFF0000)) == 0;

  }
  case 18: { 
    // Predicate_mul_without_simm16
    // Predicate_add_without_simm16
    SDNode *N = Node;
    (void)N;

    int16_t Imm;
    return !isIntS16Immediate(N->getOperand(0), Imm)
             && !isIntS16Immediate(N->getOperand(1), Imm);

  }
  case 19: { 
    // Predicate_imm16ShiftedSExt
    auto *N = cast<ConstantSDNode>(Node);
    (void)N;

  // imm16ShiftedSExt predicate - True if only bits in the top 16-bits of the
  // immediate are set.  Used by instructions like 'addis'.  Identical to 
  // imm16ShiftedZExt in 32-bit mode.
  if (N->getZExtValue() & 0xFFFF) return false;
  if (N->getValueType(0) == MVT::i32)
    return true;
  // For 64-bit, make sure it is sext right.
  return N->getZExtValue() == (uint64_t)(int)N->getZExtValue();

  }
  case 20: { 
    // Predicate_unindexedload
    SDNode *N = Node;
    (void)N;
if (cast<LoadSDNode>(N)->getAddressingMode() != ISD::UNINDEXED) return false;
return true;

  }
  case 21: { 
    // Predicate_zextload
    SDNode *N = Node;
    (void)N;
if (cast<LoadSDNode>(N)->getExtensionType() != ISD::ZEXTLOAD) return false;
return true;

  }
  case 22: { 
    // Predicate_sextload
    SDNode *N = Node;
    (void)N;
if (cast<LoadSDNode>(N)->getExtensionType() != ISD::SEXTLOAD) return false;
return true;

  }
  case 23: { 
    // Predicate_load
    SDNode *N = Node;
    (void)N;
if (cast<LoadSDNode>(N)->getExtensionType() != ISD::NON_EXTLOAD) return false;
return true;

  }
  case 24: { 
    // Predicate_zextloadi1
    // Predicate_extloadi1
    SDNode *N = Node;
    (void)N;
if (cast<MemSDNode>(N)->getMemoryVT() != MVT::i1) return false;
return true;

  }
  case 25: { 
    // Predicate_extload
    SDNode *N = Node;
    (void)N;
if (cast<LoadSDNode>(N)->getExtensionType() != ISD::EXTLOAD) return false;
return true;

  }
  case 26: { 
    // Predicate_aligned4sextloadi32
    // Predicate_aligned4load
    SDNode *N = Node;
    (void)N;

  return cast<LoadSDNode>(N)->getAlignment() >= 4;

  }
  case 27: { 
    // Predicate_unaligned4sextloadi32
    // Predicate_unaligned4load
    SDNode *N = Node;
    (void)N;

  return cast<LoadSDNode>(N)->getAlignment() < 4;

  }
  case 28: { 
    // Predicate_extloadf32
    SDNode *N = Node;
    (void)N;
if (cast<MemSDNode>(N)->getMemoryVT() != MVT::f32) return false;
return true;

  }
  case 29: { 
    // Predicate_extloadv4f32
    SDNode *N = Node;
    (void)N;

  return cast<LoadSDNode>(N)->getMemoryVT() == MVT::v4f32;

  }
  case 30: { 
    // Predicate_atomic_load_64
    // Predicate_atomic_store_64
    // Predicate_atomic_load_add_64
    // Predicate_atomic_load_sub_64
    // Predicate_atomic_load_and_64
    // Predicate_atomic_load_or_64
    // Predicate_atomic_load_xor_64
    // Predicate_atomic_load_nand_64
    // Predicate_atomic_load_min_64
    // Predicate_atomic_load_max_64
    // Predicate_atomic_load_umin_64
    // Predicate_atomic_load_umax_64
    // Predicate_atomic_cmp_swap_64
    // Predicate_atomic_swap_64
    SDNode *N = Node;
    (void)N;
if (cast<MemSDNode>(N)->getMemoryVT() != MVT::i64) return false;
return true;

  }
  case 31: { 
    // Predicate_maskimm32
    auto *N = cast<ConstantSDNode>(Node);
    (void)N;

  // maskImm predicate - True if immediate is a run of ones.
  unsigned mb, me;
  if (N->getValueType(0) == MVT::i32)
    return isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
  else
    return false;

  }
  case 32: { 
    // Predicate_fround_inexact
    SDNode *N = Node;
    (void)N;

  return cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() == 0;

  }
  case 33: { 
    // Predicate_fround_exact
    SDNode *N = Node;
    (void)N;

  return cast<ConstantSDNode>(N->getOperand(1))->getZExtValue() == 1;

  }
  case 34: { 
    // Predicate_fpimm0
    auto *N = cast<ConstantFPSDNode>(Node);
    (void)N;
 return N->isExactlyValue(+0.0); 
  }
  case 35: { 
    // Predicate_immNonAllOneAnyExt8
    int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();
 
  return (isInt<8>(Imm) && (Imm != -1)) || (isUInt<8>(Imm) && (Imm != 0xFF));

  }
  case 36: { 
    // Predicate_immSExt5NonZero
    int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();
 return Imm && isInt<5>(Imm); 
  }
  case 37: { 
    // Predicate_vecspltisb
    SDNode *N = Node;
    (void)N;

  return PPC::get_VSPLTI_elt(N, 1, *CurDAG).getNode() != nullptr;

  }
  case 38: { 
    // Predicate_vecspltish
    SDNode *N = Node;
    (void)N;

  return PPC::get_VSPLTI_elt(N, 2, *CurDAG).getNode() != nullptr;

  }
  case 39: { 
    // Predicate_vecspltisw
    SDNode *N = Node;
    (void)N;

  return PPC::get_VSPLTI_elt(N, 4, *CurDAG).getNode() != nullptr;

  }
  case 40: { 
    // Predicate_vspltb_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isSplatShuffleMask(cast<ShuffleVectorSDNode>(N), 1);

  }
  case 41: { 
    // Predicate_vsplth_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isSplatShuffleMask(cast<ShuffleVectorSDNode>(N), 2);

  }
  case 42: { 
    // Predicate_vspltw_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isSplatShuffleMask(cast<ShuffleVectorSDNode>(N), 4);

  }
  case 43: { 
    // Predicate_vsldoi_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVSLDOIShuffleMask(N, 1, *CurDAG) != -1;

  }
  case 44: { 
    // Predicate_vpkuwum_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUWUMShuffleMask(cast<ShuffleVectorSDNode>(N), 1, *CurDAG);

  }
  case 45: { 
    // Predicate_vpkuhum_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUHUMShuffleMask(cast<ShuffleVectorSDNode>(N), 1, *CurDAG);

  }
  case 46: { 
    // Predicate_vmrglb_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 1, 1, *CurDAG);

  }
  case 47: { 
    // Predicate_vmrglh_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 2, 1, *CurDAG);

  }
  case 48: { 
    // Predicate_vmrglw_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 4, 1, *CurDAG);

  }
  case 49: { 
    // Predicate_vmrghb_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 1, 1, *CurDAG);

  }
  case 50: { 
    // Predicate_vmrghh_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 2, 1, *CurDAG);

  }
  case 51: { 
    // Predicate_vmrghw_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 4, 1, *CurDAG);

  }
  case 52: { 
    // Predicate_vmrgew_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGEOShuffleMask(cast<ShuffleVectorSDNode>(N), true, 1, *CurDAG);

  }
  case 53: { 
    // Predicate_vmrgow_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGEOShuffleMask(cast<ShuffleVectorSDNode>(N), false, 1, *CurDAG);

  }
  case 54: { 
    // Predicate_vpkudum_unary_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUDUMShuffleMask(cast<ShuffleVectorSDNode>(N), 1, *CurDAG);

  }
  case 55: { 
    // Predicate_vmrghb_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 1, 0, *CurDAG);

  }
  case 56: { 
    // Predicate_vmrghh_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 2, 0, *CurDAG);

  }
  case 57: { 
    // Predicate_vmrghw_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 4, 0, *CurDAG);

  }
  case 58: { 
    // Predicate_vmrglb_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 1, 0, *CurDAG);

  }
  case 59: { 
    // Predicate_vmrglh_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 2, 0, *CurDAG);

  }
  case 60: { 
    // Predicate_vmrglw_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 4, 0, *CurDAG);

  }
  case 61: { 
    // Predicate_vpkuhum_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUHUMShuffleMask(cast<ShuffleVectorSDNode>(N), 0, *CurDAG);

  }
  case 62: { 
    // Predicate_vpkuwum_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUWUMShuffleMask(cast<ShuffleVectorSDNode>(N), 0, *CurDAG);

  }
  case 63: { 
    // Predicate_vsldoi_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVSLDOIShuffleMask(N, 0, *CurDAG) != -1;

  }
  case 64: { 
    // Predicate_vsldoi_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVSLDOIShuffleMask(N, 2, *CurDAG) != -1;

  }
  case 65: { 
    // Predicate_vpkuwum_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUWUMShuffleMask(cast<ShuffleVectorSDNode>(N), 2, *CurDAG);

  }
  case 66: { 
    // Predicate_vpkuhum_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUHUMShuffleMask(cast<ShuffleVectorSDNode>(N), 2, *CurDAG);

  }
  case 67: { 
    // Predicate_vmrglb_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 1, 2, *CurDAG);

  }
  case 68: { 
    // Predicate_vmrglh_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 2, 2, *CurDAG);

  }
  case 69: { 
    // Predicate_vmrglw_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGLShuffleMask(cast<ShuffleVectorSDNode>(N), 4, 2, *CurDAG);

  }
  case 70: { 
    // Predicate_vmrghb_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 1, 2, *CurDAG);

  }
  case 71: { 
    // Predicate_vmrghh_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 2, 2, *CurDAG);

  }
  case 72: { 
    // Predicate_vmrghw_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGHShuffleMask(cast<ShuffleVectorSDNode>(N), 4, 2, *CurDAG);

  }
  case 73: { 
    // Predicate_vmrgew_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGEOShuffleMask(cast<ShuffleVectorSDNode>(N), true, 0, *CurDAG);

  }
  case 74: { 
    // Predicate_vmrgow_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGEOShuffleMask(cast<ShuffleVectorSDNode>(N), false, 0, *CurDAG);

  }
  case 75: { 
    // Predicate_vmrgew_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGEOShuffleMask(cast<ShuffleVectorSDNode>(N), true, 2, *CurDAG);

  }
  case 76: { 
    // Predicate_vmrgow_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVMRGEOShuffleMask(cast<ShuffleVectorSDNode>(N), false, 2, *CurDAG);

  }
  case 77: { 
    // Predicate_vpkudum_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUDUMShuffleMask(cast<ShuffleVectorSDNode>(N), 0, *CurDAG);

  }
  case 78: { 
    // Predicate_vpkudum_swapped_shuffle
    SDNode *N = Node;
    (void)N;

  return PPC::isVPKUDUMShuffleMask(cast<ShuffleVectorSDNode>(N), 2, *CurDAG);

  }
  }
}
#endif // GET_DAGISEL_BODY

#ifdef GET_DAGISEL_DECL
bool CheckComplexPattern(SDNode *Root, SDNode *Parent,
      SDValue N, unsigned PatternNo,
      SmallVectorImpl<std::pair<SDValue, SDNode*>> &Result) override;
#endif
#if defined(GET_DAGISEL_BODY) || DAGISEL_INLINE
bool DAGISEL_CLASS_COLONCOLON CheckComplexPattern(SDNode *Root, SDNode *Parent,
      SDValue N, unsigned PatternNo,
      SmallVectorImpl<std::pair<SDValue, SDNode*>> &Result)
#if DAGISEL_INLINE
  override
#endif
{
  unsigned NextRes = Result.size();
  switch (PatternNo) {
  default: llvm_unreachable("Invalid pattern # in table?");
  case 0:
    Result.resize(NextRes+2);
  return SelectAddrIdxOnly(N, Result[NextRes+0].first, Result[NextRes+1].first);
  case 1:
    Result.resize(NextRes+2);
  return SelectAddrImmX4(N, Result[NextRes+0].first, Result[NextRes+1].first);
  case 2:
    Result.resize(NextRes+2);
  return SelectAddrIdxX4(N, Result[NextRes+0].first, Result[NextRes+1].first);
  case 3:
    Result.resize(NextRes+2);
  return SelectAddrIdxX16(N, Result[NextRes+0].first, Result[NextRes+1].first);
  case 4:
    Result.resize(NextRes+2);
  return SelectAddrImmX16(N, Result[NextRes+0].first, Result[NextRes+1].first);
  case 5:
    Result.resize(NextRes+2);
  return SelectAddrImm(N, Result[NextRes+0].first, Result[NextRes+1].first);
  case 6:
    Result.resize(NextRes+2);
  return SelectAddrIdx(N, Result[NextRes+0].first, Result[NextRes+1].first);
  case 7:
    Result.resize(NextRes+1);
  return SelectAddrImmOffs(N, Result[NextRes+0].first);
  case 8:
    Result.resize(NextRes+1);
  return SelectAddr(N, Result[NextRes+0].first);
  }
}
#endif // GET_DAGISEL_BODY

#ifdef GET_DAGISEL_DECL
SDValue RunSDNodeXForm(SDValue V, unsigned XFormNo) override;
#endif
#if defined(GET_DAGISEL_BODY) || DAGISEL_INLINE
SDValue DAGISEL_CLASS_COLONCOLON RunSDNodeXForm(SDValue V, unsigned XFormNo)
#if DAGISEL_INLINE
  override
#endif
{
  switch (XFormNo) {
  default: llvm_unreachable("Invalid xform # in table?");
  case 0: {  // HI16
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: shift the immediate value down into the low bits.
  return getI32Imm((unsigned)N->getZExtValue() >> 16, SDLoc(N));

  }
  case 1: {  // LO16
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: get the low 16 bits.
  return getI32Imm((unsigned short)N->getZExtValue(), SDLoc(N));

  }
  case 2: {  // HA16
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: shift the immediate value down into the low bits.
  long Val = N->getZExtValue();
  return getI32Imm((Val - (signed short)Val) >> 16, SDLoc(N));

  }
  case 3: {  // MB
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: get the start bit of a mask
  unsigned mb = 0, me;
  (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
  return getI32Imm(mb, SDLoc(N));

  }
  case 4: {  // ME
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: get the end bit of a mask
  unsigned mb, me = 0;
  (void)isRunOfOnes((unsigned)N->getZExtValue(), mb, me);
  return getI32Imm(me, SDLoc(N));

  }
  case 5: {  // HTM_get_imm
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  return getI32Imm (N->getZExtValue(), SDLoc(N));

  }
  case 6: {  // SHL32
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: 31 - imm
  return getI32Imm(31 - N->getZExtValue(), SDLoc(N));

  }
  case 7: {  // SHL64
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: 63 - imm
  return getI32Imm(63 - N->getZExtValue(), SDLoc(N));

  }
  case 8: {  // SRL32
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: 32 - imm
  return N->getZExtValue() ? getI32Imm(32 - N->getZExtValue(), SDLoc(N))
                           : getI32Imm(0, SDLoc(N));

  }
  case 9: {  // SRL64
    ConstantSDNode *N = cast<ConstantSDNode>(V.getNode());

  // Transformation function: 64 - imm
  return N->getZExtValue() ? getI32Imm(64 - N->getZExtValue(), SDLoc(N))
                           : getI32Imm(0, SDLoc(N));

  }
  case 10: {  // VSPLTISB_get_imm
    SDNode *N = V.getNode();

  return PPC::get_VSPLTI_elt(N, 1, *CurDAG);

  }
  case 11: {  // VSPLTISH_get_imm
    SDNode *N = V.getNode();

  return PPC::get_VSPLTI_elt(N, 2, *CurDAG);

  }
  case 12: {  // VSPLTISW_get_imm
    SDNode *N = V.getNode();

  return PPC::get_VSPLTI_elt(N, 4, *CurDAG);

  }
  case 13: {  // VSPLTB_get_imm
    SDNode *N = V.getNode();

  return getI32Imm(PPC::getSplatIdxForPPCMnemonics(N, 1, *CurDAG), SDLoc(N));

  }
  case 14: {  // VSPLTH_get_imm
    SDNode *N = V.getNode();

  return getI32Imm(PPC::getSplatIdxForPPCMnemonics(N, 2, *CurDAG), SDLoc(N));

  }
  case 15: {  // VSPLTW_get_imm
    SDNode *N = V.getNode();

  return getI32Imm(PPC::getSplatIdxForPPCMnemonics(N, 4, *CurDAG), SDLoc(N));

  }
  case 16: {  // VSLDOI_unary_get_imm
    SDNode *N = V.getNode();

  return getI32Imm(PPC::isVSLDOIShuffleMask(N, 1, *CurDAG), SDLoc(N));

  }
  case 17: {  // VSLDOI_get_imm
    SDNode *N = V.getNode();

  return getI32Imm(PPC::isVSLDOIShuffleMask(N, 0, *CurDAG), SDLoc(N));

  }
  case 18: {  // VSLDOI_swapped_get_imm
    SDNode *N = V.getNode();

  return getI32Imm(PPC::isVSLDOIShuffleMask(N, 2, *CurDAG), SDLoc(N));

  }
  }
}
#endif // GET_DAGISEL_BODY


#ifdef DAGISEL_INLINE
#undef DAGISEL_INLINE
#endif
#ifdef DAGISEL_CLASS_COLONCOLON
#undef DAGISEL_CLASS_COLONCOLON
#endif
#ifdef GET_DAGISEL_DECL
#undef GET_DAGISEL_DECL
#endif
#ifdef GET_DAGISEL_BODY
#undef GET_DAGISEL_BODY
#endif