]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/objc-lang.h
Remove cleanup from print_mention_exception
[thirdparty/binutils-gdb.git] / gdb / objc-lang.h
CommitLineData
d2e6263c 1/* Objective-C language support definitions for GDB, the GNU debugger.
437666f8 2
e2882c85 3 Copyright (C) 1992-2018 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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
437666f8 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 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
b81654f1 19
2cf6873c
AF
20#if !defined(OBJC_LANG_H)
21#define OBJC_LANG_H
22
f8eba3c6
TT
23#include "cp-support.h" /* For VEC (const_char_ptr) */
24
2cf6873c
AF
25struct stoken;
26
b81654f1 27struct value;
fe898f56 28struct block;
410a0ff2 29struct parser_state;
b81654f1 30
3b7538c0 31extern CORE_ADDR lookup_objc_class (struct gdbarch *gdbarch,
a121b7c1 32 const char *classname);
3b7538c0 33extern CORE_ADDR lookup_child_selector (struct gdbarch *gdbarch,
a121b7c1 34 const char *methodname);
b81654f1 35
9a3d7dfd 36extern char *objc_demangle (const char *mangled, int options);
b81654f1 37
36e53c63 38extern int find_objc_msgcall (CORE_ADDR pc, CORE_ADDR *new_pc);
b81654f1 39
9b2f8581
TT
40extern const char *find_imps (const char *method,
41 std::vector<const char *> *symbol_names);
36e53c63 42
3b7538c0
UW
43extern struct value *value_nsstring (struct gdbarch *gdbarch,
44 char *ptr, int len);
2cf6873c
AF
45
46/* for parsing Objective C */
47extern void start_msglist (void);
48extern void add_msglist (struct stoken *str, int addcolon);
410a0ff2 49extern int end_msglist (struct parser_state *);
2cf6873c 50
a121b7c1
PA
51struct symbol *lookup_struct_typedef (const char *name,
52 const struct block *block,
b9362cc7
AC
53 int noerr);
54
2cf6873c 55#endif