Implement resource-saving ("lazy") mode of Profiler.
This is intended to be used with Chromium. When in resource-saving mode, profiler doesn't consume any resources (sampler and logging is off) until resumed. Then again, when profiler is paused, sampling and logging are turned off. Tested under Linux and Windows. Also have done preliminary testing with Chromium. Review URL: http://codereview.chromium.org/113762 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2036 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
530b86ff17
commit
9f69c414eb
@ -336,6 +336,9 @@ DEFINE_bool(prof, false,
|
|||||||
"Log statistical profiling information (implies --log-code).")
|
"Log statistical profiling information (implies --log-code).")
|
||||||
DEFINE_bool(prof_auto, true,
|
DEFINE_bool(prof_auto, true,
|
||||||
"Used with --prof, starts profiling automatically")
|
"Used with --prof, starts profiling automatically")
|
||||||
|
DEFINE_bool(prof_lazy, false,
|
||||||
|
"Used with --prof, only does sampling and logging"
|
||||||
|
" when profiler is active (implies --noprof_auto).")
|
||||||
DEFINE_bool(log_regexp, false, "Log regular expression execution.")
|
DEFINE_bool(log_regexp, false, "Log regular expression execution.")
|
||||||
DEFINE_bool(sliding_state_window, false,
|
DEFINE_bool(sliding_state_window, false,
|
||||||
"Update sliding state window counters.")
|
"Update sliding state window counters.")
|
||||||
|
30
src/log.cc
30
src/log.cc
@ -188,7 +188,7 @@ class Ticker: public Sampler {
|
|||||||
|
|
||||||
void SetProfiler(Profiler* profiler) {
|
void SetProfiler(Profiler* profiler) {
|
||||||
profiler_ = profiler;
|
profiler_ = profiler;
|
||||||
if (!IsActive()) Start();
|
if (!FLAG_prof_lazy && !IsActive()) Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClearProfiler() {
|
void ClearProfiler() {
|
||||||
@ -267,6 +267,8 @@ void Profiler::Disengage() {
|
|||||||
// the thread to terminate.
|
// the thread to terminate.
|
||||||
running_ = false;
|
running_ = false;
|
||||||
TickSample sample;
|
TickSample sample;
|
||||||
|
// Reset 'paused_' flag, otherwise semaphore may not be signalled.
|
||||||
|
resume();
|
||||||
Insert(&sample);
|
Insert(&sample);
|
||||||
Join();
|
Join();
|
||||||
|
|
||||||
@ -1096,14 +1098,30 @@ bool Logger::IsProfilerPaused() {
|
|||||||
|
|
||||||
void Logger::PauseProfiler() {
|
void Logger::PauseProfiler() {
|
||||||
profiler_->pause();
|
profiler_->pause();
|
||||||
|
if (FLAG_prof_lazy) {
|
||||||
|
if (!FLAG_sliding_state_window) ticker_->Stop();
|
||||||
|
FLAG_log_code = false;
|
||||||
|
LOG(UncheckedStringEvent("profiler", "pause"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Logger::ResumeProfiler() {
|
void Logger::ResumeProfiler() {
|
||||||
|
if (FLAG_prof_lazy) {
|
||||||
|
LOG(UncheckedStringEvent("profiler", "resume"));
|
||||||
|
FLAG_log_code = true;
|
||||||
|
LogCompiledFunctions();
|
||||||
|
if (!FLAG_sliding_state_window) ticker_->Start();
|
||||||
|
}
|
||||||
profiler_->resume();
|
profiler_->resume();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool Logger::IsProfilerSamplerActive() {
|
||||||
|
return ticker_->IsActive();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int Logger::GetLogLines(int from_pos, char* dest_buf, int max_size) {
|
int Logger::GetLogLines(int from_pos, char* dest_buf, int max_size) {
|
||||||
return Log::GetLogLines(from_pos, dest_buf, max_size);
|
return Log::GetLogLines(from_pos, dest_buf, max_size);
|
||||||
}
|
}
|
||||||
@ -1190,9 +1208,15 @@ bool Logger::Setup() {
|
|||||||
// --prof implies --log-code.
|
// --prof implies --log-code.
|
||||||
if (FLAG_prof) FLAG_log_code = true;
|
if (FLAG_prof) FLAG_log_code = true;
|
||||||
|
|
||||||
|
// --prof_lazy controls --log-code, implies --noprof_auto.
|
||||||
|
if (FLAG_prof_lazy) {
|
||||||
|
FLAG_log_code = false;
|
||||||
|
FLAG_prof_auto = false;
|
||||||
|
}
|
||||||
|
|
||||||
bool open_log_file = FLAG_log || FLAG_log_runtime || FLAG_log_api
|
bool open_log_file = FLAG_log || FLAG_log_runtime || FLAG_log_api
|
||||||
|| FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect
|
|| FLAG_log_code || FLAG_log_gc || FLAG_log_handles || FLAG_log_suspect
|
||||||
|| FLAG_log_regexp || FLAG_log_state_changes;
|
|| FLAG_log_regexp || FLAG_log_state_changes || FLAG_prof_lazy;
|
||||||
|
|
||||||
// If we're logging anything, we need to open the log file.
|
// If we're logging anything, we need to open the log file.
|
||||||
if (open_log_file) {
|
if (open_log_file) {
|
||||||
@ -1277,8 +1301,10 @@ void Logger::TearDown() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
delete sliding_state_window_;
|
delete sliding_state_window_;
|
||||||
|
sliding_state_window_ = NULL;
|
||||||
|
|
||||||
delete ticker_;
|
delete ticker_;
|
||||||
|
ticker_ = NULL;
|
||||||
|
|
||||||
Log::Close();
|
Log::Close();
|
||||||
#endif
|
#endif
|
||||||
|
@ -230,6 +230,9 @@ class Logger {
|
|||||||
// Logs a StringEvent regardless of whether FLAG_log is true.
|
// Logs a StringEvent regardless of whether FLAG_log is true.
|
||||||
static void UncheckedStringEvent(const char* name, const char* value);
|
static void UncheckedStringEvent(const char* name, const char* value);
|
||||||
|
|
||||||
|
// Returns whether profiler's sampler is active.
|
||||||
|
static bool IsProfilerSamplerActive();
|
||||||
|
|
||||||
// The sampler used by the profiler and the sliding state window.
|
// The sampler used by the profiler and the sliding state window.
|
||||||
static Ticker* ticker_;
|
static Ticker* ticker_;
|
||||||
|
|
||||||
@ -255,6 +258,8 @@ class Logger {
|
|||||||
friend class Profiler;
|
friend class Profiler;
|
||||||
friend class SlidingStateWindow;
|
friend class SlidingStateWindow;
|
||||||
friend class VMState;
|
friend class VMState;
|
||||||
|
|
||||||
|
friend class LoggerTestHelper;
|
||||||
#else
|
#else
|
||||||
static bool is_enabled() { return false; }
|
static bool is_enabled() { return false; }
|
||||||
#endif
|
#endif
|
||||||
|
@ -518,10 +518,11 @@ class Sampler {
|
|||||||
// Is the sampler used for profiling.
|
// Is the sampler used for profiling.
|
||||||
inline bool IsProfiling() { return profiling_; }
|
inline bool IsProfiling() { return profiling_; }
|
||||||
|
|
||||||
class PlatformData;
|
// Whether the sampler is running (that is, consumes resources).
|
||||||
protected:
|
|
||||||
inline bool IsActive() { return active_; }
|
inline bool IsActive() { return active_; }
|
||||||
|
|
||||||
|
class PlatformData;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int interval_;
|
int interval_;
|
||||||
bool profiling_;
|
bool profiling_;
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "cctest.h"
|
#include "cctest.h"
|
||||||
|
|
||||||
using v8::internal::Address;
|
using v8::internal::Address;
|
||||||
|
using v8::internal::EmbeddedVector;
|
||||||
using v8::internal::Logger;
|
using v8::internal::Logger;
|
||||||
|
|
||||||
namespace i = v8::internal;
|
namespace i = v8::internal;
|
||||||
@ -84,6 +85,11 @@ TEST(GetMessages) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static int GetLogLines(int start_pos, i::Vector<char>* buffer) {
|
||||||
|
return Logger::GetLogLines(start_pos, buffer->start(), buffer->length());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
TEST(BeyondWritePosition) {
|
TEST(BeyondWritePosition) {
|
||||||
SetUp();
|
SetUp();
|
||||||
Logger::StringEvent("aaa", "bbb");
|
Logger::StringEvent("aaa", "bbb");
|
||||||
@ -91,14 +97,16 @@ TEST(BeyondWritePosition) {
|
|||||||
// See Logger::StringEvent.
|
// See Logger::StringEvent.
|
||||||
const char* all_lines = "aaa,\"bbb\"\ncccc,\"dddd\"\n";
|
const char* all_lines = "aaa,\"bbb\"\ncccc,\"dddd\"\n";
|
||||||
const int all_lines_len = strlen(all_lines);
|
const int all_lines_len = strlen(all_lines);
|
||||||
CHECK_EQ(0, Logger::GetLogLines(all_lines_len, NULL, 1));
|
EmbeddedVector<char, 100> buffer;
|
||||||
CHECK_EQ(0, Logger::GetLogLines(all_lines_len, NULL, 100));
|
const int beyond_write_pos = all_lines_len;
|
||||||
CHECK_EQ(0, Logger::GetLogLines(all_lines_len + 1, NULL, 1));
|
CHECK_EQ(0, Logger::GetLogLines(beyond_write_pos, buffer.start(), 1));
|
||||||
CHECK_EQ(0, Logger::GetLogLines(all_lines_len + 1, NULL, 100));
|
CHECK_EQ(0, GetLogLines(beyond_write_pos, &buffer));
|
||||||
CHECK_EQ(0, Logger::GetLogLines(all_lines_len + 100, NULL, 1));
|
CHECK_EQ(0, Logger::GetLogLines(beyond_write_pos + 1, buffer.start(), 1));
|
||||||
CHECK_EQ(0, Logger::GetLogLines(all_lines_len + 100, NULL, 100));
|
CHECK_EQ(0, GetLogLines(beyond_write_pos + 1, &buffer));
|
||||||
CHECK_EQ(0, Logger::GetLogLines(10 * 1024 * 1024, NULL, 1));
|
CHECK_EQ(0, Logger::GetLogLines(beyond_write_pos + 100, buffer.start(), 1));
|
||||||
CHECK_EQ(0, Logger::GetLogLines(10 * 1024 * 1024, NULL, 100));
|
CHECK_EQ(0, GetLogLines(beyond_write_pos + 100, &buffer));
|
||||||
|
CHECK_EQ(0, Logger::GetLogLines(10 * 1024 * 1024, buffer.start(), 1));
|
||||||
|
CHECK_EQ(0, GetLogLines(10 * 1024 * 1024, &buffer));
|
||||||
TearDown();
|
TearDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -116,6 +124,121 @@ TEST(MemoryLoggingTurnedOff) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void CompileAndRunScript(const char *src) {
|
||||||
|
v8::Script::Compile(v8::String::New(src))->Run();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
namespace v8 {
|
||||||
|
namespace internal {
|
||||||
|
|
||||||
|
class LoggerTestHelper : public AllStatic {
|
||||||
|
public:
|
||||||
|
static bool IsSamplerActive() { return Logger::IsProfilerSamplerActive(); }
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace v8::internal
|
||||||
|
} // namespace v8
|
||||||
|
|
||||||
|
using v8::internal::LoggerTestHelper;
|
||||||
|
|
||||||
|
|
||||||
|
static int CheckThatProfilerWorks(int log_pos) {
|
||||||
|
Logger::ResumeProfiler();
|
||||||
|
CHECK(LoggerTestHelper::IsSamplerActive());
|
||||||
|
|
||||||
|
// Verify that the current map of compiled functions has been logged.
|
||||||
|
EmbeddedVector<char, 102400> buffer;
|
||||||
|
int map_log_size = GetLogLines(log_pos, &buffer);
|
||||||
|
printf("map_log_size: %d\n", map_log_size);
|
||||||
|
CHECK_GT(map_log_size, 0);
|
||||||
|
CHECK_GT(buffer.length(), map_log_size);
|
||||||
|
log_pos += map_log_size;
|
||||||
|
// Check buffer contents.
|
||||||
|
buffer[map_log_size] = '\0';
|
||||||
|
const char* code_creation = "\ncode-creation,"; // eq. to /^code-creation,/
|
||||||
|
CHECK_NE(NULL, strstr(buffer.start(), code_creation));
|
||||||
|
|
||||||
|
// Force compiler to generate new code by parametrizing source.
|
||||||
|
EmbeddedVector<char, 100> script_src;
|
||||||
|
i::OS::SNPrintF(script_src,
|
||||||
|
"for (var i = 0; i < 1000; ++i) { "
|
||||||
|
"(function(x) { return %d * x; })(i); }",
|
||||||
|
log_pos);
|
||||||
|
// Run code for 100 msecs to get some ticks.
|
||||||
|
const int64_t started_us = i::OS::Ticks();
|
||||||
|
while (i::OS::Ticks() - started_us < 100 * 1000) {
|
||||||
|
CompileAndRunScript(script_src.start());
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger::PauseProfiler();
|
||||||
|
CHECK(!LoggerTestHelper::IsSamplerActive());
|
||||||
|
|
||||||
|
// Now we must have compiler and tick records.
|
||||||
|
int log_size = GetLogLines(log_pos, &buffer);
|
||||||
|
printf("log_size: %d\n", log_size);
|
||||||
|
CHECK_GT(log_size, 0);
|
||||||
|
CHECK_GT(buffer.length(), log_size);
|
||||||
|
log_pos += log_size;
|
||||||
|
// Check buffer contents.
|
||||||
|
buffer[log_size] = '\0';
|
||||||
|
const char* tick = "\ntick,";
|
||||||
|
CHECK_NE(NULL, strstr(buffer.start(), code_creation));
|
||||||
|
CHECK_NE(NULL, strstr(buffer.start(), tick));
|
||||||
|
|
||||||
|
return log_pos;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TEST(ProfLazyMode) {
|
||||||
|
const bool saved_prof_lazy = i::FLAG_prof_lazy;
|
||||||
|
const bool saved_prof = i::FLAG_prof;
|
||||||
|
const bool saved_prof_auto = i::FLAG_prof_auto;
|
||||||
|
i::FLAG_prof = true;
|
||||||
|
i::FLAG_prof_lazy = true;
|
||||||
|
i::FLAG_prof_auto = false;
|
||||||
|
i::FLAG_logfile = "*";
|
||||||
|
|
||||||
|
// If tests are being run manually, V8 will be already initialized
|
||||||
|
// by the test below.
|
||||||
|
const bool need_to_set_up_logger = i::V8::HasBeenSetup();
|
||||||
|
v8::HandleScope scope;
|
||||||
|
v8::Handle<v8::Context> env = v8::Context::New();
|
||||||
|
if (need_to_set_up_logger) Logger::Setup();
|
||||||
|
env->Enter();
|
||||||
|
|
||||||
|
// No sampling should happen prior to resuming profiler.
|
||||||
|
CHECK(!LoggerTestHelper::IsSamplerActive());
|
||||||
|
|
||||||
|
// Read initial logged data (static libs map).
|
||||||
|
EmbeddedVector<char, 102400> buffer;
|
||||||
|
int log_pos = GetLogLines(0, &buffer);
|
||||||
|
CHECK_GT(log_pos, 0);
|
||||||
|
CHECK_GT(buffer.length(), log_pos);
|
||||||
|
|
||||||
|
CompileAndRunScript("var a = (function(x) { return x + 1; })(10);");
|
||||||
|
|
||||||
|
// Nothing must be logged while profiling is suspended.
|
||||||
|
CHECK_EQ(0, GetLogLines(log_pos, &buffer));
|
||||||
|
|
||||||
|
log_pos = CheckThatProfilerWorks(log_pos);
|
||||||
|
|
||||||
|
CompileAndRunScript("var a = (function(x) { return x + 1; })(10);");
|
||||||
|
|
||||||
|
// No new data beyond last retrieved position.
|
||||||
|
CHECK_EQ(0, GetLogLines(log_pos, &buffer));
|
||||||
|
|
||||||
|
// Check that profiling can be resumed again.
|
||||||
|
CheckThatProfilerWorks(log_pos);
|
||||||
|
|
||||||
|
env->Exit();
|
||||||
|
Logger::TearDown();
|
||||||
|
i::FLAG_prof_lazy = saved_prof_lazy;
|
||||||
|
i::FLAG_prof = saved_prof;
|
||||||
|
i::FLAG_prof_auto = saved_prof_auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static inline bool IsStringEqualTo(const char* r, const char* s) {
|
static inline bool IsStringEqualTo(const char* r, const char* s) {
|
||||||
return strncmp(r, s, strlen(r)) == 0;
|
return strncmp(r, s, strlen(r)) == 0;
|
||||||
}
|
}
|
||||||
@ -487,6 +610,15 @@ static bool AreEntitiesEqual(CodeEntityInfo ref_e, CodeEntityInfo new_e) {
|
|||||||
// Test that logging of code create / move / delete events
|
// Test that logging of code create / move / delete events
|
||||||
// is equivalent to traversal of a resulting heap.
|
// is equivalent to traversal of a resulting heap.
|
||||||
TEST(EquivalenceOfLoggingAndTraversal) {
|
TEST(EquivalenceOfLoggingAndTraversal) {
|
||||||
|
// This test needs to be run on a "clean" V8 to ensure that snapshot log
|
||||||
|
// is loaded. This is always true when running using tools/test.py because
|
||||||
|
// it launches a new cctest instance for every test. To be sure that launching
|
||||||
|
// cctest manually also works, please be sure that no tests below
|
||||||
|
// are using V8.
|
||||||
|
//
|
||||||
|
// P.S. No, V8 can't be re-initialized after disposal, see include/v8.h.
|
||||||
|
CHECK(!i::V8::HasBeenSetup());
|
||||||
|
|
||||||
i::FLAG_logfile = "*";
|
i::FLAG_logfile = "*";
|
||||||
i::FLAG_log = true;
|
i::FLAG_log = true;
|
||||||
i::FLAG_log_code = true;
|
i::FLAG_log_code = true;
|
||||||
@ -499,20 +631,19 @@ TEST(EquivalenceOfLoggingAndTraversal) {
|
|||||||
|
|
||||||
v8::HandleScope scope;
|
v8::HandleScope scope;
|
||||||
v8::Handle<v8::Value> global_object = v8::Handle<v8::Value>();
|
v8::Handle<v8::Value> global_object = v8::Handle<v8::Value>();
|
||||||
v8::Persistent<v8::Context> env = v8::Context::New(
|
v8::Handle<v8::Context> env = v8::Context::New(
|
||||||
0, v8::Handle<v8::ObjectTemplate>(), global_object);
|
0, v8::Handle<v8::ObjectTemplate>(), global_object);
|
||||||
env->Enter();
|
env->Enter();
|
||||||
|
|
||||||
// Compile and run a function that creates other functions.
|
// Compile and run a function that creates other functions.
|
||||||
v8::Local<v8::Script> script = v8::Script::Compile(v8::String::New(
|
CompileAndRunScript(
|
||||||
"(function f(obj) {\n"
|
"(function f(obj) {\n"
|
||||||
" obj.test =\n"
|
" obj.test =\n"
|
||||||
" (function a(j) { return function b() { return j; } })(100);\n"
|
" (function a(j) { return function b() { return j; } })(100);\n"
|
||||||
"})(this);"));
|
"})(this);");
|
||||||
script->Run();
|
|
||||||
i::Heap::CollectAllGarbage();
|
i::Heap::CollectAllGarbage();
|
||||||
|
|
||||||
i::EmbeddedVector<char, 204800> buffer;
|
EmbeddedVector<char, 204800> buffer;
|
||||||
int log_size;
|
int log_size;
|
||||||
ParseLogResult ref_result;
|
ParseLogResult ref_result;
|
||||||
|
|
||||||
@ -521,7 +652,7 @@ TEST(EquivalenceOfLoggingAndTraversal) {
|
|||||||
// Make sure that no GCs occur prior to LogCompiledFunctions call.
|
// Make sure that no GCs occur prior to LogCompiledFunctions call.
|
||||||
i::AssertNoAllocation no_alloc;
|
i::AssertNoAllocation no_alloc;
|
||||||
|
|
||||||
log_size = Logger::GetLogLines(0, buffer.start(), buffer.length());
|
log_size = GetLogLines(0, &buffer);
|
||||||
CHECK_GT(log_size, 0);
|
CHECK_GT(log_size, 0);
|
||||||
CHECK_GT(buffer.length(), log_size);
|
CHECK_GT(buffer.length(), log_size);
|
||||||
|
|
||||||
@ -566,7 +697,7 @@ TEST(EquivalenceOfLoggingAndTraversal) {
|
|||||||
CHECK(results_equal);
|
CHECK(results_equal);
|
||||||
|
|
||||||
env->Exit();
|
env->Exit();
|
||||||
v8::V8::Dispose();
|
Logger::TearDown();
|
||||||
i::FLAG_always_compact = saved_always_compact;
|
i::FLAG_always_compact = saved_always_compact;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user