Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1164485 > unrolled thread
| Started by | Andy Lutomirski <luto@amacapital.net> |
|---|---|
| First post | 2015-06-13 02:10 +0200 |
| Last post | 2015-06-18 10:10 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
For your amusement: slightly faster syscalls Andy Lutomirski <luto@amacapital.net> - 2015-06-13 02:10 +0200
Re: For your amusement: slightly faster syscalls Ingo Molnar <mingo@kernel.org> - 2015-06-18 10:10 +0200
| From | Andy Lutomirski <luto@amacapital.net> |
|---|---|
| Date | 2015-06-13 02:10 +0200 |
| Subject | For your amusement: slightly faster syscalls |
| Message-ID | <pAHbj-4H5-7@gated-at.bofh.it> |
The SYSCALL prologue starts with SWAPGS immediately followed by a gs-prefixed instruction. I think this causes a pipeline stall. If we instead do: mov %rsp, rsp_scratch(%rip) mov sp0(%rip), %rsp) swapgs ... pushq rsp_scratch(%rip) then we avoid the stall and save about three cycles. Horrible horrible code to do this lives here: https://git.kernel.org/cgit/linux/kernel/git/luto/devel.git/log/?h=x86/faster_syscalls Caveat emptor: it also disables SMP. For three cycles, I don't think this is worth trying to clean up. --Andy -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Date | 2015-06-18 10:10 +0200 |
| Message-ID | <pCD3z-2zn-3@gated-at.bofh.it> |
| In reply to | #1164485 |
* Andy Lutomirski <luto@amacapital.net> wrote: > On Mon, Jun 15, 2015 at 2:42 PM, H. Peter Anvin <hpa@zytor.com> wrote: > > On 06/15/2015 02:30 PM, Linus Torvalds wrote: > >> > >> On Jun 12, 2015 2:09 PM, "Andy Lutomirski" <luto@amacapital.net > >> <mailto:luto@amacapital.net>> wrote: > >>> > >>> Caveat emptor: it also disables SMP. > >> > >> OK, I don't think it's interesting in that form. > >> > >> For small cpu counts, I guess we could have per-cpu syscall entry points > >> (unless the syscall entry msr is shared across hyperthreading? Some msr's are > >> per thread, others per core, AFAIK), and it could actually work that way. > >> > >> But I'm not sure the three cycles is worth the worry and the complexity. > > > > We discussed the per-cpu syscall entry point, and the issue at hand is that it > > is very hard to do that without with fairly high probability touch another > > cache line and quite possibly another page (and hence a TLB entry.) ( So apparently I wasn't Cc:ed, or gmail ate the mail - so I can only guess from the surrounding discussion what this patch does, as my lkml folder is still doing a long refresh ... ) > > I think this isn't actually true. If we were going to do a per-cpu syscall > entry point, then we might as well duplicate all of the entry code per cpu > instead of just a short trampoline. That would avoid extra TLB misses and (L1) > cache misses, I think. > > I still think this is far too complicated for three cycles. I was hoping for > more. The other problem with duplicating entry code is that with per CPU entry code we split its cache footprint in higher level caches (such as the L2 but also L3 cache). The interesting number would be to check cache cold entry performance, not cache hot one: the NUMA latency advantage of having per node copies of the entry code might be worth it. ... and that's why UP is the least interesting case ;-) Thanks, Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web