1 /* sb.c - string buffer manipulation routines
2 Copyright 1994, 1995, 2000 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, 59 Temple Place - Suite 330, Boston, MA
34 #include "libiberty.h"
37 /* These routines are about manipulating strings.
39 They are managed in things called `sb's which is an abbreviation
40 for string buffers. An sb has to be created, things can be glued
41 on to it, and at the end of it's life it should be freed. The
42 contents should never be pointed at whilst it is still growing,
43 since it could be moved at any time
47 sb_grow... (&foo,...);
55 static void sb_check
PARAMS ((sb
*, int));
57 /* Statistics of sb structures. */
59 int string_count
[sb_max_power_two
];
61 /* Free list of sb structures. */
63 static sb_list_vector free_list
;
65 /* initializes an sb. */
72 /* see if we can find one to allocate */
75 if (size
> sb_max_power_two
)
78 e
= free_list
.size
[size
];
81 /* nothing there, allocate one and stick into the free list */
82 e
= (sb_element
*) xmalloc (sizeof (sb_element
) + (1 << size
));
83 e
->next
= free_list
.size
[size
];
85 free_list
.size
[size
] = e
;
89 /* remove from free list */
91 free_list
.size
[size
] = e
->next
;
93 /* copy into callers world */
104 sb_build (ptr
, dsize
);
107 /* deallocate the sb at ptr */
113 /* return item to free list */
114 ptr
->item
->next
= free_list
.size
[ptr
->pot
];
115 free_list
.size
[ptr
->pot
] = ptr
->item
;
118 /* add the sb at s to the end of the sb at ptr */
125 sb_check (ptr
, s
->len
);
126 memcpy (ptr
->ptr
+ ptr
->len
, s
->ptr
, s
->len
);
130 /* make sure that the sb at ptr has room for another len characters,
131 and grow it if it doesn't. */
138 if (ptr
->len
+ len
>= 1 << ptr
->pot
)
142 while (ptr
->len
+ len
>= 1 << pot
)
144 sb_build (&tmp
, pot
);
145 sb_add_sb (&tmp
, ptr
);
151 /* make the sb at ptr point back to the beginning. */
160 /* add character c to the end of the sb at ptr. */
168 ptr
->ptr
[ptr
->len
++] = c
;
171 /* add null terminated string s to the end of sb at ptr. */
174 sb_add_string (ptr
, s
)
178 int len
= strlen (s
);
180 memcpy (ptr
->ptr
+ ptr
->len
, s
, len
);
184 /* add string at s of length len to sb at ptr */
187 sb_add_buffer (ptr
, s
, len
)
193 memcpy (ptr
->ptr
+ ptr
->len
, s
, len
);
197 /* print the sb at ptr to the output file */
200 sb_print (outfile
, ptr
)
207 for (i
= 0; i
< ptr
->len
; i
++)
211 fprintf (outfile
, ",");
213 fprintf (outfile
, "%d", ptr
->ptr
[i
]);
219 sb_print_at (outfile
, idx
, ptr
)
225 for (i
= idx
; i
< ptr
->len
; i
++)
226 putc (ptr
->ptr
[i
], outfile
);
229 /* put a null at the end of the sb at in and return the start of the
230 string, so that it can be used as an arg to printf %s. */
236 /* stick a null on the end of the string */
241 /* like sb_name, but don't include the null byte in the string. */
252 /* start at the index idx into the string in sb at ptr and skip
253 whitespace. return the index of the first non whitespace character */
256 sb_skip_white (idx
, ptr
)
260 while (idx
< ptr
->len
261 && (ptr
->ptr
[idx
] == ' '
262 || ptr
->ptr
[idx
] == '\t'))
267 /* start at the index idx into the sb at ptr. skips whitespace,
268 a comma and any following whitespace. returnes the index of the
272 sb_skip_comma (idx
, ptr
)
276 while (idx
< ptr
->len
277 && (ptr
->ptr
[idx
] == ' '
278 || ptr
->ptr
[idx
] == '\t'))
282 && ptr
->ptr
[idx
] == ',')
285 while (idx
< ptr
->len
286 && (ptr
->ptr
[idx
] == ' '
287 || ptr
->ptr
[idx
] == '\t'))