| Index: src/mips64/constants-mips64.h
|
| diff --git a/src/mips64/constants-mips64.h b/src/mips64/constants-mips64.h
|
| index a12acca06d861a437fc2edb7165a3f7af532ea22..7fc6ca1c958ac8efdf8a2be2924f7ba54bd8c6b9 100644
|
| --- a/src/mips64/constants-mips64.h
|
| +++ b/src/mips64/constants-mips64.h
|
| @@ -1179,9 +1179,9 @@ inline Hint NegateHint(Hint hint) {
|
| extern const Instr kPopInstruction;
|
| // addiu(sp, sp, -4) part of Push(r) operation as pre-decrement of sp.
|
| extern const Instr kPushInstruction;
|
| -// sw(r, MemOperand(sp, 0))
|
| +// Sw(r, MemOperand(sp, 0))
|
| extern const Instr kPushRegPattern;
|
| -// lw(r, MemOperand(sp, 0))
|
| +// Lw(r, MemOperand(sp, 0))
|
| extern const Instr kPopRegPattern;
|
| extern const Instr kLwRegFpOffsetPattern;
|
| extern const Instr kSwRegFpOffsetPattern;
|
| @@ -1684,6 +1684,8 @@ const int kCArgsSlotsSize = kCArgSlotCount * Instruction::kInstrSize * 2;
|
| const int kInvalidStackOffset = -1;
|
| const int kBranchReturnOffset = 2 * Instruction::kInstrSize;
|
|
|
| +static const int kNegOffset = 0x00008000;
|
| +
|
| InstructionBase::Type InstructionBase::InstructionType() const {
|
| switch (OpcodeFieldRaw()) {
|
| case SPECIAL:
|
|
|