Commit 1c8a883d authored by Ivica Bogosavljevic's avatar Ivica Bogosavljevic Committed by Commit Bot

MIPS64: Port `[turbofan] Initial Word64 support in representation selection.`

Port 6346cdb6

Change-Id: I397ff152f363a3f0345105fbdf5d939bc3245fb4
Reviewed-on: https://chromium-review.googlesource.com/1225707Reviewed-by: 's avatarSreten Kovacevic <skovacevic@wavecomp.com>
Commit-Queue: Sreten Kovacevic <skovacevic@wavecomp.com>
Cr-Commit-Position: refs/heads/master@{#55911}
parent ac1660c6
...@@ -1239,6 +1239,9 @@ void InstructionSelector::VisitChangeFloat64ToInt32(Node* node) { ...@@ -1239,6 +1239,9 @@ void InstructionSelector::VisitChangeFloat64ToInt32(Node* node) {
VisitRR(this, kMips64TruncWD, node); VisitRR(this, kMips64TruncWD, node);
} }
void InstructionSelector::VisitChangeFloat64ToInt64(Node* node) {
VisitRR(this, kMips64TruncLD, node);
}
void InstructionSelector::VisitChangeFloat64ToUint32(Node* node) { void InstructionSelector::VisitChangeFloat64ToUint32(Node* node) {
VisitRR(this, kMips64TruncUwD, node); VisitRR(this, kMips64TruncUwD, node);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment