Index: src/mips/assembler-mips.h |
diff --git a/src/mips/assembler-mips.h b/src/mips/assembler-mips.h |
index e30e54273e3b1869a157c0ee85b9c5a6530ff4d1..fa8602f22490dcc27ddcaf794a01c5368a419606 100644 |
--- a/src/mips/assembler-mips.h |
+++ b/src/mips/assembler-mips.h |
@@ -1739,20 +1739,6 @@ class Assembler : public AssemblerBase { |
// Mark address of a debug break slot. |
void RecordDebugBreakSlot(RelocInfo::Mode mode); |
- // Record the AST id of the CallIC being compiled, so that it can be placed |
- // in the relocation information. |
- void SetRecordedAstId(TypeFeedbackId ast_id) { |
- DCHECK(recorded_ast_id_.IsNone()); |
- recorded_ast_id_ = ast_id; |
- } |
- |
- TypeFeedbackId RecordedAstId() { |
- DCHECK(!recorded_ast_id_.IsNone()); |
- return recorded_ast_id_; |
- } |
- |
- void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); } |
- |
// Record a comment relocation entry that can be used by a disassembler. |
// Use --code-comments to enable. |
void RecordComment(const char* msg); |
@@ -1889,11 +1875,6 @@ class Assembler : public AssemblerBase { |
int32_t LoadRegPlusUpperOffsetPartToAt(const MemOperand& src); |
int32_t LoadUpperOffsetForTwoMemoryAccesses(const MemOperand& src); |
- // Relocation for a type-recording IC has the AST id added to it. This |
- // member variable is a way to pass the information from the call site to |
- // the relocation info. |
- TypeFeedbackId recorded_ast_id_; |
- |
int32_t buffer_space() const { return reloc_info_writer.pos() - pc_; } |
// Decode branch instruction at pos and return branch target pos. |