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

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

Issue 99573005: Add mutable double boxes for fields. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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/flow_graph_allocator.cc ('k') | runtime/vm/flow_graph_builder.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_BUILDER_H_ 5 #ifndef VM_FLOW_GRAPH_BUILDER_H_
6 #define VM_FLOW_GRAPH_BUILDER_H_ 6 #define VM_FLOW_GRAPH_BUILDER_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 #include "platform/globals.h" 9 #include "platform/globals.h"
10 #include "vm/allocation.h" 10 #include "vm/allocation.h"
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 447
448 // Visit functions overridden by this class. 448 // Visit functions overridden by this class.
449 virtual void VisitLiteralNode(LiteralNode* node); 449 virtual void VisitLiteralNode(LiteralNode* node);
450 virtual void VisitAssignableNode(AssignableNode* node); 450 virtual void VisitAssignableNode(AssignableNode* node);
451 virtual void VisitConstructorCallNode(ConstructorCallNode* node); 451 virtual void VisitConstructorCallNode(ConstructorCallNode* node);
452 virtual void VisitBinaryOpNode(BinaryOpNode* node); 452 virtual void VisitBinaryOpNode(BinaryOpNode* node);
453 virtual void VisitConditionalExprNode(ConditionalExprNode* node); 453 virtual void VisitConditionalExprNode(ConditionalExprNode* node);
454 virtual void VisitLoadLocalNode(LoadLocalNode* node); 454 virtual void VisitLoadLocalNode(LoadLocalNode* node);
455 virtual void VisitStoreLocalNode(StoreLocalNode* node); 455 virtual void VisitStoreLocalNode(StoreLocalNode* node);
456 virtual void VisitStoreIndexedNode(StoreIndexedNode* node); 456 virtual void VisitStoreIndexedNode(StoreIndexedNode* node);
457 virtual void VisitStoreInstanceFieldNode(StoreInstanceFieldNode* node);
458 virtual void VisitInstanceSetterNode(InstanceSetterNode* node); 457 virtual void VisitInstanceSetterNode(InstanceSetterNode* node);
459 virtual void VisitThrowNode(ThrowNode* node); 458 virtual void VisitThrowNode(ThrowNode* node);
460 virtual void VisitClosureCallNode(ClosureCallNode* node); 459 virtual void VisitClosureCallNode(ClosureCallNode* node);
461 virtual void VisitStaticSetterNode(StaticSetterNode* node); 460 virtual void VisitStaticSetterNode(StaticSetterNode* node);
462 virtual void VisitStoreStaticFieldNode(StoreStaticFieldNode* node); 461 virtual void VisitStoreStaticFieldNode(StoreStaticFieldNode* node);
463 virtual void VisitTypeNode(TypeNode* node); 462 virtual void VisitTypeNode(TypeNode* node);
464 virtual void VisitLetNode(LetNode* node); 463 virtual void VisitLetNode(LetNode* node);
465 464
466 Value* value() const { return value_; } 465 Value* value() const { return value_; }
467 466
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 // Output parameters. 542 // Output parameters.
544 GrowableArray<TargetEntryInstr**> true_successor_addresses_; 543 GrowableArray<TargetEntryInstr**> true_successor_addresses_;
545 GrowableArray<TargetEntryInstr**> false_successor_addresses_; 544 GrowableArray<TargetEntryInstr**> false_successor_addresses_;
546 545
547 intptr_t condition_token_pos_; 546 intptr_t condition_token_pos_;
548 }; 547 };
549 548
550 } // namespace dart 549 } // namespace dart
551 550
552 #endif // VM_FLOW_GRAPH_BUILDER_H_ 551 #endif // VM_FLOW_GRAPH_BUILDER_H_
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_allocator.cc ('k') | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698