2014-03-11 19:19:06 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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.
|
|
|
|
*/
|
|
|
|
|
2017-08-10 01:52:19 +02:00
|
|
|
#include <err.h>
|
2014-03-11 19:19:06 +01:00
|
|
|
#include <stdio.h>
|
2015-01-21 03:09:05 +01:00
|
|
|
#include <stdio_ext.h>
|
2015-05-13 22:18:04 +02:00
|
|
|
#include <stdlib.h>
|
2014-03-11 19:19:06 +01:00
|
|
|
|
2017-08-23 18:52:50 +02:00
|
|
|
#include <android-base/test_utils.h>
|
2016-02-17 19:23:52 +01:00
|
|
|
#include <benchmark/benchmark.h>
|
2017-07-25 05:01:13 +02:00
|
|
|
#include "util.h"
|
2014-03-11 19:19:06 +01:00
|
|
|
|
2017-08-23 18:52:50 +02:00
|
|
|
static void FillFile(TemporaryFile& tf) {
|
|
|
|
char line[256];
|
|
|
|
memset(line, 'x', sizeof(line));
|
|
|
|
line[sizeof(line) - 1] = '\0';
|
|
|
|
|
|
|
|
FILE* fp = fopen(tf.path, "w");
|
|
|
|
for (size_t i = 0; i < 4096; ++i) fputs(line, fp);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
2014-12-01 22:12:18 +01:00
|
|
|
template <typename Fn>
|
2016-02-17 19:23:52 +01:00
|
|
|
void ReadWriteTest(benchmark::State& state, Fn f, bool buffered) {
|
2016-11-14 14:16:08 +01:00
|
|
|
size_t chunk_size = state.range(0);
|
2016-02-17 19:23:52 +01:00
|
|
|
|
2017-08-23 00:26:07 +02:00
|
|
|
FILE* fp = fopen("/dev/zero", "r+e");
|
2015-01-21 03:09:05 +01:00
|
|
|
__fsetlocking(fp, FSETLOCKING_BYCALLER);
|
2014-03-11 19:19:06 +01:00
|
|
|
char* buf = new char[chunk_size];
|
|
|
|
|
2014-12-01 22:12:18 +01:00
|
|
|
if (!buffered) {
|
|
|
|
setvbuf(fp, 0, _IONBF, 0);
|
|
|
|
}
|
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
while (state.KeepRunning()) {
|
2017-08-23 00:26:07 +02:00
|
|
|
if (f(buf, chunk_size, 1, fp) != 1) {
|
|
|
|
errx(1, "ERROR: op of %zu bytes failed.", chunk_size);
|
|
|
|
}
|
2014-03-11 19:19:06 +01:00
|
|
|
}
|
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
state.SetBytesProcessed(int64_t(state.iterations()) * int64_t(chunk_size));
|
2014-03-11 19:19:06 +01:00
|
|
|
delete[] buf;
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
void BM_stdio_fread(benchmark::State& state) {
|
|
|
|
ReadWriteTest(state, fread, true);
|
2014-12-01 22:12:18 +01:00
|
|
|
}
|
2017-07-25 05:01:13 +02:00
|
|
|
BIONIC_BENCHMARK(BM_stdio_fread);
|
2014-03-11 19:19:06 +01:00
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
void BM_stdio_fwrite(benchmark::State& state) {
|
|
|
|
ReadWriteTest(state, fwrite, true);
|
2014-12-01 22:12:18 +01:00
|
|
|
}
|
2017-07-25 05:01:13 +02:00
|
|
|
BIONIC_BENCHMARK(BM_stdio_fwrite);
|
2014-03-11 19:19:06 +01:00
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
void BM_stdio_fread_unbuffered(benchmark::State& state) {
|
|
|
|
ReadWriteTest(state, fread, false);
|
2014-12-01 22:12:18 +01:00
|
|
|
}
|
2017-07-25 05:01:13 +02:00
|
|
|
BIONIC_BENCHMARK(BM_stdio_fread_unbuffered);
|
2014-03-11 19:19:06 +01:00
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
void BM_stdio_fwrite_unbuffered(benchmark::State& state) {
|
|
|
|
ReadWriteTest(state, fwrite, false);
|
2014-03-11 19:19:06 +01:00
|
|
|
}
|
2017-07-25 05:01:13 +02:00
|
|
|
BIONIC_BENCHMARK(BM_stdio_fwrite_unbuffered);
|
2015-01-17 02:08:31 +01:00
|
|
|
|
2017-08-23 18:52:50 +02:00
|
|
|
#if !defined(__GLIBC__)
|
|
|
|
static void FopenFgetlnFclose(benchmark::State& state, bool no_locking) {
|
|
|
|
TemporaryFile tf;
|
|
|
|
FillFile(tf);
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
FILE* fp = fopen(tf.path, "re");
|
|
|
|
if (no_locking) __fsetlocking(fp, FSETLOCKING_BYCALLER);
|
|
|
|
size_t length;
|
|
|
|
while (fgetln(fp, &length) != nullptr) {
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void BM_stdio_fopen_fgetln_fclose_locking(benchmark::State& state) {
|
|
|
|
FopenFgetlnFclose(state, false);
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_fgetln_fclose_locking);
|
|
|
|
|
|
|
|
void BM_stdio_fopen_fgetln_fclose_no_locking(benchmark::State& state) {
|
|
|
|
FopenFgetlnFclose(state, true);
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_fgetln_fclose_no_locking);
|
|
|
|
#endif
|
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
static void FopenFgetsFclose(benchmark::State& state, bool no_locking) {
|
2017-08-23 18:52:50 +02:00
|
|
|
TemporaryFile tf;
|
|
|
|
FillFile(tf);
|
|
|
|
char buf[BUFSIZ];
|
2016-02-17 19:23:52 +01:00
|
|
|
while (state.KeepRunning()) {
|
2017-08-23 18:52:50 +02:00
|
|
|
FILE* fp = fopen(tf.path, "re");
|
2015-01-21 03:09:05 +01:00
|
|
|
if (no_locking) __fsetlocking(fp, FSETLOCKING_BYCALLER);
|
2017-08-23 18:52:50 +02:00
|
|
|
while (fgets(buf, sizeof(buf), fp) != nullptr) {
|
2017-08-10 01:52:19 +02:00
|
|
|
}
|
2015-01-17 02:08:31 +01:00
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
}
|
2015-01-21 03:09:05 +01:00
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
static void BM_stdio_fopen_fgets_fclose_locking(benchmark::State& state) {
|
|
|
|
FopenFgetsFclose(state, false);
|
2015-01-21 03:09:05 +01:00
|
|
|
}
|
2017-07-25 05:01:13 +02:00
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_fgets_fclose_locking);
|
2015-01-21 03:09:05 +01:00
|
|
|
|
2016-02-17 19:23:52 +01:00
|
|
|
void BM_stdio_fopen_fgets_fclose_no_locking(benchmark::State& state) {
|
|
|
|
FopenFgetsFclose(state, true);
|
2015-01-21 03:09:05 +01:00
|
|
|
}
|
2017-07-25 05:01:13 +02:00
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_fgets_fclose_no_locking);
|
2017-08-09 03:29:51 +02:00
|
|
|
|
2017-08-23 18:52:50 +02:00
|
|
|
static void FopenGetlineFclose(benchmark::State& state, bool no_locking) {
|
|
|
|
TemporaryFile tf;
|
|
|
|
FillFile(tf);
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
FILE* fp = fopen(tf.path, "re");
|
|
|
|
if (no_locking) __fsetlocking(fp, FSETLOCKING_BYCALLER);
|
|
|
|
char* line = nullptr;
|
|
|
|
size_t n = 0;
|
|
|
|
while (getline(&line, &n, fp) != -1) {
|
|
|
|
}
|
|
|
|
free(line);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void BM_stdio_fopen_getline_fclose_locking(benchmark::State& state) {
|
|
|
|
FopenGetlineFclose(state, false);
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_getline_fclose_locking);
|
|
|
|
|
|
|
|
void BM_stdio_fopen_getline_fclose_no_locking(benchmark::State& state) {
|
|
|
|
FopenGetlineFclose(state, true);
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_getline_fclose_no_locking);
|
|
|
|
|
2017-08-09 03:29:51 +02:00
|
|
|
static void FopenFgetcFclose(benchmark::State& state, bool no_locking) {
|
|
|
|
size_t nbytes = state.range(0);
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
FILE* fp = fopen("/dev/zero", "re");
|
|
|
|
if (no_locking) __fsetlocking(fp, FSETLOCKING_BYCALLER);
|
|
|
|
volatile int c __attribute__((unused));
|
|
|
|
for (size_t i = 0; i < nbytes; ++i) {
|
|
|
|
c = fgetc(fp);
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void BM_stdio_fopen_fgetc_fclose_locking(benchmark::State& state) {
|
|
|
|
FopenFgetcFclose(state, false);
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_fgetc_fclose_locking);
|
|
|
|
|
|
|
|
void BM_stdio_fopen_fgetc_fclose_no_locking(benchmark::State& state) {
|
|
|
|
FopenFgetcFclose(state, true);
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_fopen_fgetc_fclose_no_locking);
|
2017-10-27 00:41:49 +02:00
|
|
|
|
|
|
|
static void BM_stdio_printf_literal(benchmark::State& state) {
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
snprintf(buf, sizeof(buf), "this is just a literal string with no format specifiers");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_printf_literal);
|
|
|
|
|
|
|
|
static void BM_stdio_printf_s(benchmark::State& state) {
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
snprintf(buf, sizeof(buf), "this is a more typical error message with detail: %s",
|
|
|
|
"No such file or directory");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_printf_s);
|
|
|
|
|
|
|
|
static void BM_stdio_printf_d(benchmark::State& state) {
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
snprintf(buf, sizeof(buf), "this is a more typical error message with detail: %d", 123456);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_printf_d);
|
2017-11-03 22:00:37 +01:00
|
|
|
|
|
|
|
static void BM_stdio_printf_1$s(benchmark::State& state) {
|
|
|
|
while (state.KeepRunning()) {
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
snprintf(buf, sizeof(buf), "this is a more typical error message with detail: %1$s",
|
|
|
|
"No such file or directory");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BIONIC_BENCHMARK(BM_stdio_printf_1$s);
|