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

Unified Diff: runtime/vm/raw_object.cc

Issue 10444091: Avoid reading RawObject::class_ directly in the runtime. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 side-by-side diff with in-line comments
Download patch
« runtime/vm/raw_object.h ('K') | « runtime/vm/raw_object.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.cc
diff --git a/runtime/vm/raw_object.cc b/runtime/vm/raw_object.cc
index 649d6e69e7cc7784f7886b5a92958728dac7e1aa..74cb5809ef35bfe341f319d6991df722dc9597ed 100644
--- a/runtime/vm/raw_object.cc
+++ b/runtime/vm/raw_object.cc
@@ -48,7 +48,12 @@ intptr_t RawObject::SizeFromClass() const {
// Only reasonable to be called on heap objects.
ASSERT(IsHeapObject());
- RawClass* raw_class = ptr()->class_;
+ // TODO(vegorov): this should be moved to fast path when class_ is eliminated.
+ if (FreeBit::decode(ptr()->tags_)) {
+ return reinterpret_cast<FreeListElement*>(ptr())->Size();
+ }
+
+ RawClass* raw_class = Isolate::Current()->class_table()->At(GetClassIndex());
intptr_t instance_size = raw_class->ptr()->instance_size_;
ObjectKind instance_kind = raw_class->ptr()->instance_kind_;
@@ -262,9 +267,23 @@ intptr_t RawObject::VisitPointers(ObjectPointerVisitor* visitor) {
// Only reasonable to be called on heap objects.
ASSERT(IsHeapObject());
+ if (FreeBit::decode(ptr()->tags_)) {
+ // Nothing to visit for free list elements.
+ uword addr = RawObject::ToAddr(this);
+ FreeListElement* element = reinterpret_cast<FreeListElement*>(addr);
+ return element->Size();
+ }
+
// Read the necessary data out of the class before visting the class itself.
- RawClass* raw_class = ptr()->class_;
- ObjectKind kind = raw_class->ptr()->instance_kind_;
+ intptr_t class_index = GetClassIndex();
+ ObjectKind kind;
+
+ if (class_index < kNumPredefinedKinds) {
+ kind = static_cast<ObjectKind>(class_index);
+ } else {
+ RawClass* raw_class = Isolate::Current()->class_table()->At(class_index);
+ kind = raw_class->ptr()->instance_kind_;
+ }
// Visit the class before visting the fields.
visitor->VisitPointer(reinterpret_cast<RawObject**>(&ptr()->class_));
@@ -278,14 +297,6 @@ intptr_t RawObject::VisitPointers(ObjectPointerVisitor* visitor) {
}
CLASS_LIST_NO_OBJECT(RAW_VISITPOINTERS)
#undef RAW_VISITPOINTERS
- case kFreeListElement: {
Ivan Posva 2012/05/31 13:06:24 You do not handle kFreeListElements here, but I do
Vyacheslav Egorov (Google) 2012/05/31 13:21:48 But free bit is always set for FreeListElement is
- ASSERT(FreeBit::decode(ptr()->tags_));
- // Nothing to visit for free list elements.
- uword addr = RawObject::ToAddr(this);
- FreeListElement* element = reinterpret_cast<FreeListElement*>(addr);
- size = element->Size();
- break;
- }
default:
OS::Print("Kind: %d\n", kind);
UNREACHABLE();
@@ -439,9 +450,8 @@ intptr_t RawInstructions::VisitInstructionsPointers(
bool RawInstructions::ContainsPC(RawObject* raw_obj, uword pc) {
- RawClass* raw_class = raw_obj->ptr()->class_;
- ObjectKind instance_kind = raw_class->ptr()->instance_kind_;
- if (instance_kind == kInstructions) {
+ uword tags = raw_obj->ptr()->tags_;
+ if (RawObject::ClassTag::decode(tags) == kInstructions) {
RawInstructions* raw_instr = reinterpret_cast<RawInstructions*>(raw_obj);
uword start_pc =
reinterpret_cast<uword>(raw_instr->ptr()) + Instructions::HeaderSize();
@@ -564,9 +574,10 @@ intptr_t RawInstance::VisitInstancePointers(RawInstance* raw_obj,
ObjectPointerVisitor* visitor) {
// Make sure that we got here with the tagged pointer as this.
ASSERT(raw_obj->IsHeapObject());
- RawInstance* obj = raw_obj->ptr();
- intptr_t instance_size = obj->class_->ptr()->instance_size_;
- intptr_t num_native_fields = obj->class_->ptr()->num_native_fields_;
+ RawClass* cls = Isolate::Current()->class_table()->At(
+ raw_obj->GetClassIndex());
+ intptr_t instance_size = cls->ptr()->instance_size_;
+ intptr_t num_native_fields = cls->ptr()->num_native_fields_;
// Calculate the first and last raw object pointer fields.
uword obj_addr = RawObject::ToAddr(raw_obj);
« runtime/vm/raw_object.h ('K') | « runtime/vm/raw_object.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698