lkml.org 
[lkml]   [2015]   [May]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 02/19] x86, fpu: Wrap get_xsave_addr() to make it safer

* Andy Lutomirski <luto@amacapital.net> wrote:

> > It's not that simple, because the decision is not 'lazy versus eager', but
> > 'mixed lazy/eager versus eager-only':
> >
> > Even on modern machines, if a task is not using the FPU (it's doing integer
> > only work, with short sleeps just shuffling around requests, etc.) then
> > context switches get up to 5-10% faster with lazy FPU restores.
>
> That's only sort of true. I'd believe that a context switch between two lazy
> tasks is 5-10% faster than a context switch between two eager tasks. I bet that
> a context switch between a lazy task and an eager task is a whole lot slower
> than a context switch between two eager tasks because manipulating CR0.TS is
> incredibly slow on all modern CPUs AFAICT. It's even worse in a VM guest.
>
> In other words, with lazy restore, we save the XRSTOR(S) and possibly a
> subsequent XSAVEOPT/XSAVES, but the cost is a MOV to CR0 and possibly a CLTS,
> and the MOV to CR0 is much, much slower than even a worst-case XRSTOR(S). In
> the worst lazy-restore case, we also pay a full exception roundtrip, and
> everything pales in comparison. If we're a guest, then there's probably a
> handful of exits thrown in for good measure.
>
> For true integer-only tasks, I think we should instead convince glibc to add
> things like vzeroall in convenient places to force as much xstate as possible to
> the init state, thus speeding up the optimized save/restore variants.
>
> I think the fundamental issue here is that CPU designers care about xstate
> save/restore/optimize performance, but they don't care at all about TS
> performance, so TS manipulations are probably microcoded and serializing.

That's definitely true.

Btw., potentially being able to get rid of lazy restores was why I wrote the
FPU-benchmarking code, and it gives these results on reasonably recent Intel CPUs:

CR0 reads are reasonably fast:

[ 0.519287] x86/fpu: Cost of: CR0 read : 4 cycles

but we can cache that so it doesn't help us.

writes are bad:

[ 0.528643] x86/fpu: Cost of: CR0 write : 208 cycles

and we cannot cache it, so that hurts us.

and a CR0::TS fault cost is horrible:

[ 0.538042] x86/fpu: Cost of: CR0::TS fault : 1156 cycles

and this is hurting us too.

Since the first version I have extended the benchmark with a cache-cold column as
well - in the cache cold case the difference is even more striking, and in may
cases context switches are cache cold.

Interestingly, this kind of high cost of CR0 related accesses is true even on
pretty old, 10+ years old x86 CPUs, per my measurements, so it's not limited to
modern x86 microarchitectures.

So yes, it would be nice to standardize on synchronous context switching of all
CPU state.

Thanks,

Ingo


\
 
 \ /
  Last update: 2015-05-29 21:21    [W:0.235 / U:0.112 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site