xref: /illumos-gate/usr/src/cmd/sgs/include/debug.h (revision 48125817)
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 (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
24  */
25 
26 #ifndef	_DEBUG_H
27 #define	_DEBUG_H
28 
29 /*
30  * Global include file for lddbg debugging.
31  *
32  * ld(1) and ld.so.1(1) carry out all diagnostic debugging calls via lazy
33  * loading the library liblddbg.so.  Thus debugging is always enabled.  The
34  * utility elfdump(1) is explicitly dependent upon this library.  There are two
35  * categories of routines defined in this library:
36  *
37  *  o	Debugging routines that have specific linker knowledge, and test the
38  *	class of debugging allowable before proceeding, start with the `Dbg_'
39  *	prefix.
40  *
41  *  o	Lower level routines that provide generic ELF structure interpretation
42  *	start with the `Elf_' prefix.  These latter routines are the only
43  *	routines used by the elfdump(1) utility.
44  */
45 #include <sys/times.h>
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 values.  These values direct the debugging routine
57  * to 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 #define	DBG_DLSYM_NUM		DBG_DLSYM_SINGLETON + 1
88 
89 #define	DBG_DLCLOSE_NULL	0
90 #define	DBG_DLCLOSE_IGNORE	1
91 #define	DBG_DLCLOSE_RESCAN	2
92 
93 #define	DBG_SYM_REDUCE_GLOBAL	1	/* reporting global symbols to local */
94 #define	DBG_SYM_REDUCE_RETAIN	2	/* reporting non reduced local syms */
95 
96 #define	DBG_AUD_CALL		1	/* original call to auditor */
97 #define	DBG_AUD_RET		2	/* return from auditor diagnostic */
98 
99 #define	DBG_AUD_LOCAL		0	/* auditor is local */
100 #define	DBG_AUD_GLOBAL		1	/* auditor is global */
101 #define	DBG_AUD_PRELOAD		2	/* auditor is preloaded */
102 
103 /*
104  * Group handle operations - passed to Dbg_file_hdl_title().  Indicate why
105  * handle dependencies are being manipulated.
106  */
107 #define	DBG_HDL_CREATE		0	/* handle creation */
108 #define	DBG_HDL_ADD		1	/* addition to existing handle */
109 #define	DBG_HDL_DELETE		2	/* deletion from a handle */
110 #define	DBG_HDL_ORPHAN		3	/* handle being moved to orphan list */
111 #define	DBG_HDL_REINST		4	/* handle reinstated from orphan list */
112 
113 /*
114  * Group handle dependency operations - passed to Dbg_file_hdl_action().
115  * Identify the dependencies that are associated with a handle.
116  */
117 #define	DBG_DEP_ADD		0	/* dependency added */
118 #define	DBG_DEP_UPDATE		1	/* dependency updated */
119 #define	DBG_DEP_DELETE		2	/* dependency deleted */
120 #define	DBG_DEP_REMOVE		3	/* dependency removed from handle */
121 #define	DBG_DEP_REMAIN		4	/* dependency must remain on handle */
122 #define	DBG_DEP_ORPHAN		5	/* dependency must remain an orphan */
123 #define	DBG_DEP_REINST		6	/* dependency reinstated from orphan */
124 
125 /*
126  * Binding information, indicating the result of a symbol binding.  Can also
127  * indicate the reference as being EXTERN or PARENT.  Binding information is
128  * used to augment diagnostic binding information (which in turn can be used by
129  * lari(1)), and to enable ldd(1) -p processing.
130  */
131 #define	DBG_BINFO_FOUND		0x0001	/* information regarding binding */
132 #define	DBG_BINFO_DIRECT	0x0002	/* bound directly */
133 #define	DBG_BINFO_COPYREF	0x0004	/* bound to copy relocated reference */
134 #define	DBG_BINFO_FILTEE	0x0008	/* bound to filtee */
135 #define	DBG_BINFO_INTERPOSE	0x0010	/* bound to an identified interposer */
136 #define	DBG_BINFO_PLTADDR	0x0020	/* bound to executables undefined plt */
137 #define	DBG_BINFO_MSK		0x0fff
138 
139 #define	DBG_BINFO_REF_EXTERN	0x1000	/* reference to EXTERN */
140 #define	DBG_BINFO_REF_PARENT	0x2000	/* reference to PARENT */
141 #define	DBG_BINFO_REF_MSK	0xf000
142 
143 /*
144  * ld.so.1(1) symbol capabilities processing.
145  */
146 #define	DBG_CAP_DEFAULT		0
147 #define	DBG_CAP_USED		1
148 #define	DBG_CAP_CANDIDATE	2
149 #define	DBG_CAP_REJECTED	3
150 #define	DBG_CAP_HW_1		4
151 #define	DBG_CAP_SF_1		5
152 #define	DBG_CAP_HW_2		6
153 #define	DBG_CAP_PLAT		7
154 #define	DBG_CAP_MACH		8
155 
156 #define	DBG_REL_START		1
157 #define	DBG_REL_FINISH		2
158 #define	DBG_REL_NONE		3
159 
160 #define	DBG_NL_STD		0	/* newline controllers - standard and */
161 #define	DBG_NL_FRC		2	/*    forced. */
162 
163 #define	DBG_BNDREJ_DIRECT	0	/* bind rejected, direct to nodirect */
164 #define	DBG_BNDREJ_GROUP	1	/* bind rejected, group to nodirect */
165 #define	DBG_BNDREJ_SINGLE	2	/* bind rejected, singleton without */
166 					/*    default search model */
167 #define	DBG_BNDREJ_NUM		DBG_BNDREJ_SINGLE
168 
169 /*
170  * Dbg_state_str() is used to obtain commonly used "state transition"
171  * strings used in various debugging output.
172  */
173 #define	DBG_STATE_ADD		0	/* add */
174 #define	DBG_STATE_CURRENT	1	/* current */
175 #define	DBG_STATE_EXCLUDE	2	/* exclude */
176 #define	DBG_STATE_IGNORED	3	/* ignored */
177 #define	DBG_STATE_MOD_BEFORE	4	/* modify (before) */
178 #define	DBG_STATE_MOD_AFTER	5	/* modify (after) */
179 #define	DBG_STATE_NEW 		6	/* new */
180 #define	DBG_STATE_NEW_IMPLICIT	7	/* new (implicit) */
181 #define	DBG_STATE_RESET		8	/* reset */
182 #define	DBG_STATE_ORIGINAL	9	/* original */
183 #define	DBG_STATE_RESOLVED	10	/* resolved */
184 
185 #define	DBG_STATE_NUM		11
186 typedef uint_t dbg_state_t;
187 extern	const char *Dbg_state_str(dbg_state_t);
188 
189 /*
190  * Define a debug descriptor, and a user macro that inspects the descriptor as
191  * a means of triggering a class of diagnostic output.
192  */
193 typedef struct {
194 	uint_t		d_class;	/* debugging classes */
195 	uint_t		d_extra;	/* extra public information */
196 	APlist		*d_list;	/* accepted link-map list names */
197 	struct timeval	d_totaltime;	/* total time since entry - */
198 					/*	gettimeofday(3c) */
199 	struct timeval	d_deltatime;	/* delta time since last diagnostic - */
200 					/*	gettimeofday(3c) */
201 } Dbg_desc;
202 
203 extern	Dbg_desc	*dbg_desc;
204 
205 /*
206  * Macros used to avoid calls to liblddbg unless debugging is enabled.
207  * liblddbg is lazy loaded --- this prevents it from happening unless
208  * it will actually be used.
209  */
210 #define	DBG_ENABLED	(dbg_desc->d_class)
211 #define	DBG_CALL(func)	if (DBG_ENABLED) func
212 
213 /*
214  * Most debugging tokens are interpreted within liblddbg, and thus any flags
215  * within d_class are only meaningful to this library.  The following flags
216  * extend the d_class diagnostic, and are maintained in d_extra.  These flags
217  * may be interpreted by the debugging library itself or from the callers
218  * dbg_print() routine.
219  */
220 #define	DBG_E_DETAIL	0x00000001	/* add detail to a class */
221 #define	DBG_E_LONG	0x00000002	/* use long names (ie. no truncation) */
222 #define	DBG_E_DEMANGLE	0x00000004	/* demangle symbol names */
223 #define	DBG_E_STDNL	0x00000008	/* standard newline indicator */
224 #define	DBG_E_HELP	0x00000010	/* help requested */
225 #define	DBG_E_HELP_EXIT	0x00000020	/* hint: user should exit after help */
226 #define	DBG_E_TTIME	0x00000040	/* prepend total time */
227 #define	DBG_E_DTIME	0x00000080	/* prepend delta time */
228 #define	DBG_E_RESET	0x00000100	/* reset times */
229 
230 /* ld only */
231 #define	DBG_E_SNAME	0x00001000	/* prepend simple name */
232 #define	DBG_E_FNAME	0x00002000	/* prepend full name */
233 #define	DBG_E_CLASS	0x00004000	/* prepend ELF class */
234 
235 /* ld.so.1 only */
236 #define	DBG_E_LMID	0x00100000	/* prepend link-map id */
237 #define	DBG_E_LMID_LDSO	0x00200000	/* show ldso link-map list */
238 #define	DBG_E_LMID_ALL	0x00400000	/* show all non-ldso link-map lists */
239 #define	DBG_E_LMID_ALT	0x00800000	/* show all ALT link-map lists */
240 #define	DBG_E_LMID_BASE	0x01000000	/* show BASE link-map list */
241 
242 
243 #define	DBG_NOTDETAIL()	!(dbg_desc->d_extra & DBG_E_DETAIL)
244 #define	DBG_NOTLONG()	!(dbg_desc->d_extra & DBG_E_LONG)
245 
246 #define	DBG_ISDEMANGLE() \
247 			(dbg_desc->d_extra & DBG_E_DEMANGLE)
248 
249 #define	DBG_TOTALTIME	(dbg_desc->d_totaltime)
250 #define	DBG_DELTATIME	(dbg_desc->d_deltatime)
251 
252 #define	DBG_ISTTIME()	(dbg_desc->d_extra & DBG_E_TTIME)
253 #define	DBG_ISDTIME()	(dbg_desc->d_extra & DBG_E_DTIME)
254 #define	DBG_ISTIME()	(dbg_desc->d_extra & (DBG_E_TTIME | DBG_E_DTIME))
255 #define	DBG_NOTTIME()	!(dbg_desc->d_extra & (DBG_E_TTIME | DBG_E_DTIME))
256 
257 #define	DBG_ISRESET()	(dbg_desc->d_extra & DBG_E_RESET)
258 #define	DBG_ONRESET()	(dbg_desc->d_extra |= DBG_E_RESET)
259 #define	DBG_OFFRESET()	(dbg_desc->d_extra &= ~DBG_E_RESET)
260 
261 #define	DBG_ISSNAME()	(dbg_desc->d_extra & DBG_E_SNAME)
262 #define	DBG_ISFNAME()	(dbg_desc->d_extra & DBG_E_FNAME)
263 #define	DBG_ISCLASS()	(dbg_desc->d_extra & DBG_E_CLASS)
264 #define	DBG_ISLMID()	(dbg_desc->d_extra & DBG_E_LMID)
265 
266 /*
267  * Print routine, this must be supplied by the application.  The initial
268  * argument may provide a link-map list to associate with the format statement
269  * that follows.
270  */
271 /* PRINTFLIKE2 */
272 extern	void		dbg_print(Lm_list *, const char *, ...);
273 
274 /*
275  * Initialization routine, called before any other Dbg routines to
276  * establish the necessary state.
277  */
278 typedef enum { DBG_CALLER_LD, DBG_CALLER_RTLD } dbg_setup_caller_t;
279 extern	int		Dbg_setup(dbg_setup_caller_t, const char *,
280 			    Dbg_desc *, const char **);
281 
282 /* Call dbg_print() to produce linker version output */
283 extern void		Dbg_version(void);
284 
285 /* Call dbg_print() to produce help output */
286 extern	void		Dbg_help(void);
287 
288 /*
289  * Establish ELF32 and ELF64 class Dbg_*() interfaces.
290  */
291 #if	defined(_ELF64)
292 
293 #define	Dbg_demangle_name	Dbg64_demangle_name
294 
295 #define	Dbg_bind_global		Dbg64_bind_global
296 #define	Dbg_bind_plt_summary	Dbg64_bind_plt_summary
297 #define	Dbg_bind_pltpad_from	Dbg64_bind_pltpad_from
298 #define	Dbg_bind_pltpad_to	Dbg64_bind_pltpad_to
299 #define	Dbg_bind_reject		Dbg64_bind_reject
300 #define	Dbg_bind_weak		Dbg64_bind_weak
301 
302 #define	Dbg_cap_candidate	Dbg64_cap_candidate
303 #define	Dbg_cap_filter		Dbg64_cap_filter
304 #define	Dbg_cap_id		Dbg64_cap_id
305 #define	Dbg_cap_identical	Dbg64_cap_identical
306 #define	Dbg_cap_mapfile_title	Dbg64_cap_mapfile_title
307 #define	Dbg_cap_post_title	Dbg64_cap_post_title
308 #define	Dbg_cap_sec_title	Dbg64_cap_sec_title
309 #define	Dbg_cap_val		Dbg64_cap_val
310 #define	Dbg_cap_ptr_entry	Dbg64_cap_ptr_entry
311 #define	Dbg_cap_val_entry	Dbg64_cap_val_entry
312 
313 #define	Dbg_dl_dladdr		Dbg64_dl_dladdr
314 #define	Dbg_dl_dlclose		Dbg64_dl_dlclose
315 #define	Dbg_dl_dldump		Dbg64_dl_dldump
316 #define	Dbg_dl_dlerror		Dbg64_dl_dlerror
317 #define	Dbg_dl_dlinfo		Dbg64_dl_dlinfo
318 #define	Dbg_dl_dlopen		Dbg64_dl_dlopen
319 #define	Dbg_dl_dlsym		Dbg64_dl_dlsym
320 #define	Dbg_dl_iphdr_enter	Dbg64_dl_iphdr_enter
321 #define	Dbg_dl_iphdr_callback	Dbg64_dl_iphdr_callback
322 #define	Dbg_dl_iphdr_mapchange	Dbg64_dl_iphdr_mapchange
323 #define	Dbg_dl_iphdr_unmap_ret	Dbg64_dl_iphdr_unmap_ret
324 
325 #define	Dbg_ent_entry		Dbg64_ent_entry
326 #define	Dbg_ent_print		Dbg64_ent_print
327 
328 #define	Dbg_file_analyze	Dbg64_file_analyze
329 #define	Dbg_file_aout		Dbg64_file_aout
330 #define	Dbg_file_ar		Dbg64_file_ar
331 #define	Dbg_file_ar_rescan	Dbg64_file_ar_rescan
332 #define	Dbg_file_bind_entry	Dbg64_file_bind_entry
333 #define	Dbg_file_bindings	Dbg64_file_bindings
334 #define	Dbg_file_bindings_done	Dbg64_file_bindings_done
335 #define	Dbg_file_cleanup	Dbg64_file_cleanup
336 #define	Dbg_file_cntl		Dbg64_file_cntl
337 #define	Dbg_file_config_dis	Dbg64_file_config_dis
338 #define	Dbg_file_config_obj	Dbg64_file_config_obj
339 #define	Dbg_file_del_rescan	Dbg64_file_del_rescan
340 #define	Dbg_file_delete		Dbg64_file_delete
341 #define	Dbg_file_deferred	Dbg64_file_deferred
342 #define	Dbg_file_elf		Dbg64_file_elf
343 #define	Dbg_file_filtee		Dbg64_file_filtee
344 #define	Dbg_file_filter		Dbg64_file_filter
345 #define	Dbg_file_fixname	Dbg64_file_fixname
346 #define	Dbg_file_generic	Dbg64_file_generic
347 #define	Dbg_file_hdl_action	Dbg64_file_hdl_action
348 #define	Dbg_file_hdl_collect	Dbg64_file_hdl_collect
349 #define	Dbg_file_hdl_title	Dbg64_file_hdl_title
350 #define	Dbg_file_lazyload	Dbg64_file_lazyload
351 #define	Dbg_file_ldso		Dbg64_file_ldso
352 #define	Dbg_file_mmapobj	Dbg64_file_mmapobj
353 #define	Dbg_file_mode_promote	Dbg64_file_mode_promote
354 #define	Dbg_file_modified	Dbg64_file_modified
355 #define	Dbg_file_needed		Dbg64_file_needed
356 #define	Dbg_file_output		Dbg64_file_output
357 #define	Dbg_file_preload	Dbg64_file_preload
358 #define	Dbg_file_prot		Dbg64_file_prot
359 #define	Dbg_file_rejected	Dbg64_file_rejected
360 #define	Dbg_file_reuse		Dbg64_file_reuse
361 #define	Dbg_file_skip		Dbg64_file_skip
362 
363 #define	Dbg_got_display		Dbg64_got_display
364 
365 #define	Dbg_libs_audit		Dbg64_libs_audit
366 #define	Dbg_libs_find		Dbg64_libs_find
367 #define	Dbg_libs_found		Dbg64_libs_found
368 #define	Dbg_libs_insecure	Dbg64_libs_insecure
369 #define	Dbg_libs_init		Dbg64_libs_init
370 #define	Dbg_libs_l		Dbg64_libs_l
371 #define	Dbg_libs_path		Dbg64_libs_path
372 #define	Dbg_libs_req		Dbg64_libs_req
373 #define	Dbg_libs_update		Dbg64_libs_update
374 #define	Dbg_libs_yp		Dbg64_libs_yp
375 #define	Dbg_libs_ylu		Dbg64_libs_ylu
376 
377 #define	Dbg_map_cexp_id		Dbg64_map_cexp_id
378 #define	Dbg_map_dv		Dbg64_map_dv
379 #define	Dbg_map_dv_entry	Dbg64_map_dv_entry
380 #define	Dbg_map_ent		Dbg64_map_ent
381 #define	Dbg_map_ent_ord_title	Dbg64_map_ent_ord_title
382 #define	Dbg_map_hdr_noalloc	Dbg64_map_hdr_noalloc
383 #define	Dbg_map_parse		Dbg64_map_parse
384 #define	Dbg_map_pass		Dbg64_map_pass
385 #define	Dbg_map_post_title	Dbg64_map_post_title
386 #define	Dbg_map_seg		Dbg64_map_seg
387 #define	Dbg_map_seg_order	Dbg64_map_seg_order
388 #define	Dbg_map_seg_os_order	Dbg64_map_seg_os_order
389 #define	Dbg_map_size_new	Dbg64_map_size_new
390 #define	Dbg_map_size_old	Dbg64_map_size_old
391 #define	Dbg_map_sort_seg	Dbg64_map_sort_seg
392 #define	Dbg_map_sort_title	Dbg64_map_sort_title
393 #define	Dbg_map_symbol		Dbg64_map_symbol
394 #define	Dbg_map_version		Dbg64_map_version
395 
396 #define	Dbg_move_adjexpandreloc	Dbg64_move_adjexpandreloc
397 #define	Dbg_move_adjmovereloc	Dbg64_move_adjmovereloc
398 #define	Dbg_move_bad		Dbg64_move_bad
399 #define	Dbg_move_data		Dbg64_move_data
400 #define	Dbg_move_entry1		Dbg64_move_entry1
401 #define	Dbg_move_entry2		Dbg64_move_entry2
402 #define	Dbg_move_expand		Dbg64_move_expand
403 #define	Dbg_move_input		Dbg64_move_input
404 #define	Dbg_move_outmove	Dbg64_move_outmove
405 #define	Dbg_move_outsctadj	Dbg64_move_outsctadj
406 #define	Dbg_move_parexpn	Dbg64_move_parexpn
407 
408 #define	Dbg_reloc_apply_reg	Dbg64_reloc_apply_reg
409 #define	Dbg_reloc_apply_val	Dbg64_reloc_apply_val
410 #define	Dbg_reloc_ars_entry	Dbg64_reloc_ars_entry
411 #define	Dbg_reloc_copy		Dbg64_reloc_copy
412 #define	Dbg_reloc_discard	Dbg64_reloc_discard
413 #define	Dbg_reloc_doact		Dbg64_reloc_doact
414 #define	Dbg_reloc_doact_title	Dbg64_reloc_doact_title
415 #define	Dbg_reloc_dooutrel	Dbg64_reloc_dooutrel
416 #define	Dbg_reloc_entry		Dbg64_reloc_entry
417 #define	Dbg_reloc_error		Dbg64_reloc_error
418 #define	Dbg_reloc_generate	Dbg64_reloc_generate
419 #define	Dbg_reloc_in		Dbg64_reloc_in
420 #define	Dbg_reloc_ors_entry	Dbg64_reloc_ors_entry
421 #define	Dbg_reloc_out		Dbg64_reloc_out
422 #define	Dbg_reloc_proc		Dbg64_reloc_proc
423 #define	Dbg_reloc_run		Dbg64_reloc_run
424 #define	Dbg_reloc_transition	Dbg64_reloc_transition
425 #define	Dbg_reloc_sloppycomdat	Dbg64_reloc_sloppycomdat
426 
427 #define	Dbg_sec_added		Dbg64_sec_added
428 #define	Dbg_sec_backing		Dbg64_sec_backing
429 #define	Dbg_sec_created		Dbg64_sec_created
430 #define	Dbg_sec_discarded	Dbg64_sec_discarded
431 #define	Dbg_sec_genstr_compress	Dbg64_sec_genstr_compress
432 #define	Dbg_sec_group		Dbg64_sec_group
433 #define	Dbg_sec_gnu_comdat	Dbg64_sec_gnu_comdat
434 #define	Dbg_sec_in		Dbg64_sec_in
435 #define	Dbg_sec_order_error	Dbg64_sec_order_error
436 #define	Dbg_sec_order_list	Dbg64_sec_order_list
437 #define	Dbg_sec_redirected	Dbg64_sec_redirected
438 #define	Dbg_sec_strtab		Dbg64_sec_strtab
439 #define	Dbg_sec_unsup_strmerge	Dbg64_sec_unsup_strmerge
440 
441 #define	Dbg_seg_desc_entry	Dbg64_seg_desc_entry
442 #define	Dbg_seg_entry		Dbg64_seg_entry
443 #define	Dbg_seg_list		Dbg64_seg_list
444 #define	Dbg_seg_os		Dbg64_seg_os
445 #define	Dbg_seg_title		Dbg64_seg_title
446 
447 #define	Dbg_shdr_modified	Dbg64_shdr_modified
448 
449 #define	Dbg_statistics_ar	Dbg64_statistics_ar
450 #define	Dbg_statistics_ld	Dbg64_statistics_ld
451 
452 #define	Dbg_support_action	Dbg64_support_action
453 #define	Dbg_support_load	Dbg64_support_load
454 #define	Dbg_support_req		Dbg64_support_req
455 #define	Dbg_support_vnone	Dbg64_support_vnone
456 
457 #define	Dbg_syminfo_entry	Dbg64_syminfo_entry
458 #define	Dbg_syminfo_title	Dbg64_syminfo_title
459 
460 #define	Dbg_syms_ar_checking	Dbg64_syms_ar_checking
461 #define	Dbg_syms_ar_force	Dbg64_syms_ar_force
462 #define	Dbg_syms_ar_resolve	Dbg64_syms_ar_resolve
463 #define	Dbg_syms_ar_skip	Dbg64_syms_ar_skip
464 #define	Dbg_syms_ar_title	Dbg64_syms_ar_title
465 #define	Dbg_syms_cap_convert	Dbg64_syms_cap_convert
466 #define	Dbg_syms_cap_local	Dbg64_syms_cap_local
467 #define	Dbg_syms_cap_lookup	Dbg64_syms_cap_lookup
468 #define	Dbg_syms_cap_title	Dbg64_syms_cap_title
469 #define	Dbg_syms_copy_reloc	Dbg64_syms_copy_reloc
470 #define	Dbg_syms_created	Dbg64_syms_created
471 #define	Dbg_syms_discarded	Dbg64_syms_discarded
472 #define	Dbg_syms_dup_discarded	Dbg64_syms_dup_discarded
473 #define	Dbg_syms_dup_sort_addr	Dbg64_syms_dup_sort_addr
474 #define	Dbg_syms_entered	Dbg64_syms_entered
475 #define	Dbg_syms_entry		Dbg64_syms_entry
476 #define	Dbg_syms_global		Dbg64_syms_global
477 #define	Dbg_syms_ignore		Dbg64_syms_ignore
478 #define	Dbg_syms_ignore_gnuver	Dbg64_syms_ignore_gnuver
479 #define	Dbg_syms_lazy_rescan	Dbg64_syms_lazy_rescan
480 #define	Dbg_syms_lookup		Dbg64_syms_lookup
481 #define	Dbg_syms_new		Dbg64_syms_new
482 #define	Dbg_syms_old		Dbg64_syms_old
483 #define	Dbg_syms_process	Dbg64_syms_process
484 #define	Dbg_syms_reduce		Dbg64_syms_reduce
485 #define	Dbg_syms_resolved	Dbg64_syms_resolved
486 #define	Dbg_syms_resolving	Dbg64_syms_resolving
487 #define	Dbg_syms_sec_entry	Dbg64_syms_sec_entry
488 #define	Dbg_syms_sec_title	Dbg64_syms_sec_title
489 #define	Dbg_syms_spec_title	Dbg64_syms_spec_title
490 #define	Dbg_syms_updated	Dbg64_syms_updated
491 #define	Dbg_syms_up_title	Dbg64_syms_up_title
492 #define	Dbg_syms_wrap		Dbg64_syms_wrap
493 
494 #define	Dbg_util_call_array	Dbg64_util_call_array
495 #define	Dbg_util_call_fini	Dbg64_util_call_fini
496 #define	Dbg_util_call_init	Dbg64_util_call_init
497 #define	Dbg_util_call_main	Dbg64_util_call_main
498 #define	Dbg_util_collect	Dbg64_util_collect
499 #define	Dbg_util_dbnotify	Dbg64_util_dbnotify
500 #define	Dbg_util_edge_in	Dbg64_util_edge_in
501 #define	Dbg_util_edge_out	Dbg64_util_edge_out
502 #define	Dbg_util_intoolate	Dbg64_util_intoolate
503 #define	Dbg_util_lcinterface	Dbg64_util_lcinterface
504 #define	Dbg_util_nl		Dbg64_util_nl
505 #define	Dbg_util_scc_entry	Dbg64_util_scc_entry
506 #define	Dbg_util_scc_title	Dbg64_util_scc_title
507 #define	Dbg_util_str		Dbg64_util_str
508 
509 #define	Dbg_unused_file		Dbg64_unused_file
510 #define	Dbg_unused_lcinterface	Dbg64_unused_lcinterface
511 #define	Dbg_unused_path		Dbg64_unused_path
512 #define	Dbg_unused_sec		Dbg64_unused_sec
513 #define	Dbg_unused_unref	Dbg64_unused_unref
514 
515 #define	Dbg_ver_avail_entry	Dbg64_ver_avail_entry
516 #define	Dbg_ver_avail_title	Dbg64_ver_avail_title
517 #define	Dbg_ver_def_title	Dbg64_ver_def_title
518 #define	Dbg_ver_desc_entry	Dbg64_ver_desc_entry
519 #define	Dbg_ver_need_done	Dbg64_ver_need_done
520 #define	Dbg_ver_need_entry	Dbg64_ver_need_entry
521 #define	Dbg_ver_need_title	Dbg64_ver_need_title
522 #define	Dbg_ver_nointerface	Dbg64_ver_nointerface
523 #define	Dbg_ver_symbol		Dbg64_ver_symbol
524 
525 #else
526 
527 #define	Dbg_demangle_name	Dbg32_demangle_name
528 
529 #define	Dbg_bind_global		Dbg32_bind_global
530 #define	Dbg_bind_plt_summary	Dbg32_bind_plt_summary
531 #define	Dbg_bind_reject		Dbg32_bind_reject
532 #define	Dbg_bind_weak		Dbg32_bind_weak
533 
534 #define	Dbg_cap_candidate	Dbg32_cap_candidate
535 #define	Dbg_cap_filter		Dbg32_cap_filter
536 #define	Dbg_cap_id		Dbg32_cap_id
537 #define	Dbg_cap_identical	Dbg32_cap_identical
538 #define	Dbg_cap_mapfile_title	Dbg32_cap_mapfile_title
539 #define	Dbg_cap_post_title	Dbg32_cap_post_title
540 #define	Dbg_cap_sec_title	Dbg32_cap_sec_title
541 #define	Dbg_cap_val		Dbg32_cap_val
542 #define	Dbg_cap_ptr_entry	Dbg32_cap_ptr_entry
543 #define	Dbg_cap_val_entry	Dbg32_cap_val_entry
544 
545 #define	Dbg_dl_dladdr		Dbg32_dl_dladdr
546 #define	Dbg_dl_dlclose		Dbg32_dl_dlclose
547 #define	Dbg_dl_dldump		Dbg32_dl_dldump
548 #define	Dbg_dl_dlerror		Dbg32_dl_dlerror
549 #define	Dbg_dl_dlinfo		Dbg32_dl_dlinfo
550 #define	Dbg_dl_dlopen		Dbg32_dl_dlopen
551 #define	Dbg_dl_dlsym		Dbg32_dl_dlsym
552 #define	Dbg_dl_iphdr_enter	Dbg32_dl_iphdr_enter
553 #define	Dbg_dl_iphdr_callback	Dbg32_dl_iphdr_callback
554 #define	Dbg_dl_iphdr_mapchange	Dbg32_dl_iphdr_mapchange
555 #define	Dbg_dl_iphdr_unmap_ret	Dbg32_dl_iphdr_unmap_ret
556 
557 #define	Dbg_ent_entry		Dbg32_ent_entry
558 #define	Dbg_ent_print		Dbg32_ent_print
559 
560 #define	Dbg_file_analyze	Dbg32_file_analyze
561 #define	Dbg_file_aout		Dbg32_file_aout
562 #define	Dbg_file_ar		Dbg32_file_ar
563 #define	Dbg_file_ar_rescan	Dbg32_file_ar_rescan
564 #define	Dbg_file_bind_entry	Dbg32_file_bind_entry
565 #define	Dbg_file_bindings	Dbg32_file_bindings
566 #define	Dbg_file_bindings_done	Dbg32_file_bindings_done
567 #define	Dbg_file_cleanup	Dbg32_file_cleanup
568 #define	Dbg_file_cntl		Dbg32_file_cntl
569 #define	Dbg_file_config_dis	Dbg32_file_config_dis
570 #define	Dbg_file_config_obj	Dbg32_file_config_obj
571 #define	Dbg_file_del_rescan	Dbg32_file_del_rescan
572 #define	Dbg_file_delete		Dbg32_file_delete
573 #define	Dbg_file_deferred	Dbg32_file_deferred
574 #define	Dbg_file_elf		Dbg32_file_elf
575 #define	Dbg_file_filtee		Dbg32_file_filtee
576 #define	Dbg_file_filter		Dbg32_file_filter
577 #define	Dbg_file_fixname	Dbg32_file_fixname
578 #define	Dbg_file_generic	Dbg32_file_generic
579 #define	Dbg_file_hdl_action	Dbg32_file_hdl_action
580 #define	Dbg_file_hdl_collect	Dbg32_file_hdl_collect
581 #define	Dbg_file_hdl_title	Dbg32_file_hdl_title
582 #define	Dbg_file_lazyload	Dbg32_file_lazyload
583 #define	Dbg_file_ldso		Dbg32_file_ldso
584 #define	Dbg_file_mmapobj	Dbg32_file_mmapobj
585 #define	Dbg_file_mode_promote	Dbg32_file_mode_promote
586 #define	Dbg_file_modified	Dbg32_file_modified
587 #define	Dbg_file_needed		Dbg32_file_needed
588 #define	Dbg_file_output		Dbg32_file_output
589 #define	Dbg_file_preload	Dbg32_file_preload
590 #define	Dbg_file_prot		Dbg32_file_prot
591 #define	Dbg_file_rejected	Dbg32_file_rejected
592 #define	Dbg_file_reuse		Dbg32_file_reuse
593 #define	Dbg_file_skip		Dbg32_file_skip
594 
595 #define	Dbg_got_display		Dbg32_got_display
596 
597 #define	Dbg_libs_audit		Dbg32_libs_audit
598 #define	Dbg_libs_find		Dbg32_libs_find
599 #define	Dbg_libs_found		Dbg32_libs_found
600 #define	Dbg_libs_insecure	Dbg32_libs_insecure
601 #define	Dbg_libs_init		Dbg32_libs_init
602 #define	Dbg_libs_l		Dbg32_libs_l
603 #define	Dbg_libs_path		Dbg32_libs_path
604 #define	Dbg_libs_req		Dbg32_libs_req
605 #define	Dbg_libs_update		Dbg32_libs_update
606 #define	Dbg_libs_yp		Dbg32_libs_yp
607 #define	Dbg_libs_ylu		Dbg32_libs_ylu
608 
609 #define	Dbg_map_cexp_id		Dbg32_map_cexp_id
610 #define	Dbg_map_dv		Dbg32_map_dv
611 #define	Dbg_map_dv_entry	Dbg32_map_dv_entry
612 #define	Dbg_map_ent		Dbg32_map_ent
613 #define	Dbg_map_ent_ord_title	Dbg32_map_ent_ord_title
614 #define	Dbg_map_hdr_noalloc	Dbg32_map_hdr_noalloc
615 #define	Dbg_map_parse		Dbg32_map_parse
616 #define	Dbg_map_pass		Dbg32_map_pass
617 #define	Dbg_map_post_title	Dbg32_map_post_title
618 #define	Dbg_map_seg		Dbg32_map_seg
619 #define	Dbg_map_seg_order	Dbg32_map_seg_order
620 #define	Dbg_map_seg_os_order	Dbg32_map_seg_os_order
621 #define	Dbg_map_size_new	Dbg32_map_size_new
622 #define	Dbg_map_size_old	Dbg32_map_size_old
623 #define	Dbg_map_sort_seg	Dbg32_map_sort_seg
624 #define	Dbg_map_sort_title	Dbg32_map_sort_title
625 #define	Dbg_map_symbol		Dbg32_map_symbol
626 #define	Dbg_map_version		Dbg32_map_version
627 
628 #define	Dbg_move_adjexpandreloc	Dbg32_move_adjexpandreloc
629 #define	Dbg_move_adjmovereloc	Dbg32_move_adjmovereloc
630 #define	Dbg_move_bad		Dbg32_move_bad
631 #define	Dbg_move_data		Dbg32_move_data
632 #define	Dbg_move_entry1		Dbg32_move_entry1
633 #define	Dbg_move_entry2		Dbg32_move_entry2
634 #define	Dbg_move_expand		Dbg32_move_expand
635 #define	Dbg_move_input		Dbg32_move_input
636 #define	Dbg_move_outmove	Dbg32_move_outmove
637 #define	Dbg_move_outsctadj	Dbg32_move_outsctadj
638 #define	Dbg_move_parexpn	Dbg32_move_parexpn
639 
640 #define	Dbg_reloc_apply_reg	Dbg32_reloc_apply_reg
641 #define	Dbg_reloc_apply_val	Dbg32_reloc_apply_val
642 #define	Dbg_reloc_ars_entry	Dbg32_reloc_ars_entry
643 #define	Dbg_reloc_copy		Dbg32_reloc_copy
644 #define	Dbg_reloc_discard	Dbg32_reloc_discard
645 #define	Dbg_reloc_doact		Dbg32_reloc_doact
646 #define	Dbg_reloc_doact_title	Dbg32_reloc_doact_title
647 #define	Dbg_reloc_dooutrel	Dbg32_reloc_dooutrel
648 #define	Dbg_reloc_entry		Dbg32_reloc_entry
649 #define	Dbg_reloc_error		Dbg32_reloc_error
650 #define	Dbg_reloc_generate	Dbg32_reloc_generate
651 #define	Dbg_reloc_in		Dbg32_reloc_in
652 #define	Dbg_reloc_ors_entry	Dbg32_reloc_ors_entry
653 #define	Dbg_reloc_out		Dbg32_reloc_out
654 #define	Dbg_reloc_proc		Dbg32_reloc_proc
655 #define	Dbg_reloc_run		Dbg32_reloc_run
656 #define	Dbg_reloc_transition	Dbg32_reloc_transition
657 #define	Dbg_reloc_sloppycomdat	Dbg32_reloc_sloppycomdat
658 
659 #define	Dbg_sec_added		Dbg32_sec_added
660 #define	Dbg_sec_backing		Dbg32_sec_backing
661 #define	Dbg_sec_created		Dbg32_sec_created
662 #define	Dbg_sec_discarded	Dbg32_sec_discarded
663 #define	Dbg_sec_genstr_compress	Dbg32_sec_genstr_compress
664 #define	Dbg_sec_group		Dbg32_sec_group
665 #define	Dbg_sec_gnu_comdat	Dbg32_sec_gnu_comdat
666 #define	Dbg_sec_in		Dbg32_sec_in
667 #define	Dbg_sec_order_error	Dbg32_sec_order_error
668 #define	Dbg_sec_order_list	Dbg32_sec_order_list
669 #define	Dbg_sec_redirected	Dbg32_sec_redirected
670 #define	Dbg_sec_strtab		Dbg32_sec_strtab
671 #define	Dbg_sec_unsup_strmerge	Dbg32_sec_unsup_strmerge
672 
673 #define	Dbg_seg_desc_entry	Dbg32_seg_desc_entry
674 #define	Dbg_seg_entry		Dbg32_seg_entry
675 #define	Dbg_seg_list		Dbg32_seg_list
676 #define	Dbg_seg_os		Dbg32_seg_os
677 #define	Dbg_seg_title		Dbg32_seg_title
678 
679 #define	Dbg_shdr_modified	Dbg32_shdr_modified
680 
681 #define	Dbg_statistics_ar	Dbg32_statistics_ar
682 #define	Dbg_statistics_ld	Dbg32_statistics_ld
683 
684 #define	Dbg_support_action	Dbg32_support_action
685 #define	Dbg_support_load	Dbg32_support_load
686 #define	Dbg_support_req		Dbg32_support_req
687 #define	Dbg_support_vnone	Dbg32_support_vnone
688 
689 #define	Dbg_syminfo_entry	Dbg32_syminfo_entry
690 #define	Dbg_syminfo_title	Dbg32_syminfo_title
691 
692 #define	Dbg_syms_ar_checking	Dbg32_syms_ar_checking
693 #define	Dbg_syms_ar_force	Dbg32_syms_ar_force
694 #define	Dbg_syms_ar_resolve	Dbg32_syms_ar_resolve
695 #define	Dbg_syms_ar_skip	Dbg32_syms_ar_skip
696 #define	Dbg_syms_ar_title	Dbg32_syms_ar_title
697 #define	Dbg_syms_cap_convert	Dbg32_syms_cap_convert
698 #define	Dbg_syms_cap_local	Dbg32_syms_cap_local
699 #define	Dbg_syms_cap_lookup	Dbg32_syms_cap_lookup
700 #define	Dbg_syms_cap_title	Dbg32_syms_cap_title
701 #define	Dbg_syms_copy_reloc	Dbg32_syms_copy_reloc
702 #define	Dbg_syms_created	Dbg32_syms_created
703 #define	Dbg_syms_discarded	Dbg32_syms_discarded
704 #define	Dbg_syms_dup_discarded	Dbg32_syms_dup_discarded
705 #define	Dbg_syms_dup_sort_addr	Dbg32_syms_dup_sort_addr
706 #define	Dbg_syms_entered	Dbg32_syms_entered
707 #define	Dbg_syms_entry		Dbg32_syms_entry
708 #define	Dbg_syms_global		Dbg32_syms_global
709 #define	Dbg_syms_ignore		Dbg32_syms_ignore
710 #define	Dbg_syms_ignore_gnuver	Dbg32_syms_ignore_gnuver
711 #define	Dbg_syms_lazy_rescan	Dbg32_syms_lazy_rescan
712 #define	Dbg_syms_lookup		Dbg32_syms_lookup
713 #define	Dbg_syms_lookup_aout	Dbg32_syms_lookup_aout
714 #define	Dbg_syms_new		Dbg32_syms_new
715 #define	Dbg_syms_old		Dbg32_syms_old
716 #define	Dbg_syms_process	Dbg32_syms_process
717 #define	Dbg_syms_reduce		Dbg32_syms_reduce
718 #define	Dbg_syms_resolved	Dbg32_syms_resolved
719 #define	Dbg_syms_resolving	Dbg32_syms_resolving
720 #define	Dbg_syms_sec_entry	Dbg32_syms_sec_entry
721 #define	Dbg_syms_sec_title	Dbg32_syms_sec_title
722 #define	Dbg_syms_spec_title	Dbg32_syms_spec_title
723 #define	Dbg_syms_updated	Dbg32_syms_updated
724 #define	Dbg_syms_up_title	Dbg32_syms_up_title
725 #define	Dbg_syms_wrap		Dbg32_syms_wrap
726 
727 #define	Dbg_util_call_array	Dbg32_util_call_array
728 #define	Dbg_util_call_fini	Dbg32_util_call_fini
729 #define	Dbg_util_call_init	Dbg32_util_call_init
730 #define	Dbg_util_call_main	Dbg32_util_call_main
731 #define	Dbg_util_collect	Dbg32_util_collect
732 #define	Dbg_util_dbnotify	Dbg32_util_dbnotify
733 #define	Dbg_util_edge_in	Dbg32_util_edge_in
734 #define	Dbg_util_edge_out	Dbg32_util_edge_out
735 #define	Dbg_util_intoolate	Dbg32_util_intoolate
736 #define	Dbg_util_lcinterface	Dbg32_util_lcinterface
737 #define	Dbg_util_nl		Dbg32_util_nl
738 #define	Dbg_util_scc_entry	Dbg32_util_scc_entry
739 #define	Dbg_util_scc_title	Dbg32_util_scc_title
740 #define	Dbg_util_str		Dbg32_util_str
741 
742 #define	Dbg_unused_file		Dbg32_unused_file
743 #define	Dbg_unused_lcinterface	Dbg32_unused_lcinterface
744 #define	Dbg_unused_path		Dbg32_unused_path
745 #define	Dbg_unused_sec		Dbg32_unused_sec
746 #define	Dbg_unused_unref	Dbg32_unused_unref
747 
748 #define	Dbg_ver_avail_entry	Dbg32_ver_avail_entry
749 #define	Dbg_ver_avail_title	Dbg32_ver_avail_title
750 #define	Dbg_ver_def_title	Dbg32_ver_def_title
751 #define	Dbg_ver_desc_entry	Dbg32_ver_desc_entry
752 #define	Dbg_ver_need_done	Dbg32_ver_need_done
753 #define	Dbg_ver_need_entry	Dbg32_ver_need_entry
754 #define	Dbg_ver_need_title	Dbg32_ver_need_title
755 #define	Dbg_ver_nointerface	Dbg32_ver_nointerface
756 #define	Dbg_ver_symbol		Dbg32_ver_symbol
757 
758 #endif
759 
760 /*
761  * External Dbg_*() interface routines.
762  */
763 extern	void	Dbg_args_file(Lm_list *, int, char *);
764 extern	void	Dbg_args_guidance_unknown(Lm_list *, const char *);
765 extern	void	Dbg_args_option(Lm_list *, int, int, char *);
766 extern	void	Dbg_args_str2chr(Lm_list *, int, const char *, int);
767 extern	void	Dbg_args_Wldel(Lm_list *, int, const char *);
768 extern	void	Dbg_audit_activity(Lm_list *, const char *, const char *,
769 		    uint_t);
770 extern	void	Dbg_audit_ignore(Rt_map *);
771 extern	void	Dbg_audit_interface(Lm_list *, const char *, const char *);
772 extern	void	Dbg_audit_lib(Rt_map *, const char *, int);
773 extern	void	Dbg_audit_objclose(Lm_list *, const char *, const char *);
774 extern	void	Dbg_audit_objopen(Lm_list *, int, const char *, const char *,
775 		    uint_t, Boolean);
776 extern	void	Dbg_audit_objfilter(Lm_list *, int, const char *, const char *,
777 		    const char *, const char *);
778 extern	void	Dbg_audit_objsearch(Lm_list *, int, const char *, const char *,
779 		    uint_t, const char *);
780 extern	void	Dbg_audit_pltenter(Lm_list *, int, const char *, const char *,
781 		    Addr);
782 extern	void	Dbg_audit_pltexit(Lm_list *, const char *, const char *);
783 extern	void	Dbg_audit_preinit(Lm_list *, const char *, const char *);
784 extern	void	Dbg_audit_symbind(Lm_list *, int, const char *, const char *,
785 		    Addr, uint_t);
786 extern	void	Dbg_audit_skip(Lm_list *, const char *, const char *);
787 extern	void	Dbg_audit_terminate(Lm_list *, const char *);
788 extern	void	Dbg_audit_version(Lm_list *, const char *, uint_t, uint_t);
789 
790 extern	void	Dbg_basic_collect(Lm_list *);
791 extern	void	Dbg_basic_create(Lm_list *);
792 extern	void	Dbg_basic_finish(Lm_list *);
793 extern	void	Dbg_basic_files(Lm_list *);
794 extern	void	Dbg_basic_options(Lm_list *);
795 extern	void	Dbg_basic_relocate(Lm_list *);
796 extern	void	Dbg_basic_validate(Lm_list *);
797 
798 extern	void	Dbg_bind_global(Rt_map *, Addr, Off, Xword, Pltbindtype,
799 		    Rt_map *, Addr, Off, const char *, uint_t);
800 extern	void	Dbg_bind_plt_summary(Lm_list *, Half, Word, Word, Word, Word,
801 		    Word, Word);
802 #if	defined(_ELF64)
803 extern	void	Dbg_bind_pltpad_from(Rt_map *, Addr, const char *);
804 extern	void	Dbg_bind_pltpad_to(Rt_map *, Addr, const char *, const char *);
805 #endif
806 extern	void	Dbg_bind_reject(Rt_map *, Rt_map *, const char *, int);
807 extern	void	Dbg_bind_weak(Rt_map *, Addr, Addr, const char *);
808 
809 extern	void	Dbg_cap_candidate(Lm_list *, const char *);
810 extern	void	Dbg_cap_filter(Lm_list *, const char *, Rt_map *);
811 extern	void	Dbg_cap_id(Lm_list *, Lineno, const char *, const char *);
812 extern	void	Dbg_cap_identical(Lm_list *, const char *, const char *);
813 extern	void	Dbg_cap_mapfile_title(Lm_list *, Lineno);
814 extern	void	Dbg_cap_post_title(Lm_list *, int *);
815 extern	void	Dbg_cap_sec_title(Lm_list *, const char *);
816 extern	void	Dbg_cap_val(Lm_list *, Syscapset *, Syscapset *, Half);
817 extern	void	Dbg_cap_ptr_entry(Lm_list *, dbg_state_t, Xword, const char *);
818 extern	void	Dbg_cap_val_entry(Lm_list *, dbg_state_t, Xword, Xword, Half);
819 
820 extern	void	Dbg_dl_dladdr(Rt_map *, void *);
821 extern	void	Dbg_dl_dlclose(Rt_map *, const char *, int);
822 extern	void	Dbg_dl_dldump(Rt_map *, const char *, const char *, int);
823 extern	void	Dbg_dl_dlerror(Rt_map *, const char *);
824 extern	void	Dbg_dl_dlinfo(Rt_map *, const char *, int, void *);
825 extern	void	Dbg_dl_dlopen(Rt_map *, const char *, int *, int);
826 extern	void	Dbg_dl_dlsym(Rt_map *, const char *, int *, const char *, int);
827 extern	void	Dbg_dl_iphdr_enter(Rt_map *, u_longlong_t, u_longlong_t);
828 extern	void	Dbg_dl_iphdr_callback(Lm_list *, struct dl_phdr_info *);
829 extern	void	Dbg_dl_iphdr_mapchange(Lm_list *, u_longlong_t, u_longlong_t);
830 extern	void	Dbg_dl_iphdr_unmap_ret(Lm_list *);
831 
832 extern	const char *
833 		Dbg_demangle_name(const char *);
834 
835 extern	void	Dbg_ent_entry(Lm_list *, uchar_t, Half, Ent_desc *);
836 extern	void	Dbg_ent_print(Lm_list *, uchar_t, Half, APlist *);
837 
838 extern	void	Dbg_file_analyze(Rt_map *);
839 extern	void	Dbg_file_aout(Lm_list *, const char *, Addr, size_t,
840 		    const char *, Aliste);
841 extern	void	Dbg_file_ar(Lm_list *, const char *, Boolean);
842 extern	void	Dbg_file_ar_rescan(Lm_list *, int, int);
843 extern	void	Dbg_file_bind_entry(Lm_list *, Bnd_desc *);
844 extern	void	Dbg_file_bindings(Rt_map *, int);
845 extern	void	Dbg_file_bindings_done(Lm_list *);
846 extern	void	Dbg_file_cleanup(Lm_list *, const char *, Aliste);
847 extern	void	Dbg_file_cntl(Lm_list *, Aliste, Aliste);
848 extern	void	Dbg_file_config_dis(Lm_list *, const char *, int);
849 extern	void	Dbg_file_config_obj(Lm_list *, const char *, const char *,
850 		    const char *);
851 extern	void	Dbg_file_del_rescan(Lm_list *);
852 extern	void	Dbg_file_delete(Rt_map *);
853 extern	void	Dbg_file_deferred(Lm_list *, const char *, const char *);
854 extern	void	Dbg_file_elf(Lm_list *, const char *, Addr, size_t,
855 		    const char *, Aliste);
856 extern	void	Dbg_file_filtee(Lm_list *, const char *, const char *, int);
857 extern	void	Dbg_file_filter(Lm_list *, const char *, const char *, int);
858 extern	void	Dbg_file_fixname(Lm_list *, const char *, const char *);
859 extern	void	Dbg_file_generic(Lm_list *, Ifl_desc *);
860 extern	void	Dbg_file_hdl_action(Grp_hdl *, Rt_map *, int, uint_t);
861 extern	void	Dbg_file_hdl_collect(Grp_hdl *, const char *);
862 extern	void	Dbg_file_hdl_title(int);
863 extern	void	Dbg_file_lazyload(Rt_map *, const char *, const char *);
864 extern	void	Dbg_file_ldso(Rt_map *, char **, auxv_t *, const char *,
865 		    Aliste);
866 extern	void	Dbg_file_mmapobj(Lm_list *, const char *, mmapobj_result_t *,
867 		    uint_t);
868 extern	void	Dbg_file_mode_promote(Rt_map *, int);
869 extern	void	Dbg_file_modified(Lm_list *, const char *, const char *,
870 		    const char *, int, int, Elf *, Elf *);
871 extern	void	Dbg_file_needed(Rt_map *, const char *);
872 extern	void	Dbg_file_output(Ofl_desc *);
873 extern	void	Dbg_file_preload(Lm_list *, const char *);
874 extern	void	Dbg_file_prot(Rt_map *, int);
875 extern	void	Dbg_file_rejected(Lm_list *, Rej_desc *, Half mach);
876 extern	void	Dbg_file_reuse(Lm_list *, const char *, const char *);
877 extern	void	Dbg_file_skip(Lm_list *, const char *, const char *);
878 
879 extern	void	Dbg_got_display(Ofl_desc *, Off, int, Word, size_t);
880 
881 extern	void	Dbg_libs_audit(Lm_list *, const char *, const char *);
882 extern	void	Dbg_libs_find(Lm_list *, const char *);
883 extern	void	Dbg_libs_found(Lm_list *, const char *, int);
884 extern	void	Dbg_libs_insecure(Lm_list *, const char *, int);
885 extern	void	Dbg_libs_init(Lm_list *, APlist *, APlist *);
886 extern	void	Dbg_libs_l(Lm_list *, const char *, const char *);
887 extern	void	Dbg_libs_path(Lm_list *, const char *, uint_t, const char *);
888 extern	void	Dbg_libs_req(Lm_list *, const char *, const char *,
889 		    const char *);
890 extern	void	Dbg_libs_update(Lm_list *, APlist *, APlist *);
891 extern	void	Dbg_libs_yp(Lm_list *, const char *);
892 extern	void	Dbg_libs_ylu(Lm_list *, const char *, const char *, int);
893 
894 extern	void	Dbg_map_cexp_id(Lm_list *, Boolean, const char *, Lineno,
895 		    const char *);
896 extern	void	Dbg_map_dv(Lm_list *, const char *, Lineno);
897 extern	void	Dbg_map_dv_entry(Lm_list *, Lineno, int, const char *);
898 extern	void	Dbg_map_ent(Lm_list *, Ent_desc *, Ofl_desc *, Lineno);
899 extern	void	Dbg_map_ent_ord_title(Lm_list *, const char *);
900 extern	void	Dbg_map_hdr_noalloc(Lm_list *, Lineno);
901 extern	void	Dbg_map_parse(Lm_list *, const char *, int);
902 extern	void	Dbg_map_pass(Lm_list *, Boolean, const char *, Lineno,
903 		    const char *);
904 extern	void	Dbg_map_post_title(Lm_list *);
905 extern	void	Dbg_map_seg(Ofl_desc *, dbg_state_t, int, Sg_desc *, Lineno);
906 extern	void	Dbg_map_seg_order(Ofl_desc *, uchar_t, Half, dbg_state_t,
907 		    Lineno);
908 extern	void	Dbg_map_seg_os_order(Lm_list *, Sg_desc *, const char *,
909 		    Word, Lineno);
910 extern	void	Dbg_map_size_new(Lm_list *, const char *, const char *, Lineno);
911 extern	void	Dbg_map_size_old(Ofl_desc *, Sym_desc *, const char *, Lineno);
912 extern	void	Dbg_map_sort_title(Lm_list *, Boolean);
913 extern	void	Dbg_map_sort_seg(Lm_list *, uchar_t, Half, Sg_desc *);
914 extern	void	Dbg_map_symbol(Ofl_desc *, Sym_desc *);
915 extern	void	Dbg_map_version(Lm_list *, const char *, const char *, int);
916 
917 extern 	void	Dbg_move_adjexpandreloc(Lm_list *, Xword, const char *);
918 extern 	void	Dbg_move_adjmovereloc(Lm_list *, Xword, Xword, const char *);
919 extern	void	Dbg_move_bad(Lm_list *, ulong_t, const char *, Addr);
920 extern	void	Dbg_move_data(Rt_map *);
921 extern 	void	Dbg_move_entry1(Lm_list *, int, Move *, Sym_desc *);
922 extern 	void	Dbg_move_entry2(Lm_list *, Move *, Word, const char *);
923 extern 	void	Dbg_move_expand(Lm_list *, Move *, Addr);
924 extern 	void	Dbg_move_input(Lm_list *, const char *);
925 extern 	void	Dbg_move_outmove(Lm_list *, const char *);
926 extern 	void	Dbg_move_outsctadj(Lm_list *, Sym_desc *);
927 extern 	void	Dbg_move_parexpn(Lm_list *, const char *, const char *);
928 
929 extern	void	Dbg_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
930 extern	void	Dbg_reloc_apply_val(Lm_list *, int, Xword, Xword);
931 extern	void	Dbg_reloc_ars_entry(Lm_list *, int, Word, Half, Rel_desc *);
932 extern	void	Dbg_reloc_copy(Rt_map *, Rt_map *, const char *, int);
933 extern	void	Dbg_reloc_discard(Lm_list *, Half, Rel_desc *);
934 extern	void	Dbg_reloc_doact(Lm_list *, int, Half, Word, Rel_desc *,
935 		    Xword, Xword, rel_desc_sname_func_t);
936 extern	void	Dbg_reloc_doact_title(Lm_list *);
937 extern	void	Dbg_reloc_dooutrel(Lm_list *, Word);
938 extern	void	Dbg_reloc_entry(Lm_list *, const char *, Half, Word, void *,
939 		    const char *, const char *, const char *);
940 extern	void	Dbg_reloc_error(Lm_list *, int, Half, Word, void *,
941 		    const char *);
942 extern	void	Dbg_reloc_generate(Lm_list *, Os_desc *, Word);
943 extern	void	Dbg_reloc_in(Lm_list *, int, Half, Word, void *, const char *,
944 		    Word, const char *);
945 extern	void	Dbg_reloc_ors_entry(Lm_list *, int, Word, Half, Rel_desc *);
946 extern	void	Dbg_reloc_out(Ofl_desc *, int, Word, void *, const char *,
947 		    const char *);
948 extern	void	Dbg_reloc_proc(Lm_list *, Os_desc *, Is_desc *, Is_desc *);
949 extern	void	Dbg_reloc_run(Rt_map *, uint_t, int, int);
950 extern	void	Dbg_reloc_transition(Lm_list *, Half, Word, Rel_desc *,
951 		    rel_desc_sname_func_t);
952 extern	void	Dbg_reloc_sloppycomdat(Lm_list *, Sym_desc *);
953 
954 extern	void	Dbg_sec_added(Lm_list *, Os_desc *, Sg_desc *);
955 extern	void	Dbg_sec_backing(Lm_list *);
956 extern	void	Dbg_sec_created(Lm_list *, Os_desc *, Sg_desc *);
957 extern	void	Dbg_sec_discarded(Lm_list *, Is_desc *, Is_desc *);
958 extern	void	Dbg_sec_genstr_compress(Lm_list *, const char *,
959 		    Xword, Xword);
960 extern	void	Dbg_sec_group(Lm_list *, Is_desc *, Group_desc *);
961 extern	void	Dbg_sec_gnu_comdat(Lm_list *, Is_desc *, Boolean, Boolean);
962 extern	void	Dbg_sec_in(Lm_list *, Is_desc *);
963 extern	void	Dbg_sec_order_error(Lm_list *, Ifl_desc *, Word, int);
964 extern	void	Dbg_sec_order_list(Ofl_desc *, int);
965 extern	void	Dbg_sec_redirected(Lm_list *, Is_desc *, const char *);
966 extern	void	Dbg_sec_strtab(Lm_list *, Os_desc *, Str_tbl *);
967 extern	void	Dbg_sec_unsup_strmerge(Lm_list *, Is_desc *);
968 
969 extern	void	Dbg_seg_desc_entry(Lm_list *, uchar_t, Half, int, Sg_desc *,
970 		    Boolean);
971 extern	void	Dbg_seg_entry(Ofl_desc *, int, Sg_desc *);
972 extern	void	Dbg_seg_list(Lm_list *, uchar_t, Half, APlist *);
973 extern	void	Dbg_seg_os(Ofl_desc *, Os_desc *, int);
974 extern	void	Dbg_seg_title(Lm_list *);
975 
976 extern	void	Dbg_shdr_modified(Lm_list *, const char *, uchar_t, Half,
977 		    Word, Shdr *, Shdr *, const char *);
978 
979 extern	void	Dbg_statistics_ar(Ofl_desc *);
980 extern	void	Dbg_statistics_ld(Ofl_desc *);
981 
982 extern	void	Dbg_support_action(Lm_list *, const char *, const char *,
983 		    Support_ndx, const char *);
984 extern	void	Dbg_support_load(Lm_list *, const char *, const char *);
985 extern	void	Dbg_support_req(Lm_list *, const char *, int);
986 extern	void	Dbg_support_vnone(Lm_list *, const char *);
987 
988 extern	void	Dbg_syminfo_entry(Lm_list *, Word, Syminfo *, Sym *,
989 		    const char *, Dyn *);
990 extern	void	Dbg_syminfo_title(Lm_list *);
991 
992 extern	void	Dbg_syms_ar_checking(Lm_list *, const char *, const char *,
993 		    Elf_Arsym *);
994 extern	void	Dbg_syms_ar_force(Lm_list *, const char *, const char *);
995 extern	void	Dbg_syms_ar_resolve(Lm_list *, const char *, const char *,
996 		    Elf_Arsym *);
997 extern	void	Dbg_syms_ar_skip(Lm_list *, const char *, Elf_Arsym *);
998 extern	void	Dbg_syms_ar_title(Lm_list *, const char *, Boolean);
999 extern	void	Dbg_syms_cap_convert(Ofl_desc *, Word, const char *, Sym *);
1000 extern	void	Dbg_syms_cap_local(Ofl_desc *, Word, const char *, Sym *,
1001 		    Sym_desc *);
1002 extern	void	Dbg_syms_cap_lookup(Rt_map *, uint_t, const char *, uint_t,
1003 		    Half, Syscapset *);
1004 extern	void	Dbg_syms_cap_title(Ofl_desc *);
1005 extern	void	Dbg_syms_copy_reloc(Ofl_desc *, Sym_desc *, Word);
1006 extern	void	Dbg_syms_created(Lm_list *, const char *);
1007 extern	void	Dbg_syms_discarded(Lm_list *, Sym_desc *);
1008 extern	void	Dbg_syms_dup_discarded(Lm_list *, Word ndx, Sym_desc *);
1009 extern	void	Dbg_syms_dup_sort_addr(Lm_list *, const char *, const char *,
1010 		    const char *, Addr);
1011 extern	void	Dbg_syms_entered(Ofl_desc *, Sym *, Sym_desc *);
1012 extern	void	Dbg_syms_entry(Lm_list *, Word, Sym_desc *);
1013 extern	void	Dbg_syms_global(Lm_list *, Word, const char *);
1014 extern	void	Dbg_syms_ignore(Ofl_desc *, Sym_desc *);
1015 extern	void	Dbg_syms_ignore_gnuver(Rt_map *, const char *, Word, Versym);
1016 extern	void	Dbg_syms_lazy_rescan(Lm_list *, const char *);
1017 extern	void	Dbg_syms_lookup(Rt_map *, const char *, const char *);
1018 #if	!(defined(_ELF64))
1019 extern	void	Dbg_syms_lookup_aout(Lm_list *, const char *);
1020 #endif
1021 extern	void	Dbg_syms_new(Ofl_desc *, Sym *, Sym_desc *);
1022 extern	void	Dbg_syms_old(Ofl_desc *, Sym_desc *);
1023 extern	void	Dbg_syms_process(Lm_list *, Ifl_desc *);
1024 extern	void	Dbg_syms_reduce(Ofl_desc *, int, Sym_desc *, int,
1025 		    const char *);
1026 extern	void	Dbg_syms_resolved(Ofl_desc *, Sym_desc *);
1027 extern	void	Dbg_syms_resolving(Ofl_desc *, Word, const char *, int, int,
1028 		    Sym *, Sym *, Sym_desc *, Ifl_desc *);
1029 extern	void	Dbg_syms_sec_entry(Lm_list *, Word, Sg_desc *, Os_desc *);
1030 extern	void	Dbg_syms_sec_title(Lm_list *);
1031 extern	void	Dbg_syms_spec_title(Lm_list *);
1032 extern	void	Dbg_syms_updated(Ofl_desc *, Sym_desc *, const char *);
1033 extern	void	Dbg_syms_up_title(Lm_list *);
1034 extern	void	Dbg_syms_wrap(Lm_list *, Word, const char *, const char *);
1035 
1036 extern	void	Dbg_tls_modactivity(Lm_list *, void *, uint_t);
1037 extern	void	Dbg_tls_static_block(Lm_list *, void *, ulong_t, ulong_t);
1038 extern	void	Dbg_tls_static_resv(Rt_map *, ulong_t, ulong_t);
1039 
1040 extern	void	Dbg_util_call_array(Rt_map *, void *, int, Word);
1041 extern	void	Dbg_util_call_fini(Rt_map *);
1042 extern	void	Dbg_util_call_init(Rt_map *, int);
1043 extern	void	Dbg_util_call_main(Rt_map *);
1044 extern	void	Dbg_util_collect(Rt_map *, int, int);
1045 extern	void	Dbg_util_dbnotify(Lm_list *, rd_event_e, r_state_e);
1046 extern	void	Dbg_util_edge_in(Lm_list *, Rt_map *, uint_t, Rt_map *,
1047 		    int, int);
1048 extern	void	Dbg_util_edge_out(Rt_map *, Rt_map *);
1049 extern	void	Dbg_util_intoolate(Rt_map *);
1050 extern	void	Dbg_util_lcinterface(Rt_map *, int, char *);
1051 extern	void	Dbg_util_nl(Lm_list *, int);
1052 extern	void	Dbg_util_scc_entry(Rt_map *, uint_t);
1053 extern	void	Dbg_util_scc_title(Lm_list *, int);
1054 extern	void	Dbg_util_str(Lm_list *, const char *);
1055 
1056 extern	void	Dbg_unused_file(Lm_list *, const char *, int, uint_t);
1057 extern	void	Dbg_unused_lcinterface(Rt_map *, Rt_map *, int);
1058 extern	void	Dbg_unused_path(Lm_list *, const char *, uint_t, uint_t,
1059 		    const char *);
1060 extern	void	Dbg_unused_sec(Lm_list *, Is_desc *);
1061 extern	void	Dbg_unused_unref(Rt_map *, const char *);
1062 
1063 extern	void	Dbg_ver_avail_entry(Lm_list *, Ver_index *, const char *);
1064 extern	void	Dbg_ver_avail_title(Lm_list *, const char *);
1065 extern	void	Dbg_ver_def_title(Lm_list *, const char *);
1066 extern	void	Dbg_ver_desc_entry(Lm_list *, Ver_desc *);
1067 extern	void	Dbg_ver_need_done(Lm_list *);
1068 extern	void	Dbg_ver_need_entry(Lm_list *, Half, const char *,
1069 		    const char *);
1070 extern	void	Dbg_ver_need_title(Lm_list *, const char *);
1071 extern	void	Dbg_ver_nointerface(Lm_list *, const char *);
1072 extern	void	Dbg_ver_symbol(Lm_list *, const char *);
1073 
1074 /*
1075  * Define Elf_*() interface flags.
1076  */
1077 #define	ELF_DBG_ELFDUMP		1
1078 #define	ELF_DBG_RTLD		2
1079 #define	ELF_DBG_LD		3
1080 #define	ELF_DBG_LD_ACT		4
1081 
1082 /*
1083  * Define generic Elf_*() interfaces.
1084  */
1085 extern	void Elf_syminfo_entry(Lm_list *, Word, Syminfo *, const char *,
1086 	    const char *);
1087 extern	void Elf_syminfo_title(Lm_list *);
1088 
1089 /*
1090  * Establish ELF32 and ELF64 class Elf_*() interfaces.
1091  */
1092 #if	defined(_ELF64)
1093 
1094 #define	Elf_cap_entry		Elf64_cap_entry
1095 #define	Elf_cap_title		Elf64_cap_title
1096 
1097 #define	Elf_demangle_name	Elf64_demangle_name
1098 #define	Elf_dyn_entry		Elf64_dyn_entry
1099 #define	Elf_dyn_null_entry	Elf64_dyn_null_entry
1100 #define	Elf_dyn_title		Elf64_dyn_title
1101 
1102 #define	Elf_ehdr		Elf64_ehdr
1103 
1104 #define	Elf_got_entry		Elf64_got_entry
1105 #define	Elf_got_title		Elf64_got_title
1106 
1107 #define	Elf_reloc_apply_reg	Elf64_reloc_apply_reg
1108 #define	Elf_reloc_apply_val	Elf64_reloc_apply_val
1109 #define	Elf_reloc_entry_1	Elf64_reloc_entry_1
1110 #define	Elf_reloc_entry_2	Elf64_reloc_entry_2
1111 #define	Elf_reloc_title		Elf64_reloc_title
1112 
1113 #define	Elf_phdr		Elf64_phdr
1114 
1115 #define	Elf_shdr		Elf64_shdr
1116 
1117 #define	Elf_syms_table_entry	Elf64_syms_table_entry
1118 #define	Elf_syms_table_title	Elf64_syms_table_title
1119 
1120 #define	Elf_ver_def_title	Elf64_ver_def_title
1121 #define	Elf_ver_line_1		Elf64_ver_line_1
1122 #define	Elf_ver_line_2		Elf64_ver_line_2
1123 #define	Elf_ver_line_3		Elf64_ver_line_3
1124 #define	Elf_ver_line_4		Elf64_ver_line_4
1125 #define	Elf_ver_line_5		Elf64_ver_line_5
1126 #define	Elf_ver_need_title	Elf64_ver_need_title
1127 
1128 #else
1129 
1130 #define	Elf_cap_entry		Elf32_cap_entry
1131 #define	Elf_cap_title		Elf32_cap_title
1132 
1133 #define	Elf_demangle_name	Elf32_demangle_name
1134 #define	Elf_dyn_entry		Elf32_dyn_entry
1135 #define	Elf_dyn_null_entry	Elf32_dyn_null_entry
1136 #define	Elf_dyn_title		Elf32_dyn_title
1137 
1138 #define	Elf_ehdr		Elf32_ehdr
1139 
1140 #define	Elf_got_entry		Elf32_got_entry
1141 #define	Elf_got_title		Elf32_got_title
1142 
1143 #define	Elf_reloc_apply_reg	Elf32_reloc_apply_reg
1144 #define	Elf_reloc_apply_val	Elf32_reloc_apply_val
1145 #define	Elf_reloc_entry_1	Elf32_reloc_entry_1
1146 #define	Elf_reloc_entry_2	Elf32_reloc_entry_2
1147 #define	Elf_reloc_title		Elf32_reloc_title
1148 
1149 #define	Elf_phdr		Elf32_phdr
1150 
1151 #define	Elf_shdr		Elf32_shdr
1152 
1153 #define	Elf_syms_table_entry	Elf32_syms_table_entry
1154 #define	Elf_syms_table_title	Elf32_syms_table_title
1155 
1156 #define	Elf_ver_def_title	Elf32_ver_def_title
1157 #define	Elf_ver_line_1		Elf32_ver_line_1
1158 #define	Elf_ver_line_2		Elf32_ver_line_2
1159 #define	Elf_ver_line_3		Elf32_ver_line_3
1160 #define	Elf_ver_line_4		Elf32_ver_line_4
1161 #define	Elf_ver_line_5		Elf32_ver_line_5
1162 #define	Elf_ver_need_title	Elf32_ver_need_title
1163 
1164 #endif
1165 
1166 extern	void	Elf_cap_entry(Lm_list *, Cap *, int, const char *, size_t,
1167 		    Half);
1168 extern	void	Elf_cap_title(Lm_list *);
1169 
1170 extern	const char \
1171 		*Elf_demangle_name(const char *);
1172 extern	void	Elf_dyn_entry(Lm_list *, Dyn *, int, const char *,
1173 		    uchar_t, Half);
1174 extern	void	Elf_dyn_null_entry(Lm_list *, Dyn *, int, int);
1175 extern	void	Elf_dyn_title(Lm_list *);
1176 
1177 extern	void	Elf_ehdr(Lm_list *, Ehdr *, Shdr *);
1178 
1179 extern	void	Elf_got_entry(Lm_list *, Sword, Addr, Xword, Half,
1180 		    uchar_t, uchar_t, Word, void *, const char *);
1181 extern	void	Elf_got_title(Lm_list *);
1182 
1183 extern	void	Elf_phdr(Lm_list *, uchar_t, Half, Phdr *);
1184 
1185 extern	void	Elf_reloc_apply_val(Lm_list *, int, Xword, Xword);
1186 extern	void	Elf_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
1187 extern	void	Elf_reloc_entry_1(Lm_list *, int, const char *, Half, Word,
1188 		    void *, const char *, const char *, const char *);
1189 extern	void	Elf_reloc_entry_2(Lm_list *, int, const char *, Word,
1190 		    const char *, Off, Sxword, const char *, const char *,
1191 		    const char *);
1192 extern	void	Elf_reloc_title(Lm_list *, int, Word);
1193 
1194 extern	void	Elf_shdr(Lm_list *, uchar_t, Half, Shdr *);
1195 
1196 extern	void	Elf_syms_table_entry(Lm_list *, int, const char *, uchar_t,
1197 		    Half, Sym *, Versym, int, const char *, const char *);
1198 extern	void	Elf_syms_table_title(Lm_list *, int);
1199 
1200 extern	void	Elf_ver_def_title(Lm_list *);
1201 extern	void	Elf_ver_line_1(Lm_list *, const char *, const char *,
1202 		    const char *, const char *);
1203 extern	void	Elf_ver_line_2(Lm_list *, const char *, const char *);
1204 extern	void	Elf_ver_line_3(Lm_list *, const char *, const char *,
1205 		    const char *);
1206 extern	void	Elf_ver_line_4(Lm_list *, const char *);
1207 extern	void	Elf_ver_line_5(Lm_list *, const char *, const char *);
1208 extern	void	Elf_ver_need_title(Lm_list *, int);
1209 
1210 
1211 #ifdef	__cplusplus
1212 }
1213 #endif
1214 
1215 #endif /* _DEBUG_H */
1216