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

Side by Side Diff: src/objects.h

Issue 1453653003: [turbofan] Add support for special JSArrayBufferView accessors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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/compiler/js-native-context-specialization.cc ('k') | src/objects-inl.h » ('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 #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
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
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_
OLDNEW
« no previous file with comments | « src/compiler/js-native-context-specialization.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698