I found a bug in Intel Skylake processors
gallium.inria.fr
I found a bug in Intel Skylake processors
1–10 of 104 posts
Re: I found a bug in Intel Skylake processors
#2Re: I found a bug in Intel Skylake processors
#3It's of course not wrong, but using AH when you're dealing with RAX is a weird anachronism
Clang does the obvious, correct thing.
Re: I found a bug in Intel Skylake processors
#4GCC generates code that's smaller but it isn't optimal, because of the potential for partial register stalls (and just overall register renaming issues) It's of course not wrong, but using AH when you're dealing with RAX is a weird anachronism Clang does the obvious, correct thing.
Re: I found a bug in Intel Skylake processors
#5GCC generates code that's smaller but it isn't optimal, because of the potential for partial register stalls (and just overall register renaming issues) It's of course not wrong, but using AH when you're dealing with RAX is a weird anachronism Clang does the obvious, correct thing.
Re: I found a bug in Intel Skylake processors
#6Re: I found a bug in Intel Skylake processors
#7> The errata refers to the problem showing up on short loops of less than 64 instructions that use AH, BH, CH or DH.
> Looking at the Skylake microarch, the instruction decode queue is 128 uOps thread, 2*64 uOps when threaded. The Loop Stream Detector "can stream the same sequence of µOPs directly from the IDQ continuously without any additional fetching, decoding, or utilizing additional caches or resources." ... "capable of detecting loops up to 64 µOPs per thread". https://en.wikichip.org/wiki/intel/microarchitectures/skylak...
> So maybe the microcode update just shuts off the loopback detector.
https://groups.google.com/d/msg/comp.arch/UkO4Z2FT18c/7YlC0a...
So if the bug is in the loop-detector, and the patch possibly disables it rather than fixes it, then does anyone have any before-and-after performance stats?
Re: I found a bug in Intel Skylake processors
#8GCC generates code that's smaller but it isn't optimal, because of the potential for partial register stalls (and just overall register renaming issues) It's of course not wrong, but using AH when you're dealing with RAX is a weird anachronism Clang does the obvious, correct thing.
It's not obvious. If it was then GCC would not do it. Please don't use the word 'obvious' when it is to you but not to the majority of population.
Re: I found a bug in Intel Skylake processors
#9How does this bug affect current hardware in production? Is it worth waiting for the fix before buying the new MBPs, for example?