| Index: runtime/vm/intrinsifier_mips.cc
|
| diff --git a/runtime/vm/intrinsifier_mips.cc b/runtime/vm/intrinsifier_mips.cc
|
| index 2c13390fb329f9110aec9dd3380fcdc61af561c3..e98fc1da012789c09a15dba1cce0714c6b3a7b4b 100644
|
| --- a/runtime/vm/intrinsifier_mips.cc
|
| +++ b/runtime/vm/intrinsifier_mips.cc
|
| @@ -150,8 +150,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, T2, &fall_through, \
|
| - /* inline_isolate = */ false); \
|
| + __ MaybeTraceAllocation(cid, T2, &fall_through); \
|
| __ lw(T2, Address(SP, kArrayLengthStackOffset)); /* Array length. */ \
|
| /* Check that length is a positive Smi. */ \
|
| /* T2: requested array length argument. */ \
|
| @@ -188,8 +187,7 @@ void Intrinsifier::GrowableArray_add(Assembler* assembler) {
|
| /* next object start and initialize the object. */ \
|
| __ sw(T1, Address(T3, Heap::TopOffset(space))); \
|
| __ AddImmediate(V0, kHeapObjectTag); \
|
| - __ UpdateAllocationStatsWithSize(cid, T2, T4, space, \
|
| - /* inline_isolate = */ false); \
|
| + __ UpdateAllocationStatsWithSize(cid, T2, T4, space); \
|
| /* Initialize the tags. */ \
|
| /* V0: new object start as a tagged pointer. */ \
|
| /* T1: new object end address. */ \
|
| @@ -1967,8 +1965,7 @@ static void TryAllocateOnebyteString(Assembler* assembler,
|
| Label* ok,
|
| Label* failure) {
|
| const Register length_reg = T2;
|
| - __ MaybeTraceAllocation(kOneByteStringCid, V0, failure,
|
| - /* inline_isolate = */ false);
|
| + __ MaybeTraceAllocation(kOneByteStringCid, V0, failure);
|
| __ mov(T6, length_reg); // Save the length register.
|
| // TODO(koda): Protect against negative length and overflow here.
|
| __ SmiUntag(length_reg);
|
| @@ -1999,8 +1996,7 @@ static void TryAllocateOnebyteString(Assembler* assembler,
|
| __ sw(T1, Address(T3, Heap::TopOffset(space)));
|
| __ AddImmediate(V0, kHeapObjectTag);
|
|
|
| - __ UpdateAllocationStatsWithSize(cid, T2, T3, space,
|
| - /* inline_isolate = */ false);
|
| + __ UpdateAllocationStatsWithSize(cid, T2, T3, space);
|
|
|
| // Initialize the tags.
|
| // V0: new object start as a tagged pointer.
|
|
|