2013-07-07 19:02:56 -07:00
|
|
|
/*
|
s/Tungsten Graphics/VMware/
Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the
old copyright name is creating unnecessary confusion, hence this change.
This was the sed script I used:
$ cat tg2vmw.sed
# Run as:
#
# git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed
#
# Rename copyrights
s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g
/Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./
s/TUNGSTEN GRAPHICS/VMWARE/g
# Rename emails
s/alanh@tungstengraphics.com/alanh@vmware.com/
s/jens@tungstengraphics.com/jowen@vmware.com/g
s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/
s/jrfonseca\?@tungstengraphics.com/jfonseca@vmware.com/g
s/keithw\?@tungstengraphics.com/keithw@vmware.com/g
s/michel@tungstengraphics.com/daenzer@vmware.com/g
s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/
s/zack@tungstengraphics.com/zackr@vmware.com/
# Remove dead links
s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g
# C string src/gallium/state_trackers/vega/api_misc.c
s/"Tungsten Graphics, Inc"/"VMware, Inc"/
Reviewed-by: Brian Paul <brianp@vmware.com>
2014-01-17 16:27:50 +00:00
|
|
|
* Copyright 2003 VMware, Inc.
|
2013-07-07 19:02:56 -07:00
|
|
|
* Copyright © 2007 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 COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS 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.
|
|
|
|
|
*/
|
2017-03-20 16:04:37 +00:00
|
|
|
|
2021-04-05 10:44:41 -07:00
|
|
|
#ifndef INTEL_DEBUG_H
|
|
|
|
|
#define INTEL_DEBUG_H
|
2013-07-07 19:02:56 -07:00
|
|
|
|
2017-03-01 08:58:43 -08:00
|
|
|
#include <stdint.h>
|
|
|
|
|
#include "compiler/shader_enums.h"
|
2025-04-18 14:48:08 -07:00
|
|
|
#include "util/bitset.h"
|
2020-09-14 18:43:50 +02:00
|
|
|
#include "util/macros.h"
|
2017-03-01 08:58:43 -08:00
|
|
|
|
2017-02-16 15:16:40 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
2013-07-07 19:02:56 -07:00
|
|
|
/**
|
2021-04-05 10:44:41 -07:00
|
|
|
* \file intel_debug.h
|
2013-07-07 19:02:56 -07:00
|
|
|
*
|
|
|
|
|
* Basic INTEL_DEBUG environment variable handling. This file defines the
|
|
|
|
|
* list of debugging flags, as well as some macros for handling them.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-04-18 11:57:12 -07:00
|
|
|
enum intel_debug_flag {
|
|
|
|
|
DEBUG_TEXTURE = 0,
|
|
|
|
|
DEBUG_BLIT,
|
|
|
|
|
DEBUG_PERF,
|
|
|
|
|
DEBUG_PERFMON,
|
|
|
|
|
DEBUG_BATCH,
|
|
|
|
|
DEBUG_BUFMGR,
|
|
|
|
|
DEBUG_SYNC,
|
|
|
|
|
DEBUG_SF,
|
|
|
|
|
DEBUG_SUBMIT,
|
|
|
|
|
DEBUG_URB,
|
|
|
|
|
DEBUG_CLIP,
|
|
|
|
|
DEBUG_STALL,
|
|
|
|
|
DEBUG_BLORP,
|
2025-04-23 09:00:50 +03:00
|
|
|
DEBUG_NO_DUAL_OBJECT_GS,
|
2025-04-18 11:57:12 -07:00
|
|
|
DEBUG_OPTIMIZER,
|
|
|
|
|
DEBUG_ANNOTATION,
|
2025-04-23 09:00:50 +03:00
|
|
|
DEBUG_NO_OACONFIG,
|
2025-04-18 11:57:12 -07:00
|
|
|
DEBUG_SPILL_FS,
|
|
|
|
|
DEBUG_SPILL_VEC4,
|
|
|
|
|
DEBUG_HEX,
|
|
|
|
|
DEBUG_NO_COMPACTION,
|
|
|
|
|
DEBUG_L3,
|
|
|
|
|
DEBUG_NO_CCS,
|
|
|
|
|
DEBUG_NO_HIZ,
|
|
|
|
|
DEBUG_COLOR,
|
|
|
|
|
DEBUG_REEMIT,
|
|
|
|
|
DEBUG_SOFT64,
|
|
|
|
|
DEBUG_BT,
|
|
|
|
|
DEBUG_PIPE_CONTROL,
|
|
|
|
|
DEBUG_NO_FAST_CLEAR,
|
|
|
|
|
DEBUG_CAPTURE_ALL,
|
|
|
|
|
DEBUG_PERF_SYMBOL_NAMES,
|
|
|
|
|
DEBUG_SWSB_STALL,
|
|
|
|
|
DEBUG_HEAPS,
|
|
|
|
|
DEBUG_ISL,
|
|
|
|
|
DEBUG_SPARSE,
|
|
|
|
|
DEBUG_DRAW_BKP,
|
|
|
|
|
DEBUG_BATCH_STATS,
|
|
|
|
|
DEBUG_REG_PRESSURE,
|
|
|
|
|
DEBUG_SHADER_PRINT,
|
|
|
|
|
DEBUG_CL_QUIET,
|
|
|
|
|
DEBUG_BVH_BLAS,
|
|
|
|
|
DEBUG_BVH_TLAS,
|
|
|
|
|
DEBUG_BVH_BLAS_IR_HDR,
|
|
|
|
|
DEBUG_BVH_TLAS_IR_HDR,
|
|
|
|
|
DEBUG_BVH_BLAS_IR_AS,
|
|
|
|
|
DEBUG_BVH_TLAS_IR_AS,
|
|
|
|
|
DEBUG_BVH_NO_BUILD,
|
|
|
|
|
DEBUG_NO_SEND_GATHER,
|
|
|
|
|
DEBUG_RT_NO_TRACE,
|
|
|
|
|
DEBUG_SHADERS_LINENO,
|
2025-04-18 15:16:22 -07:00
|
|
|
DEBUG_SHOW_SHADER_STAGE,
|
2025-04-23 09:00:50 +03:00
|
|
|
/* Keep the stages grouped */
|
|
|
|
|
DEBUG_VS,
|
|
|
|
|
DEBUG_TCS,
|
|
|
|
|
DEBUG_TES,
|
|
|
|
|
DEBUG_GS,
|
|
|
|
|
DEBUG_WM,
|
|
|
|
|
DEBUG_TASK,
|
|
|
|
|
DEBUG_MESH,
|
|
|
|
|
DEBUG_CS,
|
|
|
|
|
DEBUG_RT,
|
|
|
|
|
DEBUG_NO8,
|
|
|
|
|
|
|
|
|
|
DEBUG_NO16,
|
|
|
|
|
DEBUG_NO32,
|
|
|
|
|
DEBUG_DO32,
|
|
|
|
|
|
|
|
|
|
/* Must be the last entry */
|
|
|
|
|
INTEL_DEBUG_MAX,
|
2025-04-18 11:57:12 -07:00
|
|
|
};
|
2013-07-07 19:02:56 -07:00
|
|
|
|
2025-04-23 09:00:50 +03:00
|
|
|
extern BITSET_WORD intel_debug[BITSET_WORDS(INTEL_DEBUG_MAX)];
|
2013-07-07 19:02:56 -07:00
|
|
|
|
2025-04-23 09:00:50 +03:00
|
|
|
|
|
|
|
|
/* Check if a debug flag is enabled by testing its bit position */
|
|
|
|
|
#define INTEL_DEBUG(flag) unlikely(BITSET_TEST(intel_debug, (flag)))
|
2021-10-13 11:21:41 +02:00
|
|
|
|
2018-07-24 17:13:52 -07:00
|
|
|
/* These flags are not compatible with the disk shader cache */
|
2021-12-03 21:55:56 -06:00
|
|
|
#define DEBUG_DISK_CACHE_DISABLE_MASK 0
|
2018-07-24 17:13:52 -07:00
|
|
|
|
2024-07-09 00:54:47 -07:00
|
|
|
/* Flags to determine what bvh to dump out */
|
2025-04-23 09:00:50 +03:00
|
|
|
#define INTEL_DEBUG_BVH_ANY (unlikely(INTEL_DEBUG(DEBUG_BVH_BLAS) || \
|
|
|
|
|
INTEL_DEBUG(DEBUG_BVH_TLAS) || \
|
|
|
|
|
INTEL_DEBUG(DEBUG_BVH_BLAS_IR_HDR) || \
|
|
|
|
|
INTEL_DEBUG(DEBUG_BVH_TLAS_IR_HDR) || \
|
|
|
|
|
INTEL_DEBUG(DEBUG_BVH_BLAS_IR_AS) || \
|
|
|
|
|
INTEL_DEBUG(DEBUG_BVH_TLAS_IR_AS)))
|
2024-07-09 00:54:47 -07:00
|
|
|
|
2023-01-21 12:49:44 +01:00
|
|
|
extern uint64_t intel_simd;
|
2023-07-19 10:04:49 -07:00
|
|
|
extern uint32_t intel_debug_bkp_before_draw_count;
|
|
|
|
|
extern uint32_t intel_debug_bkp_after_draw_count;
|
2024-05-10 08:57:55 +03:00
|
|
|
extern uint64_t intel_debug_batch_frame_start;
|
|
|
|
|
extern uint64_t intel_debug_batch_frame_stop;
|
2025-05-16 23:28:04 +00:00
|
|
|
extern uint32_t intel_shader_dump_filter;
|
2023-01-21 12:49:44 +01:00
|
|
|
|
|
|
|
|
#define INTEL_SIMD(type, size) (!!(intel_simd & (DEBUG_ ## type ## _SIMD ## size)))
|
|
|
|
|
|
|
|
|
|
/* VS, TCS, TES and GS stages are dispatched in one size */
|
|
|
|
|
#define DEBUG_FS_SIMD8 (1ull << 0)
|
|
|
|
|
#define DEBUG_FS_SIMD16 (1ull << 1)
|
|
|
|
|
#define DEBUG_FS_SIMD32 (1ull << 2)
|
2022-06-22 16:40:23 -07:00
|
|
|
#define DEBUG_FS_SIMD2X8 (1ull << 3)
|
2022-06-30 15:46:48 -07:00
|
|
|
#define DEBUG_FS_SIMD4X8 (1ull << 4)
|
|
|
|
|
#define DEBUG_FS_SIMD2X16 (1ull << 5)
|
2023-01-21 12:49:44 +01:00
|
|
|
|
2022-06-30 15:46:48 -07:00
|
|
|
#define DEBUG_CS_SIMD8 (1ull << 6)
|
|
|
|
|
#define DEBUG_CS_SIMD16 (1ull << 7)
|
|
|
|
|
#define DEBUG_CS_SIMD32 (1ull << 8)
|
2023-01-21 12:49:44 +01:00
|
|
|
|
2022-06-30 15:46:48 -07:00
|
|
|
#define DEBUG_TS_SIMD8 (1ull << 9)
|
|
|
|
|
#define DEBUG_TS_SIMD16 (1ull << 10)
|
|
|
|
|
#define DEBUG_TS_SIMD32 (1ull << 11)
|
2023-01-21 12:49:44 +01:00
|
|
|
|
2022-06-30 15:46:48 -07:00
|
|
|
#define DEBUG_MS_SIMD8 (1ull << 12)
|
|
|
|
|
#define DEBUG_MS_SIMD16 (1ull << 13)
|
|
|
|
|
#define DEBUG_MS_SIMD32 (1ull << 14)
|
2023-01-21 12:49:44 +01:00
|
|
|
|
2022-06-30 15:46:48 -07:00
|
|
|
#define DEBUG_RT_SIMD8 (1ull << 15)
|
|
|
|
|
#define DEBUG_RT_SIMD16 (1ull << 16)
|
|
|
|
|
#define DEBUG_RT_SIMD32 (1ull << 17)
|
2023-01-21 12:49:44 +01:00
|
|
|
|
2022-06-30 15:46:48 -07:00
|
|
|
#define SIMD_DISK_CACHE_MASK ((1ull << 18) - 1)
|
2018-07-20 23:52:59 -07:00
|
|
|
|
2013-07-07 19:02:56 -07:00
|
|
|
#ifdef HAVE_ANDROID_PLATFORM
|
|
|
|
|
#define LOG_TAG "INTEL-MESA"
|
2018-04-27 10:11:36 +08:00
|
|
|
#if ANDROID_API_LEVEL >= 26
|
|
|
|
|
#include <log/log.h>
|
|
|
|
|
#else
|
2013-07-07 19:02:56 -07:00
|
|
|
#include <cutils/log.h>
|
2018-04-27 10:11:36 +08:00
|
|
|
#endif /* use log/log.h start from android 8 major version */
|
2013-07-07 19:02:56 -07:00
|
|
|
#ifndef ALOGW
|
|
|
|
|
#define ALOGW LOGW
|
|
|
|
|
#endif
|
|
|
|
|
#define dbg_printf(...) ALOGW(__VA_ARGS__)
|
|
|
|
|
#else
|
2013-12-23 00:56:20 -08:00
|
|
|
#define dbg_printf(...) fprintf(stderr, __VA_ARGS__)
|
2013-07-07 19:02:56 -07:00
|
|
|
#endif /* HAVE_ANDROID_PLATFORM */
|
|
|
|
|
|
2021-10-13 11:21:41 +02:00
|
|
|
#define DBG(...) do { \
|
|
|
|
|
if (INTEL_DEBUG(FILE_DEBUG_FLAG)) \
|
|
|
|
|
dbg_printf(__VA_ARGS__); \
|
2013-07-07 19:02:56 -07:00
|
|
|
} while(0)
|
|
|
|
|
|
2015-02-18 17:31:29 -08:00
|
|
|
extern uint64_t intel_debug_flag_for_shader_stage(gl_shader_stage stage);
|
|
|
|
|
|
2024-01-19 18:56:18 -08:00
|
|
|
extern void process_intel_debug_variable(void);
|
2017-02-16 15:16:40 +00:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2017-03-20 16:04:37 +00:00
|
|
|
|
2021-04-05 10:44:41 -07:00
|
|
|
#endif /* INTEL_DEBUG_H */
|