| 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 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1072 case kTagged: | 1072 case kTagged: |
| 1073 return "tagged"; | 1073 return "tagged"; |
| 1074 case kUntagged: | 1074 case kUntagged: |
| 1075 return "untagged"; | 1075 return "untagged"; |
| 1076 case kUnboxedDouble: | 1076 case kUnboxedDouble: |
| 1077 return "double"; | 1077 return "double"; |
| 1078 case kUnboxedInt32: | 1078 case kUnboxedInt32: |
| 1079 return "int32"; | 1079 return "int32"; |
| 1080 case kUnboxedUint32: | 1080 case kUnboxedUint32: |
| 1081 return "uint32"; | 1081 return "uint32"; |
| 1082 case kUnboxedMint: | 1082 case kUnboxedInt64: |
| 1083 return "mint"; | 1083 return "int64"; |
| 1084 case kUnboxedFloat32x4: | 1084 case kUnboxedFloat32x4: |
| 1085 return "float32x4"; | 1085 return "float32x4"; |
| 1086 case kUnboxedInt32x4: | 1086 case kUnboxedInt32x4: |
| 1087 return "int32x4"; | 1087 return "int32x4"; |
| 1088 case kUnboxedFloat64x2: | 1088 case kUnboxedFloat64x2: |
| 1089 return "float64x2"; | 1089 return "float64x2"; |
| 1090 case kPairOfTagged: | 1090 case kPairOfTagged: |
| 1091 return "tagged-pair"; | 1091 return "tagged-pair"; |
| 1092 case kNoRepresentation: | 1092 case kNoRepresentation: |
| 1093 return "none"; | 1093 return "none"; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 UNREACHABLE(); | 1289 UNREACHABLE(); |
| 1290 } | 1290 } |
| 1291 | 1291 |
| 1292 bool FlowGraphPrinter::ShouldPrint(const Function& function) { | 1292 bool FlowGraphPrinter::ShouldPrint(const Function& function) { |
| 1293 return false; | 1293 return false; |
| 1294 } | 1294 } |
| 1295 | 1295 |
| 1296 #endif // !PRODUCT | 1296 #endif // !PRODUCT |
| 1297 | 1297 |
| 1298 } // namespace dart | 1298 } // namespace dart |
| OLD | NEW |