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

Unified Diff: base/profiler/stack_sampling_profiler_unittest.cc

Issue 2444143002: Add process lifetime annotations to stack samples. (Closed)
Patch Set: fixed non-windows constant Created 4 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
Index: base/profiler/stack_sampling_profiler_unittest.cc
diff --git a/base/profiler/stack_sampling_profiler_unittest.cc b/base/profiler/stack_sampling_profiler_unittest.cc
index 4fc70b8e050c90ab9004f859ef9fba9206ba5460..ea58ba79bb245b3a6a2799432281b8dafb1f6f7f 100644
--- a/base/profiler/stack_sampling_profiler_unittest.cc
+++ b/base/profiler/stack_sampling_profiler_unittest.cc
@@ -49,6 +49,7 @@ namespace base {
using SamplingParams = StackSamplingProfiler::SamplingParams;
using Frame = StackSamplingProfiler::Frame;
+using Frames = std::vector<StackSamplingProfiler::Frame>;
using Module = StackSamplingProfiler::Module;
using Sample = StackSamplingProfiler::Sample;
using CallStackProfile = StackSamplingProfiler::CallStackProfile;
@@ -396,7 +397,7 @@ const void* MaybeFixupFunctionAddressForILT(const void* function_address) {
// Searches through the frames in |sample|, returning an iterator to the first
// frame that has an instruction pointer within |target_function|. Returns
// sample.end() if no such frames are found.
-Sample::const_iterator FindFirstFrameWithinFunction(
+Frames::const_iterator FindFirstFrameWithinFunction(
const Sample& sample,
TargetFunction target_function) {
uintptr_t function_start = reinterpret_cast<uintptr_t>(
@@ -404,12 +405,12 @@ Sample::const_iterator FindFirstFrameWithinFunction(
target_function)));
uintptr_t function_end =
reinterpret_cast<uintptr_t>(target_function(nullptr, nullptr, nullptr));
- for (auto it = sample.begin(); it != sample.end(); ++it) {
+ for (auto it = sample.frames.begin(); it != sample.frames.end(); ++it) {
if ((it->instruction_pointer >= function_start) &&
(it->instruction_pointer <= function_end))
return it;
}
- return sample.end();
+ return sample.frames.end();
}
// Formats a sample into a string that can be output for test diagnostics.
@@ -417,7 +418,7 @@ std::string FormatSampleForDiagnosticOutput(
const Sample& sample,
const std::vector<Module>& modules) {
std::string output;
- for (const Frame& frame : sample) {
+ for (const Frame& frame : sample.frames) {
output += StringPrintf(
"0x%p %s\n", reinterpret_cast<const void*>(frame.instruction_pointer),
modules[frame.module_index].filename.AsUTF8Unsafe().c_str());
@@ -518,10 +519,10 @@ void TestLibraryUnload(bool wait_until_unloaded) {
// Check that the stack contains a frame for
// TargetThread::SignalAndWaitUntilSignaled().
- Sample::const_iterator end_frame = FindFirstFrameWithinFunction(
+ Frames::const_iterator end_frame = FindFirstFrameWithinFunction(
sample,
&TargetThread::SignalAndWaitUntilSignaled);
- ASSERT_TRUE(end_frame != sample.end())
+ ASSERT_TRUE(end_frame != sample.frames.end())
<< "Function at "
<< MaybeFixupFunctionAddressForILT(reinterpret_cast<const void*>(
&TargetThread::SignalAndWaitUntilSignaled))
@@ -536,7 +537,7 @@ void TestLibraryUnload(bool wait_until_unloaded) {
// ... WaitableEvent and system frames ...
// TargetThread::SignalAndWaitUntilSignaled
// TargetThread::OtherLibraryCallback
- EXPECT_EQ(2, sample.end() - end_frame)
+ EXPECT_EQ(2, sample.frames.end() - end_frame)
<< "Stack:\n"
<< FormatSampleForDiagnosticOutput(sample, profile.modules);
} else {
@@ -545,17 +546,17 @@ void TestLibraryUnload(bool wait_until_unloaded) {
// the same stack as |wait_until_unloaded|, if not we should have the full
// stack. The important thing is that we should not crash.
- if ((sample.end() - 1) - end_frame == 2) {
+ if ((sample.frames.end() - 1) - end_frame == 2) {
// This is the same case as |wait_until_unloaded|.
return;
}
// Check that the stack contains a frame for
// TargetThread::CallThroughOtherLibrary().
- Sample::const_iterator other_library_frame = FindFirstFrameWithinFunction(
+ Frames::const_iterator other_library_frame = FindFirstFrameWithinFunction(
sample,
&TargetThread::CallThroughOtherLibrary);
- ASSERT_TRUE(other_library_frame != sample.end())
+ ASSERT_TRUE(other_library_frame != sample.frames.end())
<< "Function at "
<< MaybeFixupFunctionAddressForILT(reinterpret_cast<const void*>(
&TargetThread::CallThroughOtherLibrary))
@@ -586,6 +587,8 @@ void TestLibraryUnload(bool wait_until_unloaded) {
#define MAYBE_Basic DISABLED_Basic
#endif
TEST(StackSamplingProfilerTest, MAYBE_Basic) {
+ StackSamplingProfiler::ResetPhaseAndActivityForTesting();
+
SamplingParams params;
params.sampling_interval = TimeDelta::FromMilliseconds(0);
params.samples_per_burst = 1;
@@ -600,7 +603,9 @@ TEST(StackSamplingProfilerTest, MAYBE_Basic) {
ASSERT_EQ(1u, profile.samples.size());
EXPECT_EQ(params.sampling_interval, profile.sampling_period);
const Sample& sample = profile.samples[0];
- for (const auto& frame : sample) {
+ EXPECT_EQ(0u, sample.process_phases);
+ EXPECT_EQ(0u, sample.current_activities);
+ for (const auto& frame : sample.frames) {
ASSERT_GE(frame.module_index, 0u);
ASSERT_LT(frame.module_index, profile.modules.size());
}
@@ -608,10 +613,10 @@ TEST(StackSamplingProfilerTest, MAYBE_Basic) {
// Check that the stack contains a frame for
// TargetThread::SignalAndWaitUntilSignaled() and that the frame has this
// executable's module.
- Sample::const_iterator loc = FindFirstFrameWithinFunction(
+ Frames::const_iterator loc = FindFirstFrameWithinFunction(
sample,
&TargetThread::SignalAndWaitUntilSignaled);
- ASSERT_TRUE(loc != sample.end())
+ ASSERT_TRUE(loc != sample.frames.end())
<< "Function at "
<< MaybeFixupFunctionAddressForILT(reinterpret_cast<const void*>(
&TargetThread::SignalAndWaitUntilSignaled))
@@ -622,6 +627,47 @@ TEST(StackSamplingProfilerTest, MAYBE_Basic) {
EXPECT_EQ(executable_path, profile.modules[loc->module_index].filename);
}
+// Checks that annotations are recorded in samples.
+#if defined(STACK_SAMPLING_PROFILER_SUPPORTED)
+#define MAYBE_Annotations Annotations
+#else
+#define MAYBE_Annotations DISABLED_Annotations
Alexei Svitkine (slow) 2016/11/07 23:22:07 How about just having the full TEST() {} block ins
bcwhite 2016/11/08 01:02:36 I've wondered about that but this seems to be the
Mike Wittman 2016/11/16 22:36:09 This structure keeps the tests compiling on non-Wi
+#endif
+TEST(StackSamplingProfilerTest, MAYBE_Annotations) {
+ StackSamplingProfiler::ResetPhaseAndActivityForTesting();
+
+ SamplingParams params;
+ params.sampling_interval = TimeDelta::FromMilliseconds(0);
+ params.samples_per_burst = 1;
+
+ // Check that a run picks up annotations.
+ StackSamplingProfiler::SetProcessPhase(1);
+ StackSamplingProfiler::RecordActivityBegin(11);
+ std::vector<CallStackProfile> profiles1;
+ CaptureProfiles(params, AVeryLongTimeDelta(), &profiles1);
+ ASSERT_EQ(1u, profiles1.size());
+ const CallStackProfile& profile1 = profiles1[0];
+ ASSERT_EQ(1u, profile1.samples.size());
+ EXPECT_EQ(params.sampling_interval, profile1.sampling_period);
+ const Sample& sample1 = profile1.samples[0];
+ EXPECT_EQ(1u << 1, sample1.process_phases);
+ EXPECT_EQ(1u << 11, sample1.current_activities);
+
+ // Run it a second time but with changed annotations. These annotations
+ // should appear in the first acquired sample.
+ StackSamplingProfiler::SetProcessPhase(2);
+ StackSamplingProfiler::RecordActivityBegin(12);
+ StackSamplingProfiler::RecordActivityEnd(11);
+ std::vector<CallStackProfile> profiles2;
+ CaptureProfiles(params, AVeryLongTimeDelta(), &profiles2);
+ ASSERT_EQ(1u, profiles2.size());
+ const CallStackProfile& profile2 = profiles2[0];
+ ASSERT_EQ(1u, profile2.samples.size());
+ const Sample& sample2 = profile2.samples[0];
+ EXPECT_EQ(sample1.process_phases | (1u << 2), sample2.process_phases);
+ EXPECT_EQ(1u << 12, sample2.current_activities);
+}
+
// Checks that the profiler handles stacks containing dynamically-allocated
// stack memory.
#if defined(STACK_SAMPLING_PROFILER_SUPPORTED)
@@ -657,10 +703,10 @@ TEST(StackSamplingProfilerTest, MAYBE_Alloca) {
// Check that the stack contains a frame for
// TargetThread::SignalAndWaitUntilSignaled().
- Sample::const_iterator end_frame = FindFirstFrameWithinFunction(
+ Frames::const_iterator end_frame = FindFirstFrameWithinFunction(
sample,
&TargetThread::SignalAndWaitUntilSignaled);
- ASSERT_TRUE(end_frame != sample.end())
+ ASSERT_TRUE(end_frame != sample.frames.end())
<< "Function at "
<< MaybeFixupFunctionAddressForILT(reinterpret_cast<const void*>(
&TargetThread::SignalAndWaitUntilSignaled))
@@ -668,10 +714,10 @@ TEST(StackSamplingProfilerTest, MAYBE_Alloca) {
<< FormatSampleForDiagnosticOutput(sample, profile.modules);
// Check that the stack contains a frame for TargetThread::CallWithAlloca().
- Sample::const_iterator alloca_frame = FindFirstFrameWithinFunction(
+ Frames::const_iterator alloca_frame = FindFirstFrameWithinFunction(
sample,
&TargetThread::CallWithAlloca);
- ASSERT_TRUE(alloca_frame != sample.end())
+ ASSERT_TRUE(alloca_frame != sample.frames.end())
<< "Function at "
<< MaybeFixupFunctionAddressForILT(reinterpret_cast<const void*>(
&TargetThread::CallWithAlloca))
@@ -927,10 +973,10 @@ TEST(StackSamplingProfilerTest, MAYBE_OtherLibrary) {
// Check that the stack contains a frame for
// TargetThread::CallThroughOtherLibrary().
- Sample::const_iterator other_library_frame = FindFirstFrameWithinFunction(
+ Frames::const_iterator other_library_frame = FindFirstFrameWithinFunction(
sample,
&TargetThread::CallThroughOtherLibrary);
- ASSERT_TRUE(other_library_frame != sample.end())
+ ASSERT_TRUE(other_library_frame != sample.frames.end())
<< "Function at "
<< MaybeFixupFunctionAddressForILT(reinterpret_cast<const void*>(
&TargetThread::CallThroughOtherLibrary))
@@ -939,10 +985,10 @@ TEST(StackSamplingProfilerTest, MAYBE_OtherLibrary) {
// Check that the stack contains a frame for
// TargetThread::SignalAndWaitUntilSignaled().
- Sample::const_iterator end_frame = FindFirstFrameWithinFunction(
+ Frames::const_iterator end_frame = FindFirstFrameWithinFunction(
sample,
&TargetThread::SignalAndWaitUntilSignaled);
- ASSERT_TRUE(end_frame != sample.end())
+ ASSERT_TRUE(end_frame != sample.frames.end())
<< "Function at "
<< MaybeFixupFunctionAddressForILT(reinterpret_cast<const void*>(
&TargetThread::SignalAndWaitUntilSignaled))

Powered by Google App Engine
This is Rietveld 408576698