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

Unified Diff: runtime/vm/stub_code_arm64.cc

Issue 1911253002: Never include_isolate or allow_embedded_addresses. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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/stub_code_arm.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/stub_code_arm64.cc
diff --git a/runtime/vm/stub_code_arm64.cc b/runtime/vm/stub_code_arm64.cc
index bddf2966e381ae0391a39d2f28979aa6fd6583a9..cb31d8e167828f4d1eeacce1e5c7193c7cd654c1 100644
--- a/runtime/vm/stub_code_arm64.cc
+++ b/runtime/vm/stub_code_arm64.cc
@@ -652,8 +652,7 @@ void StubCode::GenerateAllocateArrayStub(Assembler* assembler) {
__ b(&slow_case, GT);
const intptr_t cid = kArrayCid;
- __ MaybeTraceAllocation(kArrayCid, R4, &slow_case,
- /* inline_isolate = */ false);
+ __ MaybeTraceAllocation(kArrayCid, R4, &slow_case);
Heap::Space space = Heap::SpaceForAllocation(cid);
__ LoadIsolate(R8);
@@ -694,8 +693,7 @@ void StubCode::GenerateAllocateArrayStub(Assembler* assembler) {
// R8: heap.
__ StoreToOffset(R7, R8, Heap::TopOffset(space));
__ add(R0, R0, Operand(kHeapObjectTag));
- __ UpdateAllocationStatsWithSize(cid, R3, space,
- /* inline_isolate = */ false);
+ __ UpdateAllocationStatsWithSize(cid, R3, space);
// R0: new object start as a tagged pointer.
// R1: array element type.
@@ -919,8 +917,7 @@ void StubCode::GenerateAllocateContextStub(Assembler* assembler) {
ASSERT(kSmiTagShift == 1);
__ andi(R2, R2, Immediate(~(kObjectAlignment - 1)));
- __ MaybeTraceAllocation(kContextCid, R4, &slow_case,
- /* inline_isolate = */ false);
+ __ MaybeTraceAllocation(kContextCid, R4, &slow_case);
// Now allocate the object.
// R1: number of context variables.
// R2: object size.
@@ -953,8 +950,7 @@ void StubCode::GenerateAllocateContextStub(Assembler* assembler) {
// R5: heap.
__ str(R3, Address(R5, Heap::TopOffset(space)));
__ add(R0, R0, Operand(kHeapObjectTag));
- __ UpdateAllocationStatsWithSize(cid, R2, space,
- /* inline_isolate = */ false);
+ __ UpdateAllocationStatsWithSize(cid, R2, space);
// Calculate the size tag.
// R0: new object.
@@ -1128,7 +1124,7 @@ void StubCode::GenerateAllocationStubForClass(Assembler* assembler,
__ b(&slow_case, CS); // Unsigned higher or equal.
}
__ str(R3, Address(R5, Heap::TopOffset(space)));
- __ UpdateAllocationStats(cls.id(), space, /* inline_isolate = */ false);
+ __ UpdateAllocationStats(cls.id(), space);
// R2: new object start.
// R3: next object start.
« no previous file with comments | « runtime/vm/stub_code_arm.cc ('k') | runtime/vm/stub_code_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698