| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/flow_graph_optimizer.h" | 5 #include "vm/flow_graph_optimizer.h" |
| 6 | 6 |
| 7 #include "vm/bit_vector.h" | 7 #include "vm/bit_vector.h" |
| 8 #include "vm/cha.h" | 8 #include "vm/cha.h" |
| 9 #include "vm/compiler.h" | 9 #include "vm/compiler.h" |
| 10 #include "vm/cpu.h" | 10 #include "vm/cpu.h" |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 } | 155 } |
| 156 | 156 |
| 157 | 157 |
| 158 // TODO(srdjan): Test/support other number types as well. | 158 // TODO(srdjan): Test/support other number types as well. |
| 159 static bool IsNumberCid(intptr_t cid) { | 159 static bool IsNumberCid(intptr_t cid) { |
| 160 return (cid == kSmiCid) || (cid == kDoubleCid); | 160 return (cid == kSmiCid) || (cid == kDoubleCid); |
| 161 } | 161 } |
| 162 | 162 |
| 163 | 163 |
| 164 bool FlowGraphOptimizer::TryCreateICData(InstanceCallInstr* call) { | 164 bool FlowGraphOptimizer::TryCreateICData(InstanceCallInstr* call) { |
| 165 return false; | |
| 166 // TODO(srdjan): Investigate failures in: | 165 // TODO(srdjan): Investigate failures in: |
| 167 // corelib/big_integer_arith_vm_test | 166 // corelib/big_integer_arith_vm_test |
| 168 // dart2js/members_test | 167 // dart2js/members_test |
| 169 // language/try_catch_optimized1_test | 168 // language/try_catch_optimized1_test |
| 170 ASSERT(call->HasICData()); | 169 ASSERT(call->HasICData()); |
| 171 if (call->ic_data()->NumberOfUsedChecks() > 0) { | 170 if (call->ic_data()->NumberOfUsedChecks() > 0) { |
| 172 // This occurs when an instance call has too many checks, will be converted | 171 // This occurs when an instance call has too many checks, will be converted |
| 173 // to megamorphic call. | 172 // to megamorphic call. |
| 174 return false; | 173 return false; |
| 175 } | 174 } |
| (...skipping 8527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8703 | 8702 |
| 8704 // Insert materializations at environment uses. | 8703 // Insert materializations at environment uses. |
| 8705 for (intptr_t i = 0; i < exits_collector_.exits().length(); i++) { | 8704 for (intptr_t i = 0; i < exits_collector_.exits().length(); i++) { |
| 8706 CreateMaterializationAt( | 8705 CreateMaterializationAt( |
| 8707 exits_collector_.exits()[i], alloc, *slots); | 8706 exits_collector_.exits()[i], alloc, *slots); |
| 8708 } | 8707 } |
| 8709 } | 8708 } |
| 8710 | 8709 |
| 8711 | 8710 |
| 8712 } // namespace dart | 8711 } // namespace dart |
| OLD | NEW |