xref: /onnv-gate/usr/src/cmd/sgs/include/debug.h (revision 12254:ff5bb54e2a40)
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 /*
2312155SAli.Bahrami@Sun.COM  * Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
240Sstevel@tonic-gate  */
250Sstevel@tonic-gate 
260Sstevel@tonic-gate #ifndef	_DEBUG_H
270Sstevel@tonic-gate #define	_DEBUG_H
280Sstevel@tonic-gate 
290Sstevel@tonic-gate /*
301618Srie  * Global include file for lddbg debugging.
310Sstevel@tonic-gate  *
321618Srie  * ld(1) and ld.so.1(1) carry out all diagnostic debugging calls via lazy
331618Srie  * loading the library liblddbg.so.  Thus debugging is always enabled.  The
341618Srie  * utility elfdump(1) is explicitly dependent upon this library.  There are two
350Sstevel@tonic-gate  * categories of routines defined in this library:
360Sstevel@tonic-gate  *
370Sstevel@tonic-gate  *  o	Debugging routines that have specific linker knowledge, and test the
380Sstevel@tonic-gate  *	class of debugging allowable before proceeding, start with the `Dbg_'
390Sstevel@tonic-gate  *	prefix.
400Sstevel@tonic-gate  *
410Sstevel@tonic-gate  *  o	Lower level routines that provide generic ELF structure interpretation
420Sstevel@tonic-gate  *	start with the `Elf_' prefix.  These latter routines are the only
431618Srie  *	routines used by the elfdump(1) utility.
440Sstevel@tonic-gate  */
459577SRod.Evans@Sun.COM #include <sys/times.h>
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 /*
569615SAli.Bahrami@Sun.COM  * Define Dbg_*() interface values.  These values direct the debugging routine
579615SAli.Bahrami@Sun.COM  * to 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
8712029SRod.Evans@Sun.COM #define	DBG_DLSYM_NUM		DBG_DLSYM_SINGLETON + 1
880Sstevel@tonic-gate 
890Sstevel@tonic-gate #define	DBG_DLCLOSE_NULL	0
900Sstevel@tonic-gate #define	DBG_DLCLOSE_IGNORE	1
910Sstevel@tonic-gate #define	DBG_DLCLOSE_RESCAN	2
920Sstevel@tonic-gate 
930Sstevel@tonic-gate #define	DBG_SYM_REDUCE_GLOBAL	1	/* reporting global symbols to local */
940Sstevel@tonic-gate #define	DBG_SYM_REDUCE_RETAIN	2	/* reporting non reduced local syms */
950Sstevel@tonic-gate 
965067Srie /*
975067Srie  * Group handle operations - passed to Dbg_file_hdl_title().  Indicate why
985067Srie  * handle dependencies are being manipulated.
995067Srie  */
1005067Srie #define	DBG_HDL_CREATE		0	/* handle creation */
1015067Srie #define	DBG_HDL_ADD		1	/* addition to existing handle */
1025067Srie #define	DBG_HDL_DELETE		2	/* deletion from a handle */
1035067Srie #define	DBG_HDL_ORPHAN		3	/* handle being moved to orphan list */
1045067Srie #define	DBG_HDL_REINST		4	/* handle reinstated from orphan list */
1055067Srie 
1065067Srie /*
1075067Srie  * Group handle dependency operations - passed to Dbg_file_hdl_action().
1086150Srie  * Identify the dependencies that are associated with a handle.
1095067Srie  */
1105067Srie #define	DBG_DEP_ADD		0	/* dependency added */
1115067Srie #define	DBG_DEP_UPDATE		1	/* dependency updated */
1125067Srie #define	DBG_DEP_DELETE		2	/* dependency deleted */
1135067Srie #define	DBG_DEP_REMOVE		3	/* dependency removed from handle */
1145067Srie #define	DBG_DEP_REMAIN		4	/* dependency must remain on handle */
1155067Srie #define	DBG_DEP_ORPHAN		5	/* dependency must remain an orphan */
1165067Srie #define	DBG_DEP_REINST		6	/* dependency reinstated from orphan */
1170Sstevel@tonic-gate 
1186150Srie /*
1196150Srie  * Binding information, indicating the result of a symbol binding.  Can also
1206150Srie  * indicate the reference as being EXTERN or PARENT.  Binding information is
1216150Srie  * used to augment diagnostic binding information (which in turn can be used by
1226150Srie  * lari(1)), and to enable ldd(1) -p processing.
1236150Srie  */
1240Sstevel@tonic-gate #define	DBG_BINFO_FOUND		0x0001	/* information regarding binding */
1250Sstevel@tonic-gate #define	DBG_BINFO_DIRECT	0x0002	/* bound directly */
1260Sstevel@tonic-gate #define	DBG_BINFO_COPYREF	0x0004	/* bound to copy relocated reference */
1270Sstevel@tonic-gate #define	DBG_BINFO_FILTEE	0x0008	/* bound to filtee */
1280Sstevel@tonic-gate #define	DBG_BINFO_INTERPOSE	0x0010	/* bound to an identified interposer */
1290Sstevel@tonic-gate #define	DBG_BINFO_PLTADDR	0x0020	/* bound to executables undefined plt */
1306150Srie #define	DBG_BINFO_MSK		0x0fff
1316150Srie 
1326150Srie #define	DBG_BINFO_REF_EXTERN	0x1000	/* reference to EXTERN */
1336150Srie #define	DBG_BINFO_REF_PARENT	0x2000	/* reference to PARENT */
1346150Srie #define	DBG_BINFO_REF_MSK	0xf000
1356150Srie 
13611827SRod.Evans@Sun.COM /*
13711827SRod.Evans@Sun.COM  * ld.so.1(1) symbol capabilities processing.
13811827SRod.Evans@Sun.COM  */
13911827SRod.Evans@Sun.COM #define	DBG_CAP_DEFAULT		0
14011827SRod.Evans@Sun.COM #define	DBG_CAP_USED		1
14111827SRod.Evans@Sun.COM #define	DBG_CAP_CANDIDATE	2
14211827SRod.Evans@Sun.COM #define	DBG_CAP_REJECTED	3
14311827SRod.Evans@Sun.COM #define	DBG_CAP_HW_1		4
14411827SRod.Evans@Sun.COM #define	DBG_CAP_SF_1		5
14511827SRod.Evans@Sun.COM #define	DBG_CAP_HW_2		6
14611827SRod.Evans@Sun.COM #define	DBG_CAP_PLAT		7
14711827SRod.Evans@Sun.COM #define	DBG_CAP_MACH		8
1480Sstevel@tonic-gate 
1490Sstevel@tonic-gate #define	DBG_REL_START		1
1500Sstevel@tonic-gate #define	DBG_REL_FINISH		2
1510Sstevel@tonic-gate #define	DBG_REL_NONE		3
1520Sstevel@tonic-gate 
1531618Srie #define	DBG_NL_STD		0	/* newline controllers - standard and */
1541618Srie #define	DBG_NL_FRC		2	/*    forced. */
1550Sstevel@tonic-gate 
1568388SRod.Evans@Sun.COM #define	DBG_BNDREJ_DIRECT	0	/* bind rejected, direct to nodirect */
1578388SRod.Evans@Sun.COM #define	DBG_BNDREJ_GROUP	1	/* bind rejected, group to nodirect */
1588388SRod.Evans@Sun.COM #define	DBG_BNDREJ_SINGLE	2	/* bind rejected, singleton without */
1595220Srie 					/*    default search model */
1605220Srie #define	DBG_BNDREJ_NUM		DBG_BNDREJ_SINGLE
1615220Srie 
1620Sstevel@tonic-gate /*
16311734SAli.Bahrami@Sun.COM  * Dbg_state_str() is used to obtain commonly used "state transition"
16411734SAli.Bahrami@Sun.COM  * strings used in various debugging output.
16511734SAli.Bahrami@Sun.COM  */
16611734SAli.Bahrami@Sun.COM #define	DBG_STATE_ADD		0	/* add */
16711734SAli.Bahrami@Sun.COM #define	DBG_STATE_CURRENT	1	/* current */
16811734SAli.Bahrami@Sun.COM #define	DBG_STATE_EXCLUDE	2	/* exclude */
16911734SAli.Bahrami@Sun.COM #define	DBG_STATE_IGNORED	3	/* ignored */
17011734SAli.Bahrami@Sun.COM #define	DBG_STATE_MOD_BEFORE	4	/* modify (before) */
17111734SAli.Bahrami@Sun.COM #define	DBG_STATE_MOD_AFTER	5	/* modify (after) */
17211734SAli.Bahrami@Sun.COM #define	DBG_STATE_NEW 		6	/* new */
17311734SAli.Bahrami@Sun.COM #define	DBG_STATE_NEW_IMPLICIT	7	/* new (implicit) */
17411827SRod.Evans@Sun.COM #define	DBG_STATE_RESET		8	/* reset */
17511827SRod.Evans@Sun.COM #define	DBG_STATE_ORIGINAL	9	/* original */
17611734SAli.Bahrami@Sun.COM #define	DBG_STATE_RESOLVED	10	/* resolved */
17711734SAli.Bahrami@Sun.COM 
17811734SAli.Bahrami@Sun.COM #define	DBG_STATE_NUM		11
17911734SAli.Bahrami@Sun.COM typedef uint_t dbg_state_t;
18011734SAli.Bahrami@Sun.COM extern	const char *Dbg_state_str(dbg_state_t);
18111734SAli.Bahrami@Sun.COM 
18211734SAli.Bahrami@Sun.COM /*
1831618Srie  * Define a debug descriptor, and a user macro that inspects the descriptor as
1841618Srie  * a means of triggering a class of diagnostic output.
1850Sstevel@tonic-gate  */
1861618Srie typedef struct {
1871618Srie 	uint_t		d_class;	/* debugging classes */
1889406SAli.Bahrami@Sun.COM 	uint_t		d_extra;	/* extra public information */
1899406SAli.Bahrami@Sun.COM 	APlist		*d_list;	/* accepted link-map list names */
1909577SRod.Evans@Sun.COM 	struct timeval	d_totaltime;	/* total time since entry - */
1919577SRod.Evans@Sun.COM 					/*	gettimeofday(3c) */
1929577SRod.Evans@Sun.COM 	struct timeval	d_deltatime;	/* delta time since last diagnostic - */
1939577SRod.Evans@Sun.COM 					/*	gettimeofday(3c) */
1941618Srie } Dbg_desc;
1950Sstevel@tonic-gate 
1961618Srie extern	Dbg_desc	*dbg_desc;
1971618Srie 
19811734SAli.Bahrami@Sun.COM /*
19911734SAli.Bahrami@Sun.COM  * Macros used to avoid calls to liblddbg unless debugging is enabled.
20011734SAli.Bahrami@Sun.COM  * liblddbg is lazy loaded --- this prevents it from happening unless
20111734SAli.Bahrami@Sun.COM  * it will actually be used.
20211734SAli.Bahrami@Sun.COM  */
2031618Srie #define	DBG_ENABLED	(dbg_desc->d_class)
2041618Srie #define	DBG_CALL(func)	if (DBG_ENABLED) func
2050Sstevel@tonic-gate 
2060Sstevel@tonic-gate /*
2070Sstevel@tonic-gate  * Most debugging tokens are interpreted within liblddbg, and thus any flags
2081618Srie  * within d_class are only meaningful to this library.  The following flags
2091618Srie  * extend the d_class diagnostic, and are maintained in d_extra.  These flags
2101618Srie  * may be interpreted by the debugging library itself or from the callers
2111618Srie  * dbg_print() routine.
2120Sstevel@tonic-gate  */
2139406SAli.Bahrami@Sun.COM #define	DBG_E_DETAIL	0x00000001	/* add detail to a class */
2149406SAli.Bahrami@Sun.COM #define	DBG_E_LONG	0x00000002	/* use long names (ie. no truncation) */
2159406SAli.Bahrami@Sun.COM #define	DBG_E_DEMANGLE	0x00000004	/* demangle symbol names */
2169406SAli.Bahrami@Sun.COM #define	DBG_E_STDNL	0x00000008	/* standard newline indicator */
2179406SAli.Bahrami@Sun.COM #define	DBG_E_HELP	0x00000010	/* help requested */
2189406SAli.Bahrami@Sun.COM #define	DBG_E_HELP_EXIT	0x00000020	/* hint: user should exit after help */
2199577SRod.Evans@Sun.COM #define	DBG_E_TTIME	0x00000040	/* prepend total time */
2209577SRod.Evans@Sun.COM #define	DBG_E_DTIME	0x00000080	/* prepend delta time */
2219577SRod.Evans@Sun.COM #define	DBG_E_RESET	0x00000100	/* reset times */
2221618Srie 
2239406SAli.Bahrami@Sun.COM /* ld only */
2249406SAli.Bahrami@Sun.COM #define	DBG_E_SNAME	0x00001000	/* prepend simple name */
2259406SAli.Bahrami@Sun.COM #define	DBG_E_FNAME	0x00002000	/* prepend full name */
2269406SAli.Bahrami@Sun.COM #define	DBG_E_CLASS	0x00004000	/* prepend ELF class */
2279406SAli.Bahrami@Sun.COM 
2289406SAli.Bahrami@Sun.COM /* ld.so.1 only */
2299406SAli.Bahrami@Sun.COM #define	DBG_E_LMID	0x00100000	/* prepend link-map id */
2309406SAli.Bahrami@Sun.COM #define	DBG_E_LMID_LDSO	0x00200000	/* show ldso link-map list */
2319406SAli.Bahrami@Sun.COM #define	DBG_E_LMID_ALL	0x00400000	/* show all non-ldso link-map lists */
2329406SAli.Bahrami@Sun.COM #define	DBG_E_LMID_ALT	0x00800000	/* show all ALT link-map lists */
2339406SAli.Bahrami@Sun.COM #define	DBG_E_LMID_BASE	0x01000000	/* show BASE link-map list */
2349406SAli.Bahrami@Sun.COM 
2351618Srie 
2361618Srie #define	DBG_NOTDETAIL()	!(dbg_desc->d_extra & DBG_E_DETAIL)
2371618Srie #define	DBG_NOTLONG()	!(dbg_desc->d_extra & DBG_E_LONG)
2381618Srie 
2399577SRod.Evans@Sun.COM #define	DBG_ISDEMANGLE() \
2409577SRod.Evans@Sun.COM 			(dbg_desc->d_extra & DBG_E_DEMANGLE)
2419577SRod.Evans@Sun.COM 
2429577SRod.Evans@Sun.COM #define	DBG_TOTALTIME	(dbg_desc->d_totaltime)
2439577SRod.Evans@Sun.COM #define	DBG_DELTATIME	(dbg_desc->d_deltatime)
2449577SRod.Evans@Sun.COM 
2459577SRod.Evans@Sun.COM #define	DBG_ISTTIME()	(dbg_desc->d_extra & DBG_E_TTIME)
2469577SRod.Evans@Sun.COM #define	DBG_ISDTIME()	(dbg_desc->d_extra & DBG_E_DTIME)
2479577SRod.Evans@Sun.COM #define	DBG_ISTIME()	(dbg_desc->d_extra & (DBG_E_TTIME | DBG_E_DTIME))
2489577SRod.Evans@Sun.COM #define	DBG_NOTTIME()	!(dbg_desc->d_extra & (DBG_E_TTIME | DBG_E_DTIME))
2499577SRod.Evans@Sun.COM 
2509577SRod.Evans@Sun.COM #define	DBG_ISRESET()	(dbg_desc->d_extra & DBG_E_RESET)
2519577SRod.Evans@Sun.COM #define	DBG_ONRESET()	(dbg_desc->d_extra |= DBG_E_RESET)
2529577SRod.Evans@Sun.COM #define	DBG_OFFRESET()	(dbg_desc->d_extra &= ~DBG_E_RESET)
2539577SRod.Evans@Sun.COM 
2541618Srie #define	DBG_ISSNAME()	(dbg_desc->d_extra & DBG_E_SNAME)
2551618Srie #define	DBG_ISFNAME()	(dbg_desc->d_extra & DBG_E_FNAME)
2561618Srie #define	DBG_ISCLASS()	(dbg_desc->d_extra & DBG_E_CLASS)
2571618Srie #define	DBG_ISLMID()	(dbg_desc->d_extra & DBG_E_LMID)
2580Sstevel@tonic-gate 
2590Sstevel@tonic-gate /*
2601618Srie  * Print routine, this must be supplied by the application.  The initial
2611618Srie  * argument may provide a link-map list to associate with the format statement
2621618Srie  * that follows.
2630Sstevel@tonic-gate  */
2641618Srie /* PRINTFLIKE2 */
2651618Srie extern	void		dbg_print(Lm_list *, const char *, ...);
2660Sstevel@tonic-gate 
2679406SAli.Bahrami@Sun.COM /*
2689406SAli.Bahrami@Sun.COM  * Initialization routine, called before any other Dbg routines to
2699406SAli.Bahrami@Sun.COM  * establish the necessary state.
2709406SAli.Bahrami@Sun.COM  */
2719406SAli.Bahrami@Sun.COM typedef enum { DBG_CALLER_LD, DBG_CALLER_RTLD } dbg_setup_caller_t;
2729406SAli.Bahrami@Sun.COM extern	int		Dbg_setup(dbg_setup_caller_t, const char *,
2739406SAli.Bahrami@Sun.COM 			    Dbg_desc *, const char **);
2749406SAli.Bahrami@Sun.COM 
27511734SAli.Bahrami@Sun.COM /* Call dbg_print() to produce linker version output */
27611734SAli.Bahrami@Sun.COM extern void		Dbg_version(void);
27711734SAli.Bahrami@Sun.COM 
2789406SAli.Bahrami@Sun.COM /* Call dbg_print() to produce help output */
2799406SAli.Bahrami@Sun.COM extern	void		Dbg_help(void);
2800Sstevel@tonic-gate 
2810Sstevel@tonic-gate /*
2821618Srie  * Establish ELF32 and ELF64 class Dbg_*() interfaces.
2830Sstevel@tonic-gate  */
2841618Srie #if	defined(_ELF64)
2851618Srie 
2861618Srie #define	Dbg_demangle_name	Dbg64_demangle_name
2871618Srie 
2881618Srie #define	Dbg_bind_global		Dbg64_bind_global
2891618Srie #define	Dbg_bind_plt_summary	Dbg64_bind_plt_summary
2901618Srie #define	Dbg_bind_pltpad_from	Dbg64_bind_pltpad_from
2911618Srie #define	Dbg_bind_pltpad_to	Dbg64_bind_pltpad_to
2925220Srie #define	Dbg_bind_reject		Dbg64_bind_reject
2931618Srie #define	Dbg_bind_weak		Dbg64_bind_weak
2941618Srie 
29511827SRod.Evans@Sun.COM #define	Dbg_cap_candidate	Dbg64_cap_candidate
29611827SRod.Evans@Sun.COM #define	Dbg_cap_filter		Dbg64_cap_filter
29711827SRod.Evans@Sun.COM #define	Dbg_cap_id		Dbg64_cap_id
29811734SAli.Bahrami@Sun.COM #define	Dbg_cap_mapfile_title	Dbg64_cap_mapfile_title
29911827SRod.Evans@Sun.COM #define	Dbg_cap_post_title	Dbg64_cap_post_title
3001618Srie #define	Dbg_cap_sec_title	Dbg64_cap_sec_title
30111827SRod.Evans@Sun.COM #define	Dbg_cap_val		Dbg64_cap_val
30211827SRod.Evans@Sun.COM #define	Dbg_cap_ptr_entry	Dbg64_cap_ptr_entry
30311827SRod.Evans@Sun.COM #define	Dbg_cap_val_entry	Dbg64_cap_val_entry
3041618Srie 
30512029SRod.Evans@Sun.COM #define	Dbg_dl_dladdr		Dbg64_dl_dladdr
30612029SRod.Evans@Sun.COM #define	Dbg_dl_dlclose		Dbg64_dl_dlclose
30712029SRod.Evans@Sun.COM #define	Dbg_dl_dldump		Dbg64_dl_dldump
30812029SRod.Evans@Sun.COM #define	Dbg_dl_dlerror		Dbg64_dl_dlerror
30912029SRod.Evans@Sun.COM #define	Dbg_dl_dlinfo		Dbg64_dl_dlinfo
31012029SRod.Evans@Sun.COM #define	Dbg_dl_dlopen		Dbg64_dl_dlopen
31112029SRod.Evans@Sun.COM #define	Dbg_dl_dlsym		Dbg64_dl_dlsym
31212029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_enter	Dbg64_dl_iphdr_enter
31312029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_callback	Dbg64_dl_iphdr_callback
31412029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_mapchange	Dbg64_dl_iphdr_mapchange
31512029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_unmap_ret	Dbg64_dl_iphdr_unmap_ret
31611690SAli.Bahrami@Sun.COM 
3171618Srie #define	Dbg_ent_entry		Dbg64_ent_entry
3181618Srie #define	Dbg_ent_print		Dbg64_ent_print
3191618Srie 
3201618Srie #define	Dbg_file_analyze	Dbg64_file_analyze
3211618Srie #define	Dbg_file_aout		Dbg64_file_aout
3221618Srie #define	Dbg_file_ar		Dbg64_file_ar
3231618Srie #define	Dbg_file_ar_rescan	Dbg64_file_ar_rescan
3241618Srie #define	Dbg_file_bind_entry	Dbg64_file_bind_entry
3251618Srie #define	Dbg_file_bindings	Dbg64_file_bindings
32611690SAli.Bahrami@Sun.COM #define	Dbg_file_bindings_done	Dbg64_file_bindings_done
3273731Srie #define	Dbg_file_cleanup	Dbg64_file_cleanup
3281618Srie #define	Dbg_file_cntl		Dbg64_file_cntl
3291618Srie #define	Dbg_file_config_dis	Dbg64_file_config_dis
3301618Srie #define	Dbg_file_config_obj	Dbg64_file_config_obj
3311618Srie #define	Dbg_file_del_rescan	Dbg64_file_del_rescan
3321618Srie #define	Dbg_file_delete		Dbg64_file_delete
3331618Srie #define	Dbg_file_elf		Dbg64_file_elf
3341618Srie #define	Dbg_file_filtee		Dbg64_file_filtee
3351618Srie #define	Dbg_file_filter		Dbg64_file_filter
3361618Srie #define	Dbg_file_fixname	Dbg64_file_fixname
3371618Srie #define	Dbg_file_generic	Dbg64_file_generic
3381618Srie #define	Dbg_file_hdl_action	Dbg64_file_hdl_action
3391618Srie #define	Dbg_file_hdl_collect	Dbg64_file_hdl_collect
3401618Srie #define	Dbg_file_hdl_title	Dbg64_file_hdl_title
3411618Srie #define	Dbg_file_lazyload	Dbg64_file_lazyload
3421618Srie #define	Dbg_file_ldso		Dbg64_file_ldso
3438598SRod.Evans@Sun.COM #define	Dbg_file_mmapobj	Dbg64_file_mmapobj
3441618Srie #define	Dbg_file_mode_promote	Dbg64_file_mode_promote
3452978Srie #define	Dbg_file_modified	Dbg64_file_modified
3461618Srie #define	Dbg_file_needed		Dbg64_file_needed
3471618Srie #define	Dbg_file_output		Dbg64_file_output
3481618Srie #define	Dbg_file_preload	Dbg64_file_preload
3491618Srie #define	Dbg_file_prot		Dbg64_file_prot
3501618Srie #define	Dbg_file_rejected	Dbg64_file_rejected
3511618Srie #define	Dbg_file_reuse		Dbg64_file_reuse
3521618Srie #define	Dbg_file_skip		Dbg64_file_skip
3531618Srie 
3541618Srie #define	Dbg_got_display		Dbg64_got_display
3551618Srie 
3561618Srie #define	Dbg_libs_audit		Dbg64_libs_audit
3571618Srie #define	Dbg_libs_find		Dbg64_libs_find
3581618Srie #define	Dbg_libs_found		Dbg64_libs_found
3597668SRod.Evans@Sun.COM #define	Dbg_libs_insecure	Dbg64_libs_insecure
3601618Srie #define	Dbg_libs_init		Dbg64_libs_init
3611618Srie #define	Dbg_libs_l		Dbg64_libs_l
3621618Srie #define	Dbg_libs_path		Dbg64_libs_path
3631618Srie #define	Dbg_libs_req		Dbg64_libs_req
3641618Srie #define	Dbg_libs_update		Dbg64_libs_update
3651618Srie #define	Dbg_libs_yp		Dbg64_libs_yp
3661618Srie #define	Dbg_libs_ylu		Dbg64_libs_ylu
3671618Srie 
36811734SAli.Bahrami@Sun.COM #define	Dbg_map_cexp_id		Dbg64_map_cexp_id
36911734SAli.Bahrami@Sun.COM #define	Dbg_map_dv		Dbg64_map_dv
37011734SAli.Bahrami@Sun.COM #define	Dbg_map_dv_entry	Dbg64_map_dv_entry
3711618Srie #define	Dbg_map_ent		Dbg64_map_ent
37211734SAli.Bahrami@Sun.COM #define	Dbg_map_ent_ord_title	Dbg64_map_ent_ord_title
37311734SAli.Bahrami@Sun.COM #define	Dbg_map_hdr_noalloc	Dbg64_map_hdr_noalloc
3741618Srie #define	Dbg_map_parse		Dbg64_map_parse
37511734SAli.Bahrami@Sun.COM #define	Dbg_map_pass		Dbg64_map_pass
37611734SAli.Bahrami@Sun.COM #define	Dbg_map_post_title	Dbg64_map_post_title
3771618Srie #define	Dbg_map_seg		Dbg64_map_seg
37811734SAli.Bahrami@Sun.COM #define	Dbg_map_seg_order	Dbg64_map_seg_order
37911734SAli.Bahrami@Sun.COM #define	Dbg_map_seg_os_order	Dbg64_map_seg_os_order
3801618Srie #define	Dbg_map_size_new	Dbg64_map_size_new
3811618Srie #define	Dbg_map_size_old	Dbg64_map_size_old
3829131SRod.Evans@Sun.COM #define	Dbg_map_sort_seg	Dbg64_map_sort_seg
38311734SAli.Bahrami@Sun.COM #define	Dbg_map_sort_title	Dbg64_map_sort_title
3841618Srie #define	Dbg_map_symbol		Dbg64_map_symbol
3851618Srie #define	Dbg_map_version		Dbg64_map_version
3861618Srie 
3871618Srie #define	Dbg_move_adjexpandreloc	Dbg64_move_adjexpandreloc
3881618Srie #define	Dbg_move_adjmovereloc	Dbg64_move_adjmovereloc
3898598SRod.Evans@Sun.COM #define	Dbg_move_bad		Dbg64_move_bad
3901618Srie #define	Dbg_move_data		Dbg64_move_data
3911618Srie #define	Dbg_move_entry1		Dbg64_move_entry1
3921618Srie #define	Dbg_move_entry2		Dbg64_move_entry2
3931618Srie #define	Dbg_move_expand		Dbg64_move_expand
3941618Srie #define	Dbg_move_input		Dbg64_move_input
3951618Srie #define	Dbg_move_outmove	Dbg64_move_outmove
3961618Srie #define	Dbg_move_outsctadj	Dbg64_move_outsctadj
3971618Srie #define	Dbg_move_parexpn	Dbg64_move_parexpn
3981618Srie 
3991618Srie #define	Dbg_reloc_apply_reg	Dbg64_reloc_apply_reg
4001618Srie #define	Dbg_reloc_apply_val	Dbg64_reloc_apply_val
4011618Srie #define	Dbg_reloc_ars_entry	Dbg64_reloc_ars_entry
4021618Srie #define	Dbg_reloc_copy		Dbg64_reloc_copy
4031618Srie #define	Dbg_reloc_discard	Dbg64_reloc_discard
4041618Srie #define	Dbg_reloc_doact		Dbg64_reloc_doact
4051618Srie #define	Dbg_reloc_doact_title	Dbg64_reloc_doact_title
4061618Srie #define	Dbg_reloc_dooutrel	Dbg64_reloc_dooutrel
4071618Srie #define	Dbg_reloc_entry		Dbg64_reloc_entry
4081618Srie #define	Dbg_reloc_error		Dbg64_reloc_error
4091618Srie #define	Dbg_reloc_generate	Dbg64_reloc_generate
4101618Srie #define	Dbg_reloc_in		Dbg64_reloc_in
4111618Srie #define	Dbg_reloc_ors_entry	Dbg64_reloc_ors_entry
4121618Srie #define	Dbg_reloc_out		Dbg64_reloc_out
4131618Srie #define	Dbg_reloc_proc		Dbg64_reloc_proc
4141618Srie #define	Dbg_reloc_run		Dbg64_reloc_run
4151618Srie #define	Dbg_reloc_transition	Dbg64_reloc_transition
4162773Sab196087 #define	Dbg_reloc_sloppycomdat	Dbg64_reloc_sloppycomdat
4171618Srie 
4181618Srie #define	Dbg_sec_added		Dbg64_sec_added
4199131SRod.Evans@Sun.COM #define	Dbg_sec_backing		Dbg64_sec_backing
4201618Srie #define	Dbg_sec_created		Dbg64_sec_created
4211618Srie #define	Dbg_sec_discarded	Dbg64_sec_discarded
4225892Sab196087 #define	Dbg_sec_genstr_compress	Dbg64_sec_genstr_compress
4231618Srie #define	Dbg_sec_group		Dbg64_sec_group
4247463SRod.Evans@Sun.COM #define	Dbg_sec_gnu_comdat	Dbg64_sec_gnu_comdat
4251618Srie #define	Dbg_sec_in		Dbg64_sec_in
4261618Srie #define	Dbg_sec_order_error	Dbg64_sec_order_error
4271618Srie #define	Dbg_sec_order_list	Dbg64_sec_order_list
4287463SRod.Evans@Sun.COM #define	Dbg_sec_redirected	Dbg64_sec_redirected
4291618Srie #define	Dbg_sec_strtab		Dbg64_sec_strtab
4305892Sab196087 #define	Dbg_sec_unsup_strmerge	Dbg64_sec_unsup_strmerge
4311618Srie 
4321618Srie #define	Dbg_seg_desc_entry	Dbg64_seg_desc_entry
4331618Srie #define	Dbg_seg_entry		Dbg64_seg_entry
4341618Srie #define	Dbg_seg_list		Dbg64_seg_list
4351618Srie #define	Dbg_seg_os		Dbg64_seg_os
4361618Srie #define	Dbg_seg_title		Dbg64_seg_title
4371618Srie 
4382647Srie #define	Dbg_shdr_modified	Dbg64_shdr_modified
4392647Srie 
4401618Srie #define	Dbg_statistics_ar	Dbg64_statistics_ar
4411618Srie #define	Dbg_statistics_ld	Dbg64_statistics_ld
4421618Srie 
4431618Srie #define	Dbg_support_action	Dbg64_support_action
4441618Srie #define	Dbg_support_load	Dbg64_support_load
4451618Srie #define	Dbg_support_req		Dbg64_support_req
4468324SAli.Bahrami@Sun.COM #define	Dbg_support_vnone	Dbg64_support_vnone
4471618Srie 
4481618Srie #define	Dbg_syminfo_entry	Dbg64_syminfo_entry
4491618Srie #define	Dbg_syminfo_title	Dbg64_syminfo_title
4501618Srie 
4511618Srie #define	Dbg_syms_ar_checking	Dbg64_syms_ar_checking
452*12254SAli.Bahrami@Oracle.COM #define	Dbg_syms_ar_force	Dbg64_syms_ar_force
4531618Srie #define	Dbg_syms_ar_resolve	Dbg64_syms_ar_resolve
454*12254SAli.Bahrami@Oracle.COM #define	Dbg_syms_ar_skip	Dbg64_syms_ar_skip
4551618Srie #define	Dbg_syms_ar_title	Dbg64_syms_ar_title
45611827SRod.Evans@Sun.COM #define	Dbg_syms_cap_convert	Dbg64_syms_cap_convert
45711827SRod.Evans@Sun.COM #define	Dbg_syms_cap_local	Dbg64_syms_cap_local
45811827SRod.Evans@Sun.COM #define	Dbg_syms_cap_lookup	Dbg64_syms_cap_lookup
45911827SRod.Evans@Sun.COM #define	Dbg_syms_cap_title	Dbg64_syms_cap_title
4601618Srie #define	Dbg_syms_created	Dbg64_syms_created
4611618Srie #define	Dbg_syms_discarded	Dbg64_syms_discarded
4627064Sab196087 #define	Dbg_syms_dup_discarded	Dbg64_syms_dup_discarded
4633492Sab196087 #define	Dbg_syms_dup_sort_addr	Dbg64_syms_dup_sort_addr
4641618Srie #define	Dbg_syms_entered	Dbg64_syms_entered
4651618Srie #define	Dbg_syms_entry		Dbg64_syms_entry
4661618Srie #define	Dbg_syms_global		Dbg64_syms_global
4671618Srie #define	Dbg_syms_ignore		Dbg64_syms_ignore
4684716Sab196087 #define	Dbg_syms_ignore_gnuver	Dbg64_syms_ignore_gnuver
4691618Srie #define	Dbg_syms_lazy_rescan	Dbg64_syms_lazy_rescan
4701618Srie #define	Dbg_syms_lookup		Dbg64_syms_lookup
4711618Srie #define	Dbg_syms_new		Dbg64_syms_new
4721618Srie #define	Dbg_syms_old		Dbg64_syms_old
4731618Srie #define	Dbg_syms_process	Dbg64_syms_process
4741618Srie #define	Dbg_syms_reduce		Dbg64_syms_reduce
4751618Srie #define	Dbg_syms_reloc		Dbg64_syms_reloc
4761618Srie #define	Dbg_syms_resolved	Dbg64_syms_resolved
4771618Srie #define	Dbg_syms_resolving	Dbg64_syms_resolving
4781618Srie #define	Dbg_syms_sec_entry	Dbg64_syms_sec_entry
4791618Srie #define	Dbg_syms_sec_title	Dbg64_syms_sec_title
4801618Srie #define	Dbg_syms_spec_title	Dbg64_syms_spec_title
4811618Srie #define	Dbg_syms_updated	Dbg64_syms_updated
4821618Srie #define	Dbg_syms_up_title	Dbg64_syms_up_title
48310580SAli.Bahrami@Sun.COM #define	Dbg_syms_wrap		Dbg64_syms_wrap
4841618Srie 
4851618Srie #define	Dbg_util_call_array	Dbg64_util_call_array
4861618Srie #define	Dbg_util_call_fini	Dbg64_util_call_fini
4871618Srie #define	Dbg_util_call_init	Dbg64_util_call_init
4881618Srie #define	Dbg_util_call_main	Dbg64_util_call_main
4891618Srie #define	Dbg_util_collect	Dbg64_util_collect
4901618Srie #define	Dbg_util_dbnotify	Dbg64_util_dbnotify
4911618Srie #define	Dbg_util_edge_in	Dbg64_util_edge_in
4921618Srie #define	Dbg_util_edge_out	Dbg64_util_edge_out
4931618Srie #define	Dbg_util_intoolate	Dbg64_util_intoolate
4941824Srie #define	Dbg_util_lcinterface	Dbg64_util_lcinterface
4951618Srie #define	Dbg_util_nl		Dbg64_util_nl
4961618Srie #define	Dbg_util_no_init	Dbg64_util_no_init
4971618Srie #define	Dbg_util_scc_entry	Dbg64_util_scc_entry
4981618Srie #define	Dbg_util_scc_title	Dbg64_util_scc_title
4991618Srie #define	Dbg_util_str		Dbg64_util_str
5001618Srie 
5011618Srie #define	Dbg_unused_file		Dbg64_unused_file
5021824Srie #define	Dbg_unused_lcinterface	Dbg64_unused_lcinterface
5036387Srie #define	Dbg_unused_path		Dbg64_unused_path
5041618Srie #define	Dbg_unused_sec		Dbg64_unused_sec
5051618Srie #define	Dbg_unused_unref	Dbg64_unused_unref
5060Sstevel@tonic-gate 
5071618Srie #define	Dbg_ver_avail_entry	Dbg64_ver_avail_entry
5081618Srie #define	Dbg_ver_avail_title	Dbg64_ver_avail_title
5091618Srie #define	Dbg_ver_def_title	Dbg64_ver_def_title
5101618Srie #define	Dbg_ver_desc_entry	Dbg64_ver_desc_entry
51111690SAli.Bahrami@Sun.COM #define	Dbg_ver_need_done	Dbg64_ver_need_done
5121618Srie #define	Dbg_ver_need_entry	Dbg64_ver_need_entry
5131618Srie #define	Dbg_ver_need_title	Dbg64_ver_need_title
5141618Srie #define	Dbg_ver_nointerface	Dbg64_ver_nointerface
5151618Srie #define	Dbg_ver_symbol		Dbg64_ver_symbol
5161618Srie 
5171618Srie #else
5181618Srie 
5191618Srie #define	Dbg_demangle_name	Dbg32_demangle_name
5201618Srie 
5211618Srie #define	Dbg_bind_global		Dbg32_bind_global
5221618Srie #define	Dbg_bind_plt_summary	Dbg32_bind_plt_summary
5235220Srie #define	Dbg_bind_reject		Dbg32_bind_reject
5241618Srie #define	Dbg_bind_weak		Dbg32_bind_weak
5251618Srie 
52611827SRod.Evans@Sun.COM #define	Dbg_cap_candidate	Dbg32_cap_candidate
52711827SRod.Evans@Sun.COM #define	Dbg_cap_filter		Dbg32_cap_filter
52811827SRod.Evans@Sun.COM #define	Dbg_cap_id		Dbg32_cap_id
52911734SAli.Bahrami@Sun.COM #define	Dbg_cap_mapfile_title	Dbg32_cap_mapfile_title
53011827SRod.Evans@Sun.COM #define	Dbg_cap_post_title	Dbg32_cap_post_title
5311618Srie #define	Dbg_cap_sec_title	Dbg32_cap_sec_title
53211827SRod.Evans@Sun.COM #define	Dbg_cap_val		Dbg32_cap_val
53311827SRod.Evans@Sun.COM #define	Dbg_cap_ptr_entry	Dbg32_cap_ptr_entry
53411827SRod.Evans@Sun.COM #define	Dbg_cap_val_entry	Dbg32_cap_val_entry
5351618Srie 
53612029SRod.Evans@Sun.COM #define	Dbg_dl_dladdr		Dbg32_dl_dladdr
53712029SRod.Evans@Sun.COM #define	Dbg_dl_dlclose		Dbg32_dl_dlclose
53812029SRod.Evans@Sun.COM #define	Dbg_dl_dldump		Dbg32_dl_dldump
53912029SRod.Evans@Sun.COM #define	Dbg_dl_dlerror		Dbg32_dl_dlerror
54012029SRod.Evans@Sun.COM #define	Dbg_dl_dlinfo		Dbg32_dl_dlinfo
54112029SRod.Evans@Sun.COM #define	Dbg_dl_dlopen		Dbg32_dl_dlopen
54212029SRod.Evans@Sun.COM #define	Dbg_dl_dlsym		Dbg32_dl_dlsym
54312029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_enter	Dbg32_dl_iphdr_enter
54412029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_callback	Dbg32_dl_iphdr_callback
54512029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_mapchange	Dbg32_dl_iphdr_mapchange
54612029SRod.Evans@Sun.COM #define	Dbg_dl_iphdr_unmap_ret	Dbg32_dl_iphdr_unmap_ret
54711690SAli.Bahrami@Sun.COM 
5481618Srie #define	Dbg_ent_entry		Dbg32_ent_entry
5491618Srie #define	Dbg_ent_print		Dbg32_ent_print
5501618Srie 
5511618Srie #define	Dbg_file_analyze	Dbg32_file_analyze
5521618Srie #define	Dbg_file_aout		Dbg32_file_aout
5531618Srie #define	Dbg_file_ar		Dbg32_file_ar
5541618Srie #define	Dbg_file_ar_rescan	Dbg32_file_ar_rescan
5551618Srie #define	Dbg_file_bind_entry	Dbg32_file_bind_entry
5561618Srie #define	Dbg_file_bindings	Dbg32_file_bindings
55711690SAli.Bahrami@Sun.COM #define	Dbg_file_bindings_done	Dbg32_file_bindings_done
5583731Srie #define	Dbg_file_cleanup	Dbg32_file_cleanup
5591618Srie #define	Dbg_file_cntl		Dbg32_file_cntl
5601618Srie #define	Dbg_file_config_dis	Dbg32_file_config_dis
5611618Srie #define	Dbg_file_config_obj	Dbg32_file_config_obj
5621618Srie #define	Dbg_file_del_rescan	Dbg32_file_del_rescan
5631618Srie #define	Dbg_file_delete		Dbg32_file_delete
5641618Srie #define	Dbg_file_elf		Dbg32_file_elf
5651618Srie #define	Dbg_file_filtee		Dbg32_file_filtee
5661618Srie #define	Dbg_file_filter		Dbg32_file_filter
5671618Srie #define	Dbg_file_fixname	Dbg32_file_fixname
5681618Srie #define	Dbg_file_generic	Dbg32_file_generic
5691618Srie #define	Dbg_file_hdl_action	Dbg32_file_hdl_action
5701618Srie #define	Dbg_file_hdl_collect	Dbg32_file_hdl_collect
5711618Srie #define	Dbg_file_hdl_title	Dbg32_file_hdl_title
5721618Srie #define	Dbg_file_lazyload	Dbg32_file_lazyload
5731618Srie #define	Dbg_file_ldso		Dbg32_file_ldso
5748598SRod.Evans@Sun.COM #define	Dbg_file_mmapobj	Dbg32_file_mmapobj
5751618Srie #define	Dbg_file_mode_promote	Dbg32_file_mode_promote
5762978Srie #define	Dbg_file_modified	Dbg32_file_modified
5771618Srie #define	Dbg_file_needed		Dbg32_file_needed
5781618Srie #define	Dbg_file_output		Dbg32_file_output
5791618Srie #define	Dbg_file_preload	Dbg32_file_preload
5801618Srie #define	Dbg_file_prot		Dbg32_file_prot
5811618Srie #define	Dbg_file_rejected	Dbg32_file_rejected
5821618Srie #define	Dbg_file_reuse		Dbg32_file_reuse
5831618Srie #define	Dbg_file_skip		Dbg32_file_skip
5841618Srie 
5851618Srie #define	Dbg_got_display		Dbg32_got_display
5861618Srie 
5871618Srie #define	Dbg_libs_audit		Dbg32_libs_audit
5881618Srie #define	Dbg_libs_find		Dbg32_libs_find
5891618Srie #define	Dbg_libs_found		Dbg32_libs_found
5907668SRod.Evans@Sun.COM #define	Dbg_libs_insecure	Dbg32_libs_insecure
5911618Srie #define	Dbg_libs_init		Dbg32_libs_init
5921618Srie #define	Dbg_libs_l		Dbg32_libs_l
5931618Srie #define	Dbg_libs_path		Dbg32_libs_path
5941618Srie #define	Dbg_libs_req		Dbg32_libs_req
5951618Srie #define	Dbg_libs_update		Dbg32_libs_update
5961618Srie #define	Dbg_libs_yp		Dbg32_libs_yp
5971618Srie #define	Dbg_libs_ylu		Dbg32_libs_ylu
5981618Srie 
59911734SAli.Bahrami@Sun.COM #define	Dbg_map_cexp_id		Dbg32_map_cexp_id
60011734SAli.Bahrami@Sun.COM #define	Dbg_map_dv		Dbg32_map_dv
60111734SAli.Bahrami@Sun.COM #define	Dbg_map_dv_entry	Dbg32_map_dv_entry
6021618Srie #define	Dbg_map_ent		Dbg32_map_ent
60311734SAli.Bahrami@Sun.COM #define	Dbg_map_ent_ord_title	Dbg32_map_ent_ord_title
60411734SAli.Bahrami@Sun.COM #define	Dbg_map_hdr_noalloc	Dbg32_map_hdr_noalloc
6051618Srie #define	Dbg_map_parse		Dbg32_map_parse
60611734SAli.Bahrami@Sun.COM #define	Dbg_map_pass		Dbg32_map_pass
60711734SAli.Bahrami@Sun.COM #define	Dbg_map_post_title	Dbg32_map_post_title
6081618Srie #define	Dbg_map_seg		Dbg32_map_seg
60911734SAli.Bahrami@Sun.COM #define	Dbg_map_seg_order	Dbg32_map_seg_order
61011734SAli.Bahrami@Sun.COM #define	Dbg_map_seg_os_order	Dbg32_map_seg_os_order
6111618Srie #define	Dbg_map_size_new	Dbg32_map_size_new
6121618Srie #define	Dbg_map_size_old	Dbg32_map_size_old
6139131SRod.Evans@Sun.COM #define	Dbg_map_sort_seg	Dbg32_map_sort_seg
61411734SAli.Bahrami@Sun.COM #define	Dbg_map_sort_title	Dbg32_map_sort_title
6151618Srie #define	Dbg_map_symbol		Dbg32_map_symbol
6161618Srie #define	Dbg_map_version		Dbg32_map_version
6171618Srie 
6181618Srie #define	Dbg_move_adjexpandreloc	Dbg32_move_adjexpandreloc
6191618Srie #define	Dbg_move_adjmovereloc	Dbg32_move_adjmovereloc
6208598SRod.Evans@Sun.COM #define	Dbg_move_bad		Dbg32_move_bad
6211618Srie #define	Dbg_move_data		Dbg32_move_data
6221618Srie #define	Dbg_move_entry1		Dbg32_move_entry1
6231618Srie #define	Dbg_move_entry2		Dbg32_move_entry2
6241618Srie #define	Dbg_move_expand		Dbg32_move_expand
6251618Srie #define	Dbg_move_input		Dbg32_move_input
6261618Srie #define	Dbg_move_outmove	Dbg32_move_outmove
6271618Srie #define	Dbg_move_outsctadj	Dbg32_move_outsctadj
6281618Srie #define	Dbg_move_parexpn	Dbg32_move_parexpn
6291618Srie 
6301618Srie #define	Dbg_reloc_apply_reg	Dbg32_reloc_apply_reg
6311618Srie #define	Dbg_reloc_apply_val	Dbg32_reloc_apply_val
6321618Srie #define	Dbg_reloc_ars_entry	Dbg32_reloc_ars_entry
6331618Srie #define	Dbg_reloc_copy		Dbg32_reloc_copy
6341618Srie #define	Dbg_reloc_discard	Dbg32_reloc_discard
6351618Srie #define	Dbg_reloc_doact		Dbg32_reloc_doact
6361618Srie #define	Dbg_reloc_doact_title	Dbg32_reloc_doact_title
6371618Srie #define	Dbg_reloc_dooutrel	Dbg32_reloc_dooutrel
6381618Srie #define	Dbg_reloc_entry		Dbg32_reloc_entry
6391618Srie #define	Dbg_reloc_error		Dbg32_reloc_error
6401618Srie #define	Dbg_reloc_generate	Dbg32_reloc_generate
6411618Srie #define	Dbg_reloc_in		Dbg32_reloc_in
6421618Srie #define	Dbg_reloc_ors_entry	Dbg32_reloc_ors_entry
6431618Srie #define	Dbg_reloc_out		Dbg32_reloc_out
6441618Srie #define	Dbg_reloc_proc		Dbg32_reloc_proc
6451618Srie #define	Dbg_reloc_run		Dbg32_reloc_run
6461618Srie #define	Dbg_reloc_transition	Dbg32_reloc_transition
6472773Sab196087 #define	Dbg_reloc_sloppycomdat	Dbg32_reloc_sloppycomdat
6481618Srie 
6491618Srie #define	Dbg_sec_added		Dbg32_sec_added
6509131SRod.Evans@Sun.COM #define	Dbg_sec_backing		Dbg32_sec_backing
6511618Srie #define	Dbg_sec_created		Dbg32_sec_created
6521618Srie #define	Dbg_sec_discarded	Dbg32_sec_discarded
6535892Sab196087 #define	Dbg_sec_genstr_compress	Dbg32_sec_genstr_compress
6541618Srie #define	Dbg_sec_group		Dbg32_sec_group
6557463SRod.Evans@Sun.COM #define	Dbg_sec_gnu_comdat	Dbg32_sec_gnu_comdat
6561618Srie #define	Dbg_sec_in		Dbg32_sec_in
6571618Srie #define	Dbg_sec_order_error	Dbg32_sec_order_error
6581618Srie #define	Dbg_sec_order_list	Dbg32_sec_order_list
6597463SRod.Evans@Sun.COM #define	Dbg_sec_redirected	Dbg32_sec_redirected
6601618Srie #define	Dbg_sec_strtab		Dbg32_sec_strtab
6615892Sab196087 #define	Dbg_sec_unsup_strmerge	Dbg32_sec_unsup_strmerge
6621618Srie 
6631618Srie #define	Dbg_seg_desc_entry	Dbg32_seg_desc_entry
6641618Srie #define	Dbg_seg_entry		Dbg32_seg_entry
6651618Srie #define	Dbg_seg_list		Dbg32_seg_list
6661618Srie #define	Dbg_seg_os		Dbg32_seg_os
6671618Srie #define	Dbg_seg_title		Dbg32_seg_title
6681618Srie 
6692647Srie #define	Dbg_shdr_modified	Dbg32_shdr_modified
6702647Srie 
6711618Srie #define	Dbg_statistics_ar	Dbg32_statistics_ar
6721618Srie #define	Dbg_statistics_ld	Dbg32_statistics_ld
6731618Srie 
6741618Srie #define	Dbg_support_action	Dbg32_support_action
6751618Srie #define	Dbg_support_load	Dbg32_support_load
6761618Srie #define	Dbg_support_req		Dbg32_support_req
6778324SAli.Bahrami@Sun.COM #define	Dbg_support_vnone	Dbg32_support_vnone
6781618Srie 
6791618Srie #define	Dbg_syminfo_entry	Dbg32_syminfo_entry
6801618Srie #define	Dbg_syminfo_title	Dbg32_syminfo_title
6811618Srie 
6821618Srie #define	Dbg_syms_ar_checking	Dbg32_syms_ar_checking
683*12254SAli.Bahrami@Oracle.COM #define	Dbg_syms_ar_force	Dbg32_syms_ar_force
6841618Srie #define	Dbg_syms_ar_resolve	Dbg32_syms_ar_resolve
685*12254SAli.Bahrami@Oracle.COM #define	Dbg_syms_ar_skip	Dbg32_syms_ar_skip
6861618Srie #define	Dbg_syms_ar_title	Dbg32_syms_ar_title
68711827SRod.Evans@Sun.COM #define	Dbg_syms_cap_convert	Dbg32_syms_cap_convert
68811827SRod.Evans@Sun.COM #define	Dbg_syms_cap_local	Dbg32_syms_cap_local
68911827SRod.Evans@Sun.COM #define	Dbg_syms_cap_lookup	Dbg32_syms_cap_lookup
69011827SRod.Evans@Sun.COM #define	Dbg_syms_cap_title	Dbg32_syms_cap_title
6911618Srie #define	Dbg_syms_created	Dbg32_syms_created
6921618Srie #define	Dbg_syms_discarded	Dbg32_syms_discarded
6937064Sab196087 #define	Dbg_syms_dup_discarded	Dbg32_syms_dup_discarded
6943492Sab196087 #define	Dbg_syms_dup_sort_addr	Dbg32_syms_dup_sort_addr
6951618Srie #define	Dbg_syms_entered	Dbg32_syms_entered
6961618Srie #define	Dbg_syms_entry		Dbg32_syms_entry
6971618Srie #define	Dbg_syms_global		Dbg32_syms_global
6981618Srie #define	Dbg_syms_ignore		Dbg32_syms_ignore
6994716Sab196087 #define	Dbg_syms_ignore_gnuver	Dbg32_syms_ignore_gnuver
7001618Srie #define	Dbg_syms_lazy_rescan	Dbg32_syms_lazy_rescan
7011618Srie #define	Dbg_syms_lookup		Dbg32_syms_lookup
7021618Srie #define	Dbg_syms_lookup_aout	Dbg32_syms_lookup_aout
7031618Srie #define	Dbg_syms_new		Dbg32_syms_new
7041618Srie #define	Dbg_syms_old		Dbg32_syms_old
7051618Srie #define	Dbg_syms_process	Dbg32_syms_process
7061618Srie #define	Dbg_syms_reduce		Dbg32_syms_reduce
7071618Srie #define	Dbg_syms_reloc		Dbg32_syms_reloc
7081618Srie #define	Dbg_syms_resolved	Dbg32_syms_resolved
7091618Srie #define	Dbg_syms_resolving	Dbg32_syms_resolving
7101618Srie #define	Dbg_syms_sec_entry	Dbg32_syms_sec_entry
7111618Srie #define	Dbg_syms_sec_title	Dbg32_syms_sec_title
7121618Srie #define	Dbg_syms_spec_title	Dbg32_syms_spec_title
7131618Srie #define	Dbg_syms_updated	Dbg32_syms_updated
7141618Srie #define	Dbg_syms_up_title	Dbg32_syms_up_title
71510580SAli.Bahrami@Sun.COM #define	Dbg_syms_wrap		Dbg32_syms_wrap
7161618Srie 
7171618Srie #define	Dbg_util_call_array	Dbg32_util_call_array
7181618Srie #define	Dbg_util_call_fini	Dbg32_util_call_fini
7191618Srie #define	Dbg_util_call_init	Dbg32_util_call_init
7201618Srie #define	Dbg_util_call_main	Dbg32_util_call_main
7211618Srie #define	Dbg_util_collect	Dbg32_util_collect
7221618Srie #define	Dbg_util_dbnotify	Dbg32_util_dbnotify
7231618Srie #define	Dbg_util_edge_in	Dbg32_util_edge_in
7241618Srie #define	Dbg_util_edge_out	Dbg32_util_edge_out
7251618Srie #define	Dbg_util_intoolate	Dbg32_util_intoolate
7261824Srie #define	Dbg_util_lcinterface	Dbg32_util_lcinterface
7271618Srie #define	Dbg_util_nl		Dbg32_util_nl
7281618Srie #define	Dbg_util_no_init	Dbg32_util_no_init
7291618Srie #define	Dbg_util_scc_entry	Dbg32_util_scc_entry
7301618Srie #define	Dbg_util_scc_title	Dbg32_util_scc_title
7311618Srie #define	Dbg_util_str		Dbg32_util_str
7321618Srie 
7331618Srie #define	Dbg_unused_file		Dbg32_unused_file
7341824Srie #define	Dbg_unused_lcinterface	Dbg32_unused_lcinterface
7356387Srie #define	Dbg_unused_path		Dbg32_unused_path
7361618Srie #define	Dbg_unused_sec		Dbg32_unused_sec
7371618Srie #define	Dbg_unused_unref	Dbg32_unused_unref
7381618Srie 
7391618Srie #define	Dbg_ver_avail_entry	Dbg32_ver_avail_entry
7401618Srie #define	Dbg_ver_avail_title	Dbg32_ver_avail_title
7411618Srie #define	Dbg_ver_def_title	Dbg32_ver_def_title
7421618Srie #define	Dbg_ver_desc_entry	Dbg32_ver_desc_entry
74311690SAli.Bahrami@Sun.COM #define	Dbg_ver_need_done	Dbg32_ver_need_done
7441618Srie #define	Dbg_ver_need_entry	Dbg32_ver_need_entry
7451618Srie #define	Dbg_ver_need_title	Dbg32_ver_need_title
7461618Srie #define	Dbg_ver_nointerface	Dbg32_ver_nointerface
7471618Srie #define	Dbg_ver_symbol		Dbg32_ver_symbol
7481618Srie 
7490Sstevel@tonic-gate #endif
7500Sstevel@tonic-gate 
7510Sstevel@tonic-gate /*
7521618Srie  * External Dbg_*() interface routines.
7530Sstevel@tonic-gate  */
7549577SRod.Evans@Sun.COM extern	void	Dbg_args_file(Lm_list *, int, char *);
7559577SRod.Evans@Sun.COM extern	void	Dbg_args_option(Lm_list *, int, int, char *);
7567636SRod.Evans@Sun.COM extern	void	Dbg_args_str2chr(Lm_list *, int, const char *, int);
7577636SRod.Evans@Sun.COM extern	void	Dbg_args_Wldel(Lm_list *, int, const char *);
7584679Srie extern	void	Dbg_audit_ignore(Rt_map *);
7591618Srie extern	void	Dbg_audit_interface(Lm_list *, const char *, const char *);
7601618Srie extern	void	Dbg_audit_lib(Lm_list *, const char *);
7611618Srie extern	void	Dbg_audit_object(Lm_list *, const char *, const char *);
7621618Srie extern	void	Dbg_audit_symval(Lm_list *, const char *, const char *,
7631618Srie 		    const char *, Addr, Addr);
7643617Srie extern	void	Dbg_audit_skip(Lm_list *, const char *, const char *);
7654679Srie extern	void	Dbg_audit_terminate(Lm_list *, const char *);
7661618Srie extern	void	Dbg_audit_version(Lm_list *, const char *, ulong_t);
7671618Srie 
7689577SRod.Evans@Sun.COM extern	void	Dbg_basic_collect(Lm_list *);
7699577SRod.Evans@Sun.COM extern	void	Dbg_basic_create(Lm_list *);
7709577SRod.Evans@Sun.COM extern	void	Dbg_basic_finish(Lm_list *);
7719577SRod.Evans@Sun.COM extern	void	Dbg_basic_files(Lm_list *);
7729577SRod.Evans@Sun.COM extern	void	Dbg_basic_options(Lm_list *);
7739577SRod.Evans@Sun.COM extern	void	Dbg_basic_relocate(Lm_list *);
7749577SRod.Evans@Sun.COM extern	void	Dbg_basic_validate(Lm_list *);
7759577SRod.Evans@Sun.COM 
7761618Srie extern	void	Dbg_bind_global(Rt_map *, Addr, Off, Xword, Pltbindtype,
7771618Srie 		    Rt_map *, Addr, Off, const char *, uint_t);
7781618Srie extern	void	Dbg_bind_plt_summary(Lm_list *, Half, Word, Word, Word, Word,
7791618Srie 		    Word, Word);
7801618Srie #if	defined(_ELF64)
7811618Srie extern	void	Dbg_bind_pltpad_from(Rt_map *, Addr, const char *);
7821618Srie extern	void	Dbg_bind_pltpad_to(Rt_map *, Addr, const char *, const char *);
7831618Srie #endif
7845220Srie extern	void	Dbg_bind_reject(Rt_map *, Rt_map *, const char *, int);
7851618Srie extern	void	Dbg_bind_weak(Rt_map *, Addr, Addr, const char *);
7861618Srie 
78711827SRod.Evans@Sun.COM extern	void	Dbg_cap_candidate(Lm_list *, const char *);
78811827SRod.Evans@Sun.COM extern	void	Dbg_cap_filter(Lm_list *, const char *, Rt_map *);
78911827SRod.Evans@Sun.COM extern	void	Dbg_cap_id(Lm_list *, Lineno, const char *, const char *);
79011734SAli.Bahrami@Sun.COM extern	void	Dbg_cap_mapfile_title(Lm_list *, Lineno);
79111827SRod.Evans@Sun.COM extern	void	Dbg_cap_post_title(Lm_list *, int *);
7928501SRod.Evans@Sun.COM extern	void	Dbg_cap_sec_title(Lm_list *, const char *);
79311827SRod.Evans@Sun.COM extern	void	Dbg_cap_val(Lm_list *, Syscapset *, Syscapset *, Half);
79411827SRod.Evans@Sun.COM extern	void	Dbg_cap_ptr_entry(Lm_list *, dbg_state_t, Xword, const char *);
79511827SRod.Evans@Sun.COM extern	void	Dbg_cap_val_entry(Lm_list *, dbg_state_t, Xword, Xword, Half);
7961618Srie 
79712029SRod.Evans@Sun.COM extern	void	Dbg_dl_dladdr(Rt_map *, void *);
79812029SRod.Evans@Sun.COM extern	void	Dbg_dl_dlclose(Rt_map *, const char *, int);
79912029SRod.Evans@Sun.COM extern	void	Dbg_dl_dldump(Rt_map *, const char *, const char *, int);
80012029SRod.Evans@Sun.COM extern	void	Dbg_dl_dlerror(Rt_map *, const char *);
80112029SRod.Evans@Sun.COM extern	void	Dbg_dl_dlinfo(Rt_map *, const char *, int, void *);
80212029SRod.Evans@Sun.COM extern	void	Dbg_dl_dlopen(Rt_map *, const char *, int *, int);
80312029SRod.Evans@Sun.COM extern	void	Dbg_dl_dlsym(Rt_map *, const char *, int *, const char *, int);
80412029SRod.Evans@Sun.COM extern	void	Dbg_dl_iphdr_enter(Rt_map *, u_longlong_t, u_longlong_t);
80512029SRod.Evans@Sun.COM extern	void	Dbg_dl_iphdr_callback(Lm_list *, struct dl_phdr_info *);
80612029SRod.Evans@Sun.COM extern	void	Dbg_dl_iphdr_mapchange(Lm_list *, u_longlong_t, u_longlong_t);
80712029SRod.Evans@Sun.COM extern	void	Dbg_dl_iphdr_unmap_ret(Lm_list *);
80811690SAli.Bahrami@Sun.COM 
8091618Srie extern	const char *
8101618Srie 		Dbg_demangle_name(const char *);
8111618Srie 
8129273SAli.Bahrami@Sun.COM extern	void	Dbg_ent_entry(Lm_list *, uchar_t, Half, Ent_desc *);
81311734SAli.Bahrami@Sun.COM extern	void	Dbg_ent_print(Lm_list *, uchar_t, Half, APlist *);
8141618Srie 
8151618Srie extern	void	Dbg_file_analyze(Rt_map *);
8168598SRod.Evans@Sun.COM extern	void	Dbg_file_aout(Lm_list *, const char *, Addr, size_t,
8178598SRod.Evans@Sun.COM 		    const char *, Aliste);
818*12254SAli.Bahrami@Oracle.COM extern	void	Dbg_file_ar(Lm_list *, const char *, Boolean);
8197983SAli.Bahrami@Sun.COM extern	void	Dbg_file_ar_rescan(Lm_list *, int, int);
8201618Srie extern	void	Dbg_file_bind_entry(Lm_list *, Bnd_desc *);
8211618Srie extern	void	Dbg_file_bindings(Rt_map *, int);
82211690SAli.Bahrami@Sun.COM extern	void	Dbg_file_bindings_done(Lm_list *);
8233731Srie extern	void	Dbg_file_cleanup(Lm_list *, const char *, Aliste);
8241618Srie extern	void	Dbg_file_cntl(Lm_list *, Aliste, Aliste);
8251618Srie extern	void	Dbg_file_config_dis(Lm_list *, const char *, int);
8261618Srie extern	void	Dbg_file_config_obj(Lm_list *, const char *, const char *,
8271618Srie 		    const char *);
8281618Srie extern	void	Dbg_file_del_rescan(Lm_list *);
8291618Srie extern	void	Dbg_file_delete(Rt_map *);
8308598SRod.Evans@Sun.COM extern	void	Dbg_file_elf(Lm_list *, const char *, Addr, size_t,
8318598SRod.Evans@Sun.COM 		    const char *, Aliste);
8321618Srie extern	void	Dbg_file_filtee(Lm_list *, const char *, const char *, int);
8331618Srie extern	void	Dbg_file_filter(Lm_list *, const char *, const char *, int);
8341618Srie extern	void	Dbg_file_fixname(Lm_list *, const char *, const char *);
8351618Srie extern	void	Dbg_file_generic(Lm_list *, Ifl_desc *);
8363731Srie extern	void	Dbg_file_hdl_action(Grp_hdl *, Rt_map *, int, uint_t);
8371618Srie extern	void	Dbg_file_hdl_collect(Grp_hdl *, const char *);
8381618Srie extern	void	Dbg_file_hdl_title(int);
8391618Srie extern	void	Dbg_file_lazyload(Rt_map *, const char *, const char *);
8401618Srie extern	void	Dbg_file_ldso(Rt_map *, char **, auxv_t *, const char *,
8411618Srie 		    Aliste);
8428598SRod.Evans@Sun.COM extern	void	Dbg_file_mmapobj(Lm_list *, const char *, mmapobj_result_t *,
8438598SRod.Evans@Sun.COM 		    uint_t);
8441618Srie extern	void	Dbg_file_mode_promote(Rt_map *, int);
8452978Srie extern	void	Dbg_file_modified(Lm_list *, const char *, const char *,
8462978Srie 		    const char *, int, int, Elf *, Elf *);
8471618Srie extern	void	Dbg_file_needed(Rt_map *, const char *);
8481618Srie extern	void	Dbg_file_output(Ofl_desc *);
8491618Srie extern	void	Dbg_file_preload(Lm_list *, const char *);
8501618Srie extern	void	Dbg_file_prot(Rt_map *, int);
8516206Sab196087 extern	void	Dbg_file_rejected(Lm_list *, Rej_desc *, Half mach);
8521618Srie extern	void	Dbg_file_reuse(Lm_list *, const char *, const char *);
8531618Srie extern	void	Dbg_file_skip(Lm_list *, const char *, const char *);
8541618Srie 
8556206Sab196087 extern	void	Dbg_got_display(Ofl_desc *, Off, int, Word, size_t);
8561618Srie 
8571618Srie extern	void	Dbg_libs_audit(Lm_list *, const char *, const char *);
8581618Srie extern	void	Dbg_libs_find(Lm_list *, const char *);
8591618Srie extern	void	Dbg_libs_found(Lm_list *, const char *, int);
8607668SRod.Evans@Sun.COM extern	void	Dbg_libs_insecure(Lm_list *, const char *, int);
8619131SRod.Evans@Sun.COM extern	void	Dbg_libs_init(Lm_list *, APlist *, APlist *);
8621618Srie extern	void	Dbg_libs_l(Lm_list *, const char *, const char *);
8636387Srie extern	void	Dbg_libs_path(Lm_list *, const char *, uint_t, const char *);
8641618Srie extern	void	Dbg_libs_req(Lm_list *, const char *, const char *,
8651618Srie 		    const char *);
8669131SRod.Evans@Sun.COM extern	void	Dbg_libs_update(Lm_list *, APlist *, APlist *);
8671618Srie extern	void	Dbg_libs_yp(Lm_list *, const char *);
8681618Srie extern	void	Dbg_libs_ylu(Lm_list *, const char *, const char *, int);
8691618Srie 
87011734SAli.Bahrami@Sun.COM extern	void	Dbg_map_cexp_id(Lm_list *, Boolean, const char *, Lineno,
87111734SAli.Bahrami@Sun.COM 		    const char *);
87211734SAli.Bahrami@Sun.COM extern	void	Dbg_map_dv(Lm_list *, const char *, Lineno);
87311734SAli.Bahrami@Sun.COM extern	void	Dbg_map_dv_entry(Lm_list *, Lineno, int, const char *);
87411734SAli.Bahrami@Sun.COM extern	void	Dbg_map_ent(Lm_list *, Ent_desc *, Ofl_desc *, Lineno);
87511734SAli.Bahrami@Sun.COM extern	void	Dbg_map_ent_ord_title(Lm_list *, const char *);
87611734SAli.Bahrami@Sun.COM extern	void	Dbg_map_hdr_noalloc(Lm_list *, Lineno);
87711734SAli.Bahrami@Sun.COM extern	void	Dbg_map_parse(Lm_list *, const char *, int);
87811734SAli.Bahrami@Sun.COM extern	void	Dbg_map_pass(Lm_list *, Boolean, const char *, Lineno,
87911734SAli.Bahrami@Sun.COM 		    const char *);
88011734SAli.Bahrami@Sun.COM extern	void	Dbg_map_post_title(Lm_list *);
88111734SAli.Bahrami@Sun.COM extern	void	Dbg_map_seg(Ofl_desc *, dbg_state_t, int, Sg_desc *, Lineno);
88211734SAli.Bahrami@Sun.COM extern	void	Dbg_map_seg_order(Ofl_desc *, uchar_t, Half, dbg_state_t,
88311734SAli.Bahrami@Sun.COM 		    Lineno);
88411734SAli.Bahrami@Sun.COM extern	void	Dbg_map_seg_os_order(Lm_list *, Sg_desc *, const char *,
88511734SAli.Bahrami@Sun.COM 		    Word, Lineno);
88611734SAli.Bahrami@Sun.COM extern	void	Dbg_map_size_new(Lm_list *, const char *, const char *, Lineno);
88711734SAli.Bahrami@Sun.COM extern	void	Dbg_map_size_old(Ofl_desc *, Sym_desc *, const char *, Lineno);
88811734SAli.Bahrami@Sun.COM extern	void	Dbg_map_sort_title(Lm_list *, Boolean);
88911734SAli.Bahrami@Sun.COM extern	void	Dbg_map_sort_seg(Lm_list *, uchar_t, Half, Sg_desc *);
8901618Srie extern	void	Dbg_map_symbol(Ofl_desc *, Sym_desc *);
8911618Srie extern	void	Dbg_map_version(Lm_list *, const char *, const char *, int);
8921618Srie 
8931618Srie extern 	void	Dbg_move_adjexpandreloc(Lm_list *, Xword, const char *);
8941618Srie extern 	void	Dbg_move_adjmovereloc(Lm_list *, Xword, Xword, const char *);
8958598SRod.Evans@Sun.COM extern	void	Dbg_move_bad(Lm_list *, ulong_t, const char *, Addr);
8961618Srie extern	void	Dbg_move_data(Rt_map *);
8971618Srie extern 	void	Dbg_move_entry1(Lm_list *, int, Move *, Sym_desc *);
8981618Srie extern 	void	Dbg_move_entry2(Lm_list *, Move *, Word, const char *);
8991618Srie extern 	void	Dbg_move_expand(Lm_list *, Move *, Addr);
9001618Srie extern 	void	Dbg_move_input(Lm_list *, const char *);
9011618Srie extern 	void	Dbg_move_outmove(Lm_list *, const char *);
9021618Srie extern 	void	Dbg_move_outsctadj(Lm_list *, Sym_desc *);
9031618Srie extern 	void	Dbg_move_parexpn(Lm_list *, const char *, const char *);
9041618Srie 
9051618Srie extern	void	Dbg_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
9061618Srie extern	void	Dbg_reloc_apply_val(Lm_list *, int, Xword, Xword);
9071618Srie extern	void	Dbg_reloc_ars_entry(Lm_list *, int, Word, Half, Rel_desc *);
9081618Srie extern	void	Dbg_reloc_copy(Rt_map *, Rt_map *, const char *, int);
9091618Srie extern	void	Dbg_reloc_discard(Lm_list *, Half, Rel_desc *);
91012155SAli.Bahrami@Sun.COM extern	void	Dbg_reloc_doact(Lm_list *, int, Half, Word, Rel_desc *,
91112155SAli.Bahrami@Sun.COM 		    Xword, Xword, rel_desc_sname_func_t);
9121618Srie extern	void	Dbg_reloc_doact_title(Lm_list *);
9131618Srie extern	void	Dbg_reloc_dooutrel(Lm_list *, Word);
9141618Srie extern	void	Dbg_reloc_entry(Lm_list *, const char *, Half, Word, void *,
9151618Srie 		    const char *, const char *, const char *);
9161618Srie extern	void	Dbg_reloc_error(Lm_list *, int, Half, Word, void *,
9171618Srie 		    const char *);
9181618Srie extern	void	Dbg_reloc_generate(Lm_list *, Os_desc *, Word);
9191618Srie extern	void	Dbg_reloc_in(Lm_list *, int, Half, Word, void *, const char *,
9209406SAli.Bahrami@Sun.COM 		    Word, const char *);
9211618Srie extern	void	Dbg_reloc_ors_entry(Lm_list *, int, Word, Half, Rel_desc *);
9221618Srie extern	void	Dbg_reloc_out(Ofl_desc *, int, Word, void *, const char *,
9231618Srie 		    const char *);
9241618Srie extern	void	Dbg_reloc_proc(Lm_list *, Os_desc *, Is_desc *, Is_desc *);
9251618Srie extern	void	Dbg_reloc_run(Rt_map *, uint_t, int, int);
92612155SAli.Bahrami@Sun.COM extern	void	Dbg_reloc_transition(Lm_list *, Half, Word, Rel_desc *,
92712155SAli.Bahrami@Sun.COM 		    rel_desc_sname_func_t);
9289406SAli.Bahrami@Sun.COM extern	void	Dbg_reloc_sloppycomdat(Lm_list *, Sym_desc *);
9291618Srie 
9301618Srie extern	void	Dbg_sec_added(Lm_list *, Os_desc *, Sg_desc *);
9319131SRod.Evans@Sun.COM extern	void	Dbg_sec_backing(Lm_list *);
9321618Srie extern	void	Dbg_sec_created(Lm_list *, Os_desc *, Sg_desc *);
9331618Srie extern	void	Dbg_sec_discarded(Lm_list *, Is_desc *, Is_desc *);
9345892Sab196087 extern	void	Dbg_sec_genstr_compress(Lm_list *, const char *,
9355892Sab196087 		    Xword, Xword);
9361618Srie extern	void	Dbg_sec_group(Lm_list *, Is_desc *, Group_desc *);
93711227SAli.Bahrami@Sun.COM extern	void	Dbg_sec_gnu_comdat(Lm_list *, Is_desc *, Boolean, Boolean);
9381618Srie extern	void	Dbg_sec_in(Lm_list *, Is_desc *);
9391618Srie extern	void	Dbg_sec_order_error(Lm_list *, Ifl_desc *, Word, int);
9401618Srie extern	void	Dbg_sec_order_list(Ofl_desc *, int);
9419406SAli.Bahrami@Sun.COM extern	void	Dbg_sec_redirected(Lm_list *, Is_desc *, const char *);
9421618Srie extern	void	Dbg_sec_strtab(Lm_list *, Os_desc *, Str_tbl *);
9435892Sab196087 extern	void	Dbg_sec_unsup_strmerge(Lm_list *, Is_desc *);
9441618Srie 
94511734SAli.Bahrami@Sun.COM extern	void	Dbg_seg_desc_entry(Lm_list *, uchar_t, Half, int, Sg_desc *,
94611734SAli.Bahrami@Sun.COM 		    Boolean);
9471618Srie extern	void	Dbg_seg_entry(Ofl_desc *, int, Sg_desc *);
9489273SAli.Bahrami@Sun.COM extern	void	Dbg_seg_list(Lm_list *, uchar_t, Half, APlist *);
9491618Srie extern	void	Dbg_seg_os(Ofl_desc *, Os_desc *, int);
9501618Srie extern	void	Dbg_seg_title(Lm_list *);
9511618Srie 
9529273SAli.Bahrami@Sun.COM extern	void	Dbg_shdr_modified(Lm_list *, const char *, uchar_t, Half,
9539406SAli.Bahrami@Sun.COM 		    Word, Shdr *, Shdr *, const char *);
9542647Srie 
9551618Srie extern	void	Dbg_statistics_ar(Ofl_desc *);
9561618Srie extern	void	Dbg_statistics_ld(Ofl_desc *);
9571618Srie 
9581618Srie extern	void	Dbg_support_action(Lm_list *, const char *, const char *,
9591618Srie 		    Support_ndx, const char *);
9601618Srie extern	void	Dbg_support_load(Lm_list *, const char *, const char *);
9611618Srie extern	void	Dbg_support_req(Lm_list *, const char *, int);
9628324SAli.Bahrami@Sun.COM extern	void	Dbg_support_vnone(Lm_list *, const char *);
9631618Srie 
9641618Srie extern	void	Dbg_syminfo_entry(Lm_list *, Word, Syminfo *, Sym *,
9651618Srie 		    const char *, Dyn *);
9661618Srie extern	void	Dbg_syminfo_title(Lm_list *);
9671618Srie 
968*12254SAli.Bahrami@Oracle.COM extern	void	Dbg_syms_ar_checking(Lm_list *, const char *, const char *,
969*12254SAli.Bahrami@Oracle.COM 		    Elf_Arsym *);
970*12254SAli.Bahrami@Oracle.COM extern	void	Dbg_syms_ar_force(Lm_list *, const char *, const char *);
971*12254SAli.Bahrami@Oracle.COM extern	void	Dbg_syms_ar_resolve(Lm_list *, const char *, const char *,
972*12254SAli.Bahrami@Oracle.COM 		    Elf_Arsym *);
973*12254SAli.Bahrami@Oracle.COM extern	void	Dbg_syms_ar_skip(Lm_list *, const char *, Elf_Arsym *);
974*12254SAli.Bahrami@Oracle.COM extern	void	Dbg_syms_ar_title(Lm_list *, const char *, Boolean);
97511827SRod.Evans@Sun.COM extern	void	Dbg_syms_cap_convert(Ofl_desc *, Word, const char *, Sym *);
97611827SRod.Evans@Sun.COM extern	void	Dbg_syms_cap_local(Ofl_desc *, Word, const char *, Sym *,
97711827SRod.Evans@Sun.COM 		    Sym_desc *);
97811827SRod.Evans@Sun.COM extern	void	Dbg_syms_cap_lookup(Rt_map *, uint_t, const char *, uint_t,
97911827SRod.Evans@Sun.COM 		    Half, Syscapset *);
98011827SRod.Evans@Sun.COM extern	void	Dbg_syms_cap_title(Ofl_desc *);
9811618Srie extern	void	Dbg_syms_created(Lm_list *, const char *);
9825549Srie extern	void	Dbg_syms_discarded(Lm_list *, Sym_desc *);
9837064Sab196087 extern	void	Dbg_syms_dup_discarded(Lm_list *, Word ndx, Sym_desc *);
9843492Sab196087 extern	void	Dbg_syms_dup_sort_addr(Lm_list *, const char *, const char *,
9853492Sab196087 		    const char *, Addr);
9861618Srie extern	void	Dbg_syms_entered(Ofl_desc *, Sym *, Sym_desc *);
9871618Srie extern	void	Dbg_syms_entry(Lm_list *, Word, Sym_desc *);
9881618Srie extern	void	Dbg_syms_global(Lm_list *, Word, const char *);
9891618Srie extern	void	Dbg_syms_ignore(Ofl_desc *, Sym_desc *);
9904716Sab196087 extern	void	Dbg_syms_ignore_gnuver(Rt_map *, const char *, Word, Versym);
9911618Srie extern	void	Dbg_syms_lazy_rescan(Lm_list *, const char *);
9921618Srie extern	void	Dbg_syms_lookup(Rt_map *, const char *, const char *);
9931618Srie #if	!(defined(_ELF64))
9941618Srie extern	void	Dbg_syms_lookup_aout(Lm_list *, const char *);
9951618Srie #endif
9961618Srie extern	void	Dbg_syms_new(Ofl_desc *, Sym *, Sym_desc *);
9971618Srie extern	void	Dbg_syms_old(Ofl_desc *, Sym_desc *);
9981618Srie extern	void	Dbg_syms_process(Lm_list *, Ifl_desc *);
9991618Srie extern	void	Dbg_syms_reduce(Ofl_desc *, int, Sym_desc *, int,
10001618Srie 		    const char *);
10011618Srie extern	void	Dbg_syms_reloc(Ofl_desc *, Sym_desc *);
10021618Srie extern	void	Dbg_syms_resolved(Ofl_desc *, Sym_desc *);
10031618Srie extern	void	Dbg_syms_resolving(Ofl_desc *, Word, const char *, int, int,
10041618Srie 		    Sym *, Sym *, Sym_desc *, Ifl_desc *);
10051618Srie extern	void	Dbg_syms_sec_entry(Lm_list *, Word, Sg_desc *, Os_desc *);
10061618Srie extern	void	Dbg_syms_sec_title(Lm_list *);
10071618Srie extern	void	Dbg_syms_spec_title(Lm_list *);
10081618Srie extern	void	Dbg_syms_updated(Ofl_desc *, Sym_desc *, const char *);
10091618Srie extern	void	Dbg_syms_up_title(Lm_list *);
101010580SAli.Bahrami@Sun.COM extern	void	Dbg_syms_wrap(Lm_list *, Word, const char *, const char *);
10111618Srie 
10121618Srie extern	void	Dbg_tls_modactivity(Lm_list *, void *, uint_t);
10132145Srie extern	void	Dbg_tls_static_block(Lm_list *, void *, ulong_t, ulong_t);
10142145Srie extern	void	Dbg_tls_static_resv(Rt_map *, ulong_t, ulong_t);
10151618Srie 
10161618Srie extern	void	Dbg_util_call_array(Rt_map *, void *, int, Word);
10171618Srie extern	void	Dbg_util_call_fini(Rt_map *);
10181618Srie extern	void	Dbg_util_call_init(Rt_map *, int);
10191618Srie extern	void	Dbg_util_call_main(Rt_map *);
10201618Srie extern	void	Dbg_util_collect(Rt_map *, int, int);
10211618Srie extern	void	Dbg_util_dbnotify(Lm_list *, rd_event_e, r_state_e);
10221618Srie extern	void	Dbg_util_edge_in(Lm_list *, Rt_map *, uint_t, Rt_map *,
10231618Srie 		    int, int);
10241618Srie extern	void	Dbg_util_edge_out(Rt_map *, Rt_map *);
10251618Srie extern	void	Dbg_util_intoolate(Rt_map *);
10261824Srie extern	void	Dbg_util_lcinterface(Rt_map *, int, char *);
10271618Srie extern	void	Dbg_util_nl(Lm_list *, int);
10281618Srie extern	void	Dbg_util_no_init(Rt_map *);
10291618Srie extern	void	Dbg_util_scc_entry(Rt_map *, uint_t);
10301618Srie extern	void	Dbg_util_scc_title(Lm_list *, int);
10319577SRod.Evans@Sun.COM extern	void	Dbg_util_str(Lm_list *, const char *);
10321618Srie 
10331618Srie extern	void	Dbg_unused_file(Lm_list *, const char *, int, uint_t);
10341824Srie extern	void	Dbg_unused_lcinterface(Rt_map *, Rt_map *, int);
10356387Srie extern	void	Dbg_unused_path(Lm_list *, const char *, uint_t, uint_t,
10366387Srie 		    const char *);
10371618Srie extern	void	Dbg_unused_sec(Lm_list *, Is_desc *);
10381618Srie extern	void	Dbg_unused_unref(Rt_map *, const char *);
10391618Srie 
10401618Srie extern	void	Dbg_ver_avail_entry(Lm_list *, Ver_index *, const char *);
10411618Srie extern	void	Dbg_ver_avail_title(Lm_list *, const char *);
10421618Srie extern	void	Dbg_ver_def_title(Lm_list *, const char *);
10431618Srie extern	void	Dbg_ver_desc_entry(Lm_list *, Ver_desc *);
104411690SAli.Bahrami@Sun.COM extern	void	Dbg_ver_need_done(Lm_list *);
10451618Srie extern	void	Dbg_ver_need_entry(Lm_list *, Half, const char *,
10461618Srie 		    const char *);
10471618Srie extern	void	Dbg_ver_need_title(Lm_list *, const char *);
10481618Srie extern	void	Dbg_ver_nointerface(Lm_list *, const char *);
10491618Srie extern	void	Dbg_ver_symbol(Lm_list *, const char *);
10500Sstevel@tonic-gate 
10510Sstevel@tonic-gate /*
10521618Srie  * Define Elf_*() interface flags.
10531618Srie  */
10541618Srie #define	ELF_DBG_ELFDUMP		1
10551618Srie #define	ELF_DBG_RTLD		2
10561618Srie #define	ELF_DBG_LD		3
105710792SRod.Evans@Sun.COM #define	ELF_DBG_LD_ACT		4
10581618Srie 
10591618Srie /*
10601618Srie  * Define generic Elf_*() interfaces.
10611618Srie  */
10621618Srie extern	void Elf_syminfo_entry(Lm_list *, Word, Syminfo *, const char *,
10631618Srie 	    const char *);
10641618Srie extern	void Elf_syminfo_title(Lm_list *);
10651618Srie 
10661618Srie /*
10671618Srie  * Establish ELF32 and ELF64 class Elf_*() interfaces.
10680Sstevel@tonic-gate  */
10691618Srie #if	defined(_ELF64)
10701618Srie 
10711618Srie #define	Elf_cap_entry		Elf64_cap_entry
10721618Srie #define	Elf_cap_title		Elf64_cap_title
10731618Srie 
10741618Srie #define	Elf_demangle_name	Elf64_demangle_name
10751618Srie #define	Elf_dyn_entry		Elf64_dyn_entry
10763850Sab196087 #define	Elf_dyn_null_entry	Elf64_dyn_null_entry
10771618Srie #define	Elf_dyn_title		Elf64_dyn_title
10781618Srie 
10791618Srie #define	Elf_ehdr		Elf64_ehdr
10801618Srie 
10811618Srie #define	Elf_got_entry		Elf64_got_entry
10821618Srie #define	Elf_got_title		Elf64_got_title
10831618Srie 
10841618Srie #define	Elf_reloc_apply_reg	Elf64_reloc_apply_reg
10851618Srie #define	Elf_reloc_apply_val	Elf64_reloc_apply_val
10861618Srie #define	Elf_reloc_entry_1	Elf64_reloc_entry_1
10871618Srie #define	Elf_reloc_entry_2	Elf64_reloc_entry_2
10881618Srie #define	Elf_reloc_title		Elf64_reloc_title
10891618Srie 
10901618Srie #define	Elf_phdr		Elf64_phdr
10911618Srie 
10921618Srie #define	Elf_shdr		Elf64_shdr
10931618Srie 
10941618Srie #define	Elf_syms_table_entry	Elf64_syms_table_entry
10951618Srie #define	Elf_syms_table_title	Elf64_syms_table_title
10961618Srie 
10971618Srie #define	Elf_ver_def_title	Elf64_ver_def_title
10981618Srie #define	Elf_ver_line_1		Elf64_ver_line_1
10991618Srie #define	Elf_ver_line_2		Elf64_ver_line_2
11001618Srie #define	Elf_ver_line_3		Elf64_ver_line_3
11011618Srie #define	Elf_ver_line_4		Elf64_ver_line_4
11021618Srie #define	Elf_ver_line_5		Elf64_ver_line_5
11031618Srie #define	Elf_ver_need_title	Elf64_ver_need_title
11041618Srie 
11051618Srie #else
11061618Srie 
11071618Srie #define	Elf_cap_entry		Elf32_cap_entry
11081618Srie #define	Elf_cap_title		Elf32_cap_title
11091618Srie 
11101618Srie #define	Elf_demangle_name	Elf32_demangle_name
11111618Srie #define	Elf_dyn_entry		Elf32_dyn_entry
11123850Sab196087 #define	Elf_dyn_null_entry	Elf32_dyn_null_entry
11131618Srie #define	Elf_dyn_title		Elf32_dyn_title
11141618Srie 
11151618Srie #define	Elf_ehdr		Elf32_ehdr
11160Sstevel@tonic-gate 
11171618Srie #define	Elf_got_entry		Elf32_got_entry
11181618Srie #define	Elf_got_title		Elf32_got_title
11191618Srie 
11201618Srie #define	Elf_reloc_apply_reg	Elf32_reloc_apply_reg
11211618Srie #define	Elf_reloc_apply_val	Elf32_reloc_apply_val
11221618Srie #define	Elf_reloc_entry_1	Elf32_reloc_entry_1
11231618Srie #define	Elf_reloc_entry_2	Elf32_reloc_entry_2
11241618Srie #define	Elf_reloc_title		Elf32_reloc_title
11251618Srie 
11261618Srie #define	Elf_phdr		Elf32_phdr
11271618Srie 
11281618Srie #define	Elf_shdr		Elf32_shdr
11291618Srie 
11301618Srie #define	Elf_syms_table_entry	Elf32_syms_table_entry
11311618Srie #define	Elf_syms_table_title	Elf32_syms_table_title
11321618Srie 
11331618Srie #define	Elf_ver_def_title	Elf32_ver_def_title
11341618Srie #define	Elf_ver_line_1		Elf32_ver_line_1
11351618Srie #define	Elf_ver_line_2		Elf32_ver_line_2
11361618Srie #define	Elf_ver_line_3		Elf32_ver_line_3
11371618Srie #define	Elf_ver_line_4		Elf32_ver_line_4
11381618Srie #define	Elf_ver_line_5		Elf32_ver_line_5
11391618Srie #define	Elf_ver_need_title	Elf32_ver_need_title
11401618Srie 
11411618Srie #endif
11421618Srie 
114311827SRod.Evans@Sun.COM extern	void	Elf_cap_entry(Lm_list *, Cap *, int, const char *, size_t,
114411827SRod.Evans@Sun.COM 		    Half);
11451618Srie extern	void	Elf_cap_title(Lm_list *);
11460Sstevel@tonic-gate 
11471618Srie extern	const char \
11481618Srie 		*Elf_demangle_name(const char *);
11499273SAli.Bahrami@Sun.COM extern	void	Elf_dyn_entry(Lm_list *, Dyn *, int, const char *,
11509273SAli.Bahrami@Sun.COM 		    uchar_t, Half);
11513850Sab196087 extern	void	Elf_dyn_null_entry(Lm_list *, Dyn *, int, int);
11521618Srie extern	void	Elf_dyn_title(Lm_list *);
11531618Srie 
11541618Srie extern	void	Elf_ehdr(Lm_list *, Ehdr *, Shdr *);
11551618Srie 
11566206Sab196087 extern	void	Elf_got_entry(Lm_list *, Sword, Addr, Xword, Half,
11576206Sab196087 		    uchar_t, uchar_t, Word, void *, const char *);
11581618Srie extern	void	Elf_got_title(Lm_list *);
11591618Srie 
11609273SAli.Bahrami@Sun.COM extern	void	Elf_phdr(Lm_list *, uchar_t, Half, Phdr *);
11611618Srie 
11621618Srie extern	void	Elf_reloc_apply_val(Lm_list *, int, Xword, Xword);
11631618Srie extern	void	Elf_reloc_apply_reg(Lm_list *, int, Half, Xword, Xword);
11641618Srie extern	void	Elf_reloc_entry_1(Lm_list *, int, const char *, Half, Word,
11651618Srie 		    void *, const char *, const char *, const char *);
11661618Srie extern	void	Elf_reloc_entry_2(Lm_list *, int, const char *, Word,
11671618Srie 		    const char *, Off, Sxword, const char *, const char *,
11681618Srie 		    const char *);
11691618Srie extern	void	Elf_reloc_title(Lm_list *, int, Word);
11701618Srie 
11719273SAli.Bahrami@Sun.COM extern	void	Elf_shdr(Lm_list *, uchar_t, Half, Shdr *);
11721618Srie 
11739273SAli.Bahrami@Sun.COM extern	void	Elf_syms_table_entry(Lm_list *, int, const char *, uchar_t,
11749273SAli.Bahrami@Sun.COM 		    Half, Sym *, Versym, int, const char *, const char *);
11751618Srie extern	void	Elf_syms_table_title(Lm_list *, int);
11761618Srie 
11771618Srie extern	void	Elf_ver_def_title(Lm_list *);
11781618Srie extern	void	Elf_ver_line_1(Lm_list *, const char *, const char *,
11791618Srie 		    const char *, const char *);
11801618Srie extern	void	Elf_ver_line_2(Lm_list *, const char *, const char *);
11811618Srie extern	void	Elf_ver_line_3(Lm_list *, const char *, const char *,
11821618Srie 		    const char *);
11831618Srie extern	void	Elf_ver_line_4(Lm_list *, const char *);
11841618Srie extern	void	Elf_ver_line_5(Lm_list *, const char *, const char *);
11854716Sab196087 extern	void	Elf_ver_need_title(Lm_list *, int);
11860Sstevel@tonic-gate 
11873850Sab196087 
11880Sstevel@tonic-gate #ifdef	__cplusplus
11890Sstevel@tonic-gate }
11900Sstevel@tonic-gate #endif
11910Sstevel@tonic-gate 
11920Sstevel@tonic-gate #endif /* _DEBUG_H */
1193