| Index: src/mips/assembler-mips-inl.h
|
| diff --git a/src/mips/assembler-mips-inl.h b/src/mips/assembler-mips-inl.h
|
| index 616f75bfc8528142734bbb779a287c800a04f392..5e27f4545baf8e7d8118db7b96458ac133b5bb0d 100644
|
| --- a/src/mips/assembler-mips-inl.h
|
| +++ b/src/mips/assembler-mips-inl.h
|
| @@ -349,25 +349,6 @@ void RelocInfo::WipeOut() {
|
| }
|
|
|
|
|
| -bool RelocInfo::IsPatchedReturnSequence() {
|
| - Instr instr0 = Assembler::instr_at(pc_);
|
| - Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
|
| - Instr instr2 = Assembler::instr_at(pc_ + 2 * Assembler::kInstrSize);
|
| - bool patched_return = ((instr0 & kOpcodeMask) == LUI &&
|
| - (instr1 & kOpcodeMask) == ORI &&
|
| - ((instr2 & kOpcodeMask) == JAL ||
|
| - ((instr2 & kOpcodeMask) == SPECIAL &&
|
| - (instr2 & kFunctionFieldMask) == JALR)));
|
| - return patched_return;
|
| -}
|
| -
|
| -
|
| -bool RelocInfo::IsPatchedDebugBreakSlotSequence() {
|
| - Instr current_instr = Assembler::instr_at(pc_);
|
| - return !Assembler::IsNop(current_instr, Assembler::DEBUG_BREAK_NOP);
|
| -}
|
| -
|
| -
|
| void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) {
|
| RelocInfo::Mode mode = rmode();
|
| if (mode == RelocInfo::EMBEDDED_OBJECT) {
|
|
|