Index: src/ppc/assembler-ppc.h |
diff --git a/src/ppc/assembler-ppc.h b/src/ppc/assembler-ppc.h |
index b7abb9eef38ab4a599a048bfd44fbabde82ed6c6..54e93697283d3951de2e95cd719d05c29a0b3990 100644 |
--- a/src/ppc/assembler-ppc.h |
+++ b/src/ppc/assembler-ppc.h |
@@ -1267,22 +1267,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) { |
- // Causes compiler to fail |
- // DCHECK(recorded_ast_id_.IsNone()); |
- recorded_ast_id_ = ast_id; |
- } |
- |
- TypeFeedbackId RecordedAstId() { |
- // Causes compiler to fail |
- // 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); |
@@ -1376,11 +1360,6 @@ class Assembler : public AssemblerBase { |
void EmitRelocations(); |
protected: |
- // 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_; |
- |
int buffer_space() const { return reloc_info_writer.pos() - pc_; } |
// Decode instruction(s) at pos and return backchain to previous |