xref: /onnv-gate/usr/src/cmd/sgs/include/debug.h (revision 8598:0867fc633d66)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
51618Srie  * Common Development and Distribution License (the "License").
61618Srie  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
211109Srie 
220Sstevel@tonic-gate /*
238501SRod.Evans@Sun.COM  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate  * Use is subject to license terms.
250Sstevel@tonic-gate  */
260Sstevel@tonic-gate 
270Sstevel@tonic-gate #ifndef	_DEBUG_H
280Sstevel@tonic-gate #define	_DEBUG_H
290Sstevel@tonic-gate 
300Sstevel@tonic-gate /*
311618Srie  * Global include file for lddbg debugging.
320Sstevel@tonic-gate  *
331618Srie  * ld(1) and ld.so.1(1) carry out all diagnostic debugging calls via lazy
341618Srie  * loading the library liblddbg.so.  Thus debugging is always enabled.  The
351618Srie  * utility elfdump(1) is explicitly dependent upon this library.  There are two
360Sstevel@tonic-gate  * categories of routines defined in this library:
370Sstevel@tonic-gate  *
380Sstevel@tonic-gate  *  o	Debugging routines that have specific linker knowledge, and test the
390Sstevel@tonic-gate  *	class of debugging allowable before proceeding, start with the `Dbg_'
400Sstevel@tonic-gate  *	prefix.
410Sstevel@tonic-gate  *
420Sstevel@tonic-gate  *  o	Lower level routines that provide generic ELF structure interpretation
430Sstevel@tonic-gate  *	start with the `Elf_' prefix.  These latter routines are the only
441618Srie  *	routines used by the elfdump(1) utility.
450Sstevel@tonic-gate  */
460Sstevel@tonic-gate #include <sgs.h>
470Sstevel@tonic-gate #include <libld.h>
480Sstevel@tonic-gate #include <rtld.h>
490Sstevel@tonic-gate #include <gelf.h>
500Sstevel@tonic-gate 
510Sstevel@tonic-gate #ifdef	__cplusplus
520Sstevel@tonic-gate extern "C" {
530Sstevel@tonic-gate #endif
540Sstevel@tonic-gate 
550Sstevel@tonic-gate /*
561618Srie  * Define Dbg_*() interface flags.  These flags direct the debugging routine to
570Sstevel@tonic-gate  * generate different diagnostics, thus the strings themselves are maintained
585067Srie  * in the debugging library.
590Sstevel@tonic-gate  */
600Sstevel@tonic-gate #define	DBG_SUP_ENVIRON		1
610Sstevel@tonic-gate #define	DBG_SUP_CMDLINE		2
620Sstevel@tonic-gate 
630Sstevel@tonic-gate #define	DBG_CONF_IGNORE		1	/* configuration processing errors */
640Sstevel@tonic-gate #define	DBG_CONF_VERSION	2
650Sstevel@tonic-gate #define	DBG_CONF_PRCFAIL	3
660Sstevel@tonic-gate #define	DBG_CONF_CORRUPT	4
671976Sab196087 #define	DBG_CONF_ABIMISMATCH	5
680Sstevel@tonic-gate 
690Sstevel@tonic-gate #define	DBG_ORDER_INFO_RANGE	1	/* sh_link out of range */
700Sstevel@tonic-gate #define	DBG_ORDER_INFO_ORDER	2	/* sh_info also ordered */
710Sstevel@tonic-gate #define	DBG_ORDER_LINK_OUTRANGE	3	/* sh_link out of range */
720Sstevel@tonic-gate #define	DBG_ORDER_FLAGS		4	/* sh_flags do not match */
730Sstevel@tonic-gate #define	DBG_ORDER_CYCLIC	5	/* sh_link cyclic */
740Sstevel@tonic-gate #define	DBG_ORDER_LINK_ERROR	6	/* sh_link (one) has an error */
750Sstevel@tonic-gate 
760Sstevel@tonic-gate #define	DBG_INIT_SORT		1	/* calling init from sorted order */
770Sstevel@tonic-gate #define	DBG_INIT_PEND		2	/* calling pending init */
780Sstevel@tonic-gate #define	DBG_INIT_DYN		3	/* dynamically triggered init */
790Sstevel@tonic-gate #define	DBG_INIT_DONE		4	/* init completed */
800Sstevel@tonic-gate 
810Sstevel@tonic-gate #define	DBG_DLSYM_DEF		0
820Sstevel@tonic-gate #define	DBG_DLSYM_NEXT		1
830Sstevel@tonic-gate #define	DBG_DLSYM_DEFAULT	2
840Sstevel@tonic-gate #define	DBG_DLSYM_SELF		3
850Sstevel@tonic-gate #define	DBG_DLSYM_PROBE		4
865220Srie #define	DBG_DLSYM_SINGLETON	5
870Sstevel@tonic-gate 
880Sstevel@tonic-gate #define	DBG_DLCLOSE_NULL	0
890Sstevel@tonic-gate #define	DBG_DLCLOSE_IGNORE	1
900Sstevel@tonic-gate #define	DBG_DLCLOSE_RESCAN	2
910Sstevel@tonic-gate 
920Sstevel@tonic-gate #define	DBG_SYM_REDUCE_GLOBAL	1	/* reporting global symbols to local */
930Sstevel@tonic-gate #define	DBG_SYM_REDUCE_RETAIN	2	/* reporting non reduced local syms */
940Sstevel@tonic-gate 
955067Srie /*
965067Srie  * Group handle operations - passed to Dbg_file_hdl_title().  Indicate why
975067Srie  * handle dependencies are being manipulated.
985067Srie  */
995067Srie #define	DBG_HDL_CREATE		0	/* handle creation */
1005067Srie #define	DBG_HDL_ADD		1	/* addition to existing handle */
1015067Srie #define	DBG_HDL_DELETE		2	/* deletion from a handle */
1025067Srie #define	DBG_HDL_ORPHAN		3	/* handle being moved to orphan list */
1035067Srie #define	DBG_HDL_REINST		4	/* handle reinstated from orphan list */
1045067Srie 
1055067Srie /*
1065067Srie  * Group handle dependency operations - passed to Dbg_file_hdl_action().
1076150Srie  * Identify the dependencies that are associated with a handle.
1085067Srie  */
1095067Srie #define	DBG_DEP_ADD		0	/* dependency added */
1105067Srie #define	DBG_DEP_UPDATE		1	/* dependency updated */
1115067Srie #define	DBG_DEP_DELETE		2	/* dependency deleted */
1125067Srie #define	DBG_DEP_REMOVE		3	/* dependency removed from handle */
1135067Srie #define	DBG_DEP_REMAIN		4	/* dependency must remain on handle */
1145067Srie #define	DBG_DEP_ORPHAN		5	/* dependency must remain an orphan */
1155067Srie #define	DBG_DEP_REINST		6	/* dependency reinstated from orphan */
1160Sstevel@tonic-gate 
1176150Srie /*
1186150Srie  * Binding information, indicating the result of a symbol binding.  Can also
1196150Srie  * indicate the reference as being EXTERN or PARENT.  Binding information is
1206150Srie  * used to augment diagnostic binding information (which in turn can be used by
1216150Srie  * lari(1)), and to enable ldd(1) -p processing.
1226150Srie  */
1230Sstevel@tonic-gate #define	DBG_BINFO_FOUND		0x0001	/* information regarding binding */
1240Sstevel@tonic-gate #define	DBG_BINFO_DIRECT	0x0002	/* bound directly */
1250Sstevel@tonic-gate #define	DBG_BINFO_COPYREF	0x0004	/* bound to copy relocated reference */
1260Sstevel@tonic-gate #define	DBG_BINFO_FILTEE	0x0008	/* bound to filtee */
1270Sstevel@tonic-gate #define	DBG_BINFO_INTERPOSE	0x0010	/* bound to an identified interposer */
1280Sstevel@tonic-gate #define	DBG_BINFO_PLTADDR	0x0020	/* bound to executables undefined plt */
1296150Srie #define	DBG_BINFO_MSK		0x0fff
1306150Srie 
1316150Srie #define	DBG_BINFO_REF_EXTERN	0x1000	/* reference to EXTERN */
1326150Srie #define	DBG_BINFO_REF_PARENT	0x2000	/* reference to PARENT */
1336150Srie #define	DBG_BINFO_REF_MSK	0xf000
1346150Srie 
1350Sstevel@tonic-gate 
1360Sstevel@tonic-gate #define	DBG_CAP_INITIAL		0
1370Sstevel@tonic-gate #define	DBG_CAP_IGNORE		1
1380Sstevel@tonic-gate #define	DBG_CAP_OLD		2
1390Sstevel@tonic-gate #define	DBG_CAP_NEW		3
1400Sstevel@tonic-gate #define	DBG_CAP_RESOLVED	4
1410Sstevel@tonic-gate 
1420Sstevel@tonic-gate #define	DBG_REL_START		1
1430Sstevel@tonic-gate #define	DBG_REL_FINISH		2
1440Sstevel@tonic-gate #define	DBG_REL_NONE		3
1450Sstevel@tonic-gate 
1461618Srie #define	DBG_NL_STD		0	/* newline controllers - standard and */
1471618Srie #define	DBG_NL_FRC		2	/*    forced. */
1480Sstevel@tonic-gate 
1498388SRod.Evans@Sun.COM #define	DBG_BNDREJ_DIRECT	0	/* bind rejected, direct to nodirect */
1508388SRod.Evans@Sun.COM #define	DBG_BNDREJ_GROUP	1	/* bind rejected, group to nodirect */
1518388SRod.Evans@Sun.COM #define	DBG_BNDREJ_SINGLE	2	/* bind rejected, singleton without */
1525220Srie 					/*    default search model */
1535220Srie #define	DBG_BNDREJ_NUM		DBG_BNDREJ_SINGLE
1545220Srie 
1550Sstevel@tonic-gate /*
1561618Srie  * Define a debug descriptor, and a user macro that inspects the descriptor as
1571618Srie  * a means of triggering a class of diagnostic output.
1580Sstevel@tonic-gate  */
1591618Srie typedef struct {
1601618Srie 	uint_t		d_class;	/* debugging classes */
1611618Srie 	uint_t		d_extra;	/* extra information for classes */
1625892Sab196087 	APlist		*d_list;	/* associated strings */
1631618Srie } Dbg_desc;
1640Sstevel@tonic-gate 
1651618Srie extern	Dbg_desc	*dbg_desc;
1661618Srie 
1671618Srie #define	DBG_ENABLED	(dbg_desc->d_class)
1681618Srie #define	DBG_CALL(func)	if (DBG_ENABLED) func
1690Sstevel@tonic-gate 
1700Sstevel@tonic-gate /*
1710Sstevel@tonic-gate  * Most debugging tokens are interpreted within liblddbg, and thus any flags
1721618Srie  * within d_class are only meaningful to this library.  The following flags
1731618Srie  * extend the d_class diagnostic, and are maintained in d_extra.  These flags
1741618Srie  * may be interpreted by the debugging library itself or from the callers
1751618Srie  * dbg_print() routine.
1760Sstevel@tonic-gate  */
1771618Srie #define	DBG_E_DETAIL	0x0001		/* add detail to a class */
1781618Srie #define	DBG_E_LONG	0x0002		/* use long names (ie. no truncation) */
1791618Srie 
1801618Srie #define	DBG_E_STDNL	0x0010		/* standard newline indicator */
1811618Srie 
1821618Srie #define	DBG_E_SNAME	0x0100		/* prepend simple name (ld only) */
1831618Srie #define	DBG_E_FNAME	0x0200		/* prepend full name (ld only) */
1841618Srie #define	DBG_E_CLASS	0x0400		/* prepend ELF class (ld only) */
1851618Srie #define	DBG_E_LMID	0x0800		/* prepend link-map id (ld.so.1 only) */
1861618Srie #define	DBG_E_DEMANGLE	0x1000		/* demangle symbol names */
1871618Srie 
1881618Srie #define	DBG_NOTDETAIL()	!(dbg_desc->d_extra & DBG_E_DETAIL)
1891618Srie #define	DBG_NOTLONG()	!(dbg_desc->d_extra & DBG_E_LONG)
1901618Srie 
1911618Srie #define	DBG_ISSNAME()	(dbg_desc->d_extra & DBG_E_SNAME)
1921618Srie #define	DBG_ISFNAME()	(dbg_desc->d_extra & DBG_E_FNAME)
1931618Srie #define	DBG_ISCLASS()	(dbg_desc->d_extra & DBG_E_CLASS)
1941618Srie #define	DBG_ISLMID()	(dbg_desc->d_extra & DBG_E_LMID)
1951618Srie #define	DBG_ISDEMANGLE() \
1961618Srie 			(dbg_desc->d_extra & DBG_E_DEMANGLE)
1970Sstevel@tonic-gate 
1980Sstevel@tonic-gate /*
1991618Srie  * Print routine, this must be supplied by the application.  The initial
2001618Srie  * argument may provide a link-map list to associate with the format statement
2011618Srie  * that follows.
2020Sstevel@tonic-gate  */
2031618Srie /* PRINTFLIKE2 */
2041618Srie extern	void		dbg_print(Lm_list *, const char *, ...);
2050Sstevel@tonic-gate 
2061618Srie extern	uintptr_t	Dbg_setup(const char *, Dbg_desc *);
2070Sstevel@tonic-gate 
2080Sstevel@tonic-gate /*
2091618Srie  * Establish ELF32 and ELF64 class Dbg_*() interfaces.
2100Sstevel@tonic-gate  */
2111618Srie #if	defined(_ELF64)
2121618Srie 
2131618Srie #define	Dbg_demangle_name	Dbg64_demangle_name
2141618Srie 
2151618Srie #define	Dbg_bind_global		Dbg64_bind_global
2161618Srie #define	Dbg_bind_plt_summary	Dbg64_bind_plt_summary
2171618Srie #define	Dbg_bind_pltpad_from	Dbg64_bind_pltpad_from
2181618Srie #define	Dbg_bind_pltpad_to	Dbg64_bind_pltpad_to
2195220Srie #define	Dbg_bind_reject		Dbg64_bind_reject
2201618Srie #define	Dbg_bind_weak		Dbg64_bind_weak
2211618Srie 
2221618Srie #define	Dbg_cap_val_hw1		Dbg64_cap_val_hw1
2231618Srie #define	Dbg_cap_hw_candidate	Dbg64_cap_hw_candidate
2241618Srie #define	Dbg_cap_hw_filter	Dbg64_cap_hw_filter
2251618Srie #define	Dbg_cap_mapfile		Dbg64_cap_mapfile
2261618Srie #define	Dbg_cap_sec_entry	Dbg64_cap_sec_entry
2271618Srie #define	Dbg_cap_sec_title	Dbg64_cap_sec_title
2281618Srie 
2291618Srie #define	Dbg_ent_entry		Dbg64_ent_entry
2301618Srie #define	Dbg_ent_print		Dbg64_ent_print
2311618Srie 
2321618Srie #define	Dbg_file_analyze	Dbg64_file_analyze
2331618Srie #define	Dbg_file_aout		Dbg64_file_aout
2341618Srie #define	Dbg_file_ar		Dbg64_file_ar
2351618Srie #define	Dbg_file_ar_rescan	Dbg64_file_ar_rescan
2361618Srie #define	Dbg_file_bind_entry	Dbg64_file_bind_entry
2371618Srie #define	Dbg_file_bindings	Dbg64_file_bindings
2383731Srie #define	Dbg_file_cleanup	Dbg64_file_cleanup
2391618Srie #define	Dbg_file_cntl		Dbg64_file_cntl
2401618Srie #define	Dbg_file_config_dis	Dbg64_file_config_dis
2411618Srie #define	Dbg_file_config_obj	Dbg64_file_config_obj
2421618Srie #define	Dbg_file_del_rescan	Dbg64_file_del_rescan
2431618Srie #define	Dbg_file_delete		Dbg64_file_delete
2441618Srie #define	Dbg_file_dlclose	Dbg64_file_dlclose
2451618Srie #define	Dbg_file_dldump		Dbg64_file_dldump
2461618Srie #define	Dbg_file_dlopen		Dbg64_file_dlopen
2471618Srie #define	Dbg_file_elf		Dbg64_file_elf
2481618Srie #define	Dbg_file_filtee		Dbg64_file_filtee
2491618Srie #define	Dbg_file_filter		Dbg64_file_filter
2501618Srie #define	Dbg_file_fixname	Dbg64_file_fixname
2511618Srie #define	Dbg_file_generic	Dbg64_file_generic
2521618Srie #define	Dbg_file_hdl_action	Dbg64_file_hdl_action
2531618Srie #define	Dbg_file_hdl_collect	Dbg64_file_hdl_collect
2541618Srie #define	Dbg_file_hdl_title	Dbg64_file_hdl_title
2551618Srie #define	Dbg_file_lazyload	Dbg64_file_lazyload
2561618Srie #define	Dbg_file_ldso		Dbg64_file_ldso
257*8598SRod.Evans@Sun.COM #define	Dbg_file_mmapobj	Dbg64_file_mmapobj
2581618Srie #define	Dbg_file_mode_promote	Dbg64_file_mode_promote
2592978Srie #define	Dbg_file_modified	Dbg64_file_modified
2601618Srie #define	Dbg_file_needed		Dbg64_file_needed
2611618Srie #define	Dbg_file_output		Dbg64_file_output
2621618Srie #define	Dbg_file_preload	Dbg64_file_preload
2631618Srie #define	Dbg_file_prot		Dbg64_file_prot
2641618Srie #define	Dbg_file_rejected	Dbg64_file_rejected
2651618Srie #define	Dbg_file_reuse		Dbg64_file_reuse
2661618Srie #define	Dbg_file_skip		Dbg64_file_skip
2671618Srie 
2681618Srie #define	Dbg_got_display		Dbg64_got_display
2691618Srie 
2701618Srie #define	Dbg_libs_audit		Dbg64_libs_audit
2711618Srie #define	Dbg_libs_find		Dbg64_libs_find
2721618Srie #define	Dbg_libs_found		Dbg64_libs_found
2737668SRod.Evans@Sun.COM #define	Dbg_libs_insecure	Dbg64_libs_insecure
2741618Srie #define	Dbg_libs_init		Dbg64_libs_init
2751618Srie #define	Dbg_libs_l		Dbg64_libs_l
2761618Srie #define	Dbg_libs_path		Dbg64_libs_path
2771618Srie #define	Dbg_libs_req		Dbg64_libs_req
2781618Srie #define	Dbg_libs_update		Dbg64_libs_update
2791618Srie #define	Dbg_libs_yp		Dbg64_libs_yp
2801618Srie #define	Dbg_libs_ylu		Dbg64_libs_ylu
2811618Srie 
2821618Srie #define	Dbg_map_dash		Dbg64_map_dash
2831618Srie #define	Dbg_map_ent		Dbg64_map_ent
2841618Srie #define	Dbg_map_parse		Dbg64_map_parse
2851618Srie #define	Dbg_map_pipe		Dbg64_map_pipe
2861618Srie #define	Dbg_map_seg		Dbg64_map_seg
2871618Srie #define	Dbg_map_set_atsign	Dbg64_map_set_atsign
2881618Srie #define	Dbg_map_set_equal	Dbg64_map_set_equal
2891618Srie #define	Dbg_map_size_new	Dbg64_map_size_new
2901618Srie #define	Dbg_map_size_old	Dbg64_map_size_old
2911618Srie #define	Dbg_map_sort_fini	Dbg64_map_sort_fini
2921618Srie #define	Dbg_map_sort_orig	Dbg64_map_sort_orig
2931618Srie #define	Dbg_map_symbol		Dbg64_map_symbol
2941618Srie #define	Dbg_map_version		Dbg64_map_version
2951618Srie 
2961618Srie #define	Dbg_move_adjexpandreloc	Dbg64_move_adjexpandreloc
2971618Srie #define	Dbg_move_adjmovereloc	Dbg64_move_adjmovereloc
298*8598SRod.Evans@Sun.COM #define	Dbg_move_bad		Dbg64_move_bad
2991618Srie #define	Dbg_move_data		Dbg64_move_data
3001618Srie #define	Dbg_move_entry1		Dbg64_move_entry1
3011618Srie #define	Dbg_move_entry2		Dbg64_move_entry2
3021618Srie #define	Dbg_move_expand		Dbg64_move_expand
3031618Srie #define	Dbg_move_input		Dbg64_move_input
3041618Srie #define	Dbg_move_outmove	Dbg64_move_outmove
3051618Srie #define	Dbg_move_outsctadj	Dbg64_move_outsctadj
3061618Srie #define	Dbg_move_parexpn	Dbg64_move_parexpn
3071618Srie 
3081618Srie #define	Dbg_reloc_apply_reg	Dbg64_reloc_apply_reg
3091618Srie #define	Dbg_reloc_apply_val	Dbg64_reloc_apply_val
3101618Srie #define	Dbg_reloc_ars_entry	Dbg64_reloc_ars_entry
3111618Srie #define	Dbg_reloc_copy		Dbg64_reloc_copy
3121618Srie #define	Dbg_reloc_discard	Dbg64_reloc_discard
3131618Srie #define	Dbg_reloc_doact		Dbg64_reloc_doact
3141618Srie #define	Dbg_reloc_doact_title	Dbg64_reloc_doact_title
3151618Srie #define	Dbg_reloc_dooutrel	Dbg64_reloc_dooutrel
3161618Srie #define	Dbg_reloc_entry		Dbg64_reloc_entry
3171618Srie #define	Dbg_reloc_error		Dbg64_reloc_error
3181618Srie #define	Dbg_reloc_generate	Dbg64_reloc_generate
3191618Srie #define	Dbg_reloc_in		Dbg64_reloc_in
3201618Srie #define	Dbg_reloc_ors_entry	Dbg64_reloc_ors_entry
3211618Srie #define	Dbg_reloc_out		Dbg64_reloc_out
3221618Srie #define	Dbg_reloc_proc		Dbg64_reloc_proc
3231618Srie #define	Dbg_reloc_run		Dbg64_reloc_run
3241618Srie #define	Dbg_reloc_transition	Dbg64_reloc_transition
3252773Sab196087 #define	Dbg_reloc_sloppycomdat	Dbg64_reloc_sloppycomdat
3261618Srie 
3271618Srie #define	Dbg_sec_added		Dbg64_sec_added
3281618Srie #define	Dbg_sec_created		Dbg64_sec_created
3291618Srie #define	Dbg_sec_discarded	Dbg64_sec_discarded
3305892Sab196087 #define	Dbg_sec_genstr_compress	Dbg64_sec_genstr_compress
3311618Srie #define	Dbg_sec_group		Dbg64_sec_group
3327463SRod.Evans@Sun.COM #define	Dbg_sec_gnu_comdat	Dbg64_sec_gnu_comdat
3331618Srie #define	Dbg_sec_in		Dbg64_sec_in
3341618Srie #define	Dbg_sec_order_error	Dbg64_sec_order_error
3351618Srie #define	Dbg_sec_order_list	Dbg64_sec_order_list
3367463SRod.Evans@Sun.COM #define	Dbg_sec_redirected	Dbg64_sec_redirected
3371618Srie #define	Dbg_sec_strtab		Dbg64_sec_strtab
3385892Sab196087 #define	Dbg_sec_unsup_strmerge	Dbg64_sec_unsup_strmerge
3391618Srie 
3401618Srie #define	Dbg_seg_desc_entry	Dbg64_seg_desc_entry
3411618Srie #define	Dbg_seg_entry		Dbg64_seg_entry
3421618Srie #define	Dbg_seg_list		Dbg64_seg_list
3431618Srie #define	Dbg_seg_os		Dbg64_seg_os
3441618Srie #define	Dbg_seg_title		Dbg64_seg_title
3451618Srie 
3462647Srie #define	Dbg_shdr_modified	Dbg64_shdr_modified
3472647Srie 
3481618Srie #define	Dbg_statistics_ar	Dbg64_statistics_ar
3491618Srie #define	Dbg_statistics_ld	Dbg64_statistics_ld
3501618Srie 
3511618Srie #define	Dbg_support_action	Dbg64_support_action
3521618Srie #define	Dbg_support_load	Dbg64_support_load
3531618Srie #define	Dbg_support_req		Dbg64_support_req
3548324SAli.Bahrami@Sun.COM #define	Dbg_support_vnone	Dbg64_support_vnone
3551618Srie 
3561618Srie #define	Dbg_syminfo_entry	Dbg64_syminfo_entry
3571618Srie #define	Dbg_syminfo_title	Dbg64_syminfo_title
3581618Srie 
3591618Srie #define	Dbg_syms_ar_checking	Dbg64_syms_ar_checking
3601618Srie #define	Dbg_syms_ar_entry	Dbg64_syms_ar_entry
3611618Srie #define	Dbg_syms_ar_resolve	Dbg64_syms_ar_resolve
3621618Srie #define	Dbg_syms_ar_title	Dbg64_syms_ar_title
3631618Srie #define	Dbg_syms_created	Dbg64_syms_created
3641618Srie #define	Dbg_syms_discarded	Dbg64_syms_discarded
3651618Srie #define	Dbg_syms_dlsym		Dbg64_syms_dlsym
3667064Sab196087 #define	Dbg_syms_dup_discarded	Dbg64_syms_dup_discarded
3673492Sab196087 #define	Dbg_syms_dup_sort_addr	Dbg64_syms_dup_sort_addr
3681618Srie #define	Dbg_syms_entered	Dbg64_syms_entered
3691618Srie #define	Dbg_syms_entry		Dbg64_syms_entry
3701618Srie #define	Dbg_syms_global		Dbg64_syms_global
3711618Srie #define	Dbg_syms_ignore		Dbg64_syms_ignore
3724716Sab196087 #define	Dbg_syms_ignore_gnuver	Dbg64_syms_ignore_gnuver
3731618Srie #define	Dbg_syms_lazy_rescan	Dbg64_syms_lazy_rescan
3741618Srie #define	Dbg_syms_lookup		Dbg64_syms_lookup
3751618Srie #define	Dbg_syms_new		Dbg64_syms_new
3761618Srie #define	Dbg_syms_old		Dbg64_syms_old
3771618Srie #define	Dbg_syms_process	Dbg64_syms_process
3781618Srie #define	Dbg_syms_reduce		Dbg64_syms_reduce
3791618Srie #define	Dbg_syms_reloc		Dbg64_syms_reloc
3801618Srie #define	Dbg_syms_resolved	Dbg64_syms_resolved
3811618Srie #define	Dbg_syms_resolving	Dbg64_syms_resolving
3821618Srie #define	Dbg_syms_sec_entry	Dbg64_syms_sec_entry
3831618Srie #define	Dbg_syms_sec_title	Dbg64_syms_sec_title
3841618Srie #define	Dbg_syms_spec_title	Dbg64_syms_spec_title
3851618Srie #define	Dbg_syms_updated	Dbg64_syms_updated
3861618Srie #define	Dbg_syms_up_title	Dbg64_syms_up_title
3871618Srie 
3881618Srie #define	Dbg_util_call_array	Dbg64_util_call_array
3891618Srie #define	Dbg_util_call_fini	Dbg64_util_call_fini
3901618Srie #define	Dbg_util_call_init	Dbg64_util_call_init
3911618Srie #define	Dbg_util_call_main	Dbg64_util_call_main
3921618Srie #define	Dbg_util_collect	Dbg64_util_collect
3931618Srie #define	Dbg_util_dbnotify	Dbg64_util_dbnotify
3941618Srie #define	Dbg_util_edge_in	Dbg64_util_edge_in
3951618Srie #define	Dbg_util_edge_out	Dbg64_util_edge_out
3961618Srie #define	Dbg_util_intoolate	Dbg64_util_intoolate
3971824Srie #define	Dbg_util_lcinterface	Dbg64_util_lcinterface
3981618Srie #define	Dbg_util_nl		Dbg64_util_nl
3991618Srie #define	Dbg_util_no_init	Dbg64_util_no_init
4001618Srie #define	Dbg_util_scc_entry	Dbg64_util_scc_entry
4011618Srie #define	Dbg_util_scc_title	Dbg64_util_scc_title
4021618Srie #define	Dbg_util_str		Dbg64_util_str
4031618Srie 
4041618Srie #define	Dbg_unused_file		Dbg64_unused_file
4051824Srie #define	Dbg_unused_lcinterface	Dbg64_unused_lcinterface
4066387Srie #define	Dbg_unused_path		Dbg64_unused_path
4071618Srie #define	Dbg_unused_sec		Dbg64_unused_sec
4081618Srie #define	Dbg_unused_unref	Dbg64_unused_unref
4090Sstevel@tonic-gate 
4101618Srie #define	Dbg_ver_avail_entry	Dbg64_ver_avail_entry
4111618Srie #define	Dbg_ver_avail_title	Dbg64_ver_avail_title
4121618Srie #define	Dbg_ver_def_title	Dbg64_ver_def_title
4131618Srie #define	Dbg_ver_desc_entry	Dbg64_ver_desc_entry
4141618Srie #define	Dbg_ver_need_entry	Dbg64_ver_need_entry
4151618Srie #define	Dbg_ver_need_title	Dbg64_ver_need_title
4161618Srie #define	Dbg_ver_nointerface	Dbg64_ver_nointerface
4171618Srie #define	Dbg_ver_symbol		Dbg64_ver_symbol
4181618Srie 
4191618Srie #else
4201618Srie 
4211618Srie #define	Dbg_demangle_name	Dbg32_demangle_name
4221618Srie 
4231618Srie #define	Dbg_bind_global		Dbg32_bind_global
4241618Srie #define	Dbg_bind_plt_summary	Dbg32_bind_plt_summary
4255220Srie #define	Dbg_bind_reject		Dbg32_bind_reject
4261618Srie #define	Dbg_bind_weak		Dbg32_bind_weak
4271618Srie 
4281618Srie #define	Dbg_cap_val_hw1		Dbg32_cap_val_hw1
4291618Srie #define	Dbg_cap_hw_candidate	Dbg32_cap_hw_candidate
4301618Srie #define	Dbg_cap_hw_filter	Dbg32_cap_hw_filter
4311618Srie #define	Dbg_cap_mapfile		Dbg32_cap_mapfile
4321618Srie #define	Dbg_cap_sec_entry	Dbg32_cap_sec_entry
4331618Srie #define	Dbg_cap_sec_title	Dbg32_cap_sec_title
4341618Srie 
4351618Srie #define	Dbg_ent_entry		Dbg32_ent_entry
4361618Srie #define	Dbg_ent_print		Dbg32_ent_print
4371618Srie 
4381618Srie #define	Dbg_file_analyze	Dbg32_file_analyze
4391618Srie #define	Dbg_file_aout		Dbg32_file_aout
4401618Srie #define	Dbg_file_ar		Dbg32_file_ar
4411618Srie #define	Dbg_file_ar_rescan	Dbg32_file_ar_rescan
4421618Srie #define	Dbg_file_bind_entry	Dbg32_file_bind_entry
4431618Srie #define	Dbg_file_bindings	Dbg32_file_bindings
4443731Srie #define	Dbg_file_cleanup	Dbg32_file_cleanup
4451618Srie #define	Dbg_file_cntl		Dbg32_file_cntl
4461618Srie #define	Dbg_file_config_dis	Dbg32_file_config_dis
4471618Srie #define	Dbg_file_config_obj	Dbg32_file_config_obj
4481618Srie #define	Dbg_file_del_rescan	Dbg32_file_del_rescan
4491618Srie #define	Dbg_file_delete		Dbg32_file_delete
4501618Srie #define	Dbg_file_dlclose	Dbg32_file_dlclose
4511618Srie #define	Dbg_file_dldump		Dbg32_file_dldump
4521618Srie #define	Dbg_file_dlopen		Dbg32_file_dlopen
4531618Srie #define	Dbg_file_elf		Dbg32_file_elf
4541618Srie #define	Dbg_file_filtee		Dbg32_file_filtee
4551618Srie #define	Dbg_file_filter		Dbg32_file_filter
4561618Srie #define	Dbg_file_fixname	Dbg32_file_fixname
4571618Srie #define	Dbg_file_generic	Dbg32_file_generic
4581618Srie #define	Dbg_file_hdl_action	Dbg32_file_hdl_action
4591618Srie #define	Dbg_file_hdl_collect	Dbg32_file_hdl_collect
4601618Srie #define	Dbg_file_hdl_title	Dbg32_file_hdl_title
4611618Srie #define	Dbg_file_lazyload	Dbg32_file_lazyload
4621618Srie #define	Dbg_file_ldso		Dbg32_file_ldso
463*8598SRod.Evans@Sun.COM #define	Dbg_file_mmapobj	Dbg32_file_mmapobj
4641618Srie #define	Dbg_file_mode_promote	Dbg32_file_mode_promote
4652978Srie #define	Dbg_file_modified	Dbg32_file_modified
4661618Srie #define	Dbg_file_needed		Dbg32_file_needed
4671618Srie #define	Dbg_file_output		Dbg32_file_output
4681618Srie #define	Dbg_file_preload	Dbg32_file_preload
4691618Srie #define	Dbg_file_prot		Dbg32_file_prot
4701618Srie #define	Dbg_file_rejected	Dbg32_file_rejected
4711618Srie #define	Dbg_file_reuse		Dbg32_file_reuse
4721618Srie #define	Dbg_file_skip		Dbg32_file_skip
4731618Srie 
4741618Srie #define	Dbg_got_display		Dbg32_got_display
4751618Srie 
4761618Srie #define	Dbg_libs_audit		Dbg32_libs_audit
4771618Srie #define	Dbg_libs_find		Dbg32_libs_find
4781618Srie #define	Dbg_libs_found		Dbg32_libs_found
4797668SRod.Evans@Sun.COM #define	Dbg_libs_insecure	Dbg32_libs_insecure
4801618Srie #define	Dbg_libs_init		Dbg32_libs_init
4811618Srie #define	Dbg_libs_l		Dbg32_libs_l
4821618Srie #define	Dbg_libs_path		Dbg32_libs_path
4831618Srie #define	Dbg_libs_req		Dbg32_libs_req
4841618Srie #define	Dbg_libs_update		Dbg32_libs_update
4851618Srie #define	Dbg_libs_yp		Dbg32_libs_yp
4861618Srie #define	Dbg_libs_ylu		Dbg32_libs_ylu
4871618Srie 
4881618Srie #define	Dbg_map_dash		Dbg32_map_dash
4891618Srie #define	Dbg_map_ent		Dbg32_map_ent
4901618Srie #define	Dbg_map_parse		Dbg32_map_parse
4911618Srie #define	Dbg_map_pipe		Dbg32_map_pipe
4921618Srie #define	Dbg_map_seg		Dbg32_map_seg
4931618Srie #define	Dbg_map_set_atsign	Dbg32_map_set_atsign
4941618Srie #define	Dbg_map_set_equal	Dbg32_map_set_equal
4951618Srie #define	Dbg_map_size_new	Dbg32_map_size_new
4961618Srie #define	Dbg_map_size_old	Dbg32_map_size_old
4971618Srie #define	Dbg_map_sort_fini	Dbg32_map_sort_fini
4981618Srie #define	Dbg_map_sort_orig	Dbg32_map_sort_orig
4991618Srie #define	Dbg_map_symbol		Dbg32_map_symbol
5001618Srie #define	Dbg_map_version		Dbg32_map_version
5011618Srie 
5021618Srie #define	Dbg_move_adjexpandreloc	Dbg32_move_adjexpandreloc
5031618Srie #define	Dbg_move_adjmovereloc	Dbg32_move_adjmovereloc
504*8598SRod.Evans@Sun.COM #define	Dbg_move_bad		Dbg32_move_bad
5051618Srie #define	Dbg_move_data		Dbg32_move_data
5061618Srie #define	Dbg_move_entry1		Dbg32_move_entry1
5071618Srie #define	Dbg_move_entry2		Dbg32_move_entry2
5081618Srie #define	Dbg_move_expand		Dbg32_move_expand
5091618Srie #define	Dbg_move_input		Dbg32_move_input
5101618Srie #define	Dbg_move_outmove	Dbg32_move_outmove
5111618Srie #define	Dbg_move_outsctadj	Dbg32_move_outsctadj
5121618Srie #define	Dbg_move_parexpn	Dbg32_move_parexpn
5131618Srie 
5141618Srie #define	Dbg_reloc_apply_reg	Dbg32_reloc_apply_reg
5151618Srie #define	Dbg_reloc_apply_val	Dbg32_reloc_apply_val
5161618Srie #define	Dbg_reloc_ars_entry	Dbg32_reloc_ars_entry
5171618Srie #define	Dbg_reloc_copy		Dbg32_reloc_copy
5181618Srie #define	Dbg_reloc_discard	Dbg32_reloc_discard
5191618Srie #define	Dbg_reloc_doact		Dbg32_reloc_doact
5201618Srie #define	Dbg_reloc_doact_title	Dbg32_reloc_doact_title
5211618Srie #define	Dbg_reloc_dooutrel	Dbg32_reloc_dooutrel
5221618Srie #define	Dbg_reloc_entry		Dbg32_reloc_entry
5231618Srie #define	Dbg_reloc_error		Dbg32_reloc_error
5241618Srie #define	Dbg_reloc_generate	Dbg32_reloc_generate
5251618Srie #define	Dbg_reloc_in		Dbg32_reloc_in
5261618Srie #define	Dbg_reloc_ors_entry	Dbg32_reloc_ors_entry
5271618Srie #define	Dbg_reloc_out		Dbg32_reloc_out
5281618Srie #define	Dbg_reloc_proc		Dbg32_reloc_proc
5291618Srie #define	Dbg_reloc_run		Dbg32_reloc_run
5301618Srie #define	Dbg_reloc_transition	Dbg32_reloc_transition
5312773Sab196087 #define	Dbg_reloc_sloppycomdat	Dbg32_reloc_sloppycomdat
5321618Srie 
5331618Srie #define	Dbg_sec_added		Dbg32_sec_added
5341618Srie #define	Dbg_sec_created		Dbg32_sec_created
5351618Srie #define	Dbg_sec_discarded	Dbg32_sec_discarded
5365892Sab196087 #define	Dbg_sec_genstr_compress	Dbg32_sec_genstr_compress
5371618Srie #define	Dbg_sec_group		Dbg32_sec_group
5387463SRod.Evans@Sun.COM #define	Dbg_sec_gnu_comdat	Dbg32_sec_gnu_comdat
5391618Srie #define	Dbg_sec_in		Dbg32_sec_in
5401618Srie #define	Dbg_sec_order_error	Dbg32_sec_order_error
5411618Srie #define	Dbg_sec_order_list	Dbg32_sec_order_list
5427463SRod.Evans@Sun.COM #define	Dbg_sec_redirected	Dbg32_sec_redirected
5431618Srie #define	Dbg_sec_strtab		Dbg32_sec_strtab
5445892Sab196087 #define	Dbg_sec_unsup_strmerge	Dbg32_sec_unsup_strmerge
5451618Srie 
5461618Srie #define	Dbg_seg_desc_entry	Dbg32_seg_desc_entry
5471618Srie #define	Dbg_seg_entry		Dbg32_seg_entry
5481618Srie #define	Dbg_seg_list		Dbg32_seg_list
5491618Srie #define	Dbg_seg_os		Dbg32_seg_os
5501618Srie #define	Dbg_seg_title		Dbg32_seg_title
5511618Srie 
5522647Srie #define	Dbg_shdr_modified	Dbg32_shdr_modified
5532647Srie 
5541618Srie #define	Dbg_statistics_ar	Dbg32_statistics_ar
5551618Srie #define	Dbg_statistics_ld	Dbg32_statistics_ld
5561618Srie 
5571618Srie #define	Dbg_support_action	Dbg32_support_action
5581618Srie #define	Dbg_support_load	Dbg32_support_load
5591618Srie #define	Dbg_support_req		Dbg32_support_req
5608324SAli.Bahrami@Sun.COM #define	Dbg_support_vnone	Dbg32_support_vnone
5611618Srie 
5621618Srie #define	Dbg_syminfo_entry	Dbg32_syminfo_entry
5631618Srie #define	Dbg_syminfo_title	Dbg32_syminfo_title
5641618Srie 
5651618Srie #define	Dbg_syms_ar_checking	Dbg32_syms_ar_checking
5661618Srie #define	Dbg_syms_ar_entry	Dbg32_syms_ar_entry
5671618Srie #define	Dbg_syms_ar_resolve	Dbg32_syms_ar_resolve
5681618Srie #define	Dbg_syms_ar_title	Dbg32_syms_ar_title
5691618Srie #define	Dbg_syms_created	Dbg32_syms_created
5701618Srie #define	Dbg_syms_discarded	Dbg32_syms_discarded
5711618Srie #define	Dbg_syms_dlsym		Dbg32_syms_dlsym
5727064Sab196087 #define	Dbg_syms_dup_discarded	Dbg32_syms_dup_discarded
5733492Sab196087 #define	Dbg_syms_dup_sort_addr	Dbg32_syms_dup_sort_addr
5741618Srie #define	Dbg_syms_entered	Dbg32_syms_entered
5751618Srie #define	Dbg_syms_entry		Dbg32_syms_entry
5761618Srie #define	Dbg_syms_global		Dbg32_syms_global
5771618Srie #define	Dbg_syms_ignore		Dbg32_syms_ignore
5784716Sab196087 #define	Dbg_syms_ignore_gnuver	Dbg32_syms_ignore_gnuver
5791618Srie #define	Dbg_syms_lazy_rescan	Dbg32_syms_lazy_rescan
5801618Srie #define	Dbg_syms_lookup		Dbg32_syms_lookup
5811618Srie #define	Dbg_syms_lookup_aout	Dbg32_syms_lookup_aout
5821618Srie #define	Dbg_syms_new		Dbg32_syms_new
5831618Srie #define	Dbg_syms_old		Dbg32_syms_old
5841618Srie #define	Dbg_syms_process	Dbg32_syms_process
5851618Srie #define	Dbg_syms_reduce		Dbg32_syms_reduce
5861618Srie #define	Dbg_syms_reloc		Dbg32_syms_reloc
5871618Srie #define	Dbg_syms_resolved	Dbg32_syms_resolved
5881618Srie #define	Dbg_syms_resolving	Dbg32_syms_resolving
5891618Srie #define	Dbg_syms_sec_entry	Dbg32_syms_sec_entry
5901618Srie #define	Dbg_syms_sec_title	Dbg32_syms_sec_title
5911618Srie #define	Dbg_syms_spec_title	Dbg32_syms_spec_title
5921618Srie #define	Dbg_syms_updated	Dbg32_syms_updated
5931618Srie #define	Dbg_syms_up_title	Dbg32_syms_up_title
5941618Srie 
5951618Srie #define	Dbg_util_call_array	Dbg32_util_call_array
5961618Srie #define	Dbg_util_call_fini	Dbg32_util_call_fini
5971618Srie #define	Dbg_util_call_init	Dbg32_util_call_init
5981618Srie #define	Dbg_util_call_main	Dbg32_util_call_main
5991618Srie #define	Dbg_util_collect	Dbg32_util_collect
6001618Srie #define	Dbg_util_dbnotify	Dbg32_util_dbnotify
6011618Srie #define	Dbg_util_edge_in	Dbg32_util_edge_in
6021618Srie #define	Dbg_util_edge_out	Dbg32_util_edge_out
6031618Srie #define	Dbg_util_intoolate	Dbg32_util_intoolate
6041824Srie #define	Dbg_util_lcinterface	Dbg32_util_lcinterface
6051618Srie #define	Dbg_util_nl		Dbg32_util_nl
6061618Srie #define	Dbg_util_no_init	Dbg32_util_no_init
6071618Srie #define	Dbg_util_scc_entry	Dbg32_util_scc_entry
6081618Srie #define	Dbg_util_scc_title	Dbg32_util_scc_title
6091618Srie #define	Dbg_util_str		Dbg32_util_str
6101618Srie 
6111618Srie #define	Dbg_unused_file		Dbg32_unused_file
6121824Srie #define	Dbg_unused_lcinterface	Dbg32_unused_lcinterface
6136387Srie #define	Dbg_unused_path		Dbg32_unused_path
6141618Srie #define	Dbg_unused_sec		Dbg32_unused_sec
6151618Srie #define	Dbg_unused_unref	Dbg32_unused_unref
6161618Srie 
6171618Srie #define	Dbg_ver_avail_entry	Dbg32_ver_avail_entry
6181618Srie #define	Dbg_ver_avail_title	Dbg32_ver_avail_title
6191618Srie #define	Dbg_ver_def_title	Dbg32_ver_def_title
6201618Srie #define	Dbg_ver_desc_entry	Dbg32_ver_desc_entry
6211618Srie #define	Dbg_ver_need_entry	Dbg32_ver_need_entry
6221618Srie #define	Dbg_ver_need_title	Dbg32_ver_need_title
6231618Srie #define	Dbg_ver_nointerface	Dbg32_ver_nointerface
6241618Srie #define	Dbg_ver_symbol		Dbg32_ver_symbol
6251618Srie 
6260Sstevel@tonic-gate #endif
6270Sstevel@tonic-gate 
6280Sstevel@tonic-gate /*
6291618Srie  * External Dbg_*() interface routines.
6300Sstevel@tonic-gate  */
6311618Srie extern	void	Dbg_args_files(Lm_list *, int, char *);
6327636SRod.Evans@Sun.COM extern	void	Dbg_args_opts(Lm_list *, int, int, char *);
6337636SRod.Evans@Sun.COM extern	void	Dbg_args_str2chr(Lm_list *, int, const char *, int);
6347636SRod.Evans@Sun.COM extern	void	Dbg_args_Wldel(Lm_list *, int, const char *);
6354679Srie extern	void	Dbg_audit_ignore(Rt_map *);
6361618Srie extern	void	Dbg_audit_interface(Lm_list *, const char *, const char *);
6371618Srie extern	void	Dbg_audit_lib(Lm_list *, const char *);
6381618Srie extern	void	Dbg_audit_object(Lm_list *, const char *, const char *);
6391618Srie extern	void	Dbg_audit_symval(Lm_list *, const char *, const char *,
6401618Srie 		    const char *, Addr, Addr);
6413617Srie extern	void	Dbg_audit_skip(Lm_list *, const char *, const char *);
6424679Srie extern	void	Dbg_audit_terminate(Lm_list *, const char *);
6431618Srie extern	void	Dbg_audit_version(Lm_list *, const char *, ulong_t);
6441618Srie 
6451618Srie extern	void	Dbg_bind_global(Rt_map *, Addr, Off, Xword, Pltbindtype,
6461618Srie 		    Rt_map *, Addr, Off, const char *, uint_t);
6471618Srie extern	void	Dbg_bind_plt_summary(Lm_list *, Half, Word, Word, Word, Word,
6481618Srie 		    Word, Word);
6491618Srie #if	defined(_ELF64)
6501618Srie extern	void	Dbg_bind_pltpad_from(Rt_map *, Addr, const char *);
6511618Srie extern	void	Dbg_bind_pltpad_to(Rt_map *, Addr, const char *, const char *);
6521618Srie #endif
6535220Srie extern	void	Dbg_bind_reject(Rt_map *, Rt_map *, const char *, int);
6541618Srie extern	void	Dbg_bind_weak(Rt_map *, Addr, Addr, const char *);
6551618Srie 
6561618Srie extern	void	Dbg_cap_hw_candidate(Lm_list *, const char *);
6571618Srie extern	void	Dbg_cap_hw_filter(Lm_list *, const char *, Rt_map *);
6581618Srie extern	void	Dbg_cap_mapfile(Lm_list *, Xword, Xword, Half);
6591618Srie extern	void	Dbg_cap_sec_entry(Lm_list *, uint_t, Xword, Xword, Half);
6608501SRod.Evans@Sun.COM extern	void	Dbg_cap_sec_title(Lm_list *, const char *);
6611618Srie extern	void	Dbg_cap_val_hw1(Lm_list *, Xword, Half);
6621618Srie 
6631618Srie extern	const char *
6641618Srie 		Dbg_demangle_name(const char *);
6651618Srie 
6661618Srie extern	void	Dbg_ent_entry(Lm_list *, Half, Ent_desc *);
6671618Srie extern	void	Dbg_ent_print(Lm_list *, Half, List *, Boolean);
6681618Srie 
6691618Srie extern	void	Dbg_file_analyze(Rt_map *);
670*8598SRod.Evans@Sun.COM extern	void	Dbg_file_aout(Lm_list *, const char *, Addr, size_t,
671*8598SRod.Evans@Sun.COM 		    const char *, Aliste);
6721618Srie extern	void	Dbg_file_ar(Lm_list *, const char *, int);
6737983SAli.Bahrami@Sun.COM extern	void	Dbg_file_ar_rescan(Lm_list *, int, int);
6741618Srie extern	void	Dbg_file_bind_entry(Lm_list *, Bnd_desc *);
6751618Srie extern	void	Dbg_file_bindings(Rt_map *, int);
6763731Srie extern	void	Dbg_file_cleanup(Lm_list *, const char *, Aliste);
6771618Srie extern	void	Dbg_file_cntl(Lm_list *, Aliste, Aliste);
6781618Srie extern	void	Dbg_file_config_dis(Lm_list *, const char *, int);
6791618Srie extern	void	Dbg_file_config_obj(Lm_list *, const char *, const char *,
6801618Srie 		    const char *);
6811618Srie extern	void	Dbg_file_del_rescan(Lm_list *);
6821618Srie extern	void	Dbg_file_delete(Rt_map *);
6831618Srie extern	void	Dbg_file_dlclose(Lm_list *, const char *, int);
6841618Srie extern	void	Dbg_file_dldump(Rt_map *, const char *, int);
6856387Srie extern	void	Dbg_file_dlopen(Rt_map *, const char *, int *, int);
686*8598SRod.Evans@Sun.COM extern	void	Dbg_file_elf(Lm_list *, const char *, Addr, size_t,
687*8598SRod.Evans@Sun.COM 		    const char *, Aliste);
6881618Srie extern	void	Dbg_file_filtee(Lm_list *, const char *, const char *, int);
6891618Srie extern	void	Dbg_file_filter(Lm_list *, const char *, const char *, int);
6901618Srie extern	void	Dbg_file_fixname(Lm_list *, const char *, const char *);
6911618Srie extern	void	Dbg_file_generic(Lm_list *, Ifl_desc *);
6923731Srie extern	void	Dbg_file_hdl_action(Grp_hdl *, Rt_map *, int, uint_t);
6931618Srie extern	void	Dbg_file_hdl_collect(Grp_hdl *, const char *);
6941618Srie extern	void	Dbg_file_hdl_title(int);
6951618Srie extern	void	Dbg_file_lazyload(Rt_map *, const char *, const char *);
6961618Srie extern	void	Dbg_file_ldso(Rt_map *, char **, auxv_t *, const char *,
6971618Srie 		    Aliste);
698*8598SRod.Evans@Sun.COM extern	void	Dbg_file_mmapobj(Lm_list *, const char *, mmapobj_result_t *,
699*8598SRod.Evans@Sun.COM 		    uint_t);
7001618Srie extern	void	Dbg_file_mode_promote(Rt_map *, int);
7012978Srie extern	void	Dbg_file_modified(Lm_list *, const char *, const char *,
7022978Srie 		    const char *, int, int, Elf *, Elf *);
7031618Srie extern	void	Dbg_file_needed(Rt_map *, const char *);
7041618Srie extern	void	Dbg_file_output(Ofl_desc *);
7051618Srie extern	void	Dbg_file_preload(Lm_list *, const char *);
7061618Srie extern	void	Dbg_file_prot(Rt_map *, int);
7076206Sab196087 extern	void	Dbg_file_rejected(Lm_list *, Rej_desc *, Half mach);
7081618Srie extern	void	Dbg_file_reuse(Lm_list *, const char *, const char *);
7091618Srie extern	void	Dbg_file_skip(Lm_list *, const char *, const char *);
7101618Srie 
7116206Sab196087 extern	void	Dbg_got_display(Ofl_desc *, Off, int, Word, size_t);
7121618Srie 
7131618Srie extern	void	Dbg_libs_audit(Lm_list *, const char *, const char *);
7141618Srie extern	void	Dbg_libs_find(Lm_list *, const char *);
7151618Srie extern	void	Dbg_libs_found(Lm_list *, const char *, int);
7167668SRod.Evans@Sun.COM extern	void	Dbg_libs_insecure(Lm_list *, const char *, int);
7171618Srie extern	void	Dbg_libs_init(Lm_list *, List *, List *);
7181618Srie extern	void	Dbg_libs_l(Lm_list *, const char *, const char *);
7196387Srie extern	void	Dbg_libs_path(Lm_list *, const char *, uint_t, const char *);
7201618Srie extern	void	Dbg_libs_req(Lm_list *, const char *, const char *,
7211618Srie 		    const char *);
7221618Srie extern	void	Dbg_libs_update(Lm_list *, List *, List *);
7231618Srie extern	void	Dbg_libs_yp(Lm_list *, const char *);
7241618Srie extern	void	Dbg_libs_ylu(Lm_list *, const char *, const char *, int);
7251618Srie 
7261618Srie extern	void	Dbg_map_dash(Lm_list *, const char *, Sdf_desc *);
7271618Srie extern	void	Dbg_map_ent(Lm_list *, Boolean, Ent_desc *, Ofl_desc *);
7281618Srie extern	void	Dbg_map_parse(Lm_list *, const char *);
7291618Srie extern	void	Dbg_map_pipe(Lm_list *, Sg_desc *, const char *, const Word);
7301618Srie extern	void	Dbg_map_seg(Ofl_desc *, int, Sg_desc *);
7311618Srie extern	void	Dbg_map_set_atsign(Boolean);
7321618Srie extern	void	Dbg_map_set_equal(Boolean);
7331618Srie extern	void	Dbg_map_size_new(Lm_list *, const char *);
7341618Srie extern	void	Dbg_map_size_old(Ofl_desc *, Sym_desc *);
7351618Srie extern	void	Dbg_map_sort_fini(Lm_list *, Sg_desc *);
7361618Srie extern	void	Dbg_map_sort_orig(Lm_list *, Sg_desc *);
7371618Srie extern	void	Dbg_map_symbol(Ofl_desc *, Sym_desc *);
7381618Srie extern	void	Dbg_map_version(Lm_list *, const char *, const char *, int);
7391618Srie 
7401618Srie extern 	void	Dbg_move_adjexpandreloc(Lm_list *, Xword, const char *);
7411618Srie extern 	void	Dbg_move_adjmovereloc(Lm_list *, Xword, Xword, const char *);
742*8598SRod.Evans@Sun.COM extern	void	Dbg_move_bad(Lm_list *, ulong_t, const char *, Addr);
7431618Srie extern	void	Dbg_move_data(Rt_map *);
7441618Srie extern 	void	Dbg_move_entry1(Lm_list *, int, Move *, Sym_desc *);
7451618Srie extern 	void	Dbg_move_entry2(Lm_list *, Move *, Word, const char *);
7461618Srie extern 	void	Dbg_move_expand(Lm_list *, Move *, Addr);
7471618Srie extern 	void	Dbg_move_input(Lm_list *, const char *);
7481618Srie extern 	void	Dbg_move_outmove(Lm_list *, const char *);
7491618Srie extern 	void	Dbg_move_outsctadj(Lm_list *, Sym_desc *);
7501618Srie extern 	void	Dbg_move_parexpn(Lm_list *, const char *, const char *);
7511618Srie 
7521618Srie extern	void	Dbg_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
7531618Srie extern	void	Dbg_reloc_apply_val(Lm_list *, int, Xword, Xword);
7541618Srie extern	void	Dbg_reloc_ars_entry(Lm_list *, int, Word, Half, Rel_desc *);
7551618Srie extern	void	Dbg_reloc_copy(Rt_map *, Rt_map *, const char *, int);
7561618Srie extern	void	Dbg_reloc_discard(Lm_list *, Half, Rel_desc *);
7571618Srie extern	void	Dbg_reloc_doact(Lm_list *, int, Half, Word, Word, Xword, Xword,
7581618Srie 		    const char *, Os_desc *);
7591618Srie extern	void	Dbg_reloc_doact_title(Lm_list *);
7601618Srie extern	void	Dbg_reloc_dooutrel(Lm_list *, Word);
7611618Srie extern	void	Dbg_reloc_entry(Lm_list *, const char *, Half, Word, void *,
7621618Srie 		    const char *, const char *, const char *);
7631618Srie extern	void	Dbg_reloc_error(Lm_list *, int, Half, Word, void *,
7641618Srie 		    const char *);
7651618Srie extern	void	Dbg_reloc_generate(Lm_list *, Os_desc *, Word);
7661618Srie extern	void	Dbg_reloc_in(Lm_list *, int, Half, Word, void *, const char *,
7671618Srie 		    const char *);
7681618Srie extern	void	Dbg_reloc_ors_entry(Lm_list *, int, Word, Half, Rel_desc *);
7691618Srie extern	void	Dbg_reloc_out(Ofl_desc *, int, Word, void *, const char *,
7701618Srie 		    const char *);
7711618Srie extern	void	Dbg_reloc_proc(Lm_list *, Os_desc *, Is_desc *, Is_desc *);
7721618Srie extern	void	Dbg_reloc_run(Rt_map *, uint_t, int, int);
7733304Srie extern	void	Dbg_reloc_transition(Lm_list *, Half, Word, Rel_desc *);
7742773Sab196087 extern	void	Dbg_reloc_sloppycomdat(Lm_list *, const char *, Sym_desc *);
7751618Srie 
7761618Srie extern	void	Dbg_sec_added(Lm_list *, Os_desc *, Sg_desc *);
7771618Srie extern	void	Dbg_sec_created(Lm_list *, Os_desc *, Sg_desc *);
7781618Srie extern	void	Dbg_sec_discarded(Lm_list *, Is_desc *, Is_desc *);
7795892Sab196087 extern	void	Dbg_sec_genstr_compress(Lm_list *, const char *,
7805892Sab196087 		    Xword, Xword);
7811618Srie extern	void	Dbg_sec_group(Lm_list *, Is_desc *, Group_desc *);
7827463SRod.Evans@Sun.COM extern	void	Dbg_sec_gnu_comdat(Lm_list *, const char *, uint_t, uint_t);
7831618Srie extern	void	Dbg_sec_in(Lm_list *, Is_desc *);
7841618Srie extern	void	Dbg_sec_order_error(Lm_list *, Ifl_desc *, Word, int);
7851618Srie extern	void	Dbg_sec_order_list(Ofl_desc *, int);
7867463SRod.Evans@Sun.COM extern	void	Dbg_sec_redirected(Lm_list *, const char *, const char *);
7871618Srie extern	void	Dbg_sec_strtab(Lm_list *, Os_desc *, Str_tbl *);
7885892Sab196087 extern	void	Dbg_sec_unsup_strmerge(Lm_list *, Is_desc *);
7891618Srie 
7901618Srie extern	void	Dbg_seg_desc_entry(Lm_list *, Half, int, Sg_desc *);
7911618Srie extern	void	Dbg_seg_entry(Ofl_desc *, int, Sg_desc *);
7921618Srie extern	void	Dbg_seg_list(Lm_list *, Half, List *);
7931618Srie extern	void	Dbg_seg_os(Ofl_desc *, Os_desc *, int);
7941618Srie extern	void	Dbg_seg_title(Lm_list *);
7951618Srie 
7962978Srie extern	void	Dbg_shdr_modified(Lm_list *, const char *, Half, Shdr *, Shdr *,
7972647Srie 		    const char *);
7982647Srie 
7991618Srie extern	void	Dbg_statistics_ar(Ofl_desc *);
8001618Srie extern	void	Dbg_statistics_ld(Ofl_desc *);
8011618Srie 
8021618Srie extern	void	Dbg_support_action(Lm_list *, const char *, const char *,
8031618Srie 		    Support_ndx, const char *);
8041618Srie extern	void	Dbg_support_load(Lm_list *, const char *, const char *);
8051618Srie extern	void	Dbg_support_req(Lm_list *, const char *, int);
8068324SAli.Bahrami@Sun.COM extern	void	Dbg_support_vnone(Lm_list *, const char *);
8071618Srie 
8081618Srie extern	void	Dbg_syminfo_entry(Lm_list *, Word, Syminfo *, Sym *,
8091618Srie 		    const char *, Dyn *);
8101618Srie extern	void	Dbg_syminfo_title(Lm_list *);
8111618Srie 
8121618Srie extern	void	Dbg_syms_ar_checking(Lm_list *, Xword, Elf_Arsym *,
8131618Srie 		    const char *);
8141618Srie extern	void	Dbg_syms_ar_entry(Lm_list *, Xword, Elf_Arsym *);
8151618Srie extern	void	Dbg_syms_ar_resolve(Lm_list *, Xword, Elf_Arsym *,
8161618Srie 		    const char *, int);
8171618Srie extern	void	Dbg_syms_ar_title(Lm_list *, const char *, int);
8181618Srie extern	void	Dbg_syms_created(Lm_list *, const char *);
8195549Srie extern	void	Dbg_syms_discarded(Lm_list *, Sym_desc *);
8206387Srie extern	void	Dbg_syms_dlsym(Rt_map *, const char *, int *, const char *,
8216387Srie 		    int);
8227064Sab196087 extern	void	Dbg_syms_dup_discarded(Lm_list *, Word ndx, Sym_desc *);
8233492Sab196087 extern	void	Dbg_syms_dup_sort_addr(Lm_list *, const char *, const char *,
8243492Sab196087 		    const char *, Addr);
8251618Srie extern	void	Dbg_syms_entered(Ofl_desc *, Sym *, Sym_desc *);
8261618Srie extern	void	Dbg_syms_entry(Lm_list *, Word, Sym_desc *);
8271618Srie extern	void	Dbg_syms_global(Lm_list *, Word, const char *);
8281618Srie extern	void	Dbg_syms_ignore(Ofl_desc *, Sym_desc *);
8294716Sab196087 extern	void	Dbg_syms_ignore_gnuver(Rt_map *, const char *, Word, Versym);
8301618Srie extern	void	Dbg_syms_lazy_rescan(Lm_list *, const char *);
8311618Srie extern	void	Dbg_syms_lookup(Rt_map *, const char *, const char *);
8321618Srie #if	!(defined(_ELF64))
8331618Srie extern	void	Dbg_syms_lookup_aout(Lm_list *, const char *);
8341618Srie #endif
8351618Srie extern	void	Dbg_syms_new(Ofl_desc *, Sym *, Sym_desc *);
8361618Srie extern	void	Dbg_syms_old(Ofl_desc *, Sym_desc *);
8371618Srie extern	void	Dbg_syms_process(Lm_list *, Ifl_desc *);
8381618Srie extern	void	Dbg_syms_reduce(Ofl_desc *, int, Sym_desc *, int,
8391618Srie 		    const char *);
8401618Srie extern	void	Dbg_syms_reloc(Ofl_desc *, Sym_desc *);
8411618Srie extern	void	Dbg_syms_resolved(Ofl_desc *, Sym_desc *);
8421618Srie extern	void	Dbg_syms_resolving(Ofl_desc *, Word, const char *, int, int,
8431618Srie 		    Sym *, Sym *, Sym_desc *, Ifl_desc *);
8441618Srie extern	void	Dbg_syms_sec_entry(Lm_list *, Word, Sg_desc *, Os_desc *);
8451618Srie extern	void	Dbg_syms_sec_title(Lm_list *);
8461618Srie extern	void	Dbg_syms_spec_title(Lm_list *);
8471618Srie extern	void	Dbg_syms_updated(Ofl_desc *, Sym_desc *, const char *);
8481618Srie extern	void	Dbg_syms_up_title(Lm_list *);
8491618Srie 
8501618Srie extern	void	Dbg_tls_modactivity(Lm_list *, void *, uint_t);
8512145Srie extern	void	Dbg_tls_static_block(Lm_list *, void *, ulong_t, ulong_t);
8522145Srie extern	void	Dbg_tls_static_resv(Rt_map *, ulong_t, ulong_t);
8531618Srie 
8541618Srie extern	void	Dbg_util_call_array(Rt_map *, void *, int, Word);
8551618Srie extern	void	Dbg_util_call_fini(Rt_map *);
8561618Srie extern	void	Dbg_util_call_init(Rt_map *, int);
8571618Srie extern	void	Dbg_util_call_main(Rt_map *);
8581618Srie extern	void	Dbg_util_collect(Rt_map *, int, int);
8591618Srie extern	void	Dbg_util_dbnotify(Lm_list *, rd_event_e, r_state_e);
8601618Srie extern	void	Dbg_util_edge_in(Lm_list *, Rt_map *, uint_t, Rt_map *,
8611618Srie 		    int, int);
8621618Srie extern	void	Dbg_util_edge_out(Rt_map *, Rt_map *);
8631618Srie extern	void	Dbg_util_intoolate(Rt_map *);
8641824Srie extern	void	Dbg_util_lcinterface(Rt_map *, int, char *);
8651618Srie extern	void	Dbg_util_nl(Lm_list *, int);
8661618Srie extern	void	Dbg_util_no_init(Rt_map *);
8671618Srie extern	void	Dbg_util_str(Lm_list *, const char *);
8681618Srie extern	void	Dbg_util_scc_entry(Rt_map *, uint_t);
8691618Srie extern	void	Dbg_util_scc_title(Lm_list *, int);
8701618Srie 
8711618Srie extern	void	Dbg_unused_file(Lm_list *, const char *, int, uint_t);
8721824Srie extern	void	Dbg_unused_lcinterface(Rt_map *, Rt_map *, int);
8736387Srie extern	void	Dbg_unused_path(Lm_list *, const char *, uint_t, uint_t,
8746387Srie 		    const char *);
8751618Srie extern	void	Dbg_unused_sec(Lm_list *, Is_desc *);
8761618Srie extern	void	Dbg_unused_unref(Rt_map *, const char *);
8771618Srie 
8781618Srie extern	void	Dbg_ver_avail_entry(Lm_list *, Ver_index *, const char *);
8791618Srie extern	void	Dbg_ver_avail_title(Lm_list *, const char *);
8801618Srie extern	void	Dbg_ver_def_title(Lm_list *, const char *);
8811618Srie extern	void	Dbg_ver_desc_entry(Lm_list *, Ver_desc *);
8821618Srie extern	void	Dbg_ver_need_entry(Lm_list *, Half, const char *,
8831618Srie 		    const char *);
8841618Srie extern	void	Dbg_ver_need_title(Lm_list *, const char *);
8851618Srie extern	void	Dbg_ver_nointerface(Lm_list *, const char *);
8861618Srie extern	void	Dbg_ver_symbol(Lm_list *, const char *);
8870Sstevel@tonic-gate 
8880Sstevel@tonic-gate /*
8891618Srie  * Define Elf_*() interface flags.
8901618Srie  */
8911618Srie #define	ELF_DBG_ELFDUMP		1
8921618Srie #define	ELF_DBG_RTLD		2
8931618Srie #define	ELF_DBG_LD		3
8941618Srie 
8951618Srie /*
8961618Srie  * Define generic Elf_*() interfaces.
8971618Srie  */
8981618Srie extern	void Elf_syminfo_entry(Lm_list *, Word, Syminfo *, const char *,
8991618Srie 	    const char *);
9001618Srie extern	void Elf_syminfo_title(Lm_list *);
9011618Srie 
9021618Srie /*
9031618Srie  * Establish ELF32 and ELF64 class Elf_*() interfaces.
9040Sstevel@tonic-gate  */
9051618Srie #if	defined(_ELF64)
9061618Srie 
9071618Srie #define	Elf_cap_entry		Elf64_cap_entry
9081618Srie #define	Elf_cap_title		Elf64_cap_title
9091618Srie 
9101618Srie #define	Elf_demangle_name	Elf64_demangle_name
9111618Srie #define	Elf_dyn_entry		Elf64_dyn_entry
9123850Sab196087 #define	Elf_dyn_null_entry	Elf64_dyn_null_entry
9131618Srie #define	Elf_dyn_title		Elf64_dyn_title
9141618Srie 
9151618Srie #define	Elf_ehdr		Elf64_ehdr
9161618Srie 
9171618Srie #define	Elf_got_entry		Elf64_got_entry
9181618Srie #define	Elf_got_title		Elf64_got_title
9191618Srie 
9201618Srie #define	Elf_reloc_apply_reg	Elf64_reloc_apply_reg
9211618Srie #define	Elf_reloc_apply_val	Elf64_reloc_apply_val
9221618Srie #define	Elf_reloc_entry_1	Elf64_reloc_entry_1
9231618Srie #define	Elf_reloc_entry_2	Elf64_reloc_entry_2
9241618Srie #define	Elf_reloc_title		Elf64_reloc_title
9251618Srie 
9261618Srie #define	Elf_phdr		Elf64_phdr
9271618Srie 
9281618Srie #define	Elf_shdr		Elf64_shdr
9291618Srie 
9301618Srie #define	Elf_syms_table_entry	Elf64_syms_table_entry
9311618Srie #define	Elf_syms_table_title	Elf64_syms_table_title
9321618Srie 
9331618Srie #define	Elf_ver_def_title	Elf64_ver_def_title
9341618Srie #define	Elf_ver_line_1		Elf64_ver_line_1
9351618Srie #define	Elf_ver_line_2		Elf64_ver_line_2
9361618Srie #define	Elf_ver_line_3		Elf64_ver_line_3
9371618Srie #define	Elf_ver_line_4		Elf64_ver_line_4
9381618Srie #define	Elf_ver_line_5		Elf64_ver_line_5
9391618Srie #define	Elf_ver_need_title	Elf64_ver_need_title
9401618Srie 
9411618Srie #else
9421618Srie 
9431618Srie #define	Elf_cap_entry		Elf32_cap_entry
9441618Srie #define	Elf_cap_title		Elf32_cap_title
9451618Srie 
9461618Srie #define	Elf_demangle_name	Elf32_demangle_name
9471618Srie #define	Elf_dyn_entry		Elf32_dyn_entry
9483850Sab196087 #define	Elf_dyn_null_entry	Elf32_dyn_null_entry
9491618Srie #define	Elf_dyn_title		Elf32_dyn_title
9501618Srie 
9511618Srie #define	Elf_ehdr		Elf32_ehdr
9520Sstevel@tonic-gate 
9531618Srie #define	Elf_got_entry		Elf32_got_entry
9541618Srie #define	Elf_got_title		Elf32_got_title
9551618Srie 
9561618Srie #define	Elf_reloc_apply_reg	Elf32_reloc_apply_reg
9571618Srie #define	Elf_reloc_apply_val	Elf32_reloc_apply_val
9581618Srie #define	Elf_reloc_entry_1	Elf32_reloc_entry_1
9591618Srie #define	Elf_reloc_entry_2	Elf32_reloc_entry_2
9601618Srie #define	Elf_reloc_title		Elf32_reloc_title
9611618Srie 
9621618Srie #define	Elf_phdr		Elf32_phdr
9631618Srie 
9641618Srie #define	Elf_shdr		Elf32_shdr
9651618Srie 
9661618Srie #define	Elf_syms_table_entry	Elf32_syms_table_entry
9671618Srie #define	Elf_syms_table_title	Elf32_syms_table_title
9681618Srie 
9691618Srie #define	Elf_ver_def_title	Elf32_ver_def_title
9701618Srie #define	Elf_ver_line_1		Elf32_ver_line_1
9711618Srie #define	Elf_ver_line_2		Elf32_ver_line_2
9721618Srie #define	Elf_ver_line_3		Elf32_ver_line_3
9731618Srie #define	Elf_ver_line_4		Elf32_ver_line_4
9741618Srie #define	Elf_ver_line_5		Elf32_ver_line_5
9751618Srie #define	Elf_ver_need_title	Elf32_ver_need_title
9761618Srie 
9771618Srie #endif
9781618Srie 
9791618Srie extern	void	Elf_cap_entry(Lm_list *, Cap *, int, Half);
9801618Srie extern	void	Elf_cap_title(Lm_list *);
9810Sstevel@tonic-gate 
9821618Srie extern	const char \
9831618Srie 		*Elf_demangle_name(const char *);
9841618Srie extern	void	Elf_dyn_entry(Lm_list *, Dyn *, int, const char *, Half);
9853850Sab196087 extern	void	Elf_dyn_null_entry(Lm_list *, Dyn *, int, int);
9861618Srie extern	void	Elf_dyn_title(Lm_list *);
9871618Srie 
9881618Srie extern	void	Elf_ehdr(Lm_list *, Ehdr *, Shdr *);
9891618Srie 
9906206Sab196087 extern	void	Elf_got_entry(Lm_list *, Sword, Addr, Xword, Half,
9916206Sab196087 		    uchar_t, uchar_t, Word, void *, const char *);
9921618Srie extern	void	Elf_got_title(Lm_list *);
9931618Srie 
9941618Srie extern	void	Elf_phdr(Lm_list *, Half, Phdr *);
9951618Srie 
9961618Srie extern	void	Elf_reloc_apply_val(Lm_list *, int, Xword, Xword);
9971618Srie extern	void	Elf_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
9981618Srie extern	void	Elf_reloc_entry_1(Lm_list *, int, const char *, Half, Word,
9991618Srie 		    void *, const char *, const char *, const char *);
10001618Srie extern	void	Elf_reloc_entry_2(Lm_list *, int, const char *, Word,
10011618Srie 		    const char *, Off, Sxword, const char *, const char *,
10021618Srie 		    const char *);
10031618Srie extern	void	Elf_reloc_title(Lm_list *, int, Word);
10041618Srie 
10051618Srie extern	void	Elf_shdr(Lm_list *, Half, Shdr *);
10061618Srie 
10071618Srie extern	void	Elf_syms_table_entry(Lm_list *, int, const char *, Half, Sym *,
10084716Sab196087 		    Versym, int, const char *, const char *);
10091618Srie extern	void	Elf_syms_table_title(Lm_list *, int);
10101618Srie 
10111618Srie extern	void	Elf_ver_def_title(Lm_list *);
10121618Srie extern	void	Elf_ver_line_1(Lm_list *, const char *, const char *,
10131618Srie 		    const char *, const char *);
10141618Srie extern	void	Elf_ver_line_2(Lm_list *, const char *, const char *);
10151618Srie extern	void	Elf_ver_line_3(Lm_list *, const char *, const char *,
10161618Srie 		    const char *);
10171618Srie extern	void	Elf_ver_line_4(Lm_list *, const char *);
10181618Srie extern	void	Elf_ver_line_5(Lm_list *, const char *, const char *);
10194716Sab196087 extern	void	Elf_ver_need_title(Lm_list *, int);
10200Sstevel@tonic-gate 
10213850Sab196087 
10220Sstevel@tonic-gate #ifdef	__cplusplus
10230Sstevel@tonic-gate }
10240Sstevel@tonic-gate #endif
10250Sstevel@tonic-gate 
10260Sstevel@tonic-gate #endif /* _DEBUG_H */
1027