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

Side by Side Diff: src/types.cc

Issue 1448933002: Introduce a BuiltinsConstructStub that sets up new.target and does a [[call]] per ES6 9.3.2 (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/runtime/runtime-regexp.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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 case JS_ARRAY_TYPE: 237 case JS_ARRAY_TYPE:
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 if (map->is_undetectable()) return kUndetectable; 248 if (map->is_undetectable()) return kUndetectable;
248 return kOtherObject; 249 return kOtherObject;
249 case JS_FUNCTION_TYPE: 250 case JS_FUNCTION_TYPE:
250 if (map->is_undetectable()) return kUndetectable; 251 if (map->is_undetectable()) return kUndetectable;
251 return kFunction; 252 return kFunction;
252 case JS_REGEXP_TYPE: 253 case JS_REGEXP_TYPE:
253 return kOtherObject; // TODO(rossberg): there should be a RegExp type. 254 return kOtherObject; // TODO(rossberg): there should be a RegExp type.
254 case JS_PROXY_TYPE: 255 case JS_PROXY_TYPE:
255 case JS_FUNCTION_PROXY_TYPE: 256 case JS_FUNCTION_PROXY_TYPE:
256 return kProxy; 257 return kProxy;
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1395 1396
1396 template TypeImpl<ZoneTypeConfig>::TypeHandle 1397 template TypeImpl<ZoneTypeConfig>::TypeHandle
1397 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( 1398 TypeImpl<ZoneTypeConfig>::Convert<HeapType>(
1398 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); 1399 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*);
1399 template TypeImpl<HeapTypeConfig>::TypeHandle 1400 template TypeImpl<HeapTypeConfig>::TypeHandle
1400 TypeImpl<HeapTypeConfig>::Convert<Type>( 1401 TypeImpl<HeapTypeConfig>::Convert<Type>(
1401 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); 1402 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*);
1402 1403
1403 } // namespace internal 1404 } // namespace internal
1404 } // namespace v8 1405 } // namespace v8
OLDNEW
« no previous file with comments | « src/runtime/runtime-regexp.cc ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698