1 /* Objective-C language support definitions for GDB, the GNU debugger.
3 Copyright (C) 1992-2018 Free Software Foundation, Inc.
5 Contributed by Apple Computer, Inc.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #if !defined(OBJC_LANG_H)
23 #include "cp-support.h" /* For VEC (const_char_ptr) */
31 extern CORE_ADDR
lookup_objc_class (struct gdbarch
*gdbarch
,
32 const char *classname
);
33 extern CORE_ADDR
lookup_child_selector (struct gdbarch
*gdbarch
,
34 const char *methodname
);
36 extern char *objc_demangle (const char *mangled
, int options
);
38 extern int find_objc_msgcall (CORE_ADDR pc
, CORE_ADDR
*new_pc
);
41 find_imps (const char *method
, VEC (const_char_ptr
) **symbol_names
);
43 extern struct value
*value_nsstring (struct gdbarch
*gdbarch
,
46 /* for parsing Objective C */
47 extern void start_msglist (void);
48 extern void add_msglist (struct stoken
*str
, int addcolon
);
49 extern int end_msglist (struct parser_state
*);
51 struct symbol
*lookup_struct_typedef (const char *name
,
52 const struct block
*block
,