OLD | NEW |
---|---|
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 Loading... | |
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: | |
arv (Not doing code reviews)
2015/01/14 15:49:10
Stray change?
Michael Starzinger
2015/01/14 16:02:19
Nope, this is now needed because we place a HeapCo
| |
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 Loading... | |
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 |
OLD | NEW |