| 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 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1007 RawAbstractType* BinaryMintOpComp::CompileType() const { | 1007 RawAbstractType* BinaryMintOpComp::CompileType() const { |
| 1008 return Type::MintType(); | 1008 return Type::MintType(); |
| 1009 } | 1009 } |
| 1010 | 1010 |
| 1011 | 1011 |
| 1012 intptr_t BinaryMintOpComp::ResultCid() const { | 1012 intptr_t BinaryMintOpComp::ResultCid() const { |
| 1013 return kMintCid; | 1013 return kMintCid; |
| 1014 } | 1014 } |
| 1015 | 1015 |
| 1016 | 1016 |
| 1017 RawAbstractType* BinaryDoubleOpComp::CompileType() const { | |
| 1018 return Type::Double(); | |
| 1019 } | |
| 1020 | |
| 1021 | |
| 1022 intptr_t BinaryDoubleOpComp::ResultCid() const { | |
| 1023 return kDoubleCid; | |
| 1024 } | |
| 1025 | |
| 1026 | |
| 1027 RawAbstractType* UnboxedDoubleBinaryOpComp::CompileType() const { | 1017 RawAbstractType* UnboxedDoubleBinaryOpComp::CompileType() const { |
| 1028 return Type::Double(); | 1018 return Type::Double(); |
| 1029 } | 1019 } |
| 1030 | 1020 |
| 1031 | 1021 |
| 1032 RawAbstractType* UnboxDoubleComp::CompileType() const { | 1022 RawAbstractType* UnboxDoubleComp::CompileType() const { |
| 1033 return Type::null(); | 1023 return Type::null(); |
| 1034 } | 1024 } |
| 1035 | 1025 |
| 1036 | 1026 |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1526 value->set_use_index(i); | 1516 value->set_use_index(i); |
| 1527 value->AddToEnvUseList(); | 1517 value->AddToEnvUseList(); |
| 1528 } | 1518 } |
| 1529 instr->set_env(copy); | 1519 instr->set_env(copy); |
| 1530 } | 1520 } |
| 1531 | 1521 |
| 1532 | 1522 |
| 1533 #undef __ | 1523 #undef __ |
| 1534 | 1524 |
| 1535 } // namespace dart | 1525 } // namespace dart |
| OLD | NEW |