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