• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2017 Google.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  */
23 
24 #ifndef RADV_DEBUG_H
25 #define RADV_DEBUG_H
26 
27 #include "radv_private.h"
28 
29 /* Please keep docs/envvars.rst up-to-date when you add/remove options. */
30 enum {
31 	RADV_DEBUG_NO_FAST_CLEARS    = 1u << 0,
32 	RADV_DEBUG_NO_DCC            = 1u << 1,
33 	RADV_DEBUG_DUMP_SHADERS      = 1u << 2,
34 	RADV_DEBUG_NO_CACHE          = 1u << 3,
35 	RADV_DEBUG_DUMP_SHADER_STATS = 1u << 4,
36 	RADV_DEBUG_NO_HIZ            = 1u << 5,
37 	RADV_DEBUG_NO_COMPUTE_QUEUE  = 1u << 6,
38 	RADV_DEBUG_ALL_BOS           = 1u << 7,
39 	RADV_DEBUG_NO_IBS            = 1u << 8,
40 	RADV_DEBUG_DUMP_SPIRV        = 1u << 9,
41 	RADV_DEBUG_VM_FAULTS         = 1u << 10,
42 	RADV_DEBUG_ZERO_VRAM         = 1u << 11,
43 	RADV_DEBUG_SYNC_SHADERS      = 1u << 12,
44 	RADV_DEBUG_PREOPTIR          = 1u << 13,
45 	RADV_DEBUG_NO_DYNAMIC_BOUNDS = 1u << 14,
46 	RADV_DEBUG_NO_OUT_OF_ORDER   = 1u << 15,
47 	RADV_DEBUG_INFO              = 1u << 16,
48 	RADV_DEBUG_ERRORS            = 1u << 17,
49 	RADV_DEBUG_STARTUP           = 1u << 18,
50 	RADV_DEBUG_CHECKIR           = 1u << 19,
51 	RADV_DEBUG_NOTHREADLLVM      = 1u << 20,
52 	RADV_DEBUG_NOBINNING         = 1u << 21,
53 	RADV_DEBUG_NO_NGG            = 1u << 22,
54 	RADV_DEBUG_ALL_ENTRYPOINTS   = 1u << 23,
55 	RADV_DEBUG_DUMP_META_SHADERS = 1u << 24,
56 	RADV_DEBUG_NO_MEMORY_CACHE   = 1u << 25,
57 	RADV_DEBUG_DISCARD_TO_DEMOTE = 1u << 26,
58 	RADV_DEBUG_LLVM              = 1u << 27,
59 	RADV_DEBUG_FORCE_COMPRESS    = 1u << 28,
60 	RADV_DEBUG_HANG              = 1u << 29,
61 	RADV_DEBUG_INVARIANT_GEOM    = 1ull << 32,
62 };
63 
64 enum {
65 	RADV_PERFTEST_LOCAL_BOS       = 1 << 0,
66 	RADV_PERFTEST_DCC_MSAA        = 1 << 1,
67 	RADV_PERFTEST_BO_LIST         = 1 << 2,
68 	RADV_PERFTEST_TC_COMPAT_CMASK = 1 << 3,
69 	RADV_PERFTEST_CS_WAVE_32      = 1 << 4,
70 	RADV_PERFTEST_PS_WAVE_32      = 1 << 5,
71 	RADV_PERFTEST_GE_WAVE_32      = 1 << 6,
72 	RADV_PERFTEST_DFSM            = 1 << 7,
73 };
74 
75 bool
76 radv_init_trace(struct radv_device *device);
77 
78 void
79 radv_check_gpu_hangs(struct radv_queue *queue, struct radeon_cmdbuf *cs);
80 
81 void
82 radv_print_spirv(const char *data, uint32_t size, FILE *fp);
83 
84 void
85 radv_dump_enabled_options(struct radv_device *device, FILE *f);
86 
87 bool radv_trap_handler_init(struct radv_device *device);
88 void radv_trap_handler_finish(struct radv_device *device);
89 void radv_check_trap_handler(struct radv_queue *queue);
90 
91 #endif
92