| Index: runtime/vm/intrinsifier_arm.cc
|
| diff --git a/runtime/vm/intrinsifier_arm.cc b/runtime/vm/intrinsifier_arm.cc
|
| index 2fec757785132a1e06a66f5e80af537619b7c08c..78ab5db9093471948abdda49f72fa5739df37f67 100644
|
| --- a/runtime/vm/intrinsifier_arm.cc
|
| +++ b/runtime/vm/intrinsifier_arm.cc
|
| @@ -156,8 +156,7 @@ void Intrinsifier::GrowableArray_add(Assembler* assembler) {
|
| #define TYPED_ARRAY_ALLOCATION(type_name, cid, max_len, scale_shift) \
|
| Label fall_through; \
|
| const intptr_t kArrayLengthStackOffset = 0 * kWordSize; \
|
| - __ MaybeTraceAllocation(cid, R2, &fall_through, \
|
| - /* inline_isolate = */ false); \
|
| + __ MaybeTraceAllocation(cid, R2, &fall_through); \
|
| __ ldr(R2, Address(SP, kArrayLengthStackOffset)); /* Array length. */ \
|
| /* Check that length is a positive Smi. */ \
|
| /* R2: requested array length argument. */ \
|
| @@ -193,7 +192,7 @@ void Intrinsifier::GrowableArray_add(Assembler* assembler) {
|
| \
|
| /* Successfully allocated the object(s), now update top to point to */ \
|
| /* next object start and initialize the object. */ \
|
| - __ LoadAllocationStatsAddress(R4, cid, /* inline_isolate = */ false); \
|
| + __ LoadAllocationStatsAddress(R4, cid); \
|
| __ str(R1, Address(R3, Heap::TopOffset(space))); \
|
| __ AddImmediate(R0, kHeapObjectTag); \
|
| /* Initialize the tags. */ \
|
| @@ -1847,8 +1846,7 @@ static void TryAllocateOnebyteString(Assembler* assembler,
|
| Label* failure) {
|
| const Register length_reg = R2;
|
| Label fail;
|
| - __ MaybeTraceAllocation(kOneByteStringCid, R0, failure,
|
| - /* inline_isolate = */ false);
|
| + __ MaybeTraceAllocation(kOneByteStringCid, R0, failure);
|
| __ mov(R8, Operand(length_reg)); // Save the length register.
|
| // TODO(koda): Protect against negative length and overflow here.
|
| __ SmiUntag(length_reg);
|
| @@ -1876,7 +1874,7 @@ static void TryAllocateOnebyteString(Assembler* assembler,
|
|
|
| // Successfully allocated the object(s), now update top to point to
|
| // next object start and initialize the object.
|
| - __ LoadAllocationStatsAddress(R4, cid, /* inline_isolate = */ false);
|
| + __ LoadAllocationStatsAddress(R4, cid);
|
| __ str(R1, Address(R3, Heap::TopOffset(space)));
|
| __ AddImmediate(R0, kHeapObjectTag);
|
|
|
|
|