[Mesa-dev] [PATCH 04/15] gallium: replace pipe_driver_query_info::max_value by a union v2

Samuel Pitoiset samuel.pitoiset at gmail.com
Fri Jul 11 11:23:01 PDT 2014


This will be used to return different numeric types for
driver queries.

V2:
 - use float instead of double
 - reorder pipe_numeric_type_union to avoid bad initializers
 - rename ui to u64 and i to u32 according to
   gl_perf_monitor_counter_value
 - use uint32_t instead of int64_t according to
   gl_perf_monitor_counter_value

Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
 src/gallium/auxiliary/hud/hud_driver_query.c    |  2 +-
 src/gallium/drivers/freedreno/freedreno_query.c | 12 ++++++------
 src/gallium/drivers/nouveau/nvc0/nvc0_query.c   |  8 ++++----
 src/gallium/drivers/radeon/r600_pipe_common.c   | 16 ++++++++--------
 src/gallium/drivers/svga/svga_screen.c          |  6 +++---
 src/gallium/include/pipe/p_defines.h            |  9 ++++++++-
 6 files changed, 30 insertions(+), 23 deletions(-)

diff --git a/src/gallium/auxiliary/hud/hud_driver_query.c b/src/gallium/auxiliary/hud/hud_driver_query.c
index b48708c..8448cb7 100644
--- a/src/gallium/auxiliary/hud/hud_driver_query.c
+++ b/src/gallium/auxiliary/hud/hud_driver_query.c
@@ -205,6 +205,6 @@ hud_driver_query_install(struct hud_pane *pane, struct pipe_context *pipe,
       return FALSE;
 
    hud_pipe_query_install(pane, pipe, query.name, query.query_type, 0,
-                      query.max_value, query.uses_byte_units);
+                          query.max_value.u64, query.uses_byte_units);
    return TRUE;
 }
diff --git a/src/gallium/drivers/freedreno/freedreno_query.c b/src/gallium/drivers/freedreno/freedreno_query.c
index cb3b49a..6f01e03 100644
--- a/src/gallium/drivers/freedreno/freedreno_query.c
+++ b/src/gallium/drivers/freedreno/freedreno_query.c
@@ -86,12 +86,12 @@ fd_get_driver_query_info(struct pipe_screen *pscreen,
 		unsigned index, struct pipe_driver_query_info *info)
 {
 	struct pipe_driver_query_info list[] = {
-			{"draw-calls", FD_QUERY_DRAW_CALLS, 0},
-			{"batches", FD_QUERY_BATCH_TOTAL, 0},
-			{"batches-sysmem", FD_QUERY_BATCH_SYSMEM, 0},
-			{"batches-gmem", FD_QUERY_BATCH_GMEM, 0},
-			{"restores", FD_QUERY_BATCH_RESTORE, 0},
-			{"prims-emitted", PIPE_QUERY_PRIMITIVES_EMITTED, 0},
+			{"draw-calls", FD_QUERY_DRAW_CALLS, {0}},
+			{"batches", FD_QUERY_BATCH_TOTAL, {0}},
+			{"batches-sysmem", FD_QUERY_BATCH_SYSMEM, {0}},
+			{"batches-gmem", FD_QUERY_BATCH_GMEM, {0}},
+			{"restores", FD_QUERY_BATCH_RESTORE, {0}},
+			{"prims-emitted", PIPE_QUERY_PRIMITIVES_EMITTED, {0}},
 	};
 
 	if (!info)
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_query.c b/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
index 50cef1e..c76cd43 100644
--- a/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
+++ b/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
@@ -1409,7 +1409,7 @@ nvc0_screen_get_driver_query_info(struct pipe_screen *pscreen,
    if (id < NVC0_QUERY_DRV_STAT_COUNT) {
       info->name = nvc0_drv_stat_names[id];
       info->query_type = NVC0_QUERY_DRV_STAT(id);
-      info->max_value = ~0ULL;
+      info->max_value.u64 = ~0ULL;
       info->uses_byte_units = !!strstr(info->name, "bytes");
       return 1;
    } else
@@ -1418,7 +1418,7 @@ nvc0_screen_get_driver_query_info(struct pipe_screen *pscreen,
       if (screen->base.class_3d >= NVE4_3D_CLASS) {
          info->name = nve4_pm_query_names[id - NVC0_QUERY_DRV_STAT_COUNT];
          info->query_type = NVE4_PM_QUERY(id - NVC0_QUERY_DRV_STAT_COUNT);
-         info->max_value = (id < NVE4_PM_QUERY_METRIC_MP_OCCUPANCY) ?
+         info->max_value.u64 = (id < NVE4_PM_QUERY_METRIC_MP_OCCUPANCY) ?
             ~0ULL : 100;
          info->uses_byte_units = FALSE;
          return 1;
@@ -1426,7 +1426,7 @@ nvc0_screen_get_driver_query_info(struct pipe_screen *pscreen,
       if (screen->compute) {
          info->name = nvc0_pm_query_names[id - NVC0_QUERY_DRV_STAT_COUNT];
          info->query_type = NVC0_PM_QUERY(id - NVC0_QUERY_DRV_STAT_COUNT);
-         info->max_value = ~0ULL;
+         info->max_value.u64 = ~0ULL;
          info->uses_byte_units = FALSE;
          return 1;
       }
@@ -1434,7 +1434,7 @@ nvc0_screen_get_driver_query_info(struct pipe_screen *pscreen,
    /* user asked for info about non-existing query */
    info->name = "this_is_not_the_query_you_are_looking_for";
    info->query_type = 0xdeadd01d;
-   info->max_value = 0;
+   info->max_value.u64 = 0;
    info->uses_byte_units = FALSE;
    return 0;
 }
diff --git a/src/gallium/drivers/radeon/r600_pipe_common.c b/src/gallium/drivers/radeon/r600_pipe_common.c
index 46e8a79..bcddde1 100644
--- a/src/gallium/drivers/radeon/r600_pipe_common.c
+++ b/src/gallium/drivers/radeon/r600_pipe_common.c
@@ -546,14 +546,14 @@ static int r600_get_driver_query_info(struct pipe_screen *screen,
 {
 	struct r600_common_screen *rscreen = (struct r600_common_screen*)screen;
 	struct pipe_driver_query_info list[] = {
-		{"draw-calls", R600_QUERY_DRAW_CALLS, 0},
-		{"requested-VRAM", R600_QUERY_REQUESTED_VRAM, rscreen->info.vram_size, TRUE},
-		{"requested-GTT", R600_QUERY_REQUESTED_GTT, rscreen->info.gart_size, TRUE},
-		{"buffer-wait-time", R600_QUERY_BUFFER_WAIT_TIME, 0, FALSE},
-		{"num-cs-flushes", R600_QUERY_NUM_CS_FLUSHES, 0, FALSE},
-		{"num-bytes-moved", R600_QUERY_NUM_BYTES_MOVED, 0, TRUE},
-		{"VRAM-usage", R600_QUERY_VRAM_USAGE, rscreen->info.vram_size, TRUE},
-		{"GTT-usage", R600_QUERY_GTT_USAGE, rscreen->info.gart_size, TRUE},
+		{"draw-calls", R600_QUERY_DRAW_CALLS, {0},
+		{"requested-VRAM", R600_QUERY_REQUESTED_VRAM, {rscreen->info.vram_size}, TRUE},
+		{"requested-GTT", R600_QUERY_REQUESTED_GTT, {rscreen->info.gart_size}, TRUE},
+		{"buffer-wait-time", R600_QUERY_BUFFER_WAIT_TIME, {0}, FALSE},
+		{"num-cs-flushes", R600_QUERY_NUM_CS_FLUSHES, {0}, FALSE},
+		{"num-bytes-moved", R600_QUERY_NUM_BYTES_MOVED, {0}, TRUE},
+		{"VRAM-usage", R600_QUERY_VRAM_USAGE, {rscreen->info.vram_size}, TRUE},
+		{"GTT-usage", R600_QUERY_GTT_USAGE, {rscreen->info.gart_size}, TRUE},
 	};
 
 	if (!info)
diff --git a/src/gallium/drivers/svga/svga_screen.c b/src/gallium/drivers/svga/svga_screen.c
index b213b04..f34664d 100644
--- a/src/gallium/drivers/svga/svga_screen.c
+++ b/src/gallium/drivers/svga/svga_screen.c
@@ -539,9 +539,9 @@ svga_get_driver_query_info(struct pipe_screen *screen,
                            struct pipe_driver_query_info *info)
 {
    static const struct pipe_driver_query_info queries[] = {
-      {"draw-calls", SVGA_QUERY_DRAW_CALLS, 0, FALSE},
-      {"fallbacks", SVGA_QUERY_FALLBACKS, 0, FALSE},
-      {"memory-used", SVGA_QUERY_MEMORY_USED, 0, TRUE}
+      {"draw-calls", SVGA_QUERY_DRAW_CALLS, {0}, FALSE},
+      {"fallbacks", SVGA_QUERY_FALLBACKS, {0}, FALSE},
+      {"memory-used", SVGA_QUERY_MEMORY_USED, {0}, TRUE}
    };
 
    if (!info)
diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h
index 4a4408d..dba1075 100644
--- a/src/gallium/include/pipe/p_defines.h
+++ b/src/gallium/include/pipe/p_defines.h
@@ -743,11 +743,18 @@ enum pipe_driver_query_type
    PIPE_DRIVER_QUERY_TYPE_PERCENTAGE = 3,
 };
 
+union pipe_numeric_type_union
+{
+   uint64_t u64;
+   uint32_t u32;
+   float f;
+};
+
 struct pipe_driver_query_info
 {
    const char *name;
    unsigned query_type; /* PIPE_QUERY_DRIVER_SPECIFIC + i */
-   uint64_t max_value; /* max value that can be returned */
+   union pipe_numeric_type_union max_value; /* max value that can be returned */
    boolean uses_byte_units; /* whether the result is in bytes */
    enum pipe_driver_query_type type;
    unsigned group_id;
-- 
2.0.0



More information about the mesa-dev mailing list