Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 1.02 KB

File metadata and controls

13 lines (8 loc) · 1.02 KB

A SystemVerilog implementation of a superscalar and out-of-order instruction pipeline

A superscalar and out-of-order instruction pipeline loosely based on the RISC-V ISA implemented in SystemVerilog. This project was part of my BSc thesis.

Abstract

Superscalar out-of-order execution has become the norm in modern processors. Yet there is little information in the literature about its implementation details. This thesis explores what new hardware structures superscalar out-of-order execution requires. It presents a design for a simple processor, implemented in SystemVerilog, that uses register renaming, reservation stations and a reorder buffer to dynamically schedule instructions.
The thesis also contains an essay that explains why power limitations have caused processor clock rates to stagnate in the noughties. This resulted in heightened pressure on computer architects to increase instruction throughput per cycle.

Pipeline structure

See my thesis text for details.