source: doc/theses/mike_brooks_MMath/string.tex @ 048dde4

Last change on this file since 048dde4 was 048dde4, checked in by Michael Brooks <mlbrooks@…>, 2 days ago

Rough-in gnuplot for "allocn" string graph

  • Property mode set to 100644
File size: 46.6 KB
Line 
1\chapter{String}
2
3\vspace*{-20pt}
4This chapter presents my work on designing and building a modern string type in \CFA.
5The discussion starts with examples of interesting string problems, followed by examples of how these issues are resolved in my design.
6
7
8\section{String Operations}
9
10To prepare for the following discussion, comparisons among C, \CC, Java and \CFA strings are presented, beginning in \VRef[Figure]{f:StrApiCompare}.
11It provides a classic ``cheat sheet'' presentation, summarizing the names of the most-common closely-equivalent operations.
12The over-arching commonality is that operations work on groups of characters for assigning, copying, scanning, and updating.
13
14\begin{figure}[h]
15\begin{cquote}
16\begin{tabular}{@{}l|l|l|l@{}}
17C @char [ ]@                    &  \CC @string@                 & Java @String@     & \CFA @string@     \\
18\hline
19@strcpy@, @strncpy@             & @=@                                   & @=@               & @=@       \\
20@strcat@, @strncat@             & @+@                                   & @+@               & @+@       \\
21@strcmp@, @strncmp@             & @==@, @!=@, @<@, @<=@, @>@, @>=@
22                                                & @equals@, @compareTo@  & @==@, @!=@, @<@, @<=@, @>@, @>=@ \\
23@strlen@                                & @length@, @size@              & @length@                      & @size@        \\
24@[ ]@                                   & @[ ]@                                 & @charAt@          & @[ ]@     \\
25@strncpy@                               & @substr@                              & @substring@       & @( )@     \\
26@strncpy@                               & @replace@                             & @replace@         & @=@ \emph{(on a substring)}\\
27@strstr@                                & @find@                                & @indexOf@         & @find@ \\
28@strcspn@                               & @find_first_of@               & @matches@         & @include@ \\
29@strspn@                                & @find_first_not_of@   & @matches@         & @exclude@ \\
30n/a                                             & @c_str@, @data@               & n/a               & @strcpy@, @strncpy@ \\
31\end{tabular}
32\end{cquote}
33\caption{Comparison of languages' strings, API/``cheat-sheet'' perspective.}
34\label{f:StrApiCompare}
35\end{figure}
36
37As mentioned in \VRef{s:String}, a C string differs from other string types as it uses null termination rather than a length, which leads to explicit storage management;
38hence, most of its group operations are error prone and expensive.
39Most high-level string libraries use a separate length field and specialized storage management to implement group operations.
40Interestingly, \CC strings retain null termination in case it is needed to interface with C library functions.
41\begin{cfa}
42int open( @const char * pathname@, int flags );
43string fname{ "test.cc" );
44open( fname.@c_str()@, O_RDONLY );
45\end{cfa}
46Here, the \CC @c_str@ function does not create a new null-terminated C string from the \CC string, as that requires passing ownership of the C string to the caller for eventual deletion.\footnote{
47C functions like \lstinline{strdup} do return allocated storage that must be freed by the caller.}
48% Instead, each \CC string is null terminated just in case it might be needed for this purpose.
49Providing this backwards compatibility with C has a ubiquitous performance and storage cost.
50
51While \VRef[Figure]{f:StrApiCompare} emphasizes cross-language similarities, it elides many specific operational differences.
52For example, the @replace@ function selects a substring in the target and substitutes it with the source string, which can be smaller or larger than the substring.
53\CC performs the modification on the mutable receiver object
54\begin{cfa}
55string s1 = "abcde";
56s1.replace( 2, 3, "xy" );  $\C[2.25in]{// replace by position (zero origin) and length, mutable}\CRT$
57cout << s1 << endl;
58$\texttt{\small abxy}$
59\end{cfa}
60while Java allocates and returns a new string with the result, leaving the receiver unmodified.
61\label{p:JavaReplace}
62\begin{java}
63String s = "abcde";
64String r = s.replace( "cde", "xy" );  $\C[2.25in]{// replace by text, immutable}$
65System.out.println( s + ' ' + r );
66$\texttt{\small abcde abxy}$
67\end{java}
68% Generally, Java's @String@ type is immutable.
69Java provides a @StringBuffer@ near-analog that is mutable.
70\begin{java}
71StringBuffer sb = new StringBuffer( "abcde" );
72sb.replace( 2, 5, "xy" );  $\C[2.25in]{// replace by position, mutable}\CRT$
73System.out.println( sb );
74$\texttt{\small abxy}$
75\end{java}
76However, there are significant differences;
77\eg, @StringBuffer@'s @substring@ function returns a @String@ copy that is immutable.
78Finally, the operations between these type are asymmetric, \eg @String@ has @replace@ by text but not replace by position and vice versa for @StringBuffer@.
79
80More significant operational differences relate to storage management, often appearing through assignment (@target = source@), and are summarized in \VRef[Figure]{f:StrSemanticCompare}.
81% It calls out the consequences of each language taking a different approach on ``internal'' storage management.
82The following discussion justifies the figure's yes/no entries per language.
83
84\begin{figure}
85\setlength{\extrarowheight}{2pt}
86\begin{tabularx}{\textwidth}{@{}p{0.6in}XXcccc@{}}
87                                        &                       &                       & \multicolumn{4}{@{}c@{}}{\underline{Supports Helpful?}} \\
88                                        & Required      & Helpful       & C                     & \CC           & Java          & \CFA \\
89\hline
90Type abst'n
91                                        & Low-level: The string type is a varying amount of text communicated via a parameter or return.
92                                                                & High-level: The string-typed relieves the user of managing memory for the text.
93                                                                                        & no    & yes   & yes   & yes \\
94\hline
95State
96                                        & \multirow{2}{2in}
97                                        {Fast Initialize: The target receives the characters of the source without copying the characters, resulting in an Alias or Snapshot.}
98                                                                & Alias: The target name is within the source text; changes made in either variable are visible in both.
99                                                                                        & yes   & yes   & no    & yes \\
100\cline{3-7}
101                                        &
102                                                                & Snapshot: The target is an alias within the source until the target changes (copy on write).
103                                                                                        & no    & no    & yes   & yes \\
104\hline
105Symmetry
106                                        & Laxed: The target's type is anything string-like; it may have a different status concerning ownership.
107                                                                & Strict: The target's type is the same as the source; both strings are equivalent peers concerning ownership.
108                                                                                        & --            & no    & yes   & yes \\
109\hline
110Referent
111                                        & Variable-Constrained: The target can accept the entire text of the source.
112                                                                & Fragment: The target can accept an arbitrary substring of the source.
113                                                                                        & no    & no    & yes   & yes
114\end{tabularx}
115
116\noindent
117Notes
118\begin{itemize}[parsep=0pt]
119\item
120        All languages support Required in all criteria.
121\item
122        A language gets ``Supports Helpful'' in one criterion if it can do so without sacrificing the Required achievement on all other criteria.
123\item
124        The C ``string'' is actually @char []@, under the conventions that @<string.h>@ requires. Hence, there is no actual string type in C, so symmetry does not apply.
125\item
126        The Java @String@ class is analyzed; its @StringBuffer@ class behaves similarly to @C++@.
127\end{itemize}
128\caption{Comparison of languages' strings, storage management perspective.}
129\label{f:StrSemanticCompare}
130\end{figure}
131
132In C, the declaration
133\begin{cfa}
134char s[$\,$] = "abcde";
135\end{cfa}
136creates a second-class fixed-sized string-variable, as it can only be used in its lexical context;
137it cannot be passed by value to string operations or user functions as C array's cannot be copied because there is no string-length information passed to the function.
138Therefore, only pointers to strings are first-class, and discussed further.
139\begin{cfa}
140(const) char * s = "abcde";  $\C[2.25in]{// alias state, n/a symmetry, variable-constrained referent}$
141char * s1 = s;  $\C{// alias state, n/a symmetry, variable-constrained referent}$
142char * s2 = s;  $\C{// alias state, n/a symmetry, variable-constrained referent}$
143char * s3 = &s[1];  $\C{// alias state, n/a symmetry, variable-constrained referent}$
144char * s4 = &s3[1];  $\C{// alias state, n/a symmetry, variable-constrained referent}\CRT$
145printf( "%s %s %s %s %s\n", s, s1, s2, s3, s4 );
146$\texttt{\small abcde abcde abcde bcde cde}$
147\end{cfa}
148Note, all of these aliased strings rely on the single null termination character at the end of @s@.
149The issue of symmetry does not apply to C strings because the value and pointer strings are essentially different types, and so this feature is scored as not applicable for C.
150With the type not managing the text storage, there is no ownership question, \ie operations on @s1@ or @s2@ never leads to their memory becoming reusable.
151While @s3@ is a valid C-string that contains a proper substring of @s1@, the @s3@ technique does not constitute having a fragment referent because null termination implies the substring cannot be chosen arbitrarily; the technique works only for suffixes.
152
153In \CC, @string@ offers a high-level abstraction.
154\begin{cfa}
155string s = "abcde";
156string & s1 = s;  $\C[2.25in]{// alias state, lax symmetry, variable-constrained referent}$
157string s2 = s;  $\C{// copy (strict symmetry, variable-constrained referent)}$
158string s3 = s.substr( 1, 2 );  $\C{// copy (strict symmetry, fragment referent)}$
159string s4 = s3.substr( 1, 1 );  $\C{// copy (strict symmetry, fragment referent)}$
160cout << s << ' ' << s1 << ' ' << s2 << ' ' << s3 << ' ' << s4 << endl;
161$\texttt{\small abcde abcde abcde bc c}$
162string & s5 = s.substr(2,4);  $\C{// error: cannot point to temporary}\CRT$
163\end{cfa}
164The lax symmetry reflects how the validity of @s1@ depends on the content and lifetime of @s@.
165It is common practice in \CC to use the @s1@-style pass by reference, with the understanding that the callee only uses the referenced string for the duration of the call, \ie no side-effect using the parameter.
166So, when the called function is a constructor, it is typical to use an @s2@-style copy-initialization to string-object-typed member.
167Exceptions to this pattern are possible, but require the programmer to assure safety where the type system does not.
168The @s3@ initialization is constrained to copy the substring because @c_str@ always provides a null-terminated character, which may be different from the source string.
169@s3@ assignment could be fast by reference counting the text area and using copy-on-write, but would require an implementation upgrade.
170
171In Java, @String@ also offers a high-level abstraction:
172\begin{java}
173String s = "abcde";
174String s1 = s;  $\C[2.25in]{// snapshot state, strict symmetry, variable-constrained referent}$
175String s2 = s.substring( 1, 3 );  $\C{// snapshot state (possible), strict symmetry, fragment referent}$
176String s3 = s2.substring( 1, 2 );  $\C{// snapshot state (possible), strict symmetry, fragment referent}\CRT$
177System.out.println( s + ' ' + s1 + ' ' + s2 + ' ' + s3 );
178System.out.println( (s == s1) + " " + (s == s2) + " " + (s2 == s3) );
179$\texttt{\small abcde abcde bc c}$
180$\texttt{\small true false false}$
181\end{java}
182Note, @substring@ takes a start and end position, rather than a start position and length.
183Here, facts about Java's implicit pointers and pointer equality can over complicate the picture, and so are ignored.
184Furthermore, Java's string immutability means string variables behave as simple values.
185The result in @s1@ is the pointer in @s@, and their pointer equality confirm no time is spent copying characters.
186With @s2@, the case for fast-copy is more subtle.
187Certainly, its value is not pointer-equal to @s@, implying at least a further allocation.
188\PAB{TODO: finish the fast-copy case.}
189Java does not meet the aliasing requirement because immutability make it impossible to modify.
190Java's @StringBuffer@ provides aliasing (see @replace@ example on \VPageref{p:JavaReplace}), though without supporting symmetric treatment of a fragment referent, \eg @substring@ of a @StringBuffer@ is a @String@;
191as a result, @StringBuffer@ scores as \CC.
192The easy symmetry that the Java string enjoys is aided by Java's garbage collection; Java's @s2@ is doing effectively the operation of \CC's @s3@, though without the consequence of complicating memory management.
193\PAB{What complex storage management is going on here?}
194
195Finally, in \CFA, @string@ also offers a high-level abstraction:
196\begin{cfa}
197string s = "abcde";
198string & s1 = s; $\C[2.25in]{// alias state, strict symmetry, variable-constrained referent}$
199string s2 = s; $\C{// snapshot state, strict symmetry, variable-constrained referent}$
200string s3 = s`share; $\C{// alias state, strict symmetry, variable-constrained referent}\CRT$
201string s4 = s( 1, 2 );
202string s5 = s4( 1, 1 );
203sout | s | s1 | s2 | s3 | s4 | s5;
204$\texttt{\small abcde abcde abcde abcde bc c}$
205\end{cfa}
206% all helpful criteria of \VRef[Figure]{f:StrSemanticCompare} are satisfied.
207The \CFA string manages storage, handles all assignments, including those of fragment referents with fast initialization, provides the choice between snapshot and alias semantics, and does so symmetrically with one type (which assures text validity according to the lifecycles of the string variables).
208The intended metaphor for \CFA stings is similar to a GUI text-editor or web browser.
209Select a consecutive block of text using the mouse generates an aliased substring in the file/dialog-box.
210Typing into the selected area is like assigning to an aliased substring, where the highlighted text is replaced with more or less text;
211depending on the text entered, the file/dialog-box content grows or shrinks.
212\PAB{Need to discuss the example, as for the other languages.}
213
214The remainder of this chapter explains how the \CFA string achieves this usage style.
215
216
217\section{Storage Management}
218
219This section discusses issues related to storage management of strings.
220Specifically, it is common for strings to logically overlap partially or completely.
221\begin{cfa}
222string s1 = "abcdef";
223string s2 = s1; $\C{// complete overlap, s2 == "abcdef"}$
224string s3 = s1.substr( 0, 3 ); $\C{// partial overlap, s3 == "abc"}$
225\end{cfa}
226This raises the question of how strings behave when an overlapping component is changed,
227\begin{cfa}
228s3[1] = 'w'; $\C{// what happens to s1 and s2?}$
229\end{cfa}
230which is restricted by a string's mutable or immutable property.
231For example, Java's immutable strings require copy-on-write when any overlapping string changes.
232Note, the notion of underlying string mutability is not specified by @const@; \eg in \CC:
233\begin{cfa}
234const string s1 = "abc";
235\end{cfa}
236the @const@ applies to the @s1@ pointer to @"abc"@, and @"abc"@ is an immutable constant that is \emph{copied} into the string's storage.
237Hence, @s1@ is not pointing at an immutable constant, meaning its underlying string can be mutable, unless some other designation is specified, such as Java's global immutable rule.
238
239
240\subsection{Logical overlap}
241
242\CFA provides a dynamic mechanism to indicate mutable or immutable using the attribute @`share@.
243This aliasing relationship is a sticky-property established at initialization.
244For example, here strings @s1@ and @s1a@ are in an aliasing relationship, while @s2@ is in a copy relationship.
245\input{sharing1.tex}
246Here, the aliasing (@`share@) causes partial changes (subscripting) to flow in both directions.
247\input{sharing2.tex}
248Similarly for complete changes.
249\input{sharing3.tex}
250
251Because string assignment copies the value, RHS aliasing is irrelevant.
252Hence, aliasing of the LHS is unaffected.
253\input{sharing4.tex}
254
255Now, consider string @s1_mid@ being an alias in the middle of @s1@, along with @s2@, made by a simple copy from the middle of @s1@.
256\input{sharing5.tex}
257Again, @`share@ passes changes in both directions; copy does not.
258As a result, the index values for the position of @b@ are 1 in the longer string @"abcd"@ and 0 in the shorter aliased string @"bc"@.
259This alternate positioning also applies to subscripting.
260\input{sharing6.tex}
261
262Finally, assignment flows through the aliasing relationship without affecting its structure.
263\input{sharing7.tex}
264In the @"ff"@ assignment, the result is straightforward to accept because the flow direction is from contained (small) to containing (large).
265The following rules explain aliasing substrings that flow in the opposite direction, large to small.
266
267Growth and shrinkage are natural extensions, as for the text-editor example mentioned earlier, where an empty substring is as real real as an empty string.
268\input{sharing8.tex}
269
270Multiple portions of a string can be aliased.
271% When there are several aliasing substrings at once, the text editor analogy becomes an online multi-user editor.
272%I should be able to edit a paragraph in one place (changing the document's length), without my edits affecting which letters are within a mouse-selection that you had made previously, somewhere else.
273\input{sharing9.tex}
274When @s1_bgn@'s size increases by 3, @s1_mid@'s starting location moves from 1 to 4 and @s1_end@'s from 3 to 6,
275
276When changes happens on an aliasing substring that overlap.
277\input{sharing10.tex}
278Strings @s1_crs@ and @s1_mid@ overlap at character 4, @j@ because the substrings are 3,2 and 4,2.
279When @s1_crs@'s size increases by 1, @s1_mid@'s starting location moves from 4 to 5, but the overlapping character remains, changing to @'+'@.
280
281\PAB{TODO: finish typesetting the demo}
282
283%\input{sharing-demo.tex}
284
285
286\subsection{RAII limitations}
287
288Earlier work on \CFA~\cite[ch.~2]{Schluntz17} implemented object constructors and destructors for all types (basic and user defined).
289A constructor is a user-defined function run implicitly \emph{after} an object's declaration-storage is created, and a destructor is a user-defined function run \emph{before} an object's declaration-storage is deleted.
290This feature, called RAII~\cite[p.~389]{Stroustrup94}, guarantees pre-invariants for users before accessing an object and post invariants for the programming environment after an object terminates.
291
292The purposes of these invariants goes beyond ensuring authentic values inside an object.
293Invariants can also track occurrences of managed objects in other data structures.
294For example, reference counting is a typical application of an invariant outside of the data values.
295With a reference-counting smart-pointer, the constructor and destructor \emph{of a pointer type} tracks the life cycle of the object it points to.
296Both \CC and \CFA RAII systems are powerful enough to achieve reference counting.
297
298In general, a lifecycle function has access to an object by location, \ie constructors and destructors receive a @this@ parameter providing an object's memory address.
299\begin{cfa}
300struct S { int * ip; };
301void ?{}( S & @this@ ) { this.ip = new(); } $\C[3in]{// default constructor}$
302void ?{}( S & @this@, int i ) { ?{}(this); *this.ip = i; } $\C{// initializing constructor}$
303void ?{}( S & @this@, S s ) { this = s; } $\C{// copy constructor}$
304void ^?{}( S & @this@ ) { delete( this.ip ); } $\C{// destructor}\CRT$
305\end{cfa}
306The lifecycle implementation can then add this object to a collection at creation and remove it at destruction.
307A module providing lifecycle semantics can traverse the collection at relevant times to keep the objects ``good.''
308Hence, declaring such an object not only ensures ``good'' authentic values, but also an implicit subscription to a service that keeps the value ``good'' across its lifetime.
309
310In many cases, the relationship between memory location and lifecycle is straightforward.
311For example, stack-allocated objects being used as parameters and returns, with a sender version in one stack frame and a receiver version in another, as opposed to assignment where sender and receiver are in the same stack frame.
312What is crucial for lifecycle management is knowing if the receiver is initialized or uninitialized, \ie an object is or is not currently associated with management.
313To provide this knowledge, languages differentiate between initialization and assignment to a left-hand side.
314\begin{cfa}
315Obj obj2 = obj1;  $\C[1.5in]{// initialization, obj2 is initialized}$
316obj2 = obj1;      $\C{// assignment, obj2 must be initialized for management to work}\CRT$
317\end{cfa}
318Initialization occurs at declaration by value, parameter by argument, return temporary by function call.
319Hence, it is necessary to have two kinds of constructors: by value or object.
320\begin{cfa}
321Obj obj1{ 1, 2, 3 }; $\C[1.5in]{// by value, management is initialized}$
322Obj obj2 = obj1;     $\C{// by obj, management is updated}\CRT$
323\end{cfa}
324When no object management is required, initialization copies the right-hand value.
325Hence, the calling convention remains uniform, where the unmanaged case uses @memcpy@ as the initialization constructor and managed uses the specified initialization constructor.
326
327The \CFA RAII system supports lifecycle functions, except for returning a value from a function to a temporary.
328For example, in \CC:
329\begin{c++}
330struct S {...};
331S identity( S s ) { return s; }
332S s;
333s = identity( s ); // S temp = identity( s ); s = temp;
334\end{c++}
335the generated code for the function call created a temporary with initialization from the function call, and then assigns the temporary to the object.
336This two step approach means extra storage for the temporary and two copies to get the result into the object variable.
337\CC{17} introduced return value-optimization (RVO)~\cite{RVO20} to ``avoid copying an object that a function returns as its value, including avoiding creation of a temporary object''.
338\CFA uses C semantics for function return giving direct value-assignment, which eliminates unnecessary code, but skips an essential feature needed by lifetime management.
339The following discusses the consequences of this semantics with respect to lifetime management of \CFA strings.
340
341The present string-API contribution provides lifetime management with initialization semantics on function return.
342The workaround to achieve the full lifetime semantics does have a runtime performance penalty.
343An alternative API sacrifices return initialization semantics to recover full runtime performance.
344These APIs are layered, with the slower, friendlier High Level API (HL) wrapping the faster, more primitive Low Level API (LL).
345Both API present the same features, up to lifecycle management, with return initialization being disabled in LL and implemented with the workaround in HL.
346The intention is for most future code to target HL.
347When \CFA becomes a full compiler, it can provide return initialization with RVO optimizations.
348Then, programs written with the HL API will simply run faster.
349In the meantime, performance-critical sections of applications use LL.
350Subsequent performance experiments \see{\VRef{s:PerformanceAssessment}} with other string libraries has \CFA strings using the LL API.
351These measurement gives a fair estimate of the goal state for \CFA.
352
353
354\subsection{Memory management}
355
356A centrepiece of the string module is its memory manager.
357The management scheme defines a shared buffer for string text.
358Allocation in this buffer is via a bump-pointer;
359the buffer is compacted and/or relocated with growth when it fills.
360A string is a smart pointer into this buffer.
361
362This cycle of frequent cheap allocations, interspersed with infrequent expensive compactions, has obvious similarities to a general-purpose memory manager based on garbage collection (GC).
363A few differences are noteworthy.
364First, in a general purpose manager, the allocated objects may contain pointers to other objects, making the transitive reachability of these objects a crucial property.
365Here, the allocations are text, so one allocation never keeps another alive.
366Second, in a general purpose manager, the handle that keeps an allocation alive is just a lean pointer.
367For strings, a fatter representation is acceptable because there are fewer string head pointers versus chained pointers within nodes as for linked containers.
368
369\begin{figure}
370\includegraphics{memmgr-basic.pdf}
371\caption{String memory-management data structures}
372\label{f:memmgr-basic}
373\end{figure}
374
375\VRef[Figure]{f:memmgr-basic} shows the representation.
376The heap header and text buffer define a sharing context.
377Normally, one global sharing context is appropriate for an entire program;
378concurrent exceptions are discussed in \VRef{s:AvoidingImplicitSharing}.
379A string is a handle into the buffer and linked into a list.
380The list is doubly linked for $O(1)$ insertion and removal at any location.
381Strings are orders in the list by string-text address, where there is no overlapping, and approximately, where there is.
382The header maintains a next-allocation pointer, @alloc@, pointing to the last live allocation in the buffer.
383No external references point into the buffer and the management procedure relocates the text allocations as needed.
384A string handle references a containing string, while its string is contiguous and not null terminated.
385The length sets an upper limit on the string size, but is large (4 or 8 bytes).
386String handles can be allocated in the stack or heap, and represent the string variables in a program.
387Normal C life-time rules apply to guarantee correctness of the string linked-list.
388The text buffer is large enough with good management so that often only one dynamic allocation is necessary during program execution.
389% During this period, strings can vary in size dynamically.
390
391When the text buffer fills, \ie the next new string allocation causes @alloc@ to point beyond the end of the buffer, the strings are compacted.
392The linked handles define all live strings in the buffer, which indirectly defines the allocated and free space in the buffer.
393Since the string handles are in (roughly) sorted order, the handle list can be traversed copying the first text to the start of the buffer and subsequent strings after each over.
394After compaction, if the amount of free storage is still less than the new string allocation, a larger text buffer is heap allocated, the current buffer is copies into the new buffer, and the original buffer is freed.
395Note, the list of string handles is unaffected during a compaction;
396only the string pointers in the handles are modified to new buffer locations.
397
398Object lifecycle events are the \emph{subscription-management} triggers in such a service.
399There are two fundamental string-creation routines: importing external text like a C-string or reading a string, and initialization from an existing \CFA string.
400When importing, storage comes from the end of the buffer, into which the text is copied.
401The new string handle is inserted at the end of the handle list because the new text is at the end of the buffer.
402When initializing from text already in the text buffer, the new handle is a second reference into the original run of characters.
403In this case, the new handle's linked-list position is after the original handle.
404Both string initialization styles preserve the string module's internal invariant that the linked-list order matches the buffer order.
405For string destruction, handles are removed from the list.
406
407Certain string operations can results in a subset (substring) of another string.
408The resulting handle is then placed in the correct sorted position in the list, possible with a short linear search to locate the position.
409For string operations resulting in a new string, that string is allocated at the end of the buffer.
410For shared-edit strings, handles that originally referenced containing locations need to see the new value at the new buffer location.
411These strings are moved to appropriate locations at the end of the list \see{[xref: TBD]}.
412For nonshared-edit strings, a containing string can be moved and the nonshared strings can remain in the same position.
413String assignment words similarly to string initialization, maintain the invariant of linked-list order matching buffer order.
414
415At the level of the memory manager, these modifications can always be explained as assignments and appendment;
416for example, an append is an assignment into the empty substring at the end of the buffer.
417Favourable conditions allow for in-place editing: where there is room for the resulting value in the original buffer location, and where all handles referring to the original buffer location see the new value.
418However, the general case requires a new buffer allocation: where the new value does not fit in the old place, or if other handles are still using the old value.
419
420
421\subsection{Sharing implementation}
422
423The \CFA string module has two mechanisms to handle the case when string handles share a string of text. 
424
425The first type of sharing is the user requests both string handles be views of the same logical, modifiable string.
426This state is typically produced by the substring operation.
427\begin{cfa}
428string s = "abcde";
429string s1 = s( 1, 2 )@`share@; $\C[2.25in]{// explicit sharing}$
430s[1] = 'x'; $\C{// change s and s1}\CRT$
431sout | s | s1;
432$\texttt{\small axcde xc}$
433\end{cfa}
434In a typical substring call, the source string-handle is referencing an entire string, and the resulting, newly made, string handle is referencing a portion of the original.
435In this state, a subsequent modification made by either is visible in both.
436
437The second type of sharing happens when the system implicitly delays the physical execution of a logical \emph{copy} operation, as part of its copy-on-write optimization.
438This state is typically produced by constructing a new string, using an original string as its initialization source.
439\begin{cfa}
440string s = "abcde";
441string s1 = s( 1, 2 )@@; $\C[2.25in]{// no sharing}$
442s[1] = 'x'; $\C{// copy-on-write s1}\CRT$
443sout | s | s1;
444$\texttt{\small axcde bc}$
445\end{cfa}
446In this state, a subsequent modification done on one handle triggers the deferred copy action, leaving the handles referencing different text within the buffer, holding distinct values.
447
448A further abstraction, in the string module's implementation, helps distinguish the two senses of sharing.
449A share-edit set (SES) is an equivalence class over string handles, being the reflexive, symmetric and transitive closure of the relationship of one string being constructed from another, with the ``share'' opt-in given.
450The SES is represented by a second linked list among the handles.
451A string that shares edits with no other is in a SES by itself.
452Inside a SES, a logical modification of one substring portion may change the logical value in another, depending on whether the two actually overlap.
453Conversely, no logical value change can flow outside of a SES.
454Even if a modification on one string handle does not reveal itself \emph{logically} to anther handle in the same SES (because they do not overlap), if the modification is length-changing, completing the modification requires visiting the second handle to adjust its location in the sliding text.
455
456
457\subsection{Avoiding implicit sharing}
458\label{s:AvoidingImplicitSharing}
459
460There are tradeoffs associated with the copy-on-write mechanism.
461Several qualitative matters are detailed in the \VRef{s:PerformanceAssessment} and the qualitative issue of multi-threaded support is introduced here.
462The \CFA sting library provides a switch to disable the sharing mechanism for situations where it is inappropriate.
463
464Because of the inter-linked string handles, any participant managing one string is also managing, directly, the neighbouring strings, and from there, a data structure of the ``set of all strings.''  This data structure is intended for sequential access.
465A negative consequence of this decision is that multiple threads using strings need to be set up so that they avoid attempting to modify (concurrently) an instance of this structure.
466A positive consequence is that a single-threaded program, or a program with several independent threads, can use the sharing context without locking overhead.
467
468When the string library is running with sharing disabled, it runs without implicit thread-safety challenges, which is the same as the \CC STL, and with performance goals similar to the STL.
469Running with sharing disabled can be thought of as a STL-emulation mode.
470Hence, concurrent users of string objects must still bring their own mutual exclusion, but the string library does not add any cross thread uses that are not apparent in a user's code.
471
472\PAB{I could not get this to do anything.}
473The \CFA string library does provides a @string_sharectx@ type to control an ambient sharing context for the current thread.
474It allows two adjustments: to opt out of sharing entirely or to begin sharing within a private context.
475Either way, the chosen mode applies only to the current thread, for the duration of the lifetime of the created  @string_sharectx@ object, up to being suspended by child lifetimes of different contexts.
476The intended use is with stack-managed lifetimes, in which the established context lasts until the current function returns, and affects all functions called that do not create their own contexts.
477\lstinputlisting[language=CFA, firstline=20, lastline=34]{sharectx.run.cfa}
478In this example, the single-letter functions are called in alphabetic order.
479The functions @a@ and @d@ share string character ranges within themselves, but not with each other.
480The functions @b@, @c@ and @e@ never share anything.
481
482[ TODO: true up with ``is thread local'' (implement that and expand this discussion to give a concurrent example, or adjust this wording) ]
483
484
485\subsection{Future work}
486
487To discuss: Unicode
488
489To discuss: Small-string optimization
490
491
492\section{Performance assessment}
493\label{s:PerformanceAssessment}
494
495I assessed the \CFA string library's speed and memory usage against strings in \CC STL.
496The results are presented in even equivalent cases, due to either micro-optimizations foregone, or fundamental costs of the added functionality.
497They also show the benefits and tradeoffs, as >100\% effects, of switching to \CFA, with the tradeoff points quantified.
498The final test shows the overall win of the \CFA text-sharing mechanism.
499It exercises several operations together, showing \CFA enabling clean user code to achieve performance that STL requires less-clean user code to achieve.
500
501To discuss: general goal of ...
502while STL makes you think about memory management, all the time, and if you do your performance can be great ...
503\CFA sacrifices this advantage modestly in exchange for big wins when you're not thinking about memory management.
504[Does this position cover all of it?]
505
506To discuss: revisit HL v LL APIs
507
508To discuss: revisit no-sharing as STL emulation modes
509
510
511\subsection{Methodology}
512
513These tests use randomly generated text fragments of varying lengths.
514A collection of such fragments is a \emph{corpus}.
515The mean length of a fragment from a corpus is a typical explanatory variable.
516Such a length is used in one of three modes:
517\begin{description}
518        \item [Fixed-size] means all string fragments are of the stated size.
519        \item [Varying from 1] means string lengths are drawn from a geometric distribution with the stated mean, and all lengths occur.
520        \item [Varying from 16] means string lengths are drawn from a geometric distribution with the stated mean, but only lengths 16 and above occur; thus, the stated mean is above 16.
521\end{description}
522The geometric distribution implies that lengths much longer than the mean occur frequently.
523The special treatment of length 16 deals with comparison to STL, given that STL has short-string optimization (see [TODO: write and cross-ref future-work SSO]), currently not implemented in \CFA.
524When success, notwithstanding SSO, is illustrated, a fixed-size or from-16 distribution ensures that extra-optimized cases are not part of the mix on the STL side.
525In all experiments that use a corpus, its text is generated and loaded into the SUT before the timed phase begins.
526
527To discuss: vocabulary for reused case variables
528
529To discuss: common approach to iteration and quoted rates
530
531To discuss: hardware and such
532
533To discuss: memory allocator
534
535
536\subsection{Test: Append}
537
538This test measures the speed of appending fragments of text onto a growing string.
539Its subcases include both \CFA being similar to STL and their designs offering a tradeoff.
540
541One experimental variable is logically equivalent operations such as @a = a + b@ \vs @a += b@.
542For numeric types, the generated code is equivalence, giving identical performance.
543However, for string types there can be a significant difference in performance, especially if this code appears in a loop iterating a large number of times.
544This difference might not be intuitive to beginners.
545
546Another experimental variable is whether the user's logical allocation is fresh \vs reused.
547Here, \emph{reusing a logical allocation}, means that the program variable, into which the user is concatenating, previously held a long string:\\
548\begin{cquote}
549\setlength{\tabcolsep}{20pt}
550\begin{tabular}{@{}ll@{}}
551\begin{cfa}
552
553for ( ... ) {
554        @string x;@   // fresh
555        for ( ... )
556                x += ...
557}
558\end{cfa}
559&
560\begin{cfa}
561string x;
562for ( ... ) {
563        @x = "";@  // reused
564        for ( ... )
565                x += ...
566}
567\end{cfa}
568\end{tabular}
569\end{cquote}
570These benchmark drivers have an outer loop for ``until a sample-worthy amount of execution has happened'' and an inner loop for ``build up the desired-length string.''
571In general, a user should not have to care about this difference, yet the STL performs differently in these cases.
572Furthermore, if a routine takes a string by reference, if cannot use the fresh approach.
573Concretely, both cases incur the cost of copying characters into the target string, but only the allocation-fresh case incurs a further reallocation cost, which is generally paid at points of doubling the length.
574For the STL, this cost includes obtaining a fresh buffer from the memory allocator and copying older characters into the new buffer, while \CFA-sharing hides such a cost entirely.
575The fresh \vs reuse distinction is only relevant in the \emph{append} tests.
576
577The \emph{append} tests use the varying-from-1 corpus construction, \ie they do not assume away the STL's advantage for small-string optimization.
578\PAB{To discuss: any other case variables introduced in the performance intro}
579\VRef[Figure]{fig:string-graph-peq-cppemu} shows this behaviour, by the STL and by \CFA in STL emulation mode.
580\CFA reproduces STL's performance, up to a 15\% penalty averaged over the cases shown, diminishing with larger strings, and 50\% in the worst case.
581This penalty characterizes the amount of implementation fine tuning done with STL and not done with \CFA in present state.
582The larger inherent penalty, for a user mismanaging reuse, is 40\% averaged over the cases shown, is minimally 24\%, shows up consistently between the STL and \CFA implementations, and increases with larger strings.
583
584\begin{figure}
585\centering
586        \includegraphics{string-graph-peq-cppemu.pdf}
587%       \includegraphics[width=\textwidth]{string-graph-peq-cppemu.png}
588        \caption{Average time per iteration (lower is better) with one \lstinline{x += y} invocation, comparing \CFA with STL implementations (given \CFA running in STL emulation mode), and comparing the ``fresh'' with ``reused'' reset styles, at various string sizes.}
589        \label{fig:string-graph-peq-cppemu}
590\end{figure}
591
592\begin{figure}
593\centering
594        \includegraphics{string-graph-peq-sharing.pdf}
595%       \includegraphics[width=\textwidth]{string-graph-peq-sharing.png}
596        \caption{Average time per iteration (lower is better) with one \lstinline{x += y} invocation, comparing \CFA (having implicit sharing activated) with STL, and comparing the ``fresh'' with ``reused'' reset styles, at various string sizes.}
597        \label{fig:string-graph-peq-sharing}
598\end{figure}
599
600In sharing mode, \CFA makes the fresh/reuse difference disappear, as shown in \VRef[Figure]{fig:string-graph-peq-sharing}.
601At append lengths 5 and above, \CFA not only splits the two baseline STL cases, but its slowdown of 16\% over (STL with user-managed reuse) is close to the \CFA-v-STL implementation difference seen with \CFA in STL-emulation mode.
602
603\begin{figure}
604\centering
605        \includegraphics{string-graph-pta-sharing.pdf}
606%       \includegraphics[width=\textwidth]{string-graph-pta-sharing.png}
607        \caption{Average time per iteration (lower is better) with one \lstinline{x = x + y} invocation (new, purple bands), comparing \CFA (having implicit sharing activated) with STL.
608For context, the results from \VRef[Figure]{fig:string-graph-peq-sharing} are repeated as the bottom bands.
609While not a design goal, and not graphed out, \CFA in STL-emulation mode outperformed STL in this case; user-managed allocation reuse did not affect any of the implementations in this case.}
610        \label{fig:string-graph-pta-sharing}
611\end{figure}
612
613When the user takes a further step beyond the STL's optimal zone, by running @x = x + y@, as in \VRef[Figure]{fig:string-graph-pta-sharing}, the STL's penalty is above $15 \times$ while \CFA's (with sharing) is under $2 \times$, averaged across the cases shown here.
614Moreover, the STL's gap increases with string size, while \CFA's converges.
615
616
617\subsubsection{Test: Pass argument}
618
619To have introduced:  STL string library forces users to think about memory management when communicating values across a function call
620
621STL charges a prohibitive penalty for passing a string by value.
622With implicit sharing active, \CFA treats this operation as normal and supported.
623This test illustrates a main advantage of the \CFA sharing algorithm.
624It also has a case in which STL's small-string optimization provides a successful mitigation.
625
626\begin{figure}
627\centering
628        \includegraphics{string-graph-pbv.pdf}
629%       \includegraphics[width=\textwidth]{string-graph-pbv.png}
630        \caption{Average time per iteration (lower is better) with one call to a function that takes a by-value string argument, comparing \CFA (having implicit sharing activated) with STL.
631(a) With \emph{Varying-from-1} corpus construction, in which the STL-only benefit of small-string optimization occurs, in varying degrees, at all string sizes.
632(b) With \emph{Fixed-size} corpus construction, in which this benefit applies exactly to strings with length below 16.
633[TODO: show version (b)]}
634        \label{fig:string-graph-pbv}
635\end{figure}
636
637\VRef[Figure]{fig:string-graph-pbv} shows the costs for calling a function that receives a string argument by value.
638STL's performance worsens as string length increases, while \CFA has the same performance at all sizes.
639
640The \CFA cost to pass is nontrivial.
641The contributor is adding and removing the callee's string handle from the global list.
642This cost is $1.5 \times$ to $2 \times$ over STL's when small-string optimization applies, though this cost should be avoidable in the same case, given a \CFA realization of this optimization.
643At the larger sizes, when STL has to manage storage for the string, STL runs more than $3 \times$ slower, mainly due to time spent in the general-purpose memory allocator.
644
645
646\subsubsection{Test: Allocate}
647
648This test directly compares the allocation schemes of the \CFA string with sharing, compared with the STL string.
649It treats the \CFA scheme as a form of garbage collection, and the STL scheme as an application of malloc-free.
650The test shows that \CFA enables faster speed at a cost in memory usage.
651
652A garbage collector, afforded the freedom of managed memory, often runs faster than malloc-free (in an amortized analysis, even though it must occasionally stop to collect) because it is able to use its collection time to move objects.
653(In the case of the mini-allocator powering the \CFA string library, objects are runs of text.)  Moving objects lets fresh allocations consume from a large contiguous store of available memory; the ``bump pointer'' book-keeping for such a scheme is very light.
654A malloc-free implementation without the freedom to move objects must, in the general case, allocate in the spaces between existing objects; doing so entails the heavier book-keeping to navigate and maintain a linked structure.
655
656A garbage collector keeps allocations around for longer than the using program can reach them.
657By contrast, a program using malloc-free (correctly) releases allocations exactly when they are no longer reachable.
658Therefore, the same harness will use more memory while running under garbage collection.
659A garbage collector can minimize the memory overhead by searching for these dead allocations aggressively, that is, by collecting more often.
660Tuned in this way, it spends a lot of time collecting, easily so much as to overwhelm its speed advantage from bump-pointer allocation.
661If it is tuned to collect rarely, then it leaves a lot of garbage allocated (waiting to be collected) but gains the advantage of little time spent doing collection.
662
663[TODO: find citations for the above knowledge]
664
665The speed for memory tradeoff is, therefore, standard for comparisons like \CFA--STL string allocations.
666The test verifies that it is so and quantifies the returns available.
667
668These tests manipulate a tuning knob that controls how much extra space to use.
669Specific values of this knob are not user-visible and are not presented in the results here.
670Instead, its two effects (amount of space used and time per operation) are shown.
671The independent variable is the liveness target, which is the fraction of the text buffer that is in use at the end of a collection.
672The allocator will expand its text buffer during a collection if the actual fraction live exceeds this target.
673
674This experiment's driver allocates strings by constructing a string handle as a local variable then looping over recursive calls.
675The time measurement is of nanoseconds per such allocating call.
676The arrangement of recursive calls and their fan-out (iterations per recursion level) makes some of the strings long-lived and some of them short-lived.
677String lifetime (measured in number of subsequent string allocations) is ?? distributed, because each node in the call tree survives as long as its descendent calls.
678The run presented in this section used a call depth of 1000 and a fan-out of 1.006, which means that approximately one call in 167 makes two recursive calls, while the rest make one.
679This sizing was chosen to keep the amounts of consumed memory within the machine's last-level cache.
680
681\begin{figure}
682\centering
683  \includegraphics{string-graph-allocn.pdf}
684% \includegraphics[width=\textwidth]{string-graph-allocn.png}
685  \caption{Space and time performance, under varying fraction-live targets, for the five string lengths shown, at (\emph{Fixed-size} corpus construction.
686[MISSING] The identified clusters are for the default fraction-live target, which is 30\%.
687MISSING: STL results, typically just below the 0.5--0.9 \CFA segment.
688All runs keep an average of 836 strings live, and the median string lifetime is ?? allocations.}
689  \label{fig:string-graph-allocn}
690\end{figure}
691
692\VRef[Figure]{fig:string-graph-allocn} shows the results of this experiment.
693At all string sizes, varying the liveness threshold gives offers speed-for-space tradeoffs relative to STL.
694At the default liveness threshold, all measured string sizes see a ??\%--??\% speedup for a ??\%--??\% increase in memory footprint.
695
696
697\subsubsection{Test: Normalize}
698
699This test is more applied than the earlier ones.
700It combines the effects of several operations.
701It also demonstrates a case of the \CFA API allowing user code to perform well, while being written without overt memory management, while achieving similar performance in STL requires adding memory-management complexity.
702
703To motivate: edits being rare
704
705The program is doing a specialized find-replace operation on a large body of text.
706In the program under test, the replacement is just to erase a magic character.
707But in the larger software problem represented, the rewrite logic belongs to a module that was originally intended to operate on simple, modest-length strings.
708The challenge is to apply this packaged function across chunks taken from the large body.
709Using the \CFA string library, the most natural way to write the helper module's function also works well in the adapted context.
710Using the STL string, the most natural ways to write the helper module's function, given its requirements in isolation, slow down when it is driven in the adapted context.
711
712\begin{lstlisting}
713void processItem( string & item ) {
714         // find issues in item and fix them
715}
716\end{lstlisting}
717
718\section{String I/O}
Note: See TracBrowser for help on using the repository browser.