444b10dbb915fd6b0a7768334deeee82f8dd9115
[mesa.git] / src / libre-soc / vulkan / libresoc_debug.h
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 LIBRESOC_DEBUG_H
25 #define LIBRESOC_DEBUG_H
26
27 #include "libresoc_private.h"
28
29 /* Please keep docs/envvars.rst up-to-date when you add/remove options. */
30 enum {
31 LIBRESOC_DEBUG_NO_FAST_CLEARS = 1 << 0,
32 LIBRESOC_DEBUG_NO_DCC = 1 << 1,
33 LIBRESOC_DEBUG_DUMP_SHADERS = 1 << 2,
34 LIBRESOC_DEBUG_NO_CACHE = 1 << 3,
35 LIBRESOC_DEBUG_DUMP_SHADER_STATS = 1 << 4,
36 LIBRESOC_DEBUG_NO_HIZ = 1 << 5,
37 LIBRESOC_DEBUG_NO_COMPUTE_QUEUE = 1 << 6,
38 LIBRESOC_DEBUG_ALL_BOS = 1 << 7,
39 LIBRESOC_DEBUG_NO_IBS = 1 << 8,
40 LIBRESOC_DEBUG_DUMP_SPIRV = 1 << 9,
41 LIBRESOC_DEBUG_VM_FAULTS = 1 << 10,
42 LIBRESOC_DEBUG_ZERO_VRAM = 1 << 11,
43 LIBRESOC_DEBUG_SYNC_SHADERS = 1 << 12,
44 LIBRESOC_DEBUG_PREOPTIR = 1 << 13,
45 LIBRESOC_DEBUG_NO_DYNAMIC_BOUNDS = 1 << 14,
46 LIBRESOC_DEBUG_NO_OUT_OF_ORDER = 1 << 15,
47 LIBRESOC_DEBUG_INFO = 1 << 16,
48 LIBRESOC_DEBUG_ERRORS = 1 << 17,
49 LIBRESOC_DEBUG_STARTUP = 1 << 18,
50 LIBRESOC_DEBUG_CHECKIR = 1 << 19,
51 LIBRESOC_DEBUG_NOTHREADLLVM = 1 << 20,
52 LIBRESOC_DEBUG_NOBINNING = 1 << 21,
53 LIBRESOC_DEBUG_NO_NGG = 1 << 22,
54 LIBRESOC_DEBUG_ALL_ENTRYPOINTS = 1 << 23,
55 LIBRESOC_DEBUG_DUMP_META_SHADERS = 1 << 24,
56 LIBRESOC_DEBUG_NO_MEMORY_CACHE = 1 << 25,
57 LIBRESOC_DEBUG_DISCARD_TO_DEMOTE = 1 << 26,
58 LIBRESOC_DEBUG_LLVM = 1 << 27,
59 LIBRESOC_DEBUG_FORCE_COMPRESS = 1 << 28,
60 };
61
62 enum {
63 LIBRESOC_PERFTEST_LOCAL_BOS = 1 << 0,
64 LIBRESOC_PERFTEST_DCC_MSAA = 1 << 1,
65 LIBRESOC_PERFTEST_BO_LIST = 1 << 2,
66 LIBRESOC_PERFTEST_TC_COMPAT_CMASK = 1 << 3,
67 LIBRESOC_PERFTEST_CS_WAVE_32 = 1 << 4,
68 LIBRESOC_PERFTEST_PS_WAVE_32 = 1 << 5,
69 LIBRESOC_PERFTEST_GE_WAVE_32 = 1 << 6,
70 LIBRESOC_PERFTEST_DFSM = 1 << 7,
71 };
72
73 bool
74 libresoc_init_trace(struct libresoc_device *device);
75
76 void
77 libresoc_print_spirv(const char *data, uint32_t size, FILE *fp);
78
79 void
80 libresoc_dump_enabled_options(struct libresoc_device *device, FILE *f);
81
82 #endif