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

Unified Diff: src/vm-state-inl.h

Issue 11280212: Introduce --log-external-callbacks flag apart from --log-timer-events. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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/ia32/macro-assembler-ia32.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/vm-state-inl.h
diff --git a/src/vm-state-inl.h b/src/vm-state-inl.h
index bc481605fbf774034b45cb7ad4015b86e6ac1652..baa4b44932633f994d323d54db9c675eaa46d8ff 100644
--- a/src/vm-state-inl.h
+++ b/src/vm-state-inl.h
@@ -67,7 +67,7 @@ VMState::VMState(Isolate* isolate, StateTag tag)
LOG(isolate, UncheckedStringEvent("From", StateToString(previous_tag_)));
}
- if (FLAG_log_timer_events) {
+ if (FLAG_log_external_callbacks) {
LOG(isolate, ExternalSwitch(previous_tag_, tag));
}
@@ -84,7 +84,7 @@ VMState::~VMState() {
UncheckedStringEvent("To", StateToString(previous_tag_)));
}
- if (FLAG_log_timer_events) {
+ if (FLAG_log_external_callbacks) {
LOG(isolate_, ExternalSwitch(isolate_->current_vm_state(), previous_tag_));
}
« no previous file with comments | « src/ia32/macro-assembler-ia32.cc ('k') | src/x64/macro-assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698