OLD | NEW |
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 953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
964 | 964 |
965 intptr_t RawJSRegExp::VisitJSRegExpPointers(RawJSRegExp* raw_obj, | 965 intptr_t RawJSRegExp::VisitJSRegExpPointers(RawJSRegExp* raw_obj, |
966 ObjectPointerVisitor* visitor) { | 966 ObjectPointerVisitor* visitor) { |
967 // Make sure that we got here with the tagged pointer as this. | 967 // Make sure that we got here with the tagged pointer as this. |
968 ASSERT(raw_obj->IsHeapObject()); | 968 ASSERT(raw_obj->IsHeapObject()); |
969 intptr_t length = Smi::Value(raw_obj->ptr()->data_length_); | 969 intptr_t length = Smi::Value(raw_obj->ptr()->data_length_); |
970 visitor->VisitPointers(raw_obj->from(), raw_obj->to()); | 970 visitor->VisitPointers(raw_obj->from(), raw_obj->to()); |
971 return JSRegExp::InstanceSize(length); | 971 return JSRegExp::InstanceSize(length); |
972 } | 972 } |
973 | 973 |
| 974 |
| 975 intptr_t RawWeakProperty::VisitWeakPropertyPointers( |
| 976 RawWeakProperty* raw_obj, ObjectPointerVisitor* visitor) { |
| 977 // Make sure that we got here with the tagged pointer as this. |
| 978 ASSERT(raw_obj->IsHeapObject()); |
| 979 visitor->VisitPointers(raw_obj->from(), raw_obj->to()); |
| 980 return WeakProperty::InstanceSize(); |
| 981 } |
| 982 |
974 } // namespace dart | 983 } // namespace dart |
OLD | NEW |