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

Unified Diff: src/top.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/stub-cache.cc ('k') | src/vm-state-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/top.cc
diff --git a/src/top.cc b/src/top.cc
index 8414560233666a002ef80ded4d910ff5980254cc..281e54b3d7127c23366a31d8e44b143305a28b12 100644
--- a/src/top.cc
+++ b/src/top.cc
@@ -458,7 +458,7 @@ bool Isolate::MayNamedAccess(JSObject* receiver, Object* key,
Handle<JSObject> receiver_handle(receiver, this);
Handle<Object> key_handle(key, this);
Handle<Object> data(AccessCheckInfo::cast(data_obj)->data(), this);
- LOG(ApiNamedSecurityCheck(key));
+ LOG(this,ApiNamedSecurityCheck(key));
bool result = false;
{
// Leaving JavaScript.
@@ -500,7 +500,7 @@ bool Isolate::MayIndexedAccess(JSObject* receiver,
HandleScope scope(this);
Handle<JSObject> receiver_handle(receiver, this);
Handle<Object> data(AccessCheckInfo::cast(data_obj)->data(), this);
- LOG(ApiIndexedSecurityCheck(index));
+ LOG(this,ApiIndexedSecurityCheck(index));
bool result = false;
{
// Leaving JavaScript.
« src/compiler.cc ('K') | « src/stub-cache.cc ('k') | src/vm-state-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698