OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 | |
6 #include "src/v8.h" | |
7 | |
8 #if V8_TARGET_ARCH_MIPS64 | 5 #if V8_TARGET_ARCH_MIPS64 |
9 | 6 |
10 #include "src/assembler.h" | 7 #include "src/assembler.h" |
11 #include "src/frames.h" | 8 #include "src/frames.h" |
12 #include "src/mips64/assembler-mips64-inl.h" | 9 #include "src/mips64/assembler-mips64-inl.h" |
13 #include "src/mips64/assembler-mips64.h" | 10 #include "src/mips64/assembler-mips64.h" |
14 | 11 |
15 namespace v8 { | 12 namespace v8 { |
16 namespace internal { | 13 namespace internal { |
17 | 14 |
(...skipping 11 matching lines...) Expand all Loading... |
29 Register StubFailureTrampolineFrame::constant_pool_pointer_register() { | 26 Register StubFailureTrampolineFrame::constant_pool_pointer_register() { |
30 UNREACHABLE(); | 27 UNREACHABLE(); |
31 return no_reg; | 28 return no_reg; |
32 } | 29 } |
33 | 30 |
34 | 31 |
35 } // namespace internal | 32 } // namespace internal |
36 } // namespace v8 | 33 } // namespace v8 |
37 | 34 |
38 #endif // V8_TARGET_ARCH_MIPS64 | 35 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |