]>
Commit | Line | Data |
---|---|---|
d2e6263c | 1 | /* Objective-C language support definitions for GDB, the GNU debugger. |
b81654f1 MS |
2 | Copyright 1992 Free Software Foundation, Inc. |
3 | ||
4 | This file is part of GDB. | |
5 | ||
6 | This program is free software; you can redistribute it and/or modify | |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2 of the License, or | |
9 | (at your option) any later version. | |
10 | ||
11 | This program is distributed in the hope that it will be useful, | |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
15 | ||
16 | You should have received a copy of the GNU General Public License | |
17 | along with this program; if not, write to the Free Software | |
18 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | |
19 | ||
d2e6263c | 20 | #ifdef __STDC__ /* Forward decls for prototypes. */ |
b81654f1 MS |
21 | struct value; |
22 | #endif | |
23 | ||
d2e6263c | 24 | extern int objc_parse (void); /* Defined in c-exp.y */ |
b81654f1 | 25 | |
d2e6263c | 26 | extern void objc_error (char *); /* Defined in c-exp.y */ |
b81654f1 | 27 | |
d2e6263c MS |
28 | extern int c_val_print (struct type *, char *, int, |
29 | CORE_ADDR, struct ui_file *, int, | |
30 | int, int, enum val_prettyprint); | |
b81654f1 | 31 | |
d2e6263c MS |
32 | extern int c_value_print (struct value *, struct ui_file *, |
33 | int, enum val_prettyprint); | |
b81654f1 | 34 | |
d2e6263c MS |
35 | extern CORE_ADDR lookup_objc_class (char *classname); |
36 | extern int lookup_child_selector (char *methodname); | |
b81654f1 | 37 | |
d2e6263c | 38 | char *objc_demangle (const char *mangled); |
b81654f1 MS |
39 | |
40 | int find_objc_msgcall (CORE_ADDR pc, CORE_ADDR *new_pc); | |
41 | ||
d2e6263c | 42 | char *parse_selector (char *method, char **selector); |
b81654f1 | 43 | |
d2e6263c MS |
44 | char *parse_method (char *method, char *type, |
45 | char **class, char **category, | |
46 | char **selector); | |
b81654f1 | 47 | |
d2e6263c MS |
48 | void find_methods (struct symtab *symtab, char type, |
49 | const char *class, const char *category, | |
50 | const char *selector, struct symbol **syms, | |
51 | unsigned int *nsym, unsigned int *ndebug); | |
b81654f1 | 52 | |
d2e6263c MS |
53 | char *find_imps (struct symtab *symtab, struct block *block, |
54 | char *method, struct symbol **syms, | |
55 | unsigned int *nsym, unsigned int *ndebug); |