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

Unified Diff: src/api.cc

Issue 962963007: Use locker when creating snapshot if necessary. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | test/cctest/test-serialize.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index 38d108d785f3c43e4031a43d4b2aefadedccb2cf..f7a236275aa9fc663b2eb2136789446f472a9bc9 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -322,51 +322,61 @@ bool RunExtraCode(Isolate* isolate, const char* utf8_source) {
}
-StartupData V8::CreateSnapshotDataBlob(const char* custom_source) {
- i::Isolate* internal_isolate = new i::Isolate(true);
- Isolate* isolate = reinterpret_cast<Isolate*>(internal_isolate);
- StartupData result = {NULL, 0};
+StartupData CreateSnapshotWithinIsolate(Isolate* isolate,
+ const char* custom_source) {
+ i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
+ Isolate::Scope isolate_scope(isolate);
+ i_isolate->Init(NULL);
+ Persistent<Context> context;
+ i::Snapshot::Metadata metadata;
{
- Isolate::Scope isolate_scope(isolate);
- internal_isolate->Init(NULL);
- Persistent<Context> context;
- i::Snapshot::Metadata metadata;
- {
- HandleScope handle_scope(isolate);
- Handle<Context> new_context = Context::New(isolate);
- context.Reset(isolate, new_context);
- if (custom_source != NULL) {
- metadata.set_embeds_script(true);
- Context::Scope context_scope(new_context);
- if (!RunExtraCode(isolate, custom_source)) context.Reset();
- }
+ HandleScope handle_scope(isolate);
+ Handle<Context> new_context = Context::New(isolate);
+ context.Reset(isolate, new_context);
+ if (custom_source != NULL) {
+ metadata.set_embeds_script(true);
+ Context::Scope context_scope(new_context);
+ if (!RunExtraCode(isolate, custom_source)) context.Reset();
}
- if (!context.IsEmpty()) {
- // Make sure all builtin scripts are cached.
- {
- HandleScope scope(isolate);
- for (int i = 0; i < i::Natives::GetBuiltinsCount(); i++) {
- internal_isolate->bootstrapper()->NativesSourceLookup(i);
- }
- }
- // If we don't do this then we end up with a stray root pointing at the
- // context even after we have disposed of the context.
- internal_isolate->heap()->CollectAllAvailableGarbage("mksnapshot");
- i::Object* raw_context = *v8::Utils::OpenPersistent(context);
- context.Reset();
-
- i::SnapshotByteSink snapshot_sink;
- i::StartupSerializer ser(internal_isolate, &snapshot_sink);
- ser.SerializeStrongReferences();
-
- i::SnapshotByteSink context_sink;
- i::PartialSerializer context_ser(internal_isolate, &ser, &context_sink);
- context_ser.Serialize(&raw_context);
- ser.SerializeWeakReferences();
-
- result = i::Snapshot::CreateSnapshotBlob(ser, context_ser, metadata);
+ }
+
+ if (context.IsEmpty()) return {NULL, 0};
+
+ // Make sure all builtin scripts are cached.
+ {
+ HandleScope scope(isolate);
+ for (int i = 0; i < i::Natives::GetBuiltinsCount(); i++) {
+ i_isolate->bootstrapper()->NativesSourceLookup(i);
}
}
+ // If we don't do this then we end up with a stray root pointing at the
+ // context even after we have disposed of the context.
+ i_isolate->heap()->CollectAllAvailableGarbage("CreateSnapshotDataBlob");
+ i::Object* raw_context = *v8::Utils::OpenPersistent(context);
+ context.Reset();
+
+ i::SnapshotByteSink snapshot_sink;
+ i::StartupSerializer ser(i_isolate, &snapshot_sink);
+ ser.SerializeStrongReferences();
+
+ i::SnapshotByteSink context_sink;
+ i::PartialSerializer context_ser(i_isolate, &ser, &context_sink);
+ context_ser.Serialize(&raw_context);
+ ser.SerializeWeakReferences();
+
+ return i::Snapshot::CreateSnapshotBlob(ser, context_ser, metadata);
+}
+
+
+StartupData V8::CreateSnapshotDataBlob(const char* custom_source) {
+ Isolate* isolate = reinterpret_cast<Isolate*>(new i::Isolate(true));
+ StartupData result = {NULL, 0};
+ if (Locker::IsActive()) {
+ Locker lock(isolate);
+ result = CreateSnapshotWithinIsolate(isolate, custom_source);
+ } else {
+ result = CreateSnapshotWithinIsolate(isolate, custom_source);
vogelheim 2015/03/03 13:18:29 I'm confused by this. Admittedly I don't understan
+ }
isolate->Dispose();
return result;
}
« no previous file with comments | « no previous file | test/cctest/test-serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698