blob: 6a77a9ed835bd6adef8728163b2a7591a5827096 [file] [log] [blame]
Dave Allison0aded082013-11-07 13:15:11 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "profiler.h"
18
Dave Allison39c3bfb2014-01-28 18:33:52 -080019#include <sys/file.h>
Ian Rogers6f3dbba2014-10-14 17:41:57 -070020#include <sys/stat.h>
21#include <sys/uio.h>
22
23#include <fstream>
Dave Allison0aded082013-11-07 13:15:11 -080024
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "art_method-inl.h"
Dave Allison0aded082013-11-07 13:15:11 -080026#include "base/stl_util.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010027#include "base/time_utils.h"
Dave Allison0aded082013-11-07 13:15:11 -080028#include "base/unix_file/fd_file.h"
29#include "class_linker.h"
30#include "common_throws.h"
Dave Allison0aded082013-11-07 13:15:11 -080031#include "dex_file-inl.h"
32#include "instrumentation.h"
Dave Allison0aded082013-11-07 13:15:11 -080033#include "mirror/class-inl.h"
34#include "mirror/dex_cache.h"
35#include "mirror/object_array-inl.h"
36#include "mirror/object-inl.h"
Dave Allison0aded082013-11-07 13:15:11 -080037#include "os.h"
38#include "scoped_thread_state_change.h"
39#include "ScopedLocalRef.h"
40#include "thread.h"
41#include "thread_list.h"
Vladimir Marko80afd022015-05-19 18:08:00 +010042#include "utils.h"
Dave Allison4a7867b2014-01-30 17:44:12 -080043
Dave Allison0aded082013-11-07 13:15:11 -080044#include "entrypoints/quick/quick_entrypoints.h"
Dave Allison0aded082013-11-07 13:15:11 -080045
46namespace art {
47
48BackgroundMethodSamplingProfiler* BackgroundMethodSamplingProfiler::profiler_ = nullptr;
49pthread_t BackgroundMethodSamplingProfiler::profiler_pthread_ = 0U;
50volatile bool BackgroundMethodSamplingProfiler::shutting_down_ = false;
51
Dave Allison0aded082013-11-07 13:15:11 -080052// TODO: this profiler runs regardless of the state of the machine. Maybe we should use the
53// wakelock or something to modify the run characteristics. This can be done when we
54// have some performance data after it's been used for a while.
55
Wei Jin445220d2014-06-20 15:56:53 -070056// Walk through the method within depth of max_depth_ on the Java stack
57class BoundedStackVisitor : public StackVisitor {
58 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -070059 BoundedStackVisitor(std::vector<std::pair<ArtMethod*, uint32_t>>* stack,
Sebastien Hertz26f72862015-09-15 09:52:07 +020060 Thread* thread,
61 uint32_t max_depth)
Mathieu Chartier90443472015-07-16 20:32:27 -070062 SHARED_REQUIRES(Locks::mutator_lock_)
Nicolas Geoffray8e5bd182015-05-06 11:34:34 +010063 : StackVisitor(thread, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
64 stack_(stack),
65 max_depth_(max_depth),
66 depth_(0) {}
Wei Jin445220d2014-06-20 15:56:53 -070067
Mathieu Chartier90443472015-07-16 20:32:27 -070068 bool VisitFrame() SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -070069 ArtMethod* m = GetMethod();
Wei Jin445220d2014-06-20 15:56:53 -070070 if (m->IsRuntimeMethod()) {
71 return true;
72 }
73 uint32_t dex_pc_ = GetDexPc();
74 stack_->push_back(std::make_pair(m, dex_pc_));
75 ++depth_;
76 if (depth_ < max_depth_) {
77 return true;
78 } else {
79 return false;
80 }
81 }
82
83 private:
Sebastien Hertz26f72862015-09-15 09:52:07 +020084 std::vector<std::pair<ArtMethod*, uint32_t>>* const stack_;
Wei Jin445220d2014-06-20 15:56:53 -070085 const uint32_t max_depth_;
86 uint32_t depth_;
Sebastien Hertz26f72862015-09-15 09:52:07 +020087
88 DISALLOW_COPY_AND_ASSIGN(BoundedStackVisitor);
Wei Jin445220d2014-06-20 15:56:53 -070089};
Dave Allison0aded082013-11-07 13:15:11 -080090
91// This is called from either a thread list traversal or from a checkpoint. Regardless
92// of which caller, the mutator lock must be held.
Mathieu Chartier90443472015-07-16 20:32:27 -070093static void GetSample(Thread* thread, void* arg) SHARED_REQUIRES(Locks::mutator_lock_) {
Dave Allison0aded082013-11-07 13:15:11 -080094 BackgroundMethodSamplingProfiler* profiler =
95 reinterpret_cast<BackgroundMethodSamplingProfiler*>(arg);
Wei Jin445220d2014-06-20 15:56:53 -070096 const ProfilerOptions profile_options = profiler->GetProfilerOptions();
97 switch (profile_options.GetProfileType()) {
98 case kProfilerMethod: {
Mathieu Chartiere401d142015-04-22 13:56:20 -070099 ArtMethod* method = thread->GetCurrentMethod(nullptr);
Ian Rogerscf7f1912014-10-22 22:06:39 -0700100 if ((false) && method == nullptr) {
Wei Jin445220d2014-06-20 15:56:53 -0700101 LOG(INFO) << "No current method available";
102 std::ostringstream os;
103 thread->Dump(os);
104 std::string data(os.str());
105 LOG(INFO) << data;
106 }
107 profiler->RecordMethod(method);
108 break;
109 }
110 case kProfilerBoundedStack: {
111 std::vector<InstructionLocation> stack;
112 uint32_t max_depth = profile_options.GetMaxStackDepth();
113 BoundedStackVisitor bounded_stack_visitor(&stack, thread, max_depth);
114 bounded_stack_visitor.WalkStack();
115 profiler->RecordStack(stack);
116 break;
117 }
118 default:
119 LOG(INFO) << "This profile type is not implemented.";
Dave Allison0aded082013-11-07 13:15:11 -0800120 }
Dave Allison0aded082013-11-07 13:15:11 -0800121}
122
Dave Allison0aded082013-11-07 13:15:11 -0800123// A closure that is called by the thread checkpoint code.
Ian Rogers7b078e82014-09-10 14:44:24 -0700124class SampleCheckpoint FINAL : public Closure {
Dave Allison0aded082013-11-07 13:15:11 -0800125 public:
126 explicit SampleCheckpoint(BackgroundMethodSamplingProfiler* const profiler) :
127 profiler_(profiler) {}
128
Ian Rogers7b078e82014-09-10 14:44:24 -0700129 void Run(Thread* thread) OVERRIDE {
Dave Allison0aded082013-11-07 13:15:11 -0800130 Thread* self = Thread::Current();
131 if (thread == nullptr) {
132 LOG(ERROR) << "Checkpoint with nullptr thread";
133 return;
134 }
135
136 // Grab the mutator lock (shared access).
137 ScopedObjectAccess soa(self);
138
139 // Grab a sample.
140 GetSample(thread, this->profiler_);
141
142 // And finally tell the barrier that we're done.
143 this->profiler_->GetBarrier().Pass(self);
144 }
145
146 private:
147 BackgroundMethodSamplingProfiler* const profiler_;
148};
149
150bool BackgroundMethodSamplingProfiler::ShuttingDown(Thread* self) {
151 MutexLock mu(self, *Locks::profiler_lock_);
152 return shutting_down_;
153}
154
155void* BackgroundMethodSamplingProfiler::RunProfilerThread(void* arg) {
156 Runtime* runtime = Runtime::Current();
157 BackgroundMethodSamplingProfiler* profiler =
158 reinterpret_cast<BackgroundMethodSamplingProfiler*>(arg);
159
160 // Add a random delay for the first time run so that we don't hammer the CPU
161 // with all profiles running at the same time.
162 const int kRandomDelayMaxSecs = 30;
163 const double kMaxBackoffSecs = 24*60*60; // Max backoff time.
164
165 srand(MicroTime() * getpid());
166 int startup_delay = rand() % kRandomDelayMaxSecs; // random delay for startup.
167
168
169 CHECK(runtime->AttachCurrentThread("Profiler", true, runtime->GetSystemThreadGroup(),
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800170 !runtime->IsAotCompiler()));
Dave Allison0aded082013-11-07 13:15:11 -0800171
172 Thread* self = Thread::Current();
173
Calin Juravlec1b643c2014-05-30 23:44:11 +0100174 double backoff = 1.0;
Dave Allison0aded082013-11-07 13:15:11 -0800175 while (true) {
176 if (ShuttingDown(self)) {
177 break;
178 }
179
180 {
181 // wait until we need to run another profile
Calin Juravlec1b643c2014-05-30 23:44:11 +0100182 uint64_t delay_secs = profiler->options_.GetPeriodS() * backoff;
Dave Allison0aded082013-11-07 13:15:11 -0800183
184 // Add a startup delay to prevent all the profiles running at once.
185 delay_secs += startup_delay;
186
187 // Immediate startup for benchmarking?
Calin Juravlec1b643c2014-05-30 23:44:11 +0100188 if (profiler->options_.GetStartImmediately() && startup_delay > 0) {
Dave Allison0aded082013-11-07 13:15:11 -0800189 delay_secs = 0;
190 }
191
192 startup_delay = 0;
193
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700194 VLOG(profiler) << "Delaying profile start for " << delay_secs << " secs";
Dave Allison0aded082013-11-07 13:15:11 -0800195 MutexLock mu(self, profiler->wait_lock_);
196 profiler->period_condition_.TimedWait(self, delay_secs * 1000, 0);
Ian Rogers7b078e82014-09-10 14:44:24 -0700197 // We were either signaled by Stop or timedout, in either case ignore the timed out result.
Dave Allison0aded082013-11-07 13:15:11 -0800198
199 // Expand the backoff by its coefficient, but don't go beyond the max.
Calin Juravlec1b643c2014-05-30 23:44:11 +0100200 backoff = std::min(backoff * profiler->options_.GetBackoffCoefficient(), kMaxBackoffSecs);
Dave Allison0aded082013-11-07 13:15:11 -0800201 }
202
203 if (ShuttingDown(self)) {
204 break;
205 }
206
207
208 uint64_t start_us = MicroTime();
Calin Juravlec1b643c2014-05-30 23:44:11 +0100209 uint64_t end_us = start_us + profiler->options_.GetDurationS() * UINT64_C(1000000);
Dave Allison0aded082013-11-07 13:15:11 -0800210 uint64_t now_us = start_us;
211
Calin Juravlec1b643c2014-05-30 23:44:11 +0100212 VLOG(profiler) << "Starting profiling run now for "
213 << PrettyDuration((end_us - start_us) * 1000);
Dave Allison0aded082013-11-07 13:15:11 -0800214
215 SampleCheckpoint check_point(profiler);
216
Dave Allison39c3bfb2014-01-28 18:33:52 -0800217 size_t valid_samples = 0;
Dave Allison0aded082013-11-07 13:15:11 -0800218 while (now_us < end_us) {
219 if (ShuttingDown(self)) {
220 break;
221 }
222
Calin Juravlec1b643c2014-05-30 23:44:11 +0100223 usleep(profiler->options_.GetIntervalUs()); // Non-interruptible sleep.
Dave Allison0aded082013-11-07 13:15:11 -0800224
225 ThreadList* thread_list = runtime->GetThreadList();
226
227 profiler->profiler_barrier_->Init(self, 0);
Dave Allison39c3bfb2014-01-28 18:33:52 -0800228 size_t barrier_count = thread_list->RunCheckpointOnRunnableThreads(&check_point);
229
230 // All threads are suspended, nothing to do.
231 if (barrier_count == 0) {
232 now_us = MicroTime();
233 continue;
234 }
235
236 valid_samples += barrier_count;
Dave Allison0aded082013-11-07 13:15:11 -0800237
Wei Jin6a586912014-05-21 16:07:40 -0700238 ScopedThreadStateChange tsc(self, kWaitingForCheckPointsToRun);
Dave Allison0aded082013-11-07 13:15:11 -0800239
240 // Wait for the barrier to be crossed by all runnable threads. This wait
241 // is done with a timeout so that we can detect problems with the checkpoint
242 // running code. We should never see this.
243 const uint32_t kWaitTimeoutMs = 10000;
Dave Allison0aded082013-11-07 13:15:11 -0800244
Dave Allison0aded082013-11-07 13:15:11 -0800245 // Wait for all threads to pass the barrier.
Ian Rogers7b078e82014-09-10 14:44:24 -0700246 bool timed_out = profiler->profiler_barrier_->Increment(self, barrier_count, kWaitTimeoutMs);
Dave Allison0aded082013-11-07 13:15:11 -0800247
248 // We should never get a timeout. If we do, it suggests a problem with the checkpoint
249 // code. Crash the process in this case.
Ian Rogers7b078e82014-09-10 14:44:24 -0700250 CHECK(!timed_out);
Dave Allison0aded082013-11-07 13:15:11 -0800251
Dave Allison0aded082013-11-07 13:15:11 -0800252 // Update the current time.
253 now_us = MicroTime();
254 }
255
Wei Jin6a586912014-05-21 16:07:40 -0700256 if (valid_samples > 0) {
Dave Allison0aded082013-11-07 13:15:11 -0800257 // After the profile has been taken, write it out.
258 ScopedObjectAccess soa(self); // Acquire the mutator lock.
259 uint32_t size = profiler->WriteProfile();
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700260 VLOG(profiler) << "Profile size: " << size;
Dave Allison0aded082013-11-07 13:15:11 -0800261 }
262 }
263
264 LOG(INFO) << "Profiler shutdown";
265 runtime->DetachCurrentThread();
266 return nullptr;
267}
268
269// Write out the profile file if we are generating a profile.
270uint32_t BackgroundMethodSamplingProfiler::WriteProfile() {
Calin Juravlec1b643c2014-05-30 23:44:11 +0100271 std::string full_name = output_filename_;
Brian Carlstrom4d466a82014-05-08 19:05:29 -0700272 VLOG(profiler) << "Saving profile to " << full_name;
Dave Allison0aded082013-11-07 13:15:11 -0800273
Dave Allison39c3bfb2014-01-28 18:33:52 -0800274 int fd = open(full_name.c_str(), O_RDWR);
275 if (fd < 0) {
276 // Open failed.
277 LOG(ERROR) << "Failed to open profile file " << full_name;
Dave Allison0aded082013-11-07 13:15:11 -0800278 return 0;
279 }
Dave Allison39c3bfb2014-01-28 18:33:52 -0800280
281 // Lock the file for exclusive access. This will block if another process is using
282 // the file.
283 int err = flock(fd, LOCK_EX);
284 if (err < 0) {
285 LOG(ERROR) << "Failed to lock profile file " << full_name;
286 return 0;
287 }
288
289 // Read the previous profile.
Wei Jina93b0bb2014-06-09 16:19:15 -0700290 profile_table_.ReadPrevious(fd, options_.GetProfileType());
Dave Allison39c3bfb2014-01-28 18:33:52 -0800291
292 // Move back to the start of the file.
293 lseek(fd, 0, SEEK_SET);
294
295 // Format the profile output and write to the file.
Dave Allison0aded082013-11-07 13:15:11 -0800296 std::ostringstream os;
297 uint32_t num_methods = DumpProfile(os);
298 std::string data(os.str());
Dave Allison39c3bfb2014-01-28 18:33:52 -0800299 const char *p = data.c_str();
300 size_t length = data.length();
301 size_t full_length = length;
302 do {
303 int n = ::write(fd, p, length);
304 p += n;
305 length -= n;
306 } while (length > 0);
307
308 // Truncate the file to the new length.
Elliott Hughes06f08e42015-05-12 21:25:36 -0700309 if (ftruncate(fd, full_length) == -1) {
310 LOG(ERROR) << "Failed to truncate profile file " << full_name;
311 }
Dave Allison39c3bfb2014-01-28 18:33:52 -0800312
313 // Now unlock the file, allowing another process in.
314 err = flock(fd, LOCK_UN);
315 if (err < 0) {
316 LOG(ERROR) << "Failed to unlock profile file " << full_name;
317 }
318
319 // Done, close the file.
320 ::close(fd);
321
322 // Clean the profile for the next time.
323 CleanProfile();
324
Dave Allison0aded082013-11-07 13:15:11 -0800325 return num_methods;
326}
327
Calin Juravlec1b643c2014-05-30 23:44:11 +0100328bool BackgroundMethodSamplingProfiler::Start(
329 const std::string& output_filename, const ProfilerOptions& options) {
330 if (!options.IsEnabled()) {
Calin Juravlec1b643c2014-05-30 23:44:11 +0100331 return false;
332 }
333
334 CHECK(!output_filename.empty());
335
Dave Allison0aded082013-11-07 13:15:11 -0800336 Thread* self = Thread::Current();
337 {
338 MutexLock mu(self, *Locks::profiler_lock_);
339 // Don't start two profiler threads.
340 if (profiler_ != nullptr) {
Calin Juravlec1b643c2014-05-30 23:44:11 +0100341 return true;
Dave Allison0aded082013-11-07 13:15:11 -0800342 }
343 }
344
Calin Juravlec1b643c2014-05-30 23:44:11 +0100345 LOG(INFO) << "Starting profiler using output file: " << output_filename
346 << " and options: " << options;
Dave Allison0aded082013-11-07 13:15:11 -0800347 {
348 MutexLock mu(self, *Locks::profiler_lock_);
Calin Juravlec1b643c2014-05-30 23:44:11 +0100349 profiler_ = new BackgroundMethodSamplingProfiler(output_filename, options);
Dave Allison0aded082013-11-07 13:15:11 -0800350
351 CHECK_PTHREAD_CALL(pthread_create, (&profiler_pthread_, nullptr, &RunProfilerThread,
352 reinterpret_cast<void*>(profiler_)),
353 "Profiler thread");
354 }
Calin Juravlec1b643c2014-05-30 23:44:11 +0100355 return true;
Dave Allison0aded082013-11-07 13:15:11 -0800356}
357
358
359
360void BackgroundMethodSamplingProfiler::Stop() {
361 BackgroundMethodSamplingProfiler* profiler = nullptr;
362 pthread_t profiler_pthread = 0U;
363 {
364 MutexLock trace_mu(Thread::Current(), *Locks::profiler_lock_);
Wei Jin6a586912014-05-21 16:07:40 -0700365 CHECK(!shutting_down_);
Dave Allison0aded082013-11-07 13:15:11 -0800366 profiler = profiler_;
367 shutting_down_ = true;
368 profiler_pthread = profiler_pthread_;
369 }
370
371 // Now wake up the sampler thread if it sleeping.
372 {
373 MutexLock profile_mu(Thread::Current(), profiler->wait_lock_);
374 profiler->period_condition_.Signal(Thread::Current());
375 }
376 // Wait for the sample thread to stop.
377 CHECK_PTHREAD_CALL(pthread_join, (profiler_pthread, nullptr), "profiler thread shutdown");
378
379 {
380 MutexLock mu(Thread::Current(), *Locks::profiler_lock_);
381 profiler_ = nullptr;
382 }
383 delete profiler;
384}
385
386
387void BackgroundMethodSamplingProfiler::Shutdown() {
388 Stop();
389}
390
Calin Juravlec1b643c2014-05-30 23:44:11 +0100391BackgroundMethodSamplingProfiler::BackgroundMethodSamplingProfiler(
392 const std::string& output_filename, const ProfilerOptions& options)
393 : output_filename_(output_filename),
394 options_(options),
Dave Allison0aded082013-11-07 13:15:11 -0800395 wait_lock_("Profile wait lock"),
396 period_condition_("Profile condition", wait_lock_),
397 profile_table_(wait_lock_),
398 profiler_barrier_(new Barrier(0)) {
399 // Populate the filtered_methods set.
400 // This is empty right now, but to add a method, do this:
401 //
402 // filtered_methods_.insert("void java.lang.Object.wait(long, int)");
403}
404
Wei Jin445220d2014-06-20 15:56:53 -0700405// Filter out methods the profiler doesn't want to record.
406// We require mutator lock since some statistics will be updated here.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700407bool BackgroundMethodSamplingProfiler::ProcessMethod(ArtMethod* method) {
Dave Allison0aded082013-11-07 13:15:11 -0800408 if (method == nullptr) {
409 profile_table_.NullMethod();
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700410 // Don't record a null method.
Wei Jin445220d2014-06-20 15:56:53 -0700411 return false;
Dave Allison0aded082013-11-07 13:15:11 -0800412 }
413
414 mirror::Class* cls = method->GetDeclaringClass();
415 if (cls != nullptr) {
416 if (cls->GetClassLoader() == nullptr) {
417 // Don't include things in the boot
418 profile_table_.BootMethod();
Wei Jin445220d2014-06-20 15:56:53 -0700419 return false;
Dave Allison0aded082013-11-07 13:15:11 -0800420 }
421 }
422
423 bool is_filtered = false;
424
Mathieu Chartierbfd9a432014-05-21 17:43:44 -0700425 if (strcmp(method->GetName(), "<clinit>") == 0) {
Dave Allison0aded082013-11-07 13:15:11 -0800426 // always filter out class init
427 is_filtered = true;
428 }
429
430 // Filter out methods by name if there are any.
431 if (!is_filtered && filtered_methods_.size() > 0) {
432 std::string method_full_name = PrettyMethod(method);
433
434 // Don't include specific filtered methods.
435 is_filtered = filtered_methods_.count(method_full_name) != 0;
436 }
Wei Jin445220d2014-06-20 15:56:53 -0700437 return !is_filtered;
438}
Dave Allison0aded082013-11-07 13:15:11 -0800439
Wei Jin445220d2014-06-20 15:56:53 -0700440// A method has been hit, record its invocation in the method map.
441// The mutator_lock must be held (shared) when this is called.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700442void BackgroundMethodSamplingProfiler::RecordMethod(ArtMethod* method) {
Dave Allison0aded082013-11-07 13:15:11 -0800443 // Add to the profile table unless it is filtered out.
Wei Jin445220d2014-06-20 15:56:53 -0700444 if (ProcessMethod(method)) {
445 profile_table_.Put(method);
446 }
447}
448
449// Record the current bounded stack into sampling results.
450void BackgroundMethodSamplingProfiler::RecordStack(const std::vector<InstructionLocation>& stack) {
451 if (stack.size() == 0) {
452 return;
453 }
454 // Get the method on top of the stack. We use this method to perform filtering.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700455 ArtMethod* method = stack.front().first;
Wei Jin445220d2014-06-20 15:56:53 -0700456 if (ProcessMethod(method)) {
457 profile_table_.PutStack(stack);
Dave Allison0aded082013-11-07 13:15:11 -0800458 }
459}
460
461// Clean out any recordings for the method traces.
462void BackgroundMethodSamplingProfiler::CleanProfile() {
463 profile_table_.Clear();
464}
465
466uint32_t BackgroundMethodSamplingProfiler::DumpProfile(std::ostream& os) {
Wei Jina93b0bb2014-06-09 16:19:15 -0700467 return profile_table_.Write(os, options_.GetProfileType());
Dave Allison0aded082013-11-07 13:15:11 -0800468}
469
470// Profile Table.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700471// This holds a mapping of ArtMethod* to a count of how many times a sample
Dave Allison0aded082013-11-07 13:15:11 -0800472// hit it at the top of the stack.
Sebastien Hertzaa50d3a2015-08-25 15:25:41 +0200473ProfileSampleResults::ProfileSampleResults(Mutex& lock)
474 : lock_(lock),
475 num_samples_(0U),
476 num_null_methods_(0U),
477 num_boot_methods_(0U),
478 previous_num_samples_(0U),
479 previous_num_null_methods_(0U),
480 previous_num_boot_methods_(0U) {
Dave Allison0aded082013-11-07 13:15:11 -0800481 for (int i = 0; i < kHashSize; i++) {
482 table[i] = nullptr;
483 }
Wei Jin445220d2014-06-20 15:56:53 -0700484 method_context_table = nullptr;
485 stack_trie_root_ = nullptr;
Dave Allison0aded082013-11-07 13:15:11 -0800486}
487
488ProfileSampleResults::~ProfileSampleResults() {
Wei Jina93b0bb2014-06-09 16:19:15 -0700489 Clear();
Dave Allison0aded082013-11-07 13:15:11 -0800490}
491
Calin Juravlebb0b53f2014-05-23 17:33:29 +0100492// Add a method to the profile table. If it's the first time the method
Dave Allison0aded082013-11-07 13:15:11 -0800493// has been seen, add it with count=1, otherwise increment the count.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700494void ProfileSampleResults::Put(ArtMethod* method) {
Wei Jina93b0bb2014-06-09 16:19:15 -0700495 MutexLock mu(Thread::Current(), lock_);
Dave Allison0aded082013-11-07 13:15:11 -0800496 uint32_t index = Hash(method);
497 if (table[index] == nullptr) {
498 table[index] = new Map();
499 }
500 Map::iterator i = table[index]->find(method);
501 if (i == table[index]->end()) {
502 (*table[index])[method] = 1;
503 } else {
504 i->second++;
505 }
506 num_samples_++;
Wei Jina93b0bb2014-06-09 16:19:15 -0700507}
508
Wei Jin445220d2014-06-20 15:56:53 -0700509// Add a bounded stack to the profile table. Only the count of the method on
510// top of the frame will be increased.
511void ProfileSampleResults::PutStack(const std::vector<InstructionLocation>& stack) {
Wei Jina93b0bb2014-06-09 16:19:15 -0700512 MutexLock mu(Thread::Current(), lock_);
Wei Jin445220d2014-06-20 15:56:53 -0700513 ScopedObjectAccess soa(Thread::Current());
514 if (stack_trie_root_ == nullptr) {
515 // The root of the stack trie is a dummy node so that we don't have to maintain
516 // a collection of tries.
517 stack_trie_root_ = new StackTrieNode();
Wei Jina93b0bb2014-06-09 16:19:15 -0700518 }
Wei Jin445220d2014-06-20 15:56:53 -0700519
520 StackTrieNode* current = stack_trie_root_;
521 if (stack.size() == 0) {
522 current->IncreaseCount();
523 return;
524 }
525
526 for (std::vector<InstructionLocation>::const_reverse_iterator iter = stack.rbegin();
527 iter != stack.rend(); ++iter) {
528 InstructionLocation inst_loc = *iter;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700529 ArtMethod* method = inst_loc.first;
Wei Jin445220d2014-06-20 15:56:53 -0700530 if (method == nullptr) {
531 // skip null method
532 continue;
533 }
534 uint32_t dex_pc = inst_loc.second;
535 uint32_t method_idx = method->GetDexMethodIndex();
536 const DexFile* dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile();
537 MethodReference method_ref(dex_file, method_idx);
538 StackTrieNode* child = current->FindChild(method_ref, dex_pc);
539 if (child != nullptr) {
540 current = child;
Wei Jina93b0bb2014-06-09 16:19:15 -0700541 } else {
Wei Jin445220d2014-06-20 15:56:53 -0700542 uint32_t method_size = 0;
543 const DexFile::CodeItem* codeitem = method->GetCodeItem();
544 if (codeitem != nullptr) {
545 method_size = codeitem->insns_size_in_code_units_;
546 }
547 StackTrieNode* new_node = new StackTrieNode(method_ref, dex_pc, method_size, current);
548 current->AppendChild(new_node);
549 current = new_node;
Wei Jina93b0bb2014-06-09 16:19:15 -0700550 }
551 }
Wei Jin445220d2014-06-20 15:56:53 -0700552
553 if (current != stack_trie_root_ && current->GetCount() == 0) {
554 // Insert into method_context table;
555 if (method_context_table == nullptr) {
556 method_context_table = new MethodContextMap();
557 }
558 MethodReference method = current->GetMethod();
559 MethodContextMap::iterator i = method_context_table->find(method);
560 if (i == method_context_table->end()) {
561 TrieNodeSet* node_set = new TrieNodeSet();
562 node_set->insert(current);
563 (*method_context_table)[method] = node_set;
564 } else {
565 TrieNodeSet* node_set = i->second;
566 node_set->insert(current);
567 }
568 }
569 current->IncreaseCount();
Wei Jina93b0bb2014-06-09 16:19:15 -0700570 num_samples_++;
Dave Allison0aded082013-11-07 13:15:11 -0800571}
572
Dave Allison39c3bfb2014-01-28 18:33:52 -0800573// Write the profile table to the output stream. Also merge with the previous profile.
Wei Jina93b0bb2014-06-09 16:19:15 -0700574uint32_t ProfileSampleResults::Write(std::ostream& os, ProfileDataType type) {
Dave Allison0aded082013-11-07 13:15:11 -0800575 ScopedObjectAccess soa(Thread::Current());
Dave Allison39c3bfb2014-01-28 18:33:52 -0800576 num_samples_ += previous_num_samples_;
577 num_null_methods_ += previous_num_null_methods_;
578 num_boot_methods_ += previous_num_boot_methods_;
579
Calin Juravlec1b643c2014-05-30 23:44:11 +0100580 VLOG(profiler) << "Profile: "
581 << num_samples_ << "/" << num_null_methods_ << "/" << num_boot_methods_;
Dave Allison0aded082013-11-07 13:15:11 -0800582 os << num_samples_ << "/" << num_null_methods_ << "/" << num_boot_methods_ << "\n";
583 uint32_t num_methods = 0;
Wei Jina93b0bb2014-06-09 16:19:15 -0700584 if (type == kProfilerMethod) {
585 for (int i = 0 ; i < kHashSize; i++) {
586 Map *map = table[i];
587 if (map != nullptr) {
588 for (const auto &meth_iter : *map) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700589 ArtMethod *method = meth_iter.first;
Wei Jina93b0bb2014-06-09 16:19:15 -0700590 std::string method_name = PrettyMethod(method);
Dave Allison39c3bfb2014-01-28 18:33:52 -0800591
Wei Jina93b0bb2014-06-09 16:19:15 -0700592 const DexFile::CodeItem* codeitem = method->GetCodeItem();
593 uint32_t method_size = 0;
594 if (codeitem != nullptr) {
595 method_size = codeitem->insns_size_in_code_units_;
596 }
597 uint32_t count = meth_iter.second;
Dave Allison39c3bfb2014-01-28 18:33:52 -0800598
Wei Jina93b0bb2014-06-09 16:19:15 -0700599 // Merge this profile entry with one from a previous run (if present). Also
600 // remove the previous entry.
601 PreviousProfile::iterator pi = previous_.find(method_name);
602 if (pi != previous_.end()) {
603 count += pi->second.count_;
604 previous_.erase(pi);
605 }
606 os << StringPrintf("%s/%u/%u\n", method_name.c_str(), count, method_size);
607 ++num_methods;
Dave Allison39c3bfb2014-01-28 18:33:52 -0800608 }
Wei Jina93b0bb2014-06-09 16:19:15 -0700609 }
610 }
Wei Jin445220d2014-06-20 15:56:53 -0700611 } else if (type == kProfilerBoundedStack) {
612 if (method_context_table != nullptr) {
613 for (const auto &method_iter : *method_context_table) {
614 MethodReference method = method_iter.first;
615 TrieNodeSet* node_set = method_iter.second;
616 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file));
617 uint32_t method_size = 0;
618 uint32_t total_count = 0;
619 PreviousContextMap new_context_map;
620 for (const auto &trie_node_i : *node_set) {
621 StackTrieNode* node = trie_node_i;
622 method_size = node->GetMethodSize();
623 uint32_t count = node->GetCount();
624 uint32_t dexpc = node->GetDexPC();
625 total_count += count;
Wei Jina93b0bb2014-06-09 16:19:15 -0700626
Wei Jin445220d2014-06-20 15:56:53 -0700627 StackTrieNode* current = node->GetParent();
628 // We go backward on the trie to retrieve context and dex_pc until the dummy root.
629 // The format of the context is "method_1@pc_1@method_2@pc_2@..."
630 std::vector<std::string> context_vector;
631 while (current != nullptr && current->GetParent() != nullptr) {
632 context_vector.push_back(StringPrintf("%s@%u",
633 PrettyMethod(current->GetMethod().dex_method_index, *(current->GetMethod().dex_file)).c_str(),
634 current->GetDexPC()));
635 current = current->GetParent();
Wei Jina93b0bb2014-06-09 16:19:15 -0700636 }
Wei Jin445220d2014-06-20 15:56:53 -0700637 std::string context_sig = Join(context_vector, '@');
638 new_context_map[std::make_pair(dexpc, context_sig)] = count;
639 }
Wei Jina93b0bb2014-06-09 16:19:15 -0700640
Wei Jin445220d2014-06-20 15:56:53 -0700641 PreviousProfile::iterator pi = previous_.find(method_name);
642 if (pi != previous_.end()) {
643 total_count += pi->second.count_;
644 PreviousContextMap* previous_context_map = pi->second.context_map_;
645 if (previous_context_map != nullptr) {
646 for (const auto &context_i : *previous_context_map) {
647 uint32_t count = context_i.second;
648 PreviousContextMap::iterator ci = new_context_map.find(context_i.first);
649 if (ci == new_context_map.end()) {
650 new_context_map[context_i.first] = count;
651 } else {
652 ci->second += count;
Wei Jina93b0bb2014-06-09 16:19:15 -0700653 }
654 }
Wei Jina93b0bb2014-06-09 16:19:15 -0700655 }
Wei Jin445220d2014-06-20 15:56:53 -0700656 delete previous_context_map;
657 previous_.erase(pi);
Wei Jina93b0bb2014-06-09 16:19:15 -0700658 }
Wei Jin445220d2014-06-20 15:56:53 -0700659 // We write out profile data with dex pc and context information in the following format:
660 // "method/total_count/size/[pc_1:count_1:context_1#pc_2:count_2:context_2#...]".
661 std::vector<std::string> context_count_vector;
662 for (const auto &context_i : new_context_map) {
663 context_count_vector.push_back(StringPrintf("%u:%u:%s", context_i.first.first,
664 context_i.second, context_i.first.second.c_str()));
665 }
666 os << StringPrintf("%s/%u/%u/[%s]\n", method_name.c_str(), total_count,
667 method_size, Join(context_count_vector, '#').c_str());
668 ++num_methods;
Dave Allison39c3bfb2014-01-28 18:33:52 -0800669 }
Dave Allison0aded082013-11-07 13:15:11 -0800670 }
671 }
Dave Allison39c3bfb2014-01-28 18:33:52 -0800672
673 // Now we write out the remaining previous methods.
Wei Jina93b0bb2014-06-09 16:19:15 -0700674 for (const auto &pi : previous_) {
675 if (type == kProfilerMethod) {
676 os << StringPrintf("%s/%u/%u\n", pi.first.c_str(), pi.second.count_, pi.second.method_size_);
Wei Jin445220d2014-06-20 15:56:53 -0700677 } else if (type == kProfilerBoundedStack) {
Wei Jina93b0bb2014-06-09 16:19:15 -0700678 os << StringPrintf("%s/%u/%u/[", pi.first.c_str(), pi.second.count_, pi.second.method_size_);
Wei Jin445220d2014-06-20 15:56:53 -0700679 PreviousContextMap* previous_context_map = pi.second.context_map_;
680 if (previous_context_map != nullptr) {
681 std::vector<std::string> context_count_vector;
682 for (const auto &context_i : *previous_context_map) {
683 context_count_vector.push_back(StringPrintf("%u:%u:%s", context_i.first.first,
684 context_i.second, context_i.first.second.c_str()));
Wei Jina93b0bb2014-06-09 16:19:15 -0700685 }
Wei Jin445220d2014-06-20 15:56:53 -0700686 os << Join(context_count_vector, '#');
Wei Jina93b0bb2014-06-09 16:19:15 -0700687 }
688 os << "]\n";
689 }
Dave Allison39c3bfb2014-01-28 18:33:52 -0800690 ++num_methods;
691 }
Dave Allison0aded082013-11-07 13:15:11 -0800692 return num_methods;
693}
694
695void ProfileSampleResults::Clear() {
696 num_samples_ = 0;
697 num_null_methods_ = 0;
698 num_boot_methods_ = 0;
699 for (int i = 0; i < kHashSize; i++) {
Wei Jina93b0bb2014-06-09 16:19:15 -0700700 delete table[i];
701 table[i] = nullptr;
Wei Jin445220d2014-06-20 15:56:53 -0700702 }
703 if (stack_trie_root_ != nullptr) {
704 stack_trie_root_->DeleteChildren();
705 delete stack_trie_root_;
706 stack_trie_root_ = nullptr;
707 if (method_context_table != nullptr) {
708 delete method_context_table;
709 method_context_table = nullptr;
Wei Jina93b0bb2014-06-09 16:19:15 -0700710 }
Wei Jina93b0bb2014-06-09 16:19:15 -0700711 }
712 for (auto &pi : previous_) {
Wei Jin445220d2014-06-20 15:56:53 -0700713 if (pi.second.context_map_ != nullptr) {
714 delete pi.second.context_map_;
715 pi.second.context_map_ = nullptr;
716 }
Dave Allison0aded082013-11-07 13:15:11 -0800717 }
Dave Allison39c3bfb2014-01-28 18:33:52 -0800718 previous_.clear();
Dave Allison0aded082013-11-07 13:15:11 -0800719}
720
Mathieu Chartiere401d142015-04-22 13:56:20 -0700721uint32_t ProfileSampleResults::Hash(ArtMethod* method) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800722 return (PointerToLowMemUInt32(method) >> 3) % kHashSize;
Dave Allison0aded082013-11-07 13:15:11 -0800723}
724
Dave Allison39c3bfb2014-01-28 18:33:52 -0800725// Read a single line into the given string. Returns true if everything OK, false
726// on EOF or error.
727static bool ReadProfileLine(int fd, std::string& line) {
728 char buf[4];
729 line.clear();
730 while (true) {
731 int n = read(fd, buf, 1); // TODO: could speed this up but is it worth it?
732 if (n != 1) {
733 return false;
734 }
735 if (buf[0] == '\n') {
736 break;
737 }
738 line += buf[0];
739 }
740 return true;
741}
742
Wei Jina93b0bb2014-06-09 16:19:15 -0700743void ProfileSampleResults::ReadPrevious(int fd, ProfileDataType type) {
Dave Allison39c3bfb2014-01-28 18:33:52 -0800744 // Reset counters.
745 previous_num_samples_ = previous_num_null_methods_ = previous_num_boot_methods_ = 0;
746
747 std::string line;
748
749 // The first line contains summary information.
750 if (!ReadProfileLine(fd, line)) {
751 return;
752 }
753 std::vector<std::string> summary_info;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700754 Split(line, '/', &summary_info);
Dave Allison39c3bfb2014-01-28 18:33:52 -0800755 if (summary_info.size() != 3) {
756 // Bad summary info. It should be count/nullcount/bootcount
757 return;
758 }
Wei Jinf21f0a92014-06-27 17:44:18 -0700759 previous_num_samples_ = strtoul(summary_info[0].c_str(), nullptr, 10);
760 previous_num_null_methods_ = strtoul(summary_info[1].c_str(), nullptr, 10);
761 previous_num_boot_methods_ = strtoul(summary_info[2].c_str(), nullptr, 10);
Dave Allison39c3bfb2014-01-28 18:33:52 -0800762
Wei Jina93b0bb2014-06-09 16:19:15 -0700763 // Now read each line until the end of file. Each line consists of 3 or 4 fields separated by /
Dave Allison39c3bfb2014-01-28 18:33:52 -0800764 while (true) {
765 if (!ReadProfileLine(fd, line)) {
766 break;
767 }
768 std::vector<std::string> info;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700769 Split(line, '/', &info);
Wei Jina93b0bb2014-06-09 16:19:15 -0700770 if (info.size() != 3 && info.size() != 4) {
Dave Allison39c3bfb2014-01-28 18:33:52 -0800771 // Malformed.
772 break;
773 }
774 std::string methodname = info[0];
Wei Jinf21f0a92014-06-27 17:44:18 -0700775 uint32_t total_count = strtoul(info[1].c_str(), nullptr, 10);
776 uint32_t size = strtoul(info[2].c_str(), nullptr, 10);
Wei Jin445220d2014-06-20 15:56:53 -0700777 PreviousContextMap* context_map = nullptr;
778 if (type == kProfilerBoundedStack && info.size() == 4) {
779 context_map = new PreviousContextMap();
780 std::string context_counts_str = info[3].substr(1, info[3].size() - 2);
781 std::vector<std::string> context_count_pairs;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700782 Split(context_counts_str, '#', &context_count_pairs);
Wei Jin445220d2014-06-20 15:56:53 -0700783 for (uint32_t i = 0; i < context_count_pairs.size(); ++i) {
784 std::vector<std::string> context_count;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700785 Split(context_count_pairs[i], ':', &context_count);
Wei Jin445220d2014-06-20 15:56:53 -0700786 if (context_count.size() == 2) {
787 // Handles the situtation when the profile file doesn't contain context information.
Wei Jinf21f0a92014-06-27 17:44:18 -0700788 uint32_t dexpc = strtoul(context_count[0].c_str(), nullptr, 10);
789 uint32_t count = strtoul(context_count[1].c_str(), nullptr, 10);
Wei Jin445220d2014-06-20 15:56:53 -0700790 (*context_map)[std::make_pair(dexpc, "")] = count;
791 } else {
792 // Handles the situtation when the profile file contains context information.
Wei Jinf21f0a92014-06-27 17:44:18 -0700793 uint32_t dexpc = strtoul(context_count[0].c_str(), nullptr, 10);
794 uint32_t count = strtoul(context_count[1].c_str(), nullptr, 10);
Wei Jin445220d2014-06-20 15:56:53 -0700795 std::string context = context_count[2];
796 (*context_map)[std::make_pair(dexpc, context)] = count;
797 }
Wei Jina93b0bb2014-06-09 16:19:15 -0700798 }
799 }
Wei Jin445220d2014-06-20 15:56:53 -0700800 previous_[methodname] = PreviousValue(total_count, size, context_map);
Dave Allison39c3bfb2014-01-28 18:33:52 -0800801 }
802}
Dave Allison0aded082013-11-07 13:15:11 -0800803
Calin Juravlebb0b53f2014-05-23 17:33:29 +0100804bool ProfileFile::LoadFile(const std::string& fileName) {
Calin Juravle9dae5b42014-04-07 16:36:21 +0300805 LOG(VERBOSE) << "reading profile file " << fileName;
806 struct stat st;
807 int err = stat(fileName.c_str(), &st);
808 if (err == -1) {
809 LOG(VERBOSE) << "not found";
810 return false;
811 }
812 if (st.st_size == 0) {
Dave Allison644789f2014-04-10 13:06:10 -0700813 return false; // Empty profiles are invalid.
Calin Juravle9dae5b42014-04-07 16:36:21 +0300814 }
815 std::ifstream in(fileName.c_str());
816 if (!in) {
817 LOG(VERBOSE) << "profile file " << fileName << " exists but can't be opened";
818 LOG(VERBOSE) << "file owner: " << st.st_uid << ":" << st.st_gid;
819 LOG(VERBOSE) << "me: " << getuid() << ":" << getgid();
820 LOG(VERBOSE) << "file permissions: " << std::oct << st.st_mode;
821 LOG(VERBOSE) << "errno: " << errno;
822 return false;
823 }
824 // The first line contains summary information.
825 std::string line;
826 std::getline(in, line);
827 if (in.eof()) {
828 return false;
829 }
830 std::vector<std::string> summary_info;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700831 Split(line, '/', &summary_info);
Calin Juravle9dae5b42014-04-07 16:36:21 +0300832 if (summary_info.size() != 3) {
Calin Juravle19477a82014-06-06 12:24:21 +0100833 // Bad summary info. It should be total/null/boot.
Calin Juravle9dae5b42014-04-07 16:36:21 +0300834 return false;
835 }
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700836 // This is the number of hits in all profiled methods (without null or boot methods)
Wei Jinf21f0a92014-06-27 17:44:18 -0700837 uint32_t total_count = strtoul(summary_info[0].c_str(), nullptr, 10);
Calin Juravle9dae5b42014-04-07 16:36:21 +0300838
839 // Now read each line until the end of file. Each line consists of 3 fields separated by '/'.
840 // Store the info in descending order given by the most used methods.
841 typedef std::set<std::pair<int, std::vector<std::string>>> ProfileSet;
842 ProfileSet countSet;
843 while (!in.eof()) {
844 std::getline(in, line);
845 if (in.eof()) {
846 break;
847 }
848 std::vector<std::string> info;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700849 Split(line, '/', &info);
Wei Jina93b0bb2014-06-09 16:19:15 -0700850 if (info.size() != 3 && info.size() != 4) {
Calin Juravle9dae5b42014-04-07 16:36:21 +0300851 // Malformed.
Calin Juravlebb0b53f2014-05-23 17:33:29 +0100852 return false;
Calin Juravle9dae5b42014-04-07 16:36:21 +0300853 }
854 int count = atoi(info[1].c_str());
855 countSet.insert(std::make_pair(-count, info));
856 }
857
858 uint32_t curTotalCount = 0;
859 ProfileSet::iterator end = countSet.end();
860 const ProfileData* prevData = nullptr;
861 for (ProfileSet::iterator it = countSet.begin(); it != end ; it++) {
862 const std::string& methodname = it->second[0];
863 uint32_t count = -it->first;
Wei Jinf21f0a92014-06-27 17:44:18 -0700864 uint32_t size = strtoul(it->second[2].c_str(), nullptr, 10);
Calin Juravle9dae5b42014-04-07 16:36:21 +0300865 double usedPercent = (count * 100.0) / total_count;
866
867 curTotalCount += count;
868 // Methods with the same count should be part of the same top K percentage bucket.
869 double topKPercentage = (prevData != nullptr) && (prevData->GetCount() == count)
870 ? prevData->GetTopKUsedPercentage()
871 : 100 * static_cast<double>(curTotalCount) / static_cast<double>(total_count);
872
873 // Add it to the profile map.
874 ProfileData curData = ProfileData(methodname, count, size, usedPercent, topKPercentage);
Calin Juravlebb0b53f2014-05-23 17:33:29 +0100875 profile_map_[methodname] = curData;
Calin Juravle9dae5b42014-04-07 16:36:21 +0300876 prevData = &curData;
877 }
878 return true;
879}
880
Calin Juravlebb0b53f2014-05-23 17:33:29 +0100881bool ProfileFile::GetProfileData(ProfileFile::ProfileData* data, const std::string& method_name) {
882 ProfileMap::iterator i = profile_map_.find(method_name);
883 if (i == profile_map_.end()) {
Calin Juravle9dae5b42014-04-07 16:36:21 +0300884 return false;
885 }
Calin Juravlebb0b53f2014-05-23 17:33:29 +0100886 *data = i->second;
887 return true;
888}
889
890bool ProfileFile::GetTopKSamples(std::set<std::string>& topKSamples, double topKPercentage) {
891 ProfileMap::iterator end = profile_map_.end();
892 for (ProfileMap::iterator it = profile_map_.begin(); it != end; it++) {
Calin Juravle9dae5b42014-04-07 16:36:21 +0300893 if (it->second.GetTopKUsedPercentage() < topKPercentage) {
894 topKSamples.insert(it->first);
895 }
896 }
897 return true;
898}
899
Wei Jin445220d2014-06-20 15:56:53 -0700900StackTrieNode* StackTrieNode::FindChild(MethodReference method, uint32_t dex_pc) {
901 if (children_.size() == 0) {
902 return nullptr;
903 }
904 // Create a dummy node for searching.
905 StackTrieNode* node = new StackTrieNode(method, dex_pc, 0, nullptr);
906 std::set<StackTrieNode*, StackTrieNodeComparator>::iterator i = children_.find(node);
907 delete node;
908 return (i == children_.end()) ? nullptr : *i;
909}
910
911void StackTrieNode::DeleteChildren() {
912 for (auto &child : children_) {
913 if (child != nullptr) {
914 child->DeleteChildren();
915 delete child;
916 }
917 }
918}
919
Calin Juravle9dae5b42014-04-07 16:36:21 +0300920} // namespace art