NetBSD/sys/ddb/db_sym.h

153 lines
4.9 KiB
C
Raw Normal View History

/* $NetBSD: db_sym.h,v 1.13 2000/05/25 19:57:36 jhawk Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Mach Operating System
* Copyright (c) 1991,1990 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
1993-03-21 12:45:37 +03:00
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* Author: Alessandro Forin, Carnegie Mellon University
* Date: 8/90
*/
/*
* This module can handle multiple symbol tables
*/
typedef struct {
const char *name; /* symtab name */
1993-03-21 12:45:37 +03:00
char *start; /* symtab location */
char *end;
char *private; /* optional machdep pointer */
} db_symtab_t;
extern db_symtab_t *db_last_symtab; /* where last symbol was found */
/*
* Symbol representation is specific to the symtab style:
* BSD compilers use dbx' nlist, other compilers might use
* a different one
*/
typedef char * db_sym_t; /* opaque handle on symbols */
#define DB_SYM_NULL ((db_sym_t)0)
/*
* Non-stripped symbol tables will have duplicates, for instance
* the same string could match a parameter name, a local var, a
* global var, etc.
* We are most concern with the following matches.
*/
typedef int db_strategy_t; /* search strategy */
#define DB_STGY_ANY 0 /* anything goes */
#define DB_STGY_XTRN 1 /* only external symbols */
#define DB_STGY_PROC 2 /* only procedures */
/*
* Internal db_forall function calling convention:
*
* (*db_forall_func)(stab, sym, name, suffix, prefix, arg);
*
* stab is the symbol table, symbol the (opaque) symbol pointer,
* name the name of the symbol, suffix a string representing
* the type, prefix an initial ignorable function prefix (e.g. "_"
* in a.out), and arg an opaque argument to be passed in.
*/
typedef void (db_forall_func_t)
__P((db_symtab_t *, db_sym_t, char *, char *, int, void *));
/*
* A symbol table may be in one of many formats. All symbol tables
* must be of the same format as the master kernel symbol table.
*/
typedef struct {
const char *sym_format;
boolean_t (*sym_init) __P((int, void *, void *, const char *));
db_sym_t (*sym_lookup) __P((db_symtab_t *, char *));
db_sym_t (*sym_search) __P((db_symtab_t *, db_addr_t, db_strategy_t,
db_expr_t *));
void (*sym_value) __P((db_symtab_t *, db_sym_t, char **,
db_expr_t *));
boolean_t (*sym_line_at_pc) __P((db_symtab_t *, db_sym_t,
char **, int *, db_expr_t));
boolean_t (*sym_numargs) __P((db_symtab_t *, db_sym_t, int *,
char **));
void (*sym_forall) __P((db_symtab_t *,
db_forall_func_t *db_forall_func, void *));
} db_symformat_t;
1993-03-21 12:45:37 +03:00
extern boolean_t db_qualify_ambiguous_names;
/* if TRUE, check across symbol tables
* for multiple occurrences of a name.
* Might slow down quite a bit */
extern unsigned int db_maxoff; /* like gdb's "max-symbolic-offset" */
1993-03-21 12:45:37 +03:00
/*
* Functions exported by the symtable module
*/
int db_add_symbol_table __P((char *, char *, const char *, char *));
1993-03-21 12:45:37 +03:00
/* extend the list of symbol tables */
1994-10-09 11:19:29 +03:00
void db_del_symbol_table __P((char *));
/* remove a symbol table from list */
1996-02-05 04:56:47 +03:00
boolean_t db_eqname __P((char *, char *, int));
/* strcmp, modulo leading char */
1994-10-09 11:19:29 +03:00
int db_value_of_name __P((char *, db_expr_t *));
1993-03-21 12:45:37 +03:00
/* find symbol value given name */
1996-02-05 04:56:47 +03:00
db_sym_t db_lookup __P((char *));
void db_sifting __P((char *, int));
/* print partially matching symbol names */
1996-02-05 04:56:47 +03:00
boolean_t db_symbol_is_ambiguous __P((db_sym_t));
1994-10-09 11:19:29 +03:00
db_sym_t db_search_symbol __P((db_addr_t, db_strategy_t, db_expr_t *));
1993-03-21 12:45:37 +03:00
/* find symbol given value */
1994-10-09 11:19:29 +03:00
void db_symbol_values __P((db_sym_t, char **, db_expr_t *));
1993-03-21 12:45:37 +03:00
/* return name and value of symbol */
#define db_find_sym_and_offset(val,namep,offp) \
db_symbol_values(db_search_symbol(val,DB_STGY_ANY,offp),namep,0)
/* find name&value given approx val */
#define db_find_xtrn_sym_and_offset(val,namep,offp) \
db_symbol_values(db_search_symbol(val,DB_STGY_XTRN,offp),namep,0)
/* ditto, but no locals */
void db_printsym __P((db_expr_t, db_strategy_t, void(*)(const char *, ...)));
1993-03-21 12:45:37 +03:00
/* print closest symbol to a value */
1996-02-05 04:56:47 +03:00
boolean_t db_line_at_pc __P((db_sym_t, char **, int *, db_expr_t));
int db_sym_numargs __P((db_sym_t, int *, char **));
#ifdef DB_AOUT_SYMBOLS
extern db_symformat_t db_symformat_aout;
#endif
#ifdef DB_ELF_SYMBOLS
extern db_symformat_t db_symformat_elf;
#endif