OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef V8_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
11 #include "src/assert-scope.h" | 11 #include "src/assert-scope.h" |
12 #include "src/bailout-reason.h" | 12 #include "src/bailout-reason.h" |
13 #include "src/base/bits.h" | 13 #include "src/base/bits.h" |
14 #include "src/base/flags.h" | 14 #include "src/base/flags.h" |
15 #include "src/builtins/builtins.h" | 15 #include "src/builtins/builtins.h" |
16 #include "src/checks.h" | 16 #include "src/checks.h" |
17 #include "src/elements-kind.h" | 17 #include "src/elements-kind.h" |
18 #include "src/field-index.h" | 18 #include "src/field-index.h" |
19 #include "src/flags.h" | 19 #include "src/flags.h" |
20 #include "src/list.h" | 20 #include "src/list.h" |
21 #include "src/messages.h" | 21 #include "src/messages.h" |
22 #include "src/property-details.h" | 22 #include "src/property-details.h" |
23 #include "src/unicode-decoder.h" | 23 #include "src/unicode-decoder.h" |
24 #include "src/unicode.h" | 24 #include "src/unicode.h" |
25 #include "src/zone.h" | 25 #include "src/zone/zone.h" |
26 | 26 |
27 #if V8_TARGET_ARCH_ARM | 27 #if V8_TARGET_ARCH_ARM |
28 #include "src/arm/constants-arm.h" // NOLINT | 28 #include "src/arm/constants-arm.h" // NOLINT |
29 #elif V8_TARGET_ARCH_ARM64 | 29 #elif V8_TARGET_ARCH_ARM64 |
30 #include "src/arm64/constants-arm64.h" // NOLINT | 30 #include "src/arm64/constants-arm64.h" // NOLINT |
31 #elif V8_TARGET_ARCH_MIPS | 31 #elif V8_TARGET_ARCH_MIPS |
32 #include "src/mips/constants-mips.h" // NOLINT | 32 #include "src/mips/constants-mips.h" // NOLINT |
33 #elif V8_TARGET_ARCH_MIPS64 | 33 #elif V8_TARGET_ARCH_MIPS64 |
34 #include "src/mips64/constants-mips64.h" // NOLINT | 34 #include "src/mips64/constants-mips64.h" // NOLINT |
35 #elif V8_TARGET_ARCH_PPC | 35 #elif V8_TARGET_ARCH_PPC |
(...skipping 11280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11316 } | 11316 } |
11317 return value; | 11317 return value; |
11318 } | 11318 } |
11319 }; | 11319 }; |
11320 | 11320 |
11321 | 11321 |
11322 } // NOLINT, false-positive due to second-order macros. | 11322 } // NOLINT, false-positive due to second-order macros. |
11323 } // NOLINT, false-positive due to second-order macros. | 11323 } // NOLINT, false-positive due to second-order macros. |
11324 | 11324 |
11325 #endif // V8_OBJECTS_H_ | 11325 #endif // V8_OBJECTS_H_ |
OLD | NEW |