* gdb.texinfo (Configuring the current ABI): Document "set cp-abi"
[deliverable/binutils-gdb.git] / gdb / objc-lang.h
CommitLineData
d2e6263c 1/* Objective-C language support definitions for GDB, the GNU debugger.
437666f8 2
b81654f1
MS
3 Copyright 1992 Free Software Foundation, Inc.
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
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
b81654f1 21
b81654f1 22struct value;
fe898f56 23struct block;
b81654f1 24
d2e6263c 25extern int objc_parse (void); /* Defined in c-exp.y */
b81654f1 26
d2e6263c 27extern void objc_error (char *); /* Defined in c-exp.y */
b81654f1 28
d2e6263c
MS
29extern int c_val_print (struct type *, char *, int,
30 CORE_ADDR, struct ui_file *, int,
31 int, int, enum val_prettyprint);
b81654f1 32
d2e6263c
MS
33extern int c_value_print (struct value *, struct ui_file *,
34 int, enum val_prettyprint);
b81654f1 35
d2e6263c
MS
36extern CORE_ADDR lookup_objc_class (char *classname);
37extern int lookup_child_selector (char *methodname);
b81654f1 38
36e53c63 39extern char *objc_demangle (const char *mangled);
b81654f1 40
36e53c63 41extern int find_objc_msgcall (CORE_ADDR pc, CORE_ADDR *new_pc);
b81654f1 42
36e53c63 43extern char *parse_selector (char *method, char **selector);
b81654f1 44
36e53c63
AF
45extern char *parse_method (char *method, char *type,
46 char **class, char **category,
47 char **selector);
b81654f1 48
36e53c63
AF
49extern char *find_imps (struct symtab *symtab, struct block *block,
50 char *method, struct symbol **syms,
51 unsigned int *nsym, unsigned int *ndebug);
52
53extern struct value *value_nsstring (char *ptr, int len);
This page took 0.069034 seconds and 4 git commands to generate.