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

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

Issue 1436943002: Implemented the RoundUint64ToFloat64 TurboFan operator for x64 and arm64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/opcodes.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/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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 void InstructionSelector::VisitRoundInt64ToFloat32(Node* node) { 620 void InstructionSelector::VisitRoundInt64ToFloat32(Node* node) {
621 VisitRR(this, kMips64CvtSL, node); 621 VisitRR(this, kMips64CvtSL, node);
622 } 622 }
623 623
624 624
625 void InstructionSelector::VisitRoundInt64ToFloat64(Node* node) { 625 void InstructionSelector::VisitRoundInt64ToFloat64(Node* node) {
626 VisitRR(this, kMips64CvtDL, node); 626 VisitRR(this, kMips64CvtDL, node);
627 } 627 }
628 628
629 629
630 void InstructionSelector::VisitRoundUint64ToFloat64(Node* node) {
631 UNIMPLEMENTED();
632 }
633
634
630 void InstructionSelector::VisitBitcastFloat32ToInt32(Node* node) { 635 void InstructionSelector::VisitBitcastFloat32ToInt32(Node* node) {
631 VisitRR(this, kMips64Float64ExtractLowWord32, node); 636 VisitRR(this, kMips64Float64ExtractLowWord32, node);
632 } 637 }
633 638
634 639
635 void InstructionSelector::VisitBitcastFloat64ToInt64(Node* node) { 640 void InstructionSelector::VisitBitcastFloat64ToInt64(Node* node) {
636 VisitRR(this, kMips64BitcastDL, node); 641 VisitRR(this, kMips64BitcastDL, node);
637 } 642 }
638 643
639 644
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 MachineOperatorBuilder::kFloat64Max | 1391 MachineOperatorBuilder::kFloat64Max |
1387 MachineOperatorBuilder::kFloat32Min | 1392 MachineOperatorBuilder::kFloat32Min |
1388 MachineOperatorBuilder::kFloat32Max | 1393 MachineOperatorBuilder::kFloat32Max |
1389 MachineOperatorBuilder::kFloat64RoundDown | 1394 MachineOperatorBuilder::kFloat64RoundDown |
1390 MachineOperatorBuilder::kFloat64RoundTruncate; 1395 MachineOperatorBuilder::kFloat64RoundTruncate;
1391 } 1396 }
1392 1397
1393 } // namespace compiler 1398 } // namespace compiler
1394 } // namespace internal 1399 } // namespace internal
1395 } // namespace v8 1400 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/machine-operator.cc ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698