Mesa (main): pan/va: Unit test va_mark_last

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jun 21 22:41:34 UTC 2022


Module: Mesa
Branch: main
Commit: 40accfd3b71dc1c15e9b911f0f0e56b527e4e256
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=40accfd3b71dc1c15e9b911f0f0e56b527e4e256

Author: Alyssa Rosenzweig <alyssa at collabora.com>
Date:   Wed Jun 15 17:19:56 2022 -0400

pan/va: Unit test va_mark_last

This pass is super easy to unit test, so we have no excuse not to test
thoroughly. va_mark_last only inserts annotations in a shader without any
annotations, so our test cases are simply annotated shaders. The CASE macro just
has to compare the case against the case with the annotations stripped and added
back with va_mark_last.

In retrospect, I should have used that technique for the flow control insertion
tests too.

Signed-off-by: Alyssa Rosenzweig <alyssa at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17091>

---

 src/panfrost/bifrost/meson.build                   |   1 +
 .../bifrost/valhall/test/test-mark-last.cpp        | 187 +++++++++++++++++++++
 2 files changed, 188 insertions(+)

diff --git a/src/panfrost/bifrost/meson.build b/src/panfrost/bifrost/meson.build
index a91d07efff1..161dd4b40b0 100644
--- a/src/panfrost/bifrost/meson.build
+++ b/src/panfrost/bifrost/meson.build
@@ -175,6 +175,7 @@ if with_tests
         'valhall/test/test-insert-flow.cpp',
         'valhall/test/test-lower-isel.cpp',
         'valhall/test/test-lower-constants.cpp',
+        'valhall/test/test-mark-last.cpp',
         'valhall/test/test-merge-flow.cpp',
         'valhall/test/test-packing.cpp',
       ),
diff --git a/src/panfrost/bifrost/valhall/test/test-mark-last.cpp b/src/panfrost/bifrost/valhall/test/test-mark-last.cpp
new file mode 100644
index 00000000000..ae45c5c9027
--- /dev/null
+++ b/src/panfrost/bifrost/valhall/test/test-mark-last.cpp
@@ -0,0 +1,187 @@
+/*
+ * Copyright (C) 2022 Collabora, Ltd.
+ *
+ * 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, sublicense,
+ * 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 NONINFRINGEMENT.  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.
+ */
+
+#include "bi_test.h"
+#include "bi_builder.h"
+#include "va_compiler.h"
+#include "valhall_enums.h"
+
+#include <gtest/gtest.h>
+
+#define R(x) bi_register(x)
+#define DR(x) bi_discard(R(x))
+
+static void
+strip_discard(bi_context *ctx)
+{
+   bi_foreach_instr_global(ctx, I) {
+      bi_foreach_src(I, s)
+         I->src[s].discard = false;
+   }
+}
+
+#define CASE(test) do { \
+   void *mem_ctx = ralloc_context(NULL); \
+   bi_builder *A = bit_builder(mem_ctx); \
+   bi_builder *B = bit_builder(mem_ctx); \
+   { \
+      UNUSED bi_builder *b = A; \
+      test; \
+   } \
+   strip_discard(A->shader); \
+   va_mark_last(A->shader); \
+   { \
+      UNUSED bi_builder *b = B; \
+      test; \
+   } \
+   ASSERT_SHADER_EQUAL(A->shader, B->shader); \
+   ralloc_free(mem_ctx); \
+} while(0)
+
+TEST(MarkLast, Simple) {
+   CASE(bi_fadd_f32_to(b, R(0), DR(0), DR(1)));
+
+   CASE({
+        bi_fadd_f32_to(b, R(2), R(0), DR(1));
+        bi_fadd_f32_to(b, R(0), DR(0), DR(2));
+   });
+}
+
+TEST(MarkLast, SameSourceAndDestination) {
+   CASE({
+         bi_fadd_f32_to(b, R(0), DR(0), DR(0));
+         bi_fadd_f32_to(b, R(0), DR(0), DR(0));
+         bi_fadd_f32_to(b, R(0), DR(0), DR(0));
+   });
+}
+
+TEST(MarkLast, StagingReadBefore) {
+   CASE({
+         bi_fadd_f32_to(b, R(9), R(2), DR(7));
+         bi_st_tile(b, R(0), DR(4), DR(5), DR(6), BI_REGISTER_FORMAT_F32, BI_VECSIZE_V4);
+   });
+}
+
+TEST(MarkLast, StagingReadAfter) {
+   CASE({
+         bi_st_tile(b, R(0), DR(4), DR(5), DR(6), BI_REGISTER_FORMAT_F32, BI_VECSIZE_V4);
+         bi_fadd_f32_to(b, R(9), R(2), DR(7));
+   });
+}
+
+TEST(MarkLast, NonstagingSourceToAsync) {
+   CASE({
+         bi_st_tile(b, R(0), R(4), R(5), DR(6), BI_REGISTER_FORMAT_F32, BI_VECSIZE_V4);
+         bi_fadd_f32_to(b, R(9), DR(4), DR(5));
+   });
+}
+
+TEST(MarkLast, Both64) {
+   CASE(bi_load_i32_to(b, R(0), DR(8), DR(9), BI_SEG_NONE, 0));
+}
+
+TEST(MarkLast, Neither64ThenBoth) {
+   CASE({
+         bi_load_i32_to(b, R(0), R(8), R(9), BI_SEG_NONE, 0);
+         bi_load_i32_to(b, R(1), DR(8), DR(9), BI_SEG_NONE, 8);
+   });
+}
+
+TEST(MarkLast, Half64) {
+   CASE({
+         bi_load_i32_to(b, R(0), R(8), R(9), BI_SEG_NONE, 0);
+         bi_fadd_f32_to(b, R(8), DR(8), DR(8));
+   });
+
+   CASE({
+         bi_load_i32_to(b, R(0), R(8), R(9), BI_SEG_NONE, 0);
+         bi_fadd_f32_to(b, R(9), DR(9), DR(9));
+   });
+}
+
+TEST(MarkLast, RegisterBlendDescriptor) {
+   CASE({
+         bi_blend_to(b, bi_null(), R(0), DR(60), DR(4), DR(5), bi_null(),
+                     BI_REGISTER_FORMAT_F32, 4, 0);
+   });
+
+   CASE({
+         bi_blend_to(b, bi_null(), R(0), DR(60), R(4), R(5), bi_null(),
+                     BI_REGISTER_FORMAT_F32, 4, 0);
+         bi_fadd_f32_to(b, R(4), DR(4), DR(7));
+   });
+
+   CASE({
+         bi_blend_to(b, bi_null(), R(0), DR(60), R(4), R(5), bi_null(),
+                     BI_REGISTER_FORMAT_F32, 4, 0);
+         bi_fadd_f32_to(b, R(4), DR(5), DR(7));
+   });
+}
+
+TEST(MarkLast, ControlFlowAllFeatures) {
+   /*      A
+    *     / \
+    *    B   C
+    */
+   CASE({
+      bi_block *A = bi_start_block(&b->shader->blocks);
+      bi_block *B = bit_block(b->shader);
+      bi_block *C = bit_block(b->shader);
+
+      bi_block_add_successor(A, B);
+      bi_block_add_successor(A, C);
+
+      b->cursor = bi_after_block(A);
+      {
+         bi_instr *I =
+            bi_st_tile(b, R(10), DR(14), DR(15), DR(16),
+                       BI_REGISTER_FORMAT_F32, BI_VECSIZE_V4);
+         I->slot = 2;
+
+         bi_load_i32_to(b, R(20), R(28), R(29), BI_SEG_NONE, 0);
+
+         bi_fadd_f32_to(b, R(0), DR(0), R(3));
+         bi_fadd_f32_to(b, R(0), DR(0), R(7));
+         bi_fma_f32_to(b, R(2), R(0), R(1), DR(4));
+      }
+
+      b->cursor = bi_after_block(B);
+      {
+         bi_fadd_f32_to(b, R(2), DR(0), DR(2));
+         bi_fadd_f32_to(b, R(2), DR(2), DR(3));
+         bi_fadd_f32_to(b, R(2), DR(2), DR(7));
+         bi_fadd_f32_to(b, R(2), DR(2), DR(29));
+      }
+
+      b->cursor = bi_after_block(C);
+      {
+         bi_fadd_f32_to(b, R(2), DR(1), DR(2));
+         bi_fadd_f32_to(b, R(2), DR(2), DR(7));
+
+         bi_instr *I = bi_fadd_f32_to(b, R(2), DR(2), R(13));
+         I->flow = VA_FLOW_WAIT2;
+
+         bi_fadd_f32_to(b, R(2), DR(2), DR(11));
+      }
+   });
+}



More information about the mesa-commit mailing list