Home
last modified time | relevance | path

Searched refs:debug_flags (Results 1 – 25 of 61) sorted by relevance

123

/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_pipe.c211 (sscreen->debug_flags & DBG(SI_SCHED) ? AC_TM_SISCHED : 0) | in si_create_llvm_target_machine()
326 if (sscreen->debug_flags & DBG(FORCE_DMA)) in si_create_context()
442 if (sscreen->debug_flags & DBG(CHECK_VM)) in si_pipe_create_context()
456 if (sscreen->debug_flags & DBG_ALL_SHADERS) in si_pipe_create_context()
604 if (sscreen->debug_flags & DBG(TEST_VMFAULT_CP)) { in si_test_vmfault()
609 if (sscreen->debug_flags & DBG(TEST_VMFAULT_SDMA)) { in si_test_vmfault()
614 if (sscreen->debug_flags & DBG(TEST_VMFAULT_SHADER)) { in si_test_vmfault()
624 if (sscreen->debug_flags & DBG_ALL_SHADERS) in si_disk_cache_create()
628 if (sscreen->debug_flags & DBG(NIR)) in si_disk_cache_create()
647 sscreen->debug_flags & in si_disk_cache_create()
[all …]
Dsi_hw_context.c85 if (ctx->screen->debug_flags & DBG(CHECK_VM)) in si_context_gfx_flush()
139 if (ctx->screen->debug_flags & DBG(CHECK_VM)) { in si_context_gfx_flush()
Dsi_pipe.h102 uint64_t debug_flags; member
823 return sscreen->debug_flags & (1 << processor); in si_can_dump_shader()
829 return (sscreen->debug_flags & DBG(CHECK_IR)) || in si_extra_shader_checks()
Dsi_clear.c409 !(sctx->screen->debug_flags & DBG(NO_DCC_FB))) { in si_do_fast_color_clear()
439 if (sctx->screen->debug_flags & DBG(NO_DCC_CLEAR)) in si_do_fast_color_clear()
Dsi_shader_tgsi_setup.c1023 bool unsafe_fpmath = (sscreen->debug_flags & DBG(UNSAFE_MATH)) != 0; in si_llvm_context_init()
1226 if (ctx->screen->debug_flags & DBG(PREOPT_IR) && in si_llvm_optimize_module()
Dsi_get.c449 if (sscreen->debug_flags & DBG(NIR)) in si_get_shader_param()
/external/mesa3d/src/amd/vulkan/winsys/amdgpu/
Dradv_amdgpu_winsys.c156 radv_amdgpu_winsys_create(int fd, uint64_t debug_flags, uint64_t perftest_flags) in radv_amdgpu_winsys_create() argument
176 ws->debug_all_bos = !!(debug_flags & RADV_DEBUG_ALL_BOS); in radv_amdgpu_winsys_create()
177 if (debug_flags & RADV_DEBUG_NO_IBS) in radv_amdgpu_winsys_create()
181 ws->zero_all_vram_allocs = debug_flags & RADV_DEBUG_ZERO_VRAM; in radv_amdgpu_winsys_create()
Dradv_amdgpu_winsys_public.h32 struct radeon_winsys *radv_amdgpu_winsys_create(int fd, uint64_t debug_flags,
/external/toolchain-utils/
Dbuild_tc.py306 debug_flags = '-g3 -O0'
308 build_env['CFLAGS'] += ' %s' % (debug_flags)
310 build_env['CFLAGS'] = debug_flags
312 build_env['CXXFLAGS'] += ' %s' % (debug_flags)
314 build_env['CXXFLAGS'] = debug_flags
/external/mesa3d/src/gallium/drivers/r600/
Dr600_pipe.c214 if (rscreen->b.debug_flags & DBG_FORCE_DMA) in r600_create_context()
700 rscreen->b.debug_flags |= debug_get_flags_option("R600_DEBUG", r600_debug_options, 0); in r600_screen_create()
702 rscreen->b.debug_flags |= DBG_COMPUTE; in r600_screen_create()
704 rscreen->b.debug_flags |= DBG_ALL_SHADERS | DBG_FS; in r600_screen_create()
706 rscreen->b.debug_flags |= DBG_NO_HYPERZ; in r600_screen_create()
756 !(rscreen->b.debug_flags & DBG_NO_CP_DMA); in r600_screen_create()
802 if (rscreen->b.debug_flags & DBG_TEST_DMA) in r600_screen_create()
Dr600_pipe_common.c469 (rctx->screen->debug_flags & DBG_CHECK_VM) && in r600_flush_dma_ring()
712 if (rscreen->info.num_sdma_rings && !(rscreen->debug_flags & DBG_NO_ASYNC_DMA)) { in r600_common_context_init()
851 if (rscreen->debug_flags & DBG_ALL_SHADERS) in r600_disk_cache_create()
864 rscreen->debug_flags & in r600_disk_cache_create()
1326 rscreen->debug_flags |= debug_get_flags_option("R600_DEBUG", common_debug_options, 0); in r600_common_screen_init()
1342 if (rscreen->debug_flags & DBG_INFO) { in r600_common_screen_init()
1414 return rscreen->debug_flags & (1 << processor); in r600_can_dump_shader()
1419 return (rscreen->debug_flags & DBG_CHECK_IR) || in r600_extra_shader_checks()
Dr600_buffer_common.c179 if (rscreen->debug_flags & DBG_NO_WC) in r600_init_resource_fields()
225 if (rscreen->debug_flags & DBG_VM && res->b.b.target == PIPE_BUFFER) { in r600_alloc_resource()
409 !(rscreen->debug_flags & DBG_NO_DISCARD_RANGE) && in r600_buffer_transfer_map()
Dr600_pipe_common.h345 uint64_t debug_flags; member
921 if ((rscreen->b.debug_flags & DBG_COMPUTE)) fprintf(stderr, fmt, ##args); \
Dr600_texture.c934 if (!(rscreen->debug_flags & DBG_NO_HYPERZ)) in r600_texture_create_object()
995 if (rscreen->debug_flags & DBG_VM) { in r600_texture_create_object()
1003 if (rscreen->debug_flags & DBG_TEX) { in r600_texture_create_object()
1046 if (rscreen->debug_flags & DBG_NO_TILING) in r600_choose_tiling()
1069 (rscreen->debug_flags & DBG_NO_2D_TILING)) in r600_choose_tiling()
/external/mesa3d/src/amd/vulkan/
Dradv_shader.h125 return device->instance->debug_flags & RADV_DEBUG_DUMP_SHADERS && in radv_can_dump_shader()
Dradv_shader.c219 if (device->instance->debug_flags & RADV_DEBUG_DUMP_SPIRV) in radv_shader_compile_to_nir()
486 device->instance->debug_flags & RADV_DEBUG_PREOPTIR; in shader_variant_create()
549 options.unsafe_math = !!(device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH); in radv_shader_variant_create()
Dradv_pipeline_cache.c68 (device->instance->debug_flags & RADV_DEBUG_NO_CACHE) || in radv_pipeline_cache_init()
263 (device->instance->debug_flags & RADV_DEBUG_NO_CACHE) || in radv_create_shader_variants_from_pipeline_cache()
Dradv_debug.c603 mask = device->instance->debug_flags; in radv_dump_enabled_options()
669 if (queue->device->instance->debug_flags & RADV_DEBUG_VM_FAULTS) in radv_check_gpu_hangs()
Dradv_device.c221 device->ws = radv_amdgpu_winsys_create(fd, instance->debug_flags, in radv_physical_device_init()
243 (device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH ? 0x2 : 0); in radv_physical_device_init()
443 instance->debug_flags = parse_debug_string(getenv("RADV_DEBUG"), in radv_CreateInstance()
451 if (instance->debug_flags & RADV_DEBUG_NO_SISCHED) { in radv_CreateInstance()
830 !(pdevice->instance->debug_flags & RADV_DEBUG_NO_COMPUTE_QUEUE)) in radv_get_physical_device_queue_family_properties()
857 !(pdevice->instance->debug_flags & RADV_DEBUG_NO_COMPUTE_QUEUE)) { in radv_get_physical_device_queue_family_properties()
3232 !(device->instance->debug_flags & RADV_DEBUG_NO_FAST_CLEARS)) in radv_initialise_color_surface()
Dradv_image.c158 create_info->scanout || (device->instance->debug_flags & RADV_DEBUG_NO_DCC) || in radv_init_surface()
945 !(device->instance->debug_flags & RADV_DEBUG_NO_HIZ)) { in radv_image_create()
/external/mesa3d/src/gallium/drivers/radeon/
Dr600_pipe_common.c250 (rctx->screen->debug_flags & DBG(CHECK_VM)) && in r600_flush_dma_ring()
469 if (sscreen->info.num_sdma_rings && !(sscreen->debug_flags & DBG(NO_ASYNC_DMA))) { in si_common_context_init()
Dr600_texture.c1262 if (!(sscreen->debug_flags & DBG(NO_HYPERZ))) in r600_texture_create_object()
1283 (buf || !(sscreen->debug_flags & DBG(NO_DCC))) && in r600_texture_create_object()
1342 if (sscreen->debug_flags & DBG(VM)) { in r600_texture_create_object()
1350 if (sscreen->debug_flags & DBG(TEX)) { in r600_texture_create_object()
1394 if (sscreen->debug_flags & DBG(NO_TILING)) in r600_choose_tiling()
1425 (sscreen->debug_flags & DBG(NO_2D_TILING))) in r600_choose_tiling()
1441 !(sscreen->debug_flags & DBG(NO_HYPERZ)) && in si_texture_create()
Dr600_buffer_common.c174 if (sscreen->debug_flags & DBG(NO_WC)) in si_init_resource_fields()
229 if (sscreen->debug_flags & DBG(VM) && res->b.b.target == PIPE_BUFFER) { in si_alloc_resource()
/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_core.cpp58 unsigned df = rctx->screen->b.debug_flags; in r600_sb_context_create()
/external/e2fsprogs/debian/
Drules12 clean checkroot mrproper debug_flags debian-files
502 debug_flags: target

123