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