gdb: Convert language la_lookup_symbol_nonlocal field to a method
[deliverable/binutils-gdb.git] / gdb / objc-lang.c
CommitLineData
d2e6263c 1/* Objective-C language support routines for GDB, the GNU debugger.
b81654f1 2
b811d2c2 3 Copyright (C) 2002-2020 Free Software Foundation, Inc.
b81654f1 4
437666f8
AC
5 Contributed by Apple Computer, Inc.
6 Written by Michael Snyder.
b81654f1 7
437666f8 8 This file is part of GDB.
b81654f1 9
437666f8
AC
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
437666f8
AC
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
b81654f1
MS
22
23#include "defs.h"
24#include "symtab.h"
25#include "gdbtypes.h"
26#include "expression.h"
27#include "parser-defs.h"
28#include "language.h"
a53b64ea 29#include "varobj.h"
d2e6263c 30#include "c-lang.h"
b81654f1
MS
31#include "objc-lang.h"
32#include "complaints.h"
33#include "value.h"
34#include "symfile.h"
35#include "objfiles.h"
b81654f1
MS
36#include "target.h" /* for target_has_execution */
37#include "gdbcore.h"
38#include "gdbcmd.h"
39#include "frame.h"
40#include "gdb_regex.h"
41#include "regcache.h"
fe898f56 42#include "block.h"
04714b91 43#include "infcall.h"
4e45ca2e 44#include "valprint.h"
529480d0 45#include "cli/cli-utils.h"
b81654f1
MS
46
47#include <ctype.h>
9b2f8581 48#include <algorithm>
b81654f1
MS
49
50struct objc_object {
51 CORE_ADDR isa;
52};
53
54struct objc_class {
55 CORE_ADDR isa;
56 CORE_ADDR super_class;
57 CORE_ADDR name;
58 long version;
59 long info;
60 long instance_size;
61 CORE_ADDR ivars;
62 CORE_ADDR methods;
63 CORE_ADDR cache;
64 CORE_ADDR protocols;
65};
66
67struct objc_super {
68 CORE_ADDR receiver;
fe978cb0 69 CORE_ADDR theclass;
b81654f1
MS
70};
71
72struct objc_method {
73 CORE_ADDR name;
74 CORE_ADDR types;
75 CORE_ADDR imp;
76};
77
4c58e337 78static const struct objfile_key<unsigned int> objc_objfile_data;
57a9e6af 79
d2e6263c
MS
80/* Lookup a structure type named "struct NAME", visible in lexical
81 block BLOCK. If NOERR is nonzero, return zero if NAME is not
82 suitably defined. */
b81654f1
MS
83
84struct symbol *
a121b7c1 85lookup_struct_typedef (const char *name, const struct block *block, int noerr)
b81654f1 86{
f86f5ca3 87 struct symbol *sym;
b81654f1 88
d12307c1 89 sym = lookup_symbol (name, block, STRUCT_DOMAIN, 0).symbol;
b81654f1
MS
90
91 if (sym == NULL)
92 {
93 if (noerr)
94 return 0;
95 else
8a3fe4f8 96 error (_("No struct type named %s."), name);
b81654f1 97 }
78134374 98 if (SYMBOL_TYPE (sym)->code () != TYPE_CODE_STRUCT)
b81654f1
MS
99 {
100 if (noerr)
101 return 0;
102 else
8a3fe4f8 103 error (_("This context has class, union or enum %s, not a struct."),
d2e6263c 104 name);
b81654f1
MS
105 }
106 return sym;
107}
108
109CORE_ADDR
a121b7c1 110lookup_objc_class (struct gdbarch *gdbarch, const char *classname)
b81654f1 111{
3b7538c0 112 struct type *char_type = builtin_type (gdbarch)->builtin_char;
b81654f1
MS
113 struct value * function, *classval;
114
115 if (! target_has_execution)
116 {
d2e6263c 117 /* Can't call into inferior to lookup class. */
b81654f1
MS
118 return 0;
119 }
120
3b7344d5 121 if (lookup_minimal_symbol("objc_lookUpClass", 0, 0).minsym)
3e3b026f 122 function = find_function_in_inferior("objc_lookUpClass", NULL);
3b7344d5 123 else if (lookup_minimal_symbol ("objc_lookup_class", 0, 0).minsym)
3e3b026f 124 function = find_function_in_inferior("objc_lookup_class", NULL);
b81654f1
MS
125 else
126 {
b98664d3 127 complaint (_("no way to lookup Objective-C classes"));
b81654f1
MS
128 return 0;
129 }
130
3b7538c0 131 classval = value_string (classname, strlen (classname) + 1, char_type);
b81654f1 132 classval = value_coerce_array (classval);
7022349d
PA
133 return (CORE_ADDR) value_as_long (call_function_by_hand (function,
134 NULL,
e71585ff 135 classval));
b81654f1
MS
136}
137
c253954e 138CORE_ADDR
a121b7c1 139lookup_child_selector (struct gdbarch *gdbarch, const char *selname)
b81654f1 140{
3b7538c0 141 struct type *char_type = builtin_type (gdbarch)->builtin_char;
b81654f1
MS
142 struct value * function, *selstring;
143
144 if (! target_has_execution)
145 {
d2e6263c 146 /* Can't call into inferior to lookup selector. */
b81654f1
MS
147 return 0;
148 }
149
3b7344d5 150 if (lookup_minimal_symbol("sel_getUid", 0, 0).minsym)
3e3b026f 151 function = find_function_in_inferior("sel_getUid", NULL);
3b7344d5 152 else if (lookup_minimal_symbol ("sel_get_any_uid", 0, 0).minsym)
3e3b026f 153 function = find_function_in_inferior("sel_get_any_uid", NULL);
b81654f1
MS
154 else
155 {
b98664d3 156 complaint (_("no way to lookup Objective-C selectors"));
b81654f1
MS
157 return 0;
158 }
159
d2e6263c 160 selstring = value_coerce_array (value_string (selname,
0df8b418
MS
161 strlen (selname) + 1,
162 char_type));
e71585ff 163 return value_as_long (call_function_by_hand (function, NULL, selstring));
b81654f1
MS
164}
165
166struct value *
3b7538c0 167value_nsstring (struct gdbarch *gdbarch, char *ptr, int len)
b81654f1 168{
3b7538c0 169 struct type *char_type = builtin_type (gdbarch)->builtin_char;
b81654f1
MS
170 struct value *stringValue[3];
171 struct value *function, *nsstringValue;
172 struct symbol *sym;
173 struct type *type;
174
175 if (!target_has_execution)
d2e6263c 176 return 0; /* Can't call into inferior to create NSString. */
b81654f1 177
3b7538c0 178 stringValue[2] = value_string(ptr, len, char_type);
b81654f1 179 stringValue[2] = value_coerce_array(stringValue[2]);
d2e6263c 180 /* _NSNewStringFromCString replaces "istr" after Lantern2A. */
3b7344d5 181 if (lookup_minimal_symbol("_NSNewStringFromCString", 0, 0).minsym)
b81654f1 182 {
3b7538c0 183 function = find_function_in_inferior("_NSNewStringFromCString", NULL);
e71585ff 184 nsstringValue = call_function_by_hand(function, NULL, stringValue[2]);
b81654f1 185 }
3b7344d5 186 else if (lookup_minimal_symbol("istr", 0, 0).minsym)
b81654f1 187 {
3b7538c0 188 function = find_function_in_inferior("istr", NULL);
e71585ff 189 nsstringValue = call_function_by_hand(function, NULL, stringValue[2]);
b81654f1 190 }
3b7344d5 191 else if (lookup_minimal_symbol("+[NSString stringWithCString:]", 0, 0).minsym)
b81654f1 192 {
3e3b026f 193 function
3b7538c0
UW
194 = find_function_in_inferior("+[NSString stringWithCString:]", NULL);
195 type = builtin_type (gdbarch)->builtin_long;
3e3b026f 196
b81654f1 197 stringValue[0] = value_from_longest
3b7538c0 198 (type, lookup_objc_class (gdbarch, "NSString"));
b81654f1 199 stringValue[1] = value_from_longest
3b7538c0 200 (type, lookup_child_selector (gdbarch, "stringWithCString:"));
e71585ff 201 nsstringValue = call_function_by_hand(function, NULL, stringValue);
b81654f1
MS
202 }
203 else
8a3fe4f8 204 error (_("NSString: internal error -- no way to create new NSString"));
b81654f1 205
3e3b026f
UW
206 sym = lookup_struct_typedef("NSString", 0, 1);
207 if (sym == NULL)
208 sym = lookup_struct_typedef("NXString", 0, 1);
209 if (sym == NULL)
210 type = builtin_type (gdbarch)->builtin_data_ptr;
211 else
212 type = lookup_pointer_type(SYMBOL_TYPE (sym));
213
04624583 214 deprecated_set_value_type (nsstringValue, type);
b81654f1
MS
215 return nsstringValue;
216}
217
d2e6263c 218/* Objective-C name demangling. */
b81654f1
MS
219
220char *
9a3d7dfd 221objc_demangle (const char *mangled, int options)
b81654f1
MS
222{
223 char *demangled, *cp;
224
225 if (mangled[0] == '_' &&
226 (mangled[1] == 'i' || mangled[1] == 'c') &&
227 mangled[2] == '_')
228 {
224c3ddb 229 cp = demangled = (char *) xmalloc (strlen (mangled) + 2);
b81654f1
MS
230
231 if (mangled[1] == 'i')
232 *cp++ = '-'; /* for instance method */
233 else
234 *cp++ = '+'; /* for class method */
235
236 *cp++ = '['; /* opening left brace */
0df8b418 237 strcpy(cp, mangled+3); /* Tack on the rest of the mangled name. */
b81654f1
MS
238
239 while (*cp && *cp == '_')
0df8b418
MS
240 cp++; /* Skip any initial underbars in class
241 name. */
b81654f1 242
7248f48e 243 cp = strchr(cp, '_');
0df8b418 244 if (!cp) /* Find first non-initial underbar. */
b81654f1 245 {
7248f48e 246 xfree(demangled); /* not mangled name */
b81654f1
MS
247 return NULL;
248 }
0df8b418 249 if (cp[1] == '_') /* Easy case: no category name. */
5cc80db3 250 {
0df8b418 251 *cp++ = ' '; /* Replace two '_' with one ' '. */
5cc80db3
MS
252 strcpy(cp, mangled + (cp - demangled) + 2);
253 }
254 else
255 {
0df8b418 256 *cp++ = '('; /* Less easy case: category name. */
5cc80db3
MS
257 cp = strchr(cp, '_');
258 if (!cp)
259 {
260 xfree(demangled); /* not mangled name */
261 return NULL;
262 }
263 *cp++ = ')';
0df8b418
MS
264 *cp++ = ' '; /* Overwriting 1st char of method name... */
265 strcpy(cp, mangled + (cp - demangled)); /* Get it back. */
5cc80db3 266 }
b81654f1
MS
267
268 while (*cp && *cp == '_')
0df8b418
MS
269 cp++; /* Skip any initial underbars in
270 method name. */
b81654f1
MS
271
272 for (; *cp; cp++)
273 if (*cp == '_')
0df8b418 274 *cp = ':'; /* Replace remaining '_' with ':'. */
b81654f1
MS
275
276 *cp++ = ']'; /* closing right brace */
277 *cp++ = 0; /* string terminator */
278 return demangled;
279 }
280 else
d2e6263c 281 return NULL; /* Not an objc mangled name. */
b81654f1
MS
282}
283
b81654f1
MS
284
285/* Table mapping opcodes into strings for printing operators
286 and precedences of the operators. */
287
288static const struct op_print objc_op_print_tab[] =
289 {
290 {",", BINOP_COMMA, PREC_COMMA, 0},
291 {"=", BINOP_ASSIGN, PREC_ASSIGN, 1},
292 {"||", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
293 {"&&", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
294 {"|", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
295 {"^", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
296 {"&", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
297 {"==", BINOP_EQUAL, PREC_EQUAL, 0},
298 {"!=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
299 {"<=", BINOP_LEQ, PREC_ORDER, 0},
300 {">=", BINOP_GEQ, PREC_ORDER, 0},
301 {">", BINOP_GTR, PREC_ORDER, 0},
302 {"<", BINOP_LESS, PREC_ORDER, 0},
303 {">>", BINOP_RSH, PREC_SHIFT, 0},
304 {"<<", BINOP_LSH, PREC_SHIFT, 0},
305 {"+", BINOP_ADD, PREC_ADD, 0},
306 {"-", BINOP_SUB, PREC_ADD, 0},
307 {"*", BINOP_MUL, PREC_MUL, 0},
308 {"/", BINOP_DIV, PREC_MUL, 0},
309 {"%", BINOP_REM, PREC_MUL, 0},
310 {"@", BINOP_REPEAT, PREC_REPEAT, 0},
311 {"-", UNOP_NEG, PREC_PREFIX, 0},
312 {"!", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
313 {"~", UNOP_COMPLEMENT, PREC_PREFIX, 0},
314 {"*", UNOP_IND, PREC_PREFIX, 0},
315 {"&", UNOP_ADDR, PREC_PREFIX, 0},
316 {"sizeof ", UNOP_SIZEOF, PREC_PREFIX, 0},
317 {"++", UNOP_PREINCREMENT, PREC_PREFIX, 0},
318 {"--", UNOP_PREDECREMENT, PREC_PREFIX, 0},
e8f3fcdd 319 {NULL, OP_NULL, PREC_NULL, 0}
b81654f1
MS
320};
321
56618e20
TT
322static const char *objc_extensions[] =
323{
324 ".m", NULL
325};
326
0874fd07
AB
327/* Constant data representing the Objective-C language. */
328
329extern const struct language_data objc_language_data =
330{
d2e6263c 331 "objective-c", /* Language name */
6abde28f 332 "Objective-C",
b81654f1 333 language_objc,
b81654f1 334 range_check_off,
b81654f1 335 case_sensitive_on,
7ca2d3a3 336 array_row_major,
9a044a89 337 macro_expansion_c,
56618e20 338 objc_extensions,
5f9769d1 339 &exp_descriptor_standard,
f2e8016f 340 c_parse,
e85c3284 341 null_post_parser,
8a808554
TT
342 c_printchar, /* Print a character constant */
343 c_printstr, /* Function to print string constant */
344 c_emit_char,
5c6ce71d 345 c_print_typedef, /* Print a typedef using appropriate syntax */
2b2d9e11 346 "self", /* name_of_this */
59cc4834 347 false, /* la_store_sym_names_in_linkage_form_p */
d2e6263c
MS
348 objc_op_print_tab, /* Expression operators for printing */
349 1, /* C-style arrays */
b81654f1 350 0, /* String lower bound */
a53b64ea 351 &default_varobj_ops,
4be290b2 352 c_is_string_type_p,
721b08c6 353 "{...}" /* la_struct_too_deep_ellipsis */
b81654f1
MS
354};
355
0874fd07
AB
356/* Class representing the Objective-C language. */
357
358class objc_language : public language_defn
359{
360public:
361 objc_language ()
362 : language_defn (language_objc, objc_language_data)
363 { /* Nothing. */ }
1fb314aa
AB
364
365 /* See language.h. */
366 void language_arch_info (struct gdbarch *gdbarch,
367 struct language_arch_info *lai) const override
368 {
369 c_language_arch_info (gdbarch, lai);
370 }
6f827019
AB
371
372 /* See language.h. */
373 bool sniff_from_mangled_name (const char *mangled,
374 char **demangled) const override
375 {
376 *demangled = objc_demangle (mangled, 0);
377 return *demangled != NULL;
378 }
fbfb0a46
AB
379
380 /* See language.h. */
381
0a50df5d
AB
382 char *demangle (const char *mangled, int options) const override
383 {
384 return objc_demangle (mangled, options);
385 }
386
387 /* See language.h. */
388
fbfb0a46
AB
389 void print_type (struct type *type, const char *varstring,
390 struct ui_file *stream, int show, int level,
391 const struct type_print_options *flags) const override
392 {
393 c_print_type (type, varstring, stream, show, level, flags);
394 }
f6eee2d0
AB
395
396 /* See language.h. */
397
398 CORE_ADDR skip_trampoline (struct frame_info *frame,
399 CORE_ADDR stop_pc) const override
400 {
401 struct gdbarch *gdbarch = get_frame_arch (frame);
402 CORE_ADDR real_stop_pc;
403 CORE_ADDR method_stop_pc;
404
405 /* Determine if we are currently in the Objective-C dispatch function.
406 If so, get the address of the method function that the dispatcher
407 would call and use that as the function to step into instead. Also
408 skip over the trampoline for the function (if any). This is better
409 for the user since they are only interested in stepping into the
410 method function anyway. */
411
412 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
413
414 if (real_stop_pc != 0)
415 find_objc_msgcall (real_stop_pc, &method_stop_pc);
416 else
417 find_objc_msgcall (stop_pc, &method_stop_pc);
418
419 if (method_stop_pc)
420 {
421 real_stop_pc = gdbarch_skip_trampoline_code
422 (gdbarch, frame, method_stop_pc);
423 if (real_stop_pc == 0)
424 real_stop_pc = method_stop_pc;
425 }
426
427 return real_stop_pc;
428 }
0874fd07
AB
429};
430
431/* Single instance of the class representing the Objective-C language. */
432
433static objc_language objc_language_defn;
434
b81654f1
MS
435/*
436 * ObjC:
0df8b418 437 * Following functions help construct Objective-C message calls.
b81654f1
MS
438 */
439
d2e6263c 440struct selname /* For parsing Objective-C. */
b81654f1
MS
441 {
442 struct selname *next;
443 char *msglist_sel;
444 int msglist_len;
445 };
446
447static int msglist_len;
448static struct selname *selname_chain;
449static char *msglist_sel;
450
451void
452start_msglist(void)
453{
8d749320 454 struct selname *newobj = XNEW (struct selname);
b81654f1 455
fe978cb0
PA
456 newobj->next = selname_chain;
457 newobj->msglist_len = msglist_len;
458 newobj->msglist_sel = msglist_sel;
b81654f1
MS
459 msglist_len = 0;
460 msglist_sel = (char *)xmalloc(1);
461 *msglist_sel = 0;
fe978cb0 462 selname_chain = newobj;
b81654f1
MS
463}
464
465void
466add_msglist(struct stoken *str, int addcolon)
467{
d7561cbb
KS
468 char *s;
469 const char *p;
b81654f1
MS
470 int len, plen;
471
5cc80db3
MS
472 if (str == 0) /* Unnamed arg, or... */
473 {
474 if (addcolon == 0) /* variable number of args. */
475 {
476 msglist_len++;
477 return;
478 }
479 p = "";
480 plen = 0;
481 }
482 else
483 {
484 p = str->ptr;
485 plen = str->length;
b81654f1 486 }
b81654f1
MS
487 len = plen + strlen(msglist_sel) + 2;
488 s = (char *)xmalloc(len);
489 strcpy(s, msglist_sel);
490 strncat(s, p, plen);
7248f48e 491 xfree(msglist_sel);
b81654f1 492 msglist_sel = s;
5cc80db3
MS
493 if (addcolon)
494 {
495 s[len-2] = ':';
496 s[len-1] = 0;
497 msglist_len++;
498 }
499 else
b81654f1
MS
500 s[len-2] = '\0';
501}
502
503int
410a0ff2 504end_msglist (struct parser_state *ps)
b81654f1 505{
f86f5ca3
PH
506 int val = msglist_len;
507 struct selname *sel = selname_chain;
508 char *p = msglist_sel;
c253954e 509 CORE_ADDR selid;
b81654f1
MS
510
511 selname_chain = sel->next;
512 msglist_len = sel->msglist_len;
513 msglist_sel = sel->msglist_sel;
fa9f5be6 514 selid = lookup_child_selector (ps->gdbarch (), p);
b81654f1 515 if (!selid)
8a3fe4f8 516 error (_("Can't find selector \"%s\""), p);
410a0ff2 517 write_exp_elt_longcst (ps, selid);
7248f48e 518 xfree(p);
410a0ff2 519 write_exp_elt_longcst (ps, val); /* Number of args */
7248f48e 520 xfree(sel);
b81654f1
MS
521
522 return val;
523}
524
525/*
0d5cff50 526 * Function: specialcmp (const char *a, const char *b)
b81654f1
MS
527 *
528 * Special strcmp: treats ']' and ' ' as end-of-string.
d2e6263c 529 * Used for qsorting lists of objc methods (either by class or selector).
b81654f1
MS
530 */
531
b9362cc7 532static int
0d5cff50 533specialcmp (const char *a, const char *b)
b81654f1
MS
534{
535 while (*a && *a != ' ' && *a != ']' && *b && *b != ' ' && *b != ']')
536 {
537 if (*a != *b)
538 return *a - *b;
539 a++, b++;
540 }
541 if (*a && *a != ' ' && *a != ']')
0df8b418 542 return 1; /* a is longer therefore greater. */
b81654f1 543 if (*b && *b != ' ' && *b != ']')
0df8b418
MS
544 return -1; /* a is shorter therefore lesser. */
545 return 0; /* a and b are identical. */
b81654f1
MS
546}
547
548/*
36e53c63 549 * Function: compare_selectors (const void *, const void *)
b81654f1 550 *
d2e6263c
MS
551 * Comparison function for use with qsort. Arguments are symbols or
552 * msymbols Compares selector part of objc method name alphabetically.
b81654f1
MS
553 */
554
555static int
36e53c63 556compare_selectors (const void *a, const void *b)
b81654f1 557{
0d5cff50 558 const char *aname, *bname;
b81654f1 559
987012b8
CB
560 aname = (*(struct symbol **) a)->print_name ();
561 bname = (*(struct symbol **) b)->print_name ();
7248f48e 562 if (aname == NULL || bname == NULL)
8a3fe4f8 563 error (_("internal: compare_selectors(1)"));
b81654f1 564
7248f48e
AF
565 aname = strchr(aname, ' ');
566 bname = strchr(bname, ' ');
567 if (aname == NULL || bname == NULL)
8a3fe4f8 568 error (_("internal: compare_selectors(2)"));
b81654f1
MS
569
570 return specialcmp (aname+1, bname+1);
571}
572
573/*
574 * Function: selectors_info (regexp, from_tty)
575 *
d2e6263c
MS
576 * Implements the "Info selectors" command. Takes an optional regexp
577 * arg. Lists all objective c selectors that match the regexp. Works
578 * by grepping thru all symbols for objective c methods. Output list
579 * is sorted and uniqued.
b81654f1
MS
580 */
581
582static void
1d12d88f 583info_selectors_command (const char *regexp, int from_tty)
b81654f1 584{
0d5cff50 585 const char *name;
b81654f1
MS
586 char *val;
587 int matches = 0;
588 int maxlen = 0;
589 int ix;
590 char myregexp[2048];
591 char asel[256];
592 struct symbol **sym_arr;
593 int plusminus = 0;
594
595 if (regexp == NULL)
d2e6263c 596 strcpy(myregexp, ".*]"); /* Null input, match all objc methods. */
b81654f1
MS
597 else
598 {
d2e6263c
MS
599 if (*regexp == '+' || *regexp == '-')
600 { /* User wants only class methods or only instance methods. */
b81654f1
MS
601 plusminus = *regexp++;
602 while (*regexp == ' ' || *regexp == '\t')
603 regexp++;
604 }
605 if (*regexp == '\0')
606 strcpy(myregexp, ".*]");
607 else
608 {
a9dc8dcc 609 /* Allow a few extra bytes because of the strcat below. */
28288541 610 if (sizeof (myregexp) < strlen (regexp) + 4)
20937029
JK
611 error (_("Regexp is too long: %s"), regexp);
612 strcpy(myregexp, regexp);
b81654f1
MS
613 if (myregexp[strlen(myregexp) - 1] == '$') /* end of selector */
614 myregexp[strlen(myregexp) - 1] = ']'; /* end of method name */
615 else
616 strcat(myregexp, ".*]");
617 }
618 }
619
620 if (regexp != NULL)
5e488a7b
AC
621 {
622 val = re_comp (myregexp);
623 if (val != 0)
8a3fe4f8 624 error (_("Invalid regexp (%s): %s"), val, regexp);
5e488a7b 625 }
b81654f1 626
d2e6263c 627 /* First time thru is JUST to get max length and count. */
2030c079 628 for (objfile *objfile : current_program_space->objfiles ())
b81654f1 629 {
7932255d 630 for (minimal_symbol *msymbol : objfile->msymbols ())
b81654f1 631 {
5325b9bf 632 QUIT;
c9d95fa3 633 name = msymbol->natural_name ();
5325b9bf
TT
634 if (name
635 && (name[0] == '-' || name[0] == '+')
636 && name[1] == '[') /* Got a method name. */
50412521 637 {
5325b9bf
TT
638 /* Filter for class/instance methods. */
639 if (plusminus && name[0] != plusminus)
640 continue;
641 /* Find selector part. */
642 name = (char *) strchr (name+2, ' ');
643 if (name == NULL)
644 {
645 complaint (_("Bad method name '%s'"),
c9d95fa3 646 msymbol->natural_name ());
5325b9bf
TT
647 continue;
648 }
649 if (regexp == NULL || re_exec(++name) != 0)
650 {
651 const char *mystart = name;
652 const char *myend = strchr (mystart, ']');
b81654f1 653
5325b9bf
TT
654 if (myend && (myend - mystart > maxlen))
655 maxlen = myend - mystart; /* Get longest selector. */
656 matches++;
657 }
b81654f1
MS
658 }
659 }
660 }
661 if (matches)
662 {
a3f17187 663 printf_filtered (_("Selectors matching \"%s\":\n\n"),
b81654f1
MS
664 regexp ? regexp : "*");
665
8d749320 666 sym_arr = XALLOCAVEC (struct symbol *, matches);
b81654f1 667 matches = 0;
2030c079 668 for (objfile *objfile : current_program_space->objfiles ())
b81654f1 669 {
7932255d 670 for (minimal_symbol *msymbol : objfile->msymbols ())
b81654f1 671 {
5325b9bf 672 QUIT;
c9d95fa3 673 name = msymbol->natural_name ();
5325b9bf
TT
674 if (name &&
675 (name[0] == '-' || name[0] == '+') &&
676 name[1] == '[') /* Got a method name. */
677 {
678 /* Filter for class/instance methods. */
679 if (plusminus && name[0] != plusminus)
680 continue;
681 /* Find selector part. */
682 name = (char *) strchr(name+2, ' ');
683 if (regexp == NULL || re_exec(++name) != 0)
684 sym_arr[matches++] = (struct symbol *) msymbol;
685 }
b81654f1
MS
686 }
687 }
688
689 qsort (sym_arr, matches, sizeof (struct minimal_symbol *),
690 compare_selectors);
d2e6263c
MS
691 /* Prevent compare on first iteration. */
692 asel[0] = 0;
693 for (ix = 0; ix < matches; ix++) /* Now do the output. */
b81654f1
MS
694 {
695 char *p = asel;
696
697 QUIT;
987012b8 698 name = sym_arr[ix]->natural_name ();
b81654f1
MS
699 name = strchr (name, ' ') + 1;
700 if (p[0] && specialcmp(name, p) == 0)
d2e6263c 701 continue; /* Seen this one already (not unique). */
b81654f1 702
d2e6263c
MS
703 /* Copy selector part. */
704 while (*name && *name != ']')
b81654f1
MS
705 *p++ = *name++;
706 *p++ = '\0';
d2e6263c
MS
707 /* Print in columns. */
708 puts_filtered_tabular(asel, maxlen + 1, 0);
b81654f1
MS
709 }
710 begin_line();
711 }
712 else
0df8b418
MS
713 printf_filtered (_("No selectors matching \"%s\"\n"),
714 regexp ? regexp : "*");
b81654f1
MS
715}
716
717/*
36e53c63 718 * Function: compare_classes (const void *, const void *)
b81654f1 719 *
d2e6263c
MS
720 * Comparison function for use with qsort. Arguments are symbols or
721 * msymbols Compares class part of objc method name alphabetically.
b81654f1
MS
722 */
723
724static int
36e53c63 725compare_classes (const void *a, const void *b)
b81654f1 726{
0d5cff50 727 const char *aname, *bname;
b81654f1 728
987012b8
CB
729 aname = (*(struct symbol **) a)->print_name ();
730 bname = (*(struct symbol **) b)->print_name ();
7248f48e 731 if (aname == NULL || bname == NULL)
8a3fe4f8 732 error (_("internal: compare_classes(1)"));
b81654f1
MS
733
734 return specialcmp (aname+1, bname+1);
735}
736
737/*
738 * Function: classes_info(regexp, from_tty)
739 *
740 * Implements the "info classes" command for objective c classes.
741 * Lists all objective c classes that match the optional regexp.
d2e6263c
MS
742 * Works by grepping thru the list of objective c methods. List will
743 * be sorted and uniqued (since one class may have many methods).
744 * BUGS: will not list a class that has no methods.
b81654f1
MS
745 */
746
747static void
1d12d88f 748info_classes_command (const char *regexp, int from_tty)
b81654f1 749{
0d5cff50 750 const char *name;
b81654f1
MS
751 char *val;
752 int matches = 0;
753 int maxlen = 0;
754 int ix;
755 char myregexp[2048];
756 char aclass[256];
757 struct symbol **sym_arr;
758
759 if (regexp == NULL)
d2e6263c 760 strcpy(myregexp, ".* "); /* Null input: match all objc classes. */
b81654f1
MS
761 else
762 {
a9dc8dcc 763 /* Allow a few extra bytes because of the strcat below. */
28288541
MS
764 if (sizeof (myregexp) < strlen (regexp) + 4)
765 error (_("Regexp is too long: %s"), regexp);
b81654f1
MS
766 strcpy(myregexp, regexp);
767 if (myregexp[strlen(myregexp) - 1] == '$')
d2e6263c 768 /* In the method name, the end of the class name is marked by ' '. */
b81654f1
MS
769 myregexp[strlen(myregexp) - 1] = ' ';
770 else
771 strcat(myregexp, ".* ");
772 }
773
774 if (regexp != NULL)
5e488a7b
AC
775 {
776 val = re_comp (myregexp);
777 if (val != 0)
8a3fe4f8 778 error (_("Invalid regexp (%s): %s"), val, regexp);
5e488a7b 779 }
b81654f1 780
d2e6263c 781 /* First time thru is JUST to get max length and count. */
2030c079 782 for (objfile *objfile : current_program_space->objfiles ())
b81654f1 783 {
7932255d 784 for (minimal_symbol *msymbol : objfile->msymbols ())
5325b9bf
TT
785 {
786 QUIT;
c9d95fa3 787 name = msymbol->natural_name ();
5325b9bf
TT
788 if (name &&
789 (name[0] == '-' || name[0] == '+') &&
790 name[1] == '[') /* Got a method name. */
791 if (regexp == NULL || re_exec(name+2) != 0)
792 {
793 /* Compute length of classname part. */
794 const char *mystart = name + 2;
795 const char *myend = strchr (mystart, ' ');
b81654f1 796
5325b9bf
TT
797 if (myend && (myend - mystart > maxlen))
798 maxlen = myend - mystart;
799 matches++;
800 }
801 }
b81654f1
MS
802 }
803 if (matches)
804 {
a3f17187 805 printf_filtered (_("Classes matching \"%s\":\n\n"),
b81654f1 806 regexp ? regexp : "*");
8d749320 807 sym_arr = XALLOCAVEC (struct symbol *, matches);
b81654f1 808 matches = 0;
2030c079 809 for (objfile *objfile : current_program_space->objfiles ())
b81654f1 810 {
7932255d 811 for (minimal_symbol *msymbol : objfile->msymbols ())
5325b9bf
TT
812 {
813 QUIT;
c9d95fa3 814 name = msymbol->natural_name ();
5325b9bf
TT
815 if (name &&
816 (name[0] == '-' || name[0] == '+') &&
817 name[1] == '[') /* Got a method name. */
818 if (regexp == NULL || re_exec(name+2) != 0)
819 sym_arr[matches++] = (struct symbol *) msymbol;
820 }
b81654f1
MS
821 }
822
823 qsort (sym_arr, matches, sizeof (struct minimal_symbol *),
824 compare_classes);
d2e6263c
MS
825 /* Prevent compare on first iteration. */
826 aclass[0] = 0;
827 for (ix = 0; ix < matches; ix++) /* Now do the output. */
b81654f1
MS
828 {
829 char *p = aclass;
830
831 QUIT;
987012b8 832 name = sym_arr[ix]->natural_name ();
b81654f1
MS
833 name += 2;
834 if (p[0] && specialcmp(name, p) == 0)
d2e6263c 835 continue; /* Seen this one already (not unique). */
b81654f1 836
d2e6263c
MS
837 /* Copy class part of method name. */
838 while (*name && *name != ' ')
b81654f1
MS
839 *p++ = *name++;
840 *p++ = '\0';
d2e6263c
MS
841 /* Print in columns. */
842 puts_filtered_tabular(aclass, maxlen + 1, 0);
b81654f1
MS
843 }
844 begin_line();
845 }
846 else
a3f17187 847 printf_filtered (_("No classes matching \"%s\"\n"), regexp ? regexp : "*");
b81654f1
MS
848}
849
f8eba3c6 850static char *
b81654f1
MS
851parse_selector (char *method, char **selector)
852{
853 char *s1 = NULL;
854 char *s2 = NULL;
855 int found_quote = 0;
856
857 char *nselector = NULL;
858
e8f3fcdd 859 gdb_assert (selector != NULL);
b81654f1
MS
860
861 s1 = method;
862
529480d0 863 s1 = skip_spaces (s1);
b81654f1
MS
864 if (*s1 == '\'')
865 {
866 found_quote = 1;
867 s1++;
868 }
529480d0 869 s1 = skip_spaces (s1);
b81654f1
MS
870
871 nselector = s1;
872 s2 = s1;
873
5cc80db3
MS
874 for (;;)
875 {
876 if (isalnum (*s2) || (*s2 == '_') || (*s2 == ':'))
877 *s1++ = *s2;
878 else if (isspace (*s2))
879 ;
880 else if ((*s2 == '\0') || (*s2 == '\''))
881 break;
882 else
883 return NULL;
884 s2++;
885 }
b81654f1
MS
886 *s1++ = '\0';
887
529480d0 888 s2 = skip_spaces (s2);
b81654f1
MS
889 if (found_quote)
890 {
891 if (*s2 == '\'')
892 s2++;
529480d0 893 s2 = skip_spaces (s2);
b81654f1
MS
894 }
895
896 if (selector != NULL)
897 *selector = nselector;
898
899 return s2;
900}
901
f8eba3c6 902static char *
fe978cb0 903parse_method (char *method, char *type, char **theclass,
d2e6263c 904 char **category, char **selector)
b81654f1
MS
905{
906 char *s1 = NULL;
907 char *s2 = NULL;
908 int found_quote = 0;
909
910 char ntype = '\0';
911 char *nclass = NULL;
912 char *ncategory = NULL;
913 char *nselector = NULL;
914
e8f3fcdd 915 gdb_assert (type != NULL);
fe978cb0 916 gdb_assert (theclass != NULL);
e8f3fcdd
AC
917 gdb_assert (category != NULL);
918 gdb_assert (selector != NULL);
b81654f1
MS
919
920 s1 = method;
921
529480d0 922 s1 = skip_spaces (s1);
b81654f1
MS
923 if (*s1 == '\'')
924 {
925 found_quote = 1;
926 s1++;
927 }
529480d0 928 s1 = skip_spaces (s1);
b81654f1
MS
929
930 if ((s1[0] == '+') || (s1[0] == '-'))
931 ntype = *s1++;
932
529480d0 933 s1 = skip_spaces (s1);
b81654f1
MS
934
935 if (*s1 != '[')
936 return NULL;
937 s1++;
938
939 nclass = s1;
940 while (isalnum (*s1) || (*s1 == '_'))
941 s1++;
942
943 s2 = s1;
529480d0 944 s2 = skip_spaces (s2);
b81654f1
MS
945
946 if (*s2 == '(')
947 {
948 s2++;
529480d0 949 s2 = skip_spaces (s2);
b81654f1
MS
950 ncategory = s2;
951 while (isalnum (*s2) || (*s2 == '_'))
952 s2++;
953 *s2++ = '\0';
954 }
955
d2e6263c 956 /* Truncate the class name now that we're not using the open paren. */
b81654f1
MS
957 *s1++ = '\0';
958
959 nselector = s2;
960 s1 = s2;
961
5cc80db3
MS
962 for (;;)
963 {
964 if (isalnum (*s2) || (*s2 == '_') || (*s2 == ':'))
965 *s1++ = *s2;
966 else if (isspace (*s2))
967 ;
968 else if (*s2 == ']')
969 break;
970 else
971 return NULL;
972 s2++;
973 }
b81654f1
MS
974 *s1++ = '\0';
975 s2++;
976
529480d0 977 s2 = skip_spaces (s2);
b81654f1
MS
978 if (found_quote)
979 {
980 if (*s2 != '\'')
981 return NULL;
982 s2++;
529480d0 983 s2 = skip_spaces (s2);
b81654f1
MS
984 }
985
986 if (type != NULL)
987 *type = ntype;
fe978cb0
PA
988 if (theclass != NULL)
989 *theclass = nclass;
b81654f1
MS
990 if (category != NULL)
991 *category = ncategory;
992 if (selector != NULL)
993 *selector = nselector;
994
995 return s2;
996}
997
2f9a90b4 998static void
fe978cb0 999find_methods (char type, const char *theclass, const char *category,
f8eba3c6 1000 const char *selector,
9b2f8581 1001 std::vector<const char *> *symbol_names)
b81654f1 1002{
0d5cff50 1003 const char *symname = NULL;
b81654f1
MS
1004
1005 char ntype = '\0';
1006 char *nclass = NULL;
1007 char *ncategory = NULL;
1008 char *nselector = NULL;
1009
b81654f1
MS
1010 static char *tmp = NULL;
1011 static unsigned int tmplen = 0;
1012
f8eba3c6 1013 gdb_assert (symbol_names != NULL);
b81654f1 1014
2030c079 1015 for (objfile *objfile : current_program_space->objfiles ())
b81654f1 1016 {
57a9e6af 1017 unsigned int *objc_csym;
b81654f1 1018
57a9e6af
PP
1019 /* The objfile_csym variable counts the number of ObjC methods
1020 that this objfile defines. We save that count as a private
1021 objfile data. If we have already determined that this objfile
1022 provides no ObjC methods, we can skip it entirely. */
b81654f1 1023
57a9e6af 1024 unsigned int objfile_csym = 0;
b81654f1 1025
4c58e337 1026 objc_csym = objc_objfile_data.get (objfile);
57a9e6af
PP
1027 if (objc_csym != NULL && *objc_csym == 0)
1028 /* There are no ObjC symbols in this objfile. Skip it entirely. */
b81654f1
MS
1029 continue;
1030
7932255d 1031 for (minimal_symbol *msymbol : objfile->msymbols ())
b81654f1 1032 {
57a9e6af 1033 QUIT;
b81654f1 1034
0c4b2e63
MF
1035 /* Check the symbol name first as this can be done entirely without
1036 sending any query to the target. */
c9d95fa3 1037 symname = msymbol->natural_name ();
0c4b2e63
MF
1038 if (symname == NULL)
1039 continue;
1040
1041 if ((symname[0] != '-' && symname[0] != '+') || (symname[1] != '['))
1042 /* Not a method name. */
1043 continue;
1044
8dfd1e6d
KS
1045 objfile_csym++;
1046
0c4b2e63 1047 /* Now that thinks are a bit sane, clean up the symname. */
57a9e6af
PP
1048 while ((strlen (symname) + 1) >= tmplen)
1049 {
1050 tmplen = (tmplen == 0) ? 1024 : tmplen * 2;
224c3ddb 1051 tmp = (char *) xrealloc (tmp, tmplen);
57a9e6af
PP
1052 }
1053 strcpy (tmp, symname);
b81654f1 1054
0df8b418
MS
1055 if (parse_method (tmp, &ntype, &nclass,
1056 &ncategory, &nselector) == NULL)
57a9e6af 1057 continue;
b81654f1 1058
57a9e6af
PP
1059 if ((type != '\0') && (ntype != type))
1060 continue;
b81654f1 1061
fe978cb0
PA
1062 if ((theclass != NULL)
1063 && ((nclass == NULL) || (strcmp (theclass, nclass) != 0)))
57a9e6af
PP
1064 continue;
1065
1066 if ((category != NULL) &&
1067 ((ncategory == NULL) || (strcmp (category, ncategory) != 0)))
1068 continue;
b81654f1 1069
57a9e6af
PP
1070 if ((selector != NULL) &&
1071 ((nselector == NULL) || (strcmp (selector, nselector) != 0)))
1072 continue;
1073
9b2f8581 1074 symbol_names->push_back (symname);
57a9e6af 1075 }
f8eba3c6 1076
57a9e6af 1077 if (objc_csym == NULL)
4c58e337 1078 objc_csym = objc_objfile_data.emplace (objfile, objfile_csym);
57a9e6af
PP
1079 else
1080 /* Count of ObjC methods in this objfile should be constant. */
1081 gdb_assert (*objc_csym == objfile_csym);
b81654f1 1082 }
f8eba3c6 1083}
b81654f1 1084
791b7405 1085/* Uniquify a vector of strings. */
f8eba3c6
TT
1086
1087static void
9b2f8581 1088uniquify_strings (std::vector<const char *> *strings)
f8eba3c6 1089{
9b2f8581 1090 if (strings->empty ())
ee7615e1
AA
1091 return;
1092
9b2f8581
TT
1093 std::sort (strings->begin (), strings->end (), compare_cstrings);
1094 strings->erase (std::unique (strings->begin (), strings->end (), streq),
1095 strings->end ());
b81654f1
MS
1096}
1097
f8eba3c6 1098/*
d7561cbb 1099 * Function: find_imps (const char *selector, struct symbol **sym_arr)
f8eba3c6
TT
1100 *
1101 * Input: a string representing a selector
1102 * a pointer to an array of symbol pointers
1103 * possibly a pointer to a symbol found by the caller.
1104 *
1105 * Output: number of methods that implement that selector. Side
1106 * effects: The array of symbol pointers is filled with matching syms.
1107 *
1108 * By analogy with function "find_methods" (symtab.c), builds a list
1109 * of symbols matching the ambiguous input, so that "decode_line_2"
1110 * (symtab.c) can list them and ask the user to choose one or more.
1111 * In this case the matches are objective c methods
1112 * ("implementations") matching an objective c selector.
1113 *
1114 * Note that it is possible for a normal (c-style) function to have
1115 * the same name as an objective c selector. To prevent the selector
1116 * from eclipsing the function, we allow the caller (decode_line_1) to
1117 * search for such a function first, and if it finds one, pass it in
1118 * to us. We will then integrate it into the list. We also search
1119 * for one here, among the minsyms.
1120 *
1121 * NOTE: if NUM_DEBUGGABLE is non-zero, the sym_arr will be divided
1122 * into two parts: debuggable (struct symbol) syms, and
1123 * non_debuggable (struct minimal_symbol) syms. The debuggable
1124 * ones will come first, before NUM_DEBUGGABLE (which will thus
1125 * be the index of the first non-debuggable one).
1126 */
1127
d7561cbb 1128const char *
9b2f8581 1129find_imps (const char *method, std::vector<const char *> *symbol_names)
b81654f1
MS
1130{
1131 char type = '\0';
fe978cb0 1132 char *theclass = NULL;
b81654f1
MS
1133 char *category = NULL;
1134 char *selector = NULL;
1135
b81654f1
MS
1136 char *buf = NULL;
1137 char *tmp = NULL;
1138
f8eba3c6 1139 int selector_case = 0;
b81654f1 1140
f8eba3c6 1141 gdb_assert (symbol_names != NULL);
b81654f1
MS
1142
1143 buf = (char *) alloca (strlen (method) + 1);
1144 strcpy (buf, method);
fe978cb0 1145 tmp = parse_method (buf, &type, &theclass, &category, &selector);
b81654f1 1146
5cc80db3
MS
1147 if (tmp == NULL)
1148 {
5cc80db3
MS
1149 strcpy (buf, method);
1150 tmp = parse_selector (buf, &selector);
b81654f1 1151
5cc80db3
MS
1152 if (tmp == NULL)
1153 return NULL;
1154
f8eba3c6 1155 selector_case = 1;
5cc80db3 1156 }
b81654f1 1157
fe978cb0 1158 find_methods (type, theclass, category, selector, symbol_names);
b81654f1 1159
f8eba3c6
TT
1160 /* If we hit the "selector" case, and we found some methods, then
1161 add the selector itself as a symbol, if it exists. */
9b2f8581 1162 if (selector_case && !symbol_names->empty ())
b81654f1 1163 {
d12307c1
PMR
1164 struct symbol *sym = lookup_symbol (selector, NULL, VAR_DOMAIN,
1165 0).symbol;
f8eba3c6
TT
1166
1167 if (sym != NULL)
987012b8 1168 symbol_names->push_back (sym->natural_name ());
f8eba3c6 1169 else
b81654f1 1170 {
3b7344d5
TT
1171 struct bound_minimal_symbol msym
1172 = lookup_minimal_symbol (selector, 0, 0);
f8eba3c6 1173
3b7344d5 1174 if (msym.minsym != NULL)
c9d95fa3 1175 symbol_names->push_back (msym.minsym->natural_name ());
b81654f1
MS
1176 }
1177 }
1178
f8eba3c6 1179 uniquify_strings (symbol_names);
b81654f1
MS
1180
1181 return method + (tmp - buf);
1182}
1183
b9362cc7 1184static void
0b39b52e 1185print_object_command (const char *args, int from_tty)
b81654f1
MS
1186{
1187 struct value *object, *function, *description;
36e53c63 1188 CORE_ADDR string_addr, object_addr;
b81654f1 1189 int i = 0;
22a44745 1190 gdb_byte c = 0;
b81654f1
MS
1191
1192 if (!args || !*args)
d2e6263c
MS
1193 error (
1194"The 'print-object' command requires an argument (an Objective-C object)");
b81654f1
MS
1195
1196 {
4d01a485 1197 expression_up expr = parse_expression (args);
b81654f1
MS
1198 int pc = 0;
1199
4b27a620 1200 object = evaluate_subexp (builtin_type (expr->gdbarch)->builtin_data_ptr,
4d01a485 1201 expr.get (), &pc, EVAL_NORMAL);
b81654f1
MS
1202 }
1203
36e53c63
AF
1204 /* Validate the address for sanity. */
1205 object_addr = value_as_long (object);
1206 read_memory (object_addr, &c, 1);
1207
3e3b026f 1208 function = find_function_in_inferior ("_NSPrintForDebugger", NULL);
36e53c63 1209 if (function == NULL)
8a3fe4f8 1210 error (_("Unable to locate _NSPrintForDebugger in child process"));
b81654f1 1211
e71585ff 1212 description = call_function_by_hand (function, NULL, object);
b81654f1 1213
7248f48e
AF
1214 string_addr = value_as_long (description);
1215 if (string_addr == 0)
8a3fe4f8 1216 error (_("object returns null description"));
b81654f1
MS
1217
1218 read_memory (string_addr + i++, &c, 1);
22a44745 1219 if (c != 0)
b81654f1 1220 do
d2e6263c 1221 { /* Read and print characters up to EOS. */
b81654f1
MS
1222 QUIT;
1223 printf_filtered ("%c", c);
1224 read_memory (string_addr + i++, &c, 1);
1225 } while (c != 0);
1226 else
a3f17187 1227 printf_filtered(_("<object returns empty description>"));
b81654f1
MS
1228 printf_filtered ("\n");
1229}
1230
d2e6263c
MS
1231/* The data structure 'methcalls' is used to detect method calls (thru
1232 * ObjC runtime lib functions objc_msgSend, objc_msgSendSuper, etc.),
0df8b418 1233 * and ultimately find the method being called.
b81654f1
MS
1234 */
1235
1236struct objc_methcall {
a121b7c1 1237 const char *name;
d2e6263c 1238 /* Return instance method to be called. */
36e53c63 1239 int (*stop_at) (CORE_ADDR, CORE_ADDR *);
d2e6263c
MS
1240 /* Start of pc range corresponding to method invocation. */
1241 CORE_ADDR begin;
1242 /* End of pc range corresponding to method invocation. */
1243 CORE_ADDR end;
b81654f1
MS
1244};
1245
d2e6263c
MS
1246static int resolve_msgsend (CORE_ADDR pc, CORE_ADDR *new_pc);
1247static int resolve_msgsend_stret (CORE_ADDR pc, CORE_ADDR *new_pc);
1248static int resolve_msgsend_super (CORE_ADDR pc, CORE_ADDR *new_pc);
1249static int resolve_msgsend_super_stret (CORE_ADDR pc, CORE_ADDR *new_pc);
b81654f1
MS
1250
1251static struct objc_methcall methcalls[] = {
1252 { "_objc_msgSend", resolve_msgsend, 0, 0},
1253 { "_objc_msgSend_stret", resolve_msgsend_stret, 0, 0},
1254 { "_objc_msgSendSuper", resolve_msgsend_super, 0, 0},
1255 { "_objc_msgSendSuper_stret", resolve_msgsend_super_stret, 0, 0},
1256 { "_objc_getClass", NULL, 0, 0},
1257 { "_objc_getMetaClass", NULL, 0, 0}
1258};
1259
1260#define nmethcalls (sizeof (methcalls) / sizeof (methcalls[0]))
1261
d2e6263c
MS
1262/* The following function, "find_objc_msgsend", fills in the data
1263 * structure "objc_msgs" by finding the addresses of each of the
1264 * (currently four) functions that it holds (of which objc_msgSend is
1265 * the first). This must be called each time symbols are loaded, in
0df8b418 1266 * case the functions have moved for some reason.
b81654f1
MS
1267 */
1268
b9362cc7 1269static void
b81654f1
MS
1270find_objc_msgsend (void)
1271{
1272 unsigned int i;
b81654f1 1273
5cc80db3
MS
1274 for (i = 0; i < nmethcalls; i++)
1275 {
50e65b17 1276 struct bound_minimal_symbol func;
b81654f1 1277
5cc80db3 1278 /* Try both with and without underscore. */
50e65b17
TT
1279 func = lookup_bound_minimal_symbol (methcalls[i].name);
1280 if ((func.minsym == NULL) && (methcalls[i].name[0] == '_'))
5cc80db3 1281 {
50e65b17 1282 func = lookup_bound_minimal_symbol (methcalls[i].name + 1);
5cc80db3 1283 }
50e65b17 1284 if (func.minsym == NULL)
5cc80db3
MS
1285 {
1286 methcalls[i].begin = 0;
1287 methcalls[i].end = 0;
1288 continue;
1289 }
1290
77e371c0 1291 methcalls[i].begin = BMSYMBOL_VALUE_ADDRESS (func);
50e65b17 1292 methcalls[i].end = minimal_symbol_upper_bound (func);
b81654f1 1293 }
b81654f1
MS
1294}
1295
1296/* find_objc_msgcall (replaces pc_off_limits)
1297 *
d2e6263c
MS
1298 * ALL that this function now does is to determine whether the input
1299 * address ("pc") is the address of one of the Objective-C message
b81654f1
MS
1300 * dispatch functions (mainly objc_msgSend or objc_msgSendSuper), and
1301 * if so, it returns the address of the method that will be called.
1302 *
1303 * The old function "pc_off_limits" used to do a lot of other things
d2e6263c 1304 * in addition, such as detecting shared library jump stubs and
b81654f1 1305 * returning the address of the shlib function that would be called.
e76f05fa 1306 * That functionality has been moved into the gdbarch_skip_trampoline_code and
d2e6263c 1307 * IN_SOLIB_TRAMPOLINE macros, which are resolved in the target-
0df8b418 1308 * dependent modules.
b81654f1
MS
1309 */
1310
b9362cc7 1311static int
36e53c63 1312find_objc_msgcall_submethod (int (*f) (CORE_ADDR, CORE_ADDR *),
d2e6263c
MS
1313 CORE_ADDR pc,
1314 CORE_ADDR *new_pc)
b81654f1 1315{
a70b8144 1316 try
bf469271
PA
1317 {
1318 if (f (pc, new_pc) == 0)
1319 return 1;
1320 }
230d2906 1321 catch (const gdb_exception &ex)
bf469271
PA
1322 {
1323 exception_fprintf (gdb_stderr, ex,
1324 "Unable to determine target of "
1325 "Objective-C method call (ignoring):\n");
1326 }
bf469271
PA
1327
1328 return 0;
b81654f1
MS
1329}
1330
1331int
1332find_objc_msgcall (CORE_ADDR pc, CORE_ADDR *new_pc)
1333{
1334 unsigned int i;
1335
1336 find_objc_msgsend ();
5e488a7b
AC
1337 if (new_pc != NULL)
1338 {
1339 *new_pc = 0;
1340 }
b81654f1 1341
d2e6263c
MS
1342 for (i = 0; i < nmethcalls; i++)
1343 if ((pc >= methcalls[i].begin) && (pc < methcalls[i].end))
1344 {
1345 if (methcalls[i].stop_at != NULL)
1346 return find_objc_msgcall_submethod (methcalls[i].stop_at,
1347 pc, new_pc);
1348 else
1349 return 0;
b81654f1 1350 }
d2e6263c 1351
b81654f1
MS
1352 return 0;
1353}
1354
6c265988 1355void _initialize_objc_language ();
b81654f1 1356void
6c265988 1357_initialize_objc_language ()
b81654f1 1358{
11db9430 1359 add_info ("selectors", info_selectors_command,
1bedd215 1360 _("All Objective-C selectors, or those matching REGEXP."));
11db9430 1361 add_info ("classes", info_classes_command,
1bedd215 1362 _("All Objective-C classes, or those matching REGEXP."));
b81654f1 1363 add_com ("print-object", class_vars, print_object_command,
1bedd215 1364 _("Ask an Objective-C object to print itself."));
b81654f1
MS
1365 add_com_alias ("po", "print-object", class_vars, 1);
1366}
1367
b81654f1 1368static void
e17a4113
UW
1369read_objc_method (struct gdbarch *gdbarch, CORE_ADDR addr,
1370 struct objc_method *method)
b81654f1 1371{
e17a4113 1372 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5cc80db3 1373
e17a4113
UW
1374 method->name = read_memory_unsigned_integer (addr + 0, 4, byte_order);
1375 method->types = read_memory_unsigned_integer (addr + 4, 4, byte_order);
1376 method->imp = read_memory_unsigned_integer (addr + 8, 4, byte_order);
b81654f1
MS
1377}
1378
e17a4113
UW
1379static unsigned long
1380read_objc_methlist_nmethods (struct gdbarch *gdbarch, CORE_ADDR addr)
b81654f1 1381{
e17a4113 1382 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5cc80db3 1383
e17a4113 1384 return read_memory_unsigned_integer (addr + 4, 4, byte_order);
b81654f1
MS
1385}
1386
1387static void
e17a4113
UW
1388read_objc_methlist_method (struct gdbarch *gdbarch, CORE_ADDR addr,
1389 unsigned long num, struct objc_method *method)
b81654f1 1390{
e17a4113
UW
1391 gdb_assert (num < read_objc_methlist_nmethods (gdbarch, addr));
1392 read_objc_method (gdbarch, addr + 8 + (12 * num), method);
b81654f1
MS
1393}
1394
1395static void
e17a4113
UW
1396read_objc_object (struct gdbarch *gdbarch, CORE_ADDR addr,
1397 struct objc_object *object)
b81654f1 1398{
e17a4113 1399 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5cc80db3 1400
e17a4113 1401 object->isa = read_memory_unsigned_integer (addr, 4, byte_order);
b81654f1
MS
1402}
1403
1404static void
e17a4113
UW
1405read_objc_super (struct gdbarch *gdbarch, CORE_ADDR addr,
1406 struct objc_super *super)
b81654f1 1407{
e17a4113 1408 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5cc80db3 1409
e17a4113 1410 super->receiver = read_memory_unsigned_integer (addr, 4, byte_order);
fe978cb0 1411 super->theclass = read_memory_unsigned_integer (addr + 4, 4, byte_order);
b81654f1
MS
1412};
1413
1414static void
e17a4113 1415read_objc_class (struct gdbarch *gdbarch, CORE_ADDR addr,
fe978cb0 1416 struct objc_class *theclass)
b81654f1 1417{
e17a4113 1418 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
5cc80db3 1419
fe978cb0
PA
1420 theclass->isa = read_memory_unsigned_integer (addr, 4, byte_order);
1421 theclass->super_class = read_memory_unsigned_integer (addr + 4, 4, byte_order);
1422 theclass->name = read_memory_unsigned_integer (addr + 8, 4, byte_order);
1423 theclass->version = read_memory_unsigned_integer (addr + 12, 4, byte_order);
1424 theclass->info = read_memory_unsigned_integer (addr + 16, 4, byte_order);
1425 theclass->instance_size = read_memory_unsigned_integer (addr + 18, 4,
0df8b418 1426 byte_order);
fe978cb0
PA
1427 theclass->ivars = read_memory_unsigned_integer (addr + 24, 4, byte_order);
1428 theclass->methods = read_memory_unsigned_integer (addr + 28, 4, byte_order);
1429 theclass->cache = read_memory_unsigned_integer (addr + 32, 4, byte_order);
1430 theclass->protocols = read_memory_unsigned_integer (addr + 36, 4, byte_order);
b81654f1
MS
1431}
1432
b9362cc7 1433static CORE_ADDR
e17a4113 1434find_implementation_from_class (struct gdbarch *gdbarch,
fe978cb0 1435 CORE_ADDR theclass, CORE_ADDR sel)
b81654f1 1436{
e17a4113 1437 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
fe978cb0 1438 CORE_ADDR subclass = theclass;
b81654f1 1439
d2e6263c
MS
1440 while (subclass != 0)
1441 {
b81654f1 1442
d2e6263c
MS
1443 struct objc_class class_str;
1444 unsigned mlistnum = 0;
b81654f1 1445
e17a4113 1446 read_objc_class (gdbarch, subclass, &class_str);
b81654f1 1447
d2e6263c
MS
1448 for (;;)
1449 {
1450 CORE_ADDR mlist;
1451 unsigned long nmethods;
1452 unsigned long i;
b81654f1 1453
d2e6263c 1454 mlist = read_memory_unsigned_integer (class_str.methods +
e17a4113
UW
1455 (4 * mlistnum),
1456 4, byte_order);
d2e6263c
MS
1457 if (mlist == 0)
1458 break;
b81654f1 1459
e17a4113 1460 nmethods = read_objc_methlist_nmethods (gdbarch, mlist);
b81654f1 1461
d2e6263c
MS
1462 for (i = 0; i < nmethods; i++)
1463 {
1464 struct objc_method meth_str;
b81654f1 1465
5cc80db3 1466 read_objc_methlist_method (gdbarch, mlist, i, &meth_str);
b81654f1 1467
d2e6263c 1468 if (meth_str.name == sel)
1abf022c 1469 /* FIXME: hppa arch was doing a pointer dereference
0df8b418 1470 here. There needs to be a better way to do that. */
1abf022c 1471 return meth_str.imp;
d2e6263c
MS
1472 }
1473 mlistnum++;
b81654f1 1474 }
d2e6263c 1475 subclass = class_str.super_class;
b81654f1 1476 }
b81654f1
MS
1477
1478 return 0;
1479}
1480
b9362cc7 1481static CORE_ADDR
e17a4113
UW
1482find_implementation (struct gdbarch *gdbarch,
1483 CORE_ADDR object, CORE_ADDR sel)
b81654f1
MS
1484{
1485 struct objc_object ostr;
1486
d2e6263c
MS
1487 if (object == 0)
1488 return 0;
e17a4113 1489 read_objc_object (gdbarch, object, &ostr);
d2e6263c
MS
1490 if (ostr.isa == 0)
1491 return 0;
b81654f1 1492
e17a4113 1493 return find_implementation_from_class (gdbarch, ostr.isa, sel);
b81654f1
MS
1494}
1495
1496static int
1497resolve_msgsend (CORE_ADDR pc, CORE_ADDR *new_pc)
1498{
5ed92fa8
UW
1499 struct frame_info *frame = get_current_frame ();
1500 struct gdbarch *gdbarch = get_frame_arch (frame);
1501 struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
1502
b81654f1
MS
1503 CORE_ADDR object;
1504 CORE_ADDR sel;
1505 CORE_ADDR res;
1506
5ed92fa8
UW
1507 object = gdbarch_fetch_pointer_argument (gdbarch, frame, 0, ptr_type);
1508 sel = gdbarch_fetch_pointer_argument (gdbarch, frame, 1, ptr_type);
b81654f1 1509
e17a4113 1510 res = find_implementation (gdbarch, object, sel);
d2e6263c
MS
1511 if (new_pc != 0)
1512 *new_pc = res;
1513 if (res == 0)
1514 return 1;
b81654f1
MS
1515 return 0;
1516}
1517
1518static int
1519resolve_msgsend_stret (CORE_ADDR pc, CORE_ADDR *new_pc)
1520{
5ed92fa8
UW
1521 struct frame_info *frame = get_current_frame ();
1522 struct gdbarch *gdbarch = get_frame_arch (frame);
1523 struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
1524
b81654f1
MS
1525 CORE_ADDR object;
1526 CORE_ADDR sel;
1527 CORE_ADDR res;
1528
5ed92fa8
UW
1529 object = gdbarch_fetch_pointer_argument (gdbarch, frame, 1, ptr_type);
1530 sel = gdbarch_fetch_pointer_argument (gdbarch, frame, 2, ptr_type);
b81654f1 1531
e17a4113 1532 res = find_implementation (gdbarch, object, sel);
d2e6263c
MS
1533 if (new_pc != 0)
1534 *new_pc = res;
1535 if (res == 0)
1536 return 1;
b81654f1
MS
1537 return 0;
1538}
1539
1540static int
1541resolve_msgsend_super (CORE_ADDR pc, CORE_ADDR *new_pc)
1542{
5ed92fa8
UW
1543 struct frame_info *frame = get_current_frame ();
1544 struct gdbarch *gdbarch = get_frame_arch (frame);
1545 struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
1546
b81654f1
MS
1547 struct objc_super sstr;
1548
1549 CORE_ADDR super;
1550 CORE_ADDR sel;
1551 CORE_ADDR res;
1552
5ed92fa8
UW
1553 super = gdbarch_fetch_pointer_argument (gdbarch, frame, 0, ptr_type);
1554 sel = gdbarch_fetch_pointer_argument (gdbarch, frame, 1, ptr_type);
b81654f1 1555
e17a4113 1556 read_objc_super (gdbarch, super, &sstr);
fe978cb0 1557 if (sstr.theclass == 0)
d2e6263c 1558 return 0;
b81654f1 1559
fe978cb0 1560 res = find_implementation_from_class (gdbarch, sstr.theclass, sel);
d2e6263c
MS
1561 if (new_pc != 0)
1562 *new_pc = res;
1563 if (res == 0)
1564 return 1;
b81654f1
MS
1565 return 0;
1566}
1567
1568static int
1569resolve_msgsend_super_stret (CORE_ADDR pc, CORE_ADDR *new_pc)
1570{
5ed92fa8
UW
1571 struct frame_info *frame = get_current_frame ();
1572 struct gdbarch *gdbarch = get_frame_arch (frame);
1573 struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
1574
b81654f1
MS
1575 struct objc_super sstr;
1576
1577 CORE_ADDR super;
1578 CORE_ADDR sel;
1579 CORE_ADDR res;
1580
5ed92fa8
UW
1581 super = gdbarch_fetch_pointer_argument (gdbarch, frame, 1, ptr_type);
1582 sel = gdbarch_fetch_pointer_argument (gdbarch, frame, 2, ptr_type);
b81654f1 1583
e17a4113 1584 read_objc_super (gdbarch, super, &sstr);
fe978cb0 1585 if (sstr.theclass == 0)
d2e6263c 1586 return 0;
b81654f1 1587
fe978cb0 1588 res = find_implementation_from_class (gdbarch, sstr.theclass, sel);
d2e6263c
MS
1589 if (new_pc != 0)
1590 *new_pc = res;
1591 if (res == 0)
1592 return 1;
b81654f1
MS
1593 return 0;
1594}
This page took 1.820372 seconds and 4 git commands to generate.