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

Side by Side Diff: runtime/vm/intermediate_language.cc

Issue 10431006: First step toward an optimizing compiler: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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
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 #include "vm/intermediate_language.h" 5 #include "vm/intermediate_language.h"
6 6
7 #include "vm/bit_vector.h" 7 #include "vm/bit_vector.h"
8 #include "vm/flow_graph_builder.h" 8 #include "vm/flow_graph_builder.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/os.h" 10 #include "vm/os.h"
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 return AbstractType::null(); 546 return AbstractType::null();
547 } 547 }
548 548
549 549
550 RawAbstractType* CatchEntryComp::StaticType() const { 550 RawAbstractType* CatchEntryComp::StaticType() const {
551 UNREACHABLE(); 551 UNREACHABLE();
552 return AbstractType::null(); 552 return AbstractType::null();
553 } 553 }
554 554
555 555
556 RawAbstractType* BinaryOpComp::StaticType() const {
557 // TODO(srdjan): Compute based on input types (ICData).
558 return Type::DynamicType();
559 }
560
561
556 } // namespace dart 562 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698