1 /* sb.c - string buffer manipulation routines
2 Copyright 1994, 1995, 2000, 2003 Free Software Foundation, Inc.
4 Written by Steve and Judy Chamberlain of Cygnus Support,
7 This file is part of GAS, the GNU Assembler.
9 GAS is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 GAS is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GAS; see the file COPYING. If not, write to the Free
21 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
34 #include "libiberty.h"
38 /* These routines are about manipulating strings.
40 They are managed in things called `sb's which is an abbreviation
41 for string buffers. An sb has to be created, things can be glued
42 on to it, and at the end of it's life it should be freed. The
43 contents should never be pointed at whilst it is still growing,
44 since it could be moved at any time
48 sb_grow... (&foo,...);
53 static void sb_check (sb
*, int);
55 /* Statistics of sb structures. */
56 static int string_count
[sb_max_power_two
];
58 /* Free list of sb structures. */
61 sb_element
*size
[sb_max_power_two
];
64 /* Initializes an sb. */
67 sb_build (sb
*ptr
, int size
)
69 /* See if we can find one to allocate. */
72 assert (size
< sb_max_power_two
);
74 e
= free_list
.size
[size
];
77 /* Nothing there, allocate one and stick into the free list. */
78 e
= (sb_element
*) xmalloc (sizeof (sb_element
) + (1 << size
));
79 e
->next
= free_list
.size
[size
];
81 free_list
.size
[size
] = e
;
85 /* Remove from free list. */
86 free_list
.size
[size
] = e
->next
;
88 /* Copy into callers world. */
98 sb_build (ptr
, dsize
);
101 /* Deallocate the sb at ptr. */
106 /* Return item to free list. */
107 ptr
->item
->next
= free_list
.size
[ptr
->pot
];
108 free_list
.size
[ptr
->pot
] = ptr
->item
;
111 /* Add the sb at s to the end of the sb at ptr. */
114 sb_add_sb (sb
*ptr
, sb
*s
)
116 sb_check (ptr
, s
->len
);
117 memcpy (ptr
->ptr
+ ptr
->len
, s
->ptr
, s
->len
);
121 /* Helper for sb_scrub_and_add_sb. */
123 static sb
*sb_to_scrub
;
124 static char *scrub_position
;
126 scrub_from_sb (char *buf
, int buflen
)
129 copy
= sb_to_scrub
->len
- (scrub_position
- sb_to_scrub
->ptr
);
132 memcpy (buf
, scrub_position
, copy
);
133 scrub_position
+= copy
;
137 /* Run the sb at s through do_scrub_chars and add the result to the sb
141 sb_scrub_and_add_sb (sb
*ptr
, sb
*s
)
144 scrub_position
= s
->ptr
;
146 sb_check (ptr
, s
->len
);
147 ptr
->len
+= do_scrub_chars (scrub_from_sb
, ptr
->ptr
+ ptr
->len
, s
->len
);
153 /* Make sure that the sb at ptr has room for another len characters,
154 and grow it if it doesn't. */
157 sb_check (sb
*ptr
, int len
)
159 if (ptr
->len
+ len
>= 1 << ptr
->pot
)
164 while (ptr
->len
+ len
>= 1 << pot
)
166 sb_build (&tmp
, pot
);
167 sb_add_sb (&tmp
, ptr
);
173 /* Make the sb at ptr point back to the beginning. */
181 /* Add character c to the end of the sb at ptr. */
184 sb_add_char (sb
*ptr
, int c
)
187 ptr
->ptr
[ptr
->len
++] = c
;
190 /* Add null terminated string s to the end of sb at ptr. */
193 sb_add_string (sb
*ptr
, const char *s
)
195 int len
= strlen (s
);
197 memcpy (ptr
->ptr
+ ptr
->len
, s
, len
);
201 /* Add string at s of length len to sb at ptr */
204 sb_add_buffer (sb
*ptr
, const char *s
, int len
)
207 memcpy (ptr
->ptr
+ ptr
->len
, s
, len
);
211 /* Like sb_name, but don't include the null byte in the string. */
214 sb_terminate (sb
*in
)
221 /* Start at the index idx into the string in sb at ptr and skip
222 whitespace. return the index of the first non whitespace character. */
225 sb_skip_white (int idx
, sb
*ptr
)
227 while (idx
< ptr
->len
228 && (ptr
->ptr
[idx
] == ' '
229 || ptr
->ptr
[idx
] == '\t'))
234 /* Start at the index idx into the sb at ptr. skips whitespace,
235 a comma and any following whitespace. returns the index of the
239 sb_skip_comma (int idx
, sb
*ptr
)
241 while (idx
< ptr
->len
242 && (ptr
->ptr
[idx
] == ' '
243 || ptr
->ptr
[idx
] == '\t'))
247 && ptr
->ptr
[idx
] == ',')
250 while (idx
< ptr
->len
251 && (ptr
->ptr
[idx
] == ' '
252 || ptr
->ptr
[idx
] == '\t'))