Index: src/compiler/mips/instruction-selector-mips.cc |
diff --git a/src/compiler/mips/instruction-selector-mips.cc b/src/compiler/mips/instruction-selector-mips.cc |
index 6bd836a6e4831687b0c17eda73141cde4a7ab32d..b4ba49758b72b5e48a61a8508a0498679fb84877 100644 |
--- a/src/compiler/mips/instruction-selector-mips.cc |
+++ b/src/compiler/mips/instruction-selector-mips.cc |
@@ -1214,23 +1214,27 @@ void InstructionSelector::VisitSwitch(Node* node, const SwitchInfo& sw) { |
MipsOperandGenerator g(this); |
InstructionOperand value_operand = g.UseRegister(node->InputAt(0)); |
- // Emit either ArchTableSwitch or ArchLookupSwitch. |
- size_t table_space_cost = 9 + sw.value_range; |
- size_t table_time_cost = 3; |
- size_t lookup_space_cost = 2 + 2 * sw.case_count; |
- size_t lookup_time_cost = sw.case_count; |
- if (sw.case_count > 0 && |
- table_space_cost + 3 * table_time_cost <= |
- lookup_space_cost + 3 * lookup_time_cost && |
- sw.min_value > std::numeric_limits<int32_t>::min()) { |
- InstructionOperand index_operand = value_operand; |
- if (sw.min_value) { |
- index_operand = g.TempRegister(); |
- Emit(kMipsSub, index_operand, value_operand, |
- g.TempImmediate(sw.min_value)); |
+ // TODO(mips): TableSwitch is broken, as it messes with ra without saving it |
+ // properly (which breaks with frame elision, i.e. inside stubs). |
+ if (false) { |
+ // Emit either ArchTableSwitch or ArchLookupSwitch. |
+ size_t table_space_cost = 9 + sw.value_range; |
+ size_t table_time_cost = 3; |
+ size_t lookup_space_cost = 2 + 2 * sw.case_count; |
+ size_t lookup_time_cost = sw.case_count; |
+ if (sw.case_count > 0 && |
+ table_space_cost + 3 * table_time_cost <= |
+ lookup_space_cost + 3 * lookup_time_cost && |
+ sw.min_value > std::numeric_limits<int32_t>::min()) { |
+ InstructionOperand index_operand = value_operand; |
+ if (sw.min_value) { |
+ index_operand = g.TempRegister(); |
+ Emit(kMipsSub, index_operand, value_operand, |
+ g.TempImmediate(sw.min_value)); |
+ } |
+ // Generate a table lookup. |
+ return EmitTableSwitch(sw, index_operand); |
} |
- // Generate a table lookup. |
- return EmitTableSwitch(sw, index_operand); |
} |
// Generate a sequence of conditional jumps. |