Index: src/mips/macro-assembler-mips.cc |
diff --git a/src/mips/macro-assembler-mips.cc b/src/mips/macro-assembler-mips.cc |
index 46c2779761b4b9118cee2e73b74e1fb5bba17178..051d491f9b083977e4ebf7cfd08d84d9f3822737 100644 |
--- a/src/mips/macro-assembler-mips.cc |
+++ b/src/mips/macro-assembler-mips.cc |
@@ -3974,7 +3974,6 @@ void MacroAssembler::Call(Address target, |
int MacroAssembler::CallSize(Handle<Code> code, |
RelocInfo::Mode rmode, |
- TypeFeedbackId ast_id, |
Condition cond, |
Register rs, |
const Operand& rt, |
@@ -3987,7 +3986,6 @@ int MacroAssembler::CallSize(Handle<Code> code, |
void MacroAssembler::Call(Handle<Code> code, |
RelocInfo::Mode rmode, |
- TypeFeedbackId ast_id, |
Condition cond, |
Register rs, |
const Operand& rt, |
@@ -3996,10 +3994,6 @@ void MacroAssembler::Call(Handle<Code> code, |
Label start; |
bind(&start); |
DCHECK(RelocInfo::IsCodeTarget(rmode)); |
- if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) { |
- SetRecordedAstId(ast_id); |
- rmode = RelocInfo::CODE_TARGET_WITH_ID; |
- } |
AllowDeferredHandleDereference embedding_raw_address; |
Call(reinterpret_cast<Address>(code.location()), rmode, cond, rs, rt, bd); |
DCHECK_EQ(CallSize(code, rmode, ast_id, cond, rs, rt, bd), |
@@ -5005,14 +4999,12 @@ void MacroAssembler::GetObjectType(Register object, |
// Runtime calls. |
void MacroAssembler::CallStub(CodeStub* stub, |
- TypeFeedbackId ast_id, |
Condition cond, |
Register r1, |
const Operand& r2, |
BranchDelaySlot bd) { |
DCHECK(AllowThisStubCall(stub)); // Stub calls are not allowed in some stubs. |
- Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, |
- cond, r1, r2, bd); |
+ Call(stub->GetCode(), RelocInfo::CODE_TARGET, cond, r1, r2, bd); |
} |
@@ -5346,7 +5338,7 @@ void MacroAssembler::CallRuntime(const Runtime::Function* f, int num_arguments, |
PrepareCEntryArgs(num_arguments); |
PrepareCEntryFunction(ExternalReference(f, isolate())); |
CEntryStub stub(isolate(), 1, save_doubles); |
- CallStub(&stub, TypeFeedbackId::None(), al, zero_reg, Operand(zero_reg), bd); |
+ CallStub(&stub, al, zero_reg, Operand(zero_reg), bd); |
} |
@@ -5357,7 +5349,7 @@ void MacroAssembler::CallExternalReference(const ExternalReference& ext, |
PrepareCEntryFunction(ext); |
CEntryStub stub(isolate(), 1); |
- CallStub(&stub, TypeFeedbackId::None(), al, zero_reg, Operand(zero_reg), bd); |
+ CallStub(&stub, al, zero_reg, Operand(zero_reg), bd); |
} |