PPC: Debugger: use debug break slots to break at function exit.
[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) {
54   // absolute code pointer inside code object moves with the code object.
55   if (IsInternalReference(rmode_)) {
56     // Jump table entry
57     Address target = Memory::Address_at(pc_);
58     Memory::Address_at(pc_) = target + delta;
59   } else {
60     // mov sequence
61     DCHECK(IsInternalReferenceEncoded(rmode_));
62     Address target = Assembler::target_address_at(pc_, host_);
63     Assembler::set_target_address_at(pc_, host_, target + delta,
64                                      SKIP_ICACHE_FLUSH);
65   }
66 }
67
68
69 Address RelocInfo::target_internal_reference() {
70   if (IsInternalReference(rmode_)) {
71     // Jump table entry
72     return Memory::Address_at(pc_);
73   } else {
74     // mov sequence
75     DCHECK(IsInternalReferenceEncoded(rmode_));
76     return Assembler::target_address_at(pc_, host_);
77   }
78 }
79
80
81 Address RelocInfo::target_internal_reference_address() {
82   DCHECK(IsInternalReference(rmode_) || IsInternalReferenceEncoded(rmode_));
83   return reinterpret_cast<Address>(pc_);
84 }
85
86
87 Address RelocInfo::target_address() {
88   DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
89   return Assembler::target_address_at(pc_, host_);
90 }
91
92
93 Address RelocInfo::target_address_address() {
94   DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_) ||
95          rmode_ == EMBEDDED_OBJECT || rmode_ == EXTERNAL_REFERENCE);
96
97   if (FLAG_enable_embedded_constant_pool &&
98       Assembler::IsConstantPoolLoadStart(pc_)) {
99     // We return the PC for embedded constant pool since this function is used
100     // by the serializer and expects the address to reside within the code
101     // object.
102     return reinterpret_cast<Address>(pc_);
103   }
104
105   // Read the address of the word containing the target_address in an
106   // instruction stream.
107   // The only architecture-independent user of this function is the serializer.
108   // The serializer uses it to find out how many raw bytes of instruction to
109   // output before the next target.
110   // For an instruction like LIS/ORI where the target bits are mixed into the
111   // instruction bits, the size of the target will be zero, indicating that the
112   // serializer should not step forward in memory after a target is resolved
113   // and written.
114   return reinterpret_cast<Address>(pc_);
115 }
116
117
118 Address RelocInfo::constant_pool_entry_address() {
119   if (FLAG_enable_embedded_constant_pool) {
120     Address constant_pool = host_->constant_pool();
121     DCHECK(constant_pool);
122     ConstantPoolEntry::Access access;
123     if (Assembler::IsConstantPoolLoadStart(pc_, &access))
124       return Assembler::target_constant_pool_address_at(
125           pc_, constant_pool, access, ConstantPoolEntry::INTPTR);
126   }
127   UNREACHABLE();
128   return NULL;
129 }
130
131
132 int RelocInfo::target_address_size() { return Assembler::kSpecialTargetSize; }
133
134
135 void RelocInfo::set_target_address(Address target,
136                                    WriteBarrierMode write_barrier_mode,
137                                    ICacheFlushMode icache_flush_mode) {
138   DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
139   Assembler::set_target_address_at(pc_, host_, target, icache_flush_mode);
140   if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL &&
141       IsCodeTarget(rmode_)) {
142     Object* target_code = Code::GetCodeFromTargetAddress(target);
143     host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
144         host(), this, HeapObject::cast(target_code));
145   }
146 }
147
148
149 Address Assembler::target_address_from_return_address(Address pc) {
150 // Returns the address of the call target from the return address that will
151 // be returned to after a call.
152 // Call sequence is :
153 //  mov   ip, @ call address
154 //  mtlr  ip
155 //  blrl
156 //                      @ return address
157   int len;
158   ConstantPoolEntry::Access access;
159   if (FLAG_enable_embedded_constant_pool &&
160       IsConstantPoolLoadEnd(pc - 3 * kInstrSize, &access)) {
161     len = (access == ConstantPoolEntry::OVERFLOWED) ? 2 : 1;
162   } else {
163     len = kMovInstructionsNoConstantPool;
164   }
165   return pc - (len + 2) * kInstrSize;
166 }
167
168
169 Address Assembler::return_address_from_call_start(Address pc) {
170   int len;
171   ConstantPoolEntry::Access access;
172   if (FLAG_enable_embedded_constant_pool &&
173       IsConstantPoolLoadStart(pc, &access)) {
174     len = (access == ConstantPoolEntry::OVERFLOWED) ? 2 : 1;
175   } else {
176     len = kMovInstructionsNoConstantPool;
177   }
178   return pc + (len + 2) * kInstrSize;
179 }
180
181
182 Object* RelocInfo::target_object() {
183   DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
184   return reinterpret_cast<Object*>(Assembler::target_address_at(pc_, host_));
185 }
186
187
188 Handle<Object> RelocInfo::target_object_handle(Assembler* origin) {
189   DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
190   return Handle<Object>(
191       reinterpret_cast<Object**>(Assembler::target_address_at(pc_, host_)));
192 }
193
194
195 void RelocInfo::set_target_object(Object* target,
196                                   WriteBarrierMode write_barrier_mode,
197                                   ICacheFlushMode icache_flush_mode) {
198   DCHECK(IsCodeTarget(rmode_) || rmode_ == EMBEDDED_OBJECT);
199   Assembler::set_target_address_at(
200       pc_, host_, reinterpret_cast<Address>(target), icache_flush_mode);
201   if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL &&
202       target->IsHeapObject()) {
203     host()->GetHeap()->incremental_marking()->RecordWrite(
204         host(), &Memory::Object_at(pc_), HeapObject::cast(target));
205   }
206 }
207
208
209 Address RelocInfo::target_external_reference() {
210   DCHECK(rmode_ == EXTERNAL_REFERENCE);
211   return Assembler::target_address_at(pc_, host_);
212 }
213
214
215 Address RelocInfo::target_runtime_entry(Assembler* origin) {
216   DCHECK(IsRuntimeEntry(rmode_));
217   return target_address();
218 }
219
220
221 void RelocInfo::set_target_runtime_entry(Address target,
222                                          WriteBarrierMode write_barrier_mode,
223                                          ICacheFlushMode icache_flush_mode) {
224   DCHECK(IsRuntimeEntry(rmode_));
225   if (target_address() != target)
226     set_target_address(target, write_barrier_mode, icache_flush_mode);
227 }
228
229
230 Handle<Cell> RelocInfo::target_cell_handle() {
231   DCHECK(rmode_ == RelocInfo::CELL);
232   Address address = Memory::Address_at(pc_);
233   return Handle<Cell>(reinterpret_cast<Cell**>(address));
234 }
235
236
237 Cell* RelocInfo::target_cell() {
238   DCHECK(rmode_ == RelocInfo::CELL);
239   return Cell::FromValueAddress(Memory::Address_at(pc_));
240 }
241
242
243 void RelocInfo::set_target_cell(Cell* cell, WriteBarrierMode write_barrier_mode,
244                                 ICacheFlushMode icache_flush_mode) {
245   DCHECK(rmode_ == RelocInfo::CELL);
246   Address address = cell->address() + Cell::kValueOffset;
247   Memory::Address_at(pc_) = address;
248   if (write_barrier_mode == UPDATE_WRITE_BARRIER && host() != NULL) {
249     // TODO(1550) We are passing NULL as a slot because cell can never be on
250     // evacuation candidate.
251     host()->GetHeap()->incremental_marking()->RecordWrite(host(), NULL, cell);
252   }
253 }
254
255
256 static const int kNoCodeAgeInstructions =
257     FLAG_enable_embedded_constant_pool ? 7 : 6;
258 static const int kCodeAgingInstructions =
259     Assembler::kMovInstructionsNoConstantPool + 3;
260 static const int kNoCodeAgeSequenceInstructions =
261     ((kNoCodeAgeInstructions >= kCodeAgingInstructions)
262          ? kNoCodeAgeInstructions
263          : kCodeAgingInstructions);
264 static const int kNoCodeAgeSequenceNops =
265     (kNoCodeAgeSequenceInstructions - kNoCodeAgeInstructions);
266 static const int kCodeAgingSequenceNops =
267     (kNoCodeAgeSequenceInstructions - kCodeAgingInstructions);
268 static const int kCodeAgingTargetDelta = 1 * Assembler::kInstrSize;
269 static const int kNoCodeAgeSequenceLength =
270     (kNoCodeAgeSequenceInstructions * Assembler::kInstrSize);
271
272
273 Handle<Object> RelocInfo::code_age_stub_handle(Assembler* origin) {
274   UNREACHABLE();  // This should never be reached on PPC.
275   return Handle<Object>();
276 }
277
278
279 Code* RelocInfo::code_age_stub() {
280   DCHECK(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
281   return Code::GetCodeFromTargetAddress(
282       Assembler::target_address_at(pc_ + kCodeAgingTargetDelta, host_));
283 }
284
285
286 void RelocInfo::set_code_age_stub(Code* stub,
287                                   ICacheFlushMode icache_flush_mode) {
288   DCHECK(rmode_ == RelocInfo::CODE_AGE_SEQUENCE);
289   Assembler::set_target_address_at(pc_ + kCodeAgingTargetDelta, host_,
290                                    stub->instruction_start(),
291                                    icache_flush_mode);
292 }
293
294
295 Address RelocInfo::debug_call_address() {
296   DCHECK(IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence());
297   return Assembler::target_address_at(pc_, host_);
298 }
299
300
301 void RelocInfo::set_debug_call_address(Address target) {
302   DCHECK(IsDebugBreakSlot(rmode()) && IsPatchedDebugBreakSlotSequence());
303   Assembler::set_target_address_at(pc_, host_, target);
304   if (host() != NULL) {
305     Object* target_code = Code::GetCodeFromTargetAddress(target);
306     host()->GetHeap()->incremental_marking()->RecordWriteIntoCode(
307         host(), this, HeapObject::cast(target_code));
308   }
309 }
310
311
312 void RelocInfo::WipeOut() {
313   DCHECK(IsEmbeddedObject(rmode_) || IsCodeTarget(rmode_) ||
314          IsRuntimeEntry(rmode_) || IsExternalReference(rmode_) ||
315          IsInternalReference(rmode_) || IsInternalReferenceEncoded(rmode_));
316   if (IsInternalReference(rmode_)) {
317     // Jump table entry
318     Memory::Address_at(pc_) = NULL;
319   } else if (IsInternalReferenceEncoded(rmode_)) {
320     // mov sequence
321     // Currently used only by deserializer, no need to flush.
322     Assembler::set_target_address_at(pc_, host_, NULL, SKIP_ICACHE_FLUSH);
323   } else {
324     Assembler::set_target_address_at(pc_, host_, NULL);
325   }
326 }
327
328
329 bool RelocInfo::IsPatchedReturnSequence() {
330   //
331   // The patched return sequence is defined by
332   // BreakLocation::SetDebugBreakAtReturn()
333   // FIXED_SEQUENCE
334
335   Instr instr0 = Assembler::instr_at(pc_);
336   Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
337 #if V8_TARGET_ARCH_PPC64
338   Instr instr3 = Assembler::instr_at(pc_ + (3 * Assembler::kInstrSize));
339   Instr instr4 = Assembler::instr_at(pc_ + (4 * Assembler::kInstrSize));
340   Instr binstr = Assembler::instr_at(pc_ + (7 * Assembler::kInstrSize));
341 #else
342   Instr binstr = Assembler::instr_at(pc_ + 4 * Assembler::kInstrSize);
343 #endif
344   bool patched_return =
345       ((instr0 & kOpcodeMask) == ADDIS && (instr1 & kOpcodeMask) == ORI &&
346 #if V8_TARGET_ARCH_PPC64
347        (instr3 & kOpcodeMask) == ORIS && (instr4 & kOpcodeMask) == ORI &&
348 #endif
349        (binstr == 0x7d821008));  // twge r2, r2
350
351   // printf("IsPatchedReturnSequence: %d\n", patched_return);
352   return patched_return;
353 }
354
355
356 bool RelocInfo::IsPatchedDebugBreakSlotSequence() {
357   Instr current_instr = Assembler::instr_at(pc_);
358   return !Assembler::IsNop(current_instr, Assembler::DEBUG_BREAK_NOP);
359 }
360
361
362 void RelocInfo::Visit(Isolate* isolate, ObjectVisitor* visitor) {
363   RelocInfo::Mode mode = rmode();
364   if (mode == RelocInfo::EMBEDDED_OBJECT) {
365     visitor->VisitEmbeddedPointer(this);
366   } else if (RelocInfo::IsCodeTarget(mode)) {
367     visitor->VisitCodeTarget(this);
368   } else if (mode == RelocInfo::CELL) {
369     visitor->VisitCell(this);
370   } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
371     visitor->VisitExternalReference(this);
372   } else if (mode == RelocInfo::INTERNAL_REFERENCE ||
373              mode == RelocInfo::INTERNAL_REFERENCE_ENCODED) {
374     visitor->VisitInternalReference(this);
375   } else if (RelocInfo::IsCodeAgeSequence(mode)) {
376     visitor->VisitCodeAgeSequence(this);
377   } else if (RelocInfo::IsDebugBreakSlot(mode) &&
378              IsPatchedDebugBreakSlotSequence() &&
379              isolate->debug()->has_break_points()) {
380     visitor->VisitDebugTarget(this);
381   } else if (IsRuntimeEntry(mode)) {
382     visitor->VisitRuntimeEntry(this);
383   }
384 }
385
386
387 template <typename StaticVisitor>
388 void RelocInfo::Visit(Heap* heap) {
389   RelocInfo::Mode mode = rmode();
390   if (mode == RelocInfo::EMBEDDED_OBJECT) {
391     StaticVisitor::VisitEmbeddedPointer(heap, this);
392   } else if (RelocInfo::IsCodeTarget(mode)) {
393     StaticVisitor::VisitCodeTarget(heap, this);
394   } else if (mode == RelocInfo::CELL) {
395     StaticVisitor::VisitCell(heap, this);
396   } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
397     StaticVisitor::VisitExternalReference(this);
398   } else if (mode == RelocInfo::INTERNAL_REFERENCE ||
399              mode == RelocInfo::INTERNAL_REFERENCE_ENCODED) {
400     StaticVisitor::VisitInternalReference(this);
401   } else if (RelocInfo::IsCodeAgeSequence(mode)) {
402     StaticVisitor::VisitCodeAgeSequence(heap, this);
403   } else if (heap->isolate()->debug()->has_break_points() &&
404              RelocInfo::IsDebugBreakSlot(mode) &&
405              IsPatchedDebugBreakSlotSequence()) {
406     StaticVisitor::VisitDebugTarget(heap, this);
407   } else if (IsRuntimeEntry(mode)) {
408     StaticVisitor::VisitRuntimeEntry(this);
409   }
410 }
411
412 Operand::Operand(intptr_t immediate, RelocInfo::Mode rmode) {
413   rm_ = no_reg;
414   imm_ = immediate;
415   rmode_ = rmode;
416 }
417
418 Operand::Operand(const ExternalReference& f) {
419   rm_ = no_reg;
420   imm_ = reinterpret_cast<intptr_t>(f.address());
421   rmode_ = RelocInfo::EXTERNAL_REFERENCE;
422 }
423
424 Operand::Operand(Smi* value) {
425   rm_ = no_reg;
426   imm_ = reinterpret_cast<intptr_t>(value);
427   rmode_ = kRelocInfo_NONEPTR;
428 }
429
430 Operand::Operand(Register rm) {
431   rm_ = rm;
432   rmode_ = kRelocInfo_NONEPTR;  // PPC -why doesn't ARM do this?
433 }
434
435 void Assembler::CheckBuffer() {
436   if (buffer_space() <= kGap) {
437     GrowBuffer();
438   }
439 }
440
441 void Assembler::TrackBranch() {
442   DCHECK(!trampoline_emitted_);
443   int count = tracked_branch_count_++;
444   if (count == 0) {
445     // We leave space (kMaxBlockTrampolineSectionSize)
446     // for BlockTrampolinePoolScope buffer.
447     next_trampoline_check_ =
448         pc_offset() + kMaxCondBranchReach - kMaxBlockTrampolineSectionSize;
449   } else {
450     next_trampoline_check_ -= kTrampolineSlotsSize;
451   }
452 }
453
454 void Assembler::UntrackBranch() {
455   DCHECK(!trampoline_emitted_);
456   DCHECK(tracked_branch_count_ > 0);
457   int count = --tracked_branch_count_;
458   if (count == 0) {
459     // Reset
460     next_trampoline_check_ = kMaxInt;
461   } else {
462     next_trampoline_check_ += kTrampolineSlotsSize;
463   }
464 }
465
466 void Assembler::CheckTrampolinePoolQuick() {
467   if (pc_offset() >= next_trampoline_check_) {
468     CheckTrampolinePool();
469   }
470 }
471
472 void Assembler::emit(Instr x) {
473   CheckBuffer();
474   *reinterpret_cast<Instr*>(pc_) = x;
475   pc_ += kInstrSize;
476   CheckTrampolinePoolQuick();
477 }
478
479 bool Operand::is_reg() const { return rm_.is_valid(); }
480
481
482 // Fetch the 32bit value from the FIXED_SEQUENCE lis/ori
483 Address Assembler::target_address_at(Address pc, Address constant_pool) {
484   if (FLAG_enable_embedded_constant_pool && constant_pool) {
485     ConstantPoolEntry::Access access;
486     if (IsConstantPoolLoadStart(pc, &access))
487       return Memory::Address_at(target_constant_pool_address_at(
488           pc, constant_pool, access, ConstantPoolEntry::INTPTR));
489   }
490
491   Instr instr1 = instr_at(pc);
492   Instr instr2 = instr_at(pc + kInstrSize);
493   // Interpret 2 instructions generated by lis/ori
494   if (IsLis(instr1) && IsOri(instr2)) {
495 #if V8_TARGET_ARCH_PPC64
496     Instr instr4 = instr_at(pc + (3 * kInstrSize));
497     Instr instr5 = instr_at(pc + (4 * kInstrSize));
498     // Assemble the 64 bit value.
499     uint64_t hi = (static_cast<uint32_t>((instr1 & kImm16Mask) << 16) |
500                    static_cast<uint32_t>(instr2 & kImm16Mask));
501     uint64_t lo = (static_cast<uint32_t>((instr4 & kImm16Mask) << 16) |
502                    static_cast<uint32_t>(instr5 & kImm16Mask));
503     return reinterpret_cast<Address>((hi << 32) | lo);
504 #else
505     // Assemble the 32 bit value.
506     return reinterpret_cast<Address>(((instr1 & kImm16Mask) << 16) |
507                                      (instr2 & kImm16Mask));
508 #endif
509   }
510
511   UNREACHABLE();
512   return NULL;
513 }
514
515
516 #if V8_TARGET_ARCH_PPC64
517 const int kLoadIntptrOpcode = LD;
518 #else
519 const int kLoadIntptrOpcode = LWZ;
520 #endif
521
522 // Constant pool load sequence detection:
523 // 1) REGULAR access:
524 //    load <dst>, kConstantPoolRegister + <offset>
525 //
526 // 2) OVERFLOWED access:
527 //    addis <scratch>, kConstantPoolRegister, <offset_high>
528 //    load <dst>, <scratch> + <offset_low>
529 bool Assembler::IsConstantPoolLoadStart(Address pc,
530                                         ConstantPoolEntry::Access* access) {
531   Instr instr = instr_at(pc);
532   int opcode = instr & kOpcodeMask;
533   if (!GetRA(instr).is(kConstantPoolRegister)) return false;
534   bool overflowed = (opcode == ADDIS);
535 #ifdef DEBUG
536   if (overflowed) {
537     opcode = instr_at(pc + kInstrSize) & kOpcodeMask;
538   }
539   DCHECK(opcode == kLoadIntptrOpcode || opcode == LFD);
540 #endif
541   if (access) {
542     *access = (overflowed ? ConstantPoolEntry::OVERFLOWED
543                           : ConstantPoolEntry::REGULAR);
544   }
545   return true;
546 }
547
548
549 bool Assembler::IsConstantPoolLoadEnd(Address pc,
550                                       ConstantPoolEntry::Access* access) {
551   Instr instr = instr_at(pc);
552   int opcode = instr & kOpcodeMask;
553   bool overflowed = false;
554   if (!(opcode == kLoadIntptrOpcode || opcode == LFD)) return false;
555   if (!GetRA(instr).is(kConstantPoolRegister)) {
556     instr = instr_at(pc - kInstrSize);
557     opcode = instr & kOpcodeMask;
558     if ((opcode != ADDIS) || !GetRA(instr).is(kConstantPoolRegister)) {
559       return false;
560     }
561     overflowed = true;
562   }
563   if (access) {
564     *access = (overflowed ? ConstantPoolEntry::OVERFLOWED
565                           : ConstantPoolEntry::REGULAR);
566   }
567   return true;
568 }
569
570
571 int Assembler::GetConstantPoolOffset(Address pc,
572                                      ConstantPoolEntry::Access access,
573                                      ConstantPoolEntry::Type type) {
574   bool overflowed = (access == ConstantPoolEntry::OVERFLOWED);
575 #ifdef DEBUG
576   ConstantPoolEntry::Access access_check =
577       static_cast<ConstantPoolEntry::Access>(-1);
578   DCHECK(IsConstantPoolLoadStart(pc, &access_check));
579   DCHECK(access_check == access);
580 #endif
581   int offset;
582   if (overflowed) {
583     offset = (instr_at(pc) & kImm16Mask) << 16;
584     offset += SIGN_EXT_IMM16(instr_at(pc + kInstrSize) & kImm16Mask);
585     DCHECK(!is_int16(offset));
586   } else {
587     offset = SIGN_EXT_IMM16((instr_at(pc) & kImm16Mask));
588   }
589   return offset;
590 }
591
592
593 void Assembler::PatchConstantPoolAccessInstruction(
594     int pc_offset, int offset, ConstantPoolEntry::Access access,
595     ConstantPoolEntry::Type type) {
596   Address pc = buffer_ + pc_offset;
597   bool overflowed = (access == ConstantPoolEntry::OVERFLOWED);
598   CHECK(overflowed != is_int16(offset));
599 #ifdef DEBUG
600   ConstantPoolEntry::Access access_check =
601       static_cast<ConstantPoolEntry::Access>(-1);
602   DCHECK(IsConstantPoolLoadStart(pc, &access_check));
603   DCHECK(access_check == access);
604 #endif
605   if (overflowed) {
606     int hi_word = static_cast<int>(offset >> 16);
607     int lo_word = static_cast<int>(offset & 0xffff);
608     if (lo_word & 0x8000) hi_word++;
609
610     Instr instr1 = instr_at(pc);
611     Instr instr2 = instr_at(pc + kInstrSize);
612     instr1 &= ~kImm16Mask;
613     instr1 |= (hi_word & kImm16Mask);
614     instr2 &= ~kImm16Mask;
615     instr2 |= (lo_word & kImm16Mask);
616     instr_at_put(pc, instr1);
617     instr_at_put(pc + kInstrSize, instr2);
618   } else {
619     Instr instr = instr_at(pc);
620     instr &= ~kImm16Mask;
621     instr |= (offset & kImm16Mask);
622     instr_at_put(pc, instr);
623   }
624 }
625
626
627 Address Assembler::target_constant_pool_address_at(
628     Address pc, Address constant_pool, ConstantPoolEntry::Access access,
629     ConstantPoolEntry::Type type) {
630   Address addr = constant_pool;
631   DCHECK(addr);
632   addr += GetConstantPoolOffset(pc, access, type);
633   return addr;
634 }
635
636
637 // This sets the branch destination (which gets loaded at the call address).
638 // This is for calls and branches within generated code.  The serializer
639 // has already deserialized the mov instructions etc.
640 // There is a FIXED_SEQUENCE assumption here
641 void Assembler::deserialization_set_special_target_at(
642     Address instruction_payload, Code* code, Address target) {
643   set_target_address_at(instruction_payload, code, target);
644 }
645
646
647 void Assembler::deserialization_set_target_internal_reference_at(
648     Address pc, Address target, RelocInfo::Mode mode) {
649   if (RelocInfo::IsInternalReferenceEncoded(mode)) {
650     Code* code = NULL;
651     set_target_address_at(pc, code, target, SKIP_ICACHE_FLUSH);
652   } else {
653     Memory::Address_at(pc) = target;
654   }
655 }
656
657
658 // This code assumes the FIXED_SEQUENCE of lis/ori
659 void Assembler::set_target_address_at(Address pc, Address constant_pool,
660                                       Address target,
661                                       ICacheFlushMode icache_flush_mode) {
662   if (FLAG_enable_embedded_constant_pool && constant_pool) {
663     ConstantPoolEntry::Access access;
664     if (IsConstantPoolLoadStart(pc, &access)) {
665       Memory::Address_at(target_constant_pool_address_at(
666           pc, constant_pool, access, ConstantPoolEntry::INTPTR)) = target;
667       return;
668     }
669   }
670
671   Instr instr1 = instr_at(pc);
672   Instr instr2 = instr_at(pc + kInstrSize);
673   // Interpret 2 instructions generated by lis/ori
674   if (IsLis(instr1) && IsOri(instr2)) {
675 #if V8_TARGET_ARCH_PPC64
676     Instr instr4 = instr_at(pc + (3 * kInstrSize));
677     Instr instr5 = instr_at(pc + (4 * kInstrSize));
678     // Needs to be fixed up when mov changes to handle 64-bit values.
679     uint32_t* p = reinterpret_cast<uint32_t*>(pc);
680     uintptr_t itarget = reinterpret_cast<uintptr_t>(target);
681
682     instr5 &= ~kImm16Mask;
683     instr5 |= itarget & kImm16Mask;
684     itarget = itarget >> 16;
685
686     instr4 &= ~kImm16Mask;
687     instr4 |= itarget & kImm16Mask;
688     itarget = itarget >> 16;
689
690     instr2 &= ~kImm16Mask;
691     instr2 |= itarget & kImm16Mask;
692     itarget = itarget >> 16;
693
694     instr1 &= ~kImm16Mask;
695     instr1 |= itarget & kImm16Mask;
696     itarget = itarget >> 16;
697
698     *p = instr1;
699     *(p + 1) = instr2;
700     *(p + 3) = instr4;
701     *(p + 4) = instr5;
702     if (icache_flush_mode != SKIP_ICACHE_FLUSH) {
703       CpuFeatures::FlushICache(p, 5 * kInstrSize);
704     }
705 #else
706     uint32_t* p = reinterpret_cast<uint32_t*>(pc);
707     uint32_t itarget = reinterpret_cast<uint32_t>(target);
708     int lo_word = itarget & kImm16Mask;
709     int hi_word = itarget >> 16;
710     instr1 &= ~kImm16Mask;
711     instr1 |= hi_word;
712     instr2 &= ~kImm16Mask;
713     instr2 |= lo_word;
714
715     *p = instr1;
716     *(p + 1) = instr2;
717     if (icache_flush_mode != SKIP_ICACHE_FLUSH) {
718       CpuFeatures::FlushICache(p, 2 * kInstrSize);
719     }
720 #endif
721     return;
722   }
723   UNREACHABLE();
724 }
725 }
726 }  // namespace v8::internal
727
728 #endif  // V8_PPC_ASSEMBLER_PPC_INL_H_