| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 Definition* left_instr, | 246 Definition* left_instr, |
| 247 Definition* right_instr); | 247 Definition* right_instr); |
| 248 void TryMergeTruncDivMod(GrowableArray<BinarySmiOpInstr*>* merge_candidates); | 248 void TryMergeTruncDivMod(GrowableArray<BinarySmiOpInstr*>* merge_candidates); |
| 249 void TryMergeMathUnary(GrowableArray<MathUnaryInstr*>* merge_candidates); | 249 void TryMergeMathUnary(GrowableArray<MathUnaryInstr*>* merge_candidates); |
| 250 | 250 |
| 251 void AppendLoadIndexedForMerged(Definition* instr, intptr_t ix, intptr_t cid); | 251 void AppendLoadIndexedForMerged(Definition* instr, intptr_t ix, intptr_t cid); |
| 252 void AppendExtractNthOutputForMerged(Definition* instr, intptr_t ix, | 252 void AppendExtractNthOutputForMerged(Definition* instr, intptr_t ix, |
| 253 Representation rep, intptr_t cid); | 253 Representation rep, intptr_t cid); |
| 254 bool TryStringLengthOneEquality(InstanceCallInstr* call, Token::Kind op_kind); | 254 bool TryStringLengthOneEquality(InstanceCallInstr* call, Token::Kind op_kind); |
| 255 | 255 |
| 256 Thread* thread() const { return flow_graph_->thread(); } |
| 256 Isolate* isolate() const { return flow_graph_->isolate(); } | 257 Isolate* isolate() const { return flow_graph_->isolate(); } |
| 257 Zone* zone() const { return flow_graph_->zone(); } | 258 Zone* zone() const { return flow_graph_->zone(); } |
| 258 | 259 |
| 259 FlowGraph* flow_graph_; | 260 FlowGraph* flow_graph_; |
| 260 | 261 |
| 261 DISALLOW_COPY_AND_ASSIGN(FlowGraphOptimizer); | 262 DISALLOW_COPY_AND_ASSIGN(FlowGraphOptimizer); |
| 262 }; | 263 }; |
| 263 | 264 |
| 264 | 265 |
| 265 // Loop invariant code motion. | 266 // Loop invariant code motion. |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 // Optimize spill stores inside try-blocks by identifying values that always | 427 // Optimize spill stores inside try-blocks by identifying values that always |
| 427 // contain a single known constant at catch block entry. | 428 // contain a single known constant at catch block entry. |
| 428 class TryCatchAnalyzer : public AllStatic { | 429 class TryCatchAnalyzer : public AllStatic { |
| 429 public: | 430 public: |
| 430 static void Optimize(FlowGraph* flow_graph); | 431 static void Optimize(FlowGraph* flow_graph); |
| 431 }; | 432 }; |
| 432 | 433 |
| 433 } // namespace dart | 434 } // namespace dart |
| 434 | 435 |
| 435 #endif // VM_FLOW_GRAPH_OPTIMIZER_H_ | 436 #endif // VM_FLOW_GRAPH_OPTIMIZER_H_ |
| OLD | NEW |