Skip to content

Commit fcc98f8

Browse files
authored
Merge pull request dlang#6606 from wilzbach/merge_stable
Merge remote-tracking branch 'upstream/stable' into merge_stable merged-on-behalf-of: Petar Kirov <[email protected]>
2 parents d682187 + c810c56 commit fcc98f8

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
The performance of `std.algorithm.iteration.joiner` has been improved
2+
3+
$(H4 DMD)
4+
5+
$(CONSOLE
6+
> dmd -O -inline -release ./joiner.d && ./joiner
7+
before.joiner = 57 secs, 834 ms, 289 μs, and 3 hnsecs
8+
new.joiner = 44 secs, 936 ms, 706 μs, and 5 hnsecs
9+
)
10+
11+
$(H4 LDC)
12+
13+
$(CONSOLE
14+
> ldmd -O3 -release -inline joiner.d && ./joiner
15+
before.joiner = 5 secs, 180 ms, 193 μs, and 7 hnsecs
16+
new.joiner = 3 secs, 168 ms, 560 μs, and 6 hnsecs
17+
)
18+
19+
The benchmark code can be found $(LINK2 https://gist.github.com/wilzbach/ffd5d20639766a831fd4b1962572897a, here).

std/uni.d

+10-3
Original file line numberDiff line numberDiff line change
@@ -9003,16 +9003,18 @@ if (isSomeString!S || (isRandomAccessRange!S && hasLength!S && hasSlicing!S && i
90039003
{
90049004
import std.array : appender, array;
90059005
import std.ascii : isASCII;
9006-
import std.utf : byDchar;
9006+
import std.utf : byDchar, codeLength;
9007+
9008+
alias C = ElementEncodingType!S;
90079009

90089010
auto r = s.byDchar;
9009-
for (size_t i; !r.empty; ++i, r.popFront())
9011+
for (size_t i; !r.empty; i += r.front.codeLength!C , r.popFront())
90109012
{
90119013
auto cOuter = r.front;
90129014
ushort idx = indexFn(cOuter);
90139015
if (idx == ushort.max)
90149016
continue;
9015-
auto result = appender!(ElementEncodingType!S[])();
9017+
auto result = appender!(C[])();
90169018
result.reserve(s.length);
90179019
result.put(s[0 .. i]);
90189020
foreach (dchar c; s[i .. $].byDchar)
@@ -9062,6 +9064,11 @@ if (isSomeString!S || (isRandomAccessRange!S && hasLength!S && hasSlicing!S && i
90629064
assert(s == "abcdefghij");
90639065
}
90649066

9067+
@safe unittest // 18993
9068+
{
9069+
static assert(`몬스터/A`.toLower.length == `몬스터/a`.toLower.length);
9070+
}
9071+
90659072

90669073
// generic toUpper/toLower on whole range, returns range
90679074
private auto toCaser(alias indexFn, uint maxIdx, alias tableFn, alias asciiConvert, Range)(Range str)

0 commit comments

Comments
 (0)