| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_PPC | 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" |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 __ addi(ip, ip, Operand(Code::kHeaderSize - kHeapObjectTag)); | 293 __ addi(ip, ip, Operand(Code::kHeaderSize - kHeapObjectTag)); |
| 294 | 294 |
| 295 // Re-run JSFunction, r4 is function, cp is context. | 295 // Re-run JSFunction, r4 is function, cp is context. |
| 296 __ Jump(ip); | 296 __ Jump(ip); |
| 297 } | 297 } |
| 298 | 298 |
| 299 | 299 |
| 300 const bool LiveEdit::kFrameDropperSupported = true; | 300 const bool LiveEdit::kFrameDropperSupported = true; |
| 301 | 301 |
| 302 #undef __ | 302 #undef __ |
| 303 } | 303 } // namespace internal |
| 304 } // namespace v8::internal | 304 } // namespace v8 |
| 305 | 305 |
| 306 #endif // V8_TARGET_ARCH_PPC | 306 #endif // V8_TARGET_ARCH_PPC |
| OLD | NEW |