Index: src/ia32/assembler-ia32.cc |
diff --git a/src/ia32/assembler-ia32.cc b/src/ia32/assembler-ia32.cc |
index 1d7e619abf591394be67da571cde24a4a1498a32..511b1c868867d2a3a75955c42e060e8dcb903b62 100644 |
--- a/src/ia32/assembler-ia32.cc |
+++ b/src/ia32/assembler-ia32.cc |
@@ -2629,37 +2629,6 @@ void Assembler::emit_vex_prefix(XMMRegister vreg, VectorLength l, SIMDPrefix pp, |
} |
-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"); |