mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 06:48:09 +02:00
Cc: mesa-stable Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Nanley Chery <nanley.g.chery@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29764>
208 lines
6.3 KiB
C
208 lines
6.3 KiB
C
/*
|
|
* Copyright © 2015 Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <assert.h>
|
|
|
|
#include "anv_private.h"
|
|
#include "vk_enum_to_str.h"
|
|
|
|
void
|
|
__anv_perf_warn(struct anv_device *device,
|
|
const struct vk_object_base *object,
|
|
const char *file, int line, const char *format, ...)
|
|
{
|
|
va_list ap;
|
|
char buffer[256];
|
|
|
|
va_start(ap, format);
|
|
vsnprintf(buffer, sizeof(buffer), format, ap);
|
|
va_end(ap);
|
|
|
|
if (object) {
|
|
__vk_log(VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT,
|
|
VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT,
|
|
VK_LOG_OBJS(object), file, line,
|
|
"PERF: %s", buffer);
|
|
} else {
|
|
__vk_log(VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT,
|
|
VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT,
|
|
VK_LOG_NO_OBJS(device->physical->instance), file, line,
|
|
"PERF: %s", buffer);
|
|
}
|
|
}
|
|
|
|
void
|
|
anv_dump_pipe_bits(enum anv_pipe_bits bits, FILE *f)
|
|
{
|
|
if (bits & ANV_PIPE_DEPTH_CACHE_FLUSH_BIT)
|
|
fputs("+depth_flush ", f);
|
|
if (bits & ANV_PIPE_DATA_CACHE_FLUSH_BIT)
|
|
fputs("+dc_flush ", f);
|
|
if (bits & ANV_PIPE_HDC_PIPELINE_FLUSH_BIT)
|
|
fputs("+hdc_flush ", f);
|
|
if (bits & ANV_PIPE_RENDER_TARGET_CACHE_FLUSH_BIT)
|
|
fputs("+rt_flush ", f);
|
|
if (bits & ANV_PIPE_TILE_CACHE_FLUSH_BIT)
|
|
fputs("+tile_flush ", f);
|
|
if (bits & ANV_PIPE_L3_FABRIC_FLUSH_BIT)
|
|
fputs("+l3_fabric_flush ", f);
|
|
if (bits & ANV_PIPE_STATE_CACHE_INVALIDATE_BIT)
|
|
fputs("+state_inval ", f);
|
|
if (bits & ANV_PIPE_CONSTANT_CACHE_INVALIDATE_BIT)
|
|
fputs("+const_inval ", f);
|
|
if (bits & ANV_PIPE_VF_CACHE_INVALIDATE_BIT)
|
|
fputs("+vf_inval ", f);
|
|
if (bits & ANV_PIPE_TEXTURE_CACHE_INVALIDATE_BIT)
|
|
fputs("+tex_inval ", f);
|
|
if (bits & ANV_PIPE_INSTRUCTION_CACHE_INVALIDATE_BIT)
|
|
fputs("+ic_inval ", f);
|
|
if (bits & ANV_PIPE_STALL_AT_SCOREBOARD_BIT)
|
|
fputs("+pb_stall ", f);
|
|
if (bits & ANV_PIPE_PSS_STALL_SYNC_BIT)
|
|
fputs("+pss_stall ", f);
|
|
if (bits & ANV_PIPE_DEPTH_STALL_BIT)
|
|
fputs("+depth_stall ", f);
|
|
if (bits & ANV_PIPE_CS_STALL_BIT ||
|
|
bits & ANV_PIPE_END_OF_PIPE_SYNC_BIT)
|
|
fputs("+cs_stall ", f);
|
|
if (bits & ANV_PIPE_UNTYPED_DATAPORT_CACHE_FLUSH_BIT)
|
|
fputs("+utdp_flush ", f);
|
|
if (bits & ANV_PIPE_CCS_CACHE_FLUSH_BIT)
|
|
fputs("+ccs_flush ", f);
|
|
}
|
|
|
|
const char *
|
|
anv_gfx_state_bit_to_str(enum anv_gfx_state_bits state)
|
|
{
|
|
#define NAME(name) case ANV_GFX_STATE_##name: return #name;
|
|
switch (state) {
|
|
NAME(URB);
|
|
NAME(VF_STATISTICS);
|
|
NAME(VF_SGVS);
|
|
NAME(VF_SGVS_2);
|
|
NAME(VF_SGVS_INSTANCING);
|
|
NAME(PRIMITIVE_REPLICATION);
|
|
NAME(MULTISAMPLE);
|
|
NAME(SBE);
|
|
NAME(SBE_SWIZ);
|
|
NAME(SO_DECL_LIST);
|
|
NAME(VS);
|
|
NAME(HS);
|
|
NAME(DS);
|
|
NAME(GS);
|
|
NAME(PS);
|
|
NAME(PS_EXTRA);
|
|
NAME(SBE_MESH);
|
|
NAME(CLIP_MESH);
|
|
NAME(MESH_CONTROL);
|
|
NAME(MESH_SHADER);
|
|
NAME(MESH_DISTRIB);
|
|
NAME(TASK_CONTROL);
|
|
NAME(TASK_SHADER);
|
|
NAME(TASK_REDISTRIB);
|
|
NAME(BLEND_STATE_PTR);
|
|
NAME(CLIP);
|
|
NAME(CC_STATE);
|
|
NAME(CC_STATE_PTR);
|
|
NAME(CPS);
|
|
NAME(DEPTH_BOUNDS);
|
|
NAME(INDEX_BUFFER);
|
|
NAME(LINE_STIPPLE);
|
|
NAME(PS_BLEND);
|
|
NAME(RASTER);
|
|
NAME(SAMPLE_MASK);
|
|
NAME(SAMPLE_PATTERN);
|
|
NAME(SCISSOR);
|
|
NAME(SF);
|
|
NAME(STREAMOUT);
|
|
NAME(TE);
|
|
NAME(VERTEX_INPUT);
|
|
NAME(VF);
|
|
NAME(VF_TOPOLOGY);
|
|
NAME(VFG);
|
|
NAME(VIEWPORT_CC);
|
|
NAME(VIEWPORT_CC_PTR);
|
|
NAME(VIEWPORT_SF_CLIP);
|
|
NAME(WM);
|
|
NAME(WM_DEPTH_STENCIL);
|
|
NAME(PMA_FIX);
|
|
NAME(WA_18019816803);
|
|
NAME(TBIMR_TILE_PASS_INFO);
|
|
default: unreachable("invalid state");
|
|
}
|
|
}
|
|
|
|
VkResult
|
|
anv_device_print_init(struct anv_device *device)
|
|
{
|
|
VkResult result =
|
|
anv_device_alloc_bo(device, "printf",
|
|
debug_get_num_option("ANV_PRINTF_BUFFER_SIZE", 1024 * 1024),
|
|
ANV_BO_ALLOC_CAPTURE |
|
|
ANV_BO_ALLOC_MAPPED |
|
|
ANV_BO_ALLOC_HOST_COHERENT |
|
|
ANV_BO_ALLOC_NO_LOCAL_MEM,
|
|
0 /* explicit_address */,
|
|
&device->printf.bo);
|
|
if (result != VK_SUCCESS)
|
|
return result;
|
|
|
|
util_dynarray_init(&device->printf.prints, ralloc_context(NULL));
|
|
simple_mtx_init(&device->printf.mutex, mtx_plain);
|
|
|
|
*((uint32_t *)device->printf.bo->map) = 4;
|
|
|
|
return VK_SUCCESS;
|
|
}
|
|
|
|
void
|
|
anv_device_print_fini(struct anv_device *device)
|
|
{
|
|
anv_device_release_bo(device, device->printf.bo);
|
|
util_dynarray_fini(&device->printf.prints);
|
|
simple_mtx_destroy(&device->printf.mutex);
|
|
}
|
|
|
|
void
|
|
anv_device_print_shader_prints(struct anv_device *device)
|
|
{
|
|
simple_mtx_lock(&device->printf.mutex);
|
|
|
|
uint32_t *size = device->printf.bo->map;
|
|
|
|
u_printf_ptr(stdout,
|
|
device->printf.bo->map + sizeof(uint32_t),
|
|
*size - 4,
|
|
util_dynarray_begin(&device->printf.prints),
|
|
util_dynarray_num_elements(&device->printf.prints, u_printf_info*));
|
|
|
|
/* Reset */
|
|
*size = 4;
|
|
|
|
simple_mtx_unlock(&device->printf.mutex);
|
|
}
|