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

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: merge master Created 5 years, 7 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/typedarray.js ('k') | test/cctest/cctest.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 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_BUILTINS_OBJECT_TYPE: 237 case JS_BUILTINS_OBJECT_TYPE:
238 case JS_GLOBAL_PROXY_TYPE: 238 case JS_GLOBAL_PROXY_TYPE:
239 case JS_ARRAY_BUFFER_TYPE: 239 case JS_ARRAY_BUFFER_TYPE:
240 case JS_ARRAY_TYPE: 240 case JS_ARRAY_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_GLOBAL_OBJECT_TYPE: 253 case JS_GLOBAL_OBJECT_TYPE:
252 return kGlobalObject; 254 return kGlobalObject;
(...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>; 1363 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>;
1362 1364
1363 template TypeImpl<ZoneTypeConfig>::TypeHandle 1365 template TypeImpl<ZoneTypeConfig>::TypeHandle
1364 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( 1366 TypeImpl<ZoneTypeConfig>::Convert<HeapType>(
1365 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); 1367 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*);
1366 template TypeImpl<HeapTypeConfig>::TypeHandle 1368 template TypeImpl<HeapTypeConfig>::TypeHandle
1367 TypeImpl<HeapTypeConfig>::Convert<Type>( 1369 TypeImpl<HeapTypeConfig>::Convert<Type>(
1368 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); 1370 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*);
1369 1371
1370 } } // namespace v8::internal 1372 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/typedarray.js ('k') | test/cctest/cctest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698