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