xref: /illumos-gate/usr/src/cmd/sgs/include/debug.h (revision d656abb5804319b33c85955a73ee450ef7ff9739)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #ifndef	_DEBUG_H
28 #define	_DEBUG_H
29 
30 /*
31  * Global include file for lddbg debugging.
32  *
33  * ld(1) and ld.so.1(1) carry out all diagnostic debugging calls via lazy
34  * loading the library liblddbg.so.  Thus debugging is always enabled.  The
35  * utility elfdump(1) is explicitly dependent upon this library.  There are two
36  * categories of routines defined in this library:
37  *
38  *  o	Debugging routines that have specific linker knowledge, and test the
39  *	class of debugging allowable before proceeding, start with the `Dbg_'
40  *	prefix.
41  *
42  *  o	Lower level routines that provide generic ELF structure interpretation
43  *	start with the `Elf_' prefix.  These latter routines are the only
44  *	routines used by the elfdump(1) utility.
45  */
46 #include <sgs.h>
47 #include <libld.h>
48 #include <rtld.h>
49 #include <gelf.h>
50 
51 #ifdef	__cplusplus
52 extern "C" {
53 #endif
54 
55 /*
56  * Define Dbg_*() interface flags.  These flags direct the debugging routine to
57  * generate different diagnostics, thus the strings themselves are maintained
58  * in the debugging library.
59  */
60 #define	DBG_SUP_ENVIRON		1
61 #define	DBG_SUP_CMDLINE		2
62 
63 #define	DBG_CONF_IGNORE		1	/* configuration processing errors */
64 #define	DBG_CONF_VERSION	2
65 #define	DBG_CONF_PRCFAIL	3
66 #define	DBG_CONF_CORRUPT	4
67 #define	DBG_CONF_ABIMISMATCH	5
68 
69 #define	DBG_ORDER_INFO_RANGE	1	/* sh_link out of range */
70 #define	DBG_ORDER_INFO_ORDER	2	/* sh_info also ordered */
71 #define	DBG_ORDER_LINK_OUTRANGE	3	/* sh_link out of range */
72 #define	DBG_ORDER_FLAGS		4	/* sh_flags do not match */
73 #define	DBG_ORDER_CYCLIC	5	/* sh_link cyclic */
74 #define	DBG_ORDER_LINK_ERROR	6	/* sh_link (one) has an error */
75 
76 #define	DBG_INIT_SORT		1	/* calling init from sorted order */
77 #define	DBG_INIT_PEND		2	/* calling pending init */
78 #define	DBG_INIT_DYN		3	/* dynamically triggered init */
79 #define	DBG_INIT_DONE		4	/* init completed */
80 
81 #define	DBG_DLSYM_DEF		0
82 #define	DBG_DLSYM_NEXT		1
83 #define	DBG_DLSYM_DEFAULT	2
84 #define	DBG_DLSYM_SELF		3
85 #define	DBG_DLSYM_PROBE		4
86 #define	DBG_DLSYM_SINGLETON	5
87 
88 #define	DBG_DLCLOSE_NULL	0
89 #define	DBG_DLCLOSE_IGNORE	1
90 #define	DBG_DLCLOSE_RESCAN	2
91 
92 #define	DBG_SYM_REDUCE_GLOBAL	1	/* reporting global symbols to local */
93 #define	DBG_SYM_REDUCE_RETAIN	2	/* reporting non reduced local syms */
94 
95 /*
96  * Group handle operations - passed to Dbg_file_hdl_title().  Indicate why
97  * handle dependencies are being manipulated.
98  */
99 #define	DBG_HDL_CREATE		0	/* handle creation */
100 #define	DBG_HDL_ADD		1	/* addition to existing handle */
101 #define	DBG_HDL_DELETE		2	/* deletion from a handle */
102 #define	DBG_HDL_ORPHAN		3	/* handle being moved to orphan list */
103 #define	DBG_HDL_REINST		4	/* handle reinstated from orphan list */
104 
105 /*
106  * Group handle dependency operations - passed to Dbg_file_hdl_action().
107  * Identify the dependencies that are associated with a handle.
108  */
109 #define	DBG_DEP_ADD		0	/* dependency added */
110 #define	DBG_DEP_UPDATE		1	/* dependency updated */
111 #define	DBG_DEP_DELETE		2	/* dependency deleted */
112 #define	DBG_DEP_REMOVE		3	/* dependency removed from handle */
113 #define	DBG_DEP_REMAIN		4	/* dependency must remain on handle */
114 #define	DBG_DEP_ORPHAN		5	/* dependency must remain an orphan */
115 #define	DBG_DEP_REINST		6	/* dependency reinstated from orphan */
116 
117 /*
118  * Binding information, indicating the result of a symbol binding.  Can also
119  * indicate the reference as being EXTERN or PARENT.  Binding information is
120  * used to augment diagnostic binding information (which in turn can be used by
121  * lari(1)), and to enable ldd(1) -p processing.
122  */
123 #define	DBG_BINFO_FOUND		0x0001	/* information regarding binding */
124 #define	DBG_BINFO_DIRECT	0x0002	/* bound directly */
125 #define	DBG_BINFO_COPYREF	0x0004	/* bound to copy relocated reference */
126 #define	DBG_BINFO_FILTEE	0x0008	/* bound to filtee */
127 #define	DBG_BINFO_INTERPOSE	0x0010	/* bound to an identified interposer */
128 #define	DBG_BINFO_PLTADDR	0x0020	/* bound to executables undefined plt */
129 #define	DBG_BINFO_MSK		0x0fff
130 
131 #define	DBG_BINFO_REF_EXTERN	0x1000	/* reference to EXTERN */
132 #define	DBG_BINFO_REF_PARENT	0x2000	/* reference to PARENT */
133 #define	DBG_BINFO_REF_MSK	0xf000
134 
135 
136 #define	DBG_CAP_INITIAL		0
137 #define	DBG_CAP_IGNORE		1
138 #define	DBG_CAP_OLD		2
139 #define	DBG_CAP_NEW		3
140 #define	DBG_CAP_RESOLVED	4
141 
142 #define	DBG_REL_START		1
143 #define	DBG_REL_FINISH		2
144 #define	DBG_REL_NONE		3
145 
146 #define	DBG_NL_STD		0	/* newline controllers - standard and */
147 #define	DBG_NL_FRC		2	/*    forced. */
148 
149 #define	DBG_BNDREJ_DIRECT	0	/* bind rejected, direct to nodirect */
150 #define	DBG_BNDREJ_GROUP	1	/* bind rejected, group to nodirect */
151 #define	DBG_BNDREJ_SINGLE	2	/* bind rejected, singleton without */
152 					/*    default search model */
153 #define	DBG_BNDREJ_NUM		DBG_BNDREJ_SINGLE
154 
155 /*
156  * Define a debug descriptor, and a user macro that inspects the descriptor as
157  * a means of triggering a class of diagnostic output.
158  */
159 typedef struct {
160 	uint_t		d_class;	/* debugging classes */
161 	uint_t		d_extra;	/* extra information for classes */
162 	APlist		*d_list;	/* associated strings */
163 } Dbg_desc;
164 
165 extern	Dbg_desc	*dbg_desc;
166 
167 #define	DBG_ENABLED	(dbg_desc->d_class)
168 #define	DBG_CALL(func)	if (DBG_ENABLED) func
169 
170 /*
171  * Most debugging tokens are interpreted within liblddbg, and thus any flags
172  * within d_class are only meaningful to this library.  The following flags
173  * extend the d_class diagnostic, and are maintained in d_extra.  These flags
174  * may be interpreted by the debugging library itself or from the callers
175  * dbg_print() routine.
176  */
177 #define	DBG_E_DETAIL	0x0001		/* add detail to a class */
178 #define	DBG_E_LONG	0x0002		/* use long names (ie. no truncation) */
179 
180 #define	DBG_E_STDNL	0x0010		/* standard newline indicator */
181 
182 #define	DBG_E_SNAME	0x0100		/* prepend simple name (ld only) */
183 #define	DBG_E_FNAME	0x0200		/* prepend full name (ld only) */
184 #define	DBG_E_CLASS	0x0400		/* prepend ELF class (ld only) */
185 #define	DBG_E_LMID	0x0800		/* prepend link-map id (ld.so.1 only) */
186 #define	DBG_E_DEMANGLE	0x1000		/* demangle symbol names */
187 
188 #define	DBG_NOTDETAIL()	!(dbg_desc->d_extra & DBG_E_DETAIL)
189 #define	DBG_NOTLONG()	!(dbg_desc->d_extra & DBG_E_LONG)
190 
191 #define	DBG_ISSNAME()	(dbg_desc->d_extra & DBG_E_SNAME)
192 #define	DBG_ISFNAME()	(dbg_desc->d_extra & DBG_E_FNAME)
193 #define	DBG_ISCLASS()	(dbg_desc->d_extra & DBG_E_CLASS)
194 #define	DBG_ISLMID()	(dbg_desc->d_extra & DBG_E_LMID)
195 #define	DBG_ISDEMANGLE() \
196 			(dbg_desc->d_extra & DBG_E_DEMANGLE)
197 
198 /*
199  * Print routine, this must be supplied by the application.  The initial
200  * argument may provide a link-map list to associate with the format statement
201  * that follows.
202  */
203 /* PRINTFLIKE2 */
204 extern	void		dbg_print(Lm_list *, const char *, ...);
205 
206 extern	uintptr_t	Dbg_setup(const char *, Dbg_desc *);
207 
208 /*
209  * Establish ELF32 and ELF64 class Dbg_*() interfaces.
210  */
211 #if	defined(_ELF64)
212 
213 #define	Dbg_demangle_name	Dbg64_demangle_name
214 
215 #define	Dbg_bind_global		Dbg64_bind_global
216 #define	Dbg_bind_plt_summary	Dbg64_bind_plt_summary
217 #define	Dbg_bind_pltpad_from	Dbg64_bind_pltpad_from
218 #define	Dbg_bind_pltpad_to	Dbg64_bind_pltpad_to
219 #define	Dbg_bind_reject		Dbg64_bind_reject
220 #define	Dbg_bind_weak		Dbg64_bind_weak
221 
222 #define	Dbg_cap_val_hw1		Dbg64_cap_val_hw1
223 #define	Dbg_cap_hw_candidate	Dbg64_cap_hw_candidate
224 #define	Dbg_cap_hw_filter	Dbg64_cap_hw_filter
225 #define	Dbg_cap_mapfile		Dbg64_cap_mapfile
226 #define	Dbg_cap_sec_entry	Dbg64_cap_sec_entry
227 #define	Dbg_cap_sec_title	Dbg64_cap_sec_title
228 
229 #define	Dbg_ent_entry		Dbg64_ent_entry
230 #define	Dbg_ent_print		Dbg64_ent_print
231 
232 #define	Dbg_file_analyze	Dbg64_file_analyze
233 #define	Dbg_file_aout		Dbg64_file_aout
234 #define	Dbg_file_ar		Dbg64_file_ar
235 #define	Dbg_file_ar_rescan	Dbg64_file_ar_rescan
236 #define	Dbg_file_bind_entry	Dbg64_file_bind_entry
237 #define	Dbg_file_bindings	Dbg64_file_bindings
238 #define	Dbg_file_cleanup	Dbg64_file_cleanup
239 #define	Dbg_file_cntl		Dbg64_file_cntl
240 #define	Dbg_file_config_dis	Dbg64_file_config_dis
241 #define	Dbg_file_config_obj	Dbg64_file_config_obj
242 #define	Dbg_file_del_rescan	Dbg64_file_del_rescan
243 #define	Dbg_file_delete		Dbg64_file_delete
244 #define	Dbg_file_dlclose	Dbg64_file_dlclose
245 #define	Dbg_file_dldump		Dbg64_file_dldump
246 #define	Dbg_file_dlopen		Dbg64_file_dlopen
247 #define	Dbg_file_elf		Dbg64_file_elf
248 #define	Dbg_file_filtee		Dbg64_file_filtee
249 #define	Dbg_file_filter		Dbg64_file_filter
250 #define	Dbg_file_fixname	Dbg64_file_fixname
251 #define	Dbg_file_generic	Dbg64_file_generic
252 #define	Dbg_file_hdl_action	Dbg64_file_hdl_action
253 #define	Dbg_file_hdl_collect	Dbg64_file_hdl_collect
254 #define	Dbg_file_hdl_title	Dbg64_file_hdl_title
255 #define	Dbg_file_lazyload	Dbg64_file_lazyload
256 #define	Dbg_file_ldso		Dbg64_file_ldso
257 #define	Dbg_file_mmapobj	Dbg64_file_mmapobj
258 #define	Dbg_file_mode_promote	Dbg64_file_mode_promote
259 #define	Dbg_file_modified	Dbg64_file_modified
260 #define	Dbg_file_needed		Dbg64_file_needed
261 #define	Dbg_file_output		Dbg64_file_output
262 #define	Dbg_file_preload	Dbg64_file_preload
263 #define	Dbg_file_prot		Dbg64_file_prot
264 #define	Dbg_file_rejected	Dbg64_file_rejected
265 #define	Dbg_file_reuse		Dbg64_file_reuse
266 #define	Dbg_file_skip		Dbg64_file_skip
267 
268 #define	Dbg_got_display		Dbg64_got_display
269 
270 #define	Dbg_libs_audit		Dbg64_libs_audit
271 #define	Dbg_libs_find		Dbg64_libs_find
272 #define	Dbg_libs_found		Dbg64_libs_found
273 #define	Dbg_libs_insecure	Dbg64_libs_insecure
274 #define	Dbg_libs_init		Dbg64_libs_init
275 #define	Dbg_libs_l		Dbg64_libs_l
276 #define	Dbg_libs_path		Dbg64_libs_path
277 #define	Dbg_libs_req		Dbg64_libs_req
278 #define	Dbg_libs_update		Dbg64_libs_update
279 #define	Dbg_libs_yp		Dbg64_libs_yp
280 #define	Dbg_libs_ylu		Dbg64_libs_ylu
281 
282 #define	Dbg_map_dash		Dbg64_map_dash
283 #define	Dbg_map_ent		Dbg64_map_ent
284 #define	Dbg_map_parse		Dbg64_map_parse
285 #define	Dbg_map_pipe		Dbg64_map_pipe
286 #define	Dbg_map_seg		Dbg64_map_seg
287 #define	Dbg_map_set_atsign	Dbg64_map_set_atsign
288 #define	Dbg_map_set_equal	Dbg64_map_set_equal
289 #define	Dbg_map_size_new	Dbg64_map_size_new
290 #define	Dbg_map_size_old	Dbg64_map_size_old
291 #define	Dbg_map_sort_fini	Dbg64_map_sort_fini
292 #define	Dbg_map_sort_orig	Dbg64_map_sort_orig
293 #define	Dbg_map_symbol		Dbg64_map_symbol
294 #define	Dbg_map_version		Dbg64_map_version
295 
296 #define	Dbg_move_adjexpandreloc	Dbg64_move_adjexpandreloc
297 #define	Dbg_move_adjmovereloc	Dbg64_move_adjmovereloc
298 #define	Dbg_move_bad		Dbg64_move_bad
299 #define	Dbg_move_data		Dbg64_move_data
300 #define	Dbg_move_entry1		Dbg64_move_entry1
301 #define	Dbg_move_entry2		Dbg64_move_entry2
302 #define	Dbg_move_expand		Dbg64_move_expand
303 #define	Dbg_move_input		Dbg64_move_input
304 #define	Dbg_move_outmove	Dbg64_move_outmove
305 #define	Dbg_move_outsctadj	Dbg64_move_outsctadj
306 #define	Dbg_move_parexpn	Dbg64_move_parexpn
307 
308 #define	Dbg_reloc_apply_reg	Dbg64_reloc_apply_reg
309 #define	Dbg_reloc_apply_val	Dbg64_reloc_apply_val
310 #define	Dbg_reloc_ars_entry	Dbg64_reloc_ars_entry
311 #define	Dbg_reloc_copy		Dbg64_reloc_copy
312 #define	Dbg_reloc_discard	Dbg64_reloc_discard
313 #define	Dbg_reloc_doact		Dbg64_reloc_doact
314 #define	Dbg_reloc_doact_title	Dbg64_reloc_doact_title
315 #define	Dbg_reloc_dooutrel	Dbg64_reloc_dooutrel
316 #define	Dbg_reloc_entry		Dbg64_reloc_entry
317 #define	Dbg_reloc_error		Dbg64_reloc_error
318 #define	Dbg_reloc_generate	Dbg64_reloc_generate
319 #define	Dbg_reloc_in		Dbg64_reloc_in
320 #define	Dbg_reloc_ors_entry	Dbg64_reloc_ors_entry
321 #define	Dbg_reloc_out		Dbg64_reloc_out
322 #define	Dbg_reloc_proc		Dbg64_reloc_proc
323 #define	Dbg_reloc_run		Dbg64_reloc_run
324 #define	Dbg_reloc_transition	Dbg64_reloc_transition
325 #define	Dbg_reloc_sloppycomdat	Dbg64_reloc_sloppycomdat
326 
327 #define	Dbg_sec_added		Dbg64_sec_added
328 #define	Dbg_sec_created		Dbg64_sec_created
329 #define	Dbg_sec_discarded	Dbg64_sec_discarded
330 #define	Dbg_sec_genstr_compress	Dbg64_sec_genstr_compress
331 #define	Dbg_sec_group		Dbg64_sec_group
332 #define	Dbg_sec_gnu_comdat	Dbg64_sec_gnu_comdat
333 #define	Dbg_sec_in		Dbg64_sec_in
334 #define	Dbg_sec_order_error	Dbg64_sec_order_error
335 #define	Dbg_sec_order_list	Dbg64_sec_order_list
336 #define	Dbg_sec_redirected	Dbg64_sec_redirected
337 #define	Dbg_sec_strtab		Dbg64_sec_strtab
338 #define	Dbg_sec_unsup_strmerge	Dbg64_sec_unsup_strmerge
339 
340 #define	Dbg_seg_desc_entry	Dbg64_seg_desc_entry
341 #define	Dbg_seg_entry		Dbg64_seg_entry
342 #define	Dbg_seg_list		Dbg64_seg_list
343 #define	Dbg_seg_os		Dbg64_seg_os
344 #define	Dbg_seg_title		Dbg64_seg_title
345 
346 #define	Dbg_shdr_modified	Dbg64_shdr_modified
347 
348 #define	Dbg_statistics_ar	Dbg64_statistics_ar
349 #define	Dbg_statistics_ld	Dbg64_statistics_ld
350 
351 #define	Dbg_support_action	Dbg64_support_action
352 #define	Dbg_support_load	Dbg64_support_load
353 #define	Dbg_support_req		Dbg64_support_req
354 #define	Dbg_support_vnone	Dbg64_support_vnone
355 
356 #define	Dbg_syminfo_entry	Dbg64_syminfo_entry
357 #define	Dbg_syminfo_title	Dbg64_syminfo_title
358 
359 #define	Dbg_syms_ar_checking	Dbg64_syms_ar_checking
360 #define	Dbg_syms_ar_entry	Dbg64_syms_ar_entry
361 #define	Dbg_syms_ar_resolve	Dbg64_syms_ar_resolve
362 #define	Dbg_syms_ar_title	Dbg64_syms_ar_title
363 #define	Dbg_syms_created	Dbg64_syms_created
364 #define	Dbg_syms_discarded	Dbg64_syms_discarded
365 #define	Dbg_syms_dlsym		Dbg64_syms_dlsym
366 #define	Dbg_syms_dup_discarded	Dbg64_syms_dup_discarded
367 #define	Dbg_syms_dup_sort_addr	Dbg64_syms_dup_sort_addr
368 #define	Dbg_syms_entered	Dbg64_syms_entered
369 #define	Dbg_syms_entry		Dbg64_syms_entry
370 #define	Dbg_syms_global		Dbg64_syms_global
371 #define	Dbg_syms_ignore		Dbg64_syms_ignore
372 #define	Dbg_syms_ignore_gnuver	Dbg64_syms_ignore_gnuver
373 #define	Dbg_syms_lazy_rescan	Dbg64_syms_lazy_rescan
374 #define	Dbg_syms_lookup		Dbg64_syms_lookup
375 #define	Dbg_syms_new		Dbg64_syms_new
376 #define	Dbg_syms_old		Dbg64_syms_old
377 #define	Dbg_syms_process	Dbg64_syms_process
378 #define	Dbg_syms_reduce		Dbg64_syms_reduce
379 #define	Dbg_syms_reloc		Dbg64_syms_reloc
380 #define	Dbg_syms_resolved	Dbg64_syms_resolved
381 #define	Dbg_syms_resolving	Dbg64_syms_resolving
382 #define	Dbg_syms_sec_entry	Dbg64_syms_sec_entry
383 #define	Dbg_syms_sec_title	Dbg64_syms_sec_title
384 #define	Dbg_syms_spec_title	Dbg64_syms_spec_title
385 #define	Dbg_syms_updated	Dbg64_syms_updated
386 #define	Dbg_syms_up_title	Dbg64_syms_up_title
387 
388 #define	Dbg_util_call_array	Dbg64_util_call_array
389 #define	Dbg_util_call_fini	Dbg64_util_call_fini
390 #define	Dbg_util_call_init	Dbg64_util_call_init
391 #define	Dbg_util_call_main	Dbg64_util_call_main
392 #define	Dbg_util_collect	Dbg64_util_collect
393 #define	Dbg_util_dbnotify	Dbg64_util_dbnotify
394 #define	Dbg_util_edge_in	Dbg64_util_edge_in
395 #define	Dbg_util_edge_out	Dbg64_util_edge_out
396 #define	Dbg_util_intoolate	Dbg64_util_intoolate
397 #define	Dbg_util_lcinterface	Dbg64_util_lcinterface
398 #define	Dbg_util_nl		Dbg64_util_nl
399 #define	Dbg_util_no_init	Dbg64_util_no_init
400 #define	Dbg_util_scc_entry	Dbg64_util_scc_entry
401 #define	Dbg_util_scc_title	Dbg64_util_scc_title
402 #define	Dbg_util_str		Dbg64_util_str
403 
404 #define	Dbg_unused_file		Dbg64_unused_file
405 #define	Dbg_unused_lcinterface	Dbg64_unused_lcinterface
406 #define	Dbg_unused_path		Dbg64_unused_path
407 #define	Dbg_unused_sec		Dbg64_unused_sec
408 #define	Dbg_unused_unref	Dbg64_unused_unref
409 
410 #define	Dbg_ver_avail_entry	Dbg64_ver_avail_entry
411 #define	Dbg_ver_avail_title	Dbg64_ver_avail_title
412 #define	Dbg_ver_def_title	Dbg64_ver_def_title
413 #define	Dbg_ver_desc_entry	Dbg64_ver_desc_entry
414 #define	Dbg_ver_need_entry	Dbg64_ver_need_entry
415 #define	Dbg_ver_need_title	Dbg64_ver_need_title
416 #define	Dbg_ver_nointerface	Dbg64_ver_nointerface
417 #define	Dbg_ver_symbol		Dbg64_ver_symbol
418 
419 #else
420 
421 #define	Dbg_demangle_name	Dbg32_demangle_name
422 
423 #define	Dbg_bind_global		Dbg32_bind_global
424 #define	Dbg_bind_plt_summary	Dbg32_bind_plt_summary
425 #define	Dbg_bind_reject		Dbg32_bind_reject
426 #define	Dbg_bind_weak		Dbg32_bind_weak
427 
428 #define	Dbg_cap_val_hw1		Dbg32_cap_val_hw1
429 #define	Dbg_cap_hw_candidate	Dbg32_cap_hw_candidate
430 #define	Dbg_cap_hw_filter	Dbg32_cap_hw_filter
431 #define	Dbg_cap_mapfile		Dbg32_cap_mapfile
432 #define	Dbg_cap_sec_entry	Dbg32_cap_sec_entry
433 #define	Dbg_cap_sec_title	Dbg32_cap_sec_title
434 
435 #define	Dbg_ent_entry		Dbg32_ent_entry
436 #define	Dbg_ent_print		Dbg32_ent_print
437 
438 #define	Dbg_file_analyze	Dbg32_file_analyze
439 #define	Dbg_file_aout		Dbg32_file_aout
440 #define	Dbg_file_ar		Dbg32_file_ar
441 #define	Dbg_file_ar_rescan	Dbg32_file_ar_rescan
442 #define	Dbg_file_bind_entry	Dbg32_file_bind_entry
443 #define	Dbg_file_bindings	Dbg32_file_bindings
444 #define	Dbg_file_cleanup	Dbg32_file_cleanup
445 #define	Dbg_file_cntl		Dbg32_file_cntl
446 #define	Dbg_file_config_dis	Dbg32_file_config_dis
447 #define	Dbg_file_config_obj	Dbg32_file_config_obj
448 #define	Dbg_file_del_rescan	Dbg32_file_del_rescan
449 #define	Dbg_file_delete		Dbg32_file_delete
450 #define	Dbg_file_dlclose	Dbg32_file_dlclose
451 #define	Dbg_file_dldump		Dbg32_file_dldump
452 #define	Dbg_file_dlopen		Dbg32_file_dlopen
453 #define	Dbg_file_elf		Dbg32_file_elf
454 #define	Dbg_file_filtee		Dbg32_file_filtee
455 #define	Dbg_file_filter		Dbg32_file_filter
456 #define	Dbg_file_fixname	Dbg32_file_fixname
457 #define	Dbg_file_generic	Dbg32_file_generic
458 #define	Dbg_file_hdl_action	Dbg32_file_hdl_action
459 #define	Dbg_file_hdl_collect	Dbg32_file_hdl_collect
460 #define	Dbg_file_hdl_title	Dbg32_file_hdl_title
461 #define	Dbg_file_lazyload	Dbg32_file_lazyload
462 #define	Dbg_file_ldso		Dbg32_file_ldso
463 #define	Dbg_file_mmapobj	Dbg32_file_mmapobj
464 #define	Dbg_file_mode_promote	Dbg32_file_mode_promote
465 #define	Dbg_file_modified	Dbg32_file_modified
466 #define	Dbg_file_needed		Dbg32_file_needed
467 #define	Dbg_file_output		Dbg32_file_output
468 #define	Dbg_file_preload	Dbg32_file_preload
469 #define	Dbg_file_prot		Dbg32_file_prot
470 #define	Dbg_file_rejected	Dbg32_file_rejected
471 #define	Dbg_file_reuse		Dbg32_file_reuse
472 #define	Dbg_file_skip		Dbg32_file_skip
473 
474 #define	Dbg_got_display		Dbg32_got_display
475 
476 #define	Dbg_libs_audit		Dbg32_libs_audit
477 #define	Dbg_libs_find		Dbg32_libs_find
478 #define	Dbg_libs_found		Dbg32_libs_found
479 #define	Dbg_libs_insecure	Dbg32_libs_insecure
480 #define	Dbg_libs_init		Dbg32_libs_init
481 #define	Dbg_libs_l		Dbg32_libs_l
482 #define	Dbg_libs_path		Dbg32_libs_path
483 #define	Dbg_libs_req		Dbg32_libs_req
484 #define	Dbg_libs_update		Dbg32_libs_update
485 #define	Dbg_libs_yp		Dbg32_libs_yp
486 #define	Dbg_libs_ylu		Dbg32_libs_ylu
487 
488 #define	Dbg_map_dash		Dbg32_map_dash
489 #define	Dbg_map_ent		Dbg32_map_ent
490 #define	Dbg_map_parse		Dbg32_map_parse
491 #define	Dbg_map_pipe		Dbg32_map_pipe
492 #define	Dbg_map_seg		Dbg32_map_seg
493 #define	Dbg_map_set_atsign	Dbg32_map_set_atsign
494 #define	Dbg_map_set_equal	Dbg32_map_set_equal
495 #define	Dbg_map_size_new	Dbg32_map_size_new
496 #define	Dbg_map_size_old	Dbg32_map_size_old
497 #define	Dbg_map_sort_fini	Dbg32_map_sort_fini
498 #define	Dbg_map_sort_orig	Dbg32_map_sort_orig
499 #define	Dbg_map_symbol		Dbg32_map_symbol
500 #define	Dbg_map_version		Dbg32_map_version
501 
502 #define	Dbg_move_adjexpandreloc	Dbg32_move_adjexpandreloc
503 #define	Dbg_move_adjmovereloc	Dbg32_move_adjmovereloc
504 #define	Dbg_move_bad		Dbg32_move_bad
505 #define	Dbg_move_data		Dbg32_move_data
506 #define	Dbg_move_entry1		Dbg32_move_entry1
507 #define	Dbg_move_entry2		Dbg32_move_entry2
508 #define	Dbg_move_expand		Dbg32_move_expand
509 #define	Dbg_move_input		Dbg32_move_input
510 #define	Dbg_move_outmove	Dbg32_move_outmove
511 #define	Dbg_move_outsctadj	Dbg32_move_outsctadj
512 #define	Dbg_move_parexpn	Dbg32_move_parexpn
513 
514 #define	Dbg_reloc_apply_reg	Dbg32_reloc_apply_reg
515 #define	Dbg_reloc_apply_val	Dbg32_reloc_apply_val
516 #define	Dbg_reloc_ars_entry	Dbg32_reloc_ars_entry
517 #define	Dbg_reloc_copy		Dbg32_reloc_copy
518 #define	Dbg_reloc_discard	Dbg32_reloc_discard
519 #define	Dbg_reloc_doact		Dbg32_reloc_doact
520 #define	Dbg_reloc_doact_title	Dbg32_reloc_doact_title
521 #define	Dbg_reloc_dooutrel	Dbg32_reloc_dooutrel
522 #define	Dbg_reloc_entry		Dbg32_reloc_entry
523 #define	Dbg_reloc_error		Dbg32_reloc_error
524 #define	Dbg_reloc_generate	Dbg32_reloc_generate
525 #define	Dbg_reloc_in		Dbg32_reloc_in
526 #define	Dbg_reloc_ors_entry	Dbg32_reloc_ors_entry
527 #define	Dbg_reloc_out		Dbg32_reloc_out
528 #define	Dbg_reloc_proc		Dbg32_reloc_proc
529 #define	Dbg_reloc_run		Dbg32_reloc_run
530 #define	Dbg_reloc_transition	Dbg32_reloc_transition
531 #define	Dbg_reloc_sloppycomdat	Dbg32_reloc_sloppycomdat
532 
533 #define	Dbg_sec_added		Dbg32_sec_added
534 #define	Dbg_sec_created		Dbg32_sec_created
535 #define	Dbg_sec_discarded	Dbg32_sec_discarded
536 #define	Dbg_sec_genstr_compress	Dbg32_sec_genstr_compress
537 #define	Dbg_sec_group		Dbg32_sec_group
538 #define	Dbg_sec_gnu_comdat	Dbg32_sec_gnu_comdat
539 #define	Dbg_sec_in		Dbg32_sec_in
540 #define	Dbg_sec_order_error	Dbg32_sec_order_error
541 #define	Dbg_sec_order_list	Dbg32_sec_order_list
542 #define	Dbg_sec_redirected	Dbg32_sec_redirected
543 #define	Dbg_sec_strtab		Dbg32_sec_strtab
544 #define	Dbg_sec_unsup_strmerge	Dbg32_sec_unsup_strmerge
545 
546 #define	Dbg_seg_desc_entry	Dbg32_seg_desc_entry
547 #define	Dbg_seg_entry		Dbg32_seg_entry
548 #define	Dbg_seg_list		Dbg32_seg_list
549 #define	Dbg_seg_os		Dbg32_seg_os
550 #define	Dbg_seg_title		Dbg32_seg_title
551 
552 #define	Dbg_shdr_modified	Dbg32_shdr_modified
553 
554 #define	Dbg_statistics_ar	Dbg32_statistics_ar
555 #define	Dbg_statistics_ld	Dbg32_statistics_ld
556 
557 #define	Dbg_support_action	Dbg32_support_action
558 #define	Dbg_support_load	Dbg32_support_load
559 #define	Dbg_support_req		Dbg32_support_req
560 #define	Dbg_support_vnone	Dbg32_support_vnone
561 
562 #define	Dbg_syminfo_entry	Dbg32_syminfo_entry
563 #define	Dbg_syminfo_title	Dbg32_syminfo_title
564 
565 #define	Dbg_syms_ar_checking	Dbg32_syms_ar_checking
566 #define	Dbg_syms_ar_entry	Dbg32_syms_ar_entry
567 #define	Dbg_syms_ar_resolve	Dbg32_syms_ar_resolve
568 #define	Dbg_syms_ar_title	Dbg32_syms_ar_title
569 #define	Dbg_syms_created	Dbg32_syms_created
570 #define	Dbg_syms_discarded	Dbg32_syms_discarded
571 #define	Dbg_syms_dlsym		Dbg32_syms_dlsym
572 #define	Dbg_syms_dup_discarded	Dbg32_syms_dup_discarded
573 #define	Dbg_syms_dup_sort_addr	Dbg32_syms_dup_sort_addr
574 #define	Dbg_syms_entered	Dbg32_syms_entered
575 #define	Dbg_syms_entry		Dbg32_syms_entry
576 #define	Dbg_syms_global		Dbg32_syms_global
577 #define	Dbg_syms_ignore		Dbg32_syms_ignore
578 #define	Dbg_syms_ignore_gnuver	Dbg32_syms_ignore_gnuver
579 #define	Dbg_syms_lazy_rescan	Dbg32_syms_lazy_rescan
580 #define	Dbg_syms_lookup		Dbg32_syms_lookup
581 #define	Dbg_syms_lookup_aout	Dbg32_syms_lookup_aout
582 #define	Dbg_syms_new		Dbg32_syms_new
583 #define	Dbg_syms_old		Dbg32_syms_old
584 #define	Dbg_syms_process	Dbg32_syms_process
585 #define	Dbg_syms_reduce		Dbg32_syms_reduce
586 #define	Dbg_syms_reloc		Dbg32_syms_reloc
587 #define	Dbg_syms_resolved	Dbg32_syms_resolved
588 #define	Dbg_syms_resolving	Dbg32_syms_resolving
589 #define	Dbg_syms_sec_entry	Dbg32_syms_sec_entry
590 #define	Dbg_syms_sec_title	Dbg32_syms_sec_title
591 #define	Dbg_syms_spec_title	Dbg32_syms_spec_title
592 #define	Dbg_syms_updated	Dbg32_syms_updated
593 #define	Dbg_syms_up_title	Dbg32_syms_up_title
594 
595 #define	Dbg_util_call_array	Dbg32_util_call_array
596 #define	Dbg_util_call_fini	Dbg32_util_call_fini
597 #define	Dbg_util_call_init	Dbg32_util_call_init
598 #define	Dbg_util_call_main	Dbg32_util_call_main
599 #define	Dbg_util_collect	Dbg32_util_collect
600 #define	Dbg_util_dbnotify	Dbg32_util_dbnotify
601 #define	Dbg_util_edge_in	Dbg32_util_edge_in
602 #define	Dbg_util_edge_out	Dbg32_util_edge_out
603 #define	Dbg_util_intoolate	Dbg32_util_intoolate
604 #define	Dbg_util_lcinterface	Dbg32_util_lcinterface
605 #define	Dbg_util_nl		Dbg32_util_nl
606 #define	Dbg_util_no_init	Dbg32_util_no_init
607 #define	Dbg_util_scc_entry	Dbg32_util_scc_entry
608 #define	Dbg_util_scc_title	Dbg32_util_scc_title
609 #define	Dbg_util_str		Dbg32_util_str
610 
611 #define	Dbg_unused_file		Dbg32_unused_file
612 #define	Dbg_unused_lcinterface	Dbg32_unused_lcinterface
613 #define	Dbg_unused_path		Dbg32_unused_path
614 #define	Dbg_unused_sec		Dbg32_unused_sec
615 #define	Dbg_unused_unref	Dbg32_unused_unref
616 
617 #define	Dbg_ver_avail_entry	Dbg32_ver_avail_entry
618 #define	Dbg_ver_avail_title	Dbg32_ver_avail_title
619 #define	Dbg_ver_def_title	Dbg32_ver_def_title
620 #define	Dbg_ver_desc_entry	Dbg32_ver_desc_entry
621 #define	Dbg_ver_need_entry	Dbg32_ver_need_entry
622 #define	Dbg_ver_need_title	Dbg32_ver_need_title
623 #define	Dbg_ver_nointerface	Dbg32_ver_nointerface
624 #define	Dbg_ver_symbol		Dbg32_ver_symbol
625 
626 #endif
627 
628 /*
629  * External Dbg_*() interface routines.
630  */
631 extern	void	Dbg_args_files(Lm_list *, int, char *);
632 extern	void	Dbg_args_opts(Lm_list *, int, int, char *);
633 extern	void	Dbg_args_str2chr(Lm_list *, int, const char *, int);
634 extern	void	Dbg_args_Wldel(Lm_list *, int, const char *);
635 extern	void	Dbg_audit_ignore(Rt_map *);
636 extern	void	Dbg_audit_interface(Lm_list *, const char *, const char *);
637 extern	void	Dbg_audit_lib(Lm_list *, const char *);
638 extern	void	Dbg_audit_object(Lm_list *, const char *, const char *);
639 extern	void	Dbg_audit_symval(Lm_list *, const char *, const char *,
640 		    const char *, Addr, Addr);
641 extern	void	Dbg_audit_skip(Lm_list *, const char *, const char *);
642 extern	void	Dbg_audit_terminate(Lm_list *, const char *);
643 extern	void	Dbg_audit_version(Lm_list *, const char *, ulong_t);
644 
645 extern	void	Dbg_bind_global(Rt_map *, Addr, Off, Xword, Pltbindtype,
646 		    Rt_map *, Addr, Off, const char *, uint_t);
647 extern	void	Dbg_bind_plt_summary(Lm_list *, Half, Word, Word, Word, Word,
648 		    Word, Word);
649 #if	defined(_ELF64)
650 extern	void	Dbg_bind_pltpad_from(Rt_map *, Addr, const char *);
651 extern	void	Dbg_bind_pltpad_to(Rt_map *, Addr, const char *, const char *);
652 #endif
653 extern	void	Dbg_bind_reject(Rt_map *, Rt_map *, const char *, int);
654 extern	void	Dbg_bind_weak(Rt_map *, Addr, Addr, const char *);
655 
656 extern	void	Dbg_cap_hw_candidate(Lm_list *, const char *);
657 extern	void	Dbg_cap_hw_filter(Lm_list *, const char *, Rt_map *);
658 extern	void	Dbg_cap_mapfile(Lm_list *, Xword, Xword, Half);
659 extern	void	Dbg_cap_sec_entry(Lm_list *, uint_t, Xword, Xword, Half);
660 extern	void	Dbg_cap_sec_title(Lm_list *, const char *);
661 extern	void	Dbg_cap_val_hw1(Lm_list *, Xword, Half);
662 
663 extern	const char *
664 		Dbg_demangle_name(const char *);
665 
666 extern	void	Dbg_ent_entry(Lm_list *, Half, Ent_desc *);
667 extern	void	Dbg_ent_print(Lm_list *, Half, List *, Boolean);
668 
669 extern	void	Dbg_file_analyze(Rt_map *);
670 extern	void	Dbg_file_aout(Lm_list *, const char *, Addr, size_t,
671 		    const char *, Aliste);
672 extern	void	Dbg_file_ar(Lm_list *, const char *, int);
673 extern	void	Dbg_file_ar_rescan(Lm_list *, int, int);
674 extern	void	Dbg_file_bind_entry(Lm_list *, Bnd_desc *);
675 extern	void	Dbg_file_bindings(Rt_map *, int);
676 extern	void	Dbg_file_cleanup(Lm_list *, const char *, Aliste);
677 extern	void	Dbg_file_cntl(Lm_list *, Aliste, Aliste);
678 extern	void	Dbg_file_config_dis(Lm_list *, const char *, int);
679 extern	void	Dbg_file_config_obj(Lm_list *, const char *, const char *,
680 		    const char *);
681 extern	void	Dbg_file_del_rescan(Lm_list *);
682 extern	void	Dbg_file_delete(Rt_map *);
683 extern	void	Dbg_file_dlclose(Lm_list *, const char *, int);
684 extern	void	Dbg_file_dldump(Rt_map *, const char *, int);
685 extern	void	Dbg_file_dlopen(Rt_map *, const char *, int *, int);
686 extern	void	Dbg_file_elf(Lm_list *, const char *, Addr, size_t,
687 		    const char *, Aliste);
688 extern	void	Dbg_file_filtee(Lm_list *, const char *, const char *, int);
689 extern	void	Dbg_file_filter(Lm_list *, const char *, const char *, int);
690 extern	void	Dbg_file_fixname(Lm_list *, const char *, const char *);
691 extern	void	Dbg_file_generic(Lm_list *, Ifl_desc *);
692 extern	void	Dbg_file_hdl_action(Grp_hdl *, Rt_map *, int, uint_t);
693 extern	void	Dbg_file_hdl_collect(Grp_hdl *, const char *);
694 extern	void	Dbg_file_hdl_title(int);
695 extern	void	Dbg_file_lazyload(Rt_map *, const char *, const char *);
696 extern	void	Dbg_file_ldso(Rt_map *, char **, auxv_t *, const char *,
697 		    Aliste);
698 extern	void	Dbg_file_mmapobj(Lm_list *, const char *, mmapobj_result_t *,
699 		    uint_t);
700 extern	void	Dbg_file_mode_promote(Rt_map *, int);
701 extern	void	Dbg_file_modified(Lm_list *, const char *, const char *,
702 		    const char *, int, int, Elf *, Elf *);
703 extern	void	Dbg_file_needed(Rt_map *, const char *);
704 extern	void	Dbg_file_output(Ofl_desc *);
705 extern	void	Dbg_file_preload(Lm_list *, const char *);
706 extern	void	Dbg_file_prot(Rt_map *, int);
707 extern	void	Dbg_file_rejected(Lm_list *, Rej_desc *, Half mach);
708 extern	void	Dbg_file_reuse(Lm_list *, const char *, const char *);
709 extern	void	Dbg_file_skip(Lm_list *, const char *, const char *);
710 
711 extern	void	Dbg_got_display(Ofl_desc *, Off, int, Word, size_t);
712 
713 extern	void	Dbg_libs_audit(Lm_list *, const char *, const char *);
714 extern	void	Dbg_libs_find(Lm_list *, const char *);
715 extern	void	Dbg_libs_found(Lm_list *, const char *, int);
716 extern	void	Dbg_libs_insecure(Lm_list *, const char *, int);
717 extern	void	Dbg_libs_init(Lm_list *, List *, List *);
718 extern	void	Dbg_libs_l(Lm_list *, const char *, const char *);
719 extern	void	Dbg_libs_path(Lm_list *, const char *, uint_t, const char *);
720 extern	void	Dbg_libs_req(Lm_list *, const char *, const char *,
721 		    const char *);
722 extern	void	Dbg_libs_update(Lm_list *, List *, List *);
723 extern	void	Dbg_libs_yp(Lm_list *, const char *);
724 extern	void	Dbg_libs_ylu(Lm_list *, const char *, const char *, int);
725 
726 extern	void	Dbg_map_dash(Lm_list *, const char *, Sdf_desc *);
727 extern	void	Dbg_map_ent(Lm_list *, Boolean, Ent_desc *, Ofl_desc *);
728 extern	void	Dbg_map_parse(Lm_list *, const char *);
729 extern	void	Dbg_map_pipe(Lm_list *, Sg_desc *, const char *, const Word);
730 extern	void	Dbg_map_seg(Ofl_desc *, int, Sg_desc *);
731 extern	void	Dbg_map_set_atsign(Boolean);
732 extern	void	Dbg_map_set_equal(Boolean);
733 extern	void	Dbg_map_size_new(Lm_list *, const char *);
734 extern	void	Dbg_map_size_old(Ofl_desc *, Sym_desc *);
735 extern	void	Dbg_map_sort_fini(Lm_list *, Sg_desc *);
736 extern	void	Dbg_map_sort_orig(Lm_list *, Sg_desc *);
737 extern	void	Dbg_map_symbol(Ofl_desc *, Sym_desc *);
738 extern	void	Dbg_map_version(Lm_list *, const char *, const char *, int);
739 
740 extern 	void	Dbg_move_adjexpandreloc(Lm_list *, Xword, const char *);
741 extern 	void	Dbg_move_adjmovereloc(Lm_list *, Xword, Xword, const char *);
742 extern	void	Dbg_move_bad(Lm_list *, ulong_t, const char *, Addr);
743 extern	void	Dbg_move_data(Rt_map *);
744 extern 	void	Dbg_move_entry1(Lm_list *, int, Move *, Sym_desc *);
745 extern 	void	Dbg_move_entry2(Lm_list *, Move *, Word, const char *);
746 extern 	void	Dbg_move_expand(Lm_list *, Move *, Addr);
747 extern 	void	Dbg_move_input(Lm_list *, const char *);
748 extern 	void	Dbg_move_outmove(Lm_list *, const char *);
749 extern 	void	Dbg_move_outsctadj(Lm_list *, Sym_desc *);
750 extern 	void	Dbg_move_parexpn(Lm_list *, const char *, const char *);
751 
752 extern	void	Dbg_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
753 extern	void	Dbg_reloc_apply_val(Lm_list *, int, Xword, Xword);
754 extern	void	Dbg_reloc_ars_entry(Lm_list *, int, Word, Half, Rel_desc *);
755 extern	void	Dbg_reloc_copy(Rt_map *, Rt_map *, const char *, int);
756 extern	void	Dbg_reloc_discard(Lm_list *, Half, Rel_desc *);
757 extern	void	Dbg_reloc_doact(Lm_list *, int, Half, Word, Word, Xword, Xword,
758 		    const char *, Os_desc *);
759 extern	void	Dbg_reloc_doact_title(Lm_list *);
760 extern	void	Dbg_reloc_dooutrel(Lm_list *, Word);
761 extern	void	Dbg_reloc_entry(Lm_list *, const char *, Half, Word, void *,
762 		    const char *, const char *, const char *);
763 extern	void	Dbg_reloc_error(Lm_list *, int, Half, Word, void *,
764 		    const char *);
765 extern	void	Dbg_reloc_generate(Lm_list *, Os_desc *, Word);
766 extern	void	Dbg_reloc_in(Lm_list *, int, Half, Word, void *, const char *,
767 		    const char *);
768 extern	void	Dbg_reloc_ors_entry(Lm_list *, int, Word, Half, Rel_desc *);
769 extern	void	Dbg_reloc_out(Ofl_desc *, int, Word, void *, const char *,
770 		    const char *);
771 extern	void	Dbg_reloc_proc(Lm_list *, Os_desc *, Is_desc *, Is_desc *);
772 extern	void	Dbg_reloc_run(Rt_map *, uint_t, int, int);
773 extern	void	Dbg_reloc_transition(Lm_list *, Half, Word, Rel_desc *);
774 extern	void	Dbg_reloc_sloppycomdat(Lm_list *, const char *, Sym_desc *);
775 
776 extern	void	Dbg_sec_added(Lm_list *, Os_desc *, Sg_desc *);
777 extern	void	Dbg_sec_created(Lm_list *, Os_desc *, Sg_desc *);
778 extern	void	Dbg_sec_discarded(Lm_list *, Is_desc *, Is_desc *);
779 extern	void	Dbg_sec_genstr_compress(Lm_list *, const char *,
780 		    Xword, Xword);
781 extern	void	Dbg_sec_group(Lm_list *, Is_desc *, Group_desc *);
782 extern	void	Dbg_sec_gnu_comdat(Lm_list *, const char *, uint_t, uint_t);
783 extern	void	Dbg_sec_in(Lm_list *, Is_desc *);
784 extern	void	Dbg_sec_order_error(Lm_list *, Ifl_desc *, Word, int);
785 extern	void	Dbg_sec_order_list(Ofl_desc *, int);
786 extern	void	Dbg_sec_redirected(Lm_list *, const char *, const char *);
787 extern	void	Dbg_sec_strtab(Lm_list *, Os_desc *, Str_tbl *);
788 extern	void	Dbg_sec_unsup_strmerge(Lm_list *, Is_desc *);
789 
790 extern	void	Dbg_seg_desc_entry(Lm_list *, Half, int, Sg_desc *);
791 extern	void	Dbg_seg_entry(Ofl_desc *, int, Sg_desc *);
792 extern	void	Dbg_seg_list(Lm_list *, Half, List *);
793 extern	void	Dbg_seg_os(Ofl_desc *, Os_desc *, int);
794 extern	void	Dbg_seg_title(Lm_list *);
795 
796 extern	void	Dbg_shdr_modified(Lm_list *, const char *, Half, Shdr *, Shdr *,
797 		    const char *);
798 
799 extern	void	Dbg_statistics_ar(Ofl_desc *);
800 extern	void	Dbg_statistics_ld(Ofl_desc *);
801 
802 extern	void	Dbg_support_action(Lm_list *, const char *, const char *,
803 		    Support_ndx, const char *);
804 extern	void	Dbg_support_load(Lm_list *, const char *, const char *);
805 extern	void	Dbg_support_req(Lm_list *, const char *, int);
806 extern	void	Dbg_support_vnone(Lm_list *, const char *);
807 
808 extern	void	Dbg_syminfo_entry(Lm_list *, Word, Syminfo *, Sym *,
809 		    const char *, Dyn *);
810 extern	void	Dbg_syminfo_title(Lm_list *);
811 
812 extern	void	Dbg_syms_ar_checking(Lm_list *, Xword, Elf_Arsym *,
813 		    const char *);
814 extern	void	Dbg_syms_ar_entry(Lm_list *, Xword, Elf_Arsym *);
815 extern	void	Dbg_syms_ar_resolve(Lm_list *, Xword, Elf_Arsym *,
816 		    const char *, int);
817 extern	void	Dbg_syms_ar_title(Lm_list *, const char *, int);
818 extern	void	Dbg_syms_created(Lm_list *, const char *);
819 extern	void	Dbg_syms_discarded(Lm_list *, Sym_desc *);
820 extern	void	Dbg_syms_dlsym(Rt_map *, const char *, int *, const char *,
821 		    int);
822 extern	void	Dbg_syms_dup_discarded(Lm_list *, Word ndx, Sym_desc *);
823 extern	void	Dbg_syms_dup_sort_addr(Lm_list *, const char *, const char *,
824 		    const char *, Addr);
825 extern	void	Dbg_syms_entered(Ofl_desc *, Sym *, Sym_desc *);
826 extern	void	Dbg_syms_entry(Lm_list *, Word, Sym_desc *);
827 extern	void	Dbg_syms_global(Lm_list *, Word, const char *);
828 extern	void	Dbg_syms_ignore(Ofl_desc *, Sym_desc *);
829 extern	void	Dbg_syms_ignore_gnuver(Rt_map *, const char *, Word, Versym);
830 extern	void	Dbg_syms_lazy_rescan(Lm_list *, const char *);
831 extern	void	Dbg_syms_lookup(Rt_map *, const char *, const char *);
832 #if	!(defined(_ELF64))
833 extern	void	Dbg_syms_lookup_aout(Lm_list *, const char *);
834 #endif
835 extern	void	Dbg_syms_new(Ofl_desc *, Sym *, Sym_desc *);
836 extern	void	Dbg_syms_old(Ofl_desc *, Sym_desc *);
837 extern	void	Dbg_syms_process(Lm_list *, Ifl_desc *);
838 extern	void	Dbg_syms_reduce(Ofl_desc *, int, Sym_desc *, int,
839 		    const char *);
840 extern	void	Dbg_syms_reloc(Ofl_desc *, Sym_desc *);
841 extern	void	Dbg_syms_resolved(Ofl_desc *, Sym_desc *);
842 extern	void	Dbg_syms_resolving(Ofl_desc *, Word, const char *, int, int,
843 		    Sym *, Sym *, Sym_desc *, Ifl_desc *);
844 extern	void	Dbg_syms_sec_entry(Lm_list *, Word, Sg_desc *, Os_desc *);
845 extern	void	Dbg_syms_sec_title(Lm_list *);
846 extern	void	Dbg_syms_spec_title(Lm_list *);
847 extern	void	Dbg_syms_updated(Ofl_desc *, Sym_desc *, const char *);
848 extern	void	Dbg_syms_up_title(Lm_list *);
849 
850 extern	void	Dbg_tls_modactivity(Lm_list *, void *, uint_t);
851 extern	void	Dbg_tls_static_block(Lm_list *, void *, ulong_t, ulong_t);
852 extern	void	Dbg_tls_static_resv(Rt_map *, ulong_t, ulong_t);
853 
854 extern	void	Dbg_util_call_array(Rt_map *, void *, int, Word);
855 extern	void	Dbg_util_call_fini(Rt_map *);
856 extern	void	Dbg_util_call_init(Rt_map *, int);
857 extern	void	Dbg_util_call_main(Rt_map *);
858 extern	void	Dbg_util_collect(Rt_map *, int, int);
859 extern	void	Dbg_util_dbnotify(Lm_list *, rd_event_e, r_state_e);
860 extern	void	Dbg_util_edge_in(Lm_list *, Rt_map *, uint_t, Rt_map *,
861 		    int, int);
862 extern	void	Dbg_util_edge_out(Rt_map *, Rt_map *);
863 extern	void	Dbg_util_intoolate(Rt_map *);
864 extern	void	Dbg_util_lcinterface(Rt_map *, int, char *);
865 extern	void	Dbg_util_nl(Lm_list *, int);
866 extern	void	Dbg_util_no_init(Rt_map *);
867 extern	void	Dbg_util_str(Lm_list *, const char *);
868 extern	void	Dbg_util_scc_entry(Rt_map *, uint_t);
869 extern	void	Dbg_util_scc_title(Lm_list *, int);
870 
871 extern	void	Dbg_unused_file(Lm_list *, const char *, int, uint_t);
872 extern	void	Dbg_unused_lcinterface(Rt_map *, Rt_map *, int);
873 extern	void	Dbg_unused_path(Lm_list *, const char *, uint_t, uint_t,
874 		    const char *);
875 extern	void	Dbg_unused_sec(Lm_list *, Is_desc *);
876 extern	void	Dbg_unused_unref(Rt_map *, const char *);
877 
878 extern	void	Dbg_ver_avail_entry(Lm_list *, Ver_index *, const char *);
879 extern	void	Dbg_ver_avail_title(Lm_list *, const char *);
880 extern	void	Dbg_ver_def_title(Lm_list *, const char *);
881 extern	void	Dbg_ver_desc_entry(Lm_list *, Ver_desc *);
882 extern	void	Dbg_ver_need_entry(Lm_list *, Half, const char *,
883 		    const char *);
884 extern	void	Dbg_ver_need_title(Lm_list *, const char *);
885 extern	void	Dbg_ver_nointerface(Lm_list *, const char *);
886 extern	void	Dbg_ver_symbol(Lm_list *, const char *);
887 
888 /*
889  * Define Elf_*() interface flags.
890  */
891 #define	ELF_DBG_ELFDUMP		1
892 #define	ELF_DBG_RTLD		2
893 #define	ELF_DBG_LD		3
894 
895 /*
896  * Define generic Elf_*() interfaces.
897  */
898 extern	void Elf_syminfo_entry(Lm_list *, Word, Syminfo *, const char *,
899 	    const char *);
900 extern	void Elf_syminfo_title(Lm_list *);
901 
902 /*
903  * Establish ELF32 and ELF64 class Elf_*() interfaces.
904  */
905 #if	defined(_ELF64)
906 
907 #define	Elf_cap_entry		Elf64_cap_entry
908 #define	Elf_cap_title		Elf64_cap_title
909 
910 #define	Elf_demangle_name	Elf64_demangle_name
911 #define	Elf_dyn_entry		Elf64_dyn_entry
912 #define	Elf_dyn_null_entry	Elf64_dyn_null_entry
913 #define	Elf_dyn_title		Elf64_dyn_title
914 
915 #define	Elf_ehdr		Elf64_ehdr
916 
917 #define	Elf_got_entry		Elf64_got_entry
918 #define	Elf_got_title		Elf64_got_title
919 
920 #define	Elf_reloc_apply_reg	Elf64_reloc_apply_reg
921 #define	Elf_reloc_apply_val	Elf64_reloc_apply_val
922 #define	Elf_reloc_entry_1	Elf64_reloc_entry_1
923 #define	Elf_reloc_entry_2	Elf64_reloc_entry_2
924 #define	Elf_reloc_title		Elf64_reloc_title
925 
926 #define	Elf_phdr		Elf64_phdr
927 
928 #define	Elf_shdr		Elf64_shdr
929 
930 #define	Elf_syms_table_entry	Elf64_syms_table_entry
931 #define	Elf_syms_table_title	Elf64_syms_table_title
932 
933 #define	Elf_ver_def_title	Elf64_ver_def_title
934 #define	Elf_ver_line_1		Elf64_ver_line_1
935 #define	Elf_ver_line_2		Elf64_ver_line_2
936 #define	Elf_ver_line_3		Elf64_ver_line_3
937 #define	Elf_ver_line_4		Elf64_ver_line_4
938 #define	Elf_ver_line_5		Elf64_ver_line_5
939 #define	Elf_ver_need_title	Elf64_ver_need_title
940 
941 #else
942 
943 #define	Elf_cap_entry		Elf32_cap_entry
944 #define	Elf_cap_title		Elf32_cap_title
945 
946 #define	Elf_demangle_name	Elf32_demangle_name
947 #define	Elf_dyn_entry		Elf32_dyn_entry
948 #define	Elf_dyn_null_entry	Elf32_dyn_null_entry
949 #define	Elf_dyn_title		Elf32_dyn_title
950 
951 #define	Elf_ehdr		Elf32_ehdr
952 
953 #define	Elf_got_entry		Elf32_got_entry
954 #define	Elf_got_title		Elf32_got_title
955 
956 #define	Elf_reloc_apply_reg	Elf32_reloc_apply_reg
957 #define	Elf_reloc_apply_val	Elf32_reloc_apply_val
958 #define	Elf_reloc_entry_1	Elf32_reloc_entry_1
959 #define	Elf_reloc_entry_2	Elf32_reloc_entry_2
960 #define	Elf_reloc_title		Elf32_reloc_title
961 
962 #define	Elf_phdr		Elf32_phdr
963 
964 #define	Elf_shdr		Elf32_shdr
965 
966 #define	Elf_syms_table_entry	Elf32_syms_table_entry
967 #define	Elf_syms_table_title	Elf32_syms_table_title
968 
969 #define	Elf_ver_def_title	Elf32_ver_def_title
970 #define	Elf_ver_line_1		Elf32_ver_line_1
971 #define	Elf_ver_line_2		Elf32_ver_line_2
972 #define	Elf_ver_line_3		Elf32_ver_line_3
973 #define	Elf_ver_line_4		Elf32_ver_line_4
974 #define	Elf_ver_line_5		Elf32_ver_line_5
975 #define	Elf_ver_need_title	Elf32_ver_need_title
976 
977 #endif
978 
979 extern	void	Elf_cap_entry(Lm_list *, Cap *, int, Half);
980 extern	void	Elf_cap_title(Lm_list *);
981 
982 extern	const char \
983 		*Elf_demangle_name(const char *);
984 extern	void	Elf_dyn_entry(Lm_list *, Dyn *, int, const char *, Half);
985 extern	void	Elf_dyn_null_entry(Lm_list *, Dyn *, int, int);
986 extern	void	Elf_dyn_title(Lm_list *);
987 
988 extern	void	Elf_ehdr(Lm_list *, Ehdr *, Shdr *);
989 
990 extern	void	Elf_got_entry(Lm_list *, Sword, Addr, Xword, Half,
991 		    uchar_t, uchar_t, Word, void *, const char *);
992 extern	void	Elf_got_title(Lm_list *);
993 
994 extern	void	Elf_phdr(Lm_list *, Half, Phdr *);
995 
996 extern	void	Elf_reloc_apply_val(Lm_list *, int, Xword, Xword);
997 extern	void	Elf_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
998 extern	void	Elf_reloc_entry_1(Lm_list *, int, const char *, Half, Word,
999 		    void *, const char *, const char *, const char *);
1000 extern	void	Elf_reloc_entry_2(Lm_list *, int, const char *, Word,
1001 		    const char *, Off, Sxword, const char *, const char *,
1002 		    const char *);
1003 extern	void	Elf_reloc_title(Lm_list *, int, Word);
1004 
1005 extern	void	Elf_shdr(Lm_list *, Half, Shdr *);
1006 
1007 extern	void	Elf_syms_table_entry(Lm_list *, int, const char *, Half, Sym *,
1008 		    Versym, int, const char *, const char *);
1009 extern	void	Elf_syms_table_title(Lm_list *, int);
1010 
1011 extern	void	Elf_ver_def_title(Lm_list *);
1012 extern	void	Elf_ver_line_1(Lm_list *, const char *, const char *,
1013 		    const char *, const char *);
1014 extern	void	Elf_ver_line_2(Lm_list *, const char *, const char *);
1015 extern	void	Elf_ver_line_3(Lm_list *, const char *, const char *,
1016 		    const char *);
1017 extern	void	Elf_ver_line_4(Lm_list *, const char *);
1018 extern	void	Elf_ver_line_5(Lm_list *, const char *, const char *);
1019 extern	void	Elf_ver_need_title(Lm_list *, int);
1020 
1021 
1022 #ifdef	__cplusplus
1023 }
1024 #endif
1025 
1026 #endif /* _DEBUG_H */
1027