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

> On 06/14/2015 10:40 AM, Ingo Molnar wrote:
> > 
> > * Denys Vlasenko <dvlas...@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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to