| 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 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1291 RawAbstractType* DoubleToDoubleInstr::CompileType() const { | 1291 RawAbstractType* DoubleToDoubleInstr::CompileType() const { |
| 1292 return Type::Double(); | 1292 return Type::Double(); |
| 1293 } | 1293 } |
| 1294 | 1294 |
| 1295 | 1295 |
| 1296 RawAbstractType* SmiToDoubleInstr::CompileType() const { | 1296 RawAbstractType* SmiToDoubleInstr::CompileType() const { |
| 1297 return Type::Double(); | 1297 return Type::Double(); |
| 1298 } | 1298 } |
| 1299 | 1299 |
| 1300 | 1300 |
| 1301 RawAbstractType* DoubleToIntegerInstr::CompileType() const { |
| 1302 return Type::IntType(); |
| 1303 } |
| 1304 |
| 1305 |
| 1301 RawAbstractType* CheckClassInstr::CompileType() const { | 1306 RawAbstractType* CheckClassInstr::CompileType() const { |
| 1302 return AbstractType::null(); | 1307 return AbstractType::null(); |
| 1303 } | 1308 } |
| 1304 | 1309 |
| 1305 | 1310 |
| 1306 RawAbstractType* CheckSmiInstr::CompileType() const { | 1311 RawAbstractType* CheckSmiInstr::CompileType() const { |
| 1307 return AbstractType::null(); | 1312 return AbstractType::null(); |
| 1308 } | 1313 } |
| 1309 | 1314 |
| 1310 | 1315 |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2079 new_max = new_max.Clamp(); | 2084 new_max = new_max.Clamp(); |
| 2080 } | 2085 } |
| 2081 | 2086 |
| 2082 return Range::Update(&range_, new_min, new_max); | 2087 return Range::Update(&range_, new_min, new_max); |
| 2083 } | 2088 } |
| 2084 | 2089 |
| 2085 | 2090 |
| 2086 #undef __ | 2091 #undef __ |
| 2087 | 2092 |
| 2088 } // namespace dart | 2093 } // namespace dart |
| OLD | NEW |