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 12 matching lines...) Expand all Loading... |
23 #include "src/handles-inl.h" | 23 #include "src/handles-inl.h" |
24 #include "src/heap/heap-inl.h" | 24 #include "src/heap/heap-inl.h" |
25 #include "src/heap/heap.h" | 25 #include "src/heap/heap.h" |
26 #include "src/isolate-inl.h" | 26 #include "src/isolate-inl.h" |
27 #include "src/isolate.h" | 27 #include "src/isolate.h" |
28 #include "src/keys.h" | 28 #include "src/keys.h" |
29 #include "src/layout-descriptor-inl.h" | 29 #include "src/layout-descriptor-inl.h" |
30 #include "src/lookup-cache-inl.h" | 30 #include "src/lookup-cache-inl.h" |
31 #include "src/lookup.h" | 31 #include "src/lookup.h" |
32 #include "src/objects.h" | 32 #include "src/objects.h" |
| 33 #include "src/objects/literal-objects.h" |
33 #include "src/objects/module-info.h" | 34 #include "src/objects/module-info.h" |
34 #include "src/objects/regexp-match-info.h" | 35 #include "src/objects/regexp-match-info.h" |
35 #include "src/objects/scope-info.h" | 36 #include "src/objects/scope-info.h" |
36 #include "src/property.h" | 37 #include "src/property.h" |
37 #include "src/prototype.h" | 38 #include "src/prototype.h" |
38 #include "src/transitions-inl.h" | 39 #include "src/transitions-inl.h" |
39 #include "src/type-feedback-vector-inl.h" | 40 #include "src/type-feedback-vector-inl.h" |
40 #include "src/v8memory.h" | 41 #include "src/v8memory.h" |
41 | 42 |
42 namespace v8 { | 43 namespace v8 { |
(...skipping 8401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8444 #undef WRITE_INT64_FIELD | 8445 #undef WRITE_INT64_FIELD |
8445 #undef READ_BYTE_FIELD | 8446 #undef READ_BYTE_FIELD |
8446 #undef WRITE_BYTE_FIELD | 8447 #undef WRITE_BYTE_FIELD |
8447 #undef NOBARRIER_READ_BYTE_FIELD | 8448 #undef NOBARRIER_READ_BYTE_FIELD |
8448 #undef NOBARRIER_WRITE_BYTE_FIELD | 8449 #undef NOBARRIER_WRITE_BYTE_FIELD |
8449 | 8450 |
8450 } // namespace internal | 8451 } // namespace internal |
8451 } // namespace v8 | 8452 } // namespace v8 |
8452 | 8453 |
8453 #endif // V8_OBJECTS_INL_H_ | 8454 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |