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/checks.h" |
12 #include "src/elements-kind.h" | 12 #include "src/elements-kind.h" |
13 #include "src/field-index.h" | 13 #include "src/field-index.h" |
14 #include "src/flags.h" | 14 #include "src/flags.h" |
15 #include "src/list.h" | 15 #include "src/list.h" |
16 #include "src/ostreams.h" | 16 #include "src/ostreams.h" |
17 #include "src/property-details.h" | 17 #include "src/property-details.h" |
18 #include "src/smart-pointers.h" | 18 #include "src/smart-pointers.h" |
19 #include "src/unicode-inl.h" | 19 #include "src/unicode-inl.h" |
20 #include "src/zone.h" | 20 #include "src/zone.h" |
21 | 21 |
22 #if V8_TARGET_ARCH_ARM | 22 #if V8_TARGET_ARCH_ARM |
23 #include "src/arm/constants-arm.h" // NOLINT | 23 #include "src/arm/constants-arm.h" // NOLINT |
24 #elif V8_TARGET_ARCH_ARM64 | 24 #elif V8_TARGET_ARCH_ARM64 |
25 #include "src/arm64/constants-arm64.h" // NOLINT | 25 #include "src/arm64/constants-arm64.h" // NOLINT |
26 #elif V8_TARGET_ARCH_MIPS | 26 #elif V8_TARGET_ARCH_MIPS |
27 #include "src/mips/constants-mips.h" // NOLINT | 27 #include "src/mips/constants-mips.h" // NOLINT |
| 28 #elif V8_TARGET_ARCH_MIPS64 |
| 29 #include "src/mips64/constants-mips64.h" // NOLINT |
28 #endif | 30 #endif |
29 | 31 |
30 | 32 |
31 // | 33 // |
32 // Most object types in the V8 JavaScript are described in this file. | 34 // Most object types in the V8 JavaScript are described in this file. |
33 // | 35 // |
34 // Inheritance hierarchy: | 36 // Inheritance hierarchy: |
35 // - Object | 37 // - Object |
36 // - Smi (immediate small integer) | 38 // - Smi (immediate small integer) |
37 // - HeapObject (superclass for everything allocated in the heap) | 39 // - HeapObject (superclass for everything allocated in the heap) |
(...skipping 11186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
11224 } else { | 11226 } else { |
11225 value &= ~(1 << bit_position); | 11227 value &= ~(1 << bit_position); |
11226 } | 11228 } |
11227 return value; | 11229 return value; |
11228 } | 11230 } |
11229 }; | 11231 }; |
11230 | 11232 |
11231 } } // namespace v8::internal | 11233 } } // namespace v8::internal |
11232 | 11234 |
11233 #endif // V8_OBJECTS_H_ | 11235 #endif // V8_OBJECTS_H_ |
OLD | NEW |