| 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 #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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |