Commit | Line | Data |
---|---|---|
d2e6263c | 1 | /* Objective-C language support definitions for GDB, the GNU debugger. |
437666f8 | 2 | |
197e01b6 | 3 | Copyright (C) 1992, 2005 Free Software Foundation, Inc. |
b81654f1 | 4 | |
437666f8 | 5 | Contributed by Apple Computer, Inc. |
b81654f1 | 6 | |
437666f8 AC |
7 | This program is free software; you can redistribute it and/or modify |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2 of the License, or | |
10 | (at your option) any later version. | |
b81654f1 | 11 | |
437666f8 AC |
12 | This program is distributed in the hope that it will be useful, |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
b81654f1 | 16 | |
437666f8 AC |
17 | You should have received a copy of the GNU General Public License |
18 | along with this program; if not, write to the Free Software | |
197e01b6 EZ |
19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 | Boston, MA 02110-1301, USA. */ | |
b81654f1 | 21 | |
2cf6873c AF |
22 | #if !defined(OBJC_LANG_H) |
23 | #define OBJC_LANG_H | |
24 | ||
25 | struct stoken; | |
26 | ||
b81654f1 | 27 | struct value; |
fe898f56 | 28 | struct block; |
b81654f1 | 29 | |
d2e6263c | 30 | extern int objc_parse (void); /* Defined in c-exp.y */ |
b81654f1 | 31 | |
d2e6263c | 32 | extern void objc_error (char *); /* Defined in c-exp.y */ |
b81654f1 | 33 | |
d2e6263c | 34 | extern CORE_ADDR lookup_objc_class (char *classname); |
c253954e | 35 | extern CORE_ADDR lookup_child_selector (char *methodname); |
b81654f1 | 36 | |
9a3d7dfd | 37 | extern char *objc_demangle (const char *mangled, int options); |
b81654f1 | 38 | |
36e53c63 | 39 | extern int find_objc_msgcall (CORE_ADDR pc, CORE_ADDR *new_pc); |
b81654f1 | 40 | |
36e53c63 | 41 | extern char *parse_selector (char *method, char **selector); |
b81654f1 | 42 | |
36e53c63 AF |
43 | extern char *parse_method (char *method, char *type, |
44 | char **class, char **category, | |
45 | char **selector); | |
b81654f1 | 46 | |
36e53c63 AF |
47 | extern char *find_imps (struct symtab *symtab, struct block *block, |
48 | char *method, struct symbol **syms, | |
49 | unsigned int *nsym, unsigned int *ndebug); | |
50 | ||
51 | extern struct value *value_nsstring (char *ptr, int len); | |
2cf6873c AF |
52 | |
53 | /* for parsing Objective C */ | |
54 | extern void start_msglist (void); | |
55 | extern void add_msglist (struct stoken *str, int addcolon); | |
56 | extern int end_msglist (void); | |
57 | ||
b9362cc7 AC |
58 | struct symbol *lookup_struct_typedef (char *name, struct block *block, |
59 | int noerr); | |
60 | ||
2cf6873c | 61 | #endif |