mailing list of musl libc
 help / color / mirror / code / Atom feed
From: orc <orc@sibserver.ru>
To: musl@lists.openwall.com
Subject: Re: Silly question about strncpy(), strlen() and related funcs
Date: Tue, 19 Jun 2012 14:44:12 +0800	[thread overview]
Message-ID: <20120619144412.6c028709@sibserver.ru> (raw)
In-Reply-To: <20120618203514.GW17860@port70.net>

On Mon, 18 Jun 2012 22:35:14 +0200
Szabolcs Nagy <nsz@port70.net> wrote:

> * orc <orc@sibserver.ru> [2012-06-19 02:54:09 +0800]:
> > What ALIGN and additional checks like 'if (((uintptr_t)s & ALIGN) ==
> > ((uintptr_t)d & ALIGN))' {...} are mean in src/string/strpcpy.c and
> > similiar functions?
> 
> i assume you meant stpncpy.c

Yes, my typo.

> 
> it checks whether s(ource) and d(estination) pointers
> have the same alignment relative to word boundaries
> 
> 
> (uintptr_t)s makes the pointer available for integer arithmetics
> 
> ALIGN is a bit mask 00..01..11 such that a word aligned pointer
> has 0 bits where ALIGN has 1s
> 
> so the expression
>   (uintptr_t)s & ALIGN
> checks if s is word aligned
> 
> (eg on 32bit systems a word aligned pointer is a multiple of 4
> so it should end with two 0s)
> 
> (alignment matters because even though the granularity of
> addressing is 1byte, load/store of >1byte objects can
> only be done (efficiently) with certain alignment)

Thanks for explanation. I've already seen in debugger that it works with
pointers, but how it works with them was somewhat cryptic for me.
Rich's explanation below helped me to understand the rest of code.


  reply	other threads:[~2012-06-19  6:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-18 18:54 orc
2012-06-18 20:35 ` Szabolcs Nagy
2012-06-19  6:44   ` orc [this message]
2012-06-18 21:48 ` Rich Felker
2012-06-19  6:44   ` orc

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=20120619144412.6c028709@sibserver.ru \
    --to=orc@sibserver.ru \
    --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).