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

Unified Diff: src/isolate.cc

Issue 6696042: Adding 'isolates' argument to LOG to get rid of multiple TLS fetches in profiling. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/isolates
Patch Set: Created 9 years, 9 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
« src/compiler.cc ('K') | « src/ic.cc ('k') | src/jsregexp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index 346aa4f46d97072d736e4452c37ceebc6e01a6da..7d45a87be687ac41658aad24d5e76534cf1c3b60 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -717,8 +717,8 @@ bool Isolate::Init(Deserializer* des) {
// functions found in the snapshot.
if (des != NULL && FLAG_log_code) {
HandleScope scope;
- LOG(LogCodeObjects());
- LOG(LogCompiledFunctions());
+ LOG(this,LogCodeObjects());
+ LOG(this,LogCompiledFunctions());
}
state_ = INITIALIZED;
« src/compiler.cc ('K') | « src/ic.cc ('k') | src/jsregexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698