summaryrefslogtreecommitdiffstats
path: root/vendor/unicode-normalization/benches/bench.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /vendor/unicode-normalization/benches/bench.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/unicode-normalization/benches/bench.rs')
-rw-r--r--vendor/unicode-normalization/benches/bench.rs127
1 files changed, 127 insertions, 0 deletions
diff --git a/vendor/unicode-normalization/benches/bench.rs b/vendor/unicode-normalization/benches/bench.rs
new file mode 100644
index 000000000..a977156ee
--- /dev/null
+++ b/vendor/unicode-normalization/benches/bench.rs
@@ -0,0 +1,127 @@
+#![feature(test)]
+
+extern crate test;
+extern crate unicode_normalization;
+
+use std::fs;
+use test::Bencher;
+use unicode_normalization::UnicodeNormalization;
+
+const ASCII: &'static str = "all types of normalized";
+const NFC: &'static str = "Introducci\u{00f3}n a Unicode.pdf";
+const NFD: &'static str = "Introduccio\u{0301}n a Unicode.pdf";
+
+#[bench]
+fn bench_is_nfc_ascii(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfc(ASCII));
+}
+
+#[bench]
+fn bench_is_nfc_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfc(NFC));
+}
+
+#[bench]
+fn bench_is_nfc_not_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfc(NFD));
+}
+
+#[bench]
+fn bench_is_nfd_ascii(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfd(ASCII));
+}
+
+#[bench]
+fn bench_is_nfd_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfd(NFD));
+}
+
+#[bench]
+fn bench_is_nfd_not_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfd(NFC));
+}
+
+#[bench]
+fn bench_is_nfc_stream_safe_ascii(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfc_stream_safe(ASCII));
+}
+
+#[bench]
+fn bench_is_nfc_stream_safe_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfc_stream_safe(NFC));
+}
+
+#[bench]
+fn bench_is_nfc_stream_safe_not_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfc_stream_safe(NFD));
+}
+
+#[bench]
+fn bench_is_nfd_stream_safe_ascii(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfd_stream_safe(ASCII));
+}
+
+#[bench]
+fn bench_is_nfd_stream_safe_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfd_stream_safe(NFD));
+}
+
+#[bench]
+fn bench_is_nfd_stream_safe_not_normalized(b: &mut Bencher) {
+ b.iter(|| unicode_normalization::is_nfd_stream_safe(NFC));
+}
+
+#[bench]
+fn bench_nfc_ascii(b: &mut Bencher) {
+ b.iter(|| ASCII.nfc().count());
+}
+
+#[bench]
+fn bench_nfd_ascii(b: &mut Bencher) {
+ b.iter(|| ASCII.nfd().count());
+}
+
+#[bench]
+fn bench_nfc_long(b: &mut Bencher) {
+ let long = fs::read_to_string("benches/long.txt").unwrap();
+ b.iter(|| long.nfc().count());
+}
+
+#[bench]
+fn bench_nfd_long(b: &mut Bencher) {
+ let long = fs::read_to_string("benches/long.txt").unwrap();
+ b.iter(|| long.nfd().count());
+}
+
+#[bench]
+fn bench_nfkc_ascii(b: &mut Bencher) {
+ b.iter(|| ASCII.nfkc().count());
+}
+
+#[bench]
+fn bench_nfkd_ascii(b: &mut Bencher) {
+ b.iter(|| ASCII.nfkd().count());
+}
+
+#[bench]
+fn bench_nfkc_long(b: &mut Bencher) {
+ let long = fs::read_to_string("benches/long.txt").unwrap();
+ b.iter(|| long.nfkc().count());
+}
+
+#[bench]
+fn bench_nfkd_long(b: &mut Bencher) {
+ let long = fs::read_to_string("benches/long.txt").unwrap();
+ b.iter(|| long.nfkd().count());
+}
+
+#[bench]
+fn bench_streamsafe_ascii(b: &mut Bencher) {
+ b.iter(|| ASCII.stream_safe().count());
+}
+
+#[bench]
+fn bench_streamsafe_adversarial(b: &mut Bencher) {
+ let s = "bo\u{0300}\u{0301}\u{0302}\u{0303}\u{0304}\u{0305}\u{0306}\u{0307}\u{0308}\u{0309}\u{030a}\u{030b}\u{030c}\u{030d}\u{030e}\u{030f}\u{0310}\u{0311}\u{0312}\u{0313}\u{0314}\u{0315}\u{0316}\u{0317}\u{0318}\u{0319}\u{031a}\u{031b}\u{031c}\u{031d}\u{032e}oom";
+ b.iter(|| s.stream_safe().count());
+}