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

Side by Side Diff: src/compiler/mips/instruction-selector-mips.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/machine-operator.cc ('k') | src/compiler/mips64/instruction-selector-mips64.cc » ('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/base/adapters.h" 5 #include "src/base/adapters.h"
6 #include "src/base/bits.h" 6 #include "src/base/bits.h"
7 #include "src/compiler/instruction-selector-impl.h" 7 #include "src/compiler/instruction-selector-impl.h"
8 #include "src/compiler/node-matchers.h" 8 #include "src/compiler/node-matchers.h"
9 #include "src/compiler/node-properties.h" 9 #include "src/compiler/node-properties.h"
10 10
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 void InstructionSelector::VisitFloat64Sqrt(Node* node) { 581 void InstructionSelector::VisitFloat64Sqrt(Node* node) {
582 VisitRR(this, kMipsSqrtD, node); 582 VisitRR(this, kMipsSqrtD, node);
583 } 583 }
584 584
585 585
586 void InstructionSelector::VisitFloat64RoundDown(Node* node) { 586 void InstructionSelector::VisitFloat64RoundDown(Node* node) {
587 VisitRR(this, kMipsFloat64RoundDown, node); 587 VisitRR(this, kMipsFloat64RoundDown, node);
588 } 588 }
589 589
590 590
591 void InstructionSelector::VisitFloat64RoundUp(Node* node) { UNREACHABLE(); }
592
593
591 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) { 594 void InstructionSelector::VisitFloat64RoundTruncate(Node* node) {
592 VisitRR(this, kMipsFloat64RoundTruncate, node); 595 VisitRR(this, kMipsFloat64RoundTruncate, node);
593 } 596 }
594 597
595 598
596 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) { 599 void InstructionSelector::VisitFloat64RoundTiesAway(Node* node) {
597 UNREACHABLE(); 600 UNREACHABLE();
598 } 601 }
599 602
600 603
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
1106 } 1109 }
1107 return flags | MachineOperatorBuilder::kFloat64Min | 1110 return flags | MachineOperatorBuilder::kFloat64Min |
1108 MachineOperatorBuilder::kFloat64Max | 1111 MachineOperatorBuilder::kFloat64Max |
1109 MachineOperatorBuilder::kFloat32Min | 1112 MachineOperatorBuilder::kFloat32Min |
1110 MachineOperatorBuilder::kFloat32Max; 1113 MachineOperatorBuilder::kFloat32Max;
1111 } 1114 }
1112 1115
1113 } // namespace compiler 1116 } // namespace compiler
1114 } // namespace internal 1117 } // namespace internal
1115 } // namespace v8 1118 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/mips64/instruction-selector-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698