Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: runtime/vm/flow_graph_optimizer.h

Issue 1016973002: Move CHA state keeping from Isolate to Thread. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « runtime/vm/compiler.cc ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698