]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* expprint.c (print_subexp): Handle OP_OBJC_NSSTRING,
authorAdam Fedor <fedor@gnu.org>
Tue, 19 Nov 2002 03:36:44 +0000 (03:36 +0000)
committerAdam Fedor <fedor@gnu.org>
Tue, 19 Nov 2002 03:36:44 +0000 (03:36 +0000)
OP_OBJC_MSGCALL, and OP_OBJC_SELF.
(op_name): Handle OP_OBJC_SELF.
* Makefile.in (expprint.o): Add additional depends.

gdb/ChangeLog
gdb/Makefile.in
gdb/expprint.c

index a46a3730c8d19bb201351f50d28138407b765cba..20277ed6fcb47b4fe5a1d838e27abb862ca2ae8e 100644 (file)
@@ -1,3 +1,10 @@
+2002-11-18  Adam Fedor  <fedor@gnu.org>
+
+       * expprint.c (print_subexp): Handle OP_OBJC_NSSTRING,
+       OP_OBJC_MSGCALL, and OP_OBJC_SELF.      
+       (op_name): Handle OP_OBJC_SELF.
+       * Makefile.in (expprint.o): Add additional depends.
+
 2002-11-18  Adam Fedor  <fedor@gnu.org>
 
        * expression.h: Rename ObjC ops to OP_OBJC_MSGCALL,
index 08a0ee260a7bf1573a9d9ce66d0ef32285a6f309..6183833a5753e78cc91c6413e7ff12cde783edbe 100644 (file)
@@ -1665,7 +1665,7 @@ exec.o: exec.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) $(gdbcmd_h) \
        $(language_h) $(symfile_h) $(objfiles_h) $(completer_h) $(value_h) \
        $(gdb_string_h) $(gdbcore_h) $(gdb_stat_h) $(xcoffsolib_h)
 expprint.o: expprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
-       $(value_h) $(language_h) $(parser_defs_h)
+       $(value_h) $(language_h) $(parser_defs_h) $(target_h) $(gdb_string_h)
 f-lang.o: f-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
        $(expression_h) $(parser_defs_h) $(language_h) $(f_lang_h) \
        $(valprint_h)
index aa8b87620128b45f5a50d4d4ba204f03dc24bac5..ed9d50ddf54b268d5337101598619ab748330a43 100644 (file)
@@ -27,6 +27,8 @@
 #include "language.h"
 #include "parser-defs.h"
 #include "frame.h"             /* For frame_map_regnum_to_name.  */
+#include "target.h"
+#include "gdb_string.h"
 
 #ifdef HAVE_CTYPE_H
 #include <ctype.h>
@@ -177,6 +179,51 @@ print_subexp (register struct expression *exp, register int *pos,
       fprintf_unfiltered (stream, "B'<unimplemented>'");
       return;
 
+    case OP_OBJC_NSSTRING:     /* Objective-C Foundation Class NSString constant.  */
+      nargs = longest_to_int (exp->elts[pc + 1].longconst);
+      (*pos) += 3 + BYTES_TO_EXP_ELEM (nargs + 1);
+      fputs_filtered ("@\"", stream);
+      LA_PRINT_STRING (stream, &exp->elts[pc + 2].string, nargs, 1, 0);
+      fputs_filtered ("\"", stream);
+      return;
+
+    case OP_OBJC_MSGCALL:
+      {                        /* Objective C message (method) call.  */
+       char *selector;
+       (*pos) += 3;
+       nargs = longest_to_int (exp->elts[pc + 2].longconst);
+       fprintf_unfiltered (stream, "[");
+       print_subexp (exp, pos, stream, PREC_SUFFIX);
+       if (0 == target_read_string (exp->elts[pc + 1].longconst,
+                                    &selector, 1024, NULL))
+         {
+           error ("bad selector");
+           return;
+         }
+       if (nargs)
+         {
+           char *s, *nextS;
+           s = alloca (strlen (selector) + 1);
+           strcpy (s, selector);
+           for (tem = 0; tem < nargs; tem++)
+             {
+               nextS = strchr (s, ':');
+               *nextS = '\0';
+               fprintf_unfiltered (stream, " %s: ", s);
+               s = nextS + 1;
+               print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
+             }
+         }
+       else
+         {
+           fprintf_unfiltered (stream, " %s", selector);
+         }
+       fprintf_unfiltered (stream, "]");
+       /* "selector" was malloc'd by target_read_string. Free it.  */
+       free (selector);
+       return;
+      }
+
     case OP_ARRAY:
       (*pos) += 3;
       nargs = longest_to_int (exp->elts[pc + 2].longconst);
@@ -391,6 +438,13 @@ print_subexp (register struct expression *exp, register int *pos,
       fputs_filtered ("this", stream);
       return;
 
+      /* Objective-C ops */
+
+    case OP_OBJC_SELF:
+      ++(*pos);
+      fputs_filtered ("self", stream); /* The ObjC equivalent of "this".  */
+      return;
+
       /* Modula-2 ops */
 
     case MULTI_SUBSCRIPT:
@@ -684,6 +738,8 @@ op_name (int opcode)
       return "STRUCTOP_PTR";
     case OP_THIS:
       return "OP_THIS";
+    case OP_OBJC_SELF:
+      return "OP_OBJC_SELF";
     case OP_SCOPE:
       return "OP_SCOPE";
     case OP_TYPE: