blob: 239d8ae695106745f108324d914e09c2d5917a40 [file] [log] [blame]
Steve Block6ded16b2010-05-10 14:33:55 +01001// Copyright 2010 the V8 project authors. All rights reserved.
2//
3// Tests of profiles generator and utilities.
4
5#ifdef ENABLE_LOGGING_AND_PROFILING
6
7#include "v8.h"
8#include "cpu-profiler-inl.h"
9#include "cctest.h"
10
11namespace i = v8::internal;
12
13using i::CodeEntry;
14using i::CpuProfile;
Iain Merrick75681382010-08-19 15:07:18 +010015using i::CpuProfiler;
Steve Block6ded16b2010-05-10 14:33:55 +010016using i::CpuProfilesCollection;
17using i::ProfileGenerator;
18using i::ProfileNode;
19using i::ProfilerEventsProcessor;
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010020using i::TokenEnumerator;
Steve Block6ded16b2010-05-10 14:33:55 +010021
22
23TEST(StartStop) {
24 CpuProfilesCollection profiles;
25 ProfileGenerator generator(&profiles);
26 ProfilerEventsProcessor processor(&generator);
27 processor.Start();
28 while (!processor.running()) {
29 i::Thread::YieldCPU();
30 }
31 processor.Stop();
32 processor.Join();
33}
34
35static v8::Persistent<v8::Context> env;
36
37static void InitializeVM() {
38 if (env.IsEmpty()) env = v8::Context::New();
39 v8::HandleScope scope;
40 env->Enter();
41}
42
43static inline i::Address ToAddress(int n) {
44 return reinterpret_cast<i::Address>(n);
45}
46
47static void EnqueueTickSampleEvent(ProfilerEventsProcessor* proc,
48 i::Address frame1,
49 i::Address frame2 = NULL,
50 i::Address frame3 = NULL) {
51 i::TickSample* sample = proc->TickSampleEvent();
52 sample->pc = frame1;
53 sample->function = frame1;
54 sample->frames_count = 0;
55 if (frame2 != NULL) {
56 sample->stack[0] = frame2;
57 sample->frames_count = 1;
58 }
59 if (frame3 != NULL) {
60 sample->stack[1] = frame3;
61 sample->frames_count = 2;
62 }
63}
64
65namespace {
66
67class TestSetup {
68 public:
69 TestSetup()
70 : old_flag_prof_browser_mode_(i::FLAG_prof_browser_mode) {
71 i::FLAG_prof_browser_mode = false;
72 }
73
74 ~TestSetup() {
75 i::FLAG_prof_browser_mode = old_flag_prof_browser_mode_;
76 }
77
78 private:
79 bool old_flag_prof_browser_mode_;
80};
81
82} // namespace
83
84TEST(CodeEvents) {
85 InitializeVM();
86 TestSetup test_setup;
87 CpuProfilesCollection profiles;
88 profiles.StartProfiling("", 1);
89 ProfileGenerator generator(&profiles);
90 ProfilerEventsProcessor processor(&generator);
91 processor.Start();
92 while (!processor.running()) {
93 i::Thread::YieldCPU();
94 }
95
96 // Enqueue code creation events.
97 i::HandleScope scope;
98 const char* aaa_str = "aaa";
99 i::Handle<i::String> aaa_name = i::Factory::NewStringFromAscii(
100 i::Vector<const char>(aaa_str, i::StrLength(aaa_str)));
101 processor.CodeCreateEvent(i::Logger::FUNCTION_TAG,
102 *aaa_name,
103 i::Heap::empty_string(),
104 0,
105 ToAddress(0x1000),
106 0x100);
107 processor.CodeCreateEvent(i::Logger::BUILTIN_TAG,
108 "bbb",
109 ToAddress(0x1200),
110 0x80);
111 processor.CodeCreateEvent(i::Logger::STUB_TAG, 5, ToAddress(0x1300), 0x10);
112 processor.CodeCreateEvent(i::Logger::BUILTIN_TAG,
113 "ddd",
114 ToAddress(0x1400),
115 0x80);
116 processor.CodeMoveEvent(ToAddress(0x1400), ToAddress(0x1500));
117 processor.CodeCreateEvent(i::Logger::STUB_TAG, 3, ToAddress(0x1600), 0x10);
118 processor.CodeDeleteEvent(ToAddress(0x1600));
Leon Clarkef7060e22010-06-03 12:02:55 +0100119 processor.FunctionCreateEvent(ToAddress(0x1700), ToAddress(0x1000),
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100120 TokenEnumerator::kNoSecurityToken);
Steve Block6ded16b2010-05-10 14:33:55 +0100121 // Enqueue a tick event to enable code events processing.
122 EnqueueTickSampleEvent(&processor, ToAddress(0x1000));
123
124 processor.Stop();
125 processor.Join();
126
127 // Check the state of profile generator.
128 CodeEntry* entry1 = generator.code_map()->FindEntry(ToAddress(0x1000));
129 CHECK_NE(NULL, entry1);
130 CHECK_EQ(aaa_str, entry1->name());
131 CodeEntry* entry2 = generator.code_map()->FindEntry(ToAddress(0x1200));
132 CHECK_NE(NULL, entry2);
133 CHECK_EQ("bbb", entry2->name());
134 CodeEntry* entry3 = generator.code_map()->FindEntry(ToAddress(0x1300));
135 CHECK_NE(NULL, entry3);
136 CHECK_EQ("5", entry3->name());
137 CHECK_EQ(NULL, generator.code_map()->FindEntry(ToAddress(0x1400)));
138 CodeEntry* entry4 = generator.code_map()->FindEntry(ToAddress(0x1500));
139 CHECK_NE(NULL, entry4);
140 CHECK_EQ("ddd", entry4->name());
141 CHECK_EQ(NULL, generator.code_map()->FindEntry(ToAddress(0x1600)));
142 CodeEntry* entry5 = generator.code_map()->FindEntry(ToAddress(0x1700));
143 CHECK_NE(NULL, entry5);
144 CHECK_EQ(aaa_str, entry5->name());
145}
146
147
148template<typename T>
149static int CompareProfileNodes(const T* p1, const T* p2) {
150 return strcmp((*p1)->entry()->name(), (*p2)->entry()->name());
151}
152
153TEST(TickEvents) {
154 TestSetup test_setup;
155 CpuProfilesCollection profiles;
156 profiles.StartProfiling("", 1);
157 ProfileGenerator generator(&profiles);
158 ProfilerEventsProcessor processor(&generator);
159 processor.Start();
160 while (!processor.running()) {
161 i::Thread::YieldCPU();
162 }
163
164 processor.CodeCreateEvent(i::Logger::BUILTIN_TAG,
165 "bbb",
166 ToAddress(0x1200),
167 0x80);
168 processor.CodeCreateEvent(i::Logger::STUB_TAG, 5, ToAddress(0x1300), 0x10);
169 processor.CodeCreateEvent(i::Logger::BUILTIN_TAG,
170 "ddd",
171 ToAddress(0x1400),
172 0x80);
173 EnqueueTickSampleEvent(&processor, ToAddress(0x1210));
174 EnqueueTickSampleEvent(&processor, ToAddress(0x1305), ToAddress(0x1220));
175 EnqueueTickSampleEvent(&processor,
176 ToAddress(0x1404),
177 ToAddress(0x1305),
178 ToAddress(0x1230));
179
180 processor.Stop();
181 processor.Join();
Leon Clarkef7060e22010-06-03 12:02:55 +0100182 CpuProfile* profile =
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100183 profiles.StopProfiling(TokenEnumerator::kNoSecurityToken, "", 1);
Steve Block6ded16b2010-05-10 14:33:55 +0100184 CHECK_NE(NULL, profile);
185
186 // Check call trees.
187 const i::List<ProfileNode*>* top_down_root_children =
188 profile->top_down()->root()->children();
189 CHECK_EQ(1, top_down_root_children->length());
190 CHECK_EQ("bbb", top_down_root_children->last()->entry()->name());
191 const i::List<ProfileNode*>* top_down_bbb_children =
192 top_down_root_children->last()->children();
193 CHECK_EQ(1, top_down_bbb_children->length());
194 CHECK_EQ("5", top_down_bbb_children->last()->entry()->name());
195 const i::List<ProfileNode*>* top_down_stub_children =
196 top_down_bbb_children->last()->children();
197 CHECK_EQ(1, top_down_stub_children->length());
198 CHECK_EQ("ddd", top_down_stub_children->last()->entry()->name());
199 const i::List<ProfileNode*>* top_down_ddd_children =
200 top_down_stub_children->last()->children();
201 CHECK_EQ(0, top_down_ddd_children->length());
202
203 const i::List<ProfileNode*>* bottom_up_root_children_unsorted =
204 profile->bottom_up()->root()->children();
205 CHECK_EQ(3, bottom_up_root_children_unsorted->length());
206 i::List<ProfileNode*> bottom_up_root_children(3);
207 bottom_up_root_children.AddAll(*bottom_up_root_children_unsorted);
208 bottom_up_root_children.Sort(&CompareProfileNodes);
209 CHECK_EQ("5", bottom_up_root_children[0]->entry()->name());
210 CHECK_EQ("bbb", bottom_up_root_children[1]->entry()->name());
211 CHECK_EQ("ddd", bottom_up_root_children[2]->entry()->name());
212 const i::List<ProfileNode*>* bottom_up_stub_children =
213 bottom_up_root_children[0]->children();
214 CHECK_EQ(1, bottom_up_stub_children->length());
215 CHECK_EQ("bbb", bottom_up_stub_children->last()->entry()->name());
216 const i::List<ProfileNode*>* bottom_up_bbb_children =
217 bottom_up_root_children[1]->children();
218 CHECK_EQ(0, bottom_up_bbb_children->length());
219 const i::List<ProfileNode*>* bottom_up_ddd_children =
220 bottom_up_root_children[2]->children();
221 CHECK_EQ(1, bottom_up_ddd_children->length());
222 CHECK_EQ("5", bottom_up_ddd_children->last()->entry()->name());
223 const i::List<ProfileNode*>* bottom_up_ddd_stub_children =
224 bottom_up_ddd_children->last()->children();
225 CHECK_EQ(1, bottom_up_ddd_stub_children->length());
226 CHECK_EQ("bbb", bottom_up_ddd_stub_children->last()->entry()->name());
227}
228
Iain Merrick75681382010-08-19 15:07:18 +0100229
230// http://crbug/51594
231// This test must not crash.
232TEST(CrashIfStoppingLastNonExistentProfile) {
233 InitializeVM();
234 TestSetup test_setup;
235 CpuProfiler::Setup();
236 CpuProfiler::StartProfiling("1");
237 CpuProfiler::StopProfiling("2");
238 CpuProfiler::StartProfiling("1");
239 CpuProfiler::StopProfiling("");
240 CpuProfiler::TearDown();
241}
242
Steve Block6ded16b2010-05-10 14:33:55 +0100243#endif // ENABLE_LOGGING_AND_PROFILING