GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Conversation

Notices

  1. Embed this notice
    Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:38:02 JST Gabriele Svelto Gabriele Svelto

    In the early days of personal computing CPU bugs were so rare as to be newsworthy. The infamous Pentium FDIV bug is remembered by many, and even earlier CPUs had their own issues (the 6502 comes to mind). Nowadays they've become so common that I encounter them routinely while triaging crash reports sent from Firefox users. Given the nature of CPUs you might wonder how these bugs arise, how they manifest and what can and can't be done about them. 🧵 1/31

    In conversation about 2 months ago from mas.to permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:53 JST Gabriele Svelto Gabriele Svelto
      in reply to

      The instruction pointer associated with an instruction is corrupted, and what appears to be the currently executing instruction is not. You can tell because a load causes a store exception, or a jump causes an access exception: https://bugzilla.mozilla.org/show_bug.cgi?id=1820832 12/31

      In conversation about 2 months ago permalink

      Attachments

      1. Domain not in remote thumbnail source whitelist: bugzilla.mozilla.org
        1820832 - Crash in [@ nsIFrame::GetParent]
        REOPENED (nobody) in Core - Layout. Last updated 2024-09-13.
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:53 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Other bugs could have even worse effects, such as AMD's infamous Barcelona TLB bug which would put the core from which recovery wasn't possible, effectively halting execution: https://arstechnica.com/gadgets/2007/12/linux-patch-sheds-light-on-amds-tlb-errata/ 13/31

      In conversation about 2 months ago permalink

      Attachments

      1. Domain not in remote thumbnail source whitelist: cdn.arstechnica.net
        Linux patch sheds light on AMD's TLB errata
        More details have come to light concerning AMD's TLB errata, thanks to the …
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:53 JST Gabriele Svelto Gabriele Svelto
      in reply to

      In all these cases the likely culprit is a bug in the machinery that tracks the internal CPU state when an unlikely sequence of events happens: a rapid series of interrupt or context switches, execution timing of certain instructions while the processor leaves or enters a particular mode of execution. These are not unlikely software bugs where you missed checking a particular condition at a specific time, and most of the time it doesn't matter except for that one time when it does. 14/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:54 JST Gabriele Svelto Gabriele Svelto
      in reply to

      The code expected a piece of data to be loaded from memory, but the load/store unit returned stale data from a previous fetch: https://bugzilla.mozilla.org/show_bug.cgi?id=1687914 11/31

      In conversation about 2 months ago permalink

      Attachments

      1. Domain not in remote thumbnail source whitelist: bugzilla.mozilla.org
        1687914 - Ryzen first generation Crash in [@ nsThread::GetLabeledRunnableName] and [@ mozilla::PerformanceCounterState::RunnableWillRun]
        RESOLVED (nobody) in Firefox Build System - Toolchains. Last updated 2023-04-10.
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:56 JST Gabriele Svelto Gabriele Svelto
      in reply to

      The execution of every single instruction can alter a significant chunk of this enormous amount of state and must do so reliably. But as I mentioned before it's impossible to test all possible combinations and some sequences might lead to inconsistent or corrupted state, which in turn will manifest itself as a software bug. 9/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:56 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Here's a few examples I've encountered: the instruction pointer is fetched from the stack while returning from a function call but it appears wrong, possibly because the wrong instruction pointer was sent to the instruction fetch pipeline: https://bugzilla.mozilla.org/show_bug.cgi?id=1746270 10/31

      In conversation about 2 months ago permalink

      Attachments

      1. Domain not in remote thumbnail source whitelist: bugzilla.mozilla.org
        1746270 - Crash in [@ double_conversion::PowersOfTenCache::GetCachedPowerForBinaryExponentRange] on Gemini Lake-based Atom CPUs
        RESOLVED (nobody) in Core - JavaScript Engine. Last updated 2024-05-13.
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:57 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Instruction faults cannot be predicted either: if a memory access fails because it access a protected memory area the flow of instructions must be stopped, undoing everything that should have happened before the faulting instruction and steering the core towards executing code provided by the operating system for such case, giving the impression that execution stopped right there in a perfectly sequential way. 7/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:57 JST Gabriele Svelto Gabriele Svelto
      in reply to

      And that's without mentioning the large amount of hidden state carried by a CPU purely for performance reasons: physical-to-memory address translations are done via tables stored in memory, but this data needs to be cached in a translation lookaside buffer inside the core. Cache lines can be shared by different cores and must track their state, are they owned by a core? Shared? Is the data dirty locally and needs to be fetched remotely? 8/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:58 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Modern CPUs contain a tremendous amount of state that they need to track. Hundreds of instructions can be in-flight at any given moment, each of them operates on physical registers which are assigned just-in-time via a mechanism that maps the registers in the ISA to spare physical slots in very large banks. Each instruction is associated with a set of data that is entirely speculative for a very long time, including the instruction itself. 5/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:58 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Instruction addresses, operands, dependencies are tracked as the CPU fetches and executes a stream of instructions which might or might not have to be executed, depending on branch prediction. In the case of a misprediction the state of the "wrong" instructions needs to be discarded. Similarly instruction timing is not predictable anymore. Memory accesses can take anything from a few cycles to hundreds, and fetch their data through different structures both inside and outside of the core. 6/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:59 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Let's start with logic bugs. As you probably know a CPU has a certain amount of visible state: a set of registers that contain data and which is manipulated by the instructions, an instruction pointer pointing holding the address of the executing instructions, a set of special registers to alter the core's behavior, for example by changing how floating-point operations round their operands. 3/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:37:59 JST Gabriele Svelto Gabriele Svelto
      in reply to

      In the early days of integrated CPUs this state was not only visible to the user, but corresponded physically to what was in the core. The registers corresponded to entries in an actual bank of SRAMs inside the core, the instruction pointer was a physical register that would be read every cycle to fetch instructions from memory. In today's CPUs all these things are merely abstractions and the underlying physical reality is dramatically more complex. 4/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Friday, 23-Jan-2026 03:38:01 JST Gabriele Svelto Gabriele Svelto
      in reply to

      The root of all these issues is fundamentally the same: complexity. Modern cores have become so complex that it's impossible to demonstrate at design time that they will work reliably under all possible conditions, and thoroughly testing them is also infeasible. In addition to ever increasing logic complexity the the conditions in which they operate have also changed: fixed voltages and frequencies are a thing of the past, complicating physical design. 2/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:00 JST Gabriele Svelto Gabriele Svelto
      in reply to

      When CPUs ship their most performance critical circuits are supposed to come with a certain timing slack that will compensate for this effect. Over time this timing slack gets smaller. If a CPU is already operating near the edge, aging might cut this slack all the way down to zero, causing the core to fail consistently. 29/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:00 JST Gabriele Svelto Gabriele Svelto
      in reply to

      And remember there's a lot of variables involved: timing broadly depends on transistor sizing and wire resistance. Higher voltages improve transistor performance but increase power dissipation and thus temperature. Temperature increases resistance which decreases propagation speed in wires. It's a delicate dance to keep a dynamic equilibrium of optimal power consumption, adequate performance and reliability. 30/31

      In conversation about 2 months ago permalink
      Soatok Dreamseeker repeated this.
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:00 JST Gabriele Svelto Gabriele Svelto
      in reply to

      All in all modern CPUs are beasts of tremendous complexity and bugs have become inevitable. I wish the industry would be spending more resources addressing them, improving design and testing before CPUs ship to users, but alas most of the tech sector seems more keen on playing with unreliable statistical toys rather than ensuring that the hardware users pay good money for works correctly. 31/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:01 JST Gabriele Svelto Gabriele Svelto
      in reply to

      This is a circuit with two sets of 8 wires that go into it, plus one wire to select which inputs will go to the output, and a single set of 8 wires going out. Depending on the value of the select signal you'll get one or the other set of inputs. Guess what happens if the select signal arrives too late, for example right after the end of the clock cycle? You get the wrong set of bits in the output. 26/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:01 JST Gabriele Svelto Gabriele Svelto
      in reply to

      I can't be sure that this is exactly what's happening on Raptor Lake CPUs, it's just a theory. But a modern CPU core has millions upon millions of these types of circuits, and a timing issue in any of them can lead to these kinds of problems. And that's without saying that voltage delivery across a core is an exquisitely analog problem, with voltage fluctuations that might be caused by all sorts of events: instructions being executed, temperature, etc... 27/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:01 JST Gabriele Svelto Gabriele Svelto
      in reply to

      You might also remember that Raptor Lake CPU problems get worse over time. That's because circuits degrade, and applying the wrong voltage can cause them to degrade faster. Circuit degradation is a research field of its own, but its effects are broadly the same: resistance in wires go up, capacity of trench capacitors go down, etc… and the combined effect of these changes is that circuits get slower and need more voltage to operate at the same frequency. 28/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:02 JST Gabriele Svelto Gabriele Svelto
      in reply to

      When a clock cycle ends, all the signals resulting from a pipeline stage are stored in a pipeline register. A storage element - invisible to the user - that separates pipeline stages. So if a stage adds two numbers for example, the pipeline register will hold the result of this addition. The next cycle this result will be fed to the circuits that make up the next pipeline stage. If the result of the addition I mentioned is an address for example, then it might be used to access the cache. 23/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:02 JST Gabriele Svelto Gabriele Svelto
      in reply to

      The speed at which signals propagate in circuits is proportional to how much voltage is being applied. In older CPUs this voltage was fixed, but in modern ones it changes thousands of times per second to save power. Providing just as little voltage needed for a certain clock frequency can dramatically reduce power consumption, but providing too little voltage may cause a signal to arrive late, or the wrong signal to reach the pipeline register, causing in turn a cascade of failures. 24/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:02 JST Gabriele Svelto Gabriele Svelto
      in reply to

      In Raptor Lake's case a very common pattern that me and others have noticed is that sometimes the wrong 8-bit value is delivered. This happens when reading 8-bit registers such as AH or AL, which are just slices of larger integer registers, and don't have dedicated physical storage. The operation that pulls out the higher or lower 8 bits of the last 16 bits of a regular register is usually done via a multiplexer or MUX. 25/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:03 JST Gabriele Svelto Gabriele Svelto
      in reply to

      However not all bugs can be fixed this way. Bugs within logic that sits on a critical path can rarely be fixed. Additionally some microcode fixes can only be made to work if the microcode is loaded at boot time, right when the CPU is initialized. If the updated microcode is loaded by the operating system it might be too late to reconfigure the core's operation, you'll need an updated UEFI firmware for some fixes to work. 20/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:03 JST Gabriele Svelto Gabriele Svelto
      in reply to

      But this is just logic bugs and unfortunately there's a lot more than that nowadays. If you've followed the controversy around Intel's first-generation Raptor Lake CPUs you'll know that they had issues that would cause seemingly random failures to happen. These bugs were caused by the wrong voltage being provided to the core under certain conditions which in turn would often cause a race condition within certain circuits leading to the wrong results being delivered. 21/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:03 JST Gabriele Svelto Gabriele Svelto
      in reply to

      To understand how this works keep this in mind: the maximum frequency at which a CPU can operate is dictated by the longest path through the circuits that make up a pipeline stage. Signals propagating via wires and turning transistors on and off take time, and because modern circuit design is strictly synchronous, all the signals must reach the end of the stage before the end of a clock cycle. 22/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:04 JST Gabriele Svelto Gabriele Svelto
      in reply to

      As an example microcode can be used to disable certain circuits. Imagine something like a loop buffer, a structure that captures decoded instructions and re-executes them in a loop bypassing instruction fetches. If it turns out to be buggy a microcode update might disable it entirely, effectively sacrificing an optimization for stability. 17/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:04 JST Gabriele Svelto Gabriele Svelto
      in reply to

      When implementing a new core it is commonplace to implement new structures, and especially more aggressive performance features, in a way that makes it possible to disable them via microcode. This gives the design team the flexibility to ship a feature only if it's been proven to be reliable, or delay it for the next iteration. 18/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:04 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Microcode can also be used to work around conditions caused by data races, by injecting bubbles in the pipeline under certain conditions. If the execution of two back-to-back operations is known to cause a problem it might be possible to avoid it by delaying the execution of the second operation by one cycle, again trading performance for stability. 19/31

      In conversation about 2 months ago permalink
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:05 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Reading the errata of any relatively recent CPU you will find the same wording applied to every known issue: "Under complex microarchitectural conditions...". That's hardwarese for "a state we had not anticipated we could end up in". Try looking it up yourself on an errata document such as this one: https://edc.intel.com/content/www/us/en/secure/design/confidential/products-and-solutions/processors-and-chipsets/tiger-lake/11th-generation-intel-core-processor-family-specification-update/errata-details/ 15/31

      In conversation about 2 months ago permalink

      Attachments

      1. No result found on File_thumbnail lookup.
        Errata Details - 032 - ID:631123 | 11th Generation Intel® Core™ Processor
    • Embed this notice
      Gabriele Svelto (gabrielesvelto@mas.to)'s status on Saturday, 24-Jan-2026 21:56:05 JST Gabriele Svelto Gabriele Svelto
      in reply to

      Now you might wonder if these kinds of bugs can be fixed after the fact. Well, sometimes they can, sometimes they can't. CPUs are not purely hard-coded beasts, they rely on microcode for part of their operation. Traditionally microcode is a set of internal instructions that the CPU ran to execute external instructions. That's mostly not the case anymore, and modern microcode ships not only with implementations of complex instructions but also a significant amount of configuration. 16/31

      In conversation about 2 months ago permalink

Feeds

  • Activity Streams
  • RSS 2.0
  • Atom
  • Help
  • About
  • FAQ
  • TOS
  • Privacy
  • Source
  • Version
  • Contact

GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.