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 #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 5902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5913 inline bool IsBooleanMap(); | 5913 inline bool IsBooleanMap(); |
5914 inline bool IsPrimitiveMap(); | 5914 inline bool IsPrimitiveMap(); |
5915 inline bool IsJSObjectMap(); | 5915 inline bool IsJSObjectMap(); |
5916 inline bool IsJSArrayMap(); | 5916 inline bool IsJSArrayMap(); |
5917 inline bool IsJSFunctionMap(); | 5917 inline bool IsJSFunctionMap(); |
5918 inline bool IsStringMap(); | 5918 inline bool IsStringMap(); |
5919 inline bool IsJSProxyMap(); | 5919 inline bool IsJSProxyMap(); |
5920 inline bool IsJSGlobalProxyMap(); | 5920 inline bool IsJSGlobalProxyMap(); |
5921 inline bool IsJSGlobalObjectMap(); | 5921 inline bool IsJSGlobalObjectMap(); |
5922 inline bool IsJSTypedArrayMap(); | 5922 inline bool IsJSTypedArrayMap(); |
| 5923 inline bool IsJSDataViewMap(); |
5923 | 5924 |
5924 inline bool CanOmitMapChecks(); | 5925 inline bool CanOmitMapChecks(); |
5925 | 5926 |
5926 static void AddDependentCode(Handle<Map> map, | 5927 static void AddDependentCode(Handle<Map> map, |
5927 DependentCode::DependencyGroup group, | 5928 DependentCode::DependencyGroup group, |
5928 Handle<Code> code); | 5929 Handle<Code> code); |
5929 | 5930 |
5930 bool IsMapInArrayPrototypeChain(); | 5931 bool IsMapInArrayPrototypeChain(); |
5931 | 5932 |
5932 static Handle<WeakCell> WeakCellForMap(Handle<Map> map); | 5933 static Handle<WeakCell> WeakCellForMap(Handle<Map> map); |
(...skipping 4773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
10706 } | 10707 } |
10707 return value; | 10708 return value; |
10708 } | 10709 } |
10709 }; | 10710 }; |
10710 | 10711 |
10711 | 10712 |
10712 } // NOLINT, false-positive due to second-order macros. | 10713 } // NOLINT, false-positive due to second-order macros. |
10713 } // NOLINT, false-positive due to second-order macros. | 10714 } // NOLINT, false-positive due to second-order macros. |
10714 | 10715 |
10715 #endif // V8_OBJECTS_H_ | 10716 #endif // V8_OBJECTS_H_ |
OLD | NEW |