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

Side by Side Diff: base/trace_event/memory_dump_manager.cc

Issue 1536533004: [tracing] Simplify logic of MemoryDumpManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove DCHECK Created 5 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/trace_event/memory_dump_manager.h" 5 #include "base/trace_event/memory_dump_manager.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/atomic_sequence_num.h" 10 #include "base/atomic_sequence_num.h"
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 } 186 }
187 187
188 void MemoryDumpManager::RegisterDumpProvider( 188 void MemoryDumpManager::RegisterDumpProvider(
189 MemoryDumpProvider* mdp, 189 MemoryDumpProvider* mdp,
190 const char* name, 190 const char* name,
191 const scoped_refptr<SingleThreadTaskRunner>& task_runner, 191 const scoped_refptr<SingleThreadTaskRunner>& task_runner,
192 const MemoryDumpProvider::Options& options) { 192 const MemoryDumpProvider::Options& options) {
193 if (dumper_registrations_ignored_for_testing_) 193 if (dumper_registrations_ignored_for_testing_)
194 return; 194 return;
195 195
196 MemoryDumpProviderInfo mdp_info(mdp, name, task_runner, options); 196 scoped_refptr<MemoryDumpProviderInfo> mdpinfo =
197 AutoLock lock(lock_); 197 new MemoryDumpProviderInfo(mdp, name, task_runner, options);
198 auto iter_new = dump_providers_.insert(mdp_info);
199 198
200 // If there was a previous entry, replace it with the new one. This is to deal 199 {
201 // with the case where a dump provider unregisters itself and then re- 200 AutoLock lock(lock_);
202 // registers before a memory dump happens, so its entry was still in the 201 bool already_registered = !dump_providers_.insert(mdpinfo).second;
203 // collection but flagged |unregistered|. 202 // This actually happen in some tests which don't have a clean tear-down
204 if (!iter_new.second) { 203 // path for RenderThreadImpl::Init().
205 dump_providers_.erase(iter_new.first); 204 if (already_registered)
206 dump_providers_.insert(mdp_info); 205 return;
207 } 206 }
208 207
209 if (heap_profiling_enabled_) 208 if (heap_profiling_enabled_)
210 mdp->OnHeapProfilingEnabled(true); 209 mdp->OnHeapProfilingEnabled(true);
211 } 210 }
212 211
213 void MemoryDumpManager::RegisterDumpProvider( 212 void MemoryDumpManager::RegisterDumpProvider(
214 MemoryDumpProvider* mdp, 213 MemoryDumpProvider* mdp,
215 const char* name, 214 const char* name,
216 const scoped_refptr<SingleThreadTaskRunner>& task_runner) { 215 const scoped_refptr<SingleThreadTaskRunner>& task_runner) {
217 RegisterDumpProvider(mdp, name, task_runner, MemoryDumpProvider::Options()); 216 RegisterDumpProvider(mdp, name, task_runner, MemoryDumpProvider::Options());
218 } 217 }
219 218
220 void MemoryDumpManager::UnregisterDumpProvider(MemoryDumpProvider* mdp) { 219 void MemoryDumpManager::UnregisterDumpProvider(MemoryDumpProvider* mdp) {
221 AutoLock lock(lock_); 220 AutoLock lock(lock_);
222 221
223 auto mdp_iter = dump_providers_.begin(); 222 auto mdp_iter = dump_providers_.begin();
224 for (; mdp_iter != dump_providers_.end(); ++mdp_iter) { 223 for (; mdp_iter != dump_providers_.end(); ++mdp_iter) {
225 if (mdp_iter->dump_provider == mdp) 224 if ((*mdp_iter)->dump_provider == mdp)
226 break; 225 break;
227 } 226 }
228 227
229 if (mdp_iter == dump_providers_.end()) 228 if (mdp_iter == dump_providers_.end())
230 return; 229 return;
231 230
232 // Unregistration of a MemoryDumpProvider while tracing is ongoing is safe 231 // Unregistration of a MemoryDumpProvider while tracing is ongoing is safe
233 // only if the MDP has specified a thread affinity (via task_runner()) AND 232 // only if the MDP has specified a thread affinity (via task_runner()) AND
234 // the unregistration happens on the same thread (so the MDP cannot unregister 233 // the unregistration happens on the same thread (so the MDP cannot unregister
235 // and OnMemoryDump() at the same time). 234 // and OnMemoryDump() at the same time).
236 // Otherwise, it is not possible to guarantee that its unregistration is 235 // Otherwise, it is not possible to guarantee that its unregistration is
237 // race-free. If you hit this DCHECK, your MDP has a bug. 236 // race-free. If you hit this DCHECK, your MDP has a bug.
238 DCHECK(!subtle::NoBarrier_Load(&memory_tracing_enabled_) || 237 DCHECK(!subtle::NoBarrier_Load(&memory_tracing_enabled_) ||
239 (mdp_iter->task_runner && 238 ((*mdp_iter)->task_runner &&
240 mdp_iter->task_runner->BelongsToCurrentThread())) 239 (*mdp_iter)->task_runner->BelongsToCurrentThread()))
241 << "MemoryDumpProvider \"" << mdp_iter->name << "\" attempted to " 240 << "MemoryDumpProvider \"" << (*mdp_iter)->name << "\" attempted to "
242 << "unregister itself in a racy way. Please file a crbug."; 241 << "unregister itself in a racy way. Please file a crbug.";
243 242
244 mdp_iter->unregistered = true; 243 // The MDPInfo instance can still be referenced by the
244 // |ProcessMemoryDumpAsyncState.pending_dump_providers|. For this reason
245 // the MDPInfo is flagged as disabled. It will cause ContinueAsyncProcessDump
246 // to just skip it, without actually invoking the |mdp|, which might be
247 // destroyed by the caller soon after this method returns.
248 (*mdp_iter)->disabled = true;
249 dump_providers_.erase(mdp_iter);
245 } 250 }
246 251
247 void MemoryDumpManager::RequestGlobalDump( 252 void MemoryDumpManager::RequestGlobalDump(
248 MemoryDumpType dump_type, 253 MemoryDumpType dump_type,
249 MemoryDumpLevelOfDetail level_of_detail, 254 MemoryDumpLevelOfDetail level_of_detail,
250 const MemoryDumpCallback& callback) { 255 const MemoryDumpCallback& callback) {
251 // Bail out immediately if tracing is not enabled at all. 256 // Bail out immediately if tracing is not enabled at all.
252 if (!UNLIKELY(subtle::NoBarrier_Load(&memory_tracing_enabled_))) { 257 if (!UNLIKELY(subtle::NoBarrier_Load(&memory_tracing_enabled_))) {
253 if (!callback.is_null()) 258 if (!callback.is_null())
254 callback.Run(0u /* guid */, false /* success */); 259 callback.Run(0u /* guid */, false /* success */);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 } 294 }
290 295
291 void MemoryDumpManager::CreateProcessDump(const MemoryDumpRequestArgs& args, 296 void MemoryDumpManager::CreateProcessDump(const MemoryDumpRequestArgs& args,
292 const MemoryDumpCallback& callback) { 297 const MemoryDumpCallback& callback) {
293 TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(kTraceCategory, "ProcessMemoryDump", 298 TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(kTraceCategory, "ProcessMemoryDump",
294 TRACE_ID_MANGLE(args.dump_guid)); 299 TRACE_ID_MANGLE(args.dump_guid));
295 300
296 scoped_ptr<ProcessMemoryDumpAsyncState> pmd_async_state; 301 scoped_ptr<ProcessMemoryDumpAsyncState> pmd_async_state;
297 { 302 {
298 AutoLock lock(lock_); 303 AutoLock lock(lock_);
299 pmd_async_state.reset(new ProcessMemoryDumpAsyncState( 304 pmd_async_state.reset(
300 args, dump_providers_.begin(), session_state_, callback, 305 new ProcessMemoryDumpAsyncState(args, dump_providers_, session_state_,
301 dump_thread_->task_runner())); 306 callback, dump_thread_->task_runner()));
302 } 307 }
303 308
304 TRACE_EVENT_WITH_FLOW0(kTraceCategory, "MemoryDumpManager::CreateProcessDump", 309 TRACE_EVENT_WITH_FLOW0(kTraceCategory, "MemoryDumpManager::CreateProcessDump",
305 TRACE_ID_MANGLE(args.dump_guid), 310 TRACE_ID_MANGLE(args.dump_guid),
306 TRACE_EVENT_FLAG_FLOW_OUT); 311 TRACE_EVENT_FLAG_FLOW_OUT);
307 312
308 // Start the thread hop. |dump_providers_| are kept sorted by thread, so 313 // Start the thread hop. |dump_providers_| are kept sorted by thread, so
309 // ContinueAsyncProcessDump will hop at most once per thread (w.r.t. thread 314 // ContinueAsyncProcessDump will hop at most once per thread (w.r.t. thread
310 // affinity specified by the MemoryDumpProvider(s) in RegisterDumpProvider()). 315 // affinity specified by the MemoryDumpProvider(s) in RegisterDumpProvider()).
311 ContinueAsyncProcessDump(std::move(pmd_async_state)); 316 ContinueAsyncProcessDump(pmd_async_state.release());
312 } 317 }
313 318
314 // At most one ContinueAsyncProcessDump() can be active at any time for a given 319 // At most one ContinueAsyncProcessDump() can be active at any time for a given
315 // PMD, regardless of status of the |lock_|. |lock_| is used here purely to 320 // PMD, regardless of status of the |lock_|. |lock_| is used here purely to
316 // ensure consistency w.r.t. (un)registrations of |dump_providers_|. 321 // ensure consistency w.r.t. (un)registrations of |dump_providers_|.
317 // The linearization of dump providers' OnMemoryDump invocations is achieved by 322 // The linearization of dump providers' OnMemoryDump invocations is achieved by
318 // means of subsequent PostTask(s). 323 // means of subsequent PostTask(s).
319 // 324 //
320 // 1) Prologue: 325 // 1) Prologue:
326 // - If this was the last hop, create a trace event, add it to the trace
327 // and finalize (invoke callback).
328 // - Check if we are on the right thread. If not hop and continue there.
321 // - Check if the dump provider is disabled, if so skip the dump. 329 // - Check if the dump provider is disabled, if so skip the dump.
322 // - Check if we are on the right thread. If not hop and continue there.
323 // 2) Invoke the dump provider's OnMemoryDump() (unless skipped). 330 // 2) Invoke the dump provider's OnMemoryDump() (unless skipped).
324 // 3) Epilogue: 331 // 3) Epilogue:
325 // - Unregister the dump provider if it failed too many times consecutively. 332 // - Unregister the dump provider if it failed too many times consecutively.
326 // - Advance the |next_dump_provider| iterator to the next dump provider. 333 // - Pop() the MDP from the |pending_dump_providers| list, eventually
327 // - If this was the last hop, create a trace event, add it to the trace 334 // destroying the MDPInfo if that was unregistered in the meantime.
328 // and finalize (invoke callback).
329
330 void MemoryDumpManager::ContinueAsyncProcessDump( 335 void MemoryDumpManager::ContinueAsyncProcessDump(
331 scoped_ptr<ProcessMemoryDumpAsyncState> pmd_async_state) { 336 ProcessMemoryDumpAsyncState* owned_pmd_async_state) {
332 // Initalizes the ThreadLocalEventBuffer to guarantee that the TRACE_EVENTs 337 // Initalizes the ThreadLocalEventBuffer to guarantee that the TRACE_EVENTs
333 // in the PostTask below don't end up registering their own dump providers 338 // in the PostTask below don't end up registering their own dump providers
334 // (for discounting trace memory overhead) while holding the |lock_|. 339 // (for discounting trace memory overhead) while holding the |lock_|.
335 TraceLog::GetInstance()->InitializeThreadLocalEventBufferIfSupported(); 340 TraceLog::GetInstance()->InitializeThreadLocalEventBufferIfSupported();
336 341
337 const uint64_t dump_guid = pmd_async_state->req_args.dump_guid; 342 // In theory |owned_pmd_async_state| should be a scoped_ptr. The only reason
338 const char* dump_provider_name = nullptr; 343 // why it isn't is because of the corner case logic of |did_post_task| below,
344 // which needs to take back the ownership of the |pmd_async_state| when a
345 // thread goes away and consequently the PostTask() fails.
346 // Unfortunately, PostTask() destroys the scoped_ptr arguments upon failure
347 // to prevent accidental leaks. Using a scoped_ptr would prevent us to to
348 // skip the hop and move on. Hence the manual naked -> scoped ptr juggling.
349 auto pmd_async_state = make_scoped_ptr(owned_pmd_async_state);
350 owned_pmd_async_state = nullptr;
339 351
340 // Pid of the target process being dumped. Often kNullProcessId (= current 352 if (pmd_async_state->pending_dump_providers.empty())
341 // process), non-zero when the coordinator process creates dumps on behalf 353 return FinalizeDumpAndAddToTrace(std::move(pmd_async_state));
342 // of child processes (see crbug.com/461788).
343 ProcessId pid;
344 354
345 // DO NOT put any LOG() statement in the locked sections, as in some contexts 355 // Read MemoryDumpProviderInfo thread safety considerations in
346 // (GPU process) LOG() ends up performing PostTask/IPCs. 356 // memory_dump_manager.h when accessing |mdpinfo| fields.
347 MemoryDumpProvider* mdp; 357 MemoryDumpProviderInfo* mdpinfo =
348 bool skip_dump = false; 358 pmd_async_state->pending_dump_providers.back().get();
349 {
350 AutoLock lock(lock_);
351 359
352 auto mdp_info = pmd_async_state->next_dump_provider; 360 // If the dump provider did not specify a thread affinity, dump on
353 mdp = mdp_info->dump_provider; 361 // |dump_thread_|. Note that |dump_thread_| might have been Stop()-ed at this
354 dump_provider_name = mdp_info->name; 362 // point (if tracing was disabled in the meanwhile). In such case the
355 pid = mdp_info->options.target_pid; 363 // PostTask() below will fail, but |task_runner| should always be non-null.
364 SingleThreadTaskRunner* task_runner = mdpinfo->task_runner.get();
365 if (!task_runner)
366 task_runner = pmd_async_state->dump_thread_task_runner.get();
356 367
357 // If the dump provider did not specify a thread affinity, dump on 368 if (!task_runner->BelongsToCurrentThread()) {
358 // |dump_thread_|. 369 // It's time to hop onto another thread.
359 SingleThreadTaskRunner* task_runner = mdp_info->task_runner.get(); 370 const bool did_post_task = task_runner->PostTask(
360 if (!task_runner) 371 FROM_HERE, Bind(&MemoryDumpManager::ContinueAsyncProcessDump,
361 task_runner = pmd_async_state->dump_thread_task_runner.get(); 372 Unretained(this), Unretained(pmd_async_state.get())));
373 if (did_post_task) {
374 // Ownership is tranferred to the next ContinueAsyncProcessDump().
375 ignore_result(pmd_async_state.release());
376 return;
377 }
378 // The thread is gone. Skip the dump provider and keep going.
379 mdpinfo->disabled = true;
380 }
362 381
363 // |dump_thread_| might have been Stop()-ed at this point (if tracing was 382 // At this point wither we are on the right thread (|mdpinfo.task_runner|)
364 // disabled in the meanwhile). In such case the PostTask() below will fail. 383 // to access mdp fields, or the right thread is gone (and |disabled| == true).
365 // |task_runner|, however, should always be non-null.
366 DCHECK(task_runner);
367 384
368 if (mdp_info->disabled || mdp_info->unregistered) { 385 if (!mdpinfo->disabled) {
369 skip_dump = true; 386 // Invoke the dump provider.
370 } else if (!task_runner->BelongsToCurrentThread()) {
371 // It's time to hop onto another thread.
372
373 // Copy the callback + arguments just for the unlikley case in which
374 // PostTask fails. In such case the Bind helper will destroy the
375 // pmd_async_state and we must keep a copy of the fields to notify the
376 // abort.
377 MemoryDumpCallback callback = pmd_async_state->callback;
378 scoped_refptr<SingleThreadTaskRunner> callback_task_runner =
379 pmd_async_state->callback_task_runner;
380
381 const bool did_post_task = task_runner->PostTask(
382 FROM_HERE, Bind(&MemoryDumpManager::ContinueAsyncProcessDump,
383 Unretained(this), Passed(&pmd_async_state)));
384 if (did_post_task)
385 return;
386
387 // The thread is gone. At this point the best thing we can do is to
388 // disable the dump provider and abort this dump.
389 mdp_info->disabled = true;
390 return AbortDumpLocked(callback, callback_task_runner, dump_guid);
391 }
392 } // AutoLock(lock_)
393
394 // Invoke the dump provider without holding the |lock_|.
395 bool finalize = false;
396 bool dump_successful = false;
397
398 if (!skip_dump) {
399 TRACE_EVENT_WITH_FLOW1(kTraceCategory, 387 TRACE_EVENT_WITH_FLOW1(kTraceCategory,
400 "MemoryDumpManager::ContinueAsyncProcessDump", 388 "MemoryDumpManager::ContinueAsyncProcessDump",
401 TRACE_ID_MANGLE(dump_guid), 389 TRACE_ID_MANGLE(pmd_async_state->req_args.dump_guid),
402 TRACE_EVENT_FLAG_FLOW_IN | TRACE_EVENT_FLAG_FLOW_OUT, 390 TRACE_EVENT_FLAG_FLOW_IN | TRACE_EVENT_FLAG_FLOW_OUT,
403 "dump_provider.name", dump_provider_name); 391 "dump_provider.name", mdpinfo->name);
392
393 // Pid of the target process being dumped. Often kNullProcessId (= current
394 // process), non-zero when the coordinator process creates dumps on behalf
395 // of child processes (see crbug.com/461788).
396 ProcessId target_pid = mdpinfo->options.target_pid;
397 ProcessMemoryDump* pmd =
398 pmd_async_state->GetOrCreateMemoryDumpContainerForProcess(target_pid);
404 MemoryDumpArgs args = {pmd_async_state->req_args.level_of_detail}; 399 MemoryDumpArgs args = {pmd_async_state->req_args.level_of_detail};
405 ProcessMemoryDump* process_memory_dump = 400 bool dump_successful = mdpinfo->dump_provider->OnMemoryDump(args, pmd);
406 pmd_async_state->GetOrCreateMemoryDumpContainerForProcess(pid);
407 dump_successful = mdp->OnMemoryDump(args, process_memory_dump);
408 }
409 401
410 {
411 AutoLock lock(lock_);
412 auto mdp_info = pmd_async_state->next_dump_provider;
413 if (dump_successful) { 402 if (dump_successful) {
414 mdp_info->consecutive_failures = 0; 403 mdpinfo->consecutive_failures = 0;
415 } else if (!skip_dump) { 404 } else {
416 ++mdp_info->consecutive_failures; 405 ++mdpinfo->consecutive_failures;
417 if (mdp_info->consecutive_failures >= kMaxConsecutiveFailuresCount) { 406 if (mdpinfo->consecutive_failures >= kMaxConsecutiveFailuresCount) {
418 mdp_info->disabled = true; 407 mdpinfo->disabled = true;
408 LOG(ERROR) << "MemoryDumpProvider \"" << mdpinfo->name << "\" failed, "
409 << "possibly due to sandboxing (crbug.com/461788)."
410 << "Disabling dumper for current process. Try --no-sandbox.";
419 } 411 }
420 } 412 }
421 ++pmd_async_state->next_dump_provider; 413 } // if (!mdpinfo->disabled)
422 finalize = pmd_async_state->next_dump_provider == dump_providers_.end();
423 414
424 if (mdp_info->unregistered) 415 pmd_async_state->pending_dump_providers.pop_back();
425 dump_providers_.erase(mdp_info); 416 ContinueAsyncProcessDump(pmd_async_state.release());
426 }
427
428 if (!skip_dump && !dump_successful) {
429 LOG(ERROR) << "MemoryDumpProvider \"" << dump_provider_name << "\" failed, "
430 << "possibly due to sandboxing (crbug.com/461788)."
431 << "Disabling dumper for current process. Try --no-sandbox.";
432 }
433
434 if (finalize)
435 return FinalizeDumpAndAddToTrace(std::move(pmd_async_state));
436
437 ContinueAsyncProcessDump(std::move(pmd_async_state));
438 } 417 }
439 418
440 // static 419 // static
441 void MemoryDumpManager::FinalizeDumpAndAddToTrace( 420 void MemoryDumpManager::FinalizeDumpAndAddToTrace(
442 scoped_ptr<ProcessMemoryDumpAsyncState> pmd_async_state) { 421 scoped_ptr<ProcessMemoryDumpAsyncState> pmd_async_state) {
422 DCHECK(pmd_async_state->pending_dump_providers.empty());
443 const uint64_t dump_guid = pmd_async_state->req_args.dump_guid; 423 const uint64_t dump_guid = pmd_async_state->req_args.dump_guid;
444 if (!pmd_async_state->callback_task_runner->BelongsToCurrentThread()) { 424 if (!pmd_async_state->callback_task_runner->BelongsToCurrentThread()) {
445 scoped_refptr<SingleThreadTaskRunner> callback_task_runner = 425 scoped_refptr<SingleThreadTaskRunner> callback_task_runner =
446 pmd_async_state->callback_task_runner; 426 pmd_async_state->callback_task_runner;
447 callback_task_runner->PostTask( 427 callback_task_runner->PostTask(
448 FROM_HERE, Bind(&MemoryDumpManager::FinalizeDumpAndAddToTrace, 428 FROM_HERE, Bind(&MemoryDumpManager::FinalizeDumpAndAddToTrace,
449 Passed(&pmd_async_state))); 429 Passed(&pmd_async_state)));
450 return; 430 return;
451 } 431 }
452 432
(...skipping 23 matching lines...) Expand all
476 456
477 if (!pmd_async_state->callback.is_null()) { 457 if (!pmd_async_state->callback.is_null()) {
478 pmd_async_state->callback.Run(dump_guid, true /* success */); 458 pmd_async_state->callback.Run(dump_guid, true /* success */);
479 pmd_async_state->callback.Reset(); 459 pmd_async_state->callback.Reset();
480 } 460 }
481 461
482 TRACE_EVENT_NESTABLE_ASYNC_END0(kTraceCategory, "ProcessMemoryDump", 462 TRACE_EVENT_NESTABLE_ASYNC_END0(kTraceCategory, "ProcessMemoryDump",
483 TRACE_ID_MANGLE(dump_guid)); 463 TRACE_ID_MANGLE(dump_guid));
484 } 464 }
485 465
486 // static
487 void MemoryDumpManager::AbortDumpLocked(
488 MemoryDumpCallback callback,
489 scoped_refptr<SingleThreadTaskRunner> task_runner,
490 uint64_t dump_guid) {
491 if (callback.is_null())
492 return; // There is nothing to NACK.
493
494 // Post the callback even if we are already on the right thread to avoid
495 // invoking the callback while holding the lock_.
496 task_runner->PostTask(FROM_HERE,
497 Bind(callback, dump_guid, false /* success */));
498 }
499
500 void MemoryDumpManager::OnTraceLogEnabled() { 466 void MemoryDumpManager::OnTraceLogEnabled() {
501 bool enabled; 467 bool enabled;
502 TRACE_EVENT_CATEGORY_GROUP_ENABLED(kTraceCategory, &enabled); 468 TRACE_EVENT_CATEGORY_GROUP_ENABLED(kTraceCategory, &enabled);
503 if (!enabled) 469 if (!enabled)
504 return; 470 return;
505 471
506 // Initialize the TraceLog for the current thread. This is to avoid that the 472 // Initialize the TraceLog for the current thread. This is to avoid that the
507 // TraceLog memory dump provider is registered lazily in the PostTask() below 473 // TraceLog memory dump provider is registered lazily in the PostTask() below
508 // while the |lock_| is taken; 474 // while the |lock_| is taken;
509 TraceLog::GetInstance()->InitializeThreadLocalEventBufferIfSupported(); 475 TraceLog::GetInstance()->InitializeThreadLocalEventBufferIfSupported();
(...skipping 24 matching lines...) Expand all
534 TRACE_EVENT_API_ADD_METADATA_EVENT( 500 TRACE_EVENT_API_ADD_METADATA_EVENT(
535 "typeNames", "typeNames", 501 "typeNames", "typeNames",
536 scoped_refptr<ConvertableToTraceFormat>(type_name_deduplicator)); 502 scoped_refptr<ConvertableToTraceFormat>(type_name_deduplicator));
537 } 503 }
538 504
539 DCHECK(!dump_thread_); 505 DCHECK(!dump_thread_);
540 dump_thread_ = std::move(dump_thread); 506 dump_thread_ = std::move(dump_thread);
541 session_state_ = new MemoryDumpSessionState(stack_frame_deduplicator, 507 session_state_ = new MemoryDumpSessionState(stack_frame_deduplicator,
542 type_name_deduplicator); 508 type_name_deduplicator);
543 509
544 for (auto it = dump_providers_.begin(); it != dump_providers_.end(); ++it) {
545 it->disabled = false;
546 it->consecutive_failures = 0;
547 }
548
549 subtle::NoBarrier_Store(&memory_tracing_enabled_, 1); 510 subtle::NoBarrier_Store(&memory_tracing_enabled_, 1);
550 511
551 // TODO(primiano): This is a temporary hack to disable periodic memory dumps 512 // TODO(primiano): This is a temporary hack to disable periodic memory dumps
552 // when running memory benchmarks until telemetry uses TraceConfig to 513 // when running memory benchmarks until telemetry uses TraceConfig to
553 // enable/disable periodic dumps. See crbug.com/529184 . 514 // enable/disable periodic dumps. See crbug.com/529184 .
554 if (!is_coordinator_ || 515 if (!is_coordinator_ ||
555 CommandLine::ForCurrentProcess()->HasSwitch( 516 CommandLine::ForCurrentProcess()->HasSwitch(
556 "enable-memory-benchmarking")) { 517 "enable-memory-benchmarking")) {
557 return; 518 return;
558 } 519 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 MemoryDumpManager::MemoryDumpProviderInfo::MemoryDumpProviderInfo( 571 MemoryDumpManager::MemoryDumpProviderInfo::MemoryDumpProviderInfo(
611 MemoryDumpProvider* dump_provider, 572 MemoryDumpProvider* dump_provider,
612 const char* name, 573 const char* name,
613 const scoped_refptr<SingleThreadTaskRunner>& task_runner, 574 const scoped_refptr<SingleThreadTaskRunner>& task_runner,
614 const MemoryDumpProvider::Options& options) 575 const MemoryDumpProvider::Options& options)
615 : dump_provider(dump_provider), 576 : dump_provider(dump_provider),
616 name(name), 577 name(name),
617 task_runner(task_runner), 578 task_runner(task_runner),
618 options(options), 579 options(options),
619 consecutive_failures(0), 580 consecutive_failures(0),
620 disabled(false), 581 disabled(false) {}
621 unregistered(false) {}
622 582
623 MemoryDumpManager::MemoryDumpProviderInfo::~MemoryDumpProviderInfo() {} 583 MemoryDumpManager::MemoryDumpProviderInfo::~MemoryDumpProviderInfo() {}
624 584
625 bool MemoryDumpManager::MemoryDumpProviderInfo::operator<( 585 bool MemoryDumpManager::MemoryDumpProviderInfo::Comparator::operator()(
626 const MemoryDumpProviderInfo& other) const { 586 const scoped_refptr<MemoryDumpManager::MemoryDumpProviderInfo>& a,
627 if (task_runner == other.task_runner) 587 const scoped_refptr<MemoryDumpManager::MemoryDumpProviderInfo>& b) const {
628 return dump_provider < other.dump_provider; 588 if (!a || !b)
589 return a.get() < b.get();
629 // Ensure that unbound providers (task_runner == nullptr) always run last. 590 // Ensure that unbound providers (task_runner == nullptr) always run last.
630 return !(task_runner < other.task_runner); 591 // Rationale: some unbound dump providers are known to be slow, keep them last
592 // to avoid skewing timings of the other dump providers.
593 return std::tie(a->task_runner, a->dump_provider) >
594 std::tie(b->task_runner, b->dump_provider);
631 } 595 }
632 596
633 MemoryDumpManager::ProcessMemoryDumpAsyncState::ProcessMemoryDumpAsyncState( 597 MemoryDumpManager::ProcessMemoryDumpAsyncState::ProcessMemoryDumpAsyncState(
634 MemoryDumpRequestArgs req_args, 598 MemoryDumpRequestArgs req_args,
635 MemoryDumpProviderInfoSet::iterator next_dump_provider, 599 const MemoryDumpProviderInfo::OrderedSet& dump_providers,
636 const scoped_refptr<MemoryDumpSessionState>& session_state, 600 const scoped_refptr<MemoryDumpSessionState>& session_state,
637 MemoryDumpCallback callback, 601 MemoryDumpCallback callback,
638 const scoped_refptr<SingleThreadTaskRunner>& dump_thread_task_runner) 602 const scoped_refptr<SingleThreadTaskRunner>& dump_thread_task_runner)
639 : req_args(req_args), 603 : req_args(req_args),
640 next_dump_provider(next_dump_provider),
641 session_state(session_state), 604 session_state(session_state),
642 callback(callback), 605 callback(callback),
643 callback_task_runner(MessageLoop::current()->task_runner()), 606 callback_task_runner(MessageLoop::current()->task_runner()),
644 dump_thread_task_runner(dump_thread_task_runner) {} 607 dump_thread_task_runner(dump_thread_task_runner) {
608 pending_dump_providers.reserve(dump_providers.size());
609 pending_dump_providers.assign(dump_providers.rbegin(), dump_providers.rend());
610 }
645 611
646 MemoryDumpManager::ProcessMemoryDumpAsyncState::~ProcessMemoryDumpAsyncState() { 612 MemoryDumpManager::ProcessMemoryDumpAsyncState::~ProcessMemoryDumpAsyncState() {
647 } 613 }
648 614
649 ProcessMemoryDump* MemoryDumpManager::ProcessMemoryDumpAsyncState:: 615 ProcessMemoryDump* MemoryDumpManager::ProcessMemoryDumpAsyncState::
650 GetOrCreateMemoryDumpContainerForProcess(ProcessId pid) { 616 GetOrCreateMemoryDumpContainerForProcess(ProcessId pid) {
651 auto iter = process_dumps.find(pid); 617 auto iter = process_dumps.find(pid);
652 if (iter == process_dumps.end()) { 618 if (iter == process_dumps.end()) {
653 scoped_ptr<ProcessMemoryDump> new_pmd(new ProcessMemoryDump(session_state)); 619 scoped_ptr<ProcessMemoryDump> new_pmd(new ProcessMemoryDump(session_state));
654 iter = process_dumps.insert(std::make_pair(pid, std::move(new_pmd))).first; 620 iter = process_dumps.insert(std::make_pair(pid, std::move(new_pmd))).first;
655 } 621 }
656 return iter->second.get(); 622 return iter->second.get();
657 } 623 }
658 624
659 } // namespace trace_event 625 } // namespace trace_event
660 } // namespace base 626 } // namespace base
OLDNEW
« no previous file with comments | « base/trace_event/memory_dump_manager.h ('k') | base/trace_event/memory_dump_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698