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