Index: src/mips64/assembler-mips64.h |
diff --git a/src/mips64/assembler-mips64.h b/src/mips64/assembler-mips64.h |
index 2312bfbbe2e38a9e478ae127180670205b0dd187..f02e0af13e8998c61a888cced88592176d253ce6 100644 |
--- a/src/mips64/assembler-mips64.h |
+++ b/src/mips64/assembler-mips64.h |
@@ -1797,20 +1797,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); |
@@ -1939,11 +1925,6 @@ class Assembler : public AssemblerBase { |
// Helpers. |
void LoadRegPlusOffsetToAt(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_; |
- |
inline static void set_target_internal_reference_encoded_at(Address pc, |
Address target); |