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

Side by Side Diff: src/objects.h

Issue 1696333002: Don't include field-type.h into objects-inl.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 10 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.cc ('k') | src/objects.cc » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 2955 matching lines...) Expand 10 before | Expand all | Expand 10 after
2966 inline Object** GetKeySlot(int descriptor_number); 2966 inline Object** GetKeySlot(int descriptor_number);
2967 inline Object* GetValue(int descriptor_number); 2967 inline Object* GetValue(int descriptor_number);
2968 inline void SetValue(int descriptor_number, Object* value); 2968 inline void SetValue(int descriptor_number, Object* value);
2969 inline Object** GetValueSlot(int descriptor_number); 2969 inline Object** GetValueSlot(int descriptor_number);
2970 static inline int GetValueOffset(int descriptor_number); 2970 static inline int GetValueOffset(int descriptor_number);
2971 inline Object** GetDescriptorStartSlot(int descriptor_number); 2971 inline Object** GetDescriptorStartSlot(int descriptor_number);
2972 inline Object** GetDescriptorEndSlot(int descriptor_number); 2972 inline Object** GetDescriptorEndSlot(int descriptor_number);
2973 inline PropertyDetails GetDetails(int descriptor_number); 2973 inline PropertyDetails GetDetails(int descriptor_number);
2974 inline PropertyType GetType(int descriptor_number); 2974 inline PropertyType GetType(int descriptor_number);
2975 inline int GetFieldIndex(int descriptor_number); 2975 inline int GetFieldIndex(int descriptor_number);
2976 inline FieldType* GetFieldType(int descriptor_number); 2976 FieldType* GetFieldType(int descriptor_number);
2977 inline Object* GetConstant(int descriptor_number); 2977 inline Object* GetConstant(int descriptor_number);
2978 inline Object* GetCallbacksObject(int descriptor_number); 2978 inline Object* GetCallbacksObject(int descriptor_number);
2979 inline AccessorDescriptor* GetCallbacks(int descriptor_number); 2979 inline AccessorDescriptor* GetCallbacks(int descriptor_number);
2980 2980
2981 inline Name* GetSortedKey(int descriptor_number); 2981 inline Name* GetSortedKey(int descriptor_number);
2982 inline int GetSortedKeyIndex(int descriptor_number); 2982 inline int GetSortedKeyIndex(int descriptor_number);
2983 inline void SetSortedKey(int pointer, int descriptor_number); 2983 inline void SetSortedKey(int pointer, int descriptor_number);
2984 inline void SetRepresentation(int descriptor_number, 2984 inline void SetRepresentation(int descriptor_number,
2985 Representation representation); 2985 Representation representation);
2986 2986
(...skipping 7864 matching lines...) Expand 10 before | Expand all | Expand 10 after
10851 } 10851 }
10852 return value; 10852 return value;
10853 } 10853 }
10854 }; 10854 };
10855 10855
10856 10856
10857 } // NOLINT, false-positive due to second-order macros. 10857 } // NOLINT, false-positive due to second-order macros.
10858 } // NOLINT, false-positive due to second-order macros. 10858 } // NOLINT, false-positive due to second-order macros.
10859 10859
10860 #endif // V8_OBJECTS_H_ 10860 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/lookup.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698