Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Michael Snyder <msnyder@redhat.com>
To: Adam Fedor <fedor@doc.com>
Cc: GDB Patches <gdb-patches@sources.redhat.com>
Subject: Re: [PATCH] Handle ObjC OPS in eval.c
Date: Fri, 31 Jan 2003 03:07:00 -0000	[thread overview]
Message-ID: <3E39E887.AB98ECA4@redhat.com> (raw)
In-Reply-To: <3E15F21B.6010101@doc.com>

Adam Fedor wrote:
> 
> 2003-01-02  Adam Fedor  <fedor@gnu.org>
> 
>         * Makefile.in (eval.o): Add $(objc_lang_h)
>         * eval.c (evaluate_subexp_standard): Handle ObjC ops.
>         * valops.c (find_function_addr): Make non-static.
>         * value.h (find_function_addr): Declare.

Adam, this is OK in principal, assuming that the objc code
such as value_nsstring is being unconditionally built now.
A few remarks:

>
> +       /* Verify target responds to method selector. This logic needs
> +        * work: not sure of GNU variant's name.  Must also account for
> +        * new (NSObject) and old (Object) worlds
> +        */
> +
> +       if (1)

Is there a reason for this if(1)?

> +
> +#ifdef GDB_TARGET_IS_HPPA
> +           CORE_ADDR tmp;
> +           /* code and comment lifted from hppa-tdep.c -- unfortunately
> +              there is no builtin function to do this for me. */
> +           /* If bit 30 (counting from the left) is on, then addr is the
> +              address of the PLT entry for this function, not the address
> +              of the function itself.  Bit 31 has meaning too, but only
> +              for MPE.  */
> +           if (addr & 0x2)
> +             addr = (CORE_ADDR) read_memory_unsigned_integer (addr & ~0x3, 4);
> +           if (tmp = skip_trampoline_code (addr, 0))
> +             addr = tmp;       /* in case of trampoline code */
> +#endif

Ifdef gdb_target is a big no-no.  Can you use gdbarch for this?


> +       if (method)
> +         {
> +           struct block *b;
> +           CORE_ADDR funaddr;
> +           struct type *value_type;
> +
> +           funaddr = find_function_addr (method, &value_type);

This is surely not the best way to do this.  You can get 
the address and the type from the symbol.  If op_funcall
doesn't need to call it, why does op_objc_msgcall?


  reply	other threads:[~2003-01-31  3:07 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-01-03 20:27 Adam Fedor
2003-01-31  3:07 ` Michael Snyder [this message]
2003-02-07 18:31   ` Adam Fedor
2003-02-07 22:04     ` Andrew Cagney
2003-02-13  4:05   ` Adam Fedor
2003-02-19 20:05     ` Elena Zannoni
2003-03-05  5:06       ` Adam Fedor
2003-04-10 21:56         ` Elena Zannoni
2003-04-20  3:42           ` Adam Fedor
2003-04-21  4:14             ` Daniel Jacobowitz
2003-04-21 16:26               ` Elena Zannoni
2003-04-21 16:47               ` Adam Fedor
2003-04-21 16:51                 ` Daniel Jacobowitz
2003-04-21 17:09                 ` Elena Zannoni
2003-04-21 18:23                   ` Adam Fedor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3E39E887.AB98ECA4@redhat.com \
    --to=msnyder@redhat.com \
    --cc=fedor@doc.com \
    --cc=gdb-patches@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox