The full picture
- Register renaming demystified: the ISA's 16 registers map onto ~300 physical ones; write-after-write/read hazards between unrelated uses of 'rax' vanish. Same trick as immutable/versioned data removing false conflicts in software — say the analogy.
- The ROB is a commit log: execute in any order, retire in order; on mispredict or exception, roll back to the last consistent point. Databases and CPUs converged on the same answer to 'go fast but appear sequential' — speculative execution is optimistic concurrency control in silicon.
- Why ILP hit a wall: dependency chains, branch density and — dominating everything — memory latency; a 100ns miss is ~500 issue slots. Hence the pivot to multicore (throughput via parallel cores) and SMT/hyper-threading (a second architectural thread to fill stall slots — ~10–30% gain, shared-cache security caveats).
- Privilege plumbing that OS answers rest on: interrupt → save state → vector table → ring 0 handler → iret; the timer interrupt enables preemption; page-fault-and-restart enables virtual memory; syscall instructions are just controlled ring crossings. One paragraph of hardware explains half the OS track.