lkml.org 
[lkml]   [2015]   [Jun]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 4/5] x86/asm/entry/32: Replace RESTORE_RSI_RDI[_RDX] with open-coded 32-bit reads

* Denys Vlasenko <dvlasenk@redhat.com> wrote:

> On 06/14/2015 10:40 AM, Ingo Molnar wrote:
> >
> > * Denys Vlasenko <dvlasenk@redhat.com> wrote:
> >
> >> +8b 74 24 68 mov 0x68(%rsp),%esi
> >> +8b 7c 24 70 mov 0x70(%rsp),%edi
> >> +8b 54 24 60 mov 0x60(%rsp),%edx
> >
> > Btw., could you (in another patch) order the restoration properly, by pt_regs
> > memory order, where possible?
>
> Will do.
>
> > So this:
> >
> >> + movl RSI(%rsp), %esi
> >> + movl RDI(%rsp), %edi
> >> + movl RDX(%rsp), %edx
> >> movl RIP(%rsp), %ecx
> >> movl EFLAGS(%rsp), %r11d
> >
> > would become:
> >
> > movl RDX(%rsp), %edx
> > movl RSI(%rsp), %esi
> > movl RDI(%rsp), %edi
> > movl RIP(%rsp), %ecx
> > movl EFLAGS(%rsp), %r11d
> >
> > ... or so.
>
> Actually, ecx and r11 need to be loaded first. They are not so much "restored"
> as "prepared for SYSRET insn". Every cycle lost in loading these delays SYSRET.
> [...]

So in the typical case they will still be cached, and so their max latency should
be around 3 cycles.

In fact because they are memory loads, they don't really have dependencies, so
they should be available to SYSRET almost immediately, i.e. within a cycle - and
there's no reason to believe why these loads wouldn't pipeline properly and
parallelize with the many other things SYSRET has to do to organize a return to
user-space, before it can actually use the target RIP and RFLAGS.

So I strongly doubt that the placement of the RCX and R11 load before the SYSRET
matters to performance.

In any case this should be testable by looking at syscall performance and
reordering the instructions.

Thanks,

Ingo


\
 
 \ /
  Last update: 2015-06-15 22:41    [W:0.098 / U:0.084 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site