| 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/il_printer.h" | 5 #include "vm/il_printer.h" |
| 6 | 6 |
| 7 #include "vm/flow_graph_range_analysis.h" | 7 #include "vm/flow_graph_range_analysis.h" |
| 8 #include "vm/intermediate_language.h" | 8 #include "vm/intermediate_language.h" |
| 9 #include "vm/os.h" | 9 #include "vm/os.h" |
| 10 #include "vm/parser.h" | 10 #include "vm/parser.h" |
| (...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1089 case kUnboxedMint: | 1089 case kUnboxedMint: |
| 1090 return "mint"; | 1090 return "mint"; |
| 1091 case kUnboxedFloat32x4: | 1091 case kUnboxedFloat32x4: |
| 1092 return "float32x4"; | 1092 return "float32x4"; |
| 1093 case kUnboxedInt32x4: | 1093 case kUnboxedInt32x4: |
| 1094 return "int32x4"; | 1094 return "int32x4"; |
| 1095 case kUnboxedFloat64x2: | 1095 case kUnboxedFloat64x2: |
| 1096 return "float64x2"; | 1096 return "float64x2"; |
| 1097 case kPairOfTagged: | 1097 case kPairOfTagged: |
| 1098 return "tagged-pair"; | 1098 return "tagged-pair"; |
| 1099 case kPairOfUnboxedDouble: | |
| 1100 return "double-pair"; | |
| 1101 case kNoRepresentation: | 1099 case kNoRepresentation: |
| 1102 return "none"; | 1100 return "none"; |
| 1103 case kNumRepresentations: | 1101 case kNumRepresentations: |
| 1104 UNREACHABLE(); | 1102 UNREACHABLE(); |
| 1105 } | 1103 } |
| 1106 return "?"; | 1104 return "?"; |
| 1107 } | 1105 } |
| 1108 | 1106 |
| 1109 | 1107 |
| 1110 void PhiInstr::PrintTo(BufferFormatter* f) const { | 1108 void PhiInstr::PrintTo(BufferFormatter* f) const { |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1319 } | 1317 } |
| 1320 | 1318 |
| 1321 | 1319 |
| 1322 bool FlowGraphPrinter::ShouldPrint(const Function& function) { | 1320 bool FlowGraphPrinter::ShouldPrint(const Function& function) { |
| 1323 return false; | 1321 return false; |
| 1324 } | 1322 } |
| 1325 | 1323 |
| 1326 #endif // !PRODUCT | 1324 #endif // !PRODUCT |
| 1327 | 1325 |
| 1328 } // namespace dart | 1326 } // namespace dart |
| OLD | NEW |