From c0d92078bbce7c2d8f017bd7d9c86f339a751bdc Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 29 Jun 2016 15:16:35 +0200 Subject: [PATCH] nv50/ir: print SHFL subops in debug mode Signed-off-by: Samuel Pitoiset Reviewed-by: Ilia Mirkin --- src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp index e4aebaa500b..246e519b263 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp @@ -210,6 +210,11 @@ static const char *subfmOpStr[] = "", "3d" }; +static const char *shflOpStr[] = +{ + "idx", "up", "down", "bfly" +}; + static const char *DataTypeStr[] = { "-", @@ -562,6 +567,10 @@ void Instruction::print() const if (subOp < ARRAY_SIZE(subfmOpStr)) PRINT("%s ", subfmOpStr[subOp]); break; + case OP_SHFL: + if (subOp < ARRAY_SIZE(shflOpStr)) + PRINT("%s ", shflOpStr[subOp]); + break; default: if (subOp) PRINT("(SUBOP:%u) ", subOp); -- 2.30.2