Chromium Code Reviews

Side by Side Diff: src/ppc/debug-ppc.cc

Issue 571173003: PowerPC specific sub-directories (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove IBM copyright, update code to later level Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM 7 #if V8_TARGET_ARCH_PPC
8 8
9 #include "src/codegen.h" 9 #include "src/codegen.h"
10 #include "src/debug.h" 10 #include "src/debug.h"
11 11
12 namespace v8 { 12 namespace v8 {
13 namespace internal { 13 namespace internal {
14 14
15 bool BreakLocationIterator::IsDebugBreakAtReturn() { 15 bool BreakLocationIterator::IsDebugBreakAtReturn() {
16 return Debug::IsDebugBreakAtReturn(rinfo()); 16 return Debug::IsDebugBreakAtReturn(rinfo());
17 } 17 }
18 18
19 19
20 void BreakLocationIterator::SetDebugBreakAtReturn() { 20 void BreakLocationIterator::SetDebugBreakAtReturn() {
21 // Patch the code changing the return from JS function sequence from 21 // Patch the code changing the return from JS function sequence from
22 // mov sp, fp 22 //
23 // ldmia sp!, {fp, lr} 23 // LeaveFrame
24 // add sp, sp, #4 24 // blr
25 // bx lr 25 //
26 // to a call to the debug break return code. 26 // to a call to the debug break return code.
27 // ldr ip, [pc, #0] 27 // this uses a FIXED_SEQUENCE to load an address constant
28 // blx ip 28 //
29 // <debug break return code entry point address> 29 // mov r0, <address>
30 // bkpt 0 30 // mtlr r0
31 // blrl
32 // bkpt
33 //
31 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions); 34 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
32 patcher.masm()->ldr(v8::internal::ip, MemOperand(v8::internal::pc, 0)); 35 Assembler::BlockTrampolinePoolScope block_trampoline_pool(patcher.masm());
33 patcher.masm()->blx(v8::internal::ip); 36 patcher.masm()->mov(
34 patcher.Emit( 37 v8::internal::r0,
35 debug_info_->GetIsolate()->builtins()->Return_DebugBreak()->entry()); 38 Operand(reinterpret_cast<intptr_t>(debug_info_->GetIsolate()
39 ->builtins()
40 ->Return_DebugBreak()
41 ->entry())));
42 patcher.masm()->mtctr(v8::internal::r0);
43 patcher.masm()->bctrl();
36 patcher.masm()->bkpt(0); 44 patcher.masm()->bkpt(0);
37 } 45 }
38 46
39 47
40 // Restore the JS frame exit code. 48 // Restore the JS frame exit code.
41 void BreakLocationIterator::ClearDebugBreakAtReturn() { 49 void BreakLocationIterator::ClearDebugBreakAtReturn() {
42 rinfo()->PatchCode(original_rinfo()->pc(), 50 rinfo()->PatchCode(original_rinfo()->pc(),
43 Assembler::kJSReturnSequenceInstructions); 51 Assembler::kJSReturnSequenceInstructions);
44 } 52 }
45 53
46 54
47 // A debug break in the frame exit code is identified by the JS frame exit code 55 // A debug break in the frame exit code is identified by the JS frame exit code
48 // having been patched with a call instruction. 56 // having been patched with a call instruction.
49 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) { 57 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
50 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode())); 58 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
51 return rinfo->IsPatchedReturnSequence(); 59 return rinfo->IsPatchedReturnSequence();
52 } 60 }
53 61
54 62
55 bool BreakLocationIterator::IsDebugBreakAtSlot() { 63 bool BreakLocationIterator::IsDebugBreakAtSlot() {
56 DCHECK(IsDebugBreakSlot()); 64 DCHECK(IsDebugBreakSlot());
57 // Check whether the debug break slot instructions have been patched. 65 // Check whether the debug break slot instructions have been patched.
58 return rinfo()->IsPatchedDebugBreakSlotSequence(); 66 return rinfo()->IsPatchedDebugBreakSlotSequence();
59 } 67 }
60 68
61 69
62 void BreakLocationIterator::SetDebugBreakAtSlot() { 70 void BreakLocationIterator::SetDebugBreakAtSlot() {
63 DCHECK(IsDebugBreakSlot()); 71 DCHECK(IsDebugBreakSlot());
64 // Patch the code changing the debug break slot code from 72 // Patch the code changing the debug break slot code from
65 // mov r2, r2 73 //
66 // mov r2, r2 74 // ori r3, r3, 0
67 // mov r2, r2 75 // ori r3, r3, 0
68 // to a call to the debug break slot code. 76 // ori r3, r3, 0
69 // ldr ip, [pc, #0] 77 // ori r3, r3, 0
70 // blx ip 78 // ori r3, r3, 0
71 // <debug break slot code entry point address> 79 //
80 // to a call to the debug break code, using a FIXED_SEQUENCE.
81 //
82 // mov r0, <address>
83 // mtlr r0
84 // blrl
85 //
72 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions); 86 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
73 patcher.masm()->ldr(v8::internal::ip, MemOperand(v8::internal::pc, 0)); 87 Assembler::BlockTrampolinePoolScope block_trampoline_pool(patcher.masm());
74 patcher.masm()->blx(v8::internal::ip); 88 patcher.masm()->mov(
75 patcher.Emit( 89 v8::internal::r0,
76 debug_info_->GetIsolate()->builtins()->Slot_DebugBreak()->entry()); 90 Operand(reinterpret_cast<intptr_t>(
91 debug_info_->GetIsolate()->builtins()->Slot_DebugBreak()->entry())));
92 patcher.masm()->mtctr(v8::internal::r0);
93 patcher.masm()->bctrl();
77 } 94 }
78 95
79 96
80 void BreakLocationIterator::ClearDebugBreakAtSlot() { 97 void BreakLocationIterator::ClearDebugBreakAtSlot() {
81 DCHECK(IsDebugBreakSlot()); 98 DCHECK(IsDebugBreakSlot());
82 rinfo()->PatchCode(original_rinfo()->pc(), 99 rinfo()->PatchCode(original_rinfo()->pc(),
83 Assembler::kDebugBreakSlotInstructions); 100 Assembler::kDebugBreakSlotInstructions);
84 } 101 }
85 102
86 103
87 #define __ ACCESS_MASM(masm) 104 #define __ ACCESS_MASM(masm)
88 105
89 106
90 static void Generate_DebugBreakCallHelper(MacroAssembler* masm, 107 static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
91 RegList object_regs, 108 RegList object_regs,
92 RegList non_object_regs) { 109 RegList non_object_regs) {
93 { 110 {
94 FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); 111 FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL);
95 112
96 // Load padding words on stack. 113 // Load padding words on stack.
97 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingValue))); 114 __ LoadSmiLiteral(ip, Smi::FromInt(LiveEdit::kFramePaddingValue));
98 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) { 115 for (int i = 0; i < LiveEdit::kFramePaddingInitialSize; i++) {
99 __ push(ip); 116 __ push(ip);
100 } 117 }
101 __ mov(ip, Operand(Smi::FromInt(LiveEdit::kFramePaddingInitialSize))); 118 __ LoadSmiLiteral(ip, Smi::FromInt(LiveEdit::kFramePaddingInitialSize));
102 __ push(ip); 119 __ push(ip);
103 120
104 // Store the registers containing live values on the expression stack to 121 // Store the registers containing live values on the expression stack to
105 // make sure that these are correctly updated during GC. Non object values 122 // make sure that these are correctly updated during GC. Non object values
106 // are stored as a smi causing it to be untouched by GC. 123 // are stored as a smi causing it to be untouched by GC.
107 DCHECK((object_regs & ~kJSCallerSaved) == 0); 124 DCHECK((object_regs & ~kJSCallerSaved) == 0);
108 DCHECK((non_object_regs & ~kJSCallerSaved) == 0); 125 DCHECK((non_object_regs & ~kJSCallerSaved) == 0);
109 DCHECK((object_regs & non_object_regs) == 0); 126 DCHECK((object_regs & non_object_regs) == 0);
110 if ((object_regs | non_object_regs) != 0) { 127 if ((object_regs | non_object_regs) != 0) {
111 for (int i = 0; i < kNumJSCallerSaved; i++) { 128 for (int i = 0; i < kNumJSCallerSaved; i++) {
112 int r = JSCallerSavedCode(i); 129 int r = JSCallerSavedCode(i);
113 Register reg = { r }; 130 Register reg = {r};
114 if ((non_object_regs & (1 << r)) != 0) { 131 if ((non_object_regs & (1 << r)) != 0) {
115 if (FLAG_debug_code) { 132 if (FLAG_debug_code) {
116 __ tst(reg, Operand(0xc0000000)); 133 __ TestUnsignedSmiCandidate(reg, r0);
117 __ Assert(eq, kUnableToEncodeValueAsSmi); 134 __ Assert(eq, kUnableToEncodeValueAsSmi, cr0);
118 } 135 }
119 __ SmiTag(reg); 136 __ SmiTag(reg);
120 } 137 }
121 } 138 }
122 __ stm(db_w, sp, object_regs | non_object_regs); 139 __ MultiPush(object_regs | non_object_regs);
123 } 140 }
124 141
125 #ifdef DEBUG 142 #ifdef DEBUG
126 __ RecordComment("// Calling from debug break to runtime - come in - over"); 143 __ RecordComment("// Calling from debug break to runtime - come in - over");
127 #endif 144 #endif
128 __ mov(r0, Operand::Zero()); // no arguments 145 __ mov(r3, Operand::Zero()); // no arguments
129 __ mov(r1, Operand(ExternalReference::debug_break(masm->isolate()))); 146 __ mov(r4, Operand(ExternalReference::debug_break(masm->isolate())));
130 147
131 CEntryStub ceb(masm->isolate(), 1); 148 CEntryStub ceb(masm->isolate(), 1);
132 __ CallStub(&ceb); 149 __ CallStub(&ceb);
133 150
134 // Restore the register values from the expression stack. 151 // Restore the register values from the expression stack.
135 if ((object_regs | non_object_regs) != 0) { 152 if ((object_regs | non_object_regs) != 0) {
136 __ ldm(ia_w, sp, object_regs | non_object_regs); 153 __ MultiPop(object_regs | non_object_regs);
137 for (int i = 0; i < kNumJSCallerSaved; i++) { 154 for (int i = 0; i < kNumJSCallerSaved; i++) {
138 int r = JSCallerSavedCode(i); 155 int r = JSCallerSavedCode(i);
139 Register reg = { r }; 156 Register reg = {r};
140 if ((non_object_regs & (1 << r)) != 0) { 157 if ((non_object_regs & (1 << r)) != 0) {
141 __ SmiUntag(reg); 158 __ SmiUntag(reg);
142 } 159 }
143 if (FLAG_debug_code && 160 if (FLAG_debug_code &&
144 (((object_regs |non_object_regs) & (1 << r)) == 0)) { 161 (((object_regs | non_object_regs) & (1 << r)) == 0)) {
145 __ mov(reg, Operand(kDebugZapValue)); 162 __ mov(reg, Operand(kDebugZapValue));
146 } 163 }
147 } 164 }
148 } 165 }
149 166
150 // Don't bother removing padding bytes pushed on the stack 167 // Don't bother removing padding bytes pushed on the stack
151 // as the frame is going to be restored right away. 168 // as the frame is going to be restored right away.
152 169
153 // Leave the internal frame. 170 // Leave the internal frame.
154 } 171 }
155 172
156 // Now that the break point has been handled, resume normal execution by 173 // Now that the break point has been handled, resume normal execution by
157 // jumping to the target address intended by the caller and that was 174 // jumping to the target address intended by the caller and that was
158 // overwritten by the address of DebugBreakXXX. 175 // overwritten by the address of DebugBreakXXX.
159 ExternalReference after_break_target = 176 ExternalReference after_break_target =
160 ExternalReference::debug_after_break_target_address(masm->isolate()); 177 ExternalReference::debug_after_break_target_address(masm->isolate());
161 __ mov(ip, Operand(after_break_target)); 178 __ mov(ip, Operand(after_break_target));
162 __ ldr(ip, MemOperand(ip)); 179 __ LoadP(ip, MemOperand(ip));
163 __ Jump(ip); 180 __ JumpToJSEntry(ip);
164 } 181 }
165 182
166 183
167 void DebugCodegen::GenerateCallICStubDebugBreak(MacroAssembler* masm) { 184 void DebugCodegen::GenerateCallICStubDebugBreak(MacroAssembler* masm) {
168 // Register state for CallICStub 185 // Register state for CallICStub
169 // ----------- S t a t e ------------- 186 // ----------- S t a t e -------------
170 // -- r1 : function 187 // -- r4 : function
171 // -- r3 : slot in feedback array (smi) 188 // -- r6 : slot in feedback array (smi)
172 // ----------------------------------- 189 // -----------------------------------
173 Generate_DebugBreakCallHelper(masm, r1.bit() | r3.bit(), 0); 190 Generate_DebugBreakCallHelper(masm, r4.bit() | r6.bit(), 0);
174 } 191 }
175 192
176 193
177 void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) { 194 void DebugCodegen::GenerateLoadICDebugBreak(MacroAssembler* masm) {
178 // Calling convention for IC load (from ic-arm.cc). 195 // Calling convention for IC load (from ic-ppc.cc).
179 Register receiver = LoadDescriptor::ReceiverRegister(); 196 Register receiver = LoadDescriptor::ReceiverRegister();
180 Register name = LoadDescriptor::NameRegister(); 197 Register name = LoadDescriptor::NameRegister();
181 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0); 198 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit(), 0);
182 } 199 }
183 200
184 201
185 void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) { 202 void DebugCodegen::GenerateStoreICDebugBreak(MacroAssembler* masm) {
186 // Calling convention for IC store (from ic-arm.cc). 203 // Calling convention for IC store (from ic-ppc.cc).
187 Register receiver = StoreDescriptor::ReceiverRegister(); 204 Register receiver = StoreDescriptor::ReceiverRegister();
188 Register name = StoreDescriptor::NameRegister(); 205 Register name = StoreDescriptor::NameRegister();
189 Register value = StoreDescriptor::ValueRegister(); 206 Register value = StoreDescriptor::ValueRegister();
190 Generate_DebugBreakCallHelper( 207 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit() | value.bit(),
191 masm, receiver.bit() | name.bit() | value.bit(), 0); 208 0);
192 } 209 }
193 210
194 211
195 void DebugCodegen::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) { 212 void DebugCodegen::GenerateKeyedLoadICDebugBreak(MacroAssembler* masm) {
196 // Calling convention for keyed IC load (from ic-arm.cc). 213 // Calling convention for keyed IC load (from ic-ppc.cc).
197 GenerateLoadICDebugBreak(masm); 214 GenerateLoadICDebugBreak(masm);
198 } 215 }
199 216
200 217
201 void DebugCodegen::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) { 218 void DebugCodegen::GenerateKeyedStoreICDebugBreak(MacroAssembler* masm) {
202 // Calling convention for IC keyed store call (from ic-arm.cc). 219 // Calling convention for IC keyed store call (from ic-ppc.cc).
203 Register receiver = StoreDescriptor::ReceiverRegister(); 220 Register receiver = StoreDescriptor::ReceiverRegister();
204 Register name = StoreDescriptor::NameRegister(); 221 Register name = StoreDescriptor::NameRegister();
205 Register value = StoreDescriptor::ValueRegister(); 222 Register value = StoreDescriptor::ValueRegister();
206 Generate_DebugBreakCallHelper( 223 Generate_DebugBreakCallHelper(masm, receiver.bit() | name.bit() | value.bit(),
207 masm, receiver.bit() | name.bit() | value.bit(), 0); 224 0);
208 } 225 }
209 226
210 227
211 void DebugCodegen::GenerateCompareNilICDebugBreak(MacroAssembler* masm) { 228 void DebugCodegen::GenerateCompareNilICDebugBreak(MacroAssembler* masm) {
212 // Register state for CompareNil IC 229 // Register state for CompareNil IC
213 // ----------- S t a t e ------------- 230 // ----------- S t a t e -------------
214 // -- r0 : value 231 // -- r3 : value
215 // ----------------------------------- 232 // -----------------------------------
216 Generate_DebugBreakCallHelper(masm, r0.bit(), 0); 233 Generate_DebugBreakCallHelper(masm, r3.bit(), 0);
217 } 234 }
218 235
219 236
220 void DebugCodegen::GenerateReturnDebugBreak(MacroAssembler* masm) { 237 void DebugCodegen::GenerateReturnDebugBreak(MacroAssembler* masm) {
221 // In places other than IC call sites it is expected that r0 is TOS which 238 // In places other than IC call sites it is expected that r3 is TOS which
222 // is an object - this is not generally the case so this should be used with 239 // is an object - this is not generally the case so this should be used with
223 // care. 240 // care.
224 Generate_DebugBreakCallHelper(masm, r0.bit(), 0); 241 Generate_DebugBreakCallHelper(masm, r3.bit(), 0);
225 } 242 }
226 243
227 244
228 void DebugCodegen::GenerateCallFunctionStubDebugBreak(MacroAssembler* masm) { 245 void DebugCodegen::GenerateCallFunctionStubDebugBreak(MacroAssembler* masm) {
229 // Register state for CallFunctionStub (from code-stubs-arm.cc). 246 // Register state for CallFunctionStub (from code-stubs-ppc.cc).
230 // ----------- S t a t e ------------- 247 // ----------- S t a t e -------------
231 // -- r1 : function 248 // -- r4 : function
232 // ----------------------------------- 249 // -----------------------------------
233 Generate_DebugBreakCallHelper(masm, r1.bit(), 0); 250 Generate_DebugBreakCallHelper(masm, r4.bit(), 0);
234 } 251 }
235 252
236 253
237 void DebugCodegen::GenerateCallConstructStubDebugBreak(MacroAssembler* masm) { 254 void DebugCodegen::GenerateCallConstructStubDebugBreak(MacroAssembler* masm) {
238 // Calling convention for CallConstructStub (from code-stubs-arm.cc) 255 // Calling convention for CallConstructStub (from code-stubs-ppc.cc)
239 // ----------- S t a t e ------------- 256 // ----------- S t a t e -------------
240 // -- r0 : number of arguments (not smi) 257 // -- r3 : number of arguments (not smi)
241 // -- r1 : constructor function 258 // -- r4 : constructor function
242 // ----------------------------------- 259 // -----------------------------------
243 Generate_DebugBreakCallHelper(masm, r1.bit(), r0.bit()); 260 Generate_DebugBreakCallHelper(masm, r4.bit(), r3.bit());
244 } 261 }
245 262
246 263
247 void DebugCodegen::GenerateCallConstructStubRecordDebugBreak( 264 void DebugCodegen::GenerateCallConstructStubRecordDebugBreak(
248 MacroAssembler* masm) { 265 MacroAssembler* masm) {
249 // Calling convention for CallConstructStub (from code-stubs-arm.cc) 266 // Calling convention for CallConstructStub (from code-stubs-ppc.cc)
250 // ----------- S t a t e ------------- 267 // ----------- S t a t e -------------
251 // -- r0 : number of arguments (not smi) 268 // -- r3 : number of arguments (not smi)
252 // -- r1 : constructor function 269 // -- r4 : constructor function
253 // -- r2 : feedback array 270 // -- r5 : feedback array
254 // -- r3 : feedback slot (smi) 271 // -- r6 : feedback slot (smi)
255 // ----------------------------------- 272 // -----------------------------------
256 Generate_DebugBreakCallHelper(masm, r1.bit() | r2.bit() | r3.bit(), r0.bit()); 273 Generate_DebugBreakCallHelper(masm, r4.bit() | r5.bit() | r6.bit(), r3.bit());
257 } 274 }
258 275
259 276
260 void DebugCodegen::GenerateSlot(MacroAssembler* masm) { 277 void DebugCodegen::GenerateSlot(MacroAssembler* masm) {
261 // Generate enough nop's to make space for a call instruction. Avoid emitting 278 // Generate enough nop's to make space for a call instruction. Avoid emitting
262 // the constant pool in the debug break slot code. 279 // the trampoline pool in the debug break slot code.
263 Assembler::BlockConstPoolScope block_const_pool(masm); 280 Assembler::BlockTrampolinePoolScope block_trampoline_pool(masm);
264 Label check_codesize; 281 Label check_codesize;
265 __ bind(&check_codesize); 282 __ bind(&check_codesize);
266 __ RecordDebugBreakSlot(); 283 __ RecordDebugBreakSlot();
267 for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) { 284 for (int i = 0; i < Assembler::kDebugBreakSlotInstructions; i++) {
268 __ nop(MacroAssembler::DEBUG_BREAK_NOP); 285 __ nop(MacroAssembler::DEBUG_BREAK_NOP);
269 } 286 }
270 DCHECK_EQ(Assembler::kDebugBreakSlotInstructions, 287 DCHECK_EQ(Assembler::kDebugBreakSlotInstructions,
271 masm->InstructionsGeneratedSince(&check_codesize)); 288 masm->InstructionsGeneratedSince(&check_codesize));
272 } 289 }
273 290
274 291
275 void DebugCodegen::GenerateSlotDebugBreak(MacroAssembler* masm) { 292 void DebugCodegen::GenerateSlotDebugBreak(MacroAssembler* masm) {
276 // In the places where a debug break slot is inserted no registers can contain 293 // In the places where a debug break slot is inserted no registers can contain
277 // object pointers. 294 // object pointers.
278 Generate_DebugBreakCallHelper(masm, 0, 0); 295 Generate_DebugBreakCallHelper(masm, 0, 0);
279 } 296 }
280 297
281 298
282 void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) { 299 void DebugCodegen::GeneratePlainReturnLiveEdit(MacroAssembler* masm) {
283 __ Ret(); 300 __ Ret();
284 } 301 }
285 302
286 303
287 void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) { 304 void DebugCodegen::GenerateFrameDropperLiveEdit(MacroAssembler* masm) {
288 ExternalReference restarter_frame_function_slot = 305 ExternalReference restarter_frame_function_slot =
289 ExternalReference::debug_restarter_frame_function_pointer_address( 306 ExternalReference::debug_restarter_frame_function_pointer_address(
290 masm->isolate()); 307 masm->isolate());
291 __ mov(ip, Operand(restarter_frame_function_slot)); 308 __ mov(ip, Operand(restarter_frame_function_slot));
292 __ mov(r1, Operand::Zero()); 309 __ li(r4, Operand::Zero());
293 __ str(r1, MemOperand(ip, 0)); 310 __ StoreP(r4, MemOperand(ip, 0));
294 311
295 // Load the function pointer off of our current stack frame. 312 // Load the function pointer off of our current stack frame.
296 __ ldr(r1, MemOperand(fp, 313 __ LoadP(r4, MemOperand(fp, StandardFrameConstants::kConstantPoolOffset -
297 StandardFrameConstants::kConstantPoolOffset - kPointerSize)); 314 kPointerSize));
298 315
299 // Pop return address, frame and constant pool pointer (if 316 // Pop return address, frame and constant pool pointer (if
300 // FLAG_enable_ool_constant_pool). 317 // FLAG_enable_ool_constant_pool).
301 __ LeaveFrame(StackFrame::INTERNAL); 318 __ LeaveFrame(StackFrame::INTERNAL);
302 319
303 { ConstantPoolUnavailableScope constant_pool_unavailable(masm); 320 // Load context from the function.
304 // Load context from the function. 321 __ LoadP(cp, FieldMemOperand(r4, JSFunction::kContextOffset));
305 __ ldr(cp, FieldMemOperand(r1, JSFunction::kContextOffset));
306 322
307 // Get function code. 323 // Get function code.
308 __ ldr(ip, FieldMemOperand(r1, JSFunction::kSharedFunctionInfoOffset)); 324 __ LoadP(ip, FieldMemOperand(r4, JSFunction::kSharedFunctionInfoOffset));
309 __ ldr(ip, FieldMemOperand(ip, SharedFunctionInfo::kCodeOffset)); 325 __ LoadP(ip, FieldMemOperand(ip, SharedFunctionInfo::kCodeOffset));
310 __ add(ip, ip, Operand(Code::kHeaderSize - kHeapObjectTag)); 326 __ addi(ip, ip, Operand(Code::kHeaderSize - kHeapObjectTag));
311 327
312 // Re-run JSFunction, r1 is function, cp is context. 328 // Re-run JSFunction, r4 is function, cp is context.
313 __ Jump(ip); 329 __ Jump(ip);
314 }
315 } 330 }
316 331
317 332
318 const bool LiveEdit::kFrameDropperSupported = true; 333 const bool LiveEdit::kFrameDropperSupported = true;
319 334
320 #undef __ 335 #undef __
336 }
337 } // namespace v8::internal
321 338
322 } } // namespace v8::internal 339 #endif // V8_TARGET_ARCH_PPC
323
324 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« src/ppc/codegen-ppc.cc ('K') | « src/ppc/cpu-ppc.cc ('k') | src/ppc/deoptimizer-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine