summaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2017-03-20 11:13:07 -0700
committerKenneth Graunke <[email protected]>2017-03-21 13:49:10 -0700
commit7d84bb32aa6698211bfe4697609501ad94a266b9 (patch)
tree90249c022f7591fac790f17a07285369c3b78252 /src/intel
parent2b074bb7e57667788cde4dd0f5b01d1683aa71ce (diff)
intel: Move tools/decoder.[ch] to common/gen_decoder.[ch].
This way they become part of libintel_common.la so I can use them in the i965 driver. Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/Makefile.sources2
-rw-r--r--src/intel/Makefile.tools.am2
-rw-r--r--src/intel/common/gen_decoder.c (renamed from src/intel/tools/decoder.c)2
-rw-r--r--src/intel/common/gen_decoder.h (renamed from src/intel/tools/decoder.h)6
-rw-r--r--src/intel/tools/aubinator.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources
index 4eaf380492f..839ea47d752 100644
--- a/src/intel/Makefile.sources
+++ b/src/intel/Makefile.sources
@@ -9,6 +9,8 @@ BLORP_FILES = \
COMMON_FILES = \
common/gen_debug.c \
common/gen_debug.h \
+ common/gen_decoder.c \
+ common/gen_decoder.h \
common/gen_device_info.c \
common/gen_device_info.h \
common/gen_l3_config.c \
diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am
index 3c98c81c876..245bd03eef5 100644
--- a/src/intel/Makefile.tools.am
+++ b/src/intel/Makefile.tools.am
@@ -23,8 +23,6 @@ noinst_PROGRAMS += tools/aubinator
tools_aubinator_SOURCES = \
tools/aubinator.c \
- tools/decoder.c \
- tools/decoder.h \
tools/disasm.c \
tools/gen_disasm.h
diff --git a/src/intel/tools/decoder.c b/src/intel/common/gen_decoder.c
index 42eed4af693..1c3246f265e 100644
--- a/src/intel/tools/decoder.c
+++ b/src/intel/common/gen_decoder.c
@@ -32,7 +32,7 @@
#include <util/macros.h>
-#include "decoder.h"
+#include "gen_decoder.h"
#include "genxml/gen6_xml.h"
#include "genxml/gen7_xml.h"
diff --git a/src/intel/tools/decoder.h b/src/intel/common/gen_decoder.h
index 4352dea9679..1c41de80a4a 100644
--- a/src/intel/tools/decoder.h
+++ b/src/intel/common/gen_decoder.h
@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
-#ifndef DECODER_H
-#define DECODER_H
+#ifndef GEN_DECODER_H
+#define GEN_DECODER_H
#include <stdint.h>
#include <stdbool.h>
@@ -135,4 +135,4 @@ void gen_print_group(FILE *out,
uint64_t offset, const uint32_t *p,
int starting_dword, bool color);
-#endif /* DECODER_H */
+#endif /* GEN_DECODER_H */
diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c
index 42cff8c4dc5..68fd18cd684 100644
--- a/src/intel/tools/aubinator.c
+++ b/src/intel/tools/aubinator.c
@@ -39,7 +39,7 @@
#include "util/macros.h"
-#include "decoder.h"
+#include "common/gen_decoder.h"
#include "intel_aub.h"
#include "gen_disasm.h"