Skip to content
Snippets Groups Projects
kallsyms.txt 6.16 MiB
Newer Older
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
[+] Kernel successfully decompressed in-memory (the offsets that follow will be given relative to the decompressed binary)
[+] Version string: Linux version 5.10.209-android12-9-00019-g4ea09a298bb4-ab12292661 (build-user@build-host) (Android (7284624, based on r416183b) clang version 12.0.5 (https://android.googlesource.com/toolchain/llvm-project c935d99d7cf2016289302412d708641d52d2f7ee), LLD 12.0.5 (/buildbot/src/android/llvm-toolchain/out/llvm-project/lld c935d99d7cf2016289302412d708641d52d2f7ee)) #1 SMP PREEMPT Wed Aug 28 22:16:09 UTC 2024
[+] Guessed architecture: aarch64 successfully in 0.00 seconds
[+] Found kallsyms_token_table at file offset 0x0202c9d0
[+] Found kallsyms_token_index at file offset 0x0202cd88
[+] Found kallsyms_markers at file offset 0x0202c120
[+] Found kallsyms_names at file offset 0x01e38ef8
[+] Found kallsyms_num_syms at file offset 0x01e38ef0
[i] Negative offsets overall: 0 %
[i] Null addresses overall: 0 %
[+] Found kallsyms_offsets at file offset 0x01dae290
Symbol types => ['B', 'D', 'R', 'T', 'V', 'W', 'b', 'd', 'r', 't']

ffffffc008000000 T _text
ffffffc008000000 t _head
ffffffc008000040 t pe_header
ffffffc008000044 t coff_header
ffffffc008000058 t optional_header
ffffffc008000070 t extra_header_fields
ffffffc0080000f8 t section_table
ffffffc008010000 t efi_header_end
ffffffc008010000 t sun4i_handle_irq
ffffffc008010000 T _stext
ffffffc008010000 T __irqentry_text_start
ffffffc00801018c t gic_handle_irq
ffffffc008010314 t gic_handle_irq.30555
ffffffc00801047c T __irqentry_text_end
ffffffc008010480 T __do_softirq
ffffffc008010480 T __softirqentry_text_start
ffffffc008010a6c T __softirqentry_text_end
ffffffc008010a70 T __entry_text_start
ffffffc008011000 T vectors
ffffffc008011800 t __bad_stack
ffffffc0080118a4 t el0_sync_invalid
ffffffc008011a68 t el0_irq_invalid
ffffffc008011c2c t el0_fiq_invalid
ffffffc008011df0 t el0_error_invalid
ffffffc008011fb4 t el0_fiq_invalid_compat
ffffffc00801217c t el1_sync_invalid
ffffffc008012214 t el1_irq_invalid
ffffffc0080122ac t el1_fiq_invalid
ffffffc008012344 t el1_error_invalid
ffffffc008012400 t el1_sync
ffffffc008012540 t el1_irq
ffffffc008012700 t el0_sync
ffffffc0080128c0 t el0_sync_compat
ffffffc008012a80 t el0_irq_compat
ffffffc008012c38 t el0_error_compat
ffffffc008012e00 t el0_irq
ffffffc008012fb0 t el0_irq_naked
ffffffc00801301c t el1_error
ffffffc008013134 t el0_error
ffffffc0080132e4 t el0_error_naked
ffffffc008013300 t ret_to_user
ffffffc008013310 t finish_ret_to_user
ffffffc00801347c t work_pending
ffffffc008013800 T __bp_harden_el1_vectors
ffffffc008015714 T __entry_text_end
ffffffc008015800 t __swpan_entry_el1
ffffffc008015814 t __swpan_entry_el0
ffffffc008015838 t __swpan_exit_el1
ffffffc008015868 t __swpan_exit_el0
ffffffc008015890 T cpu_switch_to
ffffffc00801590c T ret_from_fork
ffffffc00801593c T fpsimd_save_state
ffffffc008015994 T fpsimd_load_state
ffffffc0080159f8 T sve_save_state
ffffffc008015adc T sve_load_state
ffffffc008015bd4 T sve_get_vl
ffffffc008015be0 T sve_load_from_fpsimd_state
ffffffc008015ca0 T sve_flush_live
ffffffc008015d6c T __hyp_set_vectors
ffffffc008015d80 T __hyp_reset_vectors
ffffffc008015d90 T switch_to_vhe
ffffffc008015dc0 T __arm_smccc_smc
ffffffc008015df0 T __arm_smccc_hvc
ffffffc008015e20 T __aarch32_sigret_code_start
ffffffc008015e38 T __aarch32_sigret_code_end
ffffffc008015e40 t __kuser_cmpxchg64
ffffffc008015e40 T __kuser_helper_start
ffffffc008015e80 t __kuser_memory_barrier
ffffffc008015ea0 t __kuser_cmpxchg
ffffffc008015ec0 t __kuser_get_tls
ffffffc008015edc t __kuser_helper_version
ffffffc008015ee0 T __cpu_suspend_enter
ffffffc008015ee0 T __kuser_helper_end
ffffffc008015f74 T _cpu_resume
ffffffc008016000 T __efi_rt_asm_wrapper
ffffffc008016064 T kretprobe_trampoline
ffffffc008016128 T __flush_icache_range
ffffffc00801612c T __flush_cache_user_range
ffffffc008016210 T invalidate_icache_range
ffffffc0080162c0 T __flush_dcache_area
ffffffc0080162c0 T __pi___flush_dcache_area
ffffffc0080162fc T __clean_dcache_area_pou
ffffffc008016340 t __dma_inv_area
ffffffc008016344 T __inval_dcache_area
ffffffc008016344 T __pi___inval_dcache_area
ffffffc0080163a0 t __dma_clean_area
ffffffc0080163a4 T __clean_dcache_area_poc
ffffffc0080163a4 T __pi___clean_dcache_area_poc
ffffffc0080163e0 T __clean_dcache_area_pop
ffffffc0080163e0 T __pi___clean_dcache_area_pop
ffffffc008016420 T __dma_flush_area
ffffffc008016420 T __pi___dma_flush_area
ffffffc00801645c T __dma_map_area
ffffffc00801645c T __pi___dma_map_area
ffffffc00801646c T __dma_unmap_area
ffffffc00801646c T __pi___dma_unmap_area
ffffffc0080165b0 T cpu_do_suspend
ffffffc008016608 T __guest_enter
ffffffc008016714 T __guest_exit_panic
ffffffc008016764 T __guest_exit
ffffffc0080168c0 t abort_guest_exit_start
ffffffc0080168c4 t abort_guest_exit_end
ffffffc00801691c T __fpsimd_save_state
ffffffc008016974 T __fpsimd_restore_state
ffffffc0080169d8 T __sve_restore_state
ffffffc008016ab8 T __sve_save_state
ffffffc008017000 t el1_sync
ffffffc008017030 t wa_epilogue
ffffffc008017044 t el1_trap
ffffffc008017064 t el1_irq
ffffffc008017084 t el1_error
ffffffc0080170a4 t el2_sync
ffffffc008017120 t el2_error
ffffffc00801717c t el2t_sync_invalid
ffffffc008017180 t el2t_irq_invalid
ffffffc008017184 t el2t_fiq_invalid
ffffffc008017188 t el2t_error_invalid
ffffffc00801718c t el2h_irq_invalid
ffffffc008017190 t el2h_fiq_invalid
ffffffc008017194 t el1_fiq_invalid
ffffffc008017800 T __kvm_hyp_vector
ffffffc008018000 T __bp_harden_hyp_vecs
ffffffc008019890 T sha2_ce_transform
ffffffc008019ab8 T __aes_ce_encrypt
ffffffc008019b20 T __aes_ce_decrypt
ffffffc008019b88 T __aes_ce_sub
ffffffc008019ba0 T __aes_ce_invert
ffffffc008019bc0 t aes_encrypt_block4x
ffffffc008019d94 t aes_decrypt_block4x
ffffffc008019f68 t aes_encrypt_block5x
ffffffc00801a1ac t aes_decrypt_block5x
ffffffc00801a3f0 T ce_aes_ecb_encrypt
ffffffc00801a4dc T ce_aes_ecb_decrypt
ffffffc00801a5c8 T ce_aes_essiv_cbc_encrypt
ffffffc00801a69c T ce_aes_cbc_encrypt
ffffffc00801a980 T ce_aes_essiv_cbc_decrypt
ffffffc00801aa38 T ce_aes_cbc_decrypt
ffffffc00801ab64 T ce_aes_cbc_cts_encrypt
ffffffc00801acd0 T ce_aes_cbc_cts_decrypt
ffffffc00801ae3c T ce_aes_ctr_encrypt
ffffffc00801afe8 T ce_aes_xts_encrypt
ffffffc00801b29c T ce_aes_xts_decrypt
ffffffc00801b5e4 T ce_aes_mac_update
ffffffc00801b9c0 T sha256_block_data_order
ffffffc00801c950 T sha256_block_neon
ffffffc00801d680 t chacha_permute
ffffffc00801d724 T chacha_block_xor_neon
ffffffc00801d76c T hchacha_block_neon
ffffffc00801d7c0 T chacha_4block_xor_neon
ffffffc00801dfe0 T poly1305_init_arm64
ffffffc00801e020 T poly1305_blocks
ffffffc00801e100 T poly1305_emit
ffffffc00801e180 t poly1305_mult
ffffffc00801e1f0 t poly1305_splat
ffffffc00801e240 T poly1305_blocks_neon
ffffffc00801e8c0 T crc32_le
ffffffc00801e9a0 T __crc32c_le
ffffffc00801ea88 T mte_clear_page_tags
ffffffc00801eab0 T mte_zero_clear_page_tags
ffffffc00801eaf0 T mte_copy_page_tags
ffffffc00801eb28 T mte_copy_tags_from_user
ffffffc00801eb58 T mte_copy_tags_to_user
ffffffc00801eb8c T mte_save_page_tags
ffffffc00801ebc8 T mte_restore_page_tags
ffffffc00801ebfc T clear_page
ffffffc00801ebfc T __pi_clear_page
ffffffc00801ec48 T __arch_clear_user
ffffffc00801ecc0 T __arch_copy_from_user
ffffffc00801ef00 T __arch_copy_in_user
ffffffc00801f198 T copy_page
ffffffc00801f198 T __pi_copy_page
ffffffc00801f280 T __arch_copy_to_user
ffffffc00801f498 T __pi_memchr
ffffffc00801f498 W memchr
ffffffc00801f4c4 T __pi_memcmp
ffffffc00801f4c4 W memcmp
ffffffc00801f680 T __memcpy
ffffffc00801f680 T __pi_memcpy
ffffffc00801f680 W memcpy
ffffffc00801f800 T __memmove
ffffffc00801f800 T __pi_memmove
ffffffc00801f800 W memmove
ffffffc00801f980 T __memset
ffffffc00801f980 T __pi_memset
ffffffc00801f980 W memset
ffffffc00801fb08 W strchr
ffffffc00801fb30 T __pi_strcmp
ffffffc00801fb30 W strcmp
ffffffc00801fc88 T __pi_strlen
ffffffc00801fc88 W strlen
ffffffc00801fd10 T __pi_strncmp
ffffffc00801fd10 W strncmp
ffffffc00801ff1c T __pi_strnlen
ffffffc00801ff1c W strnlen
ffffffc00801ffe0 T __pi_strrchr
ffffffc00801ffe0 W strrchr
ffffffc00802000c T __ashlti3
ffffffc008020050 T __ashrti3
ffffffc008020094 T __lshrti3
ffffffc0080200d8 t trace_raw_output_initcall_start
ffffffc0080201d4 t trace_raw_output_initcall_level
ffffffc0080202d4 t trace_raw_output_initcall_finish
ffffffc0080203d4 t trace_event_raw_event_initcall_start
ffffffc008020558 t perf_trace_initcall_start
ffffffc00802071c t trace_event_raw_event_initcall_level
ffffffc0080208d4 t perf_trace_initcall_level
ffffffc008020aa4 t trace_event_raw_event_initcall_finish
ffffffc008020c38 t perf_trace_initcall_finish
ffffffc008020e00 T __traceiter_initcall_start
ffffffc008020e58 T __traceiter_initcall_level
ffffffc008020eb0 T __traceiter_initcall_finish
ffffffc008020f18 t __bpf_trace_initcall_start
ffffffc008020f3c t __bpf_trace_initcall_level
ffffffc008020f60 t __bpf_trace_initcall_finish
ffffffc008020f88 t run_init_process
ffffffc008021058 T do_one_initcall
ffffffc0080214b0 t trace_initcall_start_cb
ffffffc0080215dc t trace_initcall_finish_cb
ffffffc008022000 T __cfi_check
ffffffc008075940 T name_to_dev_t
ffffffc008075dfc t match_dev_by_uuid
ffffffc008075e44 t match_dev_by_label
ffffffc008075e8c t rootfs_init_fs_context
ffffffc008075f58 W calibrate_delay_is_known
ffffffc008075f68 W calibration_delay_done
ffffffc008075f74 T calibrate_delay
ffffffc0080761ec T user_rewind_single_step
ffffffc008076210 T user_enable_single_step
ffffffc008076264 T user_disable_single_step
ffffffc0080762a4 t single_step_handler
ffffffc008076460 t set_user_regs_spsr_ss
ffffffc008076478 t mdscr_write
ffffffc008076498 t mdscr_read
ffffffc0080764a8 T kernel_enable_single_step
ffffffc008076514 T enable_debug_monitors
ffffffc008076778 T kernel_disable_single_step
ffffffc0080767d4 T disable_debug_monitors
ffffffc008076a30 T kernel_active_single_step
ffffffc008076a60 t clear_user_regs_spsr_ss
ffffffc008076a78 t call_step_hook
ffffffc008076b50 t call_break_hook
ffffffc008076c3c t brk_handler
ffffffc008076de4 T aarch32_break_handler
ffffffc008077314 T register_kernel_break_hook
ffffffc0080774d0 t clear_os_lock
ffffffc0080774f0 T debug_monitors_arch
ffffffc00807756c T register_user_step_hook
ffffffc008077728 T unregister_user_step_hook
ffffffc008077914 T register_kernel_step_hook
ffffffc008077ad0 T unregister_kernel_step_hook
ffffffc008077cbc T register_user_break_hook
ffffffc008077e78 T unregister_user_break_hook
ffffffc008078064 T unregister_kernel_break_hook
ffffffc008078250 T user_fastforward_single_step
ffffffc008078274 T user_regs_reset_single_step
ffffffc008078294 T kernel_rewind_single_step
ffffffc0080782ac T kernel_neon_end
ffffffc008078318 t local_bh_enable
ffffffc008078340 T kernel_neon_begin
ffffffc008078538 t fpsimd_save
ffffffc0080786f0 t fpsimd_cpu_dead
ffffffc008078728 t sve_proc_do_default_vl
ffffffc0080788d8 t fpsimd_cpu_pm_notifier
ffffffc008078918 T fpsimd_save_and_flush_cpu_state
ffffffc008078a40 T sve_state_size
ffffffc008078a68 T sve_alloc
ffffffc008078af0 T fpsimd_sync_to_sve
ffffffc008078b50 t __fpsimd_to_sve
ffffffc008078da4 T sve_sync_to_fpsimd
ffffffc008078e10 T sve_sync_from_fpsimd_zeropad
ffffffc008078e84 T sve_set_vector_length
ffffffc0080791a8 T fpsimd_flush_task_state
ffffffc008079208 T sve_set_current_vl
ffffffc0080792a0 T sve_get_current_vl
ffffffc0080792f4 t sve_probe_vqs
ffffffc0080793ac T sve_update_vq_map
ffffffc00807953c T sve_verify_vq_map
ffffffc0080798a8 T sve_kernel_enable
ffffffc0080798c4 T read_zcr_features
ffffffc00807991c t find_supported_vector_length
ffffffc008079a08 T fpsimd_release_task
ffffffc008079a40 T do_sve_acc
ffffffc008079c34 T do_fpsimd_acc
ffffffc008079c44 T do_fpsimd_exc
ffffffc008079d08 T fpsimd_thread_switch
ffffffc008079e38 T fpsimd_flush_thread
ffffffc00807a0d0 T fpsimd_preserve_current_state
ffffffc00807a180 T fpsimd_signal_preserve_current_state
ffffffc00807a2b4 T fpsimd_bind_task_to_cpu
ffffffc00807a384 T fpsimd_bind_state_to_cpu
ffffffc00807a408 T fpsimd_restore_current_state
ffffffc00807a52c t task_fpsimd_load
ffffffc00807a620 T fpsimd_update_current_state
ffffffc00807a780 T __efi_fpsimd_begin
ffffffc00807a9c4 T __efi_fpsimd_end
ffffffc00807ab30 T show_regs
ffffffc00807ab74 T __show_regs
ffffffc00807ae80 T get_wchan
ffffffc00807b074 T arch_cpu_idle_dead
ffffffc00807b088 T machine_shutdown
ffffffc00807b0b4 T machine_halt
ffffffc00807b0e8 T machine_power_off
ffffffc00807b180 T machine_restart
ffffffc00807b2bc T flush_thread
ffffffc00807b340 T release_thread
ffffffc00807b34c T arch_release_task_struct
ffffffc00807b384 T arch_dup_task_struct
ffffffc00807b4c4 T copy_thread
ffffffc00807b6a4 T tls_preserve_current_state
ffffffc00807b6d0 T uao_thread_switch
ffffffc00807b700 T update_sctlr_el1
ffffffc00807b738 T __switch_to
ffffffc00807bc1c T arch_align_stack
ffffffc00807bc70 T arch_setup_new_exec
ffffffc00807bed0 t ptrauth_keys_init_user
ffffffc00807c000 T set_tagged_addr_ctrl
ffffffc00807c100 T get_tagged_addr_ctrl
ffffffc00807c174 T arch_elf_adjust_prot
ffffffc00807c1a0 t trace_raw_output_sys_exit
ffffffc00807c29c t trace_raw_output_sys_enter
ffffffc00807c3b0 t trace_event_raw_event_sys_exit
ffffffc00807c544 t perf_trace_sys_exit
ffffffc00807c70c t trace_event_raw_event_sys_enter
ffffffc00807c8bc t perf_trace_sys_enter
ffffffc00807caa0 T __traceiter_sys_exit
ffffffc00807cb08 T __traceiter_sys_enter
ffffffc00807cb70 t __bpf_trace_sys_exit
ffffffc00807cb94 t __bpf_trace_sys_enter
ffffffc00807cbb8 T regs_query_register_offset
ffffffc00807cc14 T regs_get_kernel_stack_nth
ffffffc00807cc78 T ptrace_disable
ffffffc00807ccb8 T flush_ptrace_hw_breakpoint
ffffffc00807cee4 T ptrace_hw_copy_thread
ffffffc00807cf18 T compat_arch_ptrace
ffffffc00807d434 t compat_ptrace_read_user
ffffffc00807d674 t compat_gpr_set
ffffffc00807d908 t compat_vfp_set
ffffffc00807da58 t compat_ptrace_gethbpregs
ffffffc00807de54 t compat_ptrace_sethbpregs
ffffffc00807e2e0 t ptrace_hbptriggered
ffffffc00807e640 t ptrace_hbp_set_ctrl
ffffffc00807e898 t ptrace_hbp_get_initialised_bp
ffffffc00807ea28 t user_regset_copyin
ffffffc00807ec54 t _copy_from_user
ffffffc00807ee10 t compat_gpr_get
ffffffc00807ef1c t compat_vfp_get
ffffffc00807f0cc t fpr_active
ffffffc00807f104 T task_user_regset_view
ffffffc00807f148 t compat_tls_get
ffffffc00807f1e0 t compat_tls_set
ffffffc00807f274 t hw_break_get
ffffffc00807f6a0 t hw_break_set
ffffffc00807f974 t system_call_get
ffffffc00807fa10 t system_call_set
ffffffc00807fab0 t gpr_get
ffffffc00807fb14 t gpr_set
ffffffc00807fccc t fpr_get
ffffffc00807fe48 t fpr_set
ffffffc008080034 t tls_get
ffffffc0080800f8 t tls_set
ffffffc00808018c t sve_get
ffffffc0080804b8 t sve_set
ffffffc0080808b4 t pac_mask_get
ffffffc008080978 t pac_enabled_keys_get
ffffffc008080a68 t pac_enabled_keys_set
ffffffc008080b68 t tagged_addr_ctrl_get
ffffffc008080c5c t tagged_addr_ctrl_set
ffffffc008080cf0 T arch_ptrace
ffffffc008080d2c T syscall_trace_enter
ffffffc008080fd8 T syscall_trace_exit
ffffffc008081264 T valid_user_regs
ffffffc008081390 t arm64_panic_block_dump
ffffffc008081448 T arch_match_cpu_phys_id
ffffffc008081478 T cpu_logical_map
ffffffc0080814a0 T __arm64_sys_rt_sigreturn
ffffffc00808162c t restore_sigframe
ffffffc008081e44 t parse_user_sigframe
ffffffc008082854 t restore_sve_fpsimd_context
ffffffc0080830b4 t restore_fpsimd_context
ffffffc00808387c T do_notify_resume
ffffffc008083ac4 t do_signal
ffffffc008083d18 t setup_rt_frame
ffffffc00808421c t setup_sigframe_layout
ffffffc008084418 t setup_sigframe
ffffffc008085ef8 t preserve_fpsimd_context
ffffffc0080865f0 t preserve_sve_context
ffffffc008086d4c T __arm64_sys_mmap
ffffffc008086d94 T __arm64_sys_arm64_personality
ffffffc008086e4c T __arm64_sys_ni_syscall
ffffffc008086e5c T walk_stackframe
ffffffc008086f00 T unwind_frame
ffffffc0080870bc T dump_backtrace
ffffffc0080872d0 T show_stack
ffffffc0080872fc T arch_stack_walk
ffffffc008087430 T profile_pc
ffffffc0080874f4 T do_undefinstr
ffffffc0080875b0 t call_undef_hook
ffffffc008087d20 T force_signal_inject
ffffffc008087f08 t arm64_show_signal
ffffffc008088028 T die
ffffffc0080886a8 T do_sysinstr
ffffffc0080887d4 t user_cache_maint_handler
ffffffc008089028 t ctr_read_handler
ffffffc008089128 t mrs_handler
ffffffc0080891a0 t wfi_handler
ffffffc008089244 t cntvct_read_handler
ffffffc008089374 t cntfrq_read_handler
ffffffc008089430 T do_ptrauth_fault
ffffffc0080894e8 T do_cp15instr
ffffffc0080896fc t compat_cntfrq_read_handler
ffffffc0080897b8 t compat_cntvct_read_handler
ffffffc008089900 T do_bti
ffffffc008089944 T arm64_force_sig_fault
ffffffc0080899fc T arm64_force_sig_mceerr
ffffffc008089ab8 T arm64_force_sig_ptrace_errno_trap
ffffffc008089b50 T arm64_notify_die
ffffffc008089c54 T arm64_skip_faulting_instruction
ffffffc008089cf8 T register_undef_hook
ffffffc008089ef4 T unregister_undef_hook
ffffffc00808a098 T arm64_notify_segfault
ffffffc00808a19c T esr_get_class_string
ffffffc00808a1b8 T bad_mode
ffffffc00808a268 t trace_android_rvh_bad_mode
ffffffc00808a2e4 T bad_el0_sync
ffffffc00808a388 T arm64_serror_panic
ffffffc00808a554 T arm64_is_fatal_ras_serror
ffffffc00808a690 T is_valid_bugaddr
ffffffc00808a6a0 t bug_handler
ffffffc00808a7a8 t reserved_fault_handler
ffffffc00808a7e4 T __memset_io
ffffffc00808a85c T __memcpy_toio
ffffffc00808a8d0 T __memcpy_fromio
ffffffc00808a950 t __vdso_init
ffffffc00808aa84 t vvar_fault
ffffffc00808ab54 t vvar_mremap
ffffffc00808ab74 t vdso_mremap
ffffffc00808abbc t aarch32_vdso_mremap
ffffffc00808ac04 T arch_get_vdso_data
ffffffc00808ac10 T vdso_join_timens
ffffffc00808ad0c T aarch32_setup_additional_pages
ffffffc00808ae14 t __setup_additional_pages
ffffffc00808af34 T arch_setup_additional_pages
ffffffc00808af94 t cpu_psci_cpu_boot
ffffffc00808b060 t cpu_psci_cpu_can_disable
ffffffc00808b07c t cpu_psci_cpu_disable
ffffffc00808b0b0 t cpu_psci_cpu_die
ffffffc00808b128 t cpu_psci_cpu_kill
ffffffc00808b264 T get_cpu_ops
ffffffc00808b28c T aarch64_insn_is_branch_imm
ffffffc00808b2dc T aarch64_insn_decode_immediate
ffffffc00808b400 T aarch64_insn_decode_register
ffffffc00808b45c T aarch64_insn_gen_comp_branch_imm
ffffffc00808b588 T aarch64_insn_gen_cond_branch_imm
ffffffc00808b644 T aarch64_insn_gen_branch_reg
ffffffc00808b6d0 T aarch64_insn_gen_load_store_reg
ffffffc00808b7fc T aarch64_insn_gen_load_store_pair
ffffffc00808b988 T aarch64_insn_gen_load_store_ex
ffffffc00808bab8 T aarch64_insn_gen_ldadd
ffffffc00808bbe8 T aarch64_insn_gen_stadd
ffffffc00808bce0 T aarch64_insn_gen_prefetch
ffffffc00808bdb0 T aarch64_insn_gen_add_sub_imm
ffffffc00808bef8 T aarch64_insn_gen_bitfield
ffffffc00808c058 T aarch64_insn_gen_movewide
ffffffc00808c198 T aarch64_insn_gen_add_sub_shifted_reg
ffffffc00808c2f0 T aarch64_insn_gen_data1
ffffffc00808c420 T aarch64_insn_gen_data2
ffffffc00808c538 T aarch64_insn_gen_data3
ffffffc00808c698 T aarch64_insn_gen_logical_shifted_reg
ffffffc00808c7f0 T aarch64_insn_gen_move_reg
ffffffc00808c8c0 T aarch64_insn_gen_adr
ffffffc00808c98c T aarch64_get_branch_offset
ffffffc00808ca04 T aarch64_set_branch_offset
ffffffc00808ca8c T aarch64_insn_adrp_get_offset
ffffffc00808cabc T aarch64_insn_adrp_set_offset
ffffffc00808cb14 T aarch64_insn_extract_system_reg
ffffffc00808cb24 T aarch32_insn_is_wide
ffffffc00808cb3c T aarch32_insn_extract_reg_num
ffffffc00808cb58 T aarch32_insn_mcr_extract_opc2
ffffffc00808cb68 T aarch32_insn_mcr_extract_crm
ffffffc00808cb78 T aarch64_insn_gen_logical_immediate
ffffffc00808cdec T aarch64_insn_gen_extr
ffffffc00808cf04 t save_return_addr
ffffffc00808cf30 T return_address
ffffffc00808cfc8 t cpuid_cpu_online
ffffffc00808d0c0 t cpuid_cpu_offline
ffffffc00808d194 t revidr_el1_show
ffffffc00808d1e0 t midr_el1_show
ffffffc00808d228 T cpuinfo_store_cpu
ffffffc00808d290 t __cpuinfo_store_cpu
ffffffc00808d45c t cpuinfo_detect_icache_policy
ffffffc00808d53c t c_start
ffffffc00808d554 t c_stop
ffffffc00808d560 t c_next
ffffffc00808d57c t c_show
ffffffc00808da1c t is_affected_midr_range_list
ffffffc00808dab8 t cpu_enable_cache_maint_trap
ffffffc00808dad8 t is_affected_midr_range
ffffffc00808db9c t cpucap_multi_entry_cap_matches
ffffffc00808dc44 t has_mismatched_cache_type
ffffffc00808dce4 t cpu_enable_trap_ctr_access
ffffffc00808dd3c t has_cortex_a76_erratum_1463225
ffffffc00808dde8 t needs_tx2_tvm_workaround
ffffffc00808df44 t has_neoverse_n1_erratum_1542419
ffffffc00808dfb0 t is_kryo_midr
ffffffc00808e010 T cpu_have_feature
ffffffc00808e040 t emulate_mrs
ffffffc00808e070 T do_emulate_mrs
ffffffc00808e22c t search_cmp_ftr_reg
ffffffc00808e240 t enable_mismatched_32bit_el0
ffffffc00808e484 t setup_elf_hwcaps
ffffffc00808e5c4 t compat_has_neon
ffffffc00808e6a0 t has_cpuid_feature
ffffffc00808e7ac T __read_sysreg_by_encoding
ffffffc00808ec58 t aarch32_el0_show
ffffffc00808ed38 T dump_cpu_features
ffffffc00808ed70 t init_cpu_ftr_reg
ffffffc00808f028 t init_32bit_cpu_features
ffffffc00808f174 t update_cpu_capabilities
ffffffc00808f338 t cpu_enable_non_boot_scope_capabilities
ffffffc00808f4fc t has_useable_gicv3_cpuif
ffffffc00808f584 t cpu_enable_pan
ffffffc00808f5c8 t has_no_hw_prefetch
ffffffc00808f608 t cpufeature_pan_not_uao
ffffffc00808f70c t runs_at_el2
ffffffc00808f724 t cpu_copy_el2regs
ffffffc00808f744 t has_32bit_el0
ffffffc00808f7a0 t is_kvm_protected_mode
ffffffc00808f7f4 t unmap_kernel_at_el0
ffffffc00808f9d8 t kpti_install_ng_mappings
ffffffc00808fdb0 t has_no_fpsimd
ffffffc00808fe2c t cpu_clear_disr
ffffffc00808fe40 t has_amu
ffffffc00808fe50 t cpu_amu_enable
ffffffc00808ffe8 t has_cache_idc
ffffffc00809003c t cpu_emulate_effective_ctr
ffffffc008090064 t has_cache_dic
ffffffc008090098 t cpu_has_fwb
ffffffc0080900c0 t has_hw_dbm
ffffffc0080901d0 t cpu_enable_hw_dbm
ffffffc0080902ec t has_useable_cnp
ffffffc008090314 t cpu_enable_cnp
ffffffc00809035c t has_address_auth_cpucap
ffffffc00809046c t has_address_auth_metacap
ffffffc0080904c4 t has_generic_auth
ffffffc0080905c0 t cpu_enable_e0pd
ffffffc008090688 t bti_enable
ffffffc0080906b0 t cpu_enable_mte
ffffffc0080907f4 t cpu_replace_ttbr1
ffffffc008090bb4 T update_cpu_features
ffffffc0080916c8 t check_update_ftr_reg
ffffffc008091880 T read_sanitised_ftr_reg
ffffffc0080918f0 T system_32bit_el0_cpumask
ffffffc0080919a8 T kaslr_requires_kpti
ffffffc008091a38 T cpu_has_amu_feat
ffffffc008091a68 T check_local_cpu_capabilities
ffffffc008091b34 t verify_local_cpu_caps
ffffffc008091cec t verify_local_cpu_capabilities
ffffffc008091f9c t __verify_local_elf_hwcaps
ffffffc0080920dc t cpucap_multi_entry_cap_matches.671
ffffffc008092184 T this_cpu_has_cap
ffffffc008092250 T cpu_set_feature
ffffffc008092288 T cpu_get_elf_hwcap
ffffffc00809229c T cpu_get_elf_hwcap2
ffffffc0080922b0 T arm64_get_meltdown_state
ffffffc008092304 T cpu_show_meltdown
ffffffc0080923a0 T alternative_is_applied
ffffffc0080923e0 t __apply_alternatives_multi_stop
ffffffc0080924c0 t __apply_alternatives
ffffffc008092720 T apply_alternatives_module
ffffffc008092888 T cache_line_size
ffffffc0080928c4 T init_cache_level
ffffffc008092a58 T populate_cache_leaves
ffffffc008092b34 t trace_raw_output_ipi_raise
ffffffc008092c48 t trace_raw_output_ipi_handler
ffffffc008092d44 t trace_event_raw_event_ipi_raise
ffffffc008092ee4 t perf_trace_ipi_raise
ffffffc0080930b8 t trace_event_raw_event_ipi_handler
ffffffc00809323c t perf_trace_ipi_handler
ffffffc008093400 T __traceiter_ipi_raise
ffffffc008093468 T __traceiter_ipi_exit
ffffffc0080934c0 T __traceiter_ipi_entry
ffffffc008093518 t __bpf_trace_ipi_raise
ffffffc00809353c t __bpf_trace_ipi_handler
ffffffc008093560 T nr_ipi_get
ffffffc008093574 T ipi_desc_get
ffffffc008093588 T __cpu_up
ffffffc008093808 T secondary_start_kernel
ffffffc008093a7c T __cpu_disable
ffffffc008093c40 T __cpu_die
ffffffc008093d10 T cpu_die
ffffffc008093ef8 T cpu_die_early
ffffffc008094014 T arch_show_interrupts
ffffffc008094284 T arch_send_call_function_ipi_mask
ffffffc0080942ac t smp_cross_call
ffffffc00809443c T arch_send_call_function_single_ipi
ffffffc008094480 T arch_irq_work_raise
ffffffc0080944dc T panic_smp_self_stop
ffffffc0080944f0 t local_cpu_stop
ffffffc0080945b8 t ipi_handler
ffffffc008094758 t trace_ipi_entry_rcuidle
ffffffc00809494c t trace_android_vh_ipi_stop_rcuidle
ffffffc008094b40 t trace_ipi_exit_rcuidle
ffffffc008094d34 T smp_send_reschedule
ffffffc008094d78 T tick_broadcast
ffffffc008094da0 T smp_send_stop
ffffffc008094fa8 T setup_profiling_timer
ffffffc008094fb8 T cpus_are_stuck_in_kernel
ffffffc008095060 t smp_spin_table_cpu_init
ffffffc00809515c t smp_spin_table_cpu_prepare
ffffffc008095260 t smp_spin_table_cpu_boot
ffffffc0080952b8 T init_cpu_freq_invariance_counters
ffffffc00809543c T arch_freq_counters_available
ffffffc008095470 T topology_scale_freq_tick
ffffffc0080958f4 T do_el0_svc
ffffffc00809598c t el0_svc_common
ffffffc008095bfc T do_el0_svc_compat
ffffffc008095c2c T cpu_show_spectre_v1
ffffffc008095c60 T cpu_show_spectre_v2
ffffffc008095d78 T arm64_get_spectre_bhb_state
ffffffc008095d8c T has_spectre_v2
ffffffc008095e88 T arm64_get_spectre_v2_state
ffffffc008095e9c T spectre_v2_enable_mitigation
ffffffc008095fd8 t spectre_v2_enable_fw_mitigation
ffffffc008096148 T has_spectre_v3a
ffffffc0080961e8 T spectre_v3a_enable_mitigation
ffffffc0080962c8 T cpu_show_spec_store_bypass
ffffffc008096364 T arm64_get_spectre_v4_state
ffffffc008096378 T has_spectre_v4
ffffffc00809652c t spectre_v4_mitigations_off
ffffffc0080965a8 T spectre_v4_enable_mitigation
ffffffc008096b0c t ssbs_emulation_handler
ffffffc008096bb8 T spectre_v4_enable_task_mitigation
ffffffc008096c74 T arch_prctl_spec_ctrl_set
ffffffc008096cac t ssbd_prctl_set
ffffffc0080970a8 T arch_prctl_spec_ctrl_get
ffffffc0080971c4 T spectre_bhb_loop_affected
ffffffc00809731c T is_spectre_bhb_affected
ffffffc008097598 T spectre_bhb_enable_mitigation
ffffffc008097bec T unpriv_ebpf_notify
ffffffc008097c44 T __arm64_compat_sys_aarch32_truncate64
ffffffc008097c78 T __arm64_compat_sys_aarch32_sync_file_range2
ffffffc008097cc4 T __arm64_compat_sys_aarch32_statfs64
ffffffc008097d08 T __arm64_compat_sys_aarch32_readahead
ffffffc008097d40 T __arm64_compat_sys_aarch32_pwrite64
ffffffc008097d7c T __arm64_compat_sys_aarch32_pread64
ffffffc008097db8 T __arm64_compat_sys_aarch32_mmap2
ffffffc008097dec T __arm64_compat_sys_aarch32_ftruncate64
ffffffc008097e24 T __arm64_compat_sys_aarch32_fstatfs64
ffffffc008097e68 T __arm64_compat_sys_aarch32_fallocate
ffffffc008097eb4 T __arm64_compat_sys_aarch32_fadvise64_64
ffffffc008097f00 T __arm64_compat_sys_sigreturn
ffffffc008097fa8 t compat_restore_sigframe
ffffffc0080998dc t _copy_from_user.819
ffffffc008099a98 t compat_restore_vfp_context
ffffffc00809a274 T __arm64_compat_sys_rt_sigreturn
ffffffc00809a33c T compat_setup_rt_frame
ffffffc00809a7b8 t compat_setup_sigframe
ffffffc00809c730 t _copy_to_user
ffffffc00809c8b8 t compat_preserve_vfp_context
ffffffc00809d440 T compat_setup_frame
ffffffc00809d6dc T compat_setup_restart_syscall
ffffffc00809d6ec T compat_arm_syscall
ffffffc00809d924 T module_alloc
ffffffc00809dbdc T apply_relocate_add
ffffffc00809e244 t reloc_insn_adrp
ffffffc00809e3c8 T module_finalize
ffffffc00809e45c T get_plt_entry
ffffffc00809e4d8 T plt_entries_equal
ffffffc00809e58c T module_emit_plt_entry
ffffffc00809e76c T module_emit_veneer_for_adrp
ffffffc00809e90c T module_frob_arch_sections
ffffffc00809ee54 t cmp_rela
ffffffc00809eeb0 t count_plts
ffffffc00809f02c T perf_reg_value
ffffffc00809f0d8 T perf_reg_validate
ffffffc00809f0f8 T perf_reg_abi
ffffffc00809f114 T perf_get_regs_user
ffffffc00809f148 T perf_callchain_user
ffffffc00809f2a4 t user_backtrace
ffffffc00809f500 t compat_user_backtrace
ffffffc00809f740 T perf_callchain_kernel
ffffffc00809f878 t callchain_trace
ffffffc00809f8c0 T perf_instruction_pointer
ffffffc00809f9a0 T perf_misc_flags
ffffffc00809fa90 t armv8_pmu_device_probe
ffffffc00809fac0 t armv8_pmuv3_pmu_init
ffffffc00809fbfc t armv8_cortex_a34_pmu_init
ffffffc00809fd38 t armv8_a35_pmu_init
ffffffc00809fe78 t armv8_a53_pmu_init
ffffffc00809ffb8 t armv8_cortex_a55_pmu_init
ffffffc0080a00f4 t armv8_a57_pmu_init
ffffffc0080a0234 t armv8_cortex_a65_pmu_init
ffffffc0080a0370 t armv8_a72_pmu_init
ffffffc0080a04b0 t armv8_a73_pmu_init
ffffffc0080a05f0 t armv8_cortex_a75_pmu_init
ffffffc0080a072c t armv8_cortex_a76_pmu_init
ffffffc0080a0868 t armv8_cortex_a77_pmu_init
ffffffc0080a09a4 t armv8_cortex_a78_pmu_init
ffffffc0080a0ae0 t armv9_cortex_a510_pmu_init
ffffffc0080a0c1c t armv9_cortex_a710_pmu_init
ffffffc0080a0d58 t armv8_cortex_x1_pmu_init
ffffffc0080a0e94 t armv9_cortex_x2_pmu_init
ffffffc0080a0fd0 t armv8_neoverse_e1_pmu_init
ffffffc0080a110c t armv8_neoverse_n1_pmu_init
ffffffc0080a1248 t armv9_neoverse_n2_pmu_init
ffffffc0080a1384 t armv8_neoverse_v1_pmu_init
ffffffc0080a14c0 t armv8_thunder_pmu_init
ffffffc0080a1600 t armv8_vulcan_pmu_init
ffffffc0080a1740 t armv8_nvidia_carmel_pmu_init
ffffffc0080a187c t armv8_nvidia_denver_pmu_init
ffffffc0080a19b8 t armv8_pmuv3_map_event
ffffffc0080a1b24 t __armv8pmu_probe_pmu
ffffffc0080a1ba4 t armv8pmu_handle_irq
ffffffc0080a1e50 t armv8pmu_enable_event
ffffffc0080a2074 t armv8pmu_disable_event
ffffffc0080a21a0 t armv8pmu_read_counter
ffffffc0080a2260 t armv8pmu_write_counter
ffffffc0080a22fc t armv8pmu_get_event_idx
ffffffc0080a2410 t armv8pmu_clear_event_idx
ffffffc0080a24e0 t armv8pmu_start
ffffffc0080a2500 t armv8pmu_stop
ffffffc0080a251c t armv8pmu_reset
ffffffc0080a25d8 t armv8pmu_set_event_filter
ffffffc0080a2654 t armv8pmu_filter_match
ffffffc0080a266c t slots_show
ffffffc0080a26ac t long_show
ffffffc0080a26d8 t event_show
ffffffc0080a2700 t armv8pmu_event_attr_is_visible
ffffffc0080a2758 t armv8pmu_events_sysfs_show
ffffffc0080a2794 t armv8pmu_get_chain_idx
ffffffc0080a28a0 t armv8pmu_write_evcntr
ffffffc0080a2a70 t armv8pmu_read_evcntr
ffffffc0080a2c44 t armv8pmu_write_evtype
ffffffc0080a2e1c t armv8_vulcan_map_event
ffffffc0080a2fb4 t armv8_thunder_map_event
ffffffc0080a314c t armv8_a73_map_event
ffffffc0080a32e4 t armv8_a57_map_event
ffffffc0080a347c t armv8_a53_map_event
ffffffc0080a3614 W arch_perf_update_userpage
ffffffc0080a3714 t write_wb_reg
ffffffc0080a3a68 t watchpoint_handler
ffffffc0080a40bc t read_wb_reg
ffffffc0080a4414 t toggle_bp_registers
ffffffc0080a4558 T reinstall_suspended_bps
ffffffc0080a495c t debug_exception_level
ffffffc0080a49b4 t breakpoint_handler
ffffffc0080a4e28 t hw_breakpoint_reset
ffffffc0080a4f3c t hw_breakpoint_control
ffffffc0080a5194 T hw_breakpoint_slots
ffffffc0080a52b4 T arch_install_hw_breakpoint
ffffffc0080a52dc T arch_uninstall_hw_breakpoint
ffffffc0080a5304 T arch_check_bp_in_kernelspace
ffffffc0080a5410 T arch_bp_generic_fields
ffffffc0080a5518 T hw_breakpoint_arch_parse
ffffffc0080a5850 T hw_breakpoint_thread_switch
ffffffc0080a59e8 T hw_breakpoint_pmu_read
ffffffc0080a59f4 T hw_breakpoint_exceptions_notify
ffffffc0080a5a04 T __cpu_suspend_exit
ffffffc0080a5dd0 t cpu_replace_ttbr1.989
ffffffc0080a6190 T cpu_suspend
ffffffc0080a634c T arm_cpuidle_init
ffffffc0080a63f8 T arm_cpuidle_suspend
ffffffc0080a6498 T arch_jump_label_transform
ffffffc0080a6574 T arch_jump_label_transform_static
ffffffc0080a6580 T efi_poweroff_required
ffffffc0080a6598 T efi_handle_corrupted_x18
ffffffc0080a65f8 T raw_pci_read
ffffffc0080a6738 T raw_pci_write
ffffffc0080a6878 t trace_raw_output_instruction_emulation
ffffffc0080a697c t trace_event_raw_event_instruction_emulation
ffffffc0080a6b48 t perf_trace_instruction_emulation
ffffffc0080a6d20 T __traceiter_instruction_emulation
ffffffc0080a6d88 t __bpf_trace_instruction_emulation
ffffffc0080a6dac t run_all_insn_set_hw_mode
ffffffc0080a6ffc t emulation_proc_handler
ffffffc0080a711c t update_insn_emulation_mode
ffffffc0080a7270 t disable_insn_hw_mode
ffffffc0080a72ec t enable_insn_hw_mode
ffffffc0080a7368 t setend_set_hw_mode
ffffffc0080a73e0 t a32_setend_handler
ffffffc0080a74b0 t t16_setend_handler
ffffffc0080a7580 t compat_setend_handler
ffffffc0080a7760 t cp15_barrier_set_hw_mode
ffffffc0080a779c t cp15barrier_handler
ffffffc0080a7ce4 t swp_handler
ffffffc0080a818c t emulate_swpX
ffffffc0080a8460 t stolen_time_cpu_online
ffffffc0080a855c t stolen_time_cpu_down_prepare
ffffffc0080a8694 t pv_steal_clock
ffffffc0080a8744 T ptrauth_prctl_reset_keys
ffffffc0080a8970 t ptrauth_keys_init_user.1042
ffffffc0080a8aa0 T ptrauth_set_enabled_keys
ffffffc0080a8c38 T ptrauth_get_enabled_keys
ffffffc0080a8c9c t register_mte_tcf_preferred_sysctl
ffffffc0080a8dc0 t mte_tcf_preferred_show
ffffffc0080a8e3c t mte_tcf_preferred_store
ffffffc0080a8ef4 T mte_sync_tags
ffffffc0080a90c0 T memcmp_pages
ffffffc0080a91b8 T mte_enable_kernel_sync
ffffffc0080a9264 T mte_enable_kernel_async
ffffffc0080a92e4 T mte_set_report_once
ffffffc0080a92fc T mte_report_once
ffffffc0080a931c T mte_check_tfsr_el1
ffffffc0080a9358 T mte_thread_init_user
ffffffc0080a93e0 T set_mte_ctrl
ffffffc0080a956c T mte_thread_switch
ffffffc0080a9620 T mte_cpu_setup
ffffffc0080a96b0 T mte_suspend_enter
ffffffc0080a970c T mte_suspend_exit
ffffffc0080a97bc T get_mte_ctrl
ffffffc0080a9814 T mte_ptrace_copy_tags
ffffffc0080a9d68 t __access_remote_tags
ffffffc0080aa0b4 T alloc_insn_page
ffffffc0080aa204 t uprobe_single_step_handler
ffffffc0080aa2a0 t uprobe_breakpoint_handler
ffffffc0080aa30c T arch_uprobe_copy_ixol
ffffffc0080aa484 T uprobe_get_swbp_addr
ffffffc0080aa494 T arch_uprobe_analyze_insn
ffffffc0080aa504 T arch_uprobe_pre_xol
ffffffc0080aa574 T arch_uprobe_post_xol
ffffffc0080aa5e0 T arch_uprobe_xol_was_trapped
ffffffc0080aa5fc T arch_uprobe_skip_sstep
ffffffc0080aa6a4 T arch_uprobe_abort_xol
ffffffc0080aa6f4 T arch_uretprobe_is_alive
ffffffc0080aa71c T arch_uretprobe_hijack_return_addr
ffffffc0080aa734 T arch_uprobe_exception_notify
ffffffc0080aa744 T arch_sync_dma_for_device
ffffffc0080aa778 T arch_sync_dma_for_cpu
ffffffc0080aa7ac T arch_dma_prep_coherent
ffffffc0080aa800 T arch_teardown_dma_ops
ffffffc0080aa810 T arch_setup_dma_ops
ffffffc0080aaa6c T fixup_exception
ffffffc0080aab68 T do_sp_pc_abort
ffffffc0080aacb4 T do_mem_abort
ffffffc0080aae18 t mem_abort_decode
ffffffc0080aaf44 t show_pte
ffffffc0080ab148 t do_bad
ffffffc0080ab2dc t do_sea
ffffffc0080ab530 t do_tag_check_fault
ffffffc0080ab568 t do_alignment_fault
ffffffc0080ab590 t do_bad_area
ffffffc0080ab714 t __do_kernel_fault
ffffffc0080ab9a0 t die_kernel_fault
ffffffc0080aba34 t trace_android_rvh_die_kernel_fault
ffffffc0080abab0 T do_el0_irq_bp_hardening
ffffffc0080abb50 T do_debug_exception
ffffffc0080abd30 t debug_exception_exit
ffffffc0080abd54 t debug_exception_enter
ffffffc0080abd78 t cortex_a76_erratum_1463225_debug_handler
ffffffc0080abdc0 T ptep_set_access_flags
ffffffc0080abecc T alloc_zeroed_user_highpage_movable
ffffffc0080abf14 T tag_clear_highpage
ffffffc0080abfb8 T pfn_valid
ffffffc0080ac0b0 T free_initmem
ffffffc0080ac19c T dump_mem_limit
ffffffc0080ac1ec T copy_highpage
ffffffc0080ac304 T copy_user_highpage
ffffffc0080ac36c T flush_dcache_page
ffffffc0080ac3bc T sync_icache_aliases
ffffffc0080ac420 T copy_to_user_page
ffffffc0080ac4c4 T __sync_icache_dcache
ffffffc0080ac5d0 T iounmap
ffffffc0080ac638 T ioremap_cache
ffffffc0080ac790 t __ioremap_caller
ffffffc0080ac964 T __ioremap
ffffffc0080ac9b4 T arch_memremap_can_ram_remap
ffffffc0080aca44 T valid_phys_addr_range
ffffffc0080acb34 T valid_mmap_phys_addr_range
ffffffc0080acb50 T pgd_alloc
ffffffc0080acbb8 T pgd_free
ffffffc0080acc08 t prevent_bootmem_remove_notifier
ffffffc0080acc88 t __pgd_pgtable_alloc
ffffffc0080acd44 t __create_pgd_mapping
ffffffc0080ad7d4 T __set_fixmap
ffffffc0080ad8ec T pud_set_huge
ffffffc0080adbb0 t pgd_pgtable_alloc
ffffffc0080add18 T set_swapper_pgd
ffffffc0080adf30 T phys_mem_access_prot
ffffffc0080ae058 T mark_rodata_ro
ffffffc0080ae19c t cpu_replace_ttbr1.1277
ffffffc0080ae55c T kern_addr_valid
ffffffc0080ae870 T pmd_set_huge
ffffffc0080ae90c T vmemmap_free
ffffffc0080aea64 t unmap_hotplug_pud_range
ffffffc0080aee10 t free_empty_pmd_table
ffffffc0080af208 t free_empty_pte_table
ffffffc0080af390 t unmap_hotplug_pmd_range
ffffffc0080af568 t unmap_hotplug_pte_range
ffffffc0080af708 T pud_clear_huge
ffffffc0080af97c T pmd_clear_huge
ffffffc0080af9c8 T pmd_free_pte_page
ffffffc0080afa8c T pud_free_pmd_page
ffffffc0080afe7c T p4d_free_pud_page
ffffffc0080afe8c T arch_add_memory
ffffffc0080b002c t __remove_pgd_mapping
ffffffc0080b01a8 T arch_remove_memory
ffffffc0080b0200 T check_range_driver_managed
ffffffc0080b03a4 T populate_range_driver_managed
ffffffc0080b0448 T depopulate_range_driver_managed
ffffffc0080b04fc t asids_update_limit
ffffffc0080b061c T verify_cpu_asid_bits
ffffffc0080b06c8 T check_and_switch_context
ffffffc0080b0b8c t new_context
ffffffc0080b106c t set_reserved_asid_bits
ffffffc0080b1180 T arm64_mm_context_get
ffffffc0080b14d4 T arm64_mm_context_put
ffffffc0080b1750 T post_ttbr_update_workaround
ffffffc0080b1774 T cpu_do_switch_mm
ffffffc0080b17fc T set_memory_ro
ffffffc0080b1828 t change_memory_common
ffffffc0080b1a84 t change_page_range
ffffffc0080b1ad4 T set_memory_rw
ffffffc0080b1b00 T set_memory_nx
ffffffc0080b1b50 T set_memory_x
ffffffc0080b1ba0 T set_memory_valid
ffffffc0080b1d38 T set_direct_map_invalid_noflush
ffffffc0080b1dfc T set_direct_map_default_noflush
ffffffc0080b1ec0 T __kernel_map_pages
ffffffc0080b1f20 T kernel_page_present
ffffffc0080b1ffc T mte_allocate_tag_storage
ffffffc0080b2030 T mte_free_tag_storage
ffffffc0080b2054 T mte_save_tags
ffffffc0080b2148 T mte_restore_tags
ffffffc0080b21e8 T mte_invalidate_tags
ffffffc0080b221c T mte_invalidate_tags_area
ffffffc0080b24c4 T arm64_noalias_setup_dma_ops
ffffffc0080b2584 t arm64_iommu_alloc
ffffffc0080b282c t arm64_iommu_free
ffffffc0080b29ec t arm64_iommu_map_page
ffffffc0080b2d30 t arm64_iommu_unmap_page
ffffffc0080b2f48 t arm64_iommu_map_sg
ffffffc0080b339c t arm64_iommu_unmap_sg
ffffffc0080b3648 t arm64_iommu_sync_single_for_cpu
ffffffc0080b3798 t arm64_iommu_sync_single_for_device
ffffffc0080b38e8 t arm64_iommu_sync_sg_for_cpu
ffffffc0080b3ae0 t arm64_iommu_sync_sg_for_device
ffffffc0080b3cd0 t pte_clear_nc
ffffffc0080b3dd4 t set_nc
ffffffc0080b3f64 t pte_set_nc
ffffffc0080b4070 t arm64_noalias_alloc
ffffffc0080b41c4 t arm64_noalias_free
ffffffc0080b4278 t arm64_noalias_map_page
ffffffc0080b4548 t arm64_noalias_unmap_page
ffffffc0080b4680 t arm64_noalias_map_sg
ffffffc0080b4890 t arm64_noalias_unmap_sg
ffffffc0080b4a20 t arm64_noalias_sync_single_for_cpu
ffffffc0080b4b2c t arm64_noalias_sync_single_for_device
ffffffc0080b4c38 t arm64_noalias_sync_sg_for_cpu
ffffffc0080b4dbc t arm64_noalias_sync_sg_for_device
ffffffc0080b4f40 T arm64_bpf_fixup_exception
ffffffc0080b4f74 T bpf_int_jit_compile
ffffffc0080b5734 t build_prologue
ffffffc0080b5990 t build_body
ffffffc0080b7698 t build_epilogue
ffffffc0080b7820 t jit_fill_hole
ffffffc0080b7888 t emit_a64_mov_i
ffffffc0080b7aac T bpf_jit_alloc_exec_limit
ffffffc0080b7ac0 T bpf_jit_alloc_exec
ffffffc0080b7b1c T bpf_jit_free_exec
ffffffc0080b7b40 t trace_raw_output_kvm_vcpu_wakeup
ffffffc0080b7c74 t trace_raw_output_kvm_userspace_exit
ffffffc0080b7db8 t trace_raw_output_kvm_set_irq
ffffffc0080b7eb8 t trace_raw_output_kvm_mmio
ffffffc0080b7fd0 t trace_raw_output_kvm_halt_poll_ns
ffffffc0080b80ec t trace_raw_output_kvm_fpu
ffffffc0080b81fc t trace_raw_output_kvm_age_page
ffffffc0080b8318 t trace_raw_output_kvm_ack_irq
ffffffc0080b8414 t trace_event_raw_event_kvm_vcpu_wakeup
ffffffc0080b85b8 t perf_trace_kvm_vcpu_wakeup
ffffffc0080b878c t trace_event_raw_event_kvm_userspace_exit
ffffffc0080b891c t perf_trace_kvm_userspace_exit
ffffffc0080b8ae0 t trace_event_raw_event_kvm_set_irq
ffffffc0080b8c78 t perf_trace_kvm_set_irq
ffffffc0080b8e40 t trace_event_raw_event_kvm_mmio
ffffffc0080b9000 t perf_trace_kvm_mmio
ffffffc0080b91e8 t trace_event_raw_event_kvm_halt_poll_ns
ffffffc0080b9394 t perf_trace_kvm_halt_poll_ns
ffffffc0080b9564 t trace_event_raw_event_kvm_fpu
ffffffc0080b96e8 t perf_trace_kvm_fpu
ffffffc0080b98ac t trace_event_raw_event_kvm_age_page
ffffffc0080b9a68 t perf_trace_kvm_age_page
ffffffc0080b9c48 t trace_event_raw_event_kvm_ack_irq
ffffffc0080b9dd8 t perf_trace_kvm_ack_irq
ffffffc0080b9f9c T __traceiter_kvm_vcpu_wakeup
ffffffc0080ba00c T __traceiter_kvm_userspace_exit
ffffffc0080ba074 T __traceiter_kvm_set_irq
ffffffc0080ba0e4 T __traceiter_kvm_mmio