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

Unified Diff: runtime/vm/intrinsifier_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/intermediate_language_x64.cc ('k') | runtime/vm/simulator_arm64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intrinsifier_arm64.cc
===================================================================
--- runtime/vm/intrinsifier_arm64.cc (revision 36461)
+++ runtime/vm/intrinsifier_arm64.cc (working copy)
@@ -197,7 +197,7 @@
// Set the length field in the growable array object to 0.
__ LoadImmediate(R1, 0, kNoPP);
__ str(R1, FieldAddress(R0, GrowableObjectArray::length_offset()));
- __ UpdateAllocationStats(kGrowableObjectArrayCid, R1, kNoPP);
+ __ UpdateAllocationStats(kGrowableObjectArrayCid, kNoPP);
__ ret(); // Returns the newly allocated object in R0.
__ Bind(&fall_through);
@@ -409,7 +409,7 @@
__ LoadImmediate(R3, heap->TopAddress(), kNoPP); \
__ str(R1, Address(R3, 0)); \
__ AddImmediate(R0, R0, kHeapObjectTag, kNoPP); \
- __ UpdateAllocationStatsWithSize(cid, R2, R4, kNoPP); \
+ __ UpdateAllocationStatsWithSize(cid, R2, kNoPP); \
/* Initialize the tags. */ \
/* R0: new object start as a tagged pointer. */ \
/* R1: new object end address. */ \
@@ -959,7 +959,7 @@
}
const Class& double_class = Class::Handle(
Isolate::Current()->object_store()->double_class());
- __ TryAllocate(double_class, &fall_through, R0, R1, kNoPP);
+ __ TryAllocate(double_class, &fall_through, R0, kNoPP);
__ StoreDFieldToOffset(V0, R0, Double::value_offset(), kNoPP);
__ ret();
__ Bind(&fall_through);
@@ -1001,7 +1001,7 @@
__ fmuld(V0, V0, V1);
const Class& double_class = Class::Handle(
Isolate::Current()->object_store()->double_class());
- __ TryAllocate(double_class, &fall_through, R0, R1, kNoPP);
+ __ TryAllocate(double_class, &fall_through, R0, kNoPP);
__ StoreDFieldToOffset(V0, R0, Double::value_offset(), kNoPP);
__ ret();
__ Bind(&fall_through);
@@ -1019,7 +1019,7 @@
__ scvtfd(V0, R0);
const Class& double_class = Class::Handle(
Isolate::Current()->object_store()->double_class());
- __ TryAllocate(double_class, &fall_through, R0, R1, kNoPP);
+ __ TryAllocate(double_class, &fall_through, R0, kNoPP);
__ StoreDFieldToOffset(V0, R0, Double::value_offset(), kNoPP);
__ ret();
__ Bind(&fall_through);
@@ -1099,7 +1099,7 @@
__ fsqrtd(V0, V1);
const Class& double_class = Class::Handle(
Isolate::Current()->object_store()->double_class());
- __ TryAllocate(double_class, &fall_through, R0, R1, kNoPP);
+ __ TryAllocate(double_class, &fall_through, R0, kNoPP);
__ StoreDFieldToOffset(V0, R0, Double::value_offset(), kNoPP);
__ ret();
__ Bind(&is_smi);
@@ -1322,7 +1322,7 @@
// next object start and initialize the object.
__ str(R1, Address(R3));
__ AddImmediate(R0, R0, kHeapObjectTag, kNoPP);
- __ UpdateAllocationStatsWithSize(kOneByteStringCid, R2, R3, kNoPP);
+ __ UpdateAllocationStatsWithSize(kOneByteStringCid, R2, kNoPP);
// Initialize the tags.
// R0: new object start as a tagged pointer.
« no previous file with comments | « runtime/vm/intermediate_language_x64.cc ('k') | runtime/vm/simulator_arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698