blob: 82efcc9c0abd1ddd13433571bb5354d340719524 [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <getopt.h>
#include <inttypes.h>
#include <stdint.h>
#include <unistd.h>
#include <thread>
#include "perfetto/base/logging.h"
#include "perfetto/base/time.h"
// Spawns the requested number threads that alternate between busy-waiting and
// sleeping.
namespace perfetto {
namespace {
__attribute__((noreturn)) void BusyWait(int64_t tstart,
int64_t period_us,
int64_t busy_us) {
int64_t tbusy = tstart;
int64_t tnext = tstart;
for (;;) {
tbusy = tnext + busy_us * 1000;
tnext += period_us * 1000;
while (base::GetWallTimeNs().count() < tbusy) {
for (int i = 0; i < 10000; i++) {
asm volatile("" ::: "memory");
}
}
auto tnow = base::GetWallTimeNs().count();
if (tnow >= tnext) {
std::this_thread::yield();
continue;
}
while (tnow < tnext) {
// +1 to prevent sleeping twice when there is truncation.
base::SleepMicroseconds(static_cast<uint32_t>((tnext - tnow) / 1000) + 1);
tnow = base::GetWallTimeNs().count();
}
}
}
int BusyThreadsMain(int argc, char** argv) {
int64_t num_threads = -1;
int64_t period_us = -1;
int64_t duty_cycle = -1;
static struct option long_options[] = {
{"threads", required_argument, nullptr, 't'},
{"period_us", required_argument, nullptr, 'p'},
{"duty_cycle", required_argument, nullptr, 'd'},
{nullptr, 0, nullptr, 0}};
int option_index;
int c;
while ((c = getopt_long(argc, argv, "", long_options, &option_index)) != -1) {
switch (c) {
case 't':
num_threads = atol(optarg);
break;
case 'p':
period_us = atol(optarg);
break;
case 'd':
duty_cycle = atol(optarg);
break;
default:
break;
}
}
if (num_threads < 1 || period_us < 0 || duty_cycle < 1 || duty_cycle > 100) {
PERFETTO_ELOG("Usage: %s --threads=N --period_us=N --duty_cycle=[1-100]",
argv[0]);
return 1;
}
int64_t busy_us = static_cast<int64_t>(period_us * (duty_cycle / 100.0));
PERFETTO_LOG("Spawning %" PRId64 " threads; period duration: %" PRId64
"us; busy duration: %" PRId64 "us.",
num_threads, period_us, busy_us);
int64_t tstart = base::GetWallTimeNs().count();
for (int i = 0; i < num_threads; i++) {
std::thread th(BusyWait, tstart, period_us, busy_us);
th.detach();
}
PERFETTO_LOG("Threads spawned, Ctrl-C to stop.");
while (sleep(600))
;
return 0;
}
} // namespace
} // namespace perfetto
int main(int argc, char** argv) {
return perfetto::BusyThreadsMain(argc, argv);
}