@@ -62,6 +62,8 @@ namespace internal {
62
62
63
63
MemoryManager* memory_manager = nullptr ;
64
64
65
+ ProfilerManager* profiler_manager = nullptr ;
66
+
65
67
namespace {
66
68
67
69
static constexpr IterationCount kMaxIterations = 1000000000000 ;
@@ -401,6 +403,41 @@ void BenchmarkRunner::RunWarmUp() {
401
403
}
402
404
}
403
405
406
+ MemoryManager::Result* BenchmarkRunner::RunMemoryManager (
407
+ IterationCount memory_iterations) {
408
+ // TODO(vyng): Consider making BenchmarkReporter::Run::memory_result an
409
+ // optional so we don't have to own the Result here.
410
+ // Can't do it now due to cxx03.
411
+ memory_results.push_back (MemoryManager::Result ());
412
+ MemoryManager::Result* memory_result = &memory_results.back ();
413
+ memory_manager->Start ();
414
+ std::unique_ptr<internal::ThreadManager> manager;
415
+ manager.reset (new internal::ThreadManager (1 ));
416
+ b.Setup ();
417
+ RunInThread (&b, memory_iterations, 0 , manager.get (),
418
+ perf_counters_measurement_ptr);
419
+ manager->WaitForAllThreads ();
420
+ manager.reset ();
421
+ b.Teardown ();
422
+ memory_manager->Stop (*memory_result);
423
+ return memory_result;
424
+ }
425
+
426
+ void BenchmarkRunner::RunProfilerManager () {
427
+ // TODO: Provide a way to specify the number of iterations.
428
+ IterationCount profile_iterations = 1 ;
429
+ std::unique_ptr<internal::ThreadManager> manager;
430
+ manager.reset (new internal::ThreadManager (1 ));
431
+ b.Setup ();
432
+ profiler_manager->AfterSetupStart ();
433
+ RunInThread (&b, profile_iterations, 0 , manager.get (),
434
+ /* perf_counters_measurement_ptr=*/ nullptr );
435
+ manager->WaitForAllThreads ();
436
+ profiler_manager->BeforeTeardownStop ();
437
+ manager.reset ();
438
+ b.Teardown ();
439
+ }
440
+
404
441
void BenchmarkRunner::DoOneRepetition () {
405
442
assert (HasRepeatsRemaining () && " Already done all repetitions?" );
406
443
@@ -445,28 +482,18 @@ void BenchmarkRunner::DoOneRepetition() {
445
482
" then we should have accepted the current iteration run." );
446
483
}
447
484
448
- // Oh, one last thing, we need to also produce the ' memory measurements'. .
485
+ // Produce memory measurements if requested .
449
486
MemoryManager::Result* memory_result = nullptr ;
450
487
IterationCount memory_iterations = 0 ;
451
488
if (memory_manager != nullptr ) {
452
- // TODO(vyng): Consider making BenchmarkReporter::Run::memory_result an
453
- // optional so we don't have to own the Result here.
454
- // Can't do it now due to cxx03.
455
- memory_results.push_back (MemoryManager::Result ());
456
- memory_result = &memory_results.back ();
457
489
// Only run a few iterations to reduce the impact of one-time
458
490
// allocations in benchmarks that are not properly managed.
459
491
memory_iterations = std::min<IterationCount>(16 , iters);
460
- memory_manager->Start ();
461
- std::unique_ptr<internal::ThreadManager> manager;
462
- manager.reset (new internal::ThreadManager (1 ));
463
- b.Setup ();
464
- RunInThread (&b, memory_iterations, 0 , manager.get (),
465
- perf_counters_measurement_ptr);
466
- manager->WaitForAllThreads ();
467
- manager.reset ();
468
- b.Teardown ();
469
- memory_manager->Stop (*memory_result);
492
+ memory_result = RunMemoryManager (memory_iterations);
493
+ }
494
+
495
+ if (profiler_manager != nullptr ) {
496
+ RunProfilerManager ();
470
497
}
471
498
472
499
// Ok, now actually report.
0 commit comments