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

Side by Side Diff: src/compiler/arm64/code-generator-arm64.cc

Issue 1504363002: [turbofan] Change TruncateFloat32ToInt64 to TryTruncateFloat32ToInt64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed bad code in the mips code 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/arm64/instruction-selector-arm64.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/compiler/code-generator.h" 5 #include "src/compiler/code-generator.h"
6 6
7 #include "src/arm64/frames-arm64.h" 7 #include "src/arm64/frames-arm64.h"
8 #include "src/arm64/macro-assembler-arm64.h" 8 #include "src/arm64/macro-assembler-arm64.h"
9 #include "src/ast/scopes.h" 9 #include "src/ast/scopes.h"
10 #include "src/compiler/code-generator-impl.h" 10 #include "src/compiler/code-generator-impl.h"
(...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 __ Fcvt(i.OutputDoubleRegister().S(), i.InputDoubleRegister(0)); 1032 __ Fcvt(i.OutputDoubleRegister().S(), i.InputDoubleRegister(0));
1033 break; 1033 break;
1034 case kArm64Float64ToInt32: 1034 case kArm64Float64ToInt32:
1035 __ Fcvtzs(i.OutputRegister32(), i.InputDoubleRegister(0)); 1035 __ Fcvtzs(i.OutputRegister32(), i.InputDoubleRegister(0));
1036 break; 1036 break;
1037 case kArm64Float64ToUint32: 1037 case kArm64Float64ToUint32:
1038 __ Fcvtzu(i.OutputRegister32(), i.InputDoubleRegister(0)); 1038 __ Fcvtzu(i.OutputRegister32(), i.InputDoubleRegister(0));
1039 break; 1039 break;
1040 case kArm64Float32ToInt64: 1040 case kArm64Float32ToInt64:
1041 __ Fcvtzs(i.OutputRegister64(), i.InputFloat32Register(0)); 1041 __ Fcvtzs(i.OutputRegister64(), i.InputFloat32Register(0));
1042 if (i.OutputCount() > 1) {
1043 __ Cmp(i.OutputRegister(0), 1);
1044 __ Ccmp(i.OutputRegister(0), -1, VFlag, vc);
1045 __ Fccmp(i.InputFloat32Register(0), i.InputFloat32Register(0), VFlag,
1046 vc);
1047 __ Cset(i.OutputRegister(1), vc);
1048 }
1042 break; 1049 break;
1043 case kArm64Float64ToInt64: 1050 case kArm64Float64ToInt64:
1044 __ Fcvtzs(i.OutputRegister(0), i.InputDoubleRegister(0)); 1051 __ Fcvtzs(i.OutputRegister(0), i.InputDoubleRegister(0));
1045 if (i.OutputCount() > 1) { 1052 if (i.OutputCount() > 1) {
1046 __ Cmp(i.OutputRegister(0), 1); 1053 __ Cmp(i.OutputRegister(0), 1);
1047 __ Ccmp(i.OutputRegister(0), -1, VFlag, vc); 1054 __ Ccmp(i.OutputRegister(0), -1, VFlag, vc);
1048 __ Fccmp(i.InputDoubleRegister(0), i.InputDoubleRegister(0), VFlag, vc); 1055 __ Fccmp(i.InputDoubleRegister(0), i.InputDoubleRegister(0), VFlag, vc);
1049 __ Cset(i.OutputRegister(1), vc); 1056 __ Cset(i.OutputRegister(1), vc);
1050 } 1057 }
1051 break; 1058 break;
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
1608 padding_size -= kInstructionSize; 1615 padding_size -= kInstructionSize;
1609 } 1616 }
1610 } 1617 }
1611 } 1618 }
1612 1619
1613 #undef __ 1620 #undef __
1614 1621
1615 } // namespace compiler 1622 } // namespace compiler
1616 } // namespace internal 1623 } // namespace internal
1617 } // namespace v8 1624 } // namespace v8
OLDNEW
« 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