2 * Mach Operating System
3 * Copyright (c) 1991,1990 Carnegie Mellon University
6 * Permission to use, copy, modify and distribute this software and its
7 * documentation is hereby granted, provided that both the copyright
8 * notice and this permission notice appear in all copies of the
9 * software, derivative works or modified versions, and any portions
10 * thereof, and that both notices appear in supporting documentation.
12 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
13 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
14 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
16 * Carnegie Mellon requests users of this software to return to
18 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
19 * School of Computer Science
20 * Carnegie Mellon University
21 * Pittsburgh PA 15213-3890
23 * any improvements or extensions that they make and grant Carnegie the
24 * rights to redistribute these changes.
27 * Author: David B. Golub, Carnegie Mellon University
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
34 #include <sys/param.h>
35 #include <sys/systm.h>
38 #include <ddb/db_sym.h>
43 * Multiple symbol tables
46 #define MAXNOSYMTABS 3 /* mach, ux, emulator */
49 static db_symtab_t db_symtabs
[MAXNOSYMTABS
] = {{0,},};
50 static int db_nsymtab
= 0;
52 static db_symtab_t
*db_last_symtab
; /* where last symbol was found */
54 static c_db_sym_t
db_lookup( const char *symstr
);
55 static char *db_qualify(c_db_sym_t sym
, char *symtabname
);
56 static boolean_t
db_symbol_is_ambiguous(c_db_sym_t sym
);
57 static boolean_t
db_line_at_pc(c_db_sym_t
, char **, int *, db_expr_t
);
60 * Add symbol table, with given name, to list of symbol tables.
63 db_add_symbol_table(start
, end
, name
, ref
)
69 if (db_nsymtab
>= MAXNOSYMTABS
) {
70 printf ("No slots left for %s symbol table", name
);
71 panic ("db_sym.c: db_add_symbol_table");
74 db_symtabs
[db_nsymtab
].start
= start
;
75 db_symtabs
[db_nsymtab
].end
= end
;
76 db_symtabs
[db_nsymtab
].name
= name
;
77 db_symtabs
[db_nsymtab
].private = ref
;
82 * db_qualify("vm_map", "ux") returns "unix:vm_map".
84 * Note: return value points to static data whose content is
85 * overwritten by each call... but in practice this seems okay.
88 db_qualify(sym
, symtabname
)
90 register char *symtabname
;
95 db_symbol_values(sym
, &symname
, 0);
96 snprintf(tmp
, sizeof(tmp
), "%s:%s", symtabname
, symname
);
102 db_eqname(src
, dst
, c
)
107 if (!strcmp(src
, dst
))
110 return (!strcmp(src
+1,dst
));
115 db_value_of_name(name
, valuep
)
121 sym
= db_lookup(name
);
122 if (sym
== C_DB_SYM_NULL
)
124 db_symbol_values(sym
, &name
, valuep
);
131 * If the symbol has a qualifier (e.g., ux:vm_map),
132 * then only the specified symbol table will be searched;
133 * otherwise, all symbol tables will be searched.
141 int symtab_start
= 0;
142 int symtab_end
= db_nsymtab
;
143 register const char *cp
;
146 * Look for, remove, and remember any symbol table specifier.
148 for (cp
= symstr
; *cp
; cp
++) {
150 for (i
= 0; i
< db_nsymtab
; i
++) {
151 int n
= strlen(db_symtabs
[i
].name
);
154 n
== (cp
- symstr
) &&
155 strncmp(symstr
, db_symtabs
[i
].name
, n
) == 0
162 if (i
== db_nsymtab
) {
163 db_error("invalid symbol table name");
170 * Look in the specified set of symbol tables.
171 * Return on first match.
173 for (i
= symtab_start
; i
< symtab_end
; i
++) {
174 sp
= X_db_lookup(&db_symtabs
[i
], symstr
);
176 db_last_symtab
= &db_symtabs
[i
];
184 * If TRUE, check across symbol tables for multiple occurrences
185 * of a name. Might slow things down quite a bit.
187 static volatile boolean_t db_qualify_ambiguous_names
= FALSE
;
190 * Does this symbol name appear in more than one symbol table?
191 * Used by db_symbol_values to decide whether to qualify a symbol.
194 db_symbol_is_ambiguous(sym
)
197 const char *sym_name
;
200 boolean_t found_once
= FALSE
;
202 if (!db_qualify_ambiguous_names
)
205 db_symbol_values(sym
, &sym_name
, 0);
206 for (i
= 0; i
< db_nsymtab
; i
++) {
207 if (X_db_lookup(&db_symtabs
[i
], sym_name
)) {
217 * Find the closest symbol to val, and return its name
218 * and the difference between val and the symbol found.
221 db_search_symbol( val
, strategy
, offp
)
222 register db_addr_t val
;
223 db_strategy_t strategy
;
230 c_db_sym_t ret
= C_DB_SYM_NULL
, sym
;
233 for (i
= 0; i
< db_nsymtab
; i
++) {
234 sym
= X_db_search_symbol(&db_symtabs
[i
], val
, strategy
, &newdiff
);
235 if (newdiff
< diff
) {
236 db_last_symtab
= &db_symtabs
[i
];
246 * Return name and value of a symbol
249 db_symbol_values(sym
, namep
, valuep
)
256 if (sym
== DB_SYM_NULL
) {
261 X_db_symbol_values(db_last_symtab
, sym
, namep
, &value
);
263 if (db_symbol_is_ambiguous(sym
))
264 *namep
= db_qualify(sym
, db_last_symtab
->name
);
271 * Print a the closest symbol to value
273 * After matching the symbol according to the given strategy
274 * we print it in the name+offset format, provided the symbol's
275 * value is close enough (eg smaller than db_maxoff).
276 * We also attempt to print [filename:linenum] when applicable
277 * (eg for procedure names).
279 * If we could not find a reasonable name+offset representation,
280 * then we just print the value in hex. Small values might get
281 * bogus symbol associations, e.g. 3 might get some absolute
282 * value like _INCLUDE_VERSION or something, therefore we do
283 * not accept symbols whose value is "small" (and use plain hex).
286 db_expr_t db_maxoff
= 0x10000;
289 db_printsym(off
, strategy
)
291 db_strategy_t strategy
;
300 cursym
= db_search_symbol(off
, strategy
, &d
);
301 db_symbol_values(cursym
, &name
, &value
);
304 if (value
>= DB_SMALL_VALUE_MIN
&& value
<= DB_SMALL_VALUE_MAX
) {
305 db_printf("%+#lr", (long)off
);
308 if (name
== 0 || d
>= (unsigned long)db_maxoff
) {
309 db_printf("%#lr", (unsigned long)off
);
313 db_printf("%#lr = %s", (unsigned long)off
, name
);
315 db_printf("%s", name
);
318 db_printf("+%+#lr", (long)d
);
319 if (strategy
== DB_STGY_PROC
) {
320 if (db_line_at_pc(cursym
, &filename
, &linenum
, off
))
321 db_printf(" [%s:%d]", filename
, linenum
);
326 db_line_at_pc( sym
, filename
, linenum
, pc
)
332 return X_db_line_at_pc( db_last_symtab
, sym
, filename
, linenum
, pc
);
336 db_sym_numargs(sym
, nargp
, argnames
)
341 return X_db_sym_numargs(db_last_symtab
, sym
, nargp
, argnames
);