Commit 27925000 authored by Yang Guo's avatar Yang Guo Committed by V8 LUCI CQ

Add test for builtin stack frames in profile sample

R=szuend@chromium.org

Change-Id: I813d8c7083b5f3e061255a540a68340239c9c078
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3300128
Commit-Queue: Yang Guo <yangguo@chromium.org>
Commit-Queue: Simon Zünd <szuend@chromium.org>
Auto-Submit: Yang Guo <yangguo@chromium.org>
Reviewed-by: 's avatarSimon Zünd <szuend@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78055}
parent a56a7097
......@@ -52,7 +52,7 @@ class SamplingTestHelper {
global->Set(isolate_, "CollectSample",
v8::FunctionTemplate::New(isolate_, CollectSample));
LocalContext env(isolate_, nullptr, global);
isolate_->SetJitCodeEventHandler(v8::kJitCodeEventDefault,
isolate_->SetJitCodeEventHandler(v8::kJitCodeEventEnumExisting,
JitCodeEventHandler);
CompileRun(v8_str(test_function.c_str()));
}
......@@ -166,6 +166,34 @@ TEST(StackDepthDoesNotExceedMaxValue) {
CHECK_EQ(Sample::kFramesLimit, helper.sample().size());
}
static const char* test_function_call_builtin =
"function func(depth) {"
" if (depth == 2) CollectSample();"
" else return [0].forEach(function recurse() { func(depth - 1) });"
"}";
TEST(BuiltinsInSamples) {
SamplingTestHelper helper(std::string(test_function_call_builtin) +
"func(10);");
Sample& sample = helper.sample();
CHECK_EQ(26, sample.size());
for (int i = 0; i < 20; i++) {
const SamplingTestHelper::CodeEventEntry* entry;
entry = helper.FindEventEntry(sample.begin()[i]);
switch (i % 3) {
case 0:
CHECK(std::string::npos != entry->name.find("func"));
break;
case 1:
CHECK(std::string::npos != entry->name.find("recurse"));
break;
case 2:
CHECK(std::string::npos != entry->name.find("ArrayForEach"));
break;
}
}
}
// The captured sample should have three pc values.
// They should fall in the range where the compiled code resides.
// The expected stack is:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment