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

Side by Side Diff: runtime/vm/intrinsifier_arm64.cc

Issue 620553002: Provide ia32 intrinsics for bigint add, sub, quotient digit estimation, and (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 months 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 | Annotate | Revision Log
« no previous file with comments | « runtime/vm/intrinsifier_arm.cc ('k') | runtime/vm/intrinsifier_ia32.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 (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM64. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM64.
6 #if defined(TARGET_ARCH_ARM64) 6 #if defined(TARGET_ARCH_ARM64)
7 7
8 #include "vm/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 9
10 #include "vm/assembler.h" 10 #include "vm/assembler.h"
(...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 794
795 795
796 void Intrinsifier::Bigint_setDigits(Assembler* assembler) { 796 void Intrinsifier::Bigint_setDigits(Assembler* assembler) {
797 __ ldr(R0, Address(SP, 0 * kWordSize)); 797 __ ldr(R0, Address(SP, 0 * kWordSize));
798 __ ldr(R1, Address(SP, 1 * kWordSize)); 798 __ ldr(R1, Address(SP, 1 * kWordSize));
799 __ StoreIntoObject(R1, FieldAddress(R1, Bigint::digits_offset()), R0, false); 799 __ StoreIntoObject(R1, FieldAddress(R1, Bigint::digits_offset()), R0, false);
800 __ ret(); 800 __ ret();
801 } 801 }
802 802
803 803
804 void Intrinsifier::Bigint_add(Assembler* assembler) {
805 // TODO(regis): Implement.
806 }
807
808
809 void Intrinsifier::Bigint_sub(Assembler* assembler) {
810 // TODO(regis): Implement.
811 }
812
813
804 void Intrinsifier::Bigint_mulAdd(Assembler* assembler) { 814 void Intrinsifier::Bigint_mulAdd(Assembler* assembler) {
805 // TODO(regis): Implement. 815 // TODO(regis): Implement.
806 } 816 }
807 817
808 818
809 void Intrinsifier::Bigint_sqrAdd(Assembler* assembler) { 819 void Intrinsifier::Bigint_sqrAdd(Assembler* assembler) {
810 // TODO(regis): Implement. 820 // TODO(regis): Implement.
811 } 821 }
812 822
813 823
824 void Intrinsifier::Bigint_estQuotientDigit(Assembler* assembler) {
825 // TODO(regis): Implement.
826 }
827
828
829 void Intrinsifier::Montgomery_mulMod(Assembler* assembler) {
830 // TODO(regis): Implement.
831 }
832
833
814 // Check if the last argument is a double, jump to label 'is_smi' if smi 834 // Check if the last argument is a double, jump to label 'is_smi' if smi
815 // (easy to convert to double), otherwise jump to label 'not_double_smi', 835 // (easy to convert to double), otherwise jump to label 'not_double_smi',
816 // Returns the last argument in R0. 836 // Returns the last argument in R0.
817 static void TestLastArgumentIsDouble(Assembler* assembler, 837 static void TestLastArgumentIsDouble(Assembler* assembler,
818 Label* is_smi, 838 Label* is_smi,
819 Label* not_double_smi) { 839 Label* not_double_smi) {
820 __ ldr(R0, Address(SP, 0 * kWordSize)); 840 __ ldr(R0, Address(SP, 0 * kWordSize));
821 __ tsti(R0, kSmiTagMask); 841 __ tsti(R0, kSmiTagMask);
822 __ b(is_smi, EQ); 842 __ b(is_smi, EQ);
823 __ CompareClassId(R0, kDoubleCid, kNoPP); 843 __ CompareClassId(R0, kDoubleCid, kNoPP);
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
1532 Isolate* isolate = Isolate::Current(); 1552 Isolate* isolate = Isolate::Current();
1533 __ LoadImmediate(R1, reinterpret_cast<uword>(isolate), kNoPP); 1553 __ LoadImmediate(R1, reinterpret_cast<uword>(isolate), kNoPP);
1534 // Set return value to Isolate::current_tag_. 1554 // Set return value to Isolate::current_tag_.
1535 __ ldr(R0, Address(R1, Isolate::current_tag_offset())); 1555 __ ldr(R0, Address(R1, Isolate::current_tag_offset()));
1536 __ ret(); 1556 __ ret();
1537 } 1557 }
1538 1558
1539 } // namespace dart 1559 } // namespace dart
1540 1560
1541 #endif // defined TARGET_ARCH_ARM64 1561 #endif // defined TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier_arm.cc ('k') | runtime/vm/intrinsifier_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698