CPU profiler should support names of accessors set via v8::Object::SetAccessor
This change fixes the case when the accessors are invoked from JSObject::{Get,Set}PropertyWithCallback. It already works for inlined calls generated by StoreStubCompiler::CompileStoreCallback. The same still needs to be fixed for getter invocations generated by BaseLoadStubCompiler::CompileLoadCallback, corresponding case is commented out in the new test. This is a slightly modified version of r14915 which was rolled back due to test timeout on Windows. Compared to r14915 the new tests use OS::TimeCurrentMillis instead of OS::Ticks as OS::Ticks has ms precision on Windows and trying to wait 10 ticks (us) will result in at least 1 ms pause. BUG=244580 R=jkummerow@chromium.org, loislo@chromium.org Review URL: https://codereview.chromium.org/15995017 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14932 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
f8db2414f2
commit
106a477443
@ -379,6 +379,8 @@ MaybeObject* JSObject::GetPropertyWithCallback(Object* receiver,
|
||||
{
|
||||
// Leaving JavaScript.
|
||||
VMState<EXTERNAL> state(isolate);
|
||||
ExternalCallbackScope call_scope(isolate,
|
||||
v8::ToCData<Address>(fun_obj));
|
||||
result = args.Call(call_fun, v8::Utils::ToLocal(key));
|
||||
}
|
||||
RETURN_IF_SCHEDULED_EXCEPTION(isolate);
|
||||
@ -2824,6 +2826,8 @@ MaybeObject* JSObject::SetPropertyWithCallback(Object* structure,
|
||||
{
|
||||
// Leaving JavaScript.
|
||||
VMState<EXTERNAL> state(isolate);
|
||||
ExternalCallbackScope call_scope(isolate,
|
||||
v8::ToCData<Address>(call_obj));
|
||||
args.Call(call_fun,
|
||||
v8::Utils::ToLocal(key),
|
||||
v8::Utils::ToLocal(value_handle));
|
||||
|
@ -638,3 +638,146 @@ TEST(SampleWhenFrameIsNotSetup) {
|
||||
|
||||
cpu_profiler->DeleteAllCpuProfiles();
|
||||
}
|
||||
|
||||
|
||||
static const char* native_accessor_test_source = "function start(count) {\n"
|
||||
" for (var i = 0; i < count; i++) {\n"
|
||||
" var o = instance.foo;\n"
|
||||
" instance.foo = o + 1;\n"
|
||||
" }\n"
|
||||
"}\n";
|
||||
|
||||
|
||||
class FooAccessorsData {
|
||||
public:
|
||||
explicit FooAccessorsData(int min_duration_ms)
|
||||
: min_duration_ms_(min_duration_ms) {}
|
||||
|
||||
static v8::Handle<v8::Value> Getter(v8::Local<v8::String> name,
|
||||
const v8::AccessorInfo& info) {
|
||||
FooAccessorsData* data = fromInfo(info);
|
||||
data->Wait();
|
||||
return v8::Int32::New(2013);
|
||||
}
|
||||
|
||||
static void Setter(v8::Local<v8::String> name,
|
||||
v8::Local<v8::Value> value,
|
||||
const v8::AccessorInfo& info) {
|
||||
FooAccessorsData* data = fromInfo(info);
|
||||
data->Wait();
|
||||
}
|
||||
|
||||
private:
|
||||
void Wait() {
|
||||
double start = i::OS::TimeCurrentMillis();
|
||||
for (double duration = 0; duration < min_duration_ms_; ) {
|
||||
duration = i::OS::TimeCurrentMillis() - start;
|
||||
}
|
||||
}
|
||||
|
||||
static FooAccessorsData* fromInfo(const v8::AccessorInfo& info) {
|
||||
void* data = v8::External::Cast(*info.Data())->Value();
|
||||
return reinterpret_cast<FooAccessorsData*>(data);
|
||||
}
|
||||
|
||||
int min_duration_ms_;
|
||||
};
|
||||
|
||||
|
||||
// Test that native accessors are properly reported in the CPU profile.
|
||||
// This test checks the case when the long-running accessors are called
|
||||
// only once and the optimizer doesn't have chance to change the invocation
|
||||
// code.
|
||||
TEST(NativeAccessorNameInProfile1) {
|
||||
LocalContext env;
|
||||
v8::HandleScope scope(env->GetIsolate());
|
||||
|
||||
|
||||
v8::Local<v8::FunctionTemplate> func_template = v8::FunctionTemplate::New();
|
||||
v8::Local<v8::ObjectTemplate> instance_template =
|
||||
func_template->InstanceTemplate();
|
||||
|
||||
FooAccessorsData accessors(100);
|
||||
v8::Local<v8::External> data = v8::External::New(&accessors);
|
||||
instance_template->SetAccessor(
|
||||
v8::String::New("foo"), &FooAccessorsData::Getter,
|
||||
&FooAccessorsData::Setter, data);
|
||||
v8::Local<v8::Function> func = func_template->GetFunction();
|
||||
v8::Local<v8::Object> instance = func->NewInstance();
|
||||
env->Global()->Set(v8::String::New("instance"), instance);
|
||||
|
||||
v8::Script::Compile(v8::String::New(native_accessor_test_source))->Run();
|
||||
v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(
|
||||
env->Global()->Get(v8::String::New("start")));
|
||||
|
||||
v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
|
||||
v8::Local<v8::String> profile_name = v8::String::New("my_profile");
|
||||
|
||||
cpu_profiler->StartCpuProfiling(profile_name);
|
||||
int32_t repeat_count = 1;
|
||||
v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
|
||||
function->Call(env->Global(), ARRAY_SIZE(args), args);
|
||||
const v8::CpuProfile* profile = cpu_profiler->StopCpuProfiling(profile_name);
|
||||
|
||||
CHECK_NE(NULL, profile);
|
||||
// Dump collected profile to have a better diagnostic in case of failure.
|
||||
reinterpret_cast<i::CpuProfile*>(
|
||||
const_cast<v8::CpuProfile*>(profile))->Print();
|
||||
|
||||
const v8::CpuProfileNode* root = profile->GetTopDownRoot();
|
||||
const v8::CpuProfileNode* startNode = GetChild(root, "start");
|
||||
GetChild(startNode, "get foo");
|
||||
GetChild(startNode, "set foo");
|
||||
|
||||
cpu_profiler->DeleteAllCpuProfiles();
|
||||
}
|
||||
|
||||
|
||||
// Test that native accessors are properly reported in the CPU profile.
|
||||
// This test makes sure that the accessors are called enough times to become
|
||||
// hot and to trigger optimizations.
|
||||
TEST(NativeAccessorNameInProfile2) {
|
||||
LocalContext env;
|
||||
v8::HandleScope scope(env->GetIsolate());
|
||||
|
||||
|
||||
v8::Local<v8::FunctionTemplate> func_template = v8::FunctionTemplate::New();
|
||||
v8::Local<v8::ObjectTemplate> instance_template =
|
||||
func_template->InstanceTemplate();
|
||||
|
||||
FooAccessorsData accessors(1);
|
||||
v8::Local<v8::External> data = v8::External::New(&accessors);
|
||||
instance_template->SetAccessor(
|
||||
v8::String::New("foo"), &FooAccessorsData::Getter,
|
||||
&FooAccessorsData::Setter, data);
|
||||
v8::Local<v8::Function> func = func_template->GetFunction();
|
||||
v8::Local<v8::Object> instance = func->NewInstance();
|
||||
env->Global()->Set(v8::String::New("instance"), instance);
|
||||
|
||||
v8::Script::Compile(v8::String::New(native_accessor_test_source))->Run();
|
||||
v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(
|
||||
env->Global()->Get(v8::String::New("start")));
|
||||
|
||||
v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler();
|
||||
v8::Local<v8::String> profile_name = v8::String::New("my_profile");
|
||||
|
||||
cpu_profiler->StartCpuProfiling(profile_name);
|
||||
int32_t repeat_count = 100;
|
||||
v8::Handle<v8::Value> args[] = { v8::Integer::New(repeat_count) };
|
||||
function->Call(env->Global(), ARRAY_SIZE(args), args);
|
||||
const v8::CpuProfile* profile = cpu_profiler->StopCpuProfiling(profile_name);
|
||||
|
||||
CHECK_NE(NULL, profile);
|
||||
// Dump collected profile to have a better diagnostic in case of failure.
|
||||
reinterpret_cast<i::CpuProfile*>(
|
||||
const_cast<v8::CpuProfile*>(profile))->Print();
|
||||
|
||||
const v8::CpuProfileNode* root = profile->GetTopDownRoot();
|
||||
const v8::CpuProfileNode* startNode = GetChild(root, "start");
|
||||
// TODO(yurys): in LoadIC should be changed to report external callback
|
||||
// invocation. See r13768 where it was LoadCallbackProperty was removed.
|
||||
// GetChild(startNode, "get foo");
|
||||
GetChild(startNode, "set foo");
|
||||
|
||||
cpu_profiler->DeleteAllCpuProfiles();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user