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

Side by Side Diff: src/types.cc

Issue 798873006: First simple implementation of class literals in TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 11 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/full-codegen.cc ('k') | test/cctest/compiler/test-run-jsops.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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 // We ought to find a cleaner solution for compiling stubs parameterised 244 // We ought to find a cleaner solution for compiling stubs parameterised
245 // over type or class variables, esp ones with bounds... 245 // over type or class variables, esp ones with bounds...
246 return kDetectable; 246 return kDetectable;
247 case DECLARED_ACCESSOR_INFO_TYPE: 247 case DECLARED_ACCESSOR_INFO_TYPE:
248 case EXECUTABLE_ACCESSOR_INFO_TYPE: 248 case EXECUTABLE_ACCESSOR_INFO_TYPE:
249 case SHARED_FUNCTION_INFO_TYPE: 249 case SHARED_FUNCTION_INFO_TYPE:
250 case ACCESSOR_PAIR_TYPE: 250 case ACCESSOR_PAIR_TYPE:
251 case FIXED_ARRAY_TYPE: 251 case FIXED_ARRAY_TYPE:
252 case BYTE_ARRAY_TYPE: 252 case BYTE_ARRAY_TYPE:
253 case FOREIGN_TYPE: 253 case FOREIGN_TYPE:
254 case SCRIPT_TYPE:
254 case CODE_TYPE: 255 case CODE_TYPE:
255 return kInternal & kTaggedPointer; 256 return kInternal & kTaggedPointer;
256 default: 257 default:
257 UNREACHABLE(); 258 UNREACHABLE();
258 return kNone; 259 return kNone;
259 } 260 }
260 } 261 }
261 262
262 263
263 template<class Config> 264 template<class Config>
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>; 1098 template class TypeImpl<HeapTypeConfig>::Iterator<i::Object>;
1098 1099
1099 template TypeImpl<ZoneTypeConfig>::TypeHandle 1100 template TypeImpl<ZoneTypeConfig>::TypeHandle
1100 TypeImpl<ZoneTypeConfig>::Convert<HeapType>( 1101 TypeImpl<ZoneTypeConfig>::Convert<HeapType>(
1101 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*); 1102 TypeImpl<HeapTypeConfig>::TypeHandle, TypeImpl<ZoneTypeConfig>::Region*);
1102 template TypeImpl<HeapTypeConfig>::TypeHandle 1103 template TypeImpl<HeapTypeConfig>::TypeHandle
1103 TypeImpl<HeapTypeConfig>::Convert<Type>( 1104 TypeImpl<HeapTypeConfig>::Convert<Type>(
1104 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*); 1105 TypeImpl<ZoneTypeConfig>::TypeHandle, TypeImpl<HeapTypeConfig>::Region*);
1105 1106
1106 } } // namespace v8::internal 1107 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | test/cctest/compiler/test-run-jsops.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698