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

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

Issue 1471913006: [turbofan] Implemented the optional Float32RoundDown operator. (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 unified diff | Download patch
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/compiler/code-generator-impl.h" 9 #include "src/compiler/code-generator-impl.h"
10 #include "src/compiler/gap-resolver.h" 10 #include "src/compiler/gap-resolver.h"
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 Register scratch1 = i.TempRegister(1); 615 Register scratch1 = i.TempRegister(1);
616 auto ool = new (zone()) OutOfLineRecordWrite(this, object, index, value, 616 auto ool = new (zone()) OutOfLineRecordWrite(this, object, index, value,
617 scratch0, scratch1, mode); 617 scratch0, scratch1, mode);
618 __ Str(value, MemOperand(object, index)); 618 __ Str(value, MemOperand(object, index));
619 __ CheckPageFlagSet(object, scratch0, 619 __ CheckPageFlagSet(object, scratch0,
620 MemoryChunk::kPointersFromHereAreInterestingMask, 620 MemoryChunk::kPointersFromHereAreInterestingMask,
621 ool->entry()); 621 ool->entry());
622 __ Bind(ool->exit()); 622 __ Bind(ool->exit());
623 break; 623 break;
624 } 624 }
625 case kArm64Float32RoundDown:
626 __ Frintm(i.OutputFloat32Register(), i.InputFloat32Register(0));
627 break;
625 case kArm64Float64RoundDown: 628 case kArm64Float64RoundDown:
626 __ Frintm(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); 629 __ Frintm(i.OutputDoubleRegister(), i.InputDoubleRegister(0));
627 break; 630 break;
628 case kArm64Float64RoundUp: 631 case kArm64Float64RoundUp:
629 __ Frintp(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); 632 __ Frintp(i.OutputDoubleRegister(), i.InputDoubleRegister(0));
630 break; 633 break;
631 case kArm64Float64RoundTiesAway: 634 case kArm64Float64RoundTiesAway:
632 __ Frinta(i.OutputDoubleRegister(), i.InputDoubleRegister(0)); 635 __ Frinta(i.OutputDoubleRegister(), i.InputDoubleRegister(0));
633 break; 636 break;
634 case kArm64Float64RoundTruncate: 637 case kArm64Float64RoundTruncate:
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after
1544 padding_size -= kInstructionSize; 1547 padding_size -= kInstructionSize;
1545 } 1548 }
1546 } 1549 }
1547 } 1550 }
1548 1551
1549 #undef __ 1552 #undef __
1550 1553
1551 } // namespace compiler 1554 } // namespace compiler
1552 } // namespace internal 1555 } // namespace internal
1553 } // namespace v8 1556 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698