| 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/assembler.h" | 9 #include "src/assembler.h" |
| 10 #include "src/frames.h" | 10 #include "src/frames.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 Register StubFailureTrampolineFrame::constant_pool_pointer_register() { | 31 Register StubFailureTrampolineFrame::constant_pool_pointer_register() { |
| 32 UNREACHABLE(); | 32 UNREACHABLE(); |
| 33 return no_reg; | 33 return no_reg; |
| 34 } | 34 } |
| 35 | 35 |
| 36 | 36 |
| 37 Object*& ExitFrame::constant_pool_slot() const { | 37 Object*& ExitFrame::constant_pool_slot() const { |
| 38 UNREACHABLE(); | 38 UNREACHABLE(); |
| 39 return Memory::Object_at(NULL); | 39 return Memory::Object_at(NULL); |
| 40 } | 40 } |
| 41 } | 41 } // namespace internal |
| 42 } // namespace v8::internal | 42 } // namespace v8 |
| 43 | 43 |
| 44 #endif // V8_TARGET_ARCH_PPC | 44 #endif // V8_TARGET_ARCH_PPC |
| OLD | NEW |