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
|
# REQUIRES: x86-registered-target
#
## This produces a static object that matches expectations for PS4/PS5.
# RUN: yaml2obj %s -DTYPE=ET_REL -DLABEL=Symbols -DZDAPV=_ZdaPv -o=%t1
# RUN: llvm-tli-checker --triple=x86_64-scei-ps4 %t1 | FileCheck %s
# RUN: llvm-tli-checker --triple=x86_64-sie-ps5 %t1 | FileCheck %s
#
## This produces a dynamic object that has _ZdaPvj instead of _ZdaPv.
# RUN: yaml2obj %s -DTYPE=ET_DYN -DLABEL=DynamicSymbols -DZDAPV=_ZdaPvj -o=%t2
# RUN: llvm-tli-checker --triple x86_64-scei-ps4 %t2 | \
# RUN: FileCheck %s --check-prefixes=WRONG_SUMMARY,WRONG_DETAIL \
# RUN: --implicit-check-not="==" --implicit-check-not="<<" --implicit-check-not=">>"
#
## --report=discrepancy is the default, check we get the same output.
# RUN: llvm-tli-checker --triple x86_64-scei-ps4 %t2 --report=discrepancy | \
# RUN: FileCheck %s --check-prefixes=WRONG_SUMMARY,WRONG_DETAIL \
# RUN: --implicit-check-not="==" --implicit-check-not="<<" --implicit-check-not=">>"
#
## --report=summary should not print the details (checked by the
## implicit-check-not strings).
# RUN: llvm-tli-checker --triple x86_64-scei-ps4 %t2 --report=summary | \
# RUN: FileCheck %s --check-prefix=WRONG_SUMMARY \
# RUN: --implicit-check-not="==" --implicit-check-not="<<" --implicit-check-not=">>"
#
## --separate implies --report=summary.
# RUN: llvm-tli-checker --triple x86_64-scei-ps4 %t2 --separate | \
# RUN: FileCheck %s --check-prefix=WRONG_SUMMARY \
# RUN: --implicit-check-not="==" --implicit-check-not="<<" --implicit-check-not=">>"
#
## Verify --dump-tli reports the full set.
# RUN: llvm-tli-checker --triple x86_64-scei-ps4 --dump-tli > %t3.txt
# RUN: FileCheck %s --check-prefix=AVAIL --input-file %t3.txt
# RUN: FileCheck %s --check-prefix=UNAVAIL --input-file %t3.txt
#
# CHECK: << Total TLI yes SDK no: 8
# CHECK: >> Total TLI no SDK yes: 0
# CHECK: == Total TLI yes SDK yes: 235
#
# WRONG_DETAIL: << TLI yes SDK no : '_ZdaPv' aka operator delete[](void*)
# WRONG_DETAIL: >> TLI no SDK yes: '_ZdaPvj' aka operator delete[](void*, unsigned int)
# WRONG_DETAIL-COUNT-8: << TLI yes SDK no : {{.*}}__hot_cold_t
# WRONG_SUMMARY: << Total TLI yes SDK no: 9{{$}}
# WRONG_SUMMARY: >> Total TLI no SDK yes: 1{{$}}
# WRONG_SUMMARY: == Total TLI yes SDK yes: 234
#
## The -COUNT suffix doesn't care if there are too many matches, so check
## the exact count first; the two directives should add up to that.
## Yes, this means additions to TLI will fail this test, but the argument
## to -COUNT can't be an expression.
# AVAIL: TLI knows 476 symbols, 243 available
# AVAIL-COUNT-243: {{^}} available
# AVAIL-NOT: {{^}} available
# UNAVAIL-COUNT-233: not available
# UNAVAIL-NOT: not available
## This is a large file so it's worth telling lit to stop here.
# END.
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
OSABI: ELFOSABI_FREEBSD
Type: ET_DYN
Machine: EM_X86_64
Sections:
- Name: .text
Type: SHT_PROGBITS
DynamicSymbols:
# This is an undefined symbol that is known to TLI but not in the
# available set for PS4, showing the tool will ignore undefined symbols.
# Omitting the Section attribute makes it undefined.
- Name: memcpy_chk
Type: STT_FUNC
Binding: STB_GLOBAL
# This will be either _ZdaPv or _ZdaPvj (see yaml2obj invocations above).
- Name: [[ZDAPV]]
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
# The rest of these are the remaining symbols needed for PS4.
- Name: _ZdaPvRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdaPvSt11align_val_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdaPvSt11align_val_tRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdaPvm
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdaPvmSt11align_val_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdlPv
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdlPvRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdlPvSt11align_val_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdlPvSt11align_val_tRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdlPvm
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZdlPvmSt11align_val_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _Znam
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZnamRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZnamSt11align_val_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZnamSt11align_val_tRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _Znwm
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZnwmRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZnwmSt11align_val_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: _ZnwmSt11align_val_tRKSt9nothrow_t
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: __cxa_atexit
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: __cxa_guard_abort
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: __cxa_guard_acquire
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: __cxa_guard_release
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: abs
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: acos
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: acosf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: acosh
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: acoshf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: acoshl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: acosl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: aligned_alloc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: asin
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: asinf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: asinh
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: asinhf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: asinhl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: asinl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atan
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atan2
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atan2f
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atan2l
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atanh
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atanhf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atanhl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atanl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atof
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atoi
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atol
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: atoll
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: calloc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: cbrt
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: cbrtf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: cbrtl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ceil
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ceilf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ceill
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: clearerr
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: copysign
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: copysignf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: copysignl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: cos
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: cosf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: cosh
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: coshf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: coshl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: cosl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: exp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: exp2
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: exp2f
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: exp2l
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: expf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: expl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: expm1
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: expm1f
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: expm1l
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fabs
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fabsf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fabsl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fclose
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fdopen
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: feof
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ferror
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fflush
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fgetc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fgetpos
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fgets
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fileno
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: floor
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: floorf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: floorl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fmax
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fmaxf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fmaxl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fmin
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fminf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fminl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fmod
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fmodf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fmodl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fopen
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fprintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fputc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fputs
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fread
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: free
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: frexp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: frexpf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: frexpl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fscanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fseek
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fsetpos
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ftell
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: fwrite
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: getc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: getchar
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: gets
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: isdigit
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: labs
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ldexp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ldexpf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ldexpl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: llabs
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log10
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log10f
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log10l
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log1p
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log1pf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log1pl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log2
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log2f
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: log2l
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: logb
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: logbf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: logbl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: logf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: logl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: malloc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: memalign
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: memchr
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: memcmp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: memcpy
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: memmove
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: memset
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: mktime
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: modf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: modff
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: modfl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: nearbyint
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: nearbyintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: nearbyintl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: perror
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: posix_memalign
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: pow
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: powf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: powl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: printf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: putc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: putchar
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: puts
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: qsort
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: realloc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: remainder
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: remainderf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: remainderl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: remove
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: rewind
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: rint
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: rintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: rintl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: round
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: roundf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: roundl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: scanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: setbuf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: setvbuf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sin
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sinf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sinh
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sinhf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sinhl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sinl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: snprintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sprintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sqrt
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sqrtf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sqrtl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: sscanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strcasecmp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strcat
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strchr
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strcmp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strcoll
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strcpy
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strcspn
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strdup
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strlen
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strncasecmp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strncat
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strncmp
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strncpy
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strpbrk
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strrchr
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strspn
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strstr
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtod
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtof
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtok
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtok_r
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtol
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtold
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtoll
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtoul
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strtoull
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: strxfrm
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: tan
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: tanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: tanh
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: tanhf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: tanhl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: tanl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: trunc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: truncf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: truncl
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: ungetc
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: vfprintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: vfscanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: vprintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: vscanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: vsnprintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: vsprintf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: vsscanf
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
- Name: wcslen
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
...
|