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