Chromium Code Reviews| Index: vm/compiler.cc |
| =================================================================== |
| --- vm/compiler.cc (revision 8190) |
| +++ vm/compiler.cc (working copy) |
| @@ -195,7 +195,13 @@ |
| for (intptr_t i = length - 1; i >= 0; --i) { |
| block_order.Add(graph_builder.postorder_block_entries()[i]); |
| } |
| + // TODO(fschneider): Temporarily disable on ia32 until all instruction |
|
regis
2012/06/01 13:08:41
instructions
Florian Schneider
2012/06/01 16:05:05
Done.
|
| + // produced by the FlowGraphOptimizer are implemented on ia32. |
| +#if defined(TARGET_ARCH_X64) |
|
regis
2012/06/01 13:08:41
I would have made the workaround dependent on TARG
Florian Schneider
2012/06/01 16:05:05
Done.
|
| if (optimized) { |
| +#else |
| + if (optimized && !FLAG_use_new_compiler) { |
| +#endif |
| FlowGraphOptimizer optimizer(block_order); |
| optimizer.ApplyICData(); |
| } |