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

Unified Diff: src/v8threads.cc

Issue 565047: * Add the partial context snapshot to the VM executable if... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/partial_snapshots/
Patch Set: Created 10 years, 11 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
Index: src/v8threads.cc
===================================================================
--- src/v8threads.cc (revision 3791)
+++ src/v8threads.cc (working copy)
@@ -156,7 +156,6 @@
return false;
}
char* from = state->data();
- printf("Restore from %p\n", (void*)state->data());
from = HandleScopeImplementer::RestoreThread(from);
from = Top::RestoreThread(from);
from = Relocatable::RestoreState(from);
@@ -285,7 +284,6 @@
void ThreadManager::EagerlyArchiveThread() {
ThreadState* state = lazily_archived_thread_state_;
state->LinkInto(ThreadState::IN_USE_LIST);
- printf("Archive into %p\n", (void*)state->data());
char* to = state->data();
// Ensure that data containing GC roots are archived first, and handle them
// in ThreadManager::Iterate(ObjectVisitor*).
@@ -326,7 +324,6 @@
state != NULL;
state = state->Next()) {
char* data = state->data();
- printf("Iterate over %p\n", (void*)state->data());
data = HandleScopeImplementer::Iterate(v, data);
data = Top::Iterate(v, data);
data = Relocatable::Iterate(v, data);
@@ -339,7 +336,6 @@
state != NULL;
state = state->Next()) {
char* data = state->data();
- printf("Mark compact prologue %p\n", (void*)state->data());
data += HandleScopeImplementer::ArchiveSpacePerThread();
Top::MarkCompactPrologue(is_compacting, data);
}
@@ -351,7 +347,6 @@
state != NULL;
state = state->Next()) {
char* data = state->data();
- printf("Mark compact epilogue %p\n", (void*)state->data());
data += HandleScopeImplementer::ArchiveSpacePerThread();
Top::MarkCompactEpilogue(is_compacting, data);
}
« src/api.cc ('K') | « src/v8-counters.h ('k') | test/cctest/test-serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698