mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
intel/compiler: Include brw_disasm_info.h where its used
Acked-by: Dylan Baker <dylan@pnwbakers.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27579>
This commit is contained in:
parent
ff95f00883
commit
468a0ffe9c
7 changed files with 8 additions and 1 deletions
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
#include "compiler/brw_inst.h"
|
||||
#include "compiler/brw_disasm.h"
|
||||
#include "compiler/brw_disasm_info.h"
|
||||
#include "compiler/brw_eu.h"
|
||||
#include "compiler/brw_isa_info.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@
|
|||
#include "brw_eu_defines.h"
|
||||
#include "brw_isa_info.h"
|
||||
#include "brw_reg.h"
|
||||
#include "brw_disasm_info.h"
|
||||
|
||||
#include "util/bitset.h"
|
||||
|
||||
|
|
@ -48,6 +47,8 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct disasm_info;
|
||||
|
||||
#define BRW_EU_MAX_INSN_STACK 5
|
||||
|
||||
struct brw_insn_state {
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include "brw_eu.h"
|
||||
#include "brw_disasm_info.h"
|
||||
|
||||
/* We're going to do lots of string concatenation, so this should help. */
|
||||
struct string {
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
*/
|
||||
|
||||
#include "brw_eu.h"
|
||||
#include "brw_disasm_info.h"
|
||||
#include "brw_fs.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "dev/intel_debug.h"
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
#include "brw_vec4.h"
|
||||
#include "brw_cfg.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_disasm_info.h"
|
||||
#include "dev/intel_debug.h"
|
||||
#include "util/mesa-sha1.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "brw_disasm_info.h"
|
||||
#include "brw_eu.h"
|
||||
#include "brw_eu_defines.h"
|
||||
#include "util/bitset.h"
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@
|
|||
#include <stdio.h>
|
||||
#include <getopt.h>
|
||||
#include "i965_asm.h"
|
||||
#include "intel/compiler/brw_disasm_info.h"
|
||||
|
||||
enum opt_output_type {
|
||||
OPT_OUTPUT_HEX,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue