summaryrefslogtreecommitdiff
path: root/assembler
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-22 14:42:11 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-29 11:09:25 +0100
commit9141edea9931db0ca1dfcf476da8bdd370702cc4 (patch)
treea8f0e45c846c73009e39e450478869d97b2bee5d /assembler
parent4d9faf822d88c2502dedec9e02b55d143b563882 (diff)
automake: drop assembler/shader-debugger automake support
Seems to have seen no activity in past years, dropping the automake support hopefully doesn't upset anyone. Acked-by: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'assembler')
-rw-r--r--assembler/Makefile.am160
-rw-r--r--assembler/doc/Makefile.am3
-rw-r--r--assembler/test/Makefile.am0
3 files changed, 0 insertions, 163 deletions
diff --git a/assembler/Makefile.am b/assembler/Makefile.am
deleted file mode 100644
index 49422e02..00000000
--- a/assembler/Makefile.am
+++ /dev/null
@@ -1,160 +0,0 @@
-SUBDIRS = doc test
-
-noinst_LTLIBRARIES = libbrw.la
-
-bin_PROGRAMS = intel-gen4asm intel-gen4disasm
-
-libbrw_la_SOURCES = \
- brw_compat.h \
- brw_context.c \
- brw_context.h \
- brw_disasm.c \
- brw_defines.h \
- brw_eu.h \
- brw_eu.c \
- brw_eu_compact.c \
- brw_eu_debug.c \
- brw_eu_emit.c \
- brw_eu_util.c \
- brw_reg.h \
- brw_structs.h \
- gen8_disasm.c \
- gen8_instruction.h \
- gen8_instruction.c \
- ralloc.c \
- ralloc.h \
- $(NULL)
-
-AM_YFLAGS = -d --warnings=all
-AM_CFLAGS= $(ASSEMBLER_WARN_CFLAGS)
-
-LEX = flex -i
-BUILT_SOURCES = gram.h gram.c lex.c
-gram.h: gram.c
-
-intel_gen4asm_SOURCES = \
- gen4asm.h \
- gram.y \
- lex.l \
- main.c \
- $(NULL)
-
-intel_gen4asm_LDADD = libbrw.la
-
-intel_gen4disasm_SOURCES = disasm-main.c
-intel_gen4disasm_LDADD = libbrw.la
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = intel-gen4asm.pc
-
-check_SCRIPTS = test/run-test.sh
-
-TESTS = \
- test/mov \
- test/frc \
- test/regtype \
- test/rndd \
- test/rndu \
- test/rnde \
- test/rnde-intsrc \
- test/rndz \
- test/lzd \
- test/not \
- test/immediate \
- $(NULL)
-
-# Tests that are expected to fail because they contain some inccorect code.
-XFAIL_TESTS =
-
-# Those tests were already failing when the assembler was imported from
-# the intel-gen4asm git repository:
-# http://cgit.freedesktop.org/xorg/app/intel-gen4asm/
-# We disable them "for now" as a workaround to be able to release i-g-t
-disabled_tests = \
- test/declare \
- test/jmpi \
- test/if \
- test/iff \
- test/while \
- test/else \
- test/break \
- test/cont \
- test/halt \
- test/wait \
- test/endif \
- $(NULL)
-
-disabled_xfail_tests = \
- test/rnde-intsrc \
- $(NULL)
-
-TESTDATA = \
- test/mov.expected \
- test/mov.g4a \
- test/frc.expected \
- test/frc.g4a \
- test/rndd.expected \
- test/rndd.g4a \
- test/rndu.expected \
- test/rndu.g4a \
- test/rnde.expected \
- test/rnde.g4a \
- test/rnde-intsrc.expected \
- test/rnde-intsrc.g4a \
- test/rndz.expected \
- test/rndz.g4a \
- test/lzd.expected \
- test/lzd.g4a \
- test/not.expected \
- test/not.g4a \
- test/jmpi.expected \
- test/jmpi.g4a \
- test/if.expected \
- test/if.g4a \
- test/iff.expected \
- test/iff.g4a \
- test/while.expected \
- test/while.g4a \
- test/else.expected \
- test/else.g4a \
- test/break.expected \
- test/break.g4a \
- test/cont.expected \
- test/cont.g4a \
- test/halt.expected \
- test/halt.g4a \
- test/wait.expected \
- test/wait.g4a \
- test/endif.expected \
- test/endif.g4a \
- test/declare.expected \
- test/declare.g4a \
- test/immediate.g4a \
- test/immediate.expected \
- $(NULL)
-
-test_EXTRA_DIST = \
- ${TESTDATA} \
- test/run-test.sh \
- $(NULL)
-
-$(TESTS): test/run-test.sh
- sed "s|TEST|$@|g" ${srcdir}/test/run-test.sh > $@
- chmod +x $@
-
-test_CLEANFILES = \
- test/*.out \
- ${TESTS} \
- $(NULL)
-
-CLEANFILES = $(BUILT_SOURCES) \
- $(test_CLEANFILES) \
- $(NULL)
-
-EXTRA_DIST = \
- README \
- TODO \
- meson.build \
- intel-gen4asm.pc.in \
- $(test_EXTRA_DIST) \
- $(NULL)
diff --git a/assembler/doc/Makefile.am b/assembler/doc/Makefile.am
deleted file mode 100644
index 257fc385..00000000
--- a/assembler/doc/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-EXTRA_DIST = \
- examples/packed_yuv_sf.g4a \
- examples/packed_yuv_wm.g4a
diff --git a/assembler/test/Makefile.am b/assembler/test/Makefile.am
deleted file mode 100644
index e69de29b..00000000
--- a/assembler/test/Makefile.am
+++ /dev/null