| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #ifndef VM_FLOW_GRAPH_OPTIMIZER_H_ | 5 #ifndef VM_FLOW_GRAPH_OPTIMIZER_H_ |
| 6 #define VM_FLOW_GRAPH_OPTIMIZER_H_ | 6 #define VM_FLOW_GRAPH_OPTIMIZER_H_ |
| 7 | 7 |
| 8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
| 9 #include "vm/flow_graph.h" | 9 #include "vm/flow_graph.h" |
| 10 | 10 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 bool TryReplaceWithLoadIndexed(InstanceCallInstr* call); | 74 bool TryReplaceWithLoadIndexed(InstanceCallInstr* call); |
| 75 | 75 |
| 76 bool TryReplaceWithBinaryOp(InstanceCallInstr* call, Token::Kind op_kind); | 76 bool TryReplaceWithBinaryOp(InstanceCallInstr* call, Token::Kind op_kind); |
| 77 bool TryReplaceWithUnaryOp(InstanceCallInstr* call, Token::Kind op_kind); | 77 bool TryReplaceWithUnaryOp(InstanceCallInstr* call, Token::Kind op_kind); |
| 78 | 78 |
| 79 bool TryInlineInstanceGetter(InstanceCallInstr* call); | 79 bool TryInlineInstanceGetter(InstanceCallInstr* call); |
| 80 bool TryInlineInstanceSetter(InstanceCallInstr* call, | 80 bool TryInlineInstanceSetter(InstanceCallInstr* call, |
| 81 const ICData& unary_ic_data); | 81 const ICData& unary_ic_data); |
| 82 | 82 |
| 83 bool TryInlineInstanceMethod(InstanceCallInstr* call); | 83 bool TryInlineInstanceMethod(InstanceCallInstr* call); |
| 84 bool TryInlineFloat32x4Method(InstanceCallInstr* call, |
| 85 MethodRecognizer::Kind recognized_kind); |
| 84 void ReplaceWithInstanceOf(InstanceCallInstr* instr); | 86 void ReplaceWithInstanceOf(InstanceCallInstr* instr); |
| 85 void ReplaceWithTypeCast(InstanceCallInstr* instr); | 87 void ReplaceWithTypeCast(InstanceCallInstr* instr); |
| 86 | 88 |
| 87 LoadIndexedInstr* BuildStringCodeUnitAt(InstanceCallInstr* call, | 89 LoadIndexedInstr* BuildStringCodeUnitAt(InstanceCallInstr* call, |
| 88 intptr_t cid); | 90 intptr_t cid); |
| 89 | 91 |
| 90 bool BuildByteArrayViewLoad(InstanceCallInstr* call, | 92 bool BuildByteArrayViewLoad(InstanceCallInstr* call, |
| 91 intptr_t receiver_cid, | 93 intptr_t receiver_cid, |
| 92 intptr_t view_cid); | 94 intptr_t view_cid); |
| 93 bool BuildByteArrayViewStore(InstanceCallInstr* call, | 95 bool BuildByteArrayViewStore(InstanceCallInstr* call, |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 // platform. | 317 // platform. |
| 316 class IfConverter : public AllStatic { | 318 class IfConverter : public AllStatic { |
| 317 public: | 319 public: |
| 318 static void Simplify(FlowGraph* flow_graph); | 320 static void Simplify(FlowGraph* flow_graph); |
| 319 }; | 321 }; |
| 320 | 322 |
| 321 | 323 |
| 322 } // namespace dart | 324 } // namespace dart |
| 323 | 325 |
| 324 #endif // VM_FLOW_GRAPH_OPTIMIZER_H_ | 326 #endif // VM_FLOW_GRAPH_OPTIMIZER_H_ |
| OLD | NEW |