Contribution of PowerPC port (continuation of 422063005) - PPC dir update 2 - mark2
[platform/upstream/v8.git] / src / ppc / assembler-ppc-inl.h
1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions
6 // are met:
7 //
8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer.
10 //
11 // - Redistribution in binary form must reproduce the above copyright
12 // notice, this list of conditions and the following disclaimer in the
13 // documentation and/or other materials provided with the
14 // 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
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 // COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31 // OF THE POSSIBILITY OF SUCH DAMAGE.
32
33 // The original source code covered by the above license above has been modified
34 // significantly by Google Inc.
35 // Copyright 2014 the V8 project authors. All rights reserved.
36
37 #ifndef V8_PPC_ASSEMBLER_PPC_INL_H_
38 #define V8_PPC_ASSEMBLER_PPC_INL_H_
39
40 #include "src/ppc/assembler-ppc.h"
41
42 #include "src/assembler.h"
43 #include "src/debug.h"
44
45
46 namespace v8 {
47 namespace internal {
48
49
50 bool CpuFeatures::SupportsCrankshaft() { return true; }
51
52
53 void RelocInfo::apply(intptr_t delta, ICacheFlushMode icache_flush_mode) {
54   if (IsInternalReference(rmode_) || IsInternalReferenceEncoded(rmode_)) {
55     // absolute code pointer inside code object moves with the code object.
56     Assembler::RelocateInternalReference(pc_, delta, 0, rmode_,
57                                          icache_flush_mode);
58   }
59 }
60
61
62 Address RelocInfo::target_address() {
63   DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
64   return Assembler::target_address_at(pc_, host_);
65 }
66
67
68 Address RelocInfo::target_address_address() {
69   DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_) ||
70          rmode_ == EMBEDDED_OBJECT || rmode_ == EXTERNAL_REFERENCE);
71
72 #if V8_OOL_CONSTANT_POOL
73   if (Assembler::IsConstantPoolLoadStart(pc_)) {
74     // We return the PC for ool constant pool since this function is used by the
75     // serializerer and expects the address to reside within the code object.
76     return reinterpret_cast<Address>(pc_);
77   }
78 #endif
79
80   // Read the address of the word containing the target_address in an
81   // instruction stream.
82   // The only architecture-independent user of this function is the serializer.
83   // The serializer uses it to find out how many raw bytes of instruction to
84   // output before the next target.
85   // For an instruction like LIS/ORI where the target bits are mixed into the
86   // instruction bits, the size of the target will be zero, indicating that the
87   // serializer should not step forward in memory after a target is resolved
88   // and written.
89   return reinterpret_cast<Address>(pc_);
90 }
91
92
93 Address RelocInfo::constant_pool_entry_address() {
94 #if V8_OOL_CONSTANT_POOL
95   return Assembler::target_constant_pool_address_at(pc_,
96                                                     host_->constant_pool());
97 #else
98   UNREACHABLE();
99   return NULL;
100 #endif
101 }
102
103
104 int RelocInfo::target_address_size() { return Assembler::kSpecialTargetSize; }
105
106
107 void RelocInfo::set_target_address(Address target,
108                                    WriteBarrierMode write_barrier_mode,
109                                    ICacheFlushMode icache_flush_mode) {
110   DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
111   Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
112   if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL &&
113       IsCodeTarget(rmode_)) {
114     Object* target_code = Code::GetCodeFromTargetAddress(target);
115     host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
116         host(), this, HeapObject::cast(target_code));
117   }
118 }
119
120
121 Address Assembler::break_address_from_return_address(Address pc) {
122   return target_address_from_return_address(pc);
123 }
124
125
126 Address Assembler::target_address_from_return_address(Address pc) {
127 // Returns the address of the call target from the return address that will
128 // be returned to after a call.
129 // Call sequence is :
130 //  mov   ip, @ call address
131 //  mtlr  ip
132 //  blrl
133 //                      @ return address
134 #if V8_OOL_CONSTANT_POOL
135   if (IsConstantPoolLoadEnd(pc - 3 * kInstrSize)) {
136     return pc - (kMovInstructionsConstantPool + 2) * kInstrSize;
137   }
138 #endif
139   return pc - (kMovInstructionsNoConstantPool + 2) * kInstrSize;
140 }
141
142
143 Address Assembler::return_address_from_call_start(Address pc) {
144 #if V8_OOL_CONSTANT_POOL
145   Address load_address = pc + (kMovInstructionsConstantPool - 1) * kInstrSize;
146   if (IsConstantPoolLoadEnd(load_address))
147     return pc + (kMovInstructionsConstantPool + 2) * kInstrSize;
148 #endif
149   return pc + (kMovInstructionsNoConstantPool + 2) * kInstrSize;
150 }
151
152
153 Object* RelocInfo::target_object() {
154   DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
155   return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_));
156 }
157
158
159 Handle<Object> RelocInfo::target_object_handle(Assembler* origin) {
160   DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
161   return Handle<Object>(
162       reinterpret_cast<Object**>(Assembler::target_address_at(pc_, host_)));
163 }
164
165
166 void RelocInfo::set_target_object(Object* target,
167                                   WriteBarrierMode write_barrier_mode,
168                                   ICacheFlushMode icache_flush_mode) {
169   DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
170   Assembler::set_target_address_at(
171       pc_, host_, reinterpret_cast<Address>(target), icache_flush_mode);
172   if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL &&
173       target->IsHeapObject()) {
174     host()->GetHeap()->incremental_marking()->RecordWrite(
175         host(), &Memory::Object_at(pc_), HeapObject::cast(target));
176   }
177 }
178
179
180 Address RelocInfo::target_reference() {
181   DCHECK(rmode_ == EXTERNAL_REFERENCE);
182   return Assembler::target_address_at(pc_, host_);
183 }
184
185
186 Address RelocInfo::target_runtime_entry(Assembler* origin) {
187   DCHECK(IsRuntimeEntry(rmode_));
188   return target_address();
189 }
190
191
192 void RelocInfo::set_target_runtime_entry(Address target,
193                                          WriteBarrierMode write_barrier_mode,
194                                          ICacheFlushMode icache_flush_mode) {
195   DCHECK(IsRuntimeEntry(rmode_));
196   if (target_address() != target)
197     set_target_address(target, write_barrier_mode, icache_flush_mode);
198 }
199
200
201 Handle<Cell> RelocInfo::target_cell_handle() {
202   DCHECK(rmode_ == RelocInfo::CELL);
203   Address address = Memory::Address_at(pc_);
204   return Handle<Cell>(reinterpret_cast<Cell**>(address));
205 }
206
207
208 Cell* RelocInfo::target_cell() {
209   DCHECK(rmode_ == RelocInfo::CELL);
210   return Cell::FromValueAddress(Memory::Address_at(pc_));
211 }
212
213
214 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
215                                 ICacheFlushMode icache_flush_mode) {
216   DCHECK(rmode_ == RelocInfo::CELL);
217   Address address = cell->address() + Cell::kValueOffset;
218   Memory::Address_at(pc_) = address;
219   if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL) {
220     // TODO(1550) We are passing NULL as a slot because cell can never be on
221     // evacuation candidate.
222     host()->GetHeap()->incremental_marking()->RecordWrite(host(), NULL, cell);
223   }
224 }
225
226
227 #if V8_OOL_CONSTANT_POOL
228 static const int kNoCodeAgeInstructions = 7;
229 #else
230 static const int kNoCodeAgeInstructions = 6;
231 #endif
232 static const int kCodeAgingInstructions =
233     Assembler::kMovInstructionsNoConstantPool + 3;
234 static const int kNoCodeAgeSequenceInstructions =
235     ((kNoCodeAgeInstructions >= kCodeAgingInstructions)
236          ? kNoCodeAgeInstructions
237          : kCodeAgingInstructions);
238 static const int kNoCodeAgeSequenceNops =
239     (kNoCodeAgeSequenceInstructions - kNoCodeAgeInstructions);
240 static const int kCodeAgingSequenceNops =
241     (kNoCodeAgeSequenceInstructions - kCodeAgingInstructions);
242 static const int kCodeAgingTargetDelta = 1 * Assembler::kInstrSize;
243 static const int kNoCodeAgeSequenceLength =
244     (kNoCodeAgeSequenceInstructions * Assembler::kInstrSize);
245
246
247 Handle<Object> RelocInfo::code_age_stub_handle(Assembler* origin) {
248   UNREACHABLE();  // This should never be reached on PPC.
249   return Handle<Object>();
250 }
251
252
253 Code* RelocInfo::code_age_stub() {
254   DCHECK(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
255   return Code::GetCodeFromTargetAddress(
256       Assembler::target_address_at(pc_ + kCodeAgingTargetDelta, host_));
257 }
258
259
260 void RelocInfo::set_code_age_stub(Code* stub,
261                                   ICacheFlushMode icache_flush_mode) {
262   DCHECK(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
263   Assembler::set_target_address_at(pc_ + kCodeAgingTargetDelta, host_,
264                                    stub->instruction_start(),
265                                    icache_flush_mode);
266 }
267
268
269 Address RelocInfo::call_address() {
270   DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
271          (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
272   // The pc_ offset of 0 assumes patched return sequence per
273   // BreakLocationIterator::SetDebugBreakAtReturn(), or debug break
274   // slot per BreakLocationIterator::SetDebugBreakAtSlot().
275   return Assembler::target_address_at(pc_, host_);
276 }
277
278
279 void RelocInfo::set_call_address(Address target) {
280   DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
281          (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
282   Assembler::set_target_address_at(pc_, host_, target);
283   if (host() != NULL) {
284     Object* target_code = Code::GetCodeFromTargetAddress(target);
285     host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
286         host(), this, HeapObject::cast(target_code));
287   }
288 }
289
290
291 Object* RelocInfo::call_object() { return *call_object_address(); }
292
293
294 void RelocInfo::set_call_object(Object* target) {
295   *call_object_address() = target;
296 }
297
298
299 Object** RelocInfo::call_object_address() {
300   DCHECK((IsJSReturn(rmode()) && IsPatchedReturnSequence()) ||
301          (IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence()));
302   return reinterpret_cast<Object**>(pc_ + 2 * Assembler::kInstrSize);
303 }
304
305
306 void RelocInfo::WipeOut() {
307   DCHECK(IsEmbeddedObject(rmode_) || IsCodeTarget(rmode_) ||
308          IsRuntimeEntry(rmode_) || IsExternalReference(rmode_));
309   Assembler::set_target_address_at(pc_, host_, NULL);
310 }
311
312
313 bool RelocInfo::IsPatchedReturnSequence() {
314   //
315   // The patched return sequence is defined by
316   // BreakLocationIterator::SetDebugBreakAtReturn()
317   // FIXED_SEQUENCE
318
319   Instr instr0 = Assembler::instr_at(pc_);
320   Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
321 #if V8_TARGET_ARCH_PPC64
322   Instr instr3 = Assembler::instr_at(pc_ + (3 * Assembler::kInstrSize));
323   Instr instr4 = Assembler::instr_at(pc_ + (4 * Assembler::kInstrSize));
324   Instr binstr = Assembler::instr_at(pc_ + (7 * Assembler::kInstrSize));
325 #else
326   Instr binstr = Assembler::instr_at(pc_ + 4 * Assembler::kInstrSize);
327 #endif
328   bool patched_return =
329       ((instr0 & kOpcodeMask) == ADDIS && (instr1 & kOpcodeMask) == ORI &&
330 #if V8_TARGET_ARCH_PPC64
331        (instr3 & kOpcodeMask) == ORIS && (instr4 & kOpcodeMask) == ORI &&
332 #endif
333        (binstr == 0x7d821008));  // twge r2, r2
334
335   // printf("IsPatchedReturnSequence: %d\n", patched_return);
336   return patched_return;
337 }
338
339
340 bool RelocInfo::IsPatchedDebugBreakSlotSequence() {
341   Instr current_instr = Assembler::instr_at(pc_);
342   return !Assembler::IsNop(current_instr, Assembler::DEBUG_BREAK_NOP);
343 }
344
345
346 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) {
347   RelocInfo::Mode mode = rmode();
348   if (mode == RelocInfo::EMBEDDED_OBJECT) {
349     visitor->VisitEmbeddedPointer(this);
350   } else if (RelocInfo::IsCodeTarget(mode)) {
351     visitor->VisitCodeTarget(this);
352   } else if (mode == RelocInfo::CELL) {
353     visitor->VisitCell(this);
354   } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
355     visitor->VisitExternalReference(this);
356   } else if (RelocInfo::IsCodeAgeSequence(mode)) {
357     visitor->VisitCodeAgeSequence(this);
358   } else if (((RelocInfo::IsJSReturn(mode) && IsPatchedReturnSequence()) ||
359               (RelocInfo::IsDebugBreakSlot(mode) &&
360                IsPatchedDebugBreakSlotSequence())) &&
361              isolate->debug()->has_break_points()) {
362     visitor->VisitDebugTarget(this);
363   } else if (IsRuntimeEntry(mode)) {
364     visitor->VisitRuntimeEntry(this);
365   }
366 }
367
368
369 template <typename StaticVisitor>
370 void RelocInfo::Visit(Heap* heap) {
371   RelocInfo::Mode mode = rmode();
372   if (mode == RelocInfo::EMBEDDED_OBJECT) {
373     StaticVisitor::VisitEmbeddedPointer(heap, this);
374   } else if (RelocInfo::IsCodeTarget(mode)) {
375     StaticVisitor::VisitCodeTarget(heap, this);
376   } else if (mode == RelocInfo::CELL) {
377     StaticVisitor::VisitCell(heap, this);
378   } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
379     StaticVisitor::VisitExternalReference(this);
380   } else if (RelocInfo::IsCodeAgeSequence(mode)) {
381     StaticVisitor::VisitCodeAgeSequence(heap, this);
382   } else if (heap->isolate()->debug()->has_break_points() &&
383              ((RelocInfo::IsJSReturn(mode) && IsPatchedReturnSequence()) ||
384               (RelocInfo::IsDebugBreakSlot(mode) &&
385                IsPatchedDebugBreakSlotSequence()))) {
386     StaticVisitor::VisitDebugTarget(heap, this);
387   } else if (IsRuntimeEntry(mode)) {
388     StaticVisitor::VisitRuntimeEntry(this);
389   }
390 }
391
392 Operand::Operand(intptr_t immediate, RelocInfo::Mode rmode) {
393   rm_ = no_reg;
394   imm_ = immediate;
395   rmode_ = rmode;
396 }
397
398 Operand::Operand(const ExternalReference& f) {
399   rm_ = no_reg;
400   imm_ = reinterpret_cast<intptr_t>(f.address());
401   rmode_ = RelocInfo::EXTERNAL_REFERENCE;
402 }
403
404 Operand::Operand(Smi* value) {
405   rm_ = no_reg;
406   imm_ = reinterpret_cast<intptr_t>(value);
407   rmode_ = kRelocInfo_NONEPTR;
408 }
409
410 Operand::Operand(Register rm) {
411   rm_ = rm;
412   rmode_ = kRelocInfo_NONEPTR;  // PPC -why doesn't ARM do this?
413 }
414
415 void Assembler::CheckBuffer() {
416   if (buffer_space() <= kGap) {
417     GrowBuffer();
418   }
419 }
420
421 void Assembler::CheckTrampolinePoolQuick() {
422   if (pc_offset() >= next_buffer_check_) {
423     CheckTrampolinePool();
424   }
425 }
426
427 void Assembler::emit(Instr x) {
428   CheckBuffer();
429   *reinterpret_cast<Instr*>(pc_) = x;
430   pc_ += kInstrSize;
431   CheckTrampolinePoolQuick();
432 }
433
434 bool Operand::is_reg() const { return rm_.is_valid(); }
435
436
437 // Fetch the 32bit value from the FIXED_SEQUENCE lis/ori
438 Address Assembler::target_address_at(Address pc,
439                                      ConstantPoolArray* constant_pool) {
440   Instr instr1 = instr_at(pc);
441   Instr instr2 = instr_at(pc + kInstrSize);
442   // Interpret 2 instructions generated by lis/ori
443   if (IsLis(instr1) && IsOri(instr2)) {
444 #if V8_TARGET_ARCH_PPC64
445     Instr instr4 = instr_at(pc + (3 * kInstrSize));
446     Instr instr5 = instr_at(pc + (4 * kInstrSize));
447     // Assemble the 64 bit value.
448     uint64_t hi = (static_cast<uint32_t>((instr1 & kImm16Mask) << 16) |
449                    static_cast<uint32_t>(instr2 & kImm16Mask));
450     uint64_t lo = (static_cast<uint32_t>((instr4 & kImm16Mask) << 16) |
451                    static_cast<uint32_t>(instr5 & kImm16Mask));
452     return reinterpret_cast<Address>((hi << 32) | lo);
453 #else
454     // Assemble the 32 bit value.
455     return reinterpret_cast<Address>(((instr1 & kImm16Mask) << 16) |
456                                      (instr2 & kImm16Mask));
457 #endif
458   }
459 #if V8_OOL_CONSTANT_POOL
460   return Memory::Address_at(target_constant_pool_address_at(pc, constant_pool));
461 #else
462   DCHECK(false);
463   return (Address)0;
464 #endif
465 }
466
467
468 #if V8_OOL_CONSTANT_POOL
469 bool Assembler::IsConstantPoolLoadStart(Address pc) {
470 #if V8_TARGET_ARCH_PPC64
471   if (!IsLi(instr_at(pc))) return false;
472   pc += kInstrSize;
473 #endif
474   return GetRA(instr_at(pc)).is(kConstantPoolRegister);
475 }
476
477
478 bool Assembler::IsConstantPoolLoadEnd(Address pc) {
479 #if V8_TARGET_ARCH_PPC64
480   pc -= kInstrSize;
481 #endif
482   return IsConstantPoolLoadStart(pc);
483 }
484
485
486 int Assembler::GetConstantPoolOffset(Address pc) {
487   DCHECK(IsConstantPoolLoadStart(pc));
488   Instr instr = instr_at(pc);
489   int offset = SIGN_EXT_IMM16((instr & kImm16Mask));
490   return offset;
491 }
492
493
494 void Assembler::SetConstantPoolOffset(Address pc, int offset) {
495   DCHECK(IsConstantPoolLoadStart(pc));
496   DCHECK(is_int16(offset));
497   Instr instr = instr_at(pc);
498   instr &= ~kImm16Mask;
499   instr |= (offset & kImm16Mask);
500   instr_at_put(pc, instr);
501 }
502
503
504 Address Assembler::target_constant_pool_address_at(
505     Address pc, ConstantPoolArray* constant_pool) {
506   Address addr = reinterpret_cast<Address>(constant_pool);
507   DCHECK(addr);
508   addr += GetConstantPoolOffset(pc);
509   return addr;
510 }
511 #endif
512
513
514 // This sets the branch destination (which gets loaded at the call address).
515 // This is for calls and branches within generated code.  The serializer
516 // has already deserialized the mov instructions etc.
517 // There is a FIXED_SEQUENCE assumption here
518 void Assembler::deserialization_set_special_target_at(
519     Address instruction_payload, Code* code, Address target) {
520   set_target_address_at(instruction_payload, code, target);
521 }
522
523 // This code assumes the FIXED_SEQUENCE of lis/ori
524 void Assembler::set_target_address_at(Address pc,
525                                       ConstantPoolArray* constant_pool,
526                                       Address target,
527                                       ICacheFlushMode icache_flush_mode) {
528   Instr instr1 = instr_at(pc);
529   Instr instr2 = instr_at(pc + kInstrSize);
530   // Interpret 2 instructions generated by lis/ori
531   if (IsLis(instr1) && IsOri(instr2)) {
532 #if V8_TARGET_ARCH_PPC64
533     Instr instr4 = instr_at(pc + (3 * kInstrSize));
534     Instr instr5 = instr_at(pc + (4 * kInstrSize));
535     // Needs to be fixed up when mov changes to handle 64-bit values.
536     uint32_t* p = reinterpret_cast<uint32_t*>(pc);
537     uintptr_t itarget = reinterpret_cast<uintptr_t>(target);
538
539     instr5 &= ~kImm16Mask;
540     instr5 |= itarget & kImm16Mask;
541     itarget = itarget >> 16;
542
543     instr4 &= ~kImm16Mask;
544     instr4 |= itarget & kImm16Mask;
545     itarget = itarget >> 16;
546
547     instr2 &= ~kImm16Mask;
548     instr2 |= itarget & kImm16Mask;
549     itarget = itarget >> 16;
550
551     instr1 &= ~kImm16Mask;
552     instr1 |= itarget & kImm16Mask;
553     itarget = itarget >> 16;
554
555     *p = instr1;
556     *(p + 1) = instr2;
557     *(p + 3) = instr4;
558     *(p + 4) = instr5;
559     if (icache_flush_mode != SKIP_ICACHE_FLUSH) {
560       CpuFeatures::FlushICache(p, 5 * kInstrSize);
561     }
562 #else
563     uint32_t* p = reinterpret_cast<uint32_t*>(pc);
564     uint32_t itarget = reinterpret_cast<uint32_t>(target);
565     int lo_word = itarget & kImm16Mask;
566     int hi_word = itarget >> 16;
567     instr1 &= ~kImm16Mask;
568     instr1 |= hi_word;
569     instr2 &= ~kImm16Mask;
570     instr2 |= lo_word;
571
572     *p = instr1;
573     *(p + 1) = instr2;
574     if (icache_flush_mode != SKIP_ICACHE_FLUSH) {
575       CpuFeatures::FlushICache(p, 2 * kInstrSize);
576     }
577 #endif
578   } else {
579 #if V8_OOL_CONSTANT_POOL
580     Memory::Address_at(target_constant_pool_address_at(pc, constant_pool)) =
581         target;
582 #else
583     UNREACHABLE();
584 #endif
585   }
586 }
587 }
588 }  // namespace v8::internal
589
590 #endif  // V8_PPC_ASSEMBLER_PPC_INL_H_