1 #!/bin/bash 2 3 # The following symbols (past the first five) are taken from the public headers. 4 # A list of the latter should be available Makefile.am/libdrm_amdgpuinclude_HEADERS 5 6 FUNCS=$($NM -D --format=bsd --defined-only ${1-.libs/libdrm_amdgpu.so} | awk '{print $3}' | while read func; do 7 ( grep -q "^$func$" || echo $func ) <<EOF 8 __bss_start 9 _edata 10 _end 11 _fini 12 _init 13 amdgpu_bo_alloc 14 amdgpu_bo_cpu_map 15 amdgpu_bo_cpu_unmap 16 amdgpu_bo_export 17 amdgpu_bo_free 18 amdgpu_bo_import 19 amdgpu_bo_list_create 20 amdgpu_bo_list_destroy 21 amdgpu_bo_list_update 22 amdgpu_bo_query_info 23 amdgpu_bo_set_metadata 24 amdgpu_bo_va_op 25 amdgpu_bo_va_op_raw 26 amdgpu_bo_wait_for_idle 27 amdgpu_create_bo_from_user_mem 28 amdgpu_cs_chunk_fence_info_to_data 29 amdgpu_cs_chunk_fence_to_dep 30 amdgpu_cs_create_semaphore 31 amdgpu_cs_create_syncobj 32 amdgpu_cs_create_syncobj2 33 amdgpu_cs_ctx_create 34 amdgpu_cs_ctx_create2 35 amdgpu_cs_ctx_free 36 amdgpu_cs_destroy_semaphore 37 amdgpu_cs_destroy_syncobj 38 amdgpu_cs_export_syncobj 39 amdgpu_cs_fence_to_handle 40 amdgpu_cs_import_syncobj 41 amdgpu_cs_query_fence_status 42 amdgpu_cs_query_reset_state 43 amdgpu_query_sw_info 44 amdgpu_cs_signal_semaphore 45 amdgpu_cs_submit 46 amdgpu_cs_submit_raw 47 amdgpu_cs_syncobj_export_sync_file 48 amdgpu_cs_syncobj_import_sync_file 49 amdgpu_cs_syncobj_reset 50 amdgpu_cs_syncobj_signal 51 amdgpu_cs_syncobj_wait 52 amdgpu_cs_wait_fences 53 amdgpu_cs_wait_semaphore 54 amdgpu_device_deinitialize 55 amdgpu_device_initialize 56 amdgpu_get_marketing_name 57 amdgpu_query_buffer_size_alignment 58 amdgpu_query_crtc_from_id 59 amdgpu_query_firmware_version 60 amdgpu_query_gds_info 61 amdgpu_query_gpu_info 62 amdgpu_query_heap_info 63 amdgpu_query_hw_ip_count 64 amdgpu_query_hw_ip_info 65 amdgpu_query_info 66 amdgpu_query_sensor_info 67 amdgpu_read_mm_registers 68 amdgpu_va_range_alloc 69 amdgpu_va_range_free 70 amdgpu_va_range_query 71 amdgpu_vm_reserve_vmid 72 amdgpu_vm_unreserve_vmid 73 EOF 74 done) 75 76 test ! -n "$FUNCS" || echo $FUNCS 77 test ! -n "$FUNCS" 78