etnaviv: introduce struct etna_compiler
authorChristian Gmeiner <christian.gmeiner@gmail.com>
Mon, 29 Jun 2020 10:02:29 +0000 (12:02 +0200)
committerMarge Bot <eric+marge@anholt.net>
Fri, 24 Jul 2020 20:01:04 +0000 (20:01 +0000)
This struct will be used to for state saved across compiler
invocations.

Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5996>

src/gallium/drivers/etnaviv/Makefile.sources
src/gallium/drivers/etnaviv/etnaviv_compiler.c [new file with mode: 0644]
src/gallium/drivers/etnaviv/etnaviv_compiler.h
src/gallium/drivers/etnaviv/etnaviv_screen.c
src/gallium/drivers/etnaviv/etnaviv_screen.h
src/gallium/drivers/etnaviv/meson.build

index f765088117dcffb30b0cc7b53b4ab50fc8f8038d..32fcd799ac1130cbaa828594e73d3818c064783d 100644 (file)
@@ -16,6 +16,7 @@ C_SOURCES :=  \
        etnaviv_blt.h \
        etnaviv_clear_blit.c \
        etnaviv_clear_blit.h \
+       etnaviv_compiler.c \
        etnaviv_compiler.h \
        etnaviv_compiler_nir.c \
        etnaviv_compiler_nir_emit.c \
diff --git a/src/gallium/drivers/etnaviv/etnaviv_compiler.c b/src/gallium/drivers/etnaviv/etnaviv_compiler.c
new file mode 100644 (file)
index 0000000..aa6b2c6
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * Copyright (c) 2020 Etnaviv Project
+ *
+ * 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, sub license,
+ * 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 NON-INFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS 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.
+ *
+ * Authors:
+ *    Christian Gmeiner <christian.gmeiner@gmail.com>
+ */
+
+#include "etnaviv_compiler.h"
+#include "util/ralloc.h"
+
+struct etna_compiler *
+etna_compiler_create(void)
+{
+   struct etna_compiler *compiler = rzalloc(NULL, struct etna_compiler);
+
+   return compiler;
+}
+
+void
+etna_compiler_destroy(const struct etna_compiler *compiler)
+{
+   ralloc_free((void *)compiler);
+}
index b7feeb6d49b7be471c7ae1f23e86da12228230c1..40409c68d3491e5c3d2a250ba3660160fa85c130 100644 (file)
 #define ETNA_MAX_DEPTH (32)
 #define ETNA_MAX_INSTRUCTIONS (2048)
 
+/**
+ * Compiler state saved across compiler invocations, for any expensive global
+ * setup.
+ */
+struct etna_compiler {
+};
+
 /* compiler output per input/output */
 struct etna_shader_inout {
    int reg; /* native register */
@@ -124,6 +131,12 @@ struct etna_shader_link_info {
    int pcoord_varying_comp_ofs;
 };
 
+struct etna_compiler *
+etna_compiler_create(void);
+
+void
+etna_compiler_destroy(const struct etna_compiler *compiler);
+
 bool
 etna_compile_shader(struct etna_shader_variant *shader);
 
index 1067c2c9ef580815208a34f7f87176cdb031a98c..5a03b86c327d3b3cb41bdb0945c9478f3a12c8ca 100644 (file)
@@ -88,6 +88,9 @@ etna_screen_destroy(struct pipe_screen *pscreen)
    if (screen->perfmon)
       etna_perfmon_del(screen->perfmon);
 
+   if (screen->compiler)
+      etna_compiler_destroy(screen->compiler);
+
    if (screen->pipe)
       etna_pipe_del(screen->pipe);
 
@@ -1041,6 +1044,10 @@ etna_screen_create(struct etna_device *dev, struct etna_gpu *gpu,
    pscreen->is_format_supported = etna_screen_is_format_supported;
    pscreen->query_dmabuf_modifiers = etna_screen_query_dmabuf_modifiers;
 
+   screen->compiler = etna_compiler_create();
+   if (!screen->compiler)
+      goto fail;
+
    etna_fence_screen_init(pscreen);
    etna_query_screen_init(pscreen);
    etna_resource_screen_init(pscreen);
index 1bdae5a163a6e86163f219425700b2e6ef9ec750..59e186fb12a68fb4edc61eb066d2186f14023b34 100644 (file)
@@ -85,6 +85,7 @@ struct etna_screen {
 
    uint32_t drm_version;
 
+   struct etna_compiler *compiler;
    nir_shader_compiler_options options;
 };
 
index 7eaa4cca92cf2bd29e205b1eeb794b724c3f3244..7b7ce26056e8515afe883ff0131ca57e56952e81 100644 (file)
@@ -35,6 +35,7 @@ files_etnaviv = files(
   'etnaviv_blt.h',
   'etnaviv_clear_blit.c',
   'etnaviv_clear_blit.h',
+  'etnaviv_compiler.c',
   'etnaviv_compiler.h',
   'etnaviv_compiler_nir.c',
   'etnaviv_compiler_nir_emit.c',