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

Side by Side Diff: src/types.cc

Issue 1912103002: [wasm] Store function names in the wasm object (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-offset-table-2
Patch Set: fix gcmole and signed/unsigned comparison issue Created 4 years, 8 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
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/handles-inl.h" 9 #include "src/handles-inl.h"
10 #include "src/ostreams.h" 10 #include "src/ostreams.h"
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 case JS_TYPED_ARRAY_TYPE: 218 case JS_TYPED_ARRAY_TYPE:
219 case JS_DATA_VIEW_TYPE: 219 case JS_DATA_VIEW_TYPE:
220 case JS_SET_TYPE: 220 case JS_SET_TYPE:
221 case JS_MAP_TYPE: 221 case JS_MAP_TYPE:
222 case JS_SET_ITERATOR_TYPE: 222 case JS_SET_ITERATOR_TYPE:
223 case JS_MAP_ITERATOR_TYPE: 223 case JS_MAP_ITERATOR_TYPE:
224 case JS_WEAK_MAP_TYPE: 224 case JS_WEAK_MAP_TYPE:
225 case JS_WEAK_SET_TYPE: 225 case JS_WEAK_SET_TYPE:
226 case JS_PROMISE_TYPE: 226 case JS_PROMISE_TYPE:
227 case JS_BOUND_FUNCTION_TYPE: 227 case JS_BOUND_FUNCTION_TYPE:
228 case JS_WASM_TYPE:
228 DCHECK(!map->is_undetectable()); 229 DCHECK(!map->is_undetectable());
229 return kOtherObject; 230 return kOtherObject;
230 case JS_FUNCTION_TYPE: 231 case JS_FUNCTION_TYPE:
231 DCHECK(!map->is_undetectable()); 232 DCHECK(!map->is_undetectable());
232 return kFunction; 233 return kFunction;
233 case JS_PROXY_TYPE: 234 case JS_PROXY_TYPE:
234 DCHECK(!map->is_undetectable()); 235 DCHECK(!map->is_undetectable());
235 return kProxy; 236 return kProxy;
236 case MAP_TYPE: 237 case MAP_TYPE:
237 case ALLOCATION_SITE_TYPE: 238 case ALLOCATION_SITE_TYPE:
(...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after
1267 #undef CONSTRUCT_SIMD_TYPE 1268 #undef CONSTRUCT_SIMD_TYPE
1268 1269
1269 // ----------------------------------------------------------------------------- 1270 // -----------------------------------------------------------------------------
1270 // Instantiations. 1271 // Instantiations.
1271 1272
1272 template class Type::Iterator<i::Map>; 1273 template class Type::Iterator<i::Map>;
1273 template class Type::Iterator<i::Object>; 1274 template class Type::Iterator<i::Object>;
1274 1275
1275 } // namespace internal 1276 } // namespace internal
1276 } // namespace v8 1277 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698