I've always been deeply impressed by the "string builder classes" offered by really advanced languages like e.g. Java:
QuoteThe StringBuilder Class
StringBuilder objects are like String objects, except that they can be modified. Internally, these objects are treated like variable-length arrays that contain a sequence of characters. At any point, the length and content of the sequence can be changed through method invocations.
Strings should always be used unless string builders offer an advantage in terms of simpler code (see the sample program at the end of this section) or better performance. For example, if you need to concatenate a large number of strings, appending to a StringBuilder object is more efficient.
That goes on for about 5 pages and ends with some really
simple examples. Something similar for C++ is discussed here at StackOverflow (https://stackoverflow.com/questions/2462951/c-equivalent-of-stringbuffer-stringbuilder) (it's only 10 pages to read, go ahead if you have masochistic tendencies).
However, I believe in simple,
basic things, and in
fast assembly code! So I wrote a
StringBuild macro:
include \masm32\MasmBasic\MasmBasic.inc ; download
Init
PrintCpu 0
For_ ecx=0 To 9
NanoTimer()
StringBuild edi ; ---------- start building the string
Let edi="You may initialise the string:"
For_ ecx=1 To 70000
Let edi=CrLf$+"string "+Str$("#%i", ecx)
Next
StringBuild ; ---------- stop string building
PrintLine NanoTimer$(), " for stringbuilder, 70000 strings with 1MB default allocation"
Next
PrintLine CrLf$, "The result: [", Left$(edi, 50), "...", Right$(edi, 50), Str$("], len=%i bytes", Len(edi)), CrLf$
Inkey "Try the normal concat(y)?"
.if eax=="y"
Clr$ edi
PrintLine CrLf$, "This may take a while..."
NanoTimer()
Let edi="You may initialise the string:"
For_ ecx=1 To 70000
Let edi=edi+CrLf$+"string "+Str$("#%i", ecx)
Next
PrintLine NanoTimer$(), " for normal concatenation, 70000 strings"
Inkey CrLf$, "The result: [", Left$(edi, 50), "...", Right$(edi, 50), Str$("], len=%i bytes", Len(edi)), CrLf$
.endif
EndOfCode
Output:
Intel(R) Core(TM) i5-2450M CPU @ 2.50GHz
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Try the normal concat(y)?
This may take a while...
12 s for normal concatenation, 70000 strings
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Source & exe attached. Building requires MasmBasic 16 October 2020 (http://masm32.com/board/index.php?topic=94.0)
MY timings...But, i donĀ“t get it. What is this used for ?
AMD Ryzen 5 2400G with Radeon Vega Graphics
20 ms for stringbuilder, 70000 strings with 1MB default allocation
21 ms for stringbuilder, 70000 strings with 1MB default allocation
16 ms for stringbuilder, 70000 strings with 1MB default allocation
19 ms for stringbuilder, 70000 strings with 1MB default allocation
19 ms for stringbuilder, 70000 strings with 1MB default allocation
19 ms for stringbuilder, 70000 strings with 1MB default allocation
25 ms for stringbuilder, 70000 strings with 1MB default allocation
25 ms for stringbuilder, 70000 strings with 1MB default allocation
25 ms for stringbuilder, 70000 strings with 1MB default allocation
21 ms for stringbuilder, 70000 strings with 1MB default allocation
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Try the normal concat(y)?
This may take a while...
16 s for normal concatenation, 70000 strings
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Thanks, Guga. Roughly a factor 1,000 faster than normal concatenation :tongue:
Quote from: jj2007 on October 16, 2020, 01:10:58 PM
Thanks, Guga. Roughly a factor 1,000 faster than normal concatenation :tongue:
:dazzled: :dazzled: :dazzled: :dazzled: :dazzled: :dazzled: :dazzled: :dazzled: :greenclp: :greenclp: :greenclp: :greenclp: :greenclp: :greenclp: :greenclp: :greenclp: :greenclp:
Intel(R) Core(TM) i7-4930K CPU @ 3.40GHz
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
18 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Try the normal concat(y)?
This may take a while...
12 s for normal concatenation, 70000 strings
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
$ wine StringBuildDemo.exe
Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz
13 ms for stringbuilder, 70000 strings with 1MB default allocation
13 ms for stringbuilder, 70000 strings with 1MB default allocation
13 ms for stringbuilder, 70000 strings with 1MB default allocation
13 ms for stringbuilder, 70000 strings with 1MB default allocation
13 ms for stringbuilder, 70000 strings with 1MB default allocation
13 ms for stringbuilder, 70000 strings with 1MB default allocation
14 ms for stringbuilder, 70000 strings with 1MB default allocation
17 ms for stringbuilder, 70000 strings with 1MB default allocation
14 ms for stringbuilder, 70000 strings with 1MB default allocation
16 ms for stringbuilder, 70000 strings with 1MB default allocation
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Try the normal concat(y)?
This may take a while...
12 s for normal concatenation, 70000 strings
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Intel(R) Core(TM) i3-4150 CPU @ 3.50GHz
15 ms for stringbuilder, 70000 strings with 1MB default allocation
16 ms for stringbuilder, 70000 strings with 1MB default allocation
19 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
18 ms for stringbuilder, 70000 strings with 1MB default allocation
12 ms for stringbuilder, 70000 strings with 1MB default allocation
18 ms for stringbuilder, 70000 strings with 1MB default allocation
19 ms for stringbuilder, 70000 strings with 1MB default allocation
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Try the normal concat(y)?
Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz
16 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
16 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
16 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
15 ms for stringbuilder, 70000 strings with 1MB default allocation
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
Try the normal concat(y)?
This may take a while...
11 s for normal concatenation, 70000 strings
The result: [You may initialise the string:
string #1
string ...69997
string #69998
string #69999
string #70000], len=1038924 bytes
nice Jochen :thup:
now I got curious how fast SSE special material(8characters string)+items(8characters string) randomly would be in a 1MB loop?