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

Unified Diff: runtime/vm/intrinsifier_arm.cc

Issue 701233003: Implement bigint intrinsics on arm64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 1 month 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
Index: runtime/vm/intrinsifier_arm.cc
===================================================================
--- runtime/vm/intrinsifier_arm.cc (revision 41529)
+++ runtime/vm/intrinsifier_arm.cc (working copy)
@@ -1193,7 +1193,7 @@
// uint32_t aj = *ajp
__ ldr(R1, Address(R5, 0));
- // uint96_t t = R2:R1:R0 = 2*x*xi + aj + c
+ // uint96_t t = R7:R6:R0 = 2*x*xi + aj + c
__ mov(R0, Operand(0));
__ umaal(R0, R1, R2, R3); // R1:R0 = R3*R2 + R1 + R0 = x*xi + aj + 0.
__ umlal(R6, R7, R2, R3); // R7:R6 += R3*R2; c += x*xi.
@@ -1228,7 +1228,7 @@
void Intrinsifier::Bigint_estQuotientDigit(Assembler* assembler) {
- // TODO(regis): Implement.
+ // No unsigned 64-bit / 32-bit divide instruction.
}

Powered by Google App Engine
This is Rietveld 408576698