| Index: src/mips64/macro-assembler-mips64.cc
|
| diff --git a/src/mips64/macro-assembler-mips64.cc b/src/mips64/macro-assembler-mips64.cc
|
| index d7b8446d2edcd790bd7939807e5e22d67c215424..a20de7bfea5d8cf117fc80772065a9315eb5d6fe 100644
|
| --- a/src/mips64/macro-assembler-mips64.cc
|
| +++ b/src/mips64/macro-assembler-mips64.cc
|
| @@ -5877,22 +5877,6 @@ void MacroAssembler::LeaveExitFrame(bool save_doubles, Register argument_count,
|
| daddiu(sp, sp, 2 * kPointerSize);
|
| }
|
|
|
| -
|
| -void MacroAssembler::InitializeNewString(Register string,
|
| - Register length,
|
| - Heap::RootListIndex map_index,
|
| - Register scratch1,
|
| - Register scratch2) {
|
| - // dsll(scratch1, length, kSmiTagSize);
|
| - dsll32(scratch1, length, 0);
|
| - LoadRoot(scratch2, map_index);
|
| - sd(scratch1, FieldMemOperand(string, String::kLengthOffset));
|
| - li(scratch1, Operand(String::kEmptyHashField));
|
| - sd(scratch2, FieldMemOperand(string, HeapObject::kMapOffset));
|
| - sw(scratch1, FieldMemOperand(string, String::kHashFieldOffset));
|
| -}
|
| -
|
| -
|
| int MacroAssembler::ActivationFrameAlignment() {
|
| #if V8_HOST_ARCH_MIPS || V8_HOST_ARCH_MIPS64
|
| // Running on the real platform. Use the alignment as mandated by the local
|
|
|