linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Christoph Lameter <cl@linux.com>,
	Pekka Enberg <penberg@kernel.org>,
	David Rientjes <rientjes@google.com>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>,
	Andi Kleen <ak@linux.intel.com>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH 2/2] include/linux: apply __malloc attribute
Date: Thu, 24 Mar 2016 15:36:39 -0700	[thread overview]
Message-ID: <20160324153639.bb996d7bf5a585dfb46740b7@linux-foundation.org> (raw)
In-Reply-To: <1458776553-9033-2-git-send-email-linux@rasmusvillemoes.dk>

On Thu, 24 Mar 2016 00:42:32 +0100 Rasmus Villemoes <linux@rasmusvillemoes.dk> wrote:

> Attach the malloc attribute to a few allocation functions. This helps
> gcc generate better code by telling it that the return value doesn't
> alias any existing pointers (which is even more valuable given the
> pessimizations implied by -fno-strict-aliasing).
> 
> A simple example of what this allows gcc to do can be seen by looking
> at the last part of drm_atomic_helper_plane_reset:
> 
> 	plane->state = kzalloc(sizeof(*plane->state), GFP_KERNEL);
> 
> 	if (plane->state) {
> 		plane->state->plane = plane;
> 		plane->state->rotation = BIT(DRM_ROTATE_0);
> 	}
> 
> which compiles to
> 
>     e8 99 bf d6 ff          callq  ffffffff8116d540 <kmem_cache_alloc_trace>
>     48 85 c0                test   %rax,%rax
>     48 89 83 40 02 00 00    mov    %rax,0x240(%rbx)
>     74 11                   je     ffffffff814015c4 <drm_atomic_helper_plane_reset+0x64>
>     48 89 18                mov    %rbx,(%rax)
>     48 8b 83 40 02 00 00    mov    0x240(%rbx),%rax [*]
>     c7 40 40 01 00 00 00    movl   $0x1,0x40(%rax)
> 
> With this patch applied, the instruction at [*] is elided, since the
> store to plane->state->plane is known to not alter the value of
> plane->state.

Shaves 6 bytes off my 1MB i386 defconfig vmlinux.  Winner!

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2016-03-24 22:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1458776553-9033-1-git-send-email-linux@rasmusvillemoes.dk>
2016-03-23 23:42 ` [PATCH 2/2] include/linux: apply __malloc attribute Rasmus Villemoes
2016-03-24 22:36   ` Andrew Morton [this message]
2016-03-26 19:06     ` Rasmus Villemoes

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=20160324153639.bb996d7bf5a585dfb46740b7@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=ak@linux.intel.com \
    --cc=cl@linux.com \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=linux@rasmusvillemoes.dk \
    --cc=penberg@kernel.org \
    --cc=rientjes@google.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;
as well as URLs for NNTP newsgroup(s).