Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Hannes Domani <ssbssa@yahoo.de>
To: Gdb-patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH 1/7] Fix function argument and return value locations
Date: Mon, 25 May 2020 21:32:09 +0000 (UTC)	[thread overview]
Message-ID: <977050290.5716513.1590442329577@mail.yahoo.com> (raw)
In-Reply-To: <7c09d137-6938-6a01-3f8d-ff8ae26c87b5@simark.ca>

 Am Montag, 25. Mai 2020, 23:02:37 MESZ hat Simon Marchi <simark@simark.ca> Folgendes geschrieben:

> On 2020-05-25 2:56 p.m., Hannes Domani via Gdb-patches wrote:
>
> > diff --git a/gdb/amd64-windows-tdep.c b/gdb/amd64-windows-tdep.c
> > index 487dfd45fc..db9845203f 100644
> > --- a/gdb/amd64-windows-tdep.c
> > +++ b/gdb/amd64-windows-tdep.c
> > @@ -77,7 +77,8 @@ static int
> >  amd64_windows_passed_by_xmm_register (struct type *type)
> >  {
> >    return ((type->code () == TYPE_CODE_FLT
> > -      || type->code () == TYPE_CODE_DECFLOAT)
> > +      || type->code () == TYPE_CODE_DECFLOAT
> > +      || type->code () == TYPE_CODE_COMPLEX)
> >            && (TYPE_LENGTH (type) == 4 || TYPE_LENGTH (type) == 8));
>
> >  }
>
> I don't know much about ABIs, so I tried:
>
> $ cat hello.c
> #include <complex.h>
>
> void other(int real, int imag);
> void func (complex int n)
> {
>   other(creal(n), cimag(n));
> }
> $ x86_64-w64-mingw32-gcc hello.c -g3 -O0 -c
> $ x86_64-w64-mingw32-objdump -d allo.o
>
> allo.o:    file format elf64-x86-64
>
>
> Disassembly of section .text:
>
> 0000000000000000 <func>:
>   0:  55                      push  %rbp
>   1:  48 89 e5                mov    %rsp,%rbp
>   4:  48 83 ec 10            sub    $0x10,%rsp
>   8:  48 89 7d f8            mov    %rdi,-0x8(%rbp)
>   c:  8b 45 fc                mov    -0x4(%rbp),%eax
>   f:  66 0f ef c0            pxor  %xmm0,%xmm0
>   13:  f2 0f 2a c0            cvtsi2sd %eax,%xmm0
>   17:  f2 0f 2c d0            cvttsd2si %xmm0,%edx
>   1b:  8b 45 f8                mov    -0x8(%rbp),%eax
>   1e:  66 0f ef c0            pxor  %xmm0,%xmm0
>   22:  f2 0f 2a c0            cvtsi2sd %eax,%xmm0
>   26:  f2 0f 2c c0            cvttsd2si %xmm0,%eax
>   2a:  89 d6                  mov    %edx,%esi
>   2c:  89 c7                  mov    %eax,%edi
>   2e:  e8 00 00 00 00          callq  33 <func+0x33>
>   33:  90                      nop
>   34:  c9                      leaveq
>   35:  c3                      retq
>
>
> Doesn't this show that a `complex int` argument is passed through the rdi
> register?  Am I missing something here?

You're probably right, the thing is, I was only able to test complex float
and complex double, because gdb doesn't like complex integral types:

complex int complex_int = 5 + 6i;

(gdb) p complex_int
'complex_int' has unknown type; cast it to its declared type
(gdb) pt complex_int
'complex_int' has unknown type; cast it to its declared type

So I guess it should check for target-type float as well:
       || (type->code () == TYPE_CODE_COMPLEX
           && TYPE_TARGET_TYPE (type)->code () == TYPE_CODE_FLT))

Do many people use complex int, because I personally wouldn't have expected
that this even exists.


Hannes


  reply	other threads:[~2020-05-25 21:32 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20200525185659.59346-1-ssbssa.ref@yahoo.de>
2020-05-25 18:56 ` Windows testsuite failures Hannes Domani
2020-05-25 18:56   ` [PATCH 1/7] Fix function argument and return value locations Hannes Domani
2020-05-25 21:02     ` Simon Marchi
2020-05-25 21:32       ` Hannes Domani [this message]
2020-05-25 22:14         ` Simon Marchi
2020-05-25 23:03           ` Hannes Domani
2020-05-26 16:14             ` Simon Marchi
2020-05-26 20:43         ` Tom Tromey
2020-05-25 18:56   ` [PATCH 2/7] Handle Windows drives in auto-load script paths Hannes Domani
2020-05-26 16:04     ` Jon Turney
2020-05-26 16:31       ` Hannes Domani
2020-05-26 16:05     ` Christian Biesinger
2020-05-26 16:25       ` Hannes Domani
2020-05-26 16:31         ` Christian Biesinger
2020-05-26 16:40           ` Hannes Domani
2020-05-26 16:42             ` Christian Biesinger
2020-05-26 17:14               ` Hannes Domani
2020-05-25 18:56   ` [PATCH 3/7] Handle Windows drives in rbreak paths Hannes Domani
2020-05-25 18:56   ` [PATCH 4/7] Use errno value of first openp failure Hannes Domani
2020-05-26 20:37     ` Tom Tromey
2020-05-25 18:56   ` [PATCH 5/7] Close file handle of empty history file Hannes Domani
2020-05-26 16:37     ` Christian Biesinger
2020-05-26 17:42       ` Hannes Domani
2020-05-27 14:33         ` Tom Tromey
2020-05-27 17:37           ` Hannes Domani
2020-05-27 18:27             ` Christian Biesinger
2020-05-25 18:56   ` [PATCH 6/7] Move exit_status_set_internal_vars out of GLOBAL_CURDIR Hannes Domani
2020-05-26 20:45     ` Tom Tromey
2020-05-27 17:50       ` Hannes Domani
2020-05-25 18:56   ` [PATCH 7/7] Reset Windows hardware breakpoints on executable's entry point Hannes Domani
2020-05-27 12:07     ` Pedro Alves
2020-05-27 14:48       ` Pedro Alves
2020-05-27 15:39         ` Hannes Domani
2020-05-31 15:54           ` Pedro Alves
2020-05-31 16:37     ` Pedro Alves
2020-06-07 12:56       ` Hannes Domani
2020-07-08 17:43         ` Hannes Domani
2020-10-09 18:22         ` Pedro Alves
2020-10-09 18:51           ` Hannes Domani via Gdb-patches
2020-10-12 11:13             ` Pedro Alves
2020-10-12 17:21       ` Tom Tromey
2020-10-12 17:22         ` Tom Tromey
2020-05-28 18:15   ` Windows testsuite failures Christian Biesinger
2020-05-28 18:37     ` Hannes Domani

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=977050290.5716513.1590442329577@mail.yahoo.com \
    --to=ssbssa@yahoo.de \
    --cc=gdb-patches@sourceware.org \
    /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