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

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: Addressing code review feedback + rebase 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
« no previous file with comments | « 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 171e9f38351a5bb0439ebc8e084db9fbabc30c0b..846debf5055aaa8f139608d6485d9a5c6dc0354f 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -729,8 +729,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;
« no previous file with comments | « src/ic.cc ('k') | src/jsregexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698