From: Dave Airlie Date: Thu, 1 Feb 2018 02:06:40 +0000 (+1000) Subject: r600/sb: just add some missing debug bits X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0491d5425f16dfd4f8834e0a17b1e90e54b004cf;p=mesa.git r600/sb: just add some missing debug bits Signed-off-by: Dave Airlie --- diff --git a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp index 3b5d9e77b2e..9093531fb3c 100644 --- a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp +++ b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp @@ -330,6 +330,21 @@ static void print_src(sb_ostream &s, bc_alu &alu, unsigned idx) case ALU_SRC_0: s << "0"; break; + case ALU_SRC_MASK_LO: + s << "MASK_LO"; + break; + case ALU_SRC_MASK_HI: + s << "MASK_HI"; + break; + case ALU_SRC_HW_WAVE_ID: + s << "HW_WAVE_ID"; + break; + case ALU_SRC_SIMD_ID: + s << "SIMD_ID"; + break; + case ALU_SRC_SE_ID: + s << "SE_ID"; + break; default: s << "??IMM_" << sel; break;