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

Side by Side Diff: src/deoptimizer.cc

Issue 2915793002: [api] Prototype WeakRef implementation
Patch Set: Created 3 years, 6 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/contexts.h ('k') | src/factory.h » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 "src/deoptimizer.h" 5 #include "src/deoptimizer.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "src/accessors.h" 9 #include "src/accessors.h"
10 #include "src/assembler-inl.h" 10 #include "src/assembler-inl.h"
(...skipping 4165 matching lines...) Expand 10 before | Expand all | Expand 10 after
4176 case JS_ARRAY_BUFFER_TYPE: 4176 case JS_ARRAY_BUFFER_TYPE:
4177 case JS_REGEXP_TYPE: 4177 case JS_REGEXP_TYPE:
4178 case JS_TYPED_ARRAY_TYPE: 4178 case JS_TYPED_ARRAY_TYPE:
4179 case JS_DATA_VIEW_TYPE: 4179 case JS_DATA_VIEW_TYPE:
4180 case JS_SET_TYPE: 4180 case JS_SET_TYPE:
4181 case JS_MAP_TYPE: 4181 case JS_MAP_TYPE:
4182 case JS_SET_ITERATOR_TYPE: 4182 case JS_SET_ITERATOR_TYPE:
4183 case JS_MAP_ITERATOR_TYPE: 4183 case JS_MAP_ITERATOR_TYPE:
4184 case JS_WEAK_MAP_TYPE: 4184 case JS_WEAK_MAP_TYPE:
4185 case JS_WEAK_SET_TYPE: 4185 case JS_WEAK_SET_TYPE:
4186 case JS_WEAK_REF_TYPE:
4186 case JS_PROMISE_CAPABILITY_TYPE: 4187 case JS_PROMISE_CAPABILITY_TYPE:
4187 case JS_PROMISE_TYPE: 4188 case JS_PROMISE_TYPE:
4188 case JS_BOUND_FUNCTION_TYPE: 4189 case JS_BOUND_FUNCTION_TYPE:
4189 case JS_PROXY_TYPE: 4190 case JS_PROXY_TYPE:
4190 case MAP_TYPE: 4191 case MAP_TYPE:
4191 case ALLOCATION_SITE_TYPE: 4192 case ALLOCATION_SITE_TYPE:
4192 case ACCESSOR_INFO_TYPE: 4193 case ACCESSOR_INFO_TYPE:
4193 case SHARED_FUNCTION_INFO_TYPE: 4194 case SHARED_FUNCTION_INFO_TYPE:
4194 case FUNCTION_TEMPLATE_INFO_TYPE: 4195 case FUNCTION_TEMPLATE_INFO_TYPE:
4195 case ACCESSOR_PAIR_TYPE: 4196 case ACCESSOR_PAIR_TYPE:
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
4463 CHECK(value_info->IsMaterializedObject()); 4464 CHECK(value_info->IsMaterializedObject());
4464 4465
4465 value_info->value_ = 4466 value_info->value_ =
4466 Handle<Object>(previously_materialized_objects->get(i), isolate_); 4467 Handle<Object>(previously_materialized_objects->get(i), isolate_);
4467 } 4468 }
4468 } 4469 }
4469 } 4470 }
4470 4471
4471 } // namespace internal 4472 } // namespace internal
4472 } // namespace v8 4473 } // namespace v8
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698