[Mesa-dev] [PATCH v2 2/5] intel: Move tools/decoder.[ch] to common/gen_decoder.[ch].
Kenneth Graunke
kenneth at whitecape.org
Mon Mar 20 22:04:17 UTC 2017
This way they become part of libintel_common.la so I can use them in
the i965 driver.
---
src/intel/Makefile.sources | 2 ++
src/intel/Makefile.tools.am | 2 --
src/intel/{tools/decoder.c => common/gen_decoder.c} | 2 +-
src/intel/{tools/decoder.h => common/gen_decoder.h} | 6 +++---
src/intel/tools/aubinator.c | 2 +-
5 files changed, 7 insertions(+), 7 deletions(-)
rename src/intel/{tools/decoder.c => common/gen_decoder.c} (99%)
rename src/intel/{tools/decoder.h => common/gen_decoder.h} (98%)
I'd forgotten than I still had my gross symlinking hack in the first
version of this series. Here's a new spin which does this "properly" :)
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
similarity index 99%
rename from src/intel/tools/decoder.c
rename to 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
similarity index 98%
rename from src/intel/tools/decoder.h
rename to 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"
--
2.12.0
More information about the mesa-dev
mailing list