Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: runtime/vm/il_printer.cc

Issue 2658733002: VM: Remove unused optimization of merging of sin/cos. (Closed)
Patch Set: Remove now unused representation Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | runtime/vm/intermediate_language.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698