Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/objects-inl.h

Issue 2316503004: KeyedLookupCache and DescriptorLookupCache -> lookup-cache{-inl.h,.cc,.h} (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/lookup-inl.h ('k') | src/v8.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 //
11 11
12 #ifndef V8_OBJECTS_INL_H_ 12 #ifndef V8_OBJECTS_INL_H_
13 #define V8_OBJECTS_INL_H_ 13 #define V8_OBJECTS_INL_H_
14 14
15 #include "src/base/atomicops.h" 15 #include "src/base/atomicops.h"
16 #include "src/base/bits.h" 16 #include "src/base/bits.h"
17 #include "src/builtins/builtins.h" 17 #include "src/builtins/builtins.h"
18 #include "src/contexts-inl.h" 18 #include "src/contexts-inl.h"
19 #include "src/conversions-inl.h" 19 #include "src/conversions-inl.h"
20 #include "src/factory.h" 20 #include "src/factory.h"
21 #include "src/field-index-inl.h" 21 #include "src/field-index-inl.h"
22 #include "src/field-type.h" 22 #include "src/field-type.h"
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-inl.h" 30 #include "src/lookup-cache-inl.h"
31 #include "src/lookup.h"
31 #include "src/objects.h" 32 #include "src/objects.h"
32 #include "src/property.h" 33 #include "src/property.h"
33 #include "src/prototype.h" 34 #include "src/prototype.h"
34 #include "src/transitions-inl.h" 35 #include "src/transitions-inl.h"
35 #include "src/type-feedback-vector-inl.h" 36 #include "src/type-feedback-vector-inl.h"
36 #include "src/v8memory.h" 37 #include "src/v8memory.h"
37 38
38 namespace v8 { 39 namespace v8 {
39 namespace internal { 40 namespace internal {
40 41
(...skipping 8214 matching lines...) Expand 10 before | Expand all | Expand 10 after
8255 #undef WRITE_INT64_FIELD 8256 #undef WRITE_INT64_FIELD
8256 #undef READ_BYTE_FIELD 8257 #undef READ_BYTE_FIELD
8257 #undef WRITE_BYTE_FIELD 8258 #undef WRITE_BYTE_FIELD
8258 #undef NOBARRIER_READ_BYTE_FIELD 8259 #undef NOBARRIER_READ_BYTE_FIELD
8259 #undef NOBARRIER_WRITE_BYTE_FIELD 8260 #undef NOBARRIER_WRITE_BYTE_FIELD
8260 8261
8261 } // namespace internal 8262 } // namespace internal
8262 } // namespace v8 8263 } // namespace v8
8263 8264
8264 #endif // V8_OBJECTS_INL_H_ 8265 #endif // V8_OBJECTS_INL_H_
OLDNEW
« no previous file with comments | « src/lookup-inl.h ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698