Index: src/x87/assembler-x87.cc |
diff --git a/src/x87/assembler-x87.cc b/src/x87/assembler-x87.cc |
index 2fec0cd6c407f756bb63a742cb6606905941b1ea..03e626846f0a43845ce27731618448b4f8faac45 100644 |
--- a/src/x87/assembler-x87.cc |
+++ b/src/x87/assembler-x87.cc |
@@ -1898,37 +1898,6 @@ void Assembler::setcc(Condition cc, Register reg) { |
} |
-void Assembler::RecordJSReturn() { |
- positions_recorder()->WriteRecordedPositions(); |
- EnsureSpace ensure_space(this); |
- RecordRelocInfo(RelocInfo::JS_RETURN); |
-} |
- |
- |
-void Assembler::RecordDebugBreakSlot() { |
- positions_recorder()->WriteRecordedPositions(); |
- EnsureSpace ensure_space(this); |
- RecordRelocInfo(RelocInfo::DEBUG_BREAK_SLOT); |
-} |
- |
- |
-void Assembler::RecordComment(const char* msg, bool force) { |
- if (FLAG_code_comments || force) { |
- EnsureSpace ensure_space(this); |
- RecordRelocInfo(RelocInfo::COMMENT, reinterpret_cast<intptr_t>(msg)); |
- } |
-} |
- |
- |
-void Assembler::RecordDeoptReason(const int reason, const int raw_position) { |
- if (FLAG_trace_deopt || isolate()->cpu_profiler()->is_profiling()) { |
- EnsureSpace ensure_space(this); |
- RecordRelocInfo(RelocInfo::POSITION, raw_position); |
- RecordRelocInfo(RelocInfo::DEOPT_REASON, reason); |
- } |
-} |
- |
- |
void Assembler::GrowBuffer() { |
DCHECK(buffer_overflow()); |
if (!own_buffer_) FATAL("external code buffer is too small"); |