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

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

Issue 1444583002: [turbofan] Added the optional Float64RoundUp operator to turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed the implementation of VisitFloat32RoundUp on mips32 Created 5 years, 1 month 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 | « src/compiler/ia32/instruction-selector-ia32.cc ('k') | src/compiler/machine-operator.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 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 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 case IrOpcode::kFloat64Sqrt: 879 case IrOpcode::kFloat64Sqrt:
880 return MarkAsFloat64(node), VisitFloat64Sqrt(node); 880 return MarkAsFloat64(node), VisitFloat64Sqrt(node);
881 case IrOpcode::kFloat64Equal: 881 case IrOpcode::kFloat64Equal:
882 return VisitFloat64Equal(node); 882 return VisitFloat64Equal(node);
883 case IrOpcode::kFloat64LessThan: 883 case IrOpcode::kFloat64LessThan:
884 return VisitFloat64LessThan(node); 884 return VisitFloat64LessThan(node);
885 case IrOpcode::kFloat64LessThanOrEqual: 885 case IrOpcode::kFloat64LessThanOrEqual:
886 return VisitFloat64LessThanOrEqual(node); 886 return VisitFloat64LessThanOrEqual(node);
887 case IrOpcode::kFloat64RoundDown: 887 case IrOpcode::kFloat64RoundDown:
888 return MarkAsFloat64(node), VisitFloat64RoundDown(node); 888 return MarkAsFloat64(node), VisitFloat64RoundDown(node);
889 case IrOpcode::kFloat64RoundUp:
890 return MarkAsFloat64(node), VisitFloat64RoundUp(node);
889 case IrOpcode::kFloat64RoundTruncate: 891 case IrOpcode::kFloat64RoundTruncate:
890 return MarkAsFloat64(node), VisitFloat64RoundTruncate(node); 892 return MarkAsFloat64(node), VisitFloat64RoundTruncate(node);
891 case IrOpcode::kFloat64RoundTiesAway: 893 case IrOpcode::kFloat64RoundTiesAway:
892 return MarkAsFloat64(node), VisitFloat64RoundTiesAway(node); 894 return MarkAsFloat64(node), VisitFloat64RoundTiesAway(node);
893 case IrOpcode::kFloat64ExtractLowWord32: 895 case IrOpcode::kFloat64ExtractLowWord32:
894 return MarkAsWord32(node), VisitFloat64ExtractLowWord32(node); 896 return MarkAsWord32(node), VisitFloat64ExtractLowWord32(node);
895 case IrOpcode::kFloat64ExtractHighWord32: 897 case IrOpcode::kFloat64ExtractHighWord32:
896 return MarkAsWord32(node), VisitFloat64ExtractHighWord32(node); 898 return MarkAsWord32(node), VisitFloat64ExtractHighWord32(node);
897 case IrOpcode::kFloat64InsertLowWord32: 899 case IrOpcode::kFloat64InsertLowWord32:
898 return MarkAsFloat64(node), VisitFloat64InsertLowWord32(node); 900 return MarkAsFloat64(node), VisitFloat64InsertLowWord32(node);
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 return new (instruction_zone()) FrameStateDescriptor( 1396 return new (instruction_zone()) FrameStateDescriptor(
1395 instruction_zone(), state_info.type(), state_info.bailout_id(), 1397 instruction_zone(), state_info.type(), state_info.bailout_id(),
1396 state_info.state_combine(), parameters, locals, stack, 1398 state_info.state_combine(), parameters, locals, stack,
1397 state_info.shared_info(), outer_state); 1399 state_info.shared_info(), outer_state);
1398 } 1400 }
1399 1401
1400 1402
1401 } // namespace compiler 1403 } // namespace compiler
1402 } // namespace internal 1404 } // namespace internal
1403 } // namespace v8 1405 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/ia32/instruction-selector-ia32.cc ('k') | src/compiler/machine-operator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698