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

Side by Side Diff: runtime/vm/raw_object.cc

Issue 10832199: Add a weak property type to the virtual machine. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: address review comments Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/raw_object.h" 5 #include "vm/raw_object.h"
6 6
7 #include "vm/class_table.h" 7 #include "vm/class_table.h"
8 #include "vm/freelist.h" 8 #include "vm/freelist.h"
9 #include "vm/isolate.h" 9 #include "vm/isolate.h"
10 #include "vm/object.h" 10 #include "vm/object.h"
(...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 953
954 intptr_t RawJSRegExp::VisitJSRegExpPointers(RawJSRegExp* raw_obj, 954 intptr_t RawJSRegExp::VisitJSRegExpPointers(RawJSRegExp* raw_obj,
955 ObjectPointerVisitor* visitor) { 955 ObjectPointerVisitor* visitor) {
956 // Make sure that we got here with the tagged pointer as this. 956 // Make sure that we got here with the tagged pointer as this.
957 ASSERT(raw_obj->IsHeapObject()); 957 ASSERT(raw_obj->IsHeapObject());
958 intptr_t length = Smi::Value(raw_obj->ptr()->data_length_); 958 intptr_t length = Smi::Value(raw_obj->ptr()->data_length_);
959 visitor->VisitPointers(raw_obj->from(), raw_obj->to()); 959 visitor->VisitPointers(raw_obj->from(), raw_obj->to());
960 return JSRegExp::InstanceSize(length); 960 return JSRegExp::InstanceSize(length);
961 } 961 }
962 962
963
964 intptr_t RawWeakProperty::VisitWeakPropertyPointers(
965 RawWeakProperty* raw_obj, ObjectPointerVisitor* visitor) {
966 // Make sure that we got here with the tagged pointer as this.
967 ASSERT(raw_obj->IsHeapObject());
968 visitor->VisitPointers(raw_obj->from(), raw_obj->to());
969 return WeakProperty::InstanceSize();
970 }
971
963 } // namespace dart 972 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698