blob: 81ef9b4e7f1b80a7460594d389eb3cb9bbdee219 [file] [log] [blame]
Emil Velikov15350562015-08-07 17:29:11 +01001#!/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
6FUNCS=$(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
13amdgpu_bo_alloc
14amdgpu_bo_cpu_map
15amdgpu_bo_cpu_unmap
16amdgpu_bo_export
17amdgpu_bo_free
18amdgpu_bo_import
19amdgpu_bo_list_create
20amdgpu_bo_list_destroy
21amdgpu_bo_list_update
22amdgpu_bo_query_info
23amdgpu_bo_set_metadata
24amdgpu_bo_va_op
Emil Velikovf5995752017-04-03 17:40:59 +010025amdgpu_bo_va_op_raw
Emil Velikov15350562015-08-07 17:29:11 +010026amdgpu_bo_wait_for_idle
27amdgpu_create_bo_from_user_mem
Michel Dänzer25712f12016-01-20 15:59:08 +090028amdgpu_cs_create_semaphore
Emil Velikov15350562015-08-07 17:29:11 +010029amdgpu_cs_ctx_create
30amdgpu_cs_ctx_free
Michel Dänzer25712f12016-01-20 15:59:08 +090031amdgpu_cs_destroy_semaphore
Emil Velikov15350562015-08-07 17:29:11 +010032amdgpu_cs_query_fence_status
33amdgpu_cs_query_reset_state
Michel Dänzer25712f12016-01-20 15:59:08 +090034amdgpu_cs_signal_semaphore
Emil Velikov15350562015-08-07 17:29:11 +010035amdgpu_cs_submit
Nicolai Hähnled8d45a42017-04-13 16:43:14 +020036amdgpu_cs_wait_fences
Michel Dänzer25712f12016-01-20 15:59:08 +090037amdgpu_cs_wait_semaphore
Emil Velikov15350562015-08-07 17:29:11 +010038amdgpu_device_deinitialize
39amdgpu_device_initialize
Junwei Zhang670f1e42016-09-12 11:14:11 -040040amdgpu_get_marketing_name
Emil Velikov15350562015-08-07 17:29:11 +010041amdgpu_query_buffer_size_alignment
42amdgpu_query_crtc_from_id
43amdgpu_query_firmware_version
44amdgpu_query_gds_info
45amdgpu_query_gpu_info
46amdgpu_query_heap_info
47amdgpu_query_hw_ip_count
48amdgpu_query_hw_ip_info
49amdgpu_query_info
Samuel Pitoiset047aba12017-04-04 16:34:56 +020050amdgpu_query_sensor_info
Emil Velikov15350562015-08-07 17:29:11 +010051amdgpu_read_mm_registers
52amdgpu_va_range_alloc
53amdgpu_va_range_free
54amdgpu_va_range_query
55EOF
56done)
57
58test ! -n "$FUNCS" || echo $FUNCS
59test ! -n "$FUNCS"