1 /* Benchmarks for the mbuiter module.
2 Copyright (C) 2023-2025 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
25 #include "bench-multibyte.h"
28 unsigned long long volatile result
;
31 do_test (char test
, int repeat
, const char *locale_name
, const char *text
)
33 printf ("Test %c\n", test
);
34 if (setlocale (LC_ALL
, locale_name
) != NULL
)
36 struct timings_state ts
;
40 for (count
= 0; count
< repeat
; count
++)
42 unsigned long long sum
= 0;
44 for (mbui_init (iter
, text
); mbui_avail (iter
); mbui_advance (iter
))
46 sum
+= mbui_cur (iter
).wc
;
56 printf ("Skipping test: locale %s not installed.\n", locale_name
);
61 /* Performs some or all of the following tests:
62 a - ASCII text, C locale
63 b - ASCII text, UTF-8 locale
64 c - French text, C locale
65 d - French text, ISO-8859-1 locale
66 e - French text, UTF-8 locale
67 f - Greek text, C locale
68 g - Greek text, ISO-8859-7 locale
69 h - Greek text, UTF-8 locale
70 i - Chinese text, UTF-8 locale
71 j - Chinese text, GB18030 locale
72 Pass the tests to be performed as first argument. */
74 main (int argc
, char *argv
[])
78 fprintf (stderr
, "Usage: %s TESTS REPETITIONS\n", argv
[0]);
79 fprintf (stderr
, "Example: %s abcdefghij 100000\n", argv
[0]);
83 const char *tests
= argv
[1];
84 int repeat
= atoi (argv
[2]);
88 /* Execute each test. */
90 for (i
= 0; i
< strlen (tests
); i
++)
97 do_test (test
, repeat
, "C", text_latin_ascii
);
100 do_test (test
, repeat
, "en_US.UTF-8", text_latin_ascii
);
103 do_test (test
, repeat
, "C", text_french_iso8859
);
106 do_test (test
, repeat
, "fr_FR.ISO-8859-1", text_french_iso8859
);
109 do_test (test
, repeat
, "en_US.UTF-8", text_french_utf8
);
112 do_test (test
, repeat
, "C", text_greek_iso8859
);
115 do_test (test
, repeat
, "el_GR.ISO-8859-7", text_greek_iso8859
);
118 do_test (test
, repeat
, "en_US.UTF-8", text_greek_utf8
);
121 do_test (test
, repeat
, "en_US.UTF-8", text_chinese_utf8
);
124 do_test (test
, repeat
, "zh_CN.GB18030", text_chinese_gb18030
);