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

Unified Diff: runtime/vm/stub_code_arm64.cc

Issue 293993013: Beings adding SIMD support to arm64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/simulator_arm64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code_arm64.cc
===================================================================
--- runtime/vm/stub_code_arm64.cc (revision 36461)
+++ runtime/vm/stub_code_arm64.cc (working copy)
@@ -661,7 +661,7 @@
// R8: Points to new space object.
__ StoreToOffset(R7, R8, Scavenger::top_offset(), kNoPP);
__ add(R0, R0, Operand(kHeapObjectTag));
- __ UpdateAllocationStatsWithSize(kArrayCid, R3, R8, kNoPP);
+ __ UpdateAllocationStatsWithSize(kArrayCid, R3, kNoPP);
// R0: new object start as a tagged pointer.
// R1: array element type.
@@ -938,7 +938,7 @@
// R3: next object start.
__ str(R3, Address(R5));
__ add(R0, R0, Operand(kHeapObjectTag));
- __ UpdateAllocationStatsWithSize(context_class.id(), R2, R5, kNoPP);
+ __ UpdateAllocationStatsWithSize(context_class.id(), R2, kNoPP);
// Calculate the size tag.
// R0: new object.
@@ -1120,7 +1120,7 @@
__ b(&slow_case, CS); // Unsigned higher or equal.
}
__ str(R3, Address(R5));
- __ UpdateAllocationStats(cls.id(), R5, kNoPP);
+ __ UpdateAllocationStats(cls.id(), kNoPP);
// R2: new object start.
// R3: next object start.
« no previous file with comments | « runtime/vm/simulator_arm64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698