| Index: runtime/vm/intrinsifier_arm64.cc
|
| diff --git a/runtime/vm/intrinsifier_arm64.cc b/runtime/vm/intrinsifier_arm64.cc
|
| index fd0c0538efaf361a060e568820177df9ca31feef..ba2a6f136d9761b211ec9dace0555f4a61c3de48 100644
|
| --- a/runtime/vm/intrinsifier_arm64.cc
|
| +++ b/runtime/vm/intrinsifier_arm64.cc
|
| @@ -168,8 +168,7 @@ static int GetScaleFactor(intptr_t size) {
|
| #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. */ \
|
| @@ -207,8 +206,7 @@ static int GetScaleFactor(intptr_t size) {
|
| /* next object start and initialize the object. */ \
|
| __ str(R1, Address(R3, Heap::TopOffset(space))); \
|
| __ AddImmediate(R0, R0, kHeapObjectTag); \
|
| - __ UpdateAllocationStatsWithSize(cid, R2, space, \
|
| - /* inline_isolate = */ false); \
|
| + __ UpdateAllocationStatsWithSize(cid, R2, space); \
|
| /* Initialize the tags. */ \
|
| /* R0: new object start as a tagged pointer. */ \
|
| /* R1: new object end address. */ \
|
| @@ -1926,8 +1924,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(R6, length_reg); // Save the length register.
|
| // TODO(koda): Protect against negative length and overflow here.
|
| __ SmiUntag(length_reg);
|
| @@ -1957,8 +1954,7 @@ static void TryAllocateOnebyteString(Assembler* assembler,
|
| // next object start and initialize the object.
|
| __ str(R1, Address(R3, Heap::TopOffset(space)));
|
| __ AddImmediate(R0, R0, kHeapObjectTag);
|
| - __ UpdateAllocationStatsWithSize(cid, R2, space,
|
| - /* inline_isolate = */ false);
|
| + __ UpdateAllocationStatsWithSize(cid, R2, space);
|
|
|
| // Initialize the tags.
|
| // R0: new object start as a tagged pointer.
|
|
|