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"
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-09-14 18:43:50 +02:00
|
|
|
extern uint64_t intel_debug;
|
|
|
|
|
|
2021-10-13 11:21:41 +02:00
|
|
|
/* Returns 0/1, not the matching bit mask. */
|
|
|
|
|
#define INTEL_DEBUG(flags) unlikely(intel_debug & (flags))
|
2013-07-07 19:02:56 -07:00
|
|
|
|
2015-04-23 13:59:32 -07:00
|
|
|
#define DEBUG_TEXTURE (1ull << 0)
|
2021-12-04 14:25:32 +02:00
|
|
|
#define DEBUG_BLIT (1ull << 1)
|
|
|
|
|
#define DEBUG_PERF (1ull << 2)
|
|
|
|
|
#define DEBUG_PERFMON (1ull << 3)
|
|
|
|
|
#define DEBUG_BATCH (1ull << 4)
|
|
|
|
|
#define DEBUG_BUFMGR (1ull << 5)
|
|
|
|
|
#define DEBUG_GS (1ull << 6)
|
|
|
|
|
#define DEBUG_SYNC (1ull << 7)
|
|
|
|
|
#define DEBUG_SF (1ull << 8)
|
|
|
|
|
#define DEBUG_SUBMIT (1ull << 9)
|
|
|
|
|
#define DEBUG_WM (1ull << 10)
|
|
|
|
|
#define DEBUG_URB (1ull << 11)
|
|
|
|
|
#define DEBUG_VS (1ull << 12)
|
|
|
|
|
#define DEBUG_CLIP (1ull << 13)
|
2022-02-22 10:37:07 +02:00
|
|
|
#define DEBUG_STALL (1ull << 14)
|
2021-12-04 14:25:32 +02:00
|
|
|
#define DEBUG_BLORP (1ull << 15)
|
2023-01-21 12:49:44 +01:00
|
|
|
/* reserved (1ull << 16) */
|
2021-12-04 14:25:32 +02:00
|
|
|
#define DEBUG_NO_DUAL_OBJECT_GS (1ull << 17)
|
|
|
|
|
#define DEBUG_OPTIMIZER (1ull << 18)
|
|
|
|
|
#define DEBUG_ANNOTATION (1ull << 19)
|
2023-01-21 12:49:44 +01:00
|
|
|
/* reserved (1ull << 20) */
|
2021-12-04 14:25:32 +02:00
|
|
|
#define DEBUG_NO_OACONFIG (1ull << 21)
|
|
|
|
|
#define DEBUG_SPILL_FS (1ull << 22)
|
|
|
|
|
#define DEBUG_SPILL_VEC4 (1ull << 23)
|
|
|
|
|
#define DEBUG_CS (1ull << 24)
|
|
|
|
|
#define DEBUG_HEX (1ull << 25)
|
|
|
|
|
#define DEBUG_NO_COMPACTION (1ull << 26)
|
|
|
|
|
#define DEBUG_TCS (1ull << 27)
|
|
|
|
|
#define DEBUG_TES (1ull << 28)
|
|
|
|
|
#define DEBUG_L3 (1ull << 29)
|
|
|
|
|
#define DEBUG_DO32 (1ull << 30)
|
2022-03-18 01:31:39 -07:00
|
|
|
#define DEBUG_NO_CCS (1ull << 31)
|
2021-12-04 14:25:32 +02:00
|
|
|
#define DEBUG_NO_HIZ (1ull << 32)
|
|
|
|
|
#define DEBUG_COLOR (1ull << 33)
|
|
|
|
|
#define DEBUG_REEMIT (1ull << 34)
|
|
|
|
|
#define DEBUG_SOFT64 (1ull << 35)
|
2022-08-19 11:40:13 -07:00
|
|
|
#define DEBUG_BT (1ull << 36)
|
|
|
|
|
#define DEBUG_PIPE_CONTROL (1ull << 37)
|
|
|
|
|
#define DEBUG_NO_FAST_CLEAR (1ull << 38)
|
2023-01-21 12:49:44 +01:00
|
|
|
/* reserved (1ull << 39) */
|
2022-08-19 11:40:13 -07:00
|
|
|
#define DEBUG_RT (1ull << 40)
|
|
|
|
|
#define DEBUG_TASK (1ull << 41)
|
|
|
|
|
#define DEBUG_MESH (1ull << 42)
|
2022-10-06 00:34:52 +03:00
|
|
|
#define DEBUG_CAPTURE_ALL (1ull << 43)
|
2022-07-21 08:25:39 +00:00
|
|
|
#define DEBUG_PERF_SYMBOL_NAMES (1ull << 44)
|
2023-03-08 12:31:51 -08:00
|
|
|
#define DEBUG_SWSB_STALL (1ull << 45)
|
2023-02-23 09:59:45 +02:00
|
|
|
#define DEBUG_HEAPS (1ull << 46)
|
2021-12-03 12:11:02 +02:00
|
|
|
#define DEBUG_ISL (1ull << 47)
|
2023-07-07 17:15:01 +00:00
|
|
|
#define DEBUG_SPARSE (1ull << 48)
|
2023-07-19 10:04:49 -07:00
|
|
|
#define DEBUG_DRAW_BKP (1ull << 49)
|
2023-06-07 00:37:03 +03:00
|
|
|
#define DEBUG_BATCH_STATS (1ull << 50)
|
2024-05-08 13:38:39 -07:00
|
|
|
#define DEBUG_REG_PRESSURE (1ull << 51)
|
2023-09-05 16:11:56 +03:00
|
|
|
#define DEBUG_SHADER_PRINT (1ull << 52)
|
2024-06-09 21:50:32 -07:00
|
|
|
#define DEBUG_CL_QUIET (1ull << 53)
|
2024-07-09 00:54:47 -07:00
|
|
|
#define DEBUG_BVH_BLAS (1ull << 54)
|
|
|
|
|
#define DEBUG_BVH_TLAS (1ull << 55)
|
|
|
|
|
#define DEBUG_BVH_BLAS_IR_HDR (1ull << 56)
|
|
|
|
|
#define DEBUG_BVH_TLAS_IR_HDR (1ull << 57)
|
|
|
|
|
#define DEBUG_BVH_BLAS_IR_AS (1ull << 58)
|
|
|
|
|
#define DEBUG_BVH_TLAS_IR_AS (1ull << 59)
|
|
|
|
|
#define DEBUG_BVH_NO_BUILD (1ull << 60)
|
2013-07-07 19:02:56 -07:00
|
|
|
|
2021-10-13 11:21:41 +02:00
|
|
|
#define DEBUG_ANY (~0ull)
|
|
|
|
|
|
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
|
|
|
|
2018-07-20 23:52:59 -07:00
|
|
|
/* These flags may affect program generation */
|
|
|
|
|
#define DEBUG_DISK_CACHE_MASK \
|
2023-01-21 12:49:44 +01:00
|
|
|
(DEBUG_NO_DUAL_OBJECT_GS | DEBUG_SPILL_FS | \
|
|
|
|
|
DEBUG_SPILL_VEC4 | DEBUG_NO_COMPACTION | DEBUG_DO32 | DEBUG_SOFT64)
|
|
|
|
|
|
2024-07-09 00:54:47 -07:00
|
|
|
/* Flags to determine what bvh to dump out */
|
|
|
|
|
#define DEBUG_BVH_ANV (DEBUG_BVH_BLAS | DEBUG_BVH_TLAS)
|
|
|
|
|
#define DEBUG_BVH_IR_HDR (DEBUG_BVH_BLAS_IR_HDR | DEBUG_BVH_TLAS_IR_HDR)
|
|
|
|
|
#define DEBUG_BVH_IR_AS (DEBUG_BVH_BLAS_IR_AS | DEBUG_BVH_TLAS_IR_AS)
|
|
|
|
|
#define DEBUG_BVH_ANY (DEBUG_BVH_ANV | DEBUG_BVH_IR_HDR | DEBUG_BVH_IR_AS)
|
|
|
|
|
|
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;
|
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 */
|