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

Unified Diff: runtime/vm/snapshot.h

Issue 1399663002: 1. Do not mark an object by storing the object id used during serialization in the object header. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: code-review-comments Created 5 years, 2 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
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot.h
diff --git a/runtime/vm/snapshot.h b/runtime/vm/snapshot.h
index c3b0454183d5d739fc7b1097cb87016d6048767d..949f897f0f9041f829b4ea4f91d1dd65dd3760f8 100644
--- a/runtime/vm/snapshot.h
+++ b/runtime/vm/snapshot.h
@@ -750,23 +750,20 @@ class BaseWriter : public StackResource {
class ForwardList {
public:
- explicit ForwardList(intptr_t first_object_id);
+ explicit ForwardList(Thread* thread, intptr_t first_object_id);
~ForwardList();
class Node : public ZoneAllocated {
public:
- Node(RawObject* raw, uword tags, SerializeState state)
- : raw_(raw), tags_(tags), state_(state) {}
- RawObject* raw() const { return raw_; }
- uword tags() const { return tags_; }
+ Node(const Object* obj, SerializeState state) : obj_(obj), state_(state) {}
+ const Object* obj() const { return obj_; }
bool is_serialized() const { return state_ == kIsSerialized; }
private:
// Private to ensure the invariant of first_unprocessed_object_id_.
void set_state(SerializeState value) { state_ = value; }
- RawObject* raw_;
- uword tags_;
+ const Object* obj_;
SerializeState state_;
friend class ForwardList;
@@ -778,10 +775,7 @@ class ForwardList {
}
// Returns the id for the added object.
- intptr_t MarkAndAddObject(RawObject* raw, SerializeState state);
-
- // Returns the id for the added object without marking it.
- intptr_t AddObject(RawObject* raw, SerializeState state);
+ intptr_t AddObject(Zone* zone, RawObject* raw, SerializeState state);
// Returns the id for the object it it exists in the list.
intptr_t FindObject(RawObject* raw);
@@ -790,16 +784,17 @@ class ForwardList {
// concurrently add more objects.
void SerializeAll(ObjectVisitor* writer);
- // Restores the tags of all objects in this list.
- void UnmarkAll() const;
-
// Set state of object in forward list.
- void SetState(RawObject* raw, SerializeState state);
+ void SetState(intptr_t object_id, SerializeState state) {
+ NodeForObjectId(object_id)->set_state(state);
+ }
private:
intptr_t first_object_id() const { return first_object_id_; }
intptr_t next_object_id() const { return nodes_.length() + first_object_id_; }
+ Heap* heap() const { return thread_->isolate()->heap(); }
+ Thread* thread_;
const intptr_t first_object_id_;
GrowableArray<Node*> nodes_;
intptr_t first_unprocessed_object_id_;
@@ -873,6 +868,7 @@ class InstructionsWriter : public ZoneAllocated {
class SnapshotWriter : public BaseWriter {
protected:
SnapshotWriter(Snapshot::Kind kind,
+ Thread* thread,
uint8_t** buffer,
ReAlloc alloc,
intptr_t initial_size,
@@ -885,14 +881,16 @@ class SnapshotWriter : public BaseWriter {
public:
// Snapshot kind.
Snapshot::Kind kind() const { return kind_; }
+ Thread* thread() const { return thread_; }
+ Zone* zone() const { return thread_->zone(); }
+ Isolate* isolate() const { return thread_->isolate(); }
+ Heap* heap() const { return isolate()->heap(); }
// Serialize an object into the buffer.
void WriteObject(RawObject* raw);
uword GetObjectTags(RawObject* raw);
- intptr_t GetObjectId(RawObject* raw);
-
Exceptions::ExceptionType exception_type() const {
return exception_type_;
}
@@ -924,13 +922,6 @@ class SnapshotWriter : public BaseWriter {
void WriteFunctionId(RawFunction* func, bool owner_is_class);
protected:
- void UnmarkAll() {
- if (!unmarked_objects_ && forward_list_ != NULL) {
- forward_list_->UnmarkAll();
- unmarked_objects_ = true;
- }
- }
-
bool CheckAndWritePredefinedObject(RawObject* raw);
bool HandleVMIsolateObject(RawObject* raw);
@@ -972,9 +963,6 @@ class SnapshotWriter : public BaseWriter {
forward_list_ = NULL;
}
- Thread* thread() const { return thread_; }
- Isolate* isolate() const { return thread_->isolate(); }
- Zone* zone() const { return thread_->zone(); }
ObjectStore* object_store() const { return object_store_; }
private:
@@ -1041,6 +1029,11 @@ class FullSnapshotWriter {
return isolate_snapshot_buffer_;
}
+ Thread* thread() const { return thread_; }
+ Zone* zone() const { return thread_->zone(); }
+ Isolate* isolate() const { return thread_->isolate(); }
+ Heap* heap() const { return isolate()->heap(); }
+
// Writes a full snapshot of the Isolate.
void WriteFullSnapshot();
@@ -1061,7 +1054,7 @@ class FullSnapshotWriter {
// Writes a full snapshot of a regular Dart Isolate.
void WriteIsolateFullSnapshot();
- Isolate* isolate_;
+ Thread* thread_;
uint8_t** vm_isolate_snapshot_buffer_;
uint8_t** isolate_snapshot_buffer_;
uint8_t** instructions_snapshot_buffer_;
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | runtime/vm/snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698