Skip to content
Snippets Groups Projects
intrinsics_test.go 87 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssagen
    
    import (
    	"internal/buildcfg"
    	"testing"
    )
    
    type testIntrinsicKey struct {
    	archName string
    	pkg      string
    	fn       string
    }
    
    var wantIntrinsics = map[testIntrinsicKey]struct{}{
    	{"386", "internal/runtime/math", "MulUintptr"}:             struct{}{},
    	{"386", "internal/runtime/sys", "Bswap32"}:                 struct{}{},
    	{"386", "internal/runtime/sys", "Bswap64"}:                 struct{}{},
    	{"386", "internal/runtime/sys", "TrailingZeros32"}:         struct{}{},
    	{"386", "internal/runtime/sys", "TrailingZeros64"}:         struct{}{},
    	{"386", "internal/runtime/sys", "TrailingZeros8"}:          struct{}{},
    	{"386", "math", "sqrt"}:                                    struct{}{},
    	{"386", "math/bits", "ReverseBytes32"}:                     struct{}{},
    	{"386", "math/bits", "ReverseBytes64"}:                     struct{}{},
    	{"386", "math/bits", "TrailingZeros16"}:                    struct{}{},
    	{"386", "math/bits", "TrailingZeros32"}:                    struct{}{},
    	{"386", "math/bits", "TrailingZeros64"}:                    struct{}{},
    	{"386", "math/bits", "TrailingZeros8"}:                     struct{}{},
    	{"386", "runtime", "KeepAlive"}:                            struct{}{},
    	{"386", "runtime", "getcallerpc"}:                          struct{}{},
    	{"386", "runtime", "getcallersp"}:                          struct{}{},
    	{"386", "runtime", "getclosureptr"}:                        struct{}{},
    	{"386", "runtime", "slicebytetostringtmp"}:                 struct{}{},
    	{"amd64", "internal/runtime/atomic", "And"}:                struct{}{},
    	{"amd64", "internal/runtime/atomic", "And32"}:              struct{}{},
    	{"amd64", "internal/runtime/atomic", "And64"}:              struct{}{},
    	{"amd64", "internal/runtime/atomic", "And8"}:               struct{}{},
    	{"amd64", "internal/runtime/atomic", "Cas"}:                struct{}{},
    	{"amd64", "internal/runtime/atomic", "Cas64"}:              struct{}{},
    	{"amd64", "internal/runtime/atomic", "CasRel"}:             struct{}{},
    	{"amd64", "internal/runtime/atomic", "Casint32"}:           struct{}{},
    	{"amd64", "internal/runtime/atomic", "Casint64"}:           struct{}{},
    	{"amd64", "internal/runtime/atomic", "Casp1"}:              struct{}{},
    	{"amd64", "internal/runtime/atomic", "Casuintptr"}:         struct{}{},
    	{"amd64", "internal/runtime/atomic", "Load"}:               struct{}{},
    	{"amd64", "internal/runtime/atomic", "Load64"}:             struct{}{},
    	{"amd64", "internal/runtime/atomic", "Load8"}:              struct{}{},
    	{"amd64", "internal/runtime/atomic", "LoadAcq"}:            struct{}{},
    	{"amd64", "internal/runtime/atomic", "LoadAcq64"}:          struct{}{},
    	{"amd64", "internal/runtime/atomic", "LoadAcquintptr"}:     struct{}{},
    	{"amd64", "internal/runtime/atomic", "Loadint32"}:          struct{}{},
    	{"amd64", "internal/runtime/atomic", "Loadint64"}:          struct{}{},
    	{"amd64", "internal/runtime/atomic", "Loadp"}:              struct{}{},
    	{"amd64", "internal/runtime/atomic", "Loaduint"}:           struct{}{},
    	{"amd64", "internal/runtime/atomic", "Loaduintptr"}:        struct{}{},
    	{"amd64", "internal/runtime/atomic", "Or"}:                 struct{}{},
    	{"amd64", "internal/runtime/atomic", "Or32"}:               struct{}{},
    	{"amd64", "internal/runtime/atomic", "Or64"}:               struct{}{},
    	{"amd64", "internal/runtime/atomic", "Or8"}:                struct{}{},
    	{"amd64", "internal/runtime/atomic", "Store"}:              struct{}{},
    	{"amd64", "internal/runtime/atomic", "Store64"}:            struct{}{},
    	{"amd64", "internal/runtime/atomic", "Store8"}:             struct{}{},
    	{"amd64", "internal/runtime/atomic", "StoreRel"}:           struct{}{},
    	{"amd64", "internal/runtime/atomic", "StoreRel64"}:         struct{}{},
    	{"amd64", "internal/runtime/atomic", "StoreReluintptr"}:    struct{}{},
    	{"amd64", "internal/runtime/atomic", "Storeint32"}:         struct{}{},
    	{"amd64", "internal/runtime/atomic", "Storeint64"}:         struct{}{},
    	{"amd64", "internal/runtime/atomic", "StorepNoWB"}:         struct{}{},
    	{"amd64", "internal/runtime/atomic", "Storeuintptr"}:       struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xadd"}:               struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xadd64"}:             struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xaddint32"}:          struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xaddint64"}:          struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xadduintptr"}:        struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xchg"}:               struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xchg64"}:             struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xchgint32"}:          struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xchgint64"}:          struct{}{},
    	{"amd64", "internal/runtime/atomic", "Xchguintptr"}:        struct{}{},
    	{"amd64", "internal/runtime/math", "Add64"}:                struct{}{},
    	{"amd64", "internal/runtime/math", "Mul64"}:                struct{}{},
    	{"amd64", "internal/runtime/math", "MulUintptr"}:           struct{}{},
    	{"amd64", "internal/runtime/sys", "Bswap32"}:               struct{}{},
    	{"amd64", "internal/runtime/sys", "Bswap64"}:               struct{}{},
    	{"amd64", "internal/runtime/sys", "Len64"}:                 struct{}{},
    	{"amd64", "internal/runtime/sys", "Len8"}:                  struct{}{},
    	{"amd64", "internal/runtime/sys", "OnesCount64"}:           struct{}{},
    	{"amd64", "internal/runtime/sys", "Prefetch"}:              struct{}{},
    	{"amd64", "internal/runtime/sys", "PrefetchStreamed"}:      struct{}{},
    	{"amd64", "internal/runtime/sys", "TrailingZeros32"}:       struct{}{},
    	{"amd64", "internal/runtime/sys", "TrailingZeros64"}:       struct{}{},
    	{"amd64", "internal/runtime/sys", "TrailingZeros8"}:        struct{}{},
    	{"amd64", "math", "Ceil"}:                                  struct{}{},
    	{"amd64", "math", "FMA"}:                                   struct{}{},
    	{"amd64", "math", "Floor"}:                                 struct{}{},
    	{"amd64", "math", "RoundToEven"}:                           struct{}{},
    	{"amd64", "math", "Trunc"}:                                 struct{}{},
    	{"amd64", "math", "sqrt"}:                                  struct{}{},
    	{"amd64", "math/big", "mulWW"}:                             struct{}{},
    	{"amd64", "math/bits", "Add"}:                              struct{}{},
    	{"amd64", "math/bits", "Add64"}:                            struct{}{},
    	{"amd64", "math/bits", "Div"}:                              struct{}{},
    	{"amd64", "math/bits", "Div64"}:                            struct{}{},
    	{"amd64", "math/bits", "Len"}:                              struct{}{},
    	{"amd64", "math/bits", "Len16"}:                            struct{}{},
    	{"amd64", "math/bits", "Len32"}:                            struct{}{},
    	{"amd64", "math/bits", "Len64"}:                            struct{}{},
    	{"amd64", "math/bits", "Len8"}:                             struct{}{},
    	{"amd64", "math/bits", "Mul"}:                              struct{}{},
    	{"amd64", "math/bits", "Mul64"}:                            struct{}{},
    	{"amd64", "math/bits", "OnesCount"}:                        struct{}{},
    	{"amd64", "math/bits", "OnesCount16"}:                      struct{}{},
    	{"amd64", "math/bits", "OnesCount32"}:                      struct{}{},
    	{"amd64", "math/bits", "OnesCount64"}:                      struct{}{},
    	{"amd64", "math/bits", "ReverseBytes32"}:                   struct{}{},
    	{"amd64", "math/bits", "ReverseBytes64"}:                   struct{}{},
    	{"amd64", "math/bits", "RotateLeft"}:                       struct{}{},
    	{"amd64", "math/bits", "RotateLeft16"}:                     struct{}{},
    	{"amd64", "math/bits", "RotateLeft32"}:                     struct{}{},
    	{"amd64", "math/bits", "RotateLeft64"}:                     struct{}{},
    	{"amd64", "math/bits", "RotateLeft8"}:                      struct{}{},
    	{"amd64", "math/bits", "Sub"}:                              struct{}{},
    	{"amd64", "math/bits", "Sub64"}:                            struct{}{},
    	{"amd64", "math/bits", "TrailingZeros16"}:                  struct{}{},
    	{"amd64", "math/bits", "TrailingZeros32"}:                  struct{}{},
    	{"amd64", "math/bits", "TrailingZeros64"}:                  struct{}{},
    	{"amd64", "math/bits", "TrailingZeros8"}:                   struct{}{},
    	{"amd64", "runtime", "KeepAlive"}:                          struct{}{},
    	{"amd64", "runtime", "getcallerpc"}:                        struct{}{},
    	{"amd64", "runtime", "getcallersp"}:                        struct{}{},
    	{"amd64", "runtime", "getclosureptr"}:                      struct{}{},
    	{"amd64", "runtime", "slicebytetostringtmp"}:               struct{}{},
    	{"amd64", "sync", "runtime_LoadAcquintptr"}:                struct{}{},
    	{"amd64", "sync", "runtime_StoreReluintptr"}:               struct{}{},
    	{"amd64", "sync/atomic", "AddInt32"}:                       struct{}{},
    	{"amd64", "sync/atomic", "AddInt64"}:                       struct{}{},
    	{"amd64", "sync/atomic", "AddUint32"}:                      struct{}{},
    	{"amd64", "sync/atomic", "AddUint64"}:                      struct{}{},
    	{"amd64", "sync/atomic", "AddUintptr"}:                     struct{}{},
    	{"amd64", "sync/atomic", "AndInt32"}:                       struct{}{},
    	{"amd64", "sync/atomic", "AndInt64"}:                       struct{}{},
    	{"amd64", "sync/atomic", "AndUint32"}:                      struct{}{},
    	{"amd64", "sync/atomic", "AndUint64"}:                      struct{}{},
    	{"amd64", "sync/atomic", "AndUintptr"}:                     struct{}{},
    	{"amd64", "sync/atomic", "CompareAndSwapInt32"}:            struct{}{},
    	{"amd64", "sync/atomic", "CompareAndSwapInt64"}:            struct{}{},
    	{"amd64", "sync/atomic", "CompareAndSwapUint32"}:           struct{}{},
    	{"amd64", "sync/atomic", "CompareAndSwapUint64"}:           struct{}{},
    	{"amd64", "sync/atomic", "CompareAndSwapUintptr"}:          struct{}{},
    	{"amd64", "sync/atomic", "LoadInt32"}:                      struct{}{},
    	{"amd64", "sync/atomic", "LoadInt64"}:                      struct{}{},
    	{"amd64", "sync/atomic", "LoadPointer"}:                    struct{}{},
    	{"amd64", "sync/atomic", "LoadUint32"}:                     struct{}{},
    	{"amd64", "sync/atomic", "LoadUint64"}:                     struct{}{},
    	{"amd64", "sync/atomic", "LoadUintptr"}:                    struct{}{},
    	{"amd64", "sync/atomic", "OrInt32"}:                        struct{}{},
    	{"amd64", "sync/atomic", "OrInt64"}:                        struct{}{},
    	{"amd64", "sync/atomic", "OrUint32"}:                       struct{}{},
    	{"amd64", "sync/atomic", "OrUint64"}:                       struct{}{},
    	{"amd64", "sync/atomic", "OrUintptr"}:                      struct{}{},
    	{"amd64", "sync/atomic", "StoreInt32"}:                     struct{}{},
    	{"amd64", "sync/atomic", "StoreInt64"}:                     struct{}{},
    	{"amd64", "sync/atomic", "StoreUint32"}:                    struct{}{},
    	{"amd64", "sync/atomic", "StoreUint64"}:                    struct{}{},
    	{"amd64", "sync/atomic", "StoreUintptr"}:                   struct{}{},
    	{"amd64", "sync/atomic", "SwapInt32"}:                      struct{}{},
    	{"amd64", "sync/atomic", "SwapInt64"}:                      struct{}{},
    	{"amd64", "sync/atomic", "SwapUint32"}:                     struct{}{},
    	{"amd64", "sync/atomic", "SwapUint64"}:                     struct{}{},
    	{"amd64", "sync/atomic", "SwapUintptr"}:                    struct{}{},
    	{"arm", "internal/runtime/sys", "Bswap32"}:                 struct{}{},
    	{"arm", "internal/runtime/sys", "Bswap64"}:                 struct{}{},
    	{"arm", "internal/runtime/sys", "Len64"}:                   struct{}{},
    	{"arm", "internal/runtime/sys", "Len8"}:                    struct{}{},
    	{"arm", "internal/runtime/sys", "TrailingZeros32"}:         struct{}{},
    	{"arm", "internal/runtime/sys", "TrailingZeros64"}:         struct{}{},
    	{"arm", "internal/runtime/sys", "TrailingZeros8"}:          struct{}{},
    	{"arm", "math", "Abs"}:                                     struct{}{},
    	{"arm", "math", "FMA"}:                                     struct{}{},
    	{"arm", "math", "sqrt"}:                                    struct{}{},
    	{"arm", "math/bits", "Len"}:                                struct{}{},
    	{"arm", "math/bits", "Len16"}:                              struct{}{},
    	{"arm", "math/bits", "Len32"}:                              struct{}{},
    	{"arm", "math/bits", "Len64"}:                              struct{}{},
    	{"arm", "math/bits", "Len8"}:                               struct{}{},
    	{"arm", "math/bits", "ReverseBytes32"}:                     struct{}{},
    	{"arm", "math/bits", "ReverseBytes64"}:                     struct{}{},
    	{"arm", "math/bits", "RotateLeft32"}:                       struct{}{},
    	{"arm", "math/bits", "TrailingZeros16"}:                    struct{}{},
    	{"arm", "math/bits", "TrailingZeros32"}:                    struct{}{},
    	{"arm", "math/bits", "TrailingZeros64"}:                    struct{}{},
    	{"arm", "math/bits", "TrailingZeros8"}:                     struct{}{},
    	{"arm", "runtime", "KeepAlive"}:                            struct{}{},
    	{"arm", "runtime", "getcallerpc"}:                          struct{}{},
    	{"arm", "runtime", "getcallersp"}:                          struct{}{},
    	{"arm", "runtime", "getclosureptr"}:                        struct{}{},
    	{"arm", "runtime", "slicebytetostringtmp"}:                 struct{}{},
    	{"arm64", "internal/runtime/atomic", "And"}:                struct{}{},
    	{"arm64", "internal/runtime/atomic", "And32"}:              struct{}{},
    	{"arm64", "internal/runtime/atomic", "And64"}:              struct{}{},
    	{"arm64", "internal/runtime/atomic", "And8"}:               struct{}{},
    	{"arm64", "internal/runtime/atomic", "Anduintptr"}:         struct{}{},
    	{"arm64", "internal/runtime/atomic", "Cas"}:                struct{}{},
    	{"arm64", "internal/runtime/atomic", "Cas64"}:              struct{}{},
    	{"arm64", "internal/runtime/atomic", "CasRel"}:             struct{}{},
    	{"arm64", "internal/runtime/atomic", "Casint32"}:           struct{}{},
    	{"arm64", "internal/runtime/atomic", "Casint64"}:           struct{}{},
    	{"arm64", "internal/runtime/atomic", "Casp1"}:              struct{}{},
    	{"arm64", "internal/runtime/atomic", "Casuintptr"}:         struct{}{},
    	{"arm64", "internal/runtime/atomic", "Load"}:               struct{}{},
    	{"arm64", "internal/runtime/atomic", "Load64"}:             struct{}{},
    	{"arm64", "internal/runtime/atomic", "Load8"}:              struct{}{},
    	{"arm64", "internal/runtime/atomic", "LoadAcq"}:            struct{}{},
    	{"arm64", "internal/runtime/atomic", "LoadAcq64"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "LoadAcquintptr"}:     struct{}{},
    	{"arm64", "internal/runtime/atomic", "Loadint32"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "Loadint64"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "Loadp"}:              struct{}{},
    	{"arm64", "internal/runtime/atomic", "Loaduint"}:           struct{}{},
    	{"arm64", "internal/runtime/atomic", "Loaduintptr"}:        struct{}{},
    	{"arm64", "internal/runtime/atomic", "Or"}:                 struct{}{},
    	{"arm64", "internal/runtime/atomic", "Or32"}:               struct{}{},
    	{"arm64", "internal/runtime/atomic", "Or64"}:               struct{}{},
    	{"arm64", "internal/runtime/atomic", "Or8"}:                struct{}{},
    	{"arm64", "internal/runtime/atomic", "Oruintptr"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "Store"}:              struct{}{},
    	{"arm64", "internal/runtime/atomic", "Store64"}:            struct{}{},
    	{"arm64", "internal/runtime/atomic", "Store8"}:             struct{}{},
    	{"arm64", "internal/runtime/atomic", "StoreRel"}:           struct{}{},
    	{"arm64", "internal/runtime/atomic", "StoreRel64"}:         struct{}{},
    	{"arm64", "internal/runtime/atomic", "StoreReluintptr"}:    struct{}{},
    	{"arm64", "internal/runtime/atomic", "Storeint32"}:         struct{}{},
    	{"arm64", "internal/runtime/atomic", "Storeint64"}:         struct{}{},
    	{"arm64", "internal/runtime/atomic", "StorepNoWB"}:         struct{}{},
    	{"arm64", "internal/runtime/atomic", "Storeuintptr"}:       struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xadd"}:               struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xadd64"}:             struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xaddint32"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xaddint64"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xadduintptr"}:        struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xchg"}:               struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xchg64"}:             struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xchgint32"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xchgint64"}:          struct{}{},
    	{"arm64", "internal/runtime/atomic", "Xchguintptr"}:        struct{}{},
    	{"arm64", "internal/runtime/math", "Add64"}:                struct{}{},
    	{"arm64", "internal/runtime/math", "Mul64"}:                struct{}{},
    	{"arm64", "internal/runtime/math", "MulUintptr"}:           struct{}{},
    	{"arm64", "internal/runtime/sys", "Bswap32"}:               struct{}{},
    	{"arm64", "internal/runtime/sys", "Bswap64"}:               struct{}{},
    	{"arm64", "internal/runtime/sys", "Len64"}:                 struct{}{},
    	{"arm64", "internal/runtime/sys", "Len8"}:                  struct{}{},
    	{"arm64", "internal/runtime/sys", "OnesCount64"}:           struct{}{},
    	{"arm64", "internal/runtime/sys", "Prefetch"}:              struct{}{},
    	{"arm64", "internal/runtime/sys", "PrefetchStreamed"}:      struct{}{},
    	{"arm64", "internal/runtime/sys", "TrailingZeros32"}:       struct{}{},
    	{"arm64", "internal/runtime/sys", "TrailingZeros64"}:       struct{}{},
    	{"arm64", "internal/runtime/sys", "TrailingZeros8"}:        struct{}{},
    	{"arm64", "math", "Abs"}:                                   struct{}{},
    	{"arm64", "math", "Ceil"}:                                  struct{}{},
    	{"arm64", "math", "FMA"}:                                   struct{}{},
    	{"arm64", "math", "Floor"}:                                 struct{}{},
    	{"arm64", "math", "Round"}:                                 struct{}{},
    	{"arm64", "math", "RoundToEven"}:                           struct{}{},
    	{"arm64", "math", "Trunc"}:                                 struct{}{},
    	{"arm64", "math", "sqrt"}:                                  struct{}{},
    	{"arm64", "math/big", "mulWW"}:                             struct{}{},
    	{"arm64", "math/bits", "Add"}:                              struct{}{},
    	{"arm64", "math/bits", "Add64"}:                            struct{}{},
    	{"arm64", "math/bits", "Len"}:                              struct{}{},
    	{"arm64", "math/bits", "Len16"}:                            struct{}{},
    	{"arm64", "math/bits", "Len32"}:                            struct{}{},
    	{"arm64", "math/bits", "Len64"}:                            struct{}{},
    	{"arm64", "math/bits", "Len8"}:                             struct{}{},
    	{"arm64", "math/bits", "Mul"}:                              struct{}{},
    	{"arm64", "math/bits", "Mul64"}:                            struct{}{},
    	{"arm64", "math/bits", "OnesCount16"}:                      struct{}{},
    	{"arm64", "math/bits", "OnesCount32"}:                      struct{}{},
    	{"arm64", "math/bits", "OnesCount64"}:                      struct{}{},
    	{"arm64", "math/bits", "Reverse"}:                          struct{}{},
    	{"arm64", "math/bits", "Reverse16"}:                        struct{}{},
    	{"arm64", "math/bits", "Reverse32"}:                        struct{}{},
    	{"arm64", "math/bits", "Reverse64"}:                        struct{}{},
    	{"arm64", "math/bits", "Reverse8"}:                         struct{}{},
    	{"arm64", "math/bits", "ReverseBytes32"}:                   struct{}{},
    	{"arm64", "math/bits", "ReverseBytes64"}:                   struct{}{},
    	{"arm64", "math/bits", "RotateLeft"}:                       struct{}{},
    	{"arm64", "math/bits", "RotateLeft32"}:                     struct{}{},
    	{"arm64", "math/bits", "RotateLeft64"}:                     struct{}{},
    	{"arm64", "math/bits", "Sub"}:                              struct{}{},
    	{"arm64", "math/bits", "Sub64"}:                            struct{}{},
    	{"arm64", "math/bits", "TrailingZeros16"}:                  struct{}{},
    	{"arm64", "math/bits", "TrailingZeros32"}:                  struct{}{},
    	{"arm64", "math/bits", "TrailingZeros64"}:                  struct{}{},
    	{"arm64", "math/bits", "TrailingZeros8"}:                   struct{}{},
    	{"arm64", "runtime", "KeepAlive"}:                          struct{}{},
    	{"arm64", "runtime", "getcallerpc"}:                        struct{}{},
    	{"arm64", "runtime", "getcallersp"}:                        struct{}{},
    	{"arm64", "runtime", "getclosureptr"}:                      struct{}{},
    	{"arm64", "runtime", "publicationBarrier"}:                 struct{}{},
    	{"arm64", "runtime", "slicebytetostringtmp"}:               struct{}{},
    	{"arm64", "sync", "runtime_LoadAcquintptr"}:                struct{}{},
    	{"arm64", "sync", "runtime_StoreReluintptr"}:               struct{}{},
    	{"arm64", "sync/atomic", "AddInt32"}:                       struct{}{},
    	{"arm64", "sync/atomic", "AddInt64"}:                       struct{}{},
    	{"arm64", "sync/atomic", "AddUint32"}:                      struct{}{},
    	{"arm64", "sync/atomic", "AddUint64"}:                      struct{}{},
    	{"arm64", "sync/atomic", "AddUintptr"}:                     struct{}{},
    	{"arm64", "sync/atomic", "AndInt32"}:                       struct{}{},
    	{"arm64", "sync/atomic", "AndInt64"}:                       struct{}{},
    	{"arm64", "sync/atomic", "AndUint32"}:                      struct{}{},
    	{"arm64", "sync/atomic", "AndUint64"}:                      struct{}{},
    	{"arm64", "sync/atomic", "AndUintptr"}:                     struct{}{},
    	{"arm64", "sync/atomic", "CompareAndSwapInt32"}:            struct{}{},
    	{"arm64", "sync/atomic", "CompareAndSwapInt64"}:            struct{}{},
    	{"arm64", "sync/atomic", "CompareAndSwapUint32"}:           struct{}{},
    	{"arm64", "sync/atomic", "CompareAndSwapUint64"}:           struct{}{},
    	{"arm64", "sync/atomic", "CompareAndSwapUintptr"}:          struct{}{},
    	{"arm64", "sync/atomic", "LoadInt32"}:                      struct{}{},
    	{"arm64", "sync/atomic", "LoadInt64"}:                      struct{}{},
    	{"arm64", "sync/atomic", "LoadPointer"}:                    struct{}{},
    	{"arm64", "sync/atomic", "LoadUint32"}:                     struct{}{},
    	{"arm64", "sync/atomic", "LoadUint64"}:                     struct{}{},
    	{"arm64", "sync/atomic", "LoadUintptr"}:                    struct{}{},
    	{"arm64", "sync/atomic", "OrInt32"}:                        struct{}{},
    	{"arm64", "sync/atomic", "OrInt64"}:                        struct{}{},
    	{"arm64", "sync/atomic", "OrUint32"}:                       struct{}{},
    	{"arm64", "sync/atomic", "OrUint64"}:                       struct{}{},
    	{"arm64", "sync/atomic", "OrUintptr"}:                      struct{}{},
    	{"arm64", "sync/atomic", "StoreInt32"}:                     struct{}{},
    	{"arm64", "sync/atomic", "StoreInt64"}:                     struct{}{},
    	{"arm64", "sync/atomic", "StoreUint32"}:                    struct{}{},
    	{"arm64", "sync/atomic", "StoreUint64"}:                    struct{}{},
    	{"arm64", "sync/atomic", "StoreUintptr"}:                   struct{}{},
    	{"arm64", "sync/atomic", "SwapInt32"}:                      struct{}{},
    	{"arm64", "sync/atomic", "SwapInt64"}:                      struct{}{},
    	{"arm64", "sync/atomic", "SwapUint32"}:                     struct{}{},
    	{"arm64", "sync/atomic", "SwapUint64"}:                     struct{}{},
    	{"arm64", "sync/atomic", "SwapUintptr"}:                    struct{}{},
    	{"loong64", "internal/runtime/atomic", "Cas"}:              struct{}{},
    	{"loong64", "internal/runtime/atomic", "Cas64"}:            struct{}{},
    	{"loong64", "internal/runtime/atomic", "CasRel"}:           struct{}{},
    	{"loong64", "internal/runtime/atomic", "Casint32"}:         struct{}{},
    	{"loong64", "internal/runtime/atomic", "Casint64"}:         struct{}{},
    	{"loong64", "internal/runtime/atomic", "Casp1"}:            struct{}{},
    	{"loong64", "internal/runtime/atomic", "Casuintptr"}:       struct{}{},
    	{"loong64", "internal/runtime/atomic", "Load"}:             struct{}{},
    	{"loong64", "internal/runtime/atomic", "Load64"}:           struct{}{},
    	{"loong64", "internal/runtime/atomic", "Load8"}:            struct{}{},
    	{"loong64", "internal/runtime/atomic", "LoadAcq"}:          struct{}{},
    	{"loong64", "internal/runtime/atomic", "LoadAcq64"}:        struct{}{},
    	{"loong64", "internal/runtime/atomic", "LoadAcquintptr"}:   struct{}{},
    	{"loong64", "internal/runtime/atomic", "Loadint32"}:        struct{}{},
    	{"loong64", "internal/runtime/atomic", "Loadint64"}:        struct{}{},
    	{"loong64", "internal/runtime/atomic", "Loadp"}:            struct{}{},
    	{"loong64", "internal/runtime/atomic", "Loaduint"}:         struct{}{},
    	{"loong64", "internal/runtime/atomic", "Loaduintptr"}:      struct{}{},
    	{"loong64", "internal/runtime/atomic", "Store"}:            struct{}{},
    	{"loong64", "internal/runtime/atomic", "Store64"}:          struct{}{},
    	{"loong64", "internal/runtime/atomic", "Store8"}:           struct{}{},
    	{"loong64", "internal/runtime/atomic", "StoreRel"}:         struct{}{},
    	{"loong64", "internal/runtime/atomic", "StoreRel64"}:       struct{}{},
    	{"loong64", "internal/runtime/atomic", "StoreReluintptr"}:  struct{}{},
    	{"loong64", "internal/runtime/atomic", "Storeint32"}:       struct{}{},
    	{"loong64", "internal/runtime/atomic", "Storeint64"}:       struct{}{},
    	{"loong64", "internal/runtime/atomic", "StorepNoWB"}:       struct{}{},
    	{"loong64", "internal/runtime/atomic", "Storeuintptr"}:     struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xadd"}:             struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xadd64"}:           struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xaddint32"}:        struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xaddint64"}:        struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xadduintptr"}:      struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xchg"}:             struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xchg64"}:           struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xchgint32"}:        struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xchgint64"}:        struct{}{},
    	{"loong64", "internal/runtime/atomic", "Xchguintptr"}:      struct{}{},
    	{"loong64", "internal/runtime/math", "Add64"}:              struct{}{},
    	{"loong64", "internal/runtime/math", "Mul64"}:              struct{}{},
    	{"loong64", "internal/runtime/math", "MulUintptr"}:         struct{}{},
    	{"loong64", "math", "Abs"}:                                 struct{}{},
    	{"loong64", "math", "Copysign"}:                            struct{}{},
    	{"loong64", "math", "sqrt"}:                                struct{}{},
    	{"loong64", "math/big", "mulWW"}:                           struct{}{},
    	{"loong64", "math/bits", "Add"}:                            struct{}{},
    	{"loong64", "math/bits", "Add64"}:                          struct{}{},
    	{"loong64", "math/bits", "Mul"}:                            struct{}{},
    	{"loong64", "math/bits", "Mul64"}:                          struct{}{},
    	{"loong64", "math/bits", "RotateLeft"}:                     struct{}{},
    	{"loong64", "math/bits", "RotateLeft32"}:                   struct{}{},
    	{"loong64", "math/bits", "RotateLeft64"}:                   struct{}{},
    	{"loong64", "math/bits", "Sub"}:                            struct{}{},
    	{"loong64", "math/bits", "Sub64"}:                          struct{}{},
    	{"loong64", "runtime", "KeepAlive"}:                        struct{}{},
    	{"loong64", "runtime", "getcallerpc"}:                      struct{}{},
    	{"loong64", "runtime", "getcallersp"}:                      struct{}{},
    	{"loong64", "runtime", "getclosureptr"}:                    struct{}{},
    	{"loong64", "runtime", "slicebytetostringtmp"}:             struct{}{},
    	{"loong64", "sync", "runtime_LoadAcquintptr"}:              struct{}{},
    	{"loong64", "sync", "runtime_StoreReluintptr"}:             struct{}{},
    	{"loong64", "sync/atomic", "AddInt32"}:                     struct{}{},
    	{"loong64", "sync/atomic", "AddInt64"}:                     struct{}{},
    	{"loong64", "sync/atomic", "AddUint32"}:                    struct{}{},
    	{"loong64", "sync/atomic", "AddUint64"}:                    struct{}{},
    	{"loong64", "sync/atomic", "AddUintptr"}:                   struct{}{},
    	{"loong64", "sync/atomic", "CompareAndSwapInt32"}:          struct{}{},
    	{"loong64", "sync/atomic", "CompareAndSwapInt64"}:          struct{}{},
    	{"loong64", "sync/atomic", "CompareAndSwapUint32"}:         struct{}{},
    	{"loong64", "sync/atomic", "CompareAndSwapUint64"}:         struct{}{},
    	{"loong64", "sync/atomic", "CompareAndSwapUintptr"}:        struct{}{},
    	{"loong64", "sync/atomic", "LoadInt32"}:                    struct{}{},
    	{"loong64", "sync/atomic", "LoadInt64"}:                    struct{}{},
    	{"loong64", "sync/atomic", "LoadPointer"}:                  struct{}{},
    	{"loong64", "sync/atomic", "LoadUint32"}:                   struct{}{},
    	{"loong64", "sync/atomic", "LoadUint64"}:                   struct{}{},
    	{"loong64", "sync/atomic", "LoadUintptr"}:                  struct{}{},
    	{"loong64", "sync/atomic", "StoreInt32"}:                   struct{}{},
    	{"loong64", "sync/atomic", "StoreInt64"}:                   struct{}{},
    	{"loong64", "sync/atomic", "StoreUint32"}:                  struct{}{},
    	{"loong64", "sync/atomic", "StoreUint64"}:                  struct{}{},
    	{"loong64", "sync/atomic", "StoreUintptr"}:                 struct{}{},
    	{"loong64", "sync/atomic", "SwapInt32"}:                    struct{}{},
    	{"loong64", "sync/atomic", "SwapInt64"}:                    struct{}{},
    	{"loong64", "sync/atomic", "SwapUint32"}:                   struct{}{},
    	{"loong64", "sync/atomic", "SwapUint64"}:                   struct{}{},
    	{"loong64", "sync/atomic", "SwapUintptr"}:                  struct{}{},
    	{"mips", "internal/runtime/atomic", "And"}:                 struct{}{},
    	{"mips", "internal/runtime/atomic", "And8"}:                struct{}{},
    	{"mips", "internal/runtime/atomic", "Cas"}:                 struct{}{},
    	{"mips", "internal/runtime/atomic", "CasRel"}:              struct{}{},
    	{"mips", "internal/runtime/atomic", "Casint32"}:            struct{}{},
    	{"mips", "internal/runtime/atomic", "Casp1"}:               struct{}{},
    	{"mips", "internal/runtime/atomic", "Casuintptr"}:          struct{}{},
    	{"mips", "internal/runtime/atomic", "Load"}:                struct{}{},
    	{"mips", "internal/runtime/atomic", "Load8"}:               struct{}{},
    	{"mips", "internal/runtime/atomic", "LoadAcq"}:             struct{}{},
    	{"mips", "internal/runtime/atomic", "LoadAcquintptr"}:      struct{}{},
    	{"mips", "internal/runtime/atomic", "Loadint32"}:           struct{}{},
    	{"mips", "internal/runtime/atomic", "Loadp"}:               struct{}{},
    	{"mips", "internal/runtime/atomic", "Loaduint"}:            struct{}{},
    	{"mips", "internal/runtime/atomic", "Loaduintptr"}:         struct{}{},
    	{"mips", "internal/runtime/atomic", "Or"}:                  struct{}{},
    	{"mips", "internal/runtime/atomic", "Or8"}:                 struct{}{},
    	{"mips", "internal/runtime/atomic", "Store"}:               struct{}{},
    	{"mips", "internal/runtime/atomic", "Store8"}:              struct{}{},
    	{"mips", "internal/runtime/atomic", "StoreRel"}:            struct{}{},
    	{"mips", "internal/runtime/atomic", "StoreReluintptr"}:     struct{}{},
    	{"mips", "internal/runtime/atomic", "Storeint32"}:          struct{}{},
    	{"mips", "internal/runtime/atomic", "StorepNoWB"}:          struct{}{},
    	{"mips", "internal/runtime/atomic", "Storeuintptr"}:        struct{}{},
    	{"mips", "internal/runtime/atomic", "Xadd"}:                struct{}{},
    	{"mips", "internal/runtime/atomic", "Xaddint32"}:           struct{}{},
    	{"mips", "internal/runtime/atomic", "Xadduintptr"}:         struct{}{},
    	{"mips", "internal/runtime/atomic", "Xchg"}:                struct{}{},
    	{"mips", "internal/runtime/atomic", "Xchgint32"}:           struct{}{},
    	{"mips", "internal/runtime/atomic", "Xchguintptr"}:         struct{}{},
    	{"mips", "internal/runtime/sys", "Len64"}:                  struct{}{},
    	{"mips", "internal/runtime/sys", "Len8"}:                   struct{}{},
    	{"mips", "internal/runtime/sys", "TrailingZeros32"}:        struct{}{},
    	{"mips", "internal/runtime/sys", "TrailingZeros64"}:        struct{}{},
    	{"mips", "internal/runtime/sys", "TrailingZeros8"}:         struct{}{},
    	{"mips", "math", "Abs"}:                                    struct{}{},
    	{"mips", "math", "sqrt"}:                                   struct{}{},
    	{"mips", "math/bits", "Len"}:                               struct{}{},
    	{"mips", "math/bits", "Len16"}:                             struct{}{},
    	{"mips", "math/bits", "Len32"}:                             struct{}{},
    	{"mips", "math/bits", "Len64"}:                             struct{}{},
    	{"mips", "math/bits", "Len8"}:                              struct{}{},
    	{"mips", "math/bits", "TrailingZeros16"}:                   struct{}{},
    	{"mips", "math/bits", "TrailingZeros32"}:                   struct{}{},
    	{"mips", "math/bits", "TrailingZeros64"}:                   struct{}{},
    	{"mips", "math/bits", "TrailingZeros8"}:                    struct{}{},
    	{"mips", "runtime", "KeepAlive"}:                           struct{}{},
    	{"mips", "runtime", "getcallerpc"}:                         struct{}{},
    	{"mips", "runtime", "getcallersp"}:                         struct{}{},
    	{"mips", "runtime", "getclosureptr"}:                       struct{}{},
    	{"mips", "runtime", "slicebytetostringtmp"}:                struct{}{},
    	{"mips", "sync", "runtime_LoadAcquintptr"}:                 struct{}{},
    	{"mips", "sync", "runtime_StoreReluintptr"}:                struct{}{},
    	{"mips", "sync/atomic", "AddInt32"}:                        struct{}{},
    	{"mips", "sync/atomic", "AddUint32"}:                       struct{}{},
    	{"mips", "sync/atomic", "AddUintptr"}:                      struct{}{},
    	{"mips", "sync/atomic", "CompareAndSwapInt32"}:             struct{}{},
    	{"mips", "sync/atomic", "CompareAndSwapUint32"}:            struct{}{},
    	{"mips", "sync/atomic", "CompareAndSwapUintptr"}:           struct{}{},
    	{"mips", "sync/atomic", "LoadInt32"}:                       struct{}{},
    	{"mips", "sync/atomic", "LoadPointer"}:                     struct{}{},
    	{"mips", "sync/atomic", "LoadUint32"}:                      struct{}{},
    	{"mips", "sync/atomic", "LoadUintptr"}:                     struct{}{},
    	{"mips", "sync/atomic", "StoreInt32"}:                      struct{}{},
    	{"mips", "sync/atomic", "StoreUint32"}:                     struct{}{},
    	{"mips", "sync/atomic", "StoreUintptr"}:                    struct{}{},
    	{"mips", "sync/atomic", "SwapInt32"}:                       struct{}{},
    	{"mips", "sync/atomic", "SwapUint32"}:                      struct{}{},
    	{"mips", "sync/atomic", "SwapUintptr"}:                     struct{}{},
    	{"mips64", "internal/runtime/atomic", "And"}:               struct{}{},
    	{"mips64", "internal/runtime/atomic", "And8"}:              struct{}{},
    	{"mips64", "internal/runtime/atomic", "Cas"}:               struct{}{},
    	{"mips64", "internal/runtime/atomic", "Cas64"}:             struct{}{},
    	{"mips64", "internal/runtime/atomic", "CasRel"}:            struct{}{},
    	{"mips64", "internal/runtime/atomic", "Casint32"}:          struct{}{},
    	{"mips64", "internal/runtime/atomic", "Casint64"}:          struct{}{},
    	{"mips64", "internal/runtime/atomic", "Casp1"}:             struct{}{},
    	{"mips64", "internal/runtime/atomic", "Casuintptr"}:        struct{}{},
    	{"mips64", "internal/runtime/atomic", "Load"}:              struct{}{},
    	{"mips64", "internal/runtime/atomic", "Load64"}:            struct{}{},
    	{"mips64", "internal/runtime/atomic", "Load8"}:             struct{}{},
    	{"mips64", "internal/runtime/atomic", "LoadAcq"}:           struct{}{},
    	{"mips64", "internal/runtime/atomic", "LoadAcq64"}:         struct{}{},
    	{"mips64", "internal/runtime/atomic", "LoadAcquintptr"}:    struct{}{},
    	{"mips64", "internal/runtime/atomic", "Loadint32"}:         struct{}{},
    	{"mips64", "internal/runtime/atomic", "Loadint64"}:         struct{}{},
    	{"mips64", "internal/runtime/atomic", "Loadp"}:             struct{}{},
    	{"mips64", "internal/runtime/atomic", "Loaduint"}:          struct{}{},
    	{"mips64", "internal/runtime/atomic", "Loaduintptr"}:       struct{}{},
    	{"mips64", "internal/runtime/atomic", "Or"}:                struct{}{},
    	{"mips64", "internal/runtime/atomic", "Or8"}:               struct{}{},
    	{"mips64", "internal/runtime/atomic", "Store"}:             struct{}{},
    	{"mips64", "internal/runtime/atomic", "Store64"}:           struct{}{},
    	{"mips64", "internal/runtime/atomic", "Store8"}:            struct{}{},
    	{"mips64", "internal/runtime/atomic", "StoreRel"}:          struct{}{},
    	{"mips64", "internal/runtime/atomic", "StoreRel64"}:        struct{}{},
    	{"mips64", "internal/runtime/atomic", "StoreReluintptr"}:   struct{}{},
    	{"mips64", "internal/runtime/atomic", "Storeint32"}:        struct{}{},
    	{"mips64", "internal/runtime/atomic", "Storeint64"}:        struct{}{},
    	{"mips64", "internal/runtime/atomic", "StorepNoWB"}:        struct{}{},
    	{"mips64", "internal/runtime/atomic", "Storeuintptr"}:      struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xadd"}:              struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xadd64"}:            struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xaddint32"}:         struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xaddint64"}:         struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xadduintptr"}:       struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xchg"}:              struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xchg64"}:            struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xchgint32"}:         struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xchgint64"}:         struct{}{},
    	{"mips64", "internal/runtime/atomic", "Xchguintptr"}:       struct{}{},
    	{"mips64", "internal/runtime/math", "Add64"}:               struct{}{},
    	{"mips64", "internal/runtime/math", "Mul64"}:               struct{}{},
    	{"mips64", "internal/runtime/math", "MulUintptr"}:          struct{}{},
    	{"mips64", "math", "Abs"}:                                  struct{}{},
    	{"mips64", "math", "sqrt"}:                                 struct{}{},
    	{"mips64", "math/big", "mulWW"}:                            struct{}{},
    	{"mips64", "math/bits", "Add"}:                             struct{}{},
    	{"mips64", "math/bits", "Add64"}:                           struct{}{},
    	{"mips64", "math/bits", "Mul"}:                             struct{}{},
    	{"mips64", "math/bits", "Mul64"}:                           struct{}{},
    	{"mips64", "math/bits", "Sub"}:                             struct{}{},
    	{"mips64", "math/bits", "Sub64"}:                           struct{}{},
    	{"mips64", "runtime", "KeepAlive"}:                         struct{}{},
    	{"mips64", "runtime", "getcallerpc"}:                       struct{}{},
    	{"mips64", "runtime", "getcallersp"}:                       struct{}{},
    	{"mips64", "runtime", "getclosureptr"}:                     struct{}{},
    	{"mips64", "runtime", "slicebytetostringtmp"}:              struct{}{},
    	{"mips64", "sync", "runtime_LoadAcquintptr"}:               struct{}{},
    	{"mips64", "sync", "runtime_StoreReluintptr"}:              struct{}{},
    	{"mips64", "sync/atomic", "AddInt32"}:                      struct{}{},
    	{"mips64", "sync/atomic", "AddInt64"}:                      struct{}{},
    	{"mips64", "sync/atomic", "AddUint32"}:                     struct{}{},
    	{"mips64", "sync/atomic", "AddUint64"}:                     struct{}{},
    	{"mips64", "sync/atomic", "AddUintptr"}:                    struct{}{},
    	{"mips64", "sync/atomic", "CompareAndSwapInt32"}:           struct{}{},
    	{"mips64", "sync/atomic", "CompareAndSwapInt64"}:           struct{}{},
    	{"mips64", "sync/atomic", "CompareAndSwapUint32"}:          struct{}{},
    	{"mips64", "sync/atomic", "CompareAndSwapUint64"}:          struct{}{},
    	{"mips64", "sync/atomic", "CompareAndSwapUintptr"}:         struct{}{},
    	{"mips64", "sync/atomic", "LoadInt32"}:                     struct{}{},
    	{"mips64", "sync/atomic", "LoadInt64"}:                     struct{}{},
    	{"mips64", "sync/atomic", "LoadPointer"}:                   struct{}{},
    	{"mips64", "sync/atomic", "LoadUint32"}:                    struct{}{},
    	{"mips64", "sync/atomic", "LoadUint64"}:                    struct{}{},
    	{"mips64", "sync/atomic", "LoadUintptr"}:                   struct{}{},
    	{"mips64", "sync/atomic", "StoreInt32"}:                    struct{}{},
    	{"mips64", "sync/atomic", "StoreInt64"}:                    struct{}{},
    	{"mips64", "sync/atomic", "StoreUint32"}:                   struct{}{},
    	{"mips64", "sync/atomic", "StoreUint64"}:                   struct{}{},
    	{"mips64", "sync/atomic", "StoreUintptr"}:                  struct{}{},
    	{"mips64", "sync/atomic", "SwapInt32"}:                     struct{}{},
    	{"mips64", "sync/atomic", "SwapInt64"}:                     struct{}{},
    	{"mips64", "sync/atomic", "SwapUint32"}:                    struct{}{},
    	{"mips64", "sync/atomic", "SwapUint64"}:                    struct{}{},
    	{"mips64", "sync/atomic", "SwapUintptr"}:                   struct{}{},
    	{"mips64le", "internal/runtime/atomic", "And"}:             struct{}{},
    	{"mips64le", "internal/runtime/atomic", "And8"}:            struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Cas"}:             struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Cas64"}:           struct{}{},
    	{"mips64le", "internal/runtime/atomic", "CasRel"}:          struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Casint32"}:        struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Casint64"}:        struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Casp1"}:           struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Casuintptr"}:      struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Load"}:            struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Load64"}:          struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Load8"}:           struct{}{},
    	{"mips64le", "internal/runtime/atomic", "LoadAcq"}:         struct{}{},
    	{"mips64le", "internal/runtime/atomic", "LoadAcq64"}:       struct{}{},
    	{"mips64le", "internal/runtime/atomic", "LoadAcquintptr"}:  struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Loadint32"}:       struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Loadint64"}:       struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Loadp"}:           struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Loaduint"}:        struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Loaduintptr"}:     struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Or"}:              struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Or8"}:             struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Store"}:           struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Store64"}:         struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Store8"}:          struct{}{},
    	{"mips64le", "internal/runtime/atomic", "StoreRel"}:        struct{}{},
    	{"mips64le", "internal/runtime/atomic", "StoreRel64"}:      struct{}{},
    	{"mips64le", "internal/runtime/atomic", "StoreReluintptr"}: struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Storeint32"}:      struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Storeint64"}:      struct{}{},
    	{"mips64le", "internal/runtime/atomic", "StorepNoWB"}:      struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Storeuintptr"}:    struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xadd"}:            struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xadd64"}:          struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xaddint32"}:       struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xaddint64"}:       struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xadduintptr"}:     struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xchg"}:            struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xchg64"}:          struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xchgint32"}:       struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xchgint64"}:       struct{}{},
    	{"mips64le", "internal/runtime/atomic", "Xchguintptr"}:     struct{}{},
    	{"mips64le", "internal/runtime/math", "Add64"}:             struct{}{},
    	{"mips64le", "internal/runtime/math", "Mul64"}:             struct{}{},
    	{"mips64le", "internal/runtime/math", "MulUintptr"}:        struct{}{},
    	{"mips64le", "math", "Abs"}:                                struct{}{},
    	{"mips64le", "math", "sqrt"}:                               struct{}{},
    	{"mips64le", "math/big", "mulWW"}:                          struct{}{},
    	{"mips64le", "math/bits", "Add"}:                           struct{}{},
    	{"mips64le", "math/bits", "Add64"}:                         struct{}{},
    	{"mips64le", "math/bits", "Mul"}:                           struct{}{},
    	{"mips64le", "math/bits", "Mul64"}:                         struct{}{},
    	{"mips64le", "math/bits", "Sub"}:                           struct{}{},
    	{"mips64le", "math/bits", "Sub64"}:                         struct{}{},
    	{"mips64le", "runtime", "KeepAlive"}:                       struct{}{},
    	{"mips64le", "runtime", "getcallerpc"}:                     struct{}{},
    	{"mips64le", "runtime", "getcallersp"}:                     struct{}{},
    	{"mips64le", "runtime", "getclosureptr"}:                   struct{}{},
    	{"mips64le", "runtime", "slicebytetostringtmp"}:            struct{}{},
    	{"mips64le", "sync", "runtime_LoadAcquintptr"}:             struct{}{},
    	{"mips64le", "sync", "runtime_StoreReluintptr"}:            struct{}{},
    	{"mips64le", "sync/atomic", "AddInt32"}:                    struct{}{},
    	{"mips64le", "sync/atomic", "AddInt64"}:                    struct{}{},
    	{"mips64le", "sync/atomic", "AddUint32"}:                   struct{}{},
    	{"mips64le", "sync/atomic", "AddUint64"}:                   struct{}{},
    	{"mips64le", "sync/atomic", "AddUintptr"}:                  struct{}{},
    	{"mips64le", "sync/atomic", "CompareAndSwapInt32"}:         struct{}{},
    	{"mips64le", "sync/atomic", "CompareAndSwapInt64"}:         struct{}{},
    	{"mips64le", "sync/atomic", "CompareAndSwapUint32"}:        struct{}{},
    	{"mips64le", "sync/atomic", "CompareAndSwapUint64"}:        struct{}{},
    	{"mips64le", "sync/atomic", "CompareAndSwapUintptr"}:       struct{}{},
    	{"mips64le", "sync/atomic", "LoadInt32"}:                   struct{}{},
    	{"mips64le", "sync/atomic", "LoadInt64"}:                   struct{}{},
    	{"mips64le", "sync/atomic", "LoadPointer"}:                 struct{}{},
    	{"mips64le", "sync/atomic", "LoadUint32"}:                  struct{}{},
    	{"mips64le", "sync/atomic", "LoadUint64"}:                  struct{}{},
    	{"mips64le", "sync/atomic", "LoadUintptr"}:                 struct{}{},
    	{"mips64le", "sync/atomic", "StoreInt32"}:                  struct{}{},
    	{"mips64le", "sync/atomic", "StoreInt64"}:                  struct{}{},
    	{"mips64le", "sync/atomic", "StoreUint32"}:                 struct{}{},
    	{"mips64le", "sync/atomic", "StoreUint64"}:                 struct{}{},
    	{"mips64le", "sync/atomic", "StoreUintptr"}:                struct{}{},
    	{"mips64le", "sync/atomic", "SwapInt32"}:                   struct{}{},
    	{"mips64le", "sync/atomic", "SwapInt64"}:                   struct{}{},
    	{"mips64le", "sync/atomic", "SwapUint32"}:                  struct{}{},
    	{"mips64le", "sync/atomic", "SwapUint64"}:                  struct{}{},
    	{"mips64le", "sync/atomic", "SwapUintptr"}:                 struct{}{},
    	{"mipsle", "internal/runtime/atomic", "And"}:               struct{}{},
    	{"mipsle", "internal/runtime/atomic", "And8"}:              struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Cas"}:               struct{}{},
    	{"mipsle", "internal/runtime/atomic", "CasRel"}:            struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Casint32"}:          struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Casp1"}:             struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Casuintptr"}:        struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Load"}:              struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Load8"}:             struct{}{},
    	{"mipsle", "internal/runtime/atomic", "LoadAcq"}:           struct{}{},
    	{"mipsle", "internal/runtime/atomic", "LoadAcquintptr"}:    struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Loadint32"}:         struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Loadp"}:             struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Loaduint"}:          struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Loaduintptr"}:       struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Or"}:                struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Or8"}:               struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Store"}:             struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Store8"}:            struct{}{},
    	{"mipsle", "internal/runtime/atomic", "StoreRel"}:          struct{}{},
    	{"mipsle", "internal/runtime/atomic", "StoreReluintptr"}:   struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Storeint32"}:        struct{}{},
    	{"mipsle", "internal/runtime/atomic", "StorepNoWB"}:        struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Storeuintptr"}:      struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Xadd"}:              struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Xaddint32"}:         struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Xadduintptr"}:       struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Xchg"}:              struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Xchgint32"}:         struct{}{},
    	{"mipsle", "internal/runtime/atomic", "Xchguintptr"}:       struct{}{},
    	{"mipsle", "internal/runtime/sys", "Len64"}:                struct{}{},
    	{"mipsle", "internal/runtime/sys", "Len8"}:                 struct{}{},
    	{"mipsle", "internal/runtime/sys", "TrailingZeros32"}:      struct{}{},
    	{"mipsle", "internal/runtime/sys", "TrailingZeros64"}:      struct{}{},
    	{"mipsle", "internal/runtime/sys", "TrailingZeros8"}:       struct{}{},
    	{"mipsle", "math", "Abs"}:                                  struct{}{},
    	{"mipsle", "math", "sqrt"}:                                 struct{}{},
    	{"mipsle", "math/bits", "Len"}:                             struct{}{},
    	{"mipsle", "math/bits", "Len16"}:                           struct{}{},
    	{"mipsle", "math/bits", "Len32"}:                           struct{}{},
    	{"mipsle", "math/bits", "Len64"}:                           struct{}{},
    	{"mipsle", "math/bits", "Len8"}:                            struct{}{},
    	{"mipsle", "math/bits", "TrailingZeros16"}:                 struct{}{},
    	{"mipsle", "math/bits", "TrailingZeros32"}:                 struct{}{},
    	{"mipsle", "math/bits", "TrailingZeros64"}:                 struct{}{},
    	{"mipsle", "math/bits", "TrailingZeros8"}:                  struct{}{},
    	{"mipsle", "runtime", "KeepAlive"}:                         struct{}{},
    	{"mipsle", "runtime", "getcallerpc"}:                       struct{}{},
    	{"mipsle", "runtime", "getcallersp"}:                       struct{}{},
    	{"mipsle", "runtime", "getclosureptr"}:                     struct{}{},
    	{"mipsle", "runtime", "slicebytetostringtmp"}:              struct{}{},
    	{"mipsle", "sync", "runtime_LoadAcquintptr"}:               struct{}{},
    	{"mipsle", "sync", "runtime_StoreReluintptr"}:              struct{}{},
    	{"mipsle", "sync/atomic", "AddInt32"}:                      struct{}{},
    	{"mipsle", "sync/atomic", "AddUint32"}:                     struct{}{},
    	{"mipsle", "sync/atomic", "AddUintptr"}:                    struct{}{},
    	{"mipsle", "sync/atomic", "CompareAndSwapInt32"}:           struct{}{},
    	{"mipsle", "sync/atomic", "CompareAndSwapUint32"}:          struct{}{},
    	{"mipsle", "sync/atomic", "CompareAndSwapUintptr"}:         struct{}{},
    	{"mipsle", "sync/atomic", "LoadInt32"}:                     struct{}{},
    	{"mipsle", "sync/atomic", "LoadPointer"}:                   struct{}{},
    	{"mipsle", "sync/atomic", "LoadUint32"}:                    struct{}{},
    	{"mipsle", "sync/atomic", "LoadUintptr"}:                   struct{}{},
    	{"mipsle", "sync/atomic", "StoreInt32"}:                    struct{}{},
    	{"mipsle", "sync/atomic", "StoreUint32"}:                   struct{}{},
    	{"mipsle", "sync/atomic", "StoreUintptr"}:                  struct{}{},
    	{"mipsle", "sync/atomic", "SwapInt32"}:                     struct{}{},
    	{"mipsle", "sync/atomic", "SwapUint32"}:                    struct{}{},
    	{"mipsle", "sync/atomic", "SwapUintptr"}:                   struct{}{},
    	{"ppc64", "internal/runtime/atomic", "And"}:                struct{}{},
    	{"ppc64", "internal/runtime/atomic", "And8"}:               struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Cas"}:                struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Cas64"}:              struct{}{},
    	{"ppc64", "internal/runtime/atomic", "CasRel"}:             struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Casint32"}:           struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Casint64"}:           struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Casp1"}:              struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Casuintptr"}:         struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Load"}:               struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Load64"}:             struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Load8"}:              struct{}{},
    	{"ppc64", "internal/runtime/atomic", "LoadAcq"}:            struct{}{},
    	{"ppc64", "internal/runtime/atomic", "LoadAcq64"}:          struct{}{},
    	{"ppc64", "internal/runtime/atomic", "LoadAcquintptr"}:     struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Loadint32"}:          struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Loadint64"}:          struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Loadp"}:              struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Loaduint"}:           struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Loaduintptr"}:        struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Or"}:                 struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Or8"}:                struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Store"}:              struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Store64"}:            struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Store8"}:             struct{}{},
    	{"ppc64", "internal/runtime/atomic", "StoreRel"}:           struct{}{},
    	{"ppc64", "internal/runtime/atomic", "StoreRel64"}:         struct{}{},
    	{"ppc64", "internal/runtime/atomic", "StoreReluintptr"}:    struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Storeint32"}:         struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Storeint64"}:         struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Storeuintptr"}:       struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xadd"}:               struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xadd64"}:             struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xaddint32"}:          struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xaddint64"}:          struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xadduintptr"}:        struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xchg"}:               struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xchg64"}:             struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xchgint32"}:          struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xchgint64"}:          struct{}{},
    	{"ppc64", "internal/runtime/atomic", "Xchguintptr"}:        struct{}{},
    	{"ppc64", "internal/runtime/math", "Add64"}:                struct{}{},
    	{"ppc64", "internal/runtime/math", "Mul64"}:                struct{}{},
    	{"ppc64", "internal/runtime/sys", "Len64"}:                 struct{}{},
    	{"ppc64", "internal/runtime/sys", "Len8"}:                  struct{}{},
    	{"ppc64", "internal/runtime/sys", "OnesCount64"}:           struct{}{},
    	{"ppc64", "internal/runtime/sys", "Prefetch"}:              struct{}{},
    	{"ppc64", "internal/runtime/sys", "PrefetchStreamed"}:      struct{}{},
    	{"ppc64", "internal/runtime/sys", "TrailingZeros32"}:       struct{}{},
    	{"ppc64", "internal/runtime/sys", "TrailingZeros64"}:       struct{}{},
    	{"ppc64", "math", "Abs"}:                                   struct{}{},
    	{"ppc64", "math", "Ceil"}:                                  struct{}{},
    	{"ppc64", "math", "Copysign"}:                              struct{}{},
    	{"ppc64", "math", "FMA"}:                                   struct{}{},
    	{"ppc64", "math", "Floor"}:                                 struct{}{},
    	{"ppc64", "math", "Round"}:                                 struct{}{},
    	{"ppc64", "math", "Trunc"}:                                 struct{}{},
    	{"ppc64", "math", "sqrt"}:                                  struct{}{},
    	{"ppc64", "math/big", "mulWW"}:                             struct{}{},
    	{"ppc64", "math/bits", "Add"}:                              struct{}{},
    	{"ppc64", "math/bits", "Add64"}:                            struct{}{},
    	{"ppc64", "math/bits", "Len"}:                              struct{}{},
    	{"ppc64", "math/bits", "Len16"}:                            struct{}{},
    	{"ppc64", "math/bits", "Len32"}:                            struct{}{},
    	{"ppc64", "math/bits", "Len64"}:                            struct{}{},
    	{"ppc64", "math/bits", "Len8"}:                             struct{}{},
    	{"ppc64", "math/bits", "Mul"}:                              struct{}{},
    	{"ppc64", "math/bits", "Mul64"}:                            struct{}{},
    	{"ppc64", "math/bits", "OnesCount16"}:                      struct{}{},
    	{"ppc64", "math/bits", "OnesCount32"}:                      struct{}{},
    	{"ppc64", "math/bits", "OnesCount64"}:                      struct{}{},
    	{"ppc64", "math/bits", "OnesCount8"}:                       struct{}{},
    	{"ppc64", "math/bits", "RotateLeft"}:                       struct{}{},
    	{"ppc64", "math/bits", "RotateLeft32"}:                     struct{}{},
    	{"ppc64", "math/bits", "RotateLeft64"}:                     struct{}{},
    	{"ppc64", "math/bits", "Sub"}:                              struct{}{},
    	{"ppc64", "math/bits", "Sub64"}:                            struct{}{},
    	{"ppc64", "math/bits", "TrailingZeros16"}:                  struct{}{},
    	{"ppc64", "math/bits", "TrailingZeros32"}:                  struct{}{},
    	{"ppc64", "math/bits", "TrailingZeros64"}:                  struct{}{},
    	{"ppc64", "runtime", "KeepAlive"}:                          struct{}{},
    	{"ppc64", "runtime", "getcallerpc"}:                        struct{}{},
    	{"ppc64", "runtime", "getcallersp"}:                        struct{}{},
    	{"ppc64", "runtime", "getclosureptr"}:                      struct{}{},
    	{"ppc64", "runtime", "publicationBarrier"}:                 struct{}{},
    	{"ppc64", "runtime", "slicebytetostringtmp"}:               struct{}{},
    	{"ppc64", "sync", "runtime_LoadAcquintptr"}:                struct{}{},
    	{"ppc64", "sync", "runtime_StoreReluintptr"}:               struct{}{},
    	{"ppc64", "sync/atomic", "AddInt32"}:                       struct{}{},
    	{"ppc64", "sync/atomic", "AddInt64"}:                       struct{}{},
    	{"ppc64", "sync/atomic", "AddUint32"}:                      struct{}{},
    	{"ppc64", "sync/atomic", "AddUint64"}:                      struct{}{},
    	{"ppc64", "sync/atomic", "AddUintptr"}:                     struct{}{},
    	{"ppc64", "sync/atomic", "CompareAndSwapInt32"}:            struct{}{},
    	{"ppc64", "sync/atomic", "CompareAndSwapInt64"}:            struct{}{},
    	{"ppc64", "sync/atomic", "CompareAndSwapUint32"}:           struct{}{},
    	{"ppc64", "sync/atomic", "CompareAndSwapUint64"}:           struct{}{},
    	{"ppc64", "sync/atomic", "CompareAndSwapUintptr"}:          struct{}{},
    	{"ppc64", "sync/atomic", "LoadInt32"}:                      struct{}{},
    	{"ppc64", "sync/atomic", "LoadInt64"}:                      struct{}{},
    	{"ppc64", "sync/atomic", "LoadPointer"}:                    struct{}{},
    	{"ppc64", "sync/atomic", "LoadUint32"}:                     struct{}{},
    	{"ppc64", "sync/atomic", "LoadUint64"}:                     struct{}{},
    	{"ppc64", "sync/atomic", "LoadUintptr"}:                    struct{}{},
    	{"ppc64", "sync/atomic", "StoreInt32"}:                     struct{}{},
    	{"ppc64", "sync/atomic", "StoreInt64"}:                     struct{}{},
    	{"ppc64", "sync/atomic", "StoreUint32"}:                    struct{}{},
    	{"ppc64", "sync/atomic", "StoreUint64"}:                    struct{}{},
    	{"ppc64", "sync/atomic", "StoreUintptr"}:                   struct{}{},
    	{"ppc64", "sync/atomic", "SwapInt32"}:                      struct{}{},
    	{"ppc64", "sync/atomic", "SwapInt64"}:                      struct{}{},
    	{"ppc64", "sync/atomic", "SwapUint32"}:                     struct{}{},
    	{"ppc64", "sync/atomic", "SwapUint64"}:                     struct{}{},
    	{"ppc64", "sync/atomic", "SwapUintptr"}:                    struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "And"}:              struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "And8"}:             struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Cas"}:              struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Cas64"}:            struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "CasRel"}:           struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Casint32"}:         struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Casint64"}:         struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Casp1"}:            struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Casuintptr"}:       struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Load"}:             struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Load64"}:           struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Load8"}:            struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "LoadAcq"}:          struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "LoadAcq64"}:        struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "LoadAcquintptr"}:   struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Loadint32"}:        struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Loadint64"}:        struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Loadp"}:            struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Loaduint"}:         struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Loaduintptr"}:      struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Or"}:               struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Or8"}:              struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Store"}:            struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Store64"}:          struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Store8"}:           struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "StoreRel"}:         struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "StoreRel64"}:       struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "StoreReluintptr"}:  struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Storeint32"}:       struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Storeint64"}:       struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Storeuintptr"}:     struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xadd"}:             struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xadd64"}:           struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xaddint32"}:        struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xaddint64"}:        struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xadduintptr"}:      struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xchg"}:             struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xchg64"}:           struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xchgint32"}:        struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xchgint64"}:        struct{}{},
    	{"ppc64le", "internal/runtime/atomic", "Xchguintptr"}:      struct{}{},
    	{"ppc64le", "internal/runtime/math", "Add64"}:              struct{}{},
    	{"ppc64le", "internal/runtime/math", "Mul64"}:              struct{}{},
    	{"ppc64le", "internal/runtime/sys", "Len64"}:               struct{}{},
    	{"ppc64le", "internal/runtime/sys", "Len8"}:                struct{}{},
    	{"ppc64le", "internal/runtime/sys", "OnesCount64"}:         struct{}{},
    	{"ppc64le", "internal/runtime/sys", "Prefetch"}:            struct{}{},
    	{"ppc64le", "internal/runtime/sys", "PrefetchStreamed"}:    struct{}{},
    	{"ppc64le", "internal/runtime/sys", "TrailingZeros32"}:     struct{}{},
    	{"ppc64le", "internal/runtime/sys", "TrailingZeros64"}:     struct{}{},
    	{"ppc64le", "math", "Abs"}:                                 struct{}{},
    	{"ppc64le", "math", "Ceil"}:                                struct{}{},
    	{"ppc64le", "math", "Copysign"}:                            struct{}{},
    	{"ppc64le", "math", "FMA"}:                                 struct{}{},
    	{"ppc64le", "math", "Floor"}:                               struct{}{},
    	{"ppc64le", "math", "Round"}:                               struct{}{},
    	{"ppc64le", "math", "Trunc"}:                               struct{}{},
    	{"ppc64le", "math", "sqrt"}:                                struct{}{},
    	{"ppc64le", "math/big", "mulWW"}:                           struct{}{},
    	{"ppc64le", "math/bits", "Add"}:                            struct{}{},
    	{"ppc64le", "math/bits", "Add64"}:                          struct{}{},
    	{"ppc64le", "math/bits", "Len"}:                            struct{}{},
    	{"ppc64le", "math/bits", "Len16"}:                          struct{}{},
    	{"ppc64le", "math/bits", "Len32"}:                          struct{}{},
    	{"ppc64le", "math/bits", "Len64"}:                          struct{}{},
    	{"ppc64le", "math/bits", "Len8"}:                           struct{}{},
    	{"ppc64le", "math/bits", "Mul"}:                            struct{}{},
    	{"ppc64le", "math/bits", "Mul64"}:                          struct{}{},
    	{"ppc64le", "math/bits", "OnesCount16"}:                    struct{}{},
    	{"ppc64le", "math/bits", "OnesCount32"}:                    struct{}{},
    	{"ppc64le", "math/bits", "OnesCount64"}:                    struct{}{},
    	{"ppc64le", "math/bits", "OnesCount8"}:                     struct{}{},
    	{"ppc64le", "math/bits", "RotateLeft"}:                     struct{}{},
    	{"ppc64le", "math/bits", "RotateLeft32"}:                   struct{}{},
    	{"ppc64le", "math/bits", "RotateLeft64"}:                   struct{}{},
    	{"ppc64le", "math/bits", "Sub"}:                            struct{}{},
    	{"ppc64le", "math/bits", "Sub64"}:                          struct{}{},
    	{"ppc64le", "math/bits", "TrailingZeros16"}:                struct{}{},
    	{"ppc64le", "math/bits", "TrailingZeros32"}:                struct{}{},
    	{"ppc64le", "math/bits", "TrailingZeros64"}:                struct{}{},
    	{"ppc64le", "runtime", "KeepAlive"}:                        struct{}{},
    	{"ppc64le", "runtime", "getcallerpc"}:                      struct{}{},
    	{"ppc64le", "runtime", "getcallersp"}:                      struct{}{},
    	{"ppc64le", "runtime", "getclosureptr"}:                    struct{}{},
    	{"ppc64le", "runtime", "publicationBarrier"}:               struct{}{},
    	{"ppc64le", "runtime", "slicebytetostringtmp"}:             struct{}{},
    	{"ppc64le", "sync", "runtime_LoadAcquintptr"}:              struct{}{},
    	{"ppc64le", "sync", "runtime_StoreReluintptr"}:             struct{}{},
    	{"ppc64le", "sync/atomic", "AddInt32"}:                     struct{}{},
    	{"ppc64le", "sync/atomic", "AddInt64"}:                     struct{}{},
    	{"ppc64le", "sync/atomic", "AddUint32"}:                    struct{}{},
    	{"ppc64le", "sync/atomic", "AddUint64"}:                    struct{}{},
    	{"ppc64le", "sync/atomic", "AddUintptr"}:                   struct{}{},
    	{"ppc64le", "sync/atomic", "CompareAndSwapInt32"}:          struct{}{},
    	{"ppc64le", "sync/atomic", "CompareAndSwapInt64"}:          struct{}{},
    	{"ppc64le", "sync/atomic", "CompareAndSwapUint32"}:         struct{}{},
    	{"ppc64le", "sync/atomic", "CompareAndSwapUint64"}:         struct{}{},
    	{"ppc64le", "sync/atomic", "CompareAndSwapUintptr"}:        struct{}{},
    	{"ppc64le", "sync/atomic", "LoadInt32"}:                    struct{}{},
    	{"ppc64le", "sync/atomic", "LoadInt64"}:                    struct{}{},
    	{"ppc64le", "sync/atomic", "LoadPointer"}:                  struct{}{},
    	{"ppc64le", "sync/atomic", "LoadUint32"}:                   struct{}{},
    	{"ppc64le", "sync/atomic", "LoadUint64"}:                   struct{}{},
    	{"ppc64le", "sync/atomic", "LoadUintptr"}:                  struct{}{},
    	{"ppc64le", "sync/atomic", "StoreInt32"}:                   struct{}{},
    	{"ppc64le", "sync/atomic", "StoreInt64"}:                   struct{}{},
    	{"ppc64le", "sync/atomic", "StoreUint32"}:                  struct{}{},
    	{"ppc64le", "sync/atomic", "StoreUint64"}:                  struct{}{},
    	{"ppc64le", "sync/atomic", "StoreUintptr"}:                 struct{}{},
    	{"ppc64le", "sync/atomic", "SwapInt32"}:                    struct{}{},
    	{"ppc64le", "sync/atomic", "SwapInt64"}:                    struct{}{},
    	{"ppc64le", "sync/atomic", "SwapUint32"}:                   struct{}{},
    	{"ppc64le", "sync/atomic", "SwapUint64"}:                   struct{}{},
    	{"ppc64le", "sync/atomic", "SwapUintptr"}:                  struct{}{},
    	{"riscv64", "internal/runtime/atomic", "And"}:              struct{}{},
    	{"riscv64", "internal/runtime/atomic", "And8"}:             struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Cas"}:              struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Cas64"}:            struct{}{},
    	{"riscv64", "internal/runtime/atomic", "CasRel"}:           struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Casint32"}:         struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Casint64"}:         struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Casp1"}:            struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Casuintptr"}:       struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Load"}:             struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Load64"}:           struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Load8"}:            struct{}{},
    	{"riscv64", "internal/runtime/atomic", "LoadAcq"}:          struct{}{},
    	{"riscv64", "internal/runtime/atomic", "LoadAcq64"}:        struct{}{},
    	{"riscv64", "internal/runtime/atomic", "LoadAcquintptr"}:   struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Loadint32"}:        struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Loadint64"}:        struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Loadp"}:            struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Loaduint"}:         struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Loaduintptr"}:      struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Or"}:               struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Or8"}:              struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Store"}:            struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Store64"}:          struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Store8"}:           struct{}{},
    	{"riscv64", "internal/runtime/atomic", "StoreRel"}:         struct{}{},
    	{"riscv64", "internal/runtime/atomic", "StoreRel64"}:       struct{}{},
    	{"riscv64", "internal/runtime/atomic", "StoreReluintptr"}:  struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Storeint32"}:       struct{}{},
    	{"riscv64", "internal/runtime/atomic", "Storeint64"}:       struct{}{},
    	{"riscv64", "internal/runtime/atomic", "StorepNoWB"}:       struct{}{},