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

Side by Side Diff: src/compiler/instruction-selector.cc

Issue 2029413005: [builtins] Migrate Math.log to TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix typo. Created 4 years, 6 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/instruction-selector.h" 5 #include "src/compiler/instruction-selector.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/base/adapters.h" 9 #include "src/base/adapters.h"
10 #include "src/compiler/instruction-selector-impl.h" 10 #include "src/compiler/instruction-selector-impl.h"
(...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 case IrOpcode::kFloat64Div: 1117 case IrOpcode::kFloat64Div:
1118 return MarkAsFloat64(node), VisitFloat64Div(node); 1118 return MarkAsFloat64(node), VisitFloat64Div(node);
1119 case IrOpcode::kFloat64Mod: 1119 case IrOpcode::kFloat64Mod:
1120 return MarkAsFloat64(node), VisitFloat64Mod(node); 1120 return MarkAsFloat64(node), VisitFloat64Mod(node);
1121 case IrOpcode::kFloat64Min: 1121 case IrOpcode::kFloat64Min:
1122 return MarkAsFloat64(node), VisitFloat64Min(node); 1122 return MarkAsFloat64(node), VisitFloat64Min(node);
1123 case IrOpcode::kFloat64Max: 1123 case IrOpcode::kFloat64Max:
1124 return MarkAsFloat64(node), VisitFloat64Max(node); 1124 return MarkAsFloat64(node), VisitFloat64Max(node);
1125 case IrOpcode::kFloat64Abs: 1125 case IrOpcode::kFloat64Abs:
1126 return MarkAsFloat64(node), VisitFloat64Abs(node); 1126 return MarkAsFloat64(node), VisitFloat64Abs(node);
1127 case IrOpcode::kFloat64Log:
1128 return MarkAsFloat64(node), VisitFloat64Log(node);
1127 case IrOpcode::kFloat64Sqrt: 1129 case IrOpcode::kFloat64Sqrt:
1128 return MarkAsFloat64(node), VisitFloat64Sqrt(node); 1130 return MarkAsFloat64(node), VisitFloat64Sqrt(node);
1129 case IrOpcode::kFloat64Equal: 1131 case IrOpcode::kFloat64Equal:
1130 return VisitFloat64Equal(node); 1132 return VisitFloat64Equal(node);
1131 case IrOpcode::kFloat64LessThan: 1133 case IrOpcode::kFloat64LessThan:
1132 return VisitFloat64LessThan(node); 1134 return VisitFloat64LessThan(node);
1133 case IrOpcode::kFloat64LessThanOrEqual: 1135 case IrOpcode::kFloat64LessThanOrEqual:
1134 return VisitFloat64LessThanOrEqual(node); 1136 return VisitFloat64LessThanOrEqual(node);
1135 case IrOpcode::kFloat32RoundDown: 1137 case IrOpcode::kFloat32RoundDown:
1136 return MarkAsFloat32(node), VisitFloat32RoundDown(node); 1138 return MarkAsFloat32(node), VisitFloat32RoundDown(node);
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
1828 return new (instruction_zone()) FrameStateDescriptor( 1830 return new (instruction_zone()) FrameStateDescriptor(
1829 instruction_zone(), state_info.type(), state_info.bailout_id(), 1831 instruction_zone(), state_info.type(), state_info.bailout_id(),
1830 state_info.state_combine(), parameters, locals, stack, 1832 state_info.state_combine(), parameters, locals, stack,
1831 state_info.shared_info(), outer_state); 1833 state_info.shared_info(), outer_state);
1832 } 1834 }
1833 1835
1834 1836
1835 } // namespace compiler 1837 } // namespace compiler
1836 } // namespace internal 1838 } // namespace internal
1837 } // namespace v8 1839 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698