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

Side by Side Diff: src/types.cc

Issue 1552473002: Revert of [runtime] Introduce dedicated JSBoundFunction to represent bound functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@FunctionConstructor
Patch Set: Created 4 years, 12 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/snapshot/serialize.cc ('k') | src/x64/builtins-x64.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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 case JS_TYPED_ARRAY_TYPE: 238 case JS_TYPED_ARRAY_TYPE:
239 case JS_DATA_VIEW_TYPE: 239 case JS_DATA_VIEW_TYPE:
240 case JS_SET_TYPE: 240 case JS_SET_TYPE:
241 case JS_MAP_TYPE: 241 case JS_MAP_TYPE:
242 case JS_SET_ITERATOR_TYPE: 242 case JS_SET_ITERATOR_TYPE:
243 case JS_MAP_ITERATOR_TYPE: 243 case JS_MAP_ITERATOR_TYPE:
244 case JS_ITERATOR_RESULT_TYPE: 244 case JS_ITERATOR_RESULT_TYPE:
245 case JS_WEAK_MAP_TYPE: 245 case JS_WEAK_MAP_TYPE:
246 case JS_WEAK_SET_TYPE: 246 case JS_WEAK_SET_TYPE:
247 case JS_PROMISE_TYPE: 247 case JS_PROMISE_TYPE:
248 case JS_BOUND_FUNCTION_TYPE:
249 if (map->is_undetectable()) return kUndetectable; 248 if (map->is_undetectable()) return kUndetectable;
250 return kOtherObject; 249 return kOtherObject;
251 case JS_FUNCTION_TYPE: 250 case JS_FUNCTION_TYPE:
252 if (map->is_undetectable()) return kUndetectable; 251 if (map->is_undetectable()) return kUndetectable;
253 return kFunction; 252 return kFunction;
254 case JS_REGEXP_TYPE: 253 case JS_REGEXP_TYPE:
255 return kOtherObject; // TODO(rossberg): there should be a RegExp type. 254 return kOtherObject; // TODO(rossberg): there should be a RegExp type.
256 case JS_PROXY_TYPE: 255 case JS_PROXY_TYPE:
257 return kProxy; 256 return kProxy;
258 case MAP_TYPE: 257 case MAP_TYPE:
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1397 1396
1398 template TypeImpl<ZoneTypeConfig>::TypeHandle 1397 template TypeImpl<ZoneTypeConfig>::TypeHandle
1399 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( 1398 TypeImpl<ZoneTypeConfig>::Convert<HeapType>(
1400 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); 1399 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*);
1401 template TypeImpl<HeapTypeConfig>::TypeHandle 1400 template TypeImpl<HeapTypeConfig>::TypeHandle
1402 TypeImpl<HeapTypeConfig>::Convert<Type>( 1401 TypeImpl<HeapTypeConfig>::Convert<Type>(
1403 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); 1402 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*);
1404 1403
1405 } // namespace internal 1404 } // namespace internal
1406 } // namespace v8 1405 } // namespace v8
OLDNEW
« no previous file with comments | « src/snapshot/serialize.cc ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698