diff options
author | Zhigang Gong <zhigang.gong@intel.com> | 2014-11-03 16:26:17 +0800 |
---|---|---|
committer | Zhigang Gong <zhigang.gong@intel.com> | 2014-11-03 17:33:06 +0800 |
commit | 6dfedb1a0545781d1f585376d4a34be484b6193d (patch) | |
tree | 75d4b932b778578160c47bc40a0b49e1a8a83e9e | |
parent | 04435d59cd6462bdd7020a5294e062d3df9f0c00 (diff) |
GBE: remove useless debug info.vectoropt
This debug information is not useful now. Remove them to
avoid confusing.
Signed-off-by: Zhigang Gong <zhigang.gong@intel.com>
-rw-r--r-- | backend/src/backend/gen_insn_selection.cpp | 14 |
1 files 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(); |