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 // Review notes: | 5 // Review notes: |
6 // | 6 // |
7 // - The use of macros in these inline functions may seem superfluous | 7 // - The use of macros in these inline functions may seem superfluous |
8 // but it is absolutely needed to make sure gcc generates optimal | 8 // but it is absolutely needed to make sure gcc generates optimal |
9 // code. gcc is not happy when attempting to inline too deep. | 9 // code. gcc is not happy when attempting to inline too deep. |
10 // | 10 // |
(...skipping 3262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3273 CAST_ACCESSOR(SeqTwoByteString) | 3273 CAST_ACCESSOR(SeqTwoByteString) |
3274 CAST_ACCESSOR(SharedFunctionInfo) | 3274 CAST_ACCESSOR(SharedFunctionInfo) |
3275 CAST_ACCESSOR(Simd128Value) | 3275 CAST_ACCESSOR(Simd128Value) |
3276 CAST_ACCESSOR(SlicedString) | 3276 CAST_ACCESSOR(SlicedString) |
3277 CAST_ACCESSOR(Smi) | 3277 CAST_ACCESSOR(Smi) |
3278 CAST_ACCESSOR(String) | 3278 CAST_ACCESSOR(String) |
3279 CAST_ACCESSOR(StringSet) | 3279 CAST_ACCESSOR(StringSet) |
3280 CAST_ACCESSOR(StringTable) | 3280 CAST_ACCESSOR(StringTable) |
3281 CAST_ACCESSOR(Struct) | 3281 CAST_ACCESSOR(Struct) |
3282 CAST_ACCESSOR(Symbol) | 3282 CAST_ACCESSOR(Symbol) |
| 3283 CAST_ACCESSOR(TemplateInfo) |
3283 CAST_ACCESSOR(Uint16x8) | 3284 CAST_ACCESSOR(Uint16x8) |
3284 CAST_ACCESSOR(Uint32x4) | 3285 CAST_ACCESSOR(Uint32x4) |
3285 CAST_ACCESSOR(Uint8x16) | 3286 CAST_ACCESSOR(Uint8x16) |
3286 CAST_ACCESSOR(UnseededNumberDictionary) | 3287 CAST_ACCESSOR(UnseededNumberDictionary) |
3287 CAST_ACCESSOR(WeakCell) | 3288 CAST_ACCESSOR(WeakCell) |
3288 CAST_ACCESSOR(WeakFixedArray) | 3289 CAST_ACCESSOR(WeakFixedArray) |
3289 CAST_ACCESSOR(WeakHashTable) | 3290 CAST_ACCESSOR(WeakHashTable) |
3290 | 3291 |
3291 | 3292 |
3292 // static | 3293 // static |
(...skipping 4938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8231 #undef WRITE_INT64_FIELD | 8232 #undef WRITE_INT64_FIELD |
8232 #undef READ_BYTE_FIELD | 8233 #undef READ_BYTE_FIELD |
8233 #undef WRITE_BYTE_FIELD | 8234 #undef WRITE_BYTE_FIELD |
8234 #undef NOBARRIER_READ_BYTE_FIELD | 8235 #undef NOBARRIER_READ_BYTE_FIELD |
8235 #undef NOBARRIER_WRITE_BYTE_FIELD | 8236 #undef NOBARRIER_WRITE_BYTE_FIELD |
8236 | 8237 |
8237 } // namespace internal | 8238 } // namespace internal |
8238 } // namespace v8 | 8239 } // namespace v8 |
8239 | 8240 |
8240 #endif // V8_OBJECTS_INL_H_ | 8241 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |