| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |