OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/assert-scope.h" | 9 #include "src/assert-scope.h" |
10 #include "src/builtins.h" | 10 #include "src/builtins.h" |
| 11 #include "src/checks.h" |
11 #include "src/elements-kind.h" | 12 #include "src/elements-kind.h" |
12 #include "src/field-index.h" | 13 #include "src/field-index.h" |
13 #include "src/flags.h" | 14 #include "src/flags.h" |
14 #include "src/list.h" | 15 #include "src/list.h" |
15 #include "src/property-details.h" | 16 #include "src/property-details.h" |
16 #include "src/smart-pointers.h" | 17 #include "src/smart-pointers.h" |
17 #include "src/unicode-inl.h" | 18 #include "src/unicode-inl.h" |
18 #include "src/v8checks.h" | |
19 #include "src/zone.h" | 19 #include "src/zone.h" |
20 | 20 |
21 #if V8_TARGET_ARCH_ARM | 21 #if V8_TARGET_ARCH_ARM |
22 #include "src/arm/constants-arm.h" // NOLINT | 22 #include "src/arm/constants-arm.h" // NOLINT |
23 #elif V8_TARGET_ARCH_ARM64 | 23 #elif V8_TARGET_ARCH_ARM64 |
24 #include "src/arm64/constants-arm64.h" // NOLINT | 24 #include "src/arm64/constants-arm64.h" // NOLINT |
25 #elif V8_TARGET_ARCH_MIPS | 25 #elif V8_TARGET_ARCH_MIPS |
26 #include "src/mips/constants-mips.h" // NOLINT | 26 #include "src/mips/constants-mips.h" // NOLINT |
27 #endif | 27 #endif |
28 | 28 |
(...skipping 11138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11167 } else { | 11167 } else { |
11168 value &= ~(1 << bit_position); | 11168 value &= ~(1 << bit_position); |
11169 } | 11169 } |
11170 return value; | 11170 return value; |
11171 } | 11171 } |
11172 }; | 11172 }; |
11173 | 11173 |
11174 } } // namespace v8::internal | 11174 } } // namespace v8::internal |
11175 | 11175 |
11176 #endif // V8_OBJECTS_H_ | 11176 #endif // V8_OBJECTS_H_ |
OLD | NEW |