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

Unified Diff: src/compiler/arm64/code-generator-arm64.cc

Issue 1507703002: [turbofan] Change TruncateFloat64ToUint64 to TryTruncateFloatToUint64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/compiler/arm64/instruction-selector-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/arm64/code-generator-arm64.cc
diff --git a/src/compiler/arm64/code-generator-arm64.cc b/src/compiler/arm64/code-generator-arm64.cc
index 43907951896b6d640c1d041a16320d026dc01890..b98b8b00e7b6c10e798626a07dc105275234a9d5 100644
--- a/src/compiler/arm64/code-generator-arm64.cc
+++ b/src/compiler/arm64/code-generator-arm64.cc
@@ -1052,6 +1052,15 @@ void CodeGenerator::AssembleArchInstruction(Instruction* instr) {
break;
case kArm64Float64ToUint64:
__ Fcvtzu(i.OutputRegister64(), i.InputDoubleRegister(0));
+ if (i.OutputCount() > 1) {
+ Label done;
+ __ Fcmp(i.InputDoubleRegister(0), 0.0);
+ __ Cset(i.OutputRegister(1), ge);
martyn.capewell 2015/12/07 16:10:34 You should be able to use conditional compare agai
ahaas 2015/12/07 17:03:03 Done
+ __ B(lt, &done);
+ __ Cmp(i.OutputRegister(0), -1);
+ __ Cset(i.OutputRegister(1), ne);
+ __ Bind(&done);
+ }
break;
case kArm64Int32ToFloat64:
__ Scvtf(i.OutputDoubleRegister(), i.InputRegister32(0));
« no previous file with comments | « no previous file | src/compiler/arm64/instruction-selector-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698