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 13 matching lines...) Expand all Loading... |
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/module-info.h" | 33 #include "src/objects/module-info.h" |
| 34 #include "src/objects/regexp-match-info.h" |
34 #include "src/objects/scope-info.h" | 35 #include "src/objects/scope-info.h" |
35 #include "src/property.h" | 36 #include "src/property.h" |
36 #include "src/prototype.h" | 37 #include "src/prototype.h" |
37 #include "src/transitions-inl.h" | 38 #include "src/transitions-inl.h" |
38 #include "src/type-feedback-vector-inl.h" | 39 #include "src/type-feedback-vector-inl.h" |
39 #include "src/v8memory.h" | 40 #include "src/v8memory.h" |
40 | 41 |
41 namespace v8 { | 42 namespace v8 { |
42 namespace internal { | 43 namespace internal { |
43 | 44 |
(...skipping 8366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8410 #undef WRITE_INT64_FIELD | 8411 #undef WRITE_INT64_FIELD |
8411 #undef READ_BYTE_FIELD | 8412 #undef READ_BYTE_FIELD |
8412 #undef WRITE_BYTE_FIELD | 8413 #undef WRITE_BYTE_FIELD |
8413 #undef NOBARRIER_READ_BYTE_FIELD | 8414 #undef NOBARRIER_READ_BYTE_FIELD |
8414 #undef NOBARRIER_WRITE_BYTE_FIELD | 8415 #undef NOBARRIER_WRITE_BYTE_FIELD |
8415 | 8416 |
8416 } // namespace internal | 8417 } // namespace internal |
8417 } // namespace v8 | 8418 } // namespace v8 |
8418 | 8419 |
8419 #endif // V8_OBJECTS_INL_H_ | 8420 #endif // V8_OBJECTS_INL_H_ |
OLD | NEW |