OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef V8_COMPILER_UNWINDING_INFO_WRITER_H_ | |
6 #define V8_COMPILER_UNWINDING_INFO_WRITER_H_ | |
7 | |
8 #if V8_TARGET_ARCH_ARM | |
9 #include "src/compiler/arm/unwinding-info-writer-arm.h" | |
10 #elif V8_TARGET_ARCH_ARM64 | |
11 #include "src/compiler/arm64/unwinding-info-writer-arm64.h" | |
12 #elif V8_TARGET_ARCH_IA32 | |
13 #include "src/compiler/ia32/unwinding-info-writer-ia32.h" | |
Jarin
2016/07/06 07:09:42
Instead of including the same unimplemented unwind
Stefano Sanfilippo
2016/07/06 13:25:10
This was initially meant to be a placeholder, but
| |
14 #elif V8_TARGET_ARCH_MIPS | |
15 #include "src/compiler/mips/unwinding-info-writer-mips.h" | |
16 #elif V8_TARGET_ARCH_MIPS64 | |
17 #include "src/compiler/mips64/unwinding-info-writer-mips64.h" | |
18 #elif V8_TARGET_ARCH_S390 | |
19 #include "src/compiler/s390/unwinding-info-writer-s390.h" | |
20 #elif V8_TARGET_ARCH_X64 | |
21 #include "src/compiler/x64/unwinding-info-writer-x64.h" | |
22 #elif V8_TARGET_ARCH_X87 | |
23 #include "src/compiler/x87/unwinding-info-writer-x87.h" | |
24 #endif | |
25 | |
26 #endif | |
OLD | NEW |