From: Ilia Mirkin Date: Tue, 31 May 2016 04:33:19 +0000 (-0400) Subject: nv50/ir: print relevant file's bitset when showing RA info X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d873608bcf97cddaaca396d29f065657c1f63039;p=mesa.git nv50/ir: print relevant file's bitset when showing RA info Signed-off-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp index 6b52d7b4d33..5bb6f7849b1 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp @@ -101,7 +101,7 @@ public: return (size < 4) ? u : ((u << unit[f]) / 4); } - void print() const; + void print(DataFile f) const; const bool restrictedGPR16Range; @@ -156,10 +156,10 @@ RegisterSet::intersect(DataFile f, const RegisterSet *set) } void -RegisterSet::print() const +RegisterSet::print(DataFile f) const { INFO("GPR:"); - bits[FILE_GPR].print(); + bits[f].print(); INFO("\n"); } @@ -1424,7 +1424,7 @@ GCRA::selectRegisters() continue; LValue *lval = node->getValue(); if (prog->dbgFlags & NV50_IR_DEBUG_REG_ALLOC) - regs.print(); + regs.print(node->f); bool ret = regs.assign(node->reg, node->f, node->colors); if (ret) { INFO_DBG(prog->dbgFlags, REG_ALLOC, "assigned reg %i\n", node->reg);