blob: eb325abbb0f59252d516efa7e29f204732de0ac0 [file] [log] [blame]
Anders Lewisac4f4b42017-08-08 18:29:51 -07001/*
2 * Copyright (C) 2017 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
Anders Lewisa98a5fb2017-08-09 16:52:19 -070017#include <err.h>
Anders Lewisac4f4b42017-08-08 18:29:51 -070018#include <langinfo.h>
19#include <locale.h>
20#include <stdlib.h>
21
22#include <benchmark/benchmark.h>
23#include "util.h"
24
25static void BM_stdlib_malloc_free(benchmark::State& state) {
26 const size_t nbytes = state.range(0);
27
28 void* c;
29 while (state.KeepRunning()) {
30 c = malloc(nbytes);
31 free(c);
32 }
33
34 state.SetBytesProcessed(uint64_t(state.iterations()) * uint64_t(nbytes));
35}
36BIONIC_BENCHMARK(BM_stdlib_malloc_free);
37
38static void BM_stdlib_mbstowcs(benchmark::State& state) {
39 const size_t buf_alignment = state.range(0);
40 const size_t widebuf_alignment = state.range(1);
41
42 std::vector<char> buf;
43 std::vector<wchar_t> widebuf;
44
45 setlocale(LC_CTYPE, "C.UTF-8")
46 || setlocale(LC_CTYPE, "en_US.UTF-8")
47 || setlocale(LC_CTYPE, "en_GB.UTF-8")
48 || setlocale(LC_CTYPE, "en.UTF-8")
49 || setlocale(LC_CTYPE, "de_DE-8")
50 || setlocale(LC_CTYPE, "fr_FR-8");
Anders Lewisa98a5fb2017-08-09 16:52:19 -070051 if (strcmp(nl_langinfo(CODESET), "UTF-8")) {
52 errx(1, "ERROR: unable to set locale in BM_stdlib_mbstowcs");
53 }
Anders Lewisac4f4b42017-08-08 18:29:51 -070054
55 char* buf_aligned = GetAlignedPtr(&buf, buf_alignment, 500000);
56 wchar_t* widebuf_aligned = GetAlignedPtr(&widebuf, widebuf_alignment, 500000);
57 size_t i, j, k, l;
58 l = 0;
59 for (i=0xc3; i<0xe0; i++)
60 for (j=0x80; j<0xc0; j++)
61 buf[l++] = i, buf[l++] = j;
62 for (i=0xe1; i<0xed; i++)
63 for (j=0x80; j<0xc0; j++)
64 for (k=0x80; k<0xc0; k++)
65 buf[l++] = i, buf[l++] = j, buf[l++] = k;
66 for (i=0xf1; i<0xf4; i++)
67 for (j=0x80; j<0xc0; j++)
68 for (k=0x80; k<0xc0; k++)
69 buf[l++] = i, buf[l++] = j, buf[l++] = 0x80, buf[l++] = k;
70 buf[l++] = 0;
71
72 volatile size_t c __attribute__((unused)) = 0;
73 while (state.KeepRunning()) {
74 c = mbstowcs(widebuf_aligned, buf_aligned, 500000);
75 }
76
77 state.SetBytesProcessed(uint64_t(state.iterations()) * uint64_t(500000));
78}
79BIONIC_BENCHMARK(BM_stdlib_mbstowcs);
80
81static void BM_stdlib_mbrtowc(benchmark::State& state) {
82 const size_t buf_alignment = state.range(0);
83
84 std::vector<char> buf;
85
86 setlocale(LC_CTYPE, "C.UTF-8")
87 || setlocale(LC_CTYPE, "en_US.UTF-8")
88 || setlocale(LC_CTYPE, "en_GB.UTF-8")
89 || setlocale(LC_CTYPE, "en.UTF-8")
90 || setlocale(LC_CTYPE, "de_DE-8")
91 || setlocale(LC_CTYPE, "fr_FR-8");
Anders Lewisa98a5fb2017-08-09 16:52:19 -070092 if (strcmp(nl_langinfo(CODESET), "UTF-8")) {
93 errx(1, "ERROR: unable to set locale in BM_stdlib_mbrtowc");
94 }
Anders Lewisac4f4b42017-08-08 18:29:51 -070095
96 char* buf_aligned = GetAlignedPtr(&buf, buf_alignment, 500000);
97 size_t i, j, k, l;
98 l = 0;
99 for (i=0xc3; i<0xe0; i++)
100 for (j=0x80; j<0xc0; j++)
101 buf[l++] = i, buf[l++] = j;
102 for (i=0xe1; i<0xed; i++)
103 for (j=0x80; j<0xc0; j++)
104 for (k=0x80; k<0xc0; k++)
105 buf[l++] = i, buf[l++] = j, buf[l++] = k;
106 for (i=0xf1; i<0xf4; i++)
107 for (j=0x80; j<0xc0; j++)
108 for (k=0x80; k<0xc0; k++)
109 buf[l++] = i, buf[l++] = j, buf[l++] = 0x80, buf[l++] = k;
110 buf[l++] = 0;
111
112 wchar_t wc = 0;
113 while (state.KeepRunning()) {
114 for (j = 0; buf_aligned[j]; j+=mbrtowc(&wc, buf_aligned + j, 4, NULL)) {
115 }
116 }
117
118 state.SetBytesProcessed(uint64_t(state.iterations()) * uint64_t(500000));
119}
120BIONIC_BENCHMARK(BM_stdlib_mbrtowc);