libctf, open: fix opening CTF in binaries with no symtab
[deliverable/binutils-gdb.git] / libctf / ChangeLog
1 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
2
3 * ctf-impl.h (struct ctf_archive_internal) <ctfi_free_strsect>
4 New.
5 * ctf-open-bfd.c (ctf_bfdopen_ctfsect): Explicitly open a strtab
6 if the input has no symtab, rather than dividing by
7 zero. Arrange to free it later via ctfi_free_ctfsect.
8 * ctf-archive.c (ctf_new_archive_internal): Do not
9 ctfi_free_strsect by default.
10 (ctf_arc_close): Possibly free it here.
11
12 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
13
14 * ctf-dump.c (ctf_is_slice): Delete, unnecessary.
15 (ctf_dump_format_type): improve slice formatting. Always print
16 the type size, even of slices.
17 (ctf_dump_member): Print slices (-> bitfields) differently from
18 non-slices. Failure to format a type is not an OOM.
19
20 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
21
22 * ctf-dump.c (ctf_dump_format_type): Emit a warning.
23 (ctf_dump_label): Swallow errors from ctf_dump_format_type.
24 (ctf_dump_objts): Likewise.
25 (ctf_dump_var): Likewise.
26 (ctf_dump_type): Do not emit a duplicate message. Move to
27 ctf_err_warning, and swallow all errors.
28
29 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
30
31 * ctf-decl.c (ctf_decl_fini): Free the cd_buf.
32 (ctf_decl_buf): Once it escapes, don't try to free it later.
33
34 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
35
36 * ctf-types.c (ctf_type_aname): Print arg types here...
37 * ctf-dump.c (ctf_dump_funcs): ... not here: but do substitute
38 in the type name here.
39
40 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
41
42 * ctf-impl.h (ctf_assert): New.
43 (ctf_err_warning_t): Likewise.
44 (ctf_file_t) <ctf_errs_warnings>: Likewise.
45 (ctf_err_warn): New prototype.
46 (ctf_assert_fail_internal): Likewise.
47 * ctf-inlines.h (ctf_assert_internal): Likewise.
48 * ctf-open.c (ctf_file_close): Free ctf_errs_warnings.
49 * ctf-create.c (ctf_serialize): Copy it on serialization.
50 * ctf-subr.c (ctf_err_warn): New, add an error/warning.
51 (ctf_errwarning_next): New iterator, free and pass back
52 errors/warnings in succession.
53 * libctf.ver (ctf_errwarning_next): Add.
54
55 2020-07-22 Egeyar Bagcioglu <egeyar.bagcioglu@oracle.com>
56
57 * ctf-types.c (ctf_variable_iter): Fix error return.
58
59 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
60
61 * ctf-open.c (ctf_bufopen_internal): Diagnose invalid flags.
62
63 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
64
65 ctf-decls.h (ctf_qsort_compar_thunk): Fix arg passing.
66
67 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
68
69 * ctf-impl.h (ctf_next_hkv_t): New, kv-pairs passed to
70 sorting functions.
71 (ctf_next_t) <u.ctn_sorted_hkv>: New, sorted kv-pairs for
72 ctf_dynhash_next_sorted.
73 <cu.ctn_h>: New, pointer to the dynhash under iteration.
74 <cu.ctn_s>: New, pointer to the dynset under iteration.
75 (ctf_hash_sort_f): Sorting function passed to...
76 (ctf_dynhash_next_sorted): ... this new function.
77 (ctf_dynhash_next): New.
78 (ctf_dynset_next): New.
79 * ctf-inlines.h (ctf_dynhash_cnext_sorted): New.
80 (ctf_dynhash_cnext): New.
81 (ctf_dynset_cnext): New.
82 * ctf-hash.c (ctf_dynhash_next_sorted): New.
83 (ctf_dynhash_next): New.
84 (ctf_dynset_next): New.
85 * ctf-util.c (ctf_next_destroy): Free the u.ctn_sorted_hkv if
86 needed.
87 (ctf_next_copy): Alloc-and-copy the u.ctn_sorted_hkv if needed.
88
89 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
90
91 * ctf-impl.h (ctf_next): New.
92 (ctf_get_dict): New prototype.
93 * ctf-lookup.c (ctf_get_dict): New, split out of...
94 (ctf_lookup_by_id): ... here.
95 * ctf-util.c (ctf_next_create): New.
96 (ctf_next_destroy): New.
97 (ctf_next_copy): New.
98 * ctf-types.c (includes): Add <assert.h>.
99 (ctf_member_next): New.
100 (ctf_enum_next): New.
101 (ctf_type_iter): Document the lack of iteration over parent
102 types.
103 (ctf_type_next): New.
104 (ctf_variable_next): New.
105 * ctf-archive.c (ctf_archive_next): New.
106 * libctf.ver: Add new public functions.
107
108 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
109
110 * libctf.ver (ctf_ref): New.
111 * ctf-open.c (ctf_ref): Implement it.
112
113 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
114
115 * ctf-inlines.h (ctf_forwardable_kind): New.
116 * ctf-create.c (ctf_add_forward): Use it.
117
118 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
119
120 * ctf-impl.h (ctf_get_ctt_size): Move definition from here...
121 * ctf-inlines.h (ctf_get_ctt_size): ... to here.
122
123 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
124
125 * ctf-hash.c (ctf_dynset_eq_string): New.
126 (ctf_dynset_create): New.
127 (DYNSET_EMPTY_ENTRY_REPLACEMENT): New.
128 (DYNSET_DELETED_ENTRY_REPLACEMENT): New.
129 (key_to_internal): New.
130 (internal_to_key): New.
131 (ctf_dynset_insert): New.
132 (ctf_dynset_remove): New.
133 (ctf_dynset_destroy): New.
134 (ctf_dynset_lookup): New.
135 (ctf_dynset_exists): New.
136 (ctf_dynset_lookup_any): New.
137 (ctf_hash_insert_type): Coding style.
138 (ctf_hash_define_type): Likewise.
139 * ctf-impl.h (ctf_dynset_t): New.
140 (ctf_dynset_eq_string): New.
141 (ctf_dynset_create): New.
142 (ctf_dynset_insert): New.
143 (ctf_dynset_remove): New.
144 (ctf_dynset_destroy): New.
145 (ctf_dynset_lookup): New.
146 (ctf_dynset_exists): New.
147 (ctf_dynset_lookup_any): New.
148 * ctf-inlines.h (ctf_dynset_cinsert): New.
149
150 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
151
152 * ctf-hash.c (ctf_helem_t) <key_free>: Remove.
153 <value_free>: Likewise.
154 <owner>: New.
155 (ctf_dynhash_item_free): Indirect through the owner.
156 (ctf_dynhash_create): Only pass in ctf_dynhash_item_free and
157 allocate space for the key_free and value_free fields fields
158 if necessary.
159 (ctf_hashtab_insert): Likewise. Fix OOM errno value.
160 (ctf_dynhash_insert): Only access ctf_hashtab's key_free and
161 value_free if they will exist. Set the slot's owner, but only
162 if it exists.
163 (ctf_dynhash_remove): Adjust.
164
165 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
166
167 * ctf-hash.c (ctf_hashtab_insert): Free the key passed in if
168 there is a key-freeing function and the key already exists.
169
170 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
171
172 * ctf-inlines.h: New file.
173 * ctf-impl.h: Include it.
174 (ctf_hash_iter_find_f): New typedef.
175 (ctf_dynhash_elements): New.
176 (ctf_dynhash_lookup_kv): New.
177 (ctf_dynhash_iter_find): New.
178 * ctf-hash.c (ctf_dynhash_lookup_kv): New.
179 (ctf_traverse_find_cb_arg_t): New.
180 (ctf_hashtab_traverse_find): New.
181 (ctf_dynhash_iter_find): New.
182 (ctf_dynhash_elements): New.
183
184 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
185
186 * ctf-impl.h [!__GNUC__] (__extension__): Define to nothing.
187
188 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
189
190 * ctf-archive.c (ctf_archive_count): New.
191 * libctf.ver: New public function.
192
193 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
194
195 * ctf-types.c (ctf_member_count): New.
196 * libctf.ver: New public function.
197
198 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
199
200 * ctf-types.c (ctf_type_kind_forwarded): New.
201
202 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
203
204 * ctf-types.c (ctf_type_name_raw): New.
205 (ctf_type_aname_raw): Reimplement accordingly.
206
207 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
208
209 * ctf-subr.c (ctf_dprintf): _libctf_debug is unlikely to be set.
210
211 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
212
213 * ctf-impl.h (struct ctf_archive_internal)
214 <ctfi_unmap_on_close>: New.
215 (ctf_new_archive_internal): Adjust.
216 * ctf-archive.c (ctf_new_archive_internal): Likewise.
217 Initialize ctfi_unmap_on_close. Adjust error path.
218 (ctf_arc_bufopen): Adjust ctf_new_archive_internal call
219 (unmap_on_close is 0).
220 (ctf_arc_close): Only unmap if ctfi_unmap_on_close.
221 * ctf-open-bfd.c (ctf_fdopen): Adjust.
222
223 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
224
225 * ctf-types.c (ctf_type_aname): Return ECTF_CORRUPT if
226 ints, floats or typedefs have no name. Fix comment typo.
227
228 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
229
230 * ctf-create.c (ctf_add_slice): Support slices of any kind that
231 resolves to an integral type.
232 * ctf-types.c (ctf_type_encoding): Resolve the type before
233 fishing its encoding out.
234
235 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
236
237 * ctf-create.c (ctf_create): Mark dirty.
238
239 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
240
241 * ctf-create.c (membcmp) Skip nameless members.
242
243 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
244
245 * ctf-create.c (ctf_add_member_offset): Support names of ""
246 as if they were the null pointer.
247
248 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
249
250 * ctf-open.c (init_types): Remove typeless CTF_K_FORWARD
251 special-casing.
252
253 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
254
255 * ctf-types.c (ctf_type_reference): Add support for dynamic slices.
256
257 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
258
259 * ctf-create.c (ctf_serialize): Add cast.
260 (ctf_add_slice): Likewise.
261
262 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
263
264 * ctf-impl.h (ctf_dtdef_t) <dtu_argv>: Fix type.
265 * ctf-create.c (ctf_add_function): Check for unimplemented type
266 and populate at the same time. Populate one-by-one, not via
267 memcpy.
268 (ctf_serialize): Remove unnecessary cast.
269 * ctf-types.c (ctf_func_type_info): Likewise.
270 (ctf_func_type_args): Likewise. Fix comment typo.
271
272 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
273
274 * ctf-create.c (ctf_add_reftype): Support refs to type zero.
275 (ctf_add_array): Support array contents of type zero.
276 (ctf_add_function): Support arguments and return types of
277 type zero.
278 (ctf_add_typedef): Support typedefs to type zero.
279 (ctf_add_member_offset): Support members of type zero,
280 unless added at unspecified (naturally-aligned) offset.
281
282 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
283
284 * ctf-error.c: Include <stddef.h>, for offsetof.
285 (_ctf_errlist): Migrate to...
286 (_ctf_errlist_t): ... this.
287 (_ctf_erridx): New, indexes into _ctf_errlist_t.
288 (_ctf_nerr): Remove.
289 (ctf_errmsg): Adjust accordingly.
290 * Makefile.am (BUILT_SOURCES): Note...
291 (ctf-error.h): ... this new rule.
292 * Makefile.in: Regenerate.
293 * mkerrors.sed: New, process ctf-api.h to generate ctf-error.h.
294 * .gitignore: New, ignore ctf-error.h.
295
296 2020-07-22 Nick Alcock <nick.alcock@oracle.com>
297
298 * ctf-impl.h: Fix typos in comments.
299
300 2020-07-22 Nick Clifton <nickc@redhat.com>
301
302 * ctf-archive.c (ctf_arc_write): Avoid calling close twice on the
303 same file descriptor.
304
305 2020-07-04 Nick Clifton <nickc@redhat.com>
306
307 Binutils 2.35 branch created.
308
309 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
310
311 * aclocal.m4: Add config/gettext-sister.m4: Shuffle into
312 alphabetical order.
313 * configure.ac: Add ZW_GNU_GETTEXT_SISTER_DIR.
314 * config.h.in: Regenerated.
315 * Makefile.in: Likewise.
316 * configure: Likewise.
317
318 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
319
320 * ctf-create.c: Include <unistd.h>.
321 * ctf-open-bfd.c: Likewise.
322
323 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
324
325 PR libctf/25120
326 * configure.ac: Check for bswap_16, bswap_32, and bswap_64 decls.
327 * swap.h (bswap_16): Do not assume that presence of <byteswap.h>
328 means this is declared.
329 (bswap_32): Likewise.
330 (bswap_64): Likewise.
331 (bswap_identity_64): Remove, unused.
332 * configure: Regenerated.
333 * config.h.in: Likewise.
334
335 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
336
337 PR libctf/25120
338 * ctf-impl.h (_libctf_printflike_): Add non-GNU-C fallback.
339 (_libctf_unlikely_): Likewise.
340 (_libctf_unused): Likewise.
341 (_libctf_malloc_): Likewise.
342
343 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
344
345 PR libctf/25120
346 * ctf-archive.c (search_nametbl): No longer global: declare...
347 (ctf_arc_open_by_name_internal): ... here. Use bsearch_r.
348 (search_modent_by_name): Take and use ARG for the nametbl.
349
350 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
351
352 * ctf-impl.h (ctf_new_archive_internal): Declare.
353 (ctf_arc_bufopen): Remove.
354 (ctf_archive_internal) <ctfi_free_symsect>: New.
355 * ctf-archive.c (ctf_arc_close): Use it.
356 (ctf_arc_bufopen): Fuse into...
357 (ctf_new_archive_internal): ... this, moved across from...
358 * ctf-open-bfd.c: ... here.
359 (ctf_bfdopen_ctfsect): Use ctf_arc_bufopen.
360 * libctf.ver: Add it.
361
362 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
363
364 * ctf-create.c (ctf_add_forward): Intern in the right namespace.
365 (ctf_dtd_delete): Remove correspondingly.
366 (ctf_rollback): Likewise.
367
368 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
369
370 * ctf-create.c (ctf_add_type_internal): Hand back existing types
371 unchanged.
372
373 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
374
375 * ctf-create.c (ctf_add_forward): Don't add forwards to
376 types that already exist.
377
378 2020-06-26 Nick Alcock <nick.alcock@oracle.com>
379
380 * ctf-open.c (init_types): Only intern root-visible types.
381 * ctf-create.c (ctf_dtd_insert): Likewise.
382 (ctf_dtd_delete): Only remove root-visible types.
383 (ctf_rollback): Likewise.
384 (ctf_add_generic): Adjust.
385 (ctf_add_struct_sized): Adjust comment.
386 (ctf_add_union_sized): Likewise.
387 (ctf_add_enum): Likewise.
388 * ctf-impl.h (ctf_dtd_insert): Adjust prototype.
389
390 2020-03-11 John Baldwin <jhb@FreeBSD.org>
391
392 * swap.h (bswap_identity_64): Make static.
393
394 2020-01-18 Nick Clifton <nickc@redhat.com>
395
396 Binutils 2.34 branch created.
397
398 2020-01-05 Joel Brobecker <brobecker@adacore.com>
399
400 PR binutils/25155:
401 * configure.ac: Add AC_CHECK_DECLS([asprintf]).
402 * configure, config.h.in: Regenerate.
403
404 2020-01-01 Alan Modra <amodra@gmail.com>
405
406 Update year range in copyright notice of all files.
407
408 2019-10-16 Simon Marchi <simon.marchi@polymtl.ca>
409
410 * swap.h (bswap_16, bswap_32, bswap_64): Make static.
411
412 2019-09-30 Nick Alcock <nick.alcock@oracle.com>
413
414 * ctf-open.c (ctf_bufopen_internal): Fix tabdamage.
415 * ctf-types.c (ctf_type_lname): Likewise.
416
417 2019-09-23 Nick Alcock <nick.alcock@oracle.com>
418
419 * ctf-open.c (ctf_import): Do not leak a ctf_file_t ref on every
420 ctf_import after the first for a given file.
421
422 2019-09-23 Nick Alcock <nick.alcock@oracle.com>
423
424 * ctf-impl.h (ctf_str_append_noerr): Declare.
425 * ctf-util.c (ctf_str_append_noerr): Define in terms of
426 ctf_str_append.
427 * ctf-dump.c (str_append): New, call it.
428 (ctf_dump_format_type): Use str_append, not ctf_str_append.
429 (ctf_dump_label): Likewise.
430 (ctf_dump_objts): Likewise.
431 (ctf_dump_funcs): Likewise.
432 (ctf_dump_var): Likewise.
433 (ctf_dump_member): Likewise.
434 (ctf_dump_type): Likewise.
435 (ctf_dump): Likewise.
436
437 2019-09-23 Nick Alcock <nick.alcock@oracle.com>
438
439 * ctf-impl.h (ctf_alloc): Remove.
440 (ctf_free): Likewise.
441 (ctf_strdup): Likewise.
442 * ctf-subr.c (ctf_alloc): Remove.
443 (ctf_free): Likewise.
444 * ctf-util.c (ctf_strdup): Remove.
445
446 * ctf-create.c (ctf_serialize): Use malloc, not ctf_alloc; free, not
447 ctf_free; strdup, not ctf_strdup.
448 (ctf_dtd_delete): Likewise.
449 (ctf_dvd_delete): Likewise.
450 (ctf_add_generic): Likewise.
451 (ctf_add_function): Likewise.
452 (ctf_add_enumerator): Likewise.
453 (ctf_add_member_offset): Likewise.
454 (ctf_add_variable): Likewise.
455 (membadd): Likewise.
456 (ctf_compress_write): Likewise.
457 (ctf_write_mem): Likewise.
458 * ctf-decl.c (ctf_decl_push): Likewise.
459 (ctf_decl_fini): Likewise.
460 (ctf_decl_sprintf): Likewise. Check for OOM.
461 * ctf-dump.c (ctf_dump_append): Use malloc, not ctf_alloc; free, not
462 ctf_free; strdup, not ctf_strdup.
463 (ctf_dump_free): Likewise.
464 (ctf_dump): Likewise.
465 * ctf-open.c (upgrade_types_v1): Likewise.
466 (init_types): Likewise.
467 (ctf_file_close): Likewise.
468 (ctf_bufopen_internal): Likewise. Check for OOM.
469 (ctf_parent_name_set): Likewise: report the OOM to the caller.
470 (ctf_cuname_set): Likewise.
471 (ctf_import): Likewise.
472 * ctf-string.c (ctf_str_purge_atom_refs): Use malloc, not ctf_alloc;
473 free, not ctf_free; strdup, not ctf_strdup.
474 (ctf_str_free_atom): Likewise.
475 (ctf_str_create_atoms): Likewise.
476 (ctf_str_add_ref_internal): Likewise.
477 (ctf_str_remove_ref): Likewise.
478 (ctf_str_write_strtab): Likewise.
479
480 2019-08-09 Nick Alcock <nick.alcock@oracle.com>
481
482 * ctf-types.c (ctf_type_encoding): Fix the dynamic case to
483 work right for non-int/fps.
484
485 2019-08-08 Nick Alcock <nick.alcock@oracle.com>
486
487 * ctf-types.c (ctf_type_name): Don't strlen a potentially-
488 null pointer.
489
490 2019-08-07 Nick Alcock <nick.alcock@oracle.com>
491
492 * ctf-impl.h (ctf_file_t) <ctf_add_processing>: New.
493 * ctf-open.c (ctf_file_close): Free it.
494 * ctf-create.c (ctf_serialize): Adjust.
495 (membcmp): When reporting a conflict due to an error, report the
496 error.
497 (ctf_add_type): Turn into a ctf_add_processing wrapper. Rename to...
498 (ctf_add_type_internal): ... this. Hand back types we are already
499 in the middle of adding immediately. Hand back structs/unions with
500 the same number of members immediately. Do not walk the dynamic
501 list. Call ctf_add_type_internal, not ctf_add_type. Handle
502 forwards promoted to other types and the inverse case identically.
503 Add structs to the mapping as soon as we intern them, before they
504 gain any members.
505
506 2019-08-09 Nick Alcock <nick.alcock@oracle.com>
507
508 * ctf-impl.h (ctf_names_t): New.
509 (ctf_lookup_t) <ctf_hash>: Now a ctf_names_t, not a ctf_hash_t.
510 (ctf_file_t) <ctf_structs>: Likewise.
511 <ctf_unions>: Likewise.
512 <ctf_enums>: Likewise.
513 <ctf_names>: Likewise.
514 <ctf_lookups>: Improve comment.
515 <ctf_ptrtab_len>: New.
516 <ctf_prov_strtab>: New.
517 <ctf_str_prov_offset>: New.
518 <ctf_dtbyname>: Remove, redundant to the names hashes.
519 <ctf_dtnextid>: Remove, redundant to ctf_typemax.
520 (ctf_dtdef_t) <dtd_name>: Remove.
521 <dtd_data>: Note that the ctt_name is now populated.
522 (ctf_str_atom_t) <csa_offset>: This is now the strtab
523 offset for internal strings too.
524 <csa_external_offset>: New, the external strtab offset.
525 (CTF_INDEX_TO_TYPEPTR): Handle the LCTF_RDWR case.
526 (ctf_name_table): New declaration.
527 (ctf_lookup_by_rawname): Likewise.
528 (ctf_lookup_by_rawhash): Likewise.
529 (ctf_set_ctl_hashes): Likewise.
530 (ctf_serialize): Likewise.
531 (ctf_dtd_insert): Adjust.
532 (ctf_simple_open_internal): Likewise.
533 (ctf_bufopen_internal): Likewise.
534 (ctf_list_empty_p): Likewise.
535 (ctf_str_remove_ref): Likewise.
536 (ctf_str_add): Returns uint32_t now.
537 (ctf_str_add_ref): Likewise.
538 (ctf_str_add_external): Now returns a boolean (int).
539 * ctf-string.c (ctf_strraw_explicit): Check the ctf_prov_strtab
540 for strings in the appropriate range.
541 (ctf_str_create_atoms): Create the ctf_prov_strtab. Detect OOM
542 when adding the null string to the new strtab.
543 (ctf_str_free_atoms): Destroy the ctf_prov_strtab.
544 (ctf_str_add_ref_internal): Add make_provisional argument. If
545 make_provisional, populate the offset and fill in the
546 ctf_prov_strtab accordingly.
547 (ctf_str_add): Return the offset, not the string.
548 (ctf_str_add_ref): Likewise.
549 (ctf_str_add_external): Return a success integer.
550 (ctf_str_remove_ref): New, remove a single ref.
551 (ctf_str_count_strtab): Do not count the initial null string's
552 length or the existence or length of any unreferenced internal
553 atoms.
554 (ctf_str_populate_sorttab): Skip atoms with no refs.
555 (ctf_str_write_strtab): Populate the nullstr earlier. Add one
556 to the cts_len for the null string, since it is no longer done
557 in ctf_str_count_strtab. Adjust for csa_external_offset rename.
558 Populate the csa_offset for both internal and external cases.
559 Flush the ctf_prov_strtab afterwards, and reset the
560 ctf_str_prov_offset.
561 * ctf-create.c (ctf_grow_ptrtab): New.
562 (ctf_create): Call it. Initialize new fields rather than old
563 ones. Tell ctf_bufopen_internal that this is a writable dictionary.
564 Set the ctl hashes and data model.
565 (ctf_update): Rename to...
566 (ctf_serialize): ... this. Leave a compatibility function behind.
567 Tell ctf_simple_open_internal that this is a writable dictionary.
568 Pass the new fields along from the old dictionary. Drop
569 ctf_dtnextid and ctf_dtbyname. Use ctf_strraw, not dtd_name.
570 Do not zero out the DTD's ctt_name.
571 (ctf_prefixed_name): Rename to...
572 (ctf_name_table): ... this. No longer return a prefixed name: return
573 the applicable name table instead.
574 (ctf_dtd_insert): Use it, and use the right name table. Pass in the
575 kind we're adding. Migrate away from dtd_name.
576 (ctf_dtd_delete): Adjust similarly. Remove the ref to the
577 deleted ctt_name.
578 (ctf_dtd_lookup_type_by_name): Remove.
579 (ctf_dynamic_type): Always return NULL on read-only dictionaries.
580 No longer check ctf_dtnextid: check ctf_typemax instead.
581 (ctf_snapshot): No longer use ctf_dtnextid: use ctf_typemax instead.
582 (ctf_rollback): Likewise. No longer fail with ECTF_OVERROLLBACK. Use
583 ctf_name_table and the right name table, and migrate away from
584 dtd_name as in ctf_dtd_delete.
585 (ctf_add_generic): Pass in the kind explicitly and pass it to
586 ctf_dtd_insert. Use ctf_typemax, not ctf_dtnextid. Migrate away
587 from dtd_name to using ctf_str_add_ref to populate the ctt_name.
588 Grow the ptrtab if needed.
589 (ctf_add_encoded): Pass in the kind.
590 (ctf_add_slice): Likewise.
591 (ctf_add_array): Likewise.
592 (ctf_add_function): Likewise.
593 (ctf_add_typedef): Likewise.
594 (ctf_add_reftype): Likewise. Initialize the ctf_ptrtab, checking
595 ctt_name rather than dtd_name.
596 (ctf_add_struct_sized): Pass in the kind. Use
597 ctf_lookup_by_rawname, not ctf_hash_lookup_type /
598 ctf_dtd_lookup_type_by_name.
599 (ctf_add_union_sized): Likewise.
600 (ctf_add_enum): Likewise.
601 (ctf_add_enum_encoded): Likewise.
602 (ctf_add_forward): Likewise.
603 (ctf_add_type): Likewise.
604 (ctf_compress_write): Call ctf_serialize: adjust for ctf_size not
605 being initialized until after the call.
606 (ctf_write_mem): Likewise.
607 (ctf_write): Likewise.
608 * ctf-archive.c (arc_write_one_ctf): Likewise.
609 * ctf-lookup.c (ctf_lookup_by_name): Use ctf_lookuup_by_rawhash, not
610 ctf_hash_lookup_type.
611 (ctf_lookup_by_id): No longer check the readonly types if the
612 dictionary is writable.
613 * ctf-open.c (init_types): Assert that this dictionary is not
614 writable. Adjust to use the new name hashes, ctf_name_table,
615 and ctf_ptrtab_len. GNU style fix for the final ptrtab scan.
616 (ctf_bufopen_internal): New 'writable' parameter. Flip on LCTF_RDWR
617 if set. Drop out early when dictionary is writable. Split the
618 ctf_lookups initialization into...
619 (ctf_set_cth_hashes): ... this new function.
620 (ctf_simple_open_internal): Adjust. New 'writable' parameter.
621 (ctf_simple_open): Adjust accordingly.
622 (ctf_bufopen): Likewise.
623 (ctf_file_close): Destroy the appropriate name hashes. No longer
624 destroy ctf_dtbyname, which is gone.
625 (ctf_getdatasect): Remove spurious "extern".
626 * ctf-types.c (ctf_lookup_by_rawname): New, look up types in the
627 specified name table, given a kind.
628 (ctf_lookup_by_rawhash): Likewise, given a ctf_names_t *.
629 (ctf_member_iter): Add support for iterating over the
630 dynamic type list.
631 (ctf_enum_iter): Likewise.
632 (ctf_variable_iter): Likewise.
633 (ctf_type_rvisit): Likewise.
634 (ctf_member_info): Add support for types in the dynamic type list.
635 (ctf_enum_name): Likewise.
636 (ctf_enum_value): Likewise.
637 (ctf_func_type_info): Likewise.
638 (ctf_func_type_args): Likewise.
639 * ctf-link.c (ctf_accumulate_archive_names): No longer call
640 ctf_update.
641 (ctf_link_write): Likewise.
642 (ctf_link_intern_extern_string): Adjust for new
643 ctf_str_add_external return value.
644 (ctf_link_add_strtab): Likewise.
645 * ctf-util.c (ctf_list_empty_p): New.
646
647 2019-08-05 Nick Alcock <nick.alcock@oracle.com>
648
649 * ctf-types.c (ctf_type_resolve): Return ECTF_NONREPRESENTABLE on
650 type zero.
651 * ctf-create.c (ctf_add_type): Detect and skip nonrepresentable
652 members and types.
653 (ctf_add_variable): Likewise for variables pointing to them.
654 * ctf-link.c (ctf_link_one_type): Do not warn for nonrepresentable
655 type link failure, but do warn for others.
656 * ctf-dump.c (ctf_dump_format_type): Likewise. Do not assume all
657 errors to be ENOMEM.
658 (ctf_dump_member): Likewise.
659 (ctf_dump_type): Likewise.
660 (ctf_dump_header_strfield): Do not assume all errors to be ENOMEM.
661 (ctf_dump_header_sectfield): Do not assume all errors to be ENOMEM.
662 (ctf_dump_header): Likewise.
663 (ctf_dump_label): likewise.
664 (ctf_dump_objts): likewise.
665 (ctf_dump_funcs): likewise.
666 (ctf_dump_var): likewise.
667 (ctf_dump_str): Likewise.
668
669 2019-09-30 Nick Alcock <nick.alcock@oracle.com>
670
671 * configure.ac (AC_DISABLE_SHARED): New, like opcodes/.
672 (LT_INIT): Likewise.
673 (AM_INSTALL_LIBBFD): Likewise.
674 (dlopen): Note why this is necessary in a comment.
675 (SHARED_LIBADD): Initialize for possibly-PIC libiberty: derived from
676 opcodes/.
677 (SHARED_LDFLAGS): Likewise.
678 (BFD_LIBADD): Likewise, for libbfd.
679 (BFD_DEPENDENCIES): Likewise.
680 (VERSION_FLAGS): Initialize, using a version script if ld supports
681 one, or libtool -export-symbols-regex otherwise.
682 (AC_CONFIG_MACRO_DIR): Add ../BFD.
683 * Makefile.am (ACLOCAL_AMFLAGS): Likewise.
684 (INCDIR): New.
685 (AM_CPPFLAGS): Use $(srcdir), not $(top_srcdir).
686 (noinst_LIBRARIES): Replace with...
687 [INSTALL_LIBBFD] (lib_LTLIBRARIES): This, or...
688 [!INSTALL_LIBBFD] (noinst_LTLIBRARIES): ... this, mentioning new
689 libctf-nobfd.la as well.
690 [INSTALL_LIBCTF] (include_HEADERS): Add the CTF headers.
691 [!INSTALL_LIBCTF] (include_HEADERS): New, empty.
692 (libctf_a_SOURCES): Rename to...
693 (libctf_nobfd_la_SOURCES): ... this, all of libctf other than
694 ctf-open-bfd.c.
695 (libctf_la_SOURCES): Now derived from libctf_nobfd_la_SOURCES,
696 with ctf-open-bfd.c added.
697 (libctf_nobfd_la_LIBADD): New, using @SHARED_LIBADD@.
698 (libctf_la_LIBADD): New, using @BFD_LIBADD@ as well.
699 (libctf_la_DEPENDENCIES): New, using @BFD_DEPENDENCIES@.
700 * Makefile.am [INSTALL_LIBCTF]: Use it.
701 * aclocal.m4: Add ../bfd/acinclude.m4, ../config/acx.m4, and the
702 libtool macros.
703 * libctf.ver: New, everything is version LIBCTF_1.0 currently (even
704 the unstable components).
705 * Makefile.in: Regenerated.
706 * config.h.in: Likewise.
707 * configure: Likewise.
708
709 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
710
711 * configure.ac (INSTALL_LIBCTF): New, controlled by
712 --enable-install-libctf.
713 [INSTALL_LIBCTF] (lib_LIBRARIES): Add libctf.a.
714 * Makefile.in: Regenerated.
715 * configure: Regenerated.
716
717 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
718
719 * ctf-archive.c (ctf_arc_close): Call ctfi_bfd_close if set.
720 * ctf-open-bfd.c (ctf_bfdclose): Fix comment.
721
722 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
723
724 * ctf-open-bfd.c (ctf_fdopen): Call bfd_set_cacheable.
725
726 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
727
728 * ctf-impl.h (includes): Include <sys/param.h> here.
729
730 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
731
732 * ctf-open.c (flip_lbls): Eschew for-loop initial declarations.
733 (flip_objts): Likewise.
734 (flip_vars): Likewise.
735 (flip_types): Likewise.
736
737 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
738
739 * ctf-hash.c (ctf_hashtab_insert): Pass in the key and value
740 freeing functions: if set, free the key and value if the slot
741 already exists. Always reassign the key.
742 (ctf_dynhash_insert): Adjust call appropriately.
743 (ctf_hash_insert_type): Likewise.
744
745 2019-08-03 Nick Alcock <nick.alcock@oracle.com>
746
747 * ctf-create.c (ctf_add_type): Look up and use the forwarded-to
748 type kind. Allow forwards to unify with pre-existing structs/
749 unions/enums.
750
751 2019-07-30 Nick Alcock <nick.alcock@oracle.com>
752
753 * ctf-impl.h (ctf_file_t) <ctf_link_cu_mappping>: New.
754 <ctf_link_memb_name_changer>: Likewise.
755 <ctf_link_memb_name_changer_arg>: Likewise.
756 * ctf-create.c (ctf_update): Update accordingly.
757 * ctf-open.c (ctf_file_close): Likewise.
758 * ctf-link.c (ctf_create_per_cu): Apply the cu mapping.
759 (ctf_link_add_cu_mapping): New.
760 (ctf_link_set_memb_name_changer): Likewise.
761 (ctf_change_parent_name): New.
762 (ctf_name_list_accum_cb_arg_t) <dynames>: New, storage for names
763 allocated by the caller's ctf_link_memb_name_changer.
764 <ndynames>: Likewise.
765 (ctf_accumulate_archive_names): Call the ctf_link_memb_name_changer.
766 (ctf_link_write): Likewise (for _CTF_SECTION only): also call
767 ctf_change_parent_name. Free any resulting names.
768
769 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
770
771 * ctf-link.c (ctf_create_per_cu): New, refactored out of...
772 (ctf_link_one_type): ... here, with parent-name setting added.
773 (check_variable): New.
774 (ctf_link_one_variable): Likewise.
775 (ctf_link_one_input_archive_member): Call it.
776 * ctf-error.c (_ctf_errlist): Updated with new errors.
777
778 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
779
780 * ctf-impl.h (ctf_file_t): New field ctf_link_type_mapping.
781 (struct ctf_link_type_mapping_key): New.
782 (ctf_hash_type_mapping_key): Likewise.
783 (ctf_hash_eq_type_mapping_key): Likewise.
784 (ctf_add_type_mapping): Likewise.
785 (ctf_type_mapping): Likewise.
786 (ctf_dynhash_empty): Likewise.
787 * ctf-open.c (ctf_file_close): Update accordingly.
788 * ctf-create.c (ctf_update): Likewise.
789 (ctf_add_type): Populate the mapping.
790 * ctf-hash.c (ctf_hash_type_mapping_key): Hash a type mapping key.
791 (ctf_hash_eq_type_mapping_key): Check the key for equality.
792 (ctf_dynhash_insert): Fix comment typo.
793 (ctf_dynhash_empty): New.
794 * ctf-link.c (ctf_add_type_mapping): New.
795 (ctf_type_mapping): Likewise.
796 (empty_link_type_mapping): New.
797 (ctf_link_one_input_archive): Call it.
798
799 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
800
801 * ctf-link.c: New file, linking of the string and type sections.
802 * Makefile.am (libctf_a_SOURCES): Add it.
803 * Makefile.in: Regenerate.
804
805 * ctf-impl.h (ctf_file_t): New fields ctf_link_inputs,
806 ctf_link_outputs.
807 * ctf-create.c (ctf_update): Update accordingly.
808 * ctf-open.c (ctf_file_close): Likewise.
809 * ctf-error.c (_ctf_errlist): Updated with new errors.
810
811 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
812
813 * ctf-dump.c (ctf_dump_funcs): Check the right error value.
814
815 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
816
817 * ctf-dump.c (ctf_dump): Use ctf_type_iter_all to dump types, not
818 ctf_type_iter.
819 (ctf_dump_type): Pass down the flag from ctf_type_iter_all.
820 (ctf_dump_format_type): Add non-root-type { } notation.
821 Add root flag to prototype.
822 (ctf_dump_label): Adjust accordingly.
823 (ctf_dump_objts): Likewise.
824 (ctf_dump_var): Likewise.
825
826 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
827
828 * ctf-create.c (ctf_compress_write): Fix double-free.
829
830 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
831
832 * ctf-archive.c (ctf_arc_write): Split off, and reimplement in terms
833 of...
834 (ctf_arc_write_fd): ... this new function.
835 * ctf-create.c (ctf_write_mem): New.
836
837 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
838
839 * ctf-impl.h (ctf_str_atom_t) <csa_offset>: New field.
840 (ctf_file_t) <ctf_syn_ext_strtab>: Likewise.
841 (ctf_str_add_ref): Name the last arg.
842 (ctf_str_add_external) New.
843 (ctf_str_add_strraw_explicit): Likewise.
844 (ctf_simple_open_internal): Likewise.
845 (ctf_bufopen_internal): Likewise.
846
847 * ctf-string.c (ctf_strraw_explicit): Split from...
848 (ctf_strraw): ... here, with new support for ctf_syn_ext_strtab.
849 (ctf_str_add_ref_internal): Return the atom, not the
850 string.
851 (ctf_str_add): Adjust accordingly.
852 (ctf_str_add_ref): Likewise. Move up in the file.
853 (ctf_str_add_external): New: update the csa_offset.
854 (ctf_str_count_strtab): Only account for strings with no csa_offset
855 in the internal strtab length.
856 (ctf_str_write_strtab): If the csa_offset is set, update the
857 string's refs without writing the string out, and update the
858 ctf_syn_ext_strtab. Make OOM handling less ugly.
859 * ctf-create.c (struct ctf_sort_var_arg_cb): New.
860 (ctf_update): Handle failure to populate the strtab. Pass in the
861 new ctf_sort_var arg. Adjust for ctf_syn_ext_strtab addition.
862 Call ctf_simple_open_internal, not ctf_simple_open.
863 (ctf_sort_var): Call ctf_strraw_explicit rather than looking up
864 strings by hand.
865 * ctf-hash.c (ctf_hash_insert_type): Likewise (but using
866 ctf_strraw). Adjust to diagnose ECTF_STRTAB nonetheless.
867 * ctf-open.c (init_types): No longer filter out ECTF_STRTAB.
868 (ctf_file_close): Destroy the ctf_syn_ext_strtab.
869 (ctf_simple_open): Rename to, and reimplement as a wrapper around...
870 (ctf_simple_open_internal): ... this new function, which calls
871 ctf_bufopen_internal.
872 (ctf_bufopen): Rename to, and reimplement as a wrapper around...
873 (ctf_bufopen_internal): ... this new function, which sets
874 ctf_syn_ext_strtab.
875
876 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
877
878 * ctf_types.c (ctf_type_iter_all): New.
879
880 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
881
882 * ctf-open.c (init_symtab): Check for overflow against the right
883 section.
884 (upgrade_header): Set cth_objtidxoff, cth_funcidxoff to zero-length.
885 (upgrade_types_v1): Note that these sections are not checked.
886 (flip_header): Endian-swap the header fields.
887 (flip_ctf): Endian-swap the sections.
888 (flip_objts): Update comment.
889 (ctf_bufopen): Check header offsets and alignment for validity.
890
891 2019-07-13 Nick Alcock <nick.alcock@oracle.com>
892
893 * ctf-open-bfd.c: Add <assert.h>.
894 (ctf_bfdopen_ctfsect): Open string and symbol tables using
895 techniques borrowed from bfd_elf_sym_name.
896 (ctf_new_archive_internal): Improve comment.
897 * ctf-archive.c (ctf_arc_close): Do not free the ctfi_strsect.
898 * ctf-open.c (ctf_bufopen): Allow opening with a string section but
899 no symbol section, but not vice versa.
900
901 2019-07-08 Nick Alcock <nick.alcock@oracle.com>
902
903 * ctf-impl.h (ctf_file_t): New field ctf_openflags.
904 * ctf-open.c (ctf_bufopen): Set it. No longer dump header offsets.
905 * ctf-dump.c (dump_header): New function, dump the CTF header.
906 (ctf_dump): Call it.
907 (ctf_dump_header_strfield): New function.
908 (ctf_dump_header_sectfield): Likewise.
909
910 2019-07-06 Nick Alcock <nick.alcock@oracle.com>
911
912 * ctf-impl.h (ctf_file_t): New fields ctf_header, ctf_dynbase,
913 ctf_cuname, ctf_dyncuname: ctf_base and ctf_buf are no longer const.
914 * ctf-open.c (ctf_set_base): Preserve the gap between ctf_buf and
915 ctf_base: do not assume that it is always sizeof (ctf_header_t).
916 Print out ctf_cuname: only print out ctf_parname if set.
917 (ctf_free_base): Removed, ctf_base is no longer freed: free
918 ctf_dynbase instead.
919 (ctf_set_version): Fix spacing.
920 (upgrade_header): New, in-place header upgrading.
921 (upgrade_types): Rename to...
922 (upgrade_types_v1): ... this. Free ctf_dynbase, not ctf_base. No
923 longer track old and new headers separately. No longer allow for
924 header sizes explicitly: squeeze the headers out on upgrade (they
925 are preserved in fp->ctf_header). Set ctf_dynbase, ctf_base and
926 ctf_buf explicitly. Use ctf_free, not ctf_free_base.
927 (upgrade_types): New, also handle ctf_parmax updating.
928 (flip_header): Flip ctf_cuname.
929 (flip_types): Flip BUF explicitly rather than deriving BUF from
930 BASE.
931 (ctf_bufopen): Store the header in fp->ctf_header. Correct minimum
932 required alignment of objtoff and funcoff. No longer store it in
933 the ctf_buf unless that buf is derived unmodified from the input.
934 Set ctf_dynbase where ctf_base is dynamically allocated. Drop locals
935 that duplicate fields in ctf_file: move allocation of ctf_file
936 further up instead. Call upgrade_header as needed. Move
937 version-specific ctf_parmax initialization into upgrade_types. More
938 concise error handling.
939 (ctf_file_close): No longer test for null pointers before freeing.
940 Free ctf_dyncuname, ctf_dynbase, and ctf_header. Do not call
941 ctf_free_base.
942 (ctf_cuname): New.
943 (ctf_cuname_set): New.
944 * ctf-create.c (ctf_update): Populate ctf_cuname.
945 (ctf_gzwrite): Write out the header explicitly. Remove obsolescent
946 comment.
947 (ctf_write): Likewise.
948 (ctf_compress_write): Get the header from ctf_header, not ctf_base.
949 Fix the compression length: fp->ctf_size never counted the CTF
950 header. Simplify the compress call accordingly.
951
952 2019-07-11 Hans-Peter Nilsson <hp@bitrange.com>
953
954 * ctf-endian.h: Don't assume htole64 and le64toh are always
955 present if HAVE_ENDIAN_H; also check if htole64 is defined.
956 [!WORDS_BIGENDIAN] (htole64, le64toh): Define as identity,
957 not bswap_identity_64.
958
959 2019-09-18 Alan Modra <amodra@gmail.com>
960
961 * ctf-open-bfd.c: Update throughout for bfd section macro changes.
962
963 2019-09-09 Phil Blundell <pb@pbcl.net>
964
965 binutils 2.33 branch created.
966
967 2019-07-18 Nick Alcock <nick.alcock@oracle.com>
968
969 * ctf-types.c (ctf_type_aname_raw): New.
970 (ctf_func_type_info): Likewise.
971 (ctf_func_type_args): Likewise.
972 * ctf-error.c (_ctf_errlist): Fix description.
973 * ctf-lookup.c: Fix file description.
974
975 2019-06-28 Nick Alcock <nick.alcock@oracle.com>
976
977 * ctf-create.c (ctf_create): Fix off-by-one error.
978
979 2019-06-28 Nick Alcock <nick.alcock@oracle.com>
980
981 * ctf-impl.h: (struct ctf_strs_writable): New, non-const version of
982 struct ctf_strs.
983 (struct ctf_dtdef): Note that dtd_data.ctt_name is unpopulated.
984 (struct ctf_str_atom): New, disambiguated single string.
985 (struct ctf_str_atom_ref): New, points to some other location that
986 references this string's offset.
987 (struct ctf_file): New members ctf_str_atoms and ctf_str_num_refs.
988 Remove member ctf_dtvstrlen: we no longer track the total strlen
989 as we add strings.
990 (ctf_str_create_atoms): Declare new function in ctf-string.c.
991 (ctf_str_free_atoms): Likewise.
992 (ctf_str_add): Likewise.
993 (ctf_str_add_ref): Likewise.
994 (ctf_str_rollback): Likewise.
995 (ctf_str_purge_refs): Likewise.
996 (ctf_str_write_strtab): Likewise.
997 (ctf_realloc): Declare new function in ctf-util.c.
998
999 * ctf-open.c (ctf_bufopen): Create the atoms table.
1000 (ctf_file_close): Destroy it.
1001 * ctf-create.c (ctf_update): Copy-and-free it on update. No longer
1002 special-case the position of the parname string. Construct the
1003 strtab by calling ctf_str_add_ref and ctf_str_write_strtab after the
1004 rest of each buffer element is constructed, not via open-coding:
1005 realloc the CTF buffer and append the strtab to it. No longer
1006 maintain ctf_dtvstrlen. Sort the variable entry table later, after
1007 strtab construction.
1008 (ctf_copy_membnames): Remove: integrated into ctf_copy_{s,l,e}members.
1009 (ctf_copy_smembers): Drop the string offset: call ctf_str_add_ref
1010 after buffer element construction instead.
1011 (ctf_copy_lmembers): Likewise.
1012 (ctf_copy_emembers): Likewise.
1013 (ctf_create): No longer maintain the ctf_dtvstrlen.
1014 (ctf_dtd_delete): Likewise.
1015 (ctf_dvd_delete): Likewise.
1016 (ctf_add_generic): Likewise.
1017 (ctf_add_enumerator): Likewise.
1018 (ctf_add_member_offset): Likewise.
1019 (ctf_add_variable): Likewise.
1020 (membadd): Likewise.
1021 * ctf-util.c (ctf_realloc): New, wrapper around realloc that aborts
1022 if there are active ctf_str_num_refs.
1023 (ctf_strraw): Move to ctf-string.c.
1024 (ctf_strptr): Likewise.
1025 * ctf-string.c: New file, strtab manipulation.
1026
1027 * Makefile.am (libctf_a_SOURCES): Add it.
1028 * Makefile.in: Regenerate.
1029
1030 2019-06-28 Nick Alcock <nick.alcock@oracle.com>
1031
1032 * ctf-impl.h (ctf_hash_iter_f): New.
1033 (ctf_dynhash_iter): New declaration.
1034 (ctf_dynhash_iter_remove): New declaration.
1035 * ctf-hash.c (ctf_dynhash_iter): Define.
1036 (ctf_dynhash_iter_remove): Likewise.
1037 (ctf_hashtab_traverse): New.
1038 (ctf_hashtab_traverse_remove): Likewise.
1039 (struct ctf_traverse_cb_arg): Likewise.
1040 (struct ctf_traverse_remove_cb_arg): Likewise.
1041
1042 2019-06-28 Nick Alcock <nick.alcock@oracle.com>
1043
1044 * ctf-hash.c (ctf_dynhash_remove): Call with a mocked-up element.
1045
1046 2019-06-28 Nick Alcock <nick.alcock@oracle.com>
1047
1048 * ctf-dump.c (ctf_dump_format_type): Prefix hex strings with 0x.
1049 (ctf_dump_funcs): Likewise.
1050
1051 2019-06-19 Nick Alcock <nick.alcock@oracle.com>
1052
1053 * ctf-open-bfd.c: Add swap.h and ctf-endian.h.
1054 (ctf_fdopen): Check for endian-swapped raw CTF magic, and
1055 little-endian CTF archive magic. Do not check the CTF version:
1056 ctf_simple_open does that in endian-safe ways. Do not dereference
1057 null pointers on open failure.
1058
1059 2019-06-19 Nick Alcock <nick.alcock@oracle.com>
1060
1061 * ctf-open.c (get_vbytes_common): Return the new slice size.
1062 (ctf_bufopen): Flip the endianness of the CTF-section header copy.
1063 Remember to copy in the CTF data when opening an uncompressed
1064 foreign-endian CTF file. Prune useless variable manipulation.
1065
1066 2019-06-19 Nick Alcock <nick.alcock@oracle.com>
1067
1068 * ctf-open.c (ctf_types): Fail when unidentified type kinds are
1069 seen.
1070
1071 2019-06-19 Nick Alcock <nick.alcock@oracle.com>
1072
1073 * ctf-open.c (ctf_bufopen): Dump header offsets into the debugging
1074 output.
1075
1076 2019-06-19 Nick Alcock <nick.alcock@oracle.com>
1077
1078 * ctf-subr.c (_PAGESIZE): Remove.
1079 (ctf_data_alloc): Likewise.
1080 (ctf_data_free): Likewise.
1081 (ctf_data_protect): Likewise.
1082 * ctf-impl.h: Remove declarations.
1083 * ctf-create.c (ctf_update): No longer call ctf_data_protect: use
1084 ctf_free, not ctf_data_free.
1085 (ctf_compress_write): Use ctf_data_alloc, not ctf_alloc. Free
1086 the buffer again on compression error.
1087 * ctf-open.c (ctf_set_base): No longer track the size: call
1088 ctf_free, not ctf_data_free.
1089 (upgrade_types): Likewise. Call ctf_alloc, not ctf_data_alloc.
1090 (ctf_bufopen): Likewise. No longer call ctf_data_protect.
1091
1092 2019-06-19 Nick Alcock <nick.alcock@oracle.com>
1093
1094 * ctf-create.c (ctf_dtd_insert): Pass on error returns from
1095 ctf_dynhash_insert.
1096 (ctf_dvd_insert): Likewise.
1097 (ctf_add_generic): Likewise.
1098 (ctf_add_variable): Likewise.
1099 * ctf-impl.h: Adjust declarations.
1100
1101 2019-06-14 Alan Modra <amodra@gmail.com>
1102
1103 * configure: Regenerate.
1104
1105 2019-06-06 Nick Alcock <nick.alcock@oracle.com>
1106
1107 * ctf-decls.h: Include <libiberty.h>.
1108 * ctf-lookup.c (ctf_lookup_by_name): Call xstrndup(), not strndup().
1109
1110 2019-06-06 Nick Alcock <nick.alcock@oracle.com>
1111
1112 * ctf-dump.c (ctf_dump_format_type): Cast size_t's used in printf()s.
1113 (ctf_dump_objts): Likewise.
1114 (ctf_dump_funcs): Likewise.
1115 (ctf_dump_member): Likewise.
1116 (ctf_dump_str): Likewise.
1117
1118 2019-06-06 Nick Alcock <nick.alcock@oracle.com>
1119
1120 * ctf-archive.c (arc_mmap_header): Mark fd as potentially unused.
1121 * ctf-subr.c (ctf_data_protect): Mark both args as potentially unused.
1122
1123 2019-06-05 Nick Alcock <nick.alcock@oracle.com>
1124
1125 * ctf-archive.c (ctf_arc_write): Eschew %zi format specifier.
1126 (ctf_arc_open_by_offset): Likewise.
1127 * ctf-create.c (ctf_add_type): Likewise.
1128
1129 2019-06-04 Tom Tromey <tromey@adacore.com>
1130
1131 * ctf-create.c (ctf_add_encoded, ctf_add_slice)
1132 (ctf_add_member_offset): Use CHAR_BIT, not NBBY.
1133
1134 2019-06-04 Nick Alcock <nick.alcock@oracle.com>
1135
1136 * configure.ac: Check for O_CLOEXEC.
1137 * ctf-decls.h (O_CLOEXEC): Define (to 0), if need be.
1138 * config.h.in: Regenerate.
1139 * configure: Likewise.
1140
1141 2019-06-04 Nick Alcock <nick.alcock@oracle.com>
1142
1143 * qsort_r.c: Rename to...
1144 * ctf-qsort_r.c: ... this.
1145 (_quicksort): Define to ctf_qsort_r.
1146 * ctf-decls.h (qsort_r): Remove.
1147 (ctf_qsort_r): Add.
1148 (struct ctf_qsort_arg): New, transport the real ARG and COMPAR.
1149 (ctf_qsort_compar_thunk): Rearrange the arguments to COMPAR.
1150 * Makefile.am (libctf_a_LIBADD): Remove.
1151 (libctf_a_SOURCES): New, add ctf-qsort_r.c.
1152 * ctf-archive.c (ctf_arc_write): Call ctf_qsort_r, not qsort_r.
1153 * ctf-create.c (ctf_update): Likewise.
1154 * configure.ac: Check for BSD versus GNU qsort_r signature.
1155 * Makefile.in: Regenerate.
1156 * config.h.in: Likewise.
1157 * configure: Likewise.
1158
1159 2019-06-03 Nick Alcock <nick.alcock@oracle.com>
1160
1161 * ctf-dump.c (ctf_dump_funcs): Free in the right place.
1162
1163 2019-05-29 Nick Alcock <nick.alcock@oracle.com>
1164
1165 * Makefile.am (ZLIB): New.
1166 (ZLIBINC): Likewise.
1167 (AM_CFLAGS): Use them.
1168 (libctf_a_LIBADD): New, for LIBOBJS.
1169 * configure.ac: Check for zlib, endian.h, and qsort_r.
1170 * ctf-endian.h: New, providing htole64 and le64toh.
1171 * swap.h: Code style fixes.
1172 (bswap_identity_64): New.
1173 * qsort_r.c: New, from gnulib (with one added #include).
1174 * ctf-decls.h: New, providing a conditional qsort_r declaration,
1175 and unconditional definitions of MIN and MAX.
1176 * ctf-impl.h: Use it. Do not use <sys/errno.h>.
1177 (ctf_set_errno): Now returns unsigned long.
1178 * ctf-util.c (ctf_set_errno): Adjust here too.
1179 * ctf-archive.c: Use ctf-endian.h.
1180 (ctf_arc_open_by_offset): Use memset, not bzero. Drop cts_type,
1181 cts_flags and cts_offset.
1182 (ctf_arc_write): Drop debugging dependent on the size of off_t.
1183 * ctf-create.c: Provide a definition of roundup if not defined.
1184 (ctf_create): Drop cts_type, cts_flags and cts_offset.
1185 (ctf_add_reftype): Do not check if type IDs are below zero.
1186 (ctf_add_slice): Likewise.
1187 (ctf_add_typedef): Likewise.
1188 (ctf_add_member_offset): Cast error-returning ssize_t's to size_t
1189 when known error-free. Drop CTF_ERR usage for functions returning
1190 int.
1191 (ctf_add_member_encoded): Drop CTF_ERR usage for functions returning
1192 int.
1193 (ctf_add_variable): Likewise.
1194 (enumcmp): Likewise.
1195 (enumadd): Likewise.
1196 (membcmp): Likewise.
1197 (ctf_add_type): Likewise. Cast error-returning ssize_t's to size_t
1198 when known error-free.
1199 * ctf-dump.c (ctf_is_slice): Drop CTF_ERR usage for functions
1200 returning int: use CTF_ERR for functions returning ctf_type_id.
1201 (ctf_dump_label): Likewise.
1202 (ctf_dump_objts): Likewise.
1203 * ctf-labels.c (ctf_label_topmost): Likewise.
1204 (ctf_label_iter): Likewise.
1205 (ctf_label_info): Likewise.
1206 * ctf-lookup.c (ctf_func_args): Likewise.
1207 * ctf-open.c (upgrade_types): Cast to size_t where appropriate.
1208 (ctf_bufopen): Likewise. Use zlib types as needed.
1209 * ctf-types.c (ctf_member_iter): Drop CTF_ERR usage for functions
1210 returning int.
1211 (ctf_enum_iter): Likewise.
1212 (ctf_type_size): Likewise.
1213 (ctf_type_align): Likewise. Cast to size_t where appropriate.
1214 (ctf_type_kind_unsliced): Likewise.
1215 (ctf_type_kind): Likewise.
1216 (ctf_type_encoding): Likewise.
1217 (ctf_member_info): Likewise.
1218 (ctf_array_info): Likewise.
1219 (ctf_enum_value): Likewise.
1220 (ctf_type_rvisit): Likewise.
1221 * ctf-open-bfd.c (ctf_bfdopen): Drop cts_type, cts_flags and
1222 cts_offset.
1223 (ctf_simple_open): Likewise.
1224 (ctf_bfdopen_ctfsect): Likewise. Set cts_size properly.
1225 * Makefile.in: Regenerate.
1226 * aclocal.m4: Likewise.
1227 * config.h: Likewise.
1228 * configure: Likewise.
1229
1230 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1231
1232 * configure.in: Check for bfd_section_from_elf_index.
1233 * configure: Regenerate.
1234 * config.h.in [HAVE_BFD_ELF]: Likewise.
1235 * libctf/ctf_open_bfd (ctf_bfdopen_ctfsect): Use it.
1236 abfd is potentially unused now.
1237
1238 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1239
1240 * Makefile.am: New.
1241 * Makefile.in: Regenerated.
1242 * config.h.in: Likewise.
1243 * aclocal.m4: Likewise.
1244 * configure: Likewise.
1245
1246 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1247
1248 * ctf-dump.c: New.
1249
1250 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1251
1252 * ctf-labels.c: New.
1253
1254 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1255
1256 * ctf-impl.h (_libctf_version): New declaration.
1257 * ctf-subr.c (_libctf_version): Define it.
1258 (ctf_version): New.
1259
1260 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1261
1262 * ctf-create.c (enumcmp): New.
1263 (enumadd): Likewise.
1264 (membcmp): Likewise.
1265 (membadd): Likewise.
1266 (ctf_add_type): Likewise.
1267
1268 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1269
1270 * ctf-lookup.c (isqualifier): New.
1271 (ctf_lookup_by_name): Likewise.
1272 (struct ctf_lookup_var_key): Likewise.
1273 (ctf_lookup_var): Likewise.
1274 (ctf_lookup_variable): Likewise.
1275 (ctf_lookup_symbol_name): Likewise.
1276 (ctf_lookup_by_symbol): Likewise.
1277 (ctf_func_info): Likewise.
1278 (ctf_func_args): Likewise.
1279
1280 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1281
1282 * ctf-decl.c: New file.
1283 * ctf-types.c: Likewise.
1284 * ctf-impl.h: New declarations.
1285
1286 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1287
1288 * ctf-open-bfd.c: New file.
1289 * ctf-open.c (ctf_close): New.
1290 * ctf-impl.h: Include bfd.h.
1291 (ctf_file): New members ctf_data_mmapped, ctf_data_mmapped_len.
1292 (ctf_archive_internal): New members ctfi_abfd, ctfi_data,
1293 ctfi_bfd_close.
1294 (ctf_bfdopen_ctfsect): New declaration.
1295 (_CTF_SECTION): likewise.
1296
1297 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1298
1299 * ctf-archive.c: New.
1300 * ctf-impl.h (ctf_archive_internal): New type.
1301 (ctf_arc_open_internal): New declaration.
1302 (ctf_arc_bufopen): Likewise.
1303 (ctf_arc_close_internal): Likewise.
1304
1305 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1306
1307 * ctf-open.c: New file.
1308 * swap.h: Likewise.
1309
1310 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1311
1312 * ctf-create.c: New file.
1313 * ctf-lookup.c: New file.
1314
1315 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1316
1317 * ctf-impl.h: New definitions and declarations for type creation
1318 and lookup.
1319
1320 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1321
1322 * ctf-hash.c: New file.
1323 * ctf-impl.h: New declarations.
1324
1325 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1326
1327 * ctf-error.c: New file.
1328
1329 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1330
1331 * ctf-util.c: New file.
1332 * elf.h: Likewise.
1333 * ctf-impl.h: Include it, and add declarations.
1334
1335 2019-05-28 Nick Alcock <nick.alcock@oracle.com>
1336
1337 * ctf-impl.h: New file.
1338 * ctf-subr.c: New file.
1339
1340 \f
1341 Local Variables:
1342 mode: change-log
1343 left-margin: 8
1344 fill-column: 76
1345 version-control: never
1346 End:
This page took 0.059959 seconds and 5 git commands to generate.