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

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

Issue 10905065: Revert r11772: Add check for non-smi to the IL and use it for class checks. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.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 #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/dart_entry.h" 8 #include "vm/dart_entry.h"
9 #include "vm/flow_graph_allocator.h" 9 #include "vm/flow_graph_allocator.h"
10 #include "vm/flow_graph_builder.h" 10 #include "vm/flow_graph_builder.h"
(...skipping 1047 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 RawAbstractType* CheckClassComp::CompileType() const { 1058 RawAbstractType* CheckClassComp::CompileType() const {
1059 return AbstractType::null(); 1059 return AbstractType::null();
1060 } 1060 }
1061 1061
1062 1062
1063 RawAbstractType* CheckSmiComp::CompileType() const { 1063 RawAbstractType* CheckSmiComp::CompileType() const {
1064 return AbstractType::null(); 1064 return AbstractType::null();
1065 } 1065 }
1066 1066
1067 1067
1068 RawAbstractType* CheckNonSmiComp::CompileType() const {
1069 return AbstractType::null();
1070 }
1071
1072
1073 RawAbstractType* CheckArrayBoundComp::CompileType() const { 1068 RawAbstractType* CheckArrayBoundComp::CompileType() const {
1074 return AbstractType::null(); 1069 return AbstractType::null();
1075 } 1070 }
1076 1071
1077 1072
1078 RawAbstractType* CheckEitherNonSmiComp::CompileType() const { 1073 RawAbstractType* CheckEitherNonSmiComp::CompileType() const {
1079 return AbstractType::null(); 1074 return AbstractType::null();
1080 } 1075 }
1081 1076
1082 1077
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
1521 value->set_use_index(i); 1516 value->set_use_index(i);
1522 value->AddToEnvUseList(); 1517 value->AddToEnvUseList();
1523 } 1518 }
1524 instr->set_env(copy); 1519 instr->set_env(copy);
1525 } 1520 }
1526 1521
1527 1522
1528 #undef __ 1523 #undef __
1529 1524
1530 } // namespace dart 1525 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698