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

Side by Side Diff: src/types.cc

Issue 1069883002: WIP SharedArrayBuffer implementation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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
« src/objects.h ('K') | « src/typedarray.js ('k') | src/v8.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #include <iomanip> 5 #include <iomanip>
6 6
7 #include "src/types.h" 7 #include "src/types.h"
8 8
9 #include "src/ostreams.h" 9 #include "src/ostreams.h"
10 #include "src/types-inl.h" 10 #include "src/types-inl.h"
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 case JS_OBJECT_TYPE: 233 case JS_OBJECT_TYPE:
234 case JS_CONTEXT_EXTENSION_OBJECT_TYPE: 234 case JS_CONTEXT_EXTENSION_OBJECT_TYPE:
235 case JS_GENERATOR_OBJECT_TYPE: 235 case JS_GENERATOR_OBJECT_TYPE:
236 case JS_MODULE_TYPE: 236 case JS_MODULE_TYPE:
237 case JS_GLOBAL_OBJECT_TYPE: 237 case JS_GLOBAL_OBJECT_TYPE:
238 case JS_BUILTINS_OBJECT_TYPE: 238 case JS_BUILTINS_OBJECT_TYPE:
239 case JS_GLOBAL_PROXY_TYPE: 239 case JS_GLOBAL_PROXY_TYPE:
240 case JS_ARRAY_BUFFER_TYPE: 240 case JS_ARRAY_BUFFER_TYPE:
241 case JS_TYPED_ARRAY_TYPE: 241 case JS_TYPED_ARRAY_TYPE:
242 case JS_DATA_VIEW_TYPE: 242 case JS_DATA_VIEW_TYPE:
243 case JS_SHARED_ARRAY_BUFFER_TYPE:
244 case JS_SHARED_TYPED_ARRAY_TYPE:
243 case JS_SET_TYPE: 245 case JS_SET_TYPE:
244 case JS_MAP_TYPE: 246 case JS_MAP_TYPE:
245 case JS_SET_ITERATOR_TYPE: 247 case JS_SET_ITERATOR_TYPE:
246 case JS_MAP_ITERATOR_TYPE: 248 case JS_MAP_ITERATOR_TYPE:
247 case JS_WEAK_MAP_TYPE: 249 case JS_WEAK_MAP_TYPE:
248 case JS_WEAK_SET_TYPE: 250 case JS_WEAK_SET_TYPE:
249 if (map->is_undetectable()) return kUndetectable; 251 if (map->is_undetectable()) return kUndetectable;
250 return kOtherObject; 252 return kOtherObject;
251 case JS_ARRAY_TYPE: 253 case JS_ARRAY_TYPE:
252 return kArray; 254 return kArray;
(...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>; 1362 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>;
1361 1363
1362 template TypeImpl<ZoneTypeConfig>::TypeHandle 1364 template TypeImpl<ZoneTypeConfig>::TypeHandle
1363 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( 1365 TypeImpl<ZoneTypeConfig>::Convert<HeapType>(
1364 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); 1366 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*);
1365 template TypeImpl<HeapTypeConfig>::TypeHandle 1367 template TypeImpl<HeapTypeConfig>::TypeHandle
1366 TypeImpl<HeapTypeConfig>::Convert<Type>( 1368 TypeImpl<HeapTypeConfig>::Convert<Type>(
1367 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); 1369 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*);
1368 1370
1369 } } // namespace v8::internal 1371 } } // namespace v8::internal
OLDNEW
« src/objects.h ('K') | « src/typedarray.js ('k') | src/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698