From 6dfedb1a0545781d1f585376d4a34be484b6193d Mon Sep 17 00:00:00 2001 From: Zhigang Gong Date: Mon, 3 Nov 2014 16:26:17 +0800 Subject: GBE: remove useless debug info. This debug information is not useful now. Remove them to avoid confusing. Signed-off-by: Zhigang Gong --- backend/src/backend/gen_insn_selection.cpp | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/backend/src/backend/gen_insn_selection.cpp b/backend/src/backend/gen_insn_selection.cpp index 64e9fd8f..a9ef8187 100644 --- a/backend/src/backend/gen_insn_selection.cpp +++ b/backend/src/backend/gen_insn_selection.cpp @@ -802,13 +802,8 @@ namespace gbe } } - if (poolOffset > ctx.reservedSpillRegs) { - if (GBE_DEBUG) - std::cerr << "Instruction (#" << (uint32_t)insn.opcode - << ") src too large pooloffset " - << (uint32_t)poolOffset << std::endl; + if (poolOffset > ctx.reservedSpillRegs) return false; - } // FIXME, to support post register allocation scheduling, // put all the reserved register to the spill/unspill's destination registers. // This is not the best way. We need to refine the spill/unspill instruction to @@ -872,13 +867,8 @@ namespace gbe } } - if (poolOffset > ctx.reservedSpillRegs){ - if (GBE_DEBUG) - std::cerr << "Instruction (#" << (uint32_t)insn.opcode - << ") dst too large pooloffset " - << (uint32_t)poolOffset << std::endl; + if (poolOffset > ctx.reservedSpillRegs) return false; - } while(!regSet.empty()) { struct RegSlot regSlot = regSet.back(); regSet.pop_back(); -- cgit v1.2.3