mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@libc.org>
To: musl@lists.openwall.com
Subject: Re: [PATCH 3/3] add s390x port
Date: Fri, 21 Oct 2016 16:27:02 -0400	[thread overview]
Message-ID: <20161021202702.GZ19318@brightrain.aerifal.cx> (raw)
In-Reply-To: <20160726035300.10255-3-koorogi@koorogi.info>

Sorry for taking so long to give this the attention it deserves. I
think it looks good and is mostly ready to commit. A few
questions/comments though:

On Mon, Jul 25, 2016 at 10:53:00PM -0500, Bobby Bingham wrote:
> diff --git a/arch/s390x/bits/alltypes.h.in b/arch/s390x/bits/alltypes.h.in
> new file mode 100644
> index 0000000..1a83846
> --- /dev/null
> +++ b/arch/s390x/bits/alltypes.h.in
> @@ -0,0 +1,26 @@
> +#define _Addr long
> +#define _Int64 long
> +#define _Reg long
> +
> +TYPEDEF __builtin_va_list va_list;
> +TYPEDEF __builtin_va_list __isoc_va_list;
> +
> +#ifndef __cplusplus
> +TYPEDEF int wchar_t;
> +#endif
> +
> +TYPEDEF double float_t;

Reportedly this is wrong (a bug copied from glibc) and floats are
actually evaluated as float on s390. Can you check and confirm?

> diff --git a/arch/s390x/bits/ipc.h b/arch/s390x/bits/ipc.h
> new file mode 100644
> index 0000000..4710c12
> --- /dev/null
> +++ b/arch/s390x/bits/ipc.h
> @@ -0,0 +1,14 @@
> +struct ipc_perm {
> +	key_t __ipc_perm_key;
> +	uid_t uid;
> +	gid_t gid;
> +	uid_t cuid;
> +	gid_t cgid;
> +	mode_t mode;
> +	unsigned short __pad1;
> +	unsigned short __ipc_perm_seq;
> +	unsigned long __pad2;
> +	unsigned long __pad3;
> +};

__ipc_perm_seq is int on other archs, without the padding. It's not a
standard type so I don't think we're forced to have matching type, but
I wonder why this is. OTOH maybe some current archs are buggy because
of this..

> diff --git a/arch/s390x/syscall_arch.h b/arch/s390x/syscall_arch.h
> [...]
> +#define SYSCALL_USE_SOCKETCALL

Is this intentional? s390x does not (or did not always) have dedicated
syscalls for socket ops?

> diff --git a/src/thread/s390x/__tls_get_offset.s b/src/thread/s390x/__tls_get_offset.s
> new file mode 100644
> index 0000000..8ee92de
> --- /dev/null
> +++ b/src/thread/s390x/__tls_get_offset.s
> @@ -0,0 +1,17 @@
> +	.global __tls_get_offset
> +	.type __tls_get_offset,%function
> +__tls_get_offset:
> +	stmg  %r14, %r15, 112(%r15)
> +	aghi  %r15, -160
> +
> +	la    %r2, 0(%r2, %r12)
> +	brasl %r14, __tls_get_addr
> +
> +	ear   %r1, %a0
> +	sllg  %r1, %r1, 32
> +	ear   %r1, %a1
> +
> +	sgr   %r2, %r1
> +
> +	lmg   %r14, %r15, 272(%r15)
> +	br    %r14

Can you explain this function and why a tail-call to __tls_get_addr
doesn't work? Based on the (albeit 32-bit) info in
https://www.akkadia.org/drepper/tls.pdf it seems like it could but
maybe I'm missing something. Is there a special contract about
clobbers?

Rich


  reply	other threads:[~2016-10-21 20:27 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-26  3:52 [PATCH 1/3] treat null vdso base same as missing Bobby Bingham
2016-07-26  3:52 ` [PATCH 2/3] allow different size hash table entries Bobby Bingham
2016-07-27 16:49   ` Alexander Monakov
2016-07-26  3:53 ` [PATCH 3/3] add s390x port Bobby Bingham
2016-10-21 20:27   ` Rich Felker [this message]
2016-10-22  0:15     ` Bobby Bingham
2016-10-22  2:59       ` Rich Felker

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=20161021202702.GZ19318@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --cc=musl@lists.openwall.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.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).