blob: 2666f6ada7c0006999fb2c9fd12f3a4c7bb8cec2 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001
Andrei Popescu31002712010-02-23 13:46:05 +00002// Copyright (c) 1994-2006 Sun Microsystems Inc.
3// All Rights Reserved.
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are
7// met:
8//
9// - Redistributions of source code must retain the above copyright notice,
10// this list of conditions and the following disclaimer.
11//
12// - Redistribution in binary form must reproduce the above copyright
13// notice, this list of conditions and the following disclaimer in the
14// documentation and/or other materials provided with the distribution.
15//
16// - Neither the name of Sun Microsystems or the names of contributors may
17// be used to endorse or promote products derived from this software without
18// specific prior written permission.
19//
20// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
21// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32// The original source code covered by the above license above has been
33// modified significantly by Google Inc.
Ben Murdoch3ef787d2012-04-12 10:51:47 +010034// Copyright 2012 the V8 project authors. All rights reserved.
Andrei Popescu31002712010-02-23 13:46:05 +000035
36
37#ifndef V8_MIPS_ASSEMBLER_MIPS_INL_H_
38#define V8_MIPS_ASSEMBLER_MIPS_INL_H_
39
Ben Murdochb8a8cc12014-11-26 15:28:44 +000040#include "src/mips/assembler-mips.h"
Ben Murdoch3ef787d2012-04-12 10:51:47 +010041
Ben Murdochb8a8cc12014-11-26 15:28:44 +000042#include "src/assembler.h"
43#include "src/debug.h"
Andrei Popescu31002712010-02-23 13:46:05 +000044
45
46namespace v8 {
47namespace internal {
48
Ben Murdochb8a8cc12014-11-26 15:28:44 +000049
50bool CpuFeatures::SupportsCrankshaft() { return IsSupported(FPU); }
51
52
Andrei Popescu31002712010-02-23 13:46:05 +000053// -----------------------------------------------------------------------------
Ben Murdoch257744e2011-11-30 15:57:28 +000054// Operand and MemOperand.
Andrei Popescu31002712010-02-23 13:46:05 +000055
56Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) {
57 rm_ = no_reg;
58 imm32_ = immediate;
59 rmode_ = rmode;
60}
61
Steve Block44f0eee2011-05-26 01:26:41 +010062
Andrei Popescu31002712010-02-23 13:46:05 +000063Operand::Operand(const ExternalReference& f) {
64 rm_ = no_reg;
65 imm32_ = reinterpret_cast<int32_t>(f.address());
66 rmode_ = RelocInfo::EXTERNAL_REFERENCE;
67}
68
Andrei Popescu31002712010-02-23 13:46:05 +000069
70Operand::Operand(Smi* value) {
71 rm_ = no_reg;
72 imm32_ = reinterpret_cast<intptr_t>(value);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000073 rmode_ = RelocInfo::NONE32;
Andrei Popescu31002712010-02-23 13:46:05 +000074}
75
Steve Block44f0eee2011-05-26 01:26:41 +010076
Andrei Popescu31002712010-02-23 13:46:05 +000077Operand::Operand(Register rm) {
78 rm_ = rm;
79}
80
Steve Block44f0eee2011-05-26 01:26:41 +010081
Andrei Popescu31002712010-02-23 13:46:05 +000082bool Operand::is_reg() const {
83 return rm_.is_valid();
84}
85
86
Ben Murdochb8a8cc12014-11-26 15:28:44 +000087int Register::NumAllocatableRegisters() {
88 return kMaxNumAllocatableRegisters;
89}
90
91
92int DoubleRegister::NumRegisters() {
93 return FPURegister::kMaxNumRegisters;
94}
95
96
97int DoubleRegister::NumAllocatableRegisters() {
98 return FPURegister::kMaxNumAllocatableRegisters;
99}
100
101
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100102int FPURegister::ToAllocationIndex(FPURegister reg) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000103 DCHECK(reg.code() % 2 == 0);
104 DCHECK(reg.code() / 2 < kMaxNumAllocatableRegisters);
105 DCHECK(reg.is_valid());
106 DCHECK(!reg.is(kDoubleRegZero));
107 DCHECK(!reg.is(kLithiumScratchDouble));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100108 return (reg.code() / 2);
109}
110
Ben Murdochc7cc0282012-03-05 14:35:55 +0000111
Andrei Popescu31002712010-02-23 13:46:05 +0000112// -----------------------------------------------------------------------------
Ben Murdoch257744e2011-11-30 15:57:28 +0000113// RelocInfo.
Andrei Popescu31002712010-02-23 13:46:05 +0000114
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000115void RelocInfo::apply(intptr_t delta, ICacheFlushMode icache_flush_mode) {
Ben Murdoch589d6972011-11-30 16:04:58 +0000116 if (IsCodeTarget(rmode_)) {
117 uint32_t scope1 = (uint32_t) target_address() & ~kImm28Mask;
118 uint32_t scope2 = reinterpret_cast<uint32_t>(pc_) & ~kImm28Mask;
119
120 if (scope1 != scope2) {
121 Assembler::JumpLabelToJumpRegister(pc_);
122 }
123 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000124 if (IsInternalReference(rmode_)) {
125 // Absolute code pointer inside code object moves with the code object.
126 byte* p = reinterpret_cast<byte*>(pc_);
127 int count = Assembler::RelocateInternalReference(p, delta);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000128 CpuFeatures::FlushICache(p, count * sizeof(uint32_t));
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000129 }
Andrei Popescu31002712010-02-23 13:46:05 +0000130}
131
132
133Address RelocInfo::target_address() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000134 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
135 return Assembler::target_address_at(pc_, host_);
Andrei Popescu31002712010-02-23 13:46:05 +0000136}
137
138
139Address RelocInfo::target_address_address() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000140 DCHECK(IsCodeTarget(rmode_) ||
141 IsRuntimeEntry(rmode_) ||
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100142 rmode_ == EMBEDDED_OBJECT ||
143 rmode_ == EXTERNAL_REFERENCE);
144 // Read the address of the word containing the target_address in an
145 // instruction stream.
146 // The only architecture-independent user of this function is the serializer.
147 // The serializer uses it to find out how many raw bytes of instruction to
148 // output before the next target.
149 // For an instruction like LUI/ORI where the target bits are mixed into the
150 // instruction bits, the size of the target will be zero, indicating that the
151 // serializer should not step forward in memory after a target is resolved
152 // and written. In this case the target_address_address function should
153 // return the end of the instructions to be patched, allowing the
154 // deserializer to deserialize the instructions as raw bytes and put them in
155 // place, ready to be patched with the target. After jump optimization,
156 // that is the address of the instruction that follows J/JAL/JR/JALR
157 // instruction.
158 return reinterpret_cast<Address>(
159 pc_ + Assembler::kInstructionsFor32BitConstant * Assembler::kInstrSize);
Steve Block44f0eee2011-05-26 01:26:41 +0100160}
161
162
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000163Address RelocInfo::constant_pool_entry_address() {
164 UNREACHABLE();
165 return NULL;
166}
167
168
Steve Block44f0eee2011-05-26 01:26:41 +0100169int RelocInfo::target_address_size() {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100170 return Assembler::kSpecialTargetSize;
Andrei Popescu31002712010-02-23 13:46:05 +0000171}
172
173
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000174void RelocInfo::set_target_address(Address target,
175 WriteBarrierMode write_barrier_mode,
176 ICacheFlushMode icache_flush_mode) {
177 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
178 Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
179 if (write_barrier_mode == UPDATE_WRITE_BARRIER &&
180 host() != NULL && IsCodeTarget(rmode_)) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100181 Object* target_code = Code::GetCodeFromTargetAddress(target);
182 host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
183 host(), this, HeapObject::cast(target_code));
184 }
Andrei Popescu31002712010-02-23 13:46:05 +0000185}
186
187
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000188Address Assembler::target_address_from_return_address(Address pc) {
189 return pc - kCallTargetAddressOffset;
190}
191
192
193Address Assembler::break_address_from_return_address(Address pc) {
194 return pc - Assembler::kPatchDebugBreakSlotReturnOffset;
195}
196
197
Andrei Popescu31002712010-02-23 13:46:05 +0000198Object* RelocInfo::target_object() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000199 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
200 return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_));
Andrei Popescu31002712010-02-23 13:46:05 +0000201}
202
203
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100204Handle<Object> RelocInfo::target_object_handle(Assembler* origin) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000205 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
Andrei Popescu31002712010-02-23 13:46:05 +0000206 return Handle<Object>(reinterpret_cast<Object**>(
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000207 Assembler::target_address_at(pc_, host_)));
Andrei Popescu31002712010-02-23 13:46:05 +0000208}
209
210
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000211void RelocInfo::set_target_object(Object* target,
212 WriteBarrierMode write_barrier_mode,
213 ICacheFlushMode icache_flush_mode) {
214 DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
215 Assembler::set_target_address_at(pc_, host_,
216 reinterpret_cast<Address>(target),
217 icache_flush_mode);
218 if (write_barrier_mode == UPDATE_WRITE_BARRIER &&
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100219 host() != NULL &&
220 target->IsHeapObject()) {
221 host()->GetHeap()->incremental_marking()->RecordWrite(
222 host(), &Memory::Object_at(pc_), HeapObject::cast(target));
223 }
Andrei Popescu31002712010-02-23 13:46:05 +0000224}
225
226
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000227Address RelocInfo::target_reference() {
228 DCHECK(rmode_ == EXTERNAL_REFERENCE);
229 return Assembler::target_address_at(pc_, host_);
Steve Block44f0eee2011-05-26 01:26:41 +0100230}
231
232
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000233Address RelocInfo::target_runtime_entry(Assembler* origin) {
234 DCHECK(IsRuntimeEntry(rmode_));
235 return target_address();
236}
237
238
239void RelocInfo::set_target_runtime_entry(Address target,
240 WriteBarrierMode write_barrier_mode,
241 ICacheFlushMode icache_flush_mode) {
242 DCHECK(IsRuntimeEntry(rmode_));
243 if (target_address() != target)
244 set_target_address(target, write_barrier_mode, icache_flush_mode);
245}
246
247
248Handle<Cell> RelocInfo::target_cell_handle() {
249 DCHECK(rmode_ == RelocInfo::CELL);
Steve Block44f0eee2011-05-26 01:26:41 +0100250 Address address = Memory::Address_at(pc_);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000251 return Handle<Cell>(reinterpret_cast<Cell**>(address));
Steve Block44f0eee2011-05-26 01:26:41 +0100252}
253
254
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000255Cell* RelocInfo::target_cell() {
256 DCHECK(rmode_ == RelocInfo::CELL);
257 return Cell::FromValueAddress(Memory::Address_at(pc_));
Steve Block44f0eee2011-05-26 01:26:41 +0100258}
259
260
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000261void RelocInfo::set_target_cell(Cell* cell,
262 WriteBarrierMode write_barrier_mode,
263 ICacheFlushMode icache_flush_mode) {
264 DCHECK(rmode_ == RelocInfo::CELL);
265 Address address = cell->address() + Cell::kValueOffset;
Steve Block44f0eee2011-05-26 01:26:41 +0100266 Memory::Address_at(pc_) = address;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000267 if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100268 // TODO(1550) We are passing NULL as a slot because cell can never be on
269 // evacuation candidate.
270 host()->GetHeap()->incremental_marking()->RecordWrite(
271 host(), NULL, cell);
272 }
Andrei Popescu31002712010-02-23 13:46:05 +0000273}
274
275
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000276static const int kNoCodeAgeSequenceLength = 7 * Assembler::kInstrSize;
277
278
279Handle<Object> RelocInfo::code_age_stub_handle(Assembler* origin) {
280 UNREACHABLE(); // This should never be reached on Arm.
281 return Handle<Object>();
282}
283
284
285Code* RelocInfo::code_age_stub() {
286 DCHECK(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
287 return Code::GetCodeFromTargetAddress(
288 Assembler::target_address_at(pc_ + Assembler::kInstrSize, host_));
289}
290
291
292void RelocInfo::set_code_age_stub(Code* stub,
293 ICacheFlushMode icache_flush_mode) {
294 DCHECK(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
295 Assembler::set_target_address_at(pc_ + Assembler::kInstrSize,
296 host_,
297 stub->instruction_start());
298}
299
300
Andrei Popescu31002712010-02-23 13:46:05 +0000301Address RelocInfo::call_address() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000302 DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
Steve Block44f0eee2011-05-26 01:26:41 +0100303 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
304 // The pc_ offset of 0 assumes mips patched return sequence per
305 // debug-mips.cc BreakLocationIterator::SetDebugBreakAtReturn(), or
306 // debug break slot per BreakLocationIterator::SetDebugBreakAtSlot().
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000307 return Assembler::target_address_at(pc_, host_);
Andrei Popescu31002712010-02-23 13:46:05 +0000308}
309
310
311void RelocInfo::set_call_address(Address target) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000312 DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
Steve Block44f0eee2011-05-26 01:26:41 +0100313 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
314 // The pc_ offset of 0 assumes mips patched return sequence per
315 // debug-mips.cc BreakLocationIterator::SetDebugBreakAtReturn(), or
316 // debug break slot per BreakLocationIterator::SetDebugBreakAtSlot().
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000317 Assembler::set_target_address_at(pc_, host_, target);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100318 if (host() != NULL) {
319 Object* target_code = Code::GetCodeFromTargetAddress(target);
320 host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
321 host(), this, HeapObject::cast(target_code));
322 }
Andrei Popescu31002712010-02-23 13:46:05 +0000323}
324
325
326Object* RelocInfo::call_object() {
327 return *call_object_address();
328}
329
330
331Object** RelocInfo::call_object_address() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000332 DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
Steve Block44f0eee2011-05-26 01:26:41 +0100333 (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
Andrei Popescu31002712010-02-23 13:46:05 +0000334 return reinterpret_cast<Object**>(pc_ + 2 * Assembler::kInstrSize);
335}
336
337
338void RelocInfo::set_call_object(Object* target) {
339 *call_object_address() = target;
340}
341
342
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000343void RelocInfo::WipeOut() {
344 DCHECK(IsEmbeddedObject(rmode_) ||
345 IsCodeTarget(rmode_) ||
346 IsRuntimeEntry(rmode_) ||
347 IsExternalReference(rmode_));
348 Assembler::set_target_address_at(pc_, host_, NULL);
349}
350
351
Andrei Popescu31002712010-02-23 13:46:05 +0000352bool RelocInfo::IsPatchedReturnSequence() {
Steve Block44f0eee2011-05-26 01:26:41 +0100353 Instr instr0 = Assembler::instr_at(pc_);
354 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
355 Instr instr2 = Assembler::instr_at(pc_ + 2 * Assembler::kInstrSize);
356 bool patched_return = ((instr0 & kOpcodeMask) == LUI &&
357 (instr1 & kOpcodeMask) == ORI &&
Ben Murdoch589d6972011-11-30 16:04:58 +0000358 ((instr2 & kOpcodeMask) == JAL ||
359 ((instr2 & kOpcodeMask) == SPECIAL &&
360 (instr2 & kFunctionFieldMask) == JALR)));
Steve Block44f0eee2011-05-26 01:26:41 +0100361 return patched_return;
362}
363
364
365bool RelocInfo::IsPatchedDebugBreakSlotSequence() {
366 Instr current_instr = Assembler::instr_at(pc_);
367 return !Assembler::IsNop(current_instr, Assembler::DEBUG_BREAK_NOP);
368}
369
370
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000371void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) {
Steve Block44f0eee2011-05-26 01:26:41 +0100372 RelocInfo::Mode mode = rmode();
373 if (mode == RelocInfo::EMBEDDED_OBJECT) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100374 visitor->VisitEmbeddedPointer(this);
Steve Block44f0eee2011-05-26 01:26:41 +0100375 } else if (RelocInfo::IsCodeTarget(mode)) {
376 visitor->VisitCodeTarget(this);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000377 } else if (mode == RelocInfo::CELL) {
378 visitor->VisitCell(this);
Steve Block44f0eee2011-05-26 01:26:41 +0100379 } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100380 visitor->VisitExternalReference(this);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000381 } else if (RelocInfo::IsCodeAgeSequence(mode)) {
382 visitor->VisitCodeAgeSequence(this);
Steve Block44f0eee2011-05-26 01:26:41 +0100383 } else if (((RelocInfo::IsJSReturn(mode) &&
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100384 IsPatchedReturnSequence()) ||
385 (RelocInfo::IsDebugBreakSlot(mode) &&
386 IsPatchedDebugBreakSlotSequence())) &&
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000387 isolate->debug()->has_break_points()) {
Steve Block44f0eee2011-05-26 01:26:41 +0100388 visitor->VisitDebugTarget(this);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000389 } else if (RelocInfo::IsRuntimeEntry(mode)) {
Steve Block44f0eee2011-05-26 01:26:41 +0100390 visitor->VisitRuntimeEntry(this);
391 }
392}
393
394
395template<typename StaticVisitor>
396void RelocInfo::Visit(Heap* heap) {
397 RelocInfo::Mode mode = rmode();
398 if (mode == RelocInfo::EMBEDDED_OBJECT) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100399 StaticVisitor::VisitEmbeddedPointer(heap, this);
Steve Block44f0eee2011-05-26 01:26:41 +0100400 } else if (RelocInfo::IsCodeTarget(mode)) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000401 StaticVisitor::VisitCodeTarget(heap, this);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000402 } else if (mode == RelocInfo::CELL) {
403 StaticVisitor::VisitCell(heap, this);
Steve Block44f0eee2011-05-26 01:26:41 +0100404 } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100405 StaticVisitor::VisitExternalReference(this);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000406 } else if (RelocInfo::IsCodeAgeSequence(mode)) {
407 StaticVisitor::VisitCodeAgeSequence(heap, this);
Steve Block44f0eee2011-05-26 01:26:41 +0100408 } else if (heap->isolate()->debug()->has_break_points() &&
409 ((RelocInfo::IsJSReturn(mode) &&
410 IsPatchedReturnSequence()) ||
411 (RelocInfo::IsDebugBreakSlot(mode) &&
412 IsPatchedDebugBreakSlotSequence()))) {
Ben Murdoch257744e2011-11-30 15:57:28 +0000413 StaticVisitor::VisitDebugTarget(heap, this);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000414 } else if (RelocInfo::IsRuntimeEntry(mode)) {
Steve Block44f0eee2011-05-26 01:26:41 +0100415 StaticVisitor::VisitRuntimeEntry(this);
416 }
Andrei Popescu31002712010-02-23 13:46:05 +0000417}
418
419
420// -----------------------------------------------------------------------------
Ben Murdoch257744e2011-11-30 15:57:28 +0000421// Assembler.
Andrei Popescu31002712010-02-23 13:46:05 +0000422
423
424void Assembler::CheckBuffer() {
425 if (buffer_space() <= kGap) {
426 GrowBuffer();
427 }
428}
429
430
Steve Block44f0eee2011-05-26 01:26:41 +0100431void Assembler::CheckTrampolinePoolQuick() {
432 if (pc_offset() >= next_buffer_check_) {
433 CheckTrampolinePool();
434 }
435}
436
437
Andrei Popescu31002712010-02-23 13:46:05 +0000438void Assembler::emit(Instr x) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000439 if (!is_buffer_growth_blocked()) {
440 CheckBuffer();
441 }
Andrei Popescu31002712010-02-23 13:46:05 +0000442 *reinterpret_cast<Instr*>(pc_) = x;
443 pc_ += kInstrSize;
Steve Block44f0eee2011-05-26 01:26:41 +0100444 CheckTrampolinePoolQuick();
Andrei Popescu31002712010-02-23 13:46:05 +0000445}
446
447
448} } // namespace v8::internal
449
450#endif // V8_MIPS_ASSEMBLER_MIPS_INL_H_