mirror of
https://github.com/handsomezhuzhu/2025-yatcpu.git
synced 2026-02-20 12:00:14 +00:00
Lab3 pipelined CPU renewed
- added tutorial - fix ID reg addr invalid in certain types of instructions - renamed some variables for better understanding
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -2,6 +2,10 @@ target
|
||||
.vscode
|
||||
.metals
|
||||
.bloop
|
||||
**/project/metals.sbt
|
||||
**/project/project
|
||||
|
||||
# VCD output
|
||||
**/test_run_dir
|
||||
|
||||
# vivado stuffs
|
||||
|
||||
@@ -28,5 +28,5 @@ principles of writing:
|
||||
|
||||
4. 实验内容
|
||||
1. [1] 实验1
|
||||
2. 实验2
|
||||
2. [1] 实验2
|
||||
|
||||
|
||||
@@ -151,7 +151,7 @@ CSR 寄存器组的代码文件位于 `src/main/scala/riscv/core/CSR.scala`
|
||||
|
||||
CLINT 的代码文件位于 `src/main/scala/riscv/core/CLINT.scala`
|
||||
|
||||
Timer 的代码位于 `src/main/scala/riscv/peripheral/Timer.scala`
|
||||
Timer 的代码位于 `src/main/scala/peripheral/Timer.scala`
|
||||
|
||||
!!! tip
|
||||
IDEA 可以双击 shift,vscode 可以 shift+P 以打开文件快速搜索面板。
|
||||
@@ -173,7 +173,7 @@ Timer 的代码位于 `src/main/scala/riscv/peripheral/Timer.scala`
|
||||
|
||||
1. `CLINTCSRTest.scala` 中添加了 CLINT 处理硬件终端和软件中断的两个测试,请您选择至少一个,并:
|
||||
1. 简述这个测试通过给部件输入什么信号,以测试 CLINT 的哪些功能?
|
||||
2. 在测试波形图上,找到一次从开始处理中断到中断处理完成的波形图,并挑选其中关键的信号说明其过程。例如硬件中断的测试中,有在跳转指令和非跳转指令下的两次中断处理测试;软件测试则分别测试了 `ecall` 和 `ebreak` 两次中断,选择其中一次即可。
|
||||
2. 在测试波形图上,找到一次从开始处理中断到中断处理完成的波形图,并挑选其中关键的信号说明其过程。例如硬件中断的测试中,有在跳转指令和非跳转指令下的两次中断处理测试;软件中断则分别测试了 `ecall` 和 `ebreak` 两次中断,选择其中一次即可。
|
||||
2. `CPUTest.scala` 中新增了 `SimpleTrapTest`,其执行 `csrc/simpletest.c` 的程序。请您:
|
||||
1. 简述该测试程序如何测试 CPU 的中断处理正确性。
|
||||
2. 在测试波形图上找出说明该程序成功执行的信号。
|
||||
|
||||
BIN
docs/docs/better-tut/labs/lab3/images/control_cases_table.png
Normal file
BIN
docs/docs/better-tut/labs/lab3/images/control_cases_table.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 89 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 78 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 67 KiB |
230
docs/docs/better-tut/labs/lab3/lab3-pipelined-cpu.md
Normal file
230
docs/docs/better-tut/labs/lab3/lab3-pipelined-cpu.md
Normal file
@@ -0,0 +1,230 @@
|
||||
# 实验三 流水线 CPU
|
||||
|
||||
在完成单周期 CPU 实验后,你已经对 CPU 的原理和结构已经有了基本的了解。但单周期的 CPU 设计中,关键路径太长,频率难以提升,并且每个时钟周期只能执行一条指令,指令吞吐率低。下面,我们将尝试使多条指令重叠执行(即流水线技术)来解决这个问题。
|
||||
|
||||
竞争冒险的处理是流水线 CPU 设计的难点和关键所在。在下面的实验中,我们首先设计一个简单的三级流水线 CPU(IF、ID 和 EX 三级),它只涉及分支和跳转指令带来的控制冒险,处理起来较为简单;然后,我们再将三级流水线 CPU 的 EX 级继续切分为 EX、MEM 和 WB,形成经典的五级流水线,这样做带来的数据冒险需要使用阻塞和转发技术进行处理;最后,我们将分支和跳转提前到 ID 阶段,进一步缩短分支延迟。
|
||||
|
||||
本实验中五级流水线 CPU 的架构与 *Computer Organization and Design, RISC-V Edition* 中的流水线 CPU 架构基本相同,读者可同时参考此书第 4.5~4.8 节。
|
||||
|
||||
在本实验中,你将学习到:
|
||||
|
||||
- 使用流水线设计缩短关键路径
|
||||
- 正确处理流水线阻塞与清空
|
||||
- 使用转发逻辑减少流水线阻塞
|
||||
|
||||
不管使用 IDE 还是执行命令,根目录是 `lab3` 文件夹。
|
||||
|
||||
|
||||
## 流水线寄存器
|
||||
|
||||
流水线寄存器是在流水线中起缓存作用的寄存器,目的是切分组合逻辑,缩短关键路径。它的基本功能非常简单,在每一个时钟周期,根据复位(流水线清空)或阻塞(流水线暂停)的状态,将寄存器内容清空、保持或设置为新的值。寄存器的输出则是寄存器中保存的值。为了方便复用,我们可以定义一个带参数的 `PipelineRegister` 模块,用来实现不同数据位宽的流水线寄存器。
|
||||
|
||||
实验代码已经在 `src/main/scala/riscv/core/PipelineRegister.scala` 中定义好了模块接口:`stall` 和 `flush` 分别为流水线寄存器的阻塞和清空信号,`in` 和 `out` 分别为要写入寄存器的值和寄存器的当前值。
|
||||
|
||||
!!! note "实验任务: 实现流水线寄存器"
|
||||
|
||||
请你修改 `// Lab3(PipelineRegister)` 注释处的代码,使其能通过 `PipelineRegisterTest` 测试。
|
||||
|
||||
!!! tips "提示"
|
||||
在完成此题时你可以暂时抛开 CPU,只需要用实验零中的基础知识完成上述功能即可,最低所需代码不超过 7 行,请将它当作一道简单的开胃菜享用吧!
|
||||
|
||||
|
||||
|
||||
## 三级流水线
|
||||
|
||||
下面是三级流水线 CPU 的结构图,数据通路用蓝线表示,控制信号用红线表示。
|
||||
|
||||

|
||||
|
||||
我们用 `IF2ID` 和 `ID2EX` 这两组流水线寄存器将单周期 CPU 的组合逻辑部分切分为三个阶段:
|
||||
|
||||
* 取指(Instruction Fetch,IF):根据 PC 中的指令地址从内存中取出指令码;
|
||||
* 译码(Instruction Decode,ID):将指令码解码为控制信号并从寄存器组中读取操作数;
|
||||
* 执行(Execute,EX):包括 ALU 运算、访问内存和结果写回。
|
||||
|
||||
这三个阶段的代码与单周期 CPU 大同小异,所以我已经帮你写好啦,接下来让我们把主要精力放在处理竞争冒险上。
|
||||
|
||||
### 解决控制冒险:清空
|
||||
|
||||
在三级流水线中,由于所有数据处理操作都在 EX 阶段进行,因此不存在数据冒险,我们只需要处理程序跳转带来的控制冒险。有三种情况可能发生程序跳转:
|
||||
|
||||
* EX 段执行到跳转指令
|
||||
* EX 段执行到分支指令且分支条件成立
|
||||
* 发生中断,EX 段收到 CLINT 发来的 `InterruptAssert` 信号,这相当于在 EX 段的指令之上叠加了一条跳转指令,EX 段的指令继续执行,IF 段和 ID 段的指令将被丢弃
|
||||
|
||||
无论哪种情况,都是由 EX 段向 IF 段发送跳转信号 `jump_flag` 和跳转的目标地址 `jump_address`,但在 `jump_address` 写入 PC 并从该处取出指令前,流水线的 IF 和 ID 段已经各有两条不需要执行的指令,好在这两条指令的结果还没有写回,我们只需要清空对应的流水线寄存器,把它们变成两条空指令即可。
|
||||
|
||||
!!! note "实验任务:支持三级流水线的控制冒险"
|
||||
|
||||
我们用一个控制单元来检测控制冒险并清空流水线,模块定义在 `src/main/scala/riscv/core/threestage/Control.scala`,为了避免此题过于简单,我们没有提供模块接口,请根据以上分析确定模块的输入输出,在 `// Lab3(Flush)` 处将代码补充完整,并在 `src/main/scala/riscv/core/threestage/CPU.scala` 的 `// Lab3(Flush)` 处补充相关连线,使其能够通过 `ThreeStageCPUTest` 测试。
|
||||
|
||||
|
||||
|
||||
|
||||
## 五级流水线
|
||||
|
||||
在三级流水线中,执行阶段逻辑复杂,仍然可能导致较大的延迟。为了进一步缩短关键路径,我们可以扩展流水线级数,将执行阶段进一步分为 ALU 阶段、访存阶段以及写回阶段,如下图所示。
|
||||
|
||||

|
||||
|
||||
把三级流水线进一步分割为五级流水线将带来更加复杂的**数据冒险**,下面我们将尝试使用阻塞的方式解决数据冒险,得到一个功能完整的五级流水线 CPU。接着我们可以使用旁路和将分支跳转提前到 ID 阶段进一步提升 CPU 效率,这两部分将作为拓展实验供同学们选做。注意,上面的 CPU 结构图是我们完成所有实验之后的结果,在完成“缩短分支延迟”实验之前,我们 CPU 的结构将与上图稍有不同。例如,我们紧接着讨论的五级流水线 CPU 在 EX 阶段判断程序是否发生跳转,而不是 ID 阶段。
|
||||
|
||||
### 解决数据冒险:阻塞
|
||||
|
||||
当处于 ID 阶段的指令要读取的寄存器依赖于 EX 或 MEM 阶段的指令时,发生数据冒险。此时,我们可以保持 IF 和 ID 两个阶段状态不变,直到被依赖的指令执行完成,即 ID 段能够从寄存器组获得它所需要的数据,再继续执行。让我们考虑如下指令序列,并思考几个问题:
|
||||
|
||||
```assembly
|
||||
0000: add x1, x0, x0
|
||||
0004: sub x2, x0, x1
|
||||
0008: and x3, x1, x2
|
||||
000C: jalr x4, x1, 0
|
||||
0010: or x5, x3, x4
|
||||
0014: xor x6, x4, x5
|
||||
```
|
||||
|
||||
假设没有阻塞,它们在流水线中的状态如下:
|
||||
|
||||
| 时钟周期 | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
|
||||
| :------: | :---: | :---: | :---: | :----: | :----: | :----: | :----: |
|
||||
| **IF** | `add` | `sub` | `and` | `jalr` | `or` | `xor` | |
|
||||
| **ID** | | `add` | `sub` | `and` | `jalr` | `or` | `xor` |
|
||||
| **EX** | | | `add` | `sub` | `and` | `jalr` | `or` |
|
||||
| **MEM** | | | | `add` | `sub` | `and` | `jalr` |
|
||||
| **WB** | | | | | `add` | `sub` | `and` |
|
||||
|
||||
1. 在第 2 个时钟周期,指令 `sub x2, x0, x1` 处于 ID 阶段,需要从寄存器组读出它的源操作数,但它的源操作数依赖于前一条指令,且前一条指令的结果还没有写回,需要阻塞;同理,在第 3 个时钟周期,指令 `and x3, x1, x2` 需要读取的源操作数依赖于前两条指令,也需要阻塞;但是这两条指令分别需要阻塞多少个时钟周期?
|
||||
2. 在第 4 个时钟周期,指令 `jalr x4, x1, 0` 处于 ID 阶段,它的源操作数依赖于处于 WB 阶段的指令的结果,此时需不需要阻塞?
|
||||
3. 最后两条指令的源操作数同样依赖于前面的指令,这两条指令需不需要阻塞?
|
||||
|
||||
请你先思考片刻,下面我将给出阻塞后的流水线状态并作分析:
|
||||
|
||||
| 时钟周期 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|
||||
| :------: | :---: | :---: | :---: | :-------: | :-------: | :----: | :-------: | :-------: | :----: | :----: | :-------: |
|
||||
| **IF** | `add` | `sub` | `and` | `and` | `and` | `jalr` | `jalr` | `jalr` | `or` | `xor` | `add` |
|
||||
| **ID** | | `add` | `sub` | `sub` | `sub` | `and` | `and` | `and` | `jalr` | `or` | **`nop`** |
|
||||
| **EX** | | | `add` | **`nop`** | **`nop`** | `sub` | **`nop`** | **`nop`** | `and` | `jalr` | **`nop`** |
|
||||
| **MEM** | | | | `add` | `nop` | `nop` | `sub` | `nop` | `nop` | `and` | `jalr` |
|
||||
| **WB** | | | | | `add` | `nop` | `nop` | `sub` | `nop` | `nop` | `and` |
|
||||
|
||||
位于 ID 阶段的指令和位于 WB 阶段的指令之间不会发生数据冒险,这是因为我们的寄存器组模拟实现了 Double Pumping 功能,即 WB 阶段在前半个时钟周期向寄存器组写入数据,ID 阶段在后半个时钟周期从寄存器组读出数据,请你打开 `src/main/scala/riscv/core/RegisterFile` 查看相关代码。因此,在上面的例子中,对 `sub` 和 `and` 指令的阻塞只需持续到它们依赖的指令进入 WB 阶段即可,而 `jalr` 指令无需阻塞。值得注意的是,我们在阻塞 PC 和 IF2ID 寄存器以保持 IF 和 ID 阶段不变的同时,需要清空 ID2EX 寄存器以在 EX 阶段插入空指令(“气泡”),否则 ID 阶段的指令还是会进入 EX 阶段,这样就不是“阻塞”,而变成“重复”了。另外,`jalr` 是跳转指令,虽然它后面两条指令依赖于它写入的寄存器,但是它们本就不应该紧接着被执行,而是应该被清空,所以在第 10 个时钟周期应该清空 IF2ID 和 ID2EX 寄存器,而不是阻塞。(上表中加粗的 `nop` 表示因清空信号而插入的空指令,未加粗的 `nop` 表示从上一个流水段进入下一个流水段的空指令。)
|
||||
|
||||
特别提示:除了以上讨论的情况之外,寄存器 `x0` 在 risc-v 中具有特殊作用,以它为目标寄存器的指令的结果将被丢弃、以它为输入寄存器的指令也不会在相应输入寄存器结果上产生依赖。
|
||||
也就是说,目标或输入寄存器为 `x0` 时,该寄存器的结果无需阻塞。借用这一特点,我们对判断依赖和产生阻塞时约定:一条指令至多涉及两个输入寄存器 `rs1` 和 `rs2` ,以及一个目标寄存器 `rd` 。若某一格式的指令不包含这些寄存器的某一个时,如 I-type 指令不含 `rs2`,由 Decoder 输出相应寄存器地址为 `0`,即 `x0` 。该约定不会影响指令的正确执行,其由 `ALUOpSource` 选择正确的输入,同时也不会使流水线控制错误产生阻塞。
|
||||
|
||||
!!! note "实验任务:用阻塞解决数据冒险"
|
||||
|
||||
我们在 `src/main/scala/riscv/core/fivestage_stall/InstructionDecode.scala` 中留下了相应接口,请根据上述约定使 ID 输出合适的寄存器地址,以供后续冒险分析。完成后应能通过 `DecoderStallTest` 测试。
|
||||
|
||||
我们用一个控制单元来检测并解决控制冒险和数据冒险,模块接口已经定义在 `src/main/scala/riscv/core/fivestage_stall/Control.scala`,请根据以上分析,修改 `// Lab3(Stall)` 处的代码,使其能够通过 `FiveStageCPUStallTest` 测试。
|
||||
|
||||
|
||||
|
||||
### 拓展:使用旁路减少阻塞
|
||||
|
||||
至此,我们已经解决完所有竞争冒险,做出一个功能基本完整的五级流水线 CPU 了!但是,对同一个寄存器的连续操作在程序中是非常常见的,如果只使用阻塞来解决数据冒险,将产生大量“气泡”,降低执行效率。实际上,我们可以直接从流水线寄存器中直接获得指令的执行结果,并不需要阻塞直到前面的指令把结果写入寄存器组后再从寄存器组读取,即在 EX 段和 EX2MEM、MEM2WB 这两组流水线寄存器之间建立“旁路”,让 EX 段可以直接获取前面指令的执行结果。我们考虑如下指令序列:
|
||||
|
||||
```assembly
|
||||
0000: addi x1, x0, 1
|
||||
0004: sub x2, x0, x1
|
||||
0008: and x2, x1, x2
|
||||
000C: lw x2, 4(x2)
|
||||
0010: or x3, x1, x2
|
||||
```
|
||||
|
||||
下表是建立了旁路后的流水线状态,我们增加了 EX2MEM 和 MEM2WB 两行用来表示暂存在流水线寄存器中的执行结果。
|
||||
|
||||
| 时钟周期 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
|
||||
| :------: | :----: | :----: | :----: | :--------: | :--------: | :-------: | :-------: | :-------: |
|
||||
| **IF** | `addi` | `sub` | `and` | `lw` | `or` | | | |
|
||||
| **ID** | | `addi` | `sub` | `and` | `lw` | `or` | | |
|
||||
| **EX** | | | `addi` | `sub` | `and` | `lw` | `or` | `or` |
|
||||
| EX2MEM | | | | `addi: x1` | `sub: x2` | `and: x2` | | |
|
||||
| **MEM** | | | | `addi` | `sub` | `and` | `lw` | **`nop`** |
|
||||
| MEM2WB | | | | | `addi: x1` | `sub: x2` | `and: x2` | `lw: x2` |
|
||||
| **WB** | | | | | `addi` | `sub` | `and` | `lw` |
|
||||
|
||||
虽然第二条指令 `sub x2, x0, x1` 依赖于前一条指令的执行结果,但是在第 3 个时钟周期,位于 EX 段的 `sub` 指令可以直接从 EX2MEM 寄存器中获取第一条指令执行后 `x1` 寄存器的值作为它的源操作数而无需阻塞;同样地,第三条指令依赖于前两条指令,在第 4 个时钟周期,位于 EX 段的 `and` 指令可以从 EX2MEM 和 MEM2WB 中获取它的源操作数。值得注意的是,在第 5 个时钟周期,EX2MEM 和 MEM2WB 中都存有 `x2` 的值,此时我们应该取“最新”的那个,也就是位于 EX2MEM 中的值。在第 6 个时钟周期,情况有些不同,因为第四条指令是 load 指令,它需要等到 MEM 阶段结束才能得到结果,因此处于 EX 段的 `or` 指令无法从 EX2MEM 中获取它的源操作数,必须阻塞一个时钟周期后从 MEM2WB 中获取。
|
||||
|
||||
!!! note "实验任务:用旁路减少阻塞"
|
||||
|
||||
`InstructionDecode`中的实现与五级阻塞流水线CPU基本一致,你可以复制前面填好的内容。
|
||||
|
||||
我们用一个控制单元来处理流水线的阻塞和清空,模块接口已经定义在 `src/main/scala/riscv/core/fivestage_forward/Control.scala`;再用一个旁路单元来检测数据冒险并发出旁路控制信号,模块接口已经定义在 `src/main/scala/riscv/core/fivestage_forward/Forwarding.scala`;另外,还需要在执行单元(`src/main/scala/riscv/core/fivestage_forward/Execute.scala`)中根据旁路单元的控制信号使用对应的旁路数据。请你根据以上分析修改上述三个模块中 `// Lab3(Forward)` 处的代码,使其能够通过 `FiveStageCPUForward` 测试。
|
||||
|
||||
提示:你可以复用上道题中 `Control` 模块的部分代码;如果对模块接口中某个信号的功能有疑惑,可参考上面的 CPU 结构图,或做出你认为合理的修改并简要记录在报告中。
|
||||
|
||||
|
||||
|
||||
### 拓展:缩短分支延迟
|
||||
|
||||
我们已经利用旁路将数据冒险带来的损失降低到至多一个时钟周期了,但你也许对与目前流水线的效率还是不太满意,因为每次跳转都需要浪费两个时钟周期。接下来,我们往 CPU 中加入少量硬件,将分支/跳转指令的执行从 EX 段提前到 ID 段,进而把程序跳转的损失减少到一个时钟周期。
|
||||
|
||||
首先,我们需要把跳转的判断从 EX 段移到 ID 段;其次,跳转目标地址的计算是使用 EX 段的 ALU 进行的,因此我们需要给 ID 段增加一个加法器来计算目标地址;最后,我们需要添加额外的旁路逻辑,将前面指令的执行结果旁路到 ID 段给分支或跳转指令使用,如果所依赖的结果还没有产生,还需要进行阻塞。作为本实验的最后一题,我不再为你提供数据冒险的指令序列样例,请你自行考虑其他所有类型的指令与分支或跳转指令的搭配,找出其中的竞争冒险并进行解决。
|
||||
|
||||
|
||||
!!! note "实验任务:缩短分支延迟"
|
||||
|
||||
`InstructionDecode`中的实现与五级阻塞流水线CPU基本一致,你可以复制前面填好的内容。
|
||||
|
||||
我们已经为你定义好相关模块的接口并移除了 `Execute` 模块中分支和跳转的相关代码,请你修改 `src/main/scala/riscv/core/fivestage_final/InstructionDecode.scala`、`src/main/scala/riscv/core/fivestage_final/Control.scala` 和 `src/main/scala/riscv/core/fivestage_final/Forwarding.scala` 中 `// Lab3(Final)` 处的代码,使其能够通过 `FiveStageCPUFinal` 测试。你可以复制上道题中相应代码并作修改。
|
||||
|
||||
|
||||
### 提示:如何有效 debug
|
||||
|
||||
五级流水线 CPU 已经较为复杂,实现过程中的小错误都有可能导致结果出错。本小节为您提供如何有效 debug 的提示。
|
||||
|
||||
debug 时应当从小和简单的内容开始,逐步排除再考虑更复杂的内容。基础的检查包括:检查是否有文件还没有填写实现代码(如ID的代码未从前一步复制过来)、检查是否有拼写错误,或错用名字相近的信号线 等。
|
||||
|
||||
排除这些后,再考虑更复杂的可能性,其中重要的一步是 **用最少的内容复现错误**,这样可以排除更多的无关变量。在五级流水线三个小实验的 CPUTest 中,最简单的测试是 “store and load single byte” 测试,其代码在 `csrc/sb.S`,仅十几条汇编指令。如果您的 CPU 在不能通过该测试,您可以通过这些方法排查错误:
|
||||
|
||||
#### 打印
|
||||
|
||||
在一些关键部件处进行打印,如
|
||||
|
||||
```scala
|
||||
class RegisterFile extends Module {
|
||||
// ......
|
||||
// DEBUG
|
||||
val debug_clk_cnt = RegInit(0.U(32.W))
|
||||
debug_clk_cnt := debug_clk_cnt + 1.U
|
||||
when (io.write_enable) {
|
||||
printf(cf"[Reg] at clock ${debug_clk_cnt} write to register ${io.write_address}: 0x${io.write_data}%x\n\n")
|
||||
}
|
||||
}
|
||||
```
|
||||
其在寄存器写使能有效时,打印所写入的值。
|
||||
其中 `printf` 为 Chisel3 提供的打印函数, `cf` 为字符串插值器,可以在字符串里直观地打印,详见 [Printing in Chisel](https://www.chisel-lang.org/docs/explanations/printing)。
|
||||
|
||||
该方法需要找到某个容易看出错误根源的部件,如寄存器、MEM 等。
|
||||
|
||||
TODO:查看输出截图
|
||||
|
||||
|
||||
#### 查看波形图
|
||||
|
||||
可以用 GTKWave 查看波形图,并进行分析。TODO:GTKWave 教程。
|
||||
|
||||
|
||||
#### 充分利用提示
|
||||
|
||||
一般而言,本实验设计上不要求非常深入、复杂的 debug,因而会在部件的输入信号上予以提示,即不会引入多余的输入信号。您可以了解这些输入信号的含义,并查看其是否被您的代码利用上。
|
||||
|
||||
实验没有提供 `Control` 或 `Forwarding` 的单元测试,这是因为它们逻辑并不复杂,提供单元测试相当于给出了答案。为找出错误,可以按照如下框架进行思考:首先,五级流水线中,当前指令处于 EX 时,至多依赖于前两条指令,前面第三条指令已经完成并退出流水线; 同时依赖于前两条指令时,两条指令的目标寄存器是否相同 。其次,被依赖的指令可能在 EX 阶段得到其结果,也可能在 MEM 阶段得到。综合这两个维度,您应考虑其组合下的所有情况:
|
||||
|
||||
|
||||
{width="80%",align=center}
|
||||
|
||||
|
||||
上表适用于 Stall 和 Forwarding 两个小实验,对于缩短分支延迟,由于又在 ID 阶段引入了依赖,上表还需翻倍,分别对当前时钟周期下 ID 和 EX 阶段的指令进行讨论。
|
||||
|
||||
## 烧板验证
|
||||
|
||||
如果你已经完成了所有基础实验,那么你的 CPU 应该能够运行简单的程序,你可以通过 `Top` 模块中传入 `CPU` 模块构造函数的参数来选择你要使用的 CPU 版本:如果你只完成了基础实验,请选择 `ImplementationType.FiveStageStall`;如果你完成了第一个拓展实验,请选择 `ImplementationType.FiveStageForward`;如果你完成了第二个拓展实验,请选择 `ImplementationType.FiveStageFinal`。
|
||||
|
||||
---
|
||||
|
||||
## 实验报告
|
||||
|
||||
1. 简述您已实现的最复杂 CPU 的关键思路,包括 `Contrl` 和 `Forwarding`(如果有)的控制逻辑。
|
||||
2. 实验中没有特别讨论 CSR 指令的控制和数据冒险,请您简要分析 CSR 指令是否会产生上述冒险,并是否需要特别的处理措施。
|
||||
3. 说明您在完成实验的过程中,遇到的实验指导不足或改进建议。
|
||||
@@ -18,6 +18,7 @@ nav:
|
||||
- 实验:
|
||||
- better-tut/labs/lab1/lab1-single-cycle-cpu.md
|
||||
- better-tut/labs/lab2/lab2-interrupt.md
|
||||
- better-tut/labs/lab3/lab3-pipelined-cpu.md
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -24,20 +24,20 @@ class Top extends Module {
|
||||
val io = IO(new CPUBundle)
|
||||
|
||||
val cpu = Module(new CPU)
|
||||
|
||||
io.deviceSelect := 0.U
|
||||
cpu.io.debug_read_address := io.debug_read_address
|
||||
io.debug_read_data := cpu.io.debug_read_data
|
||||
|
||||
// intercept UART signals
|
||||
io.deviceSelect := cpu.io.deviceSelect
|
||||
|
||||
// CPU instruction input is controlled by external codes
|
||||
io.memory_bundle <> cpu.io.memory_bundle
|
||||
io.instruction_address := cpu.io.instruction_address
|
||||
cpu.io.instruction := io.instruction
|
||||
|
||||
cpu.io.instruction_valid := io.instruction_valid
|
||||
|
||||
}
|
||||
|
||||
object VerilogGenerator extends App {
|
||||
(new ChiselStage).execute(Array("-X", "verilog", "-td", "verilog/verilator"), Seq(ChiselGeneratorAnnotation(() =>
|
||||
new Top())))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,6 +92,11 @@ class Top(binaryFilename: String = "say_goodbye.asmbin") extends Module {
|
||||
rom_loader.io.bundle.read_data := 0.U
|
||||
cpu.io.memory_bundle <> mem.io.bundle
|
||||
}
|
||||
|
||||
when (uart.io.bundle.write_enable) {
|
||||
val the_char = cpu.io.memory_bundle.write_data(7, 0)
|
||||
printf(cf"${the_char.asUInt}%c")
|
||||
}
|
||||
}
|
||||
|
||||
// LED, blinks every second
|
||||
|
||||
@@ -91,6 +91,11 @@ class Top(binaryFilename: String = "say_goodbye.asmbin") extends Module {
|
||||
rom_loader.io.bundle.read_data := 0.U
|
||||
cpu.io.memory_bundle <> mem.io.bundle
|
||||
}
|
||||
|
||||
when (uart.io.bundle.write_enable) {
|
||||
val the_char = cpu.io.memory_bundle.write_data(7, 0)
|
||||
printf(cf"${the_char.asUInt}%c")
|
||||
}
|
||||
}
|
||||
|
||||
// LED, blinks every second
|
||||
|
||||
@@ -19,7 +19,7 @@ class Memory {
|
||||
uint32_t read(size_t address) {
|
||||
address = address / 4;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid read address 0x%08x\n", address * 4);
|
||||
printf("invalid read address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -29,8 +29,8 @@ class Memory {
|
||||
uint32_t readInst(size_t address) {
|
||||
address = address / 4;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid read Inst address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
printf("invalid read Inst address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return memory[address];
|
||||
@@ -44,7 +44,7 @@ class Memory {
|
||||
if (write_strobe[2]) write_mask |= 0x00FF0000;
|
||||
if (write_strobe[3]) write_mask |= 0xFF000000;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid write address 0x%08x\n", address * 4);
|
||||
printf("invalid write address 0x%08x\n", address * 4);
|
||||
return;
|
||||
}
|
||||
memory[address] = (memory[address] & ~write_mask) | (value & write_mask);
|
||||
@@ -133,12 +133,12 @@ class Simulator {
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-memory");
|
||||
it != args.end()) {
|
||||
memory_words = std::stoul(*(it + 1));
|
||||
memory_words = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-time");
|
||||
it != args.end()) {
|
||||
max_sim_time = std::stoul(*(it + 1));
|
||||
max_sim_time = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-vcd");
|
||||
@@ -177,9 +177,10 @@ class Simulator {
|
||||
vcd_tracer->dump(main_time);
|
||||
uint32_t data_memory_read_word = 0;
|
||||
uint32_t inst_memory_read_word = 0;
|
||||
uint32_t counter = 0;
|
||||
uint32_t clocktime = 1;
|
||||
uint32_t counter = 0;
|
||||
uint32_t clocktime = 1;
|
||||
bool memory_write_strobe[4] = {false};
|
||||
int uart_write_time_counter = 0, uart_write_time_limit = 4; // every limit, an UART write completes; this is tricky part
|
||||
while (main_time < max_sim_time && !Verilated::gotFinish()) {
|
||||
++main_time;
|
||||
++counter;
|
||||
@@ -190,18 +191,23 @@ class Simulator {
|
||||
if (main_time > 2) {
|
||||
top->reset = 0;
|
||||
}
|
||||
// top->io_mem_slave_read_data = memory_read_word;
|
||||
// top->io_mem_slave_read_data = memory_read_word;
|
||||
top->io_instruction_valid = 1;
|
||||
top->io_memory_bundle_read_data = data_memory_read_word;
|
||||
top->io_instruction = inst_memory_read_word;
|
||||
top->clock = !top->clock;
|
||||
top->eval();
|
||||
|
||||
if (top->io_deviceSelect == 2 && top->io_memory_bundle_write_enable) {
|
||||
if (uart_write_time_counter == 0) std::cout << (char)top->io_memory_bundle_write_data << std::flush; // Output to UART
|
||||
uart_write_time_counter = (uart_write_time_counter + 1) % uart_write_time_limit;
|
||||
}
|
||||
else {
|
||||
uart_write_time_counter = 0;
|
||||
}
|
||||
|
||||
data_memory_read_word = memory->read(top->io_memory_bundle_address);
|
||||
|
||||
|
||||
inst_memory_read_word = memory->readInst(top->io_instruction_address);
|
||||
data_memory_read_word = memory->read(top->io_memory_bundle_address);
|
||||
inst_memory_read_word = memory->readInst(top->io_instruction_address);
|
||||
|
||||
if (top->io_memory_bundle_write_enable) {
|
||||
memory_write_strobe[0] = top->io_memory_bundle_write_strobe_0;
|
||||
@@ -217,6 +223,11 @@ class Simulator {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// print simulation progress in percentage every 1%
|
||||
if (main_time % (max_sim_time / 100) == 0) {
|
||||
std::cout << "Simulation progress: " << (main_time * 100 / max_sim_time) << "%" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
if (dump_signature) {
|
||||
|
||||
@@ -24,22 +24,24 @@ class Top extends Module {
|
||||
val io = IO(new CPUBundle)
|
||||
|
||||
val cpu = Module(new CPU)
|
||||
|
||||
io.deviceSelect := 0.U
|
||||
cpu.io.regs_debug_read_address := io.regs_debug_read_address
|
||||
cpu.io.csr_regs_debug_read_address := io.csr_regs_debug_read_address
|
||||
io.csr_regs_debug_read_data := cpu.io.csr_regs_debug_read_data
|
||||
io.regs_debug_read_data := cpu.io.regs_debug_read_data
|
||||
|
||||
// intercept UART signals
|
||||
io.deviceSelect := cpu.io.deviceSelect
|
||||
|
||||
// CPU instruction input is controlled by external codes
|
||||
io.memory_bundle <> cpu.io.memory_bundle
|
||||
io.instruction_address := cpu.io.instruction_address
|
||||
cpu.io.instruction := io.instruction
|
||||
cpu.io.instruction_valid := io.instruction_valid
|
||||
|
||||
cpu.io.interrupt_flag := io.interrupt_flag
|
||||
cpu.io.instruction_valid := io.instruction_valid
|
||||
}
|
||||
|
||||
object VerilogGenerator extends App {
|
||||
(new ChiselStage).execute(Array("-X", "verilog", "-td", "verilog/verilator"), Seq(ChiselGeneratorAnnotation(() =>
|
||||
new Top())))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -83,6 +83,11 @@ class Top(binaryFilename: String = "say_goodbye.asmbin") extends Module {
|
||||
cpu.io.memory_bundle <> mem.io.bundle
|
||||
}
|
||||
}
|
||||
|
||||
when (uart.io.bundle.write_enable) {
|
||||
val the_char = cpu.io.memory_bundle.write_data(7, 0)
|
||||
printf(cf"${the_char.asUInt}%c")
|
||||
}
|
||||
}
|
||||
|
||||
// LED, blinks every second
|
||||
|
||||
@@ -95,6 +95,11 @@ class Top(binaryFilename: String = "say_goodbye.asmbin") extends Module {
|
||||
rom_loader.io.bundle.read_data := 0.U
|
||||
cpu.io.memory_bundle <> mem.io.bundle
|
||||
}
|
||||
|
||||
when (uart.io.bundle.write_enable) {
|
||||
val the_char = cpu.io.memory_bundle.write_data(7, 0)
|
||||
printf(cf"${the_char.asUInt}%c")
|
||||
}
|
||||
}
|
||||
|
||||
// LED, blinks every second
|
||||
|
||||
@@ -19,7 +19,7 @@ class Memory {
|
||||
uint32_t read(size_t address) {
|
||||
address = address / 4;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid read address 0x%08x\n", address * 4);
|
||||
printf("invalid read address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -29,8 +29,8 @@ class Memory {
|
||||
uint32_t readInst(size_t address) {
|
||||
address = address / 4;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid read Inst address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
printf("invalid read Inst address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return memory[address];
|
||||
@@ -44,7 +44,7 @@ class Memory {
|
||||
if (write_strobe[2]) write_mask |= 0x00FF0000;
|
||||
if (write_strobe[3]) write_mask |= 0xFF000000;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid write address 0x%08x\n", address * 4);
|
||||
printf("invalid write address 0x%08x\n", address * 4);
|
||||
return;
|
||||
}
|
||||
memory[address] = (memory[address] & ~write_mask) | (value & write_mask);
|
||||
@@ -133,12 +133,12 @@ class Simulator {
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-memory");
|
||||
it != args.end()) {
|
||||
memory_words = std::stoul(*(it + 1));
|
||||
memory_words = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-time");
|
||||
it != args.end()) {
|
||||
max_sim_time = std::stoul(*(it + 1));
|
||||
max_sim_time = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-vcd");
|
||||
@@ -179,9 +179,10 @@ class Simulator {
|
||||
uint32_t data_memory_read_word = 0;
|
||||
uint32_t inst_memory_read_word = 0;
|
||||
uint32_t timer_interrupt = 0;
|
||||
uint32_t counter = 0;
|
||||
uint32_t clocktime = 1;
|
||||
uint32_t counter = 0;
|
||||
uint32_t clocktime = 1;
|
||||
bool memory_write_strobe[4] = {false};
|
||||
int uart_write_time_counter = 0, uart_write_time_limit = 4; // every limit, an UART write completes; this is tricky part
|
||||
while (main_time < max_sim_time && !Verilated::gotFinish()) {
|
||||
++main_time;
|
||||
++counter;
|
||||
@@ -192,17 +193,23 @@ class Simulator {
|
||||
if (main_time > 2) {
|
||||
top->reset = 0;
|
||||
}
|
||||
// top->io_mem_slave_read_data = memory_read_word;
|
||||
// top->io_mem_slave_read_data = memory_read_word;
|
||||
top->io_memory_bundle_read_data = data_memory_read_word;
|
||||
top->io_instruction = inst_memory_read_word;
|
||||
top->clock = !top->clock;
|
||||
top->eval();
|
||||
top->io_interrupt_flag = 0;
|
||||
|
||||
data_memory_read_word = memory->read(top->io_memory_bundle_address);
|
||||
if (top->io_deviceSelect == 2 && top->io_memory_bundle_write_enable) {
|
||||
if (uart_write_time_counter == 0) std::cout << (char)top->io_memory_bundle_write_data << std::flush; // Output to UART
|
||||
uart_write_time_counter = (uart_write_time_counter + 1) % uart_write_time_limit;
|
||||
}
|
||||
else {
|
||||
uart_write_time_counter = 0;
|
||||
}
|
||||
|
||||
|
||||
inst_memory_read_word = memory->readInst(top->io_instruction_address);
|
||||
data_memory_read_word = memory->read(top->io_memory_bundle_address);
|
||||
inst_memory_read_word = memory->readInst(top->io_instruction_address);
|
||||
|
||||
if (top->io_memory_bundle_write_enable) {
|
||||
memory_write_strobe[0] = top->io_memory_bundle_write_strobe_0;
|
||||
@@ -218,6 +225,11 @@ class Simulator {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// print simulation progress in percentage every 1%
|
||||
if (main_time % (max_sim_time / 100) == 0) {
|
||||
std::cout << "Simulation progress: " << (main_time * 100 / max_sim_time) << "%" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
if (dump_signature) {
|
||||
|
||||
@@ -23,17 +23,19 @@ class Top extends Module {
|
||||
val io = IO(new CPUBundle)
|
||||
|
||||
val cpu = Module(new CPU(implementation = ImplementationType.ThreeStage))
|
||||
|
||||
io.device_select := 0.U
|
||||
cpu.io.debug_read_address := io.debug_read_address
|
||||
io.debug_read_data := cpu.io.debug_read_data
|
||||
|
||||
// intercept UART signals
|
||||
io.device_select := cpu.io.device_select
|
||||
|
||||
// CPU instruction input is controlled by external codes
|
||||
io.memory_bundle <> cpu.io.memory_bundle
|
||||
io.instruction_address := cpu.io.instruction_address
|
||||
cpu.io.instruction := io.instruction
|
||||
cpu.io.instruction_valid := io.instruction_valid
|
||||
|
||||
cpu.io.interrupt_flag := io.interrupt_flag
|
||||
cpu.io.instruction_valid := io.instruction_valid
|
||||
}
|
||||
|
||||
object VerilogGenerator extends App {
|
||||
|
||||
@@ -82,6 +82,11 @@ class Top(binaryFilename: String = "say_goodbye.asmbin") extends Module {
|
||||
cpu.io.memory_bundle <> mem.io.bundle
|
||||
}
|
||||
}
|
||||
|
||||
when (uart.io.bundle.write_enable) {
|
||||
val the_char = cpu.io.memory_bundle.write_data(7, 0)
|
||||
printf(cf"${the_char.asUInt}%c")
|
||||
}
|
||||
}
|
||||
|
||||
// LED, blinks every second
|
||||
|
||||
@@ -81,6 +81,11 @@ class Top(binaryFilename: String = "say_goodbye.asmbin") extends Module {
|
||||
cpu.io.memory_bundle <> mem.io.bundle
|
||||
}
|
||||
}
|
||||
|
||||
when (uart.io.bundle.write_enable) {
|
||||
val the_char = cpu.io.memory_bundle.write_data(7, 0)
|
||||
printf(cf"${the_char.asUInt}%c")
|
||||
}
|
||||
}
|
||||
|
||||
// LED, blinks every second
|
||||
|
||||
@@ -61,8 +61,8 @@ class CPU extends Module {
|
||||
inst_fetch.io.rom_instruction := io.instruction
|
||||
inst_fetch.io.instruction_valid := io.instruction_valid
|
||||
|
||||
if2id.io.stall := ctrl.io.if_stall
|
||||
if2id.io.flush := ctrl.io.if_flush
|
||||
if2id.io.stall := ctrl.io.if2id_stall
|
||||
if2id.io.flush := ctrl.io.if2id_flush
|
||||
if2id.io.instruction := inst_fetch.io.id_instruction
|
||||
if2id.io.instruction_address := inst_fetch.io.instruction_address
|
||||
if2id.io.interrupt_flag := io.interrupt_flag
|
||||
@@ -78,7 +78,7 @@ class CPU extends Module {
|
||||
id.io.interrupt_assert := clint.io.id_interrupt_assert
|
||||
id.io.interrupt_handler_address := clint.io.id_interrupt_handler_address
|
||||
|
||||
id2ex.io.flush := ctrl.io.id_flush
|
||||
id2ex.io.flush := ctrl.io.id2ex_flush
|
||||
id2ex.io.instruction := if2id.io.output_instruction
|
||||
id2ex.io.instruction_address := if2id.io.output_instruction_address
|
||||
id2ex.io.reg1_data := regs.io.read_data1
|
||||
|
||||
@@ -28,16 +28,16 @@ class Control extends Module {
|
||||
val memory_read_enable_mem = Input(Bool())
|
||||
val rd_mem = Input(UInt(Parameters.PhysicalRegisterAddrWidth))
|
||||
|
||||
val if_flush = Output(Bool())
|
||||
val id_flush = Output(Bool())
|
||||
val if2id_flush = Output(Bool())
|
||||
val id2ex_flush = Output(Bool())
|
||||
val pc_stall = Output(Bool())
|
||||
val if_stall = Output(Bool())
|
||||
val if2id_stall = Output(Bool())
|
||||
})
|
||||
|
||||
// Lab3(Final)
|
||||
io.if_flush := false.B
|
||||
io.id_flush := false.B
|
||||
io.if2id_flush := false.B
|
||||
io.id2ex_flush := false.B
|
||||
io.pc_stall := false.B
|
||||
io.if_stall := false.B
|
||||
io.if2id_stall := false.B
|
||||
// Lab3(Final) End
|
||||
}
|
||||
|
||||
@@ -170,8 +170,10 @@ class InstructionDecode extends Module {
|
||||
val rs1 = io.instruction(19, 15)
|
||||
val rs2 = io.instruction(24, 20)
|
||||
|
||||
io.regs_reg1_read_address := Mux(opcode === Instructions.lui, 0.U(Parameters.PhysicalRegisterAddrWidth), rs1)
|
||||
// Lab3(Final) ID rs
|
||||
io.regs_reg1_read_address := rs1
|
||||
io.regs_reg2_read_address := rs2
|
||||
// Lab3(Final) ID rs End
|
||||
io.ex_immediate := MuxLookup(
|
||||
opcode,
|
||||
Cat(Fill(20, io.instruction(31)), io.instruction(31, 20)),
|
||||
@@ -208,10 +210,10 @@ class InstructionDecode extends Module {
|
||||
Instructions.jalr -> RegWriteSource.NextInstructionAddress
|
||||
)
|
||||
)
|
||||
io.ex_reg_write_enable := (opcode === InstructionTypes.RM) || (opcode === InstructionTypes.I) ||
|
||||
(opcode === InstructionTypes.L) || (opcode === Instructions.auipc) || (opcode === Instructions.lui) ||
|
||||
(opcode === Instructions.jal) || (opcode === Instructions.jalr) || (opcode === Instructions.csr)
|
||||
io.ex_reg_write_address := io.instruction(11, 7)
|
||||
// Lab3(Final) ID rd
|
||||
io.ex_reg_write_enable := false.B
|
||||
io.ex_reg_write_address := rd
|
||||
// Lab3(Final) ID rd End
|
||||
io.ex_csr_address := io.instruction(31, 20)
|
||||
io.ex_csr_write_enable := (opcode === Instructions.csr) && (
|
||||
funct3 === InstructionsTypeCSR.csrrw || funct3 === InstructionsTypeCSR.csrrwi ||
|
||||
|
||||
@@ -58,15 +58,15 @@ class CPU extends Module {
|
||||
inst_fetch.io.rom_instruction := io.instruction
|
||||
inst_fetch.io.instruction_valid := io.instruction_valid
|
||||
|
||||
if2id.io.stall := ctrl.io.if_stall
|
||||
if2id.io.flush := ctrl.io.if_flush
|
||||
if2id.io.stall := ctrl.io.if2id_stall
|
||||
if2id.io.flush := ctrl.io.if2id_flush
|
||||
if2id.io.instruction := inst_fetch.io.id_instruction
|
||||
if2id.io.instruction_address := inst_fetch.io.instruction_address
|
||||
if2id.io.interrupt_flag := io.interrupt_flag
|
||||
|
||||
id.io.instruction := if2id.io.output_instruction
|
||||
|
||||
id2ex.io.flush := ctrl.io.id_flush
|
||||
id2ex.io.flush := ctrl.io.id2ex_flush
|
||||
id2ex.io.instruction := if2id.io.output_instruction
|
||||
id2ex.io.instruction_address := if2id.io.output_instruction_address
|
||||
id2ex.io.reg1_data := regs.io.read_data1
|
||||
|
||||
@@ -25,16 +25,16 @@ class Control extends Module {
|
||||
val memory_read_enable_ex = Input(Bool())
|
||||
val rd_ex = Input(UInt(Parameters.PhysicalRegisterAddrWidth))
|
||||
|
||||
val if_flush = Output(Bool())
|
||||
val id_flush = Output(Bool())
|
||||
val if2id_flush = Output(Bool())
|
||||
val id2ex_flush = Output(Bool())
|
||||
val pc_stall = Output(Bool())
|
||||
val if_stall = Output(Bool())
|
||||
val if2id_stall = Output(Bool())
|
||||
})
|
||||
|
||||
// Lab3(Forward)
|
||||
io.if_flush := false.B
|
||||
io.id_flush := false.B
|
||||
io.if2id_flush := false.B
|
||||
io.id2ex_flush := false.B
|
||||
io.pc_stall := false.B
|
||||
io.if_stall := false.B
|
||||
io.if2id_stall := false.B
|
||||
// Lab3(Forward) End
|
||||
}
|
||||
|
||||
@@ -156,8 +156,10 @@ class InstructionDecode extends Module {
|
||||
val rs1 = io.instruction(19, 15)
|
||||
val rs2 = io.instruction(24, 20)
|
||||
|
||||
io.regs_reg1_read_address := Mux(opcode === Instructions.lui, 0.U(Parameters.PhysicalRegisterAddrWidth), rs1)
|
||||
// Lab3(Forwarding) ID rs
|
||||
io.regs_reg1_read_address := rs1
|
||||
io.regs_reg2_read_address := rs2
|
||||
// Lab3(Forwarding) ID rs End
|
||||
io.ex_immediate := MuxLookup(
|
||||
opcode,
|
||||
Cat(Fill(20, io.instruction(31)), io.instruction(31, 20)),
|
||||
@@ -194,10 +196,10 @@ class InstructionDecode extends Module {
|
||||
Instructions.jalr -> RegWriteSource.NextInstructionAddress
|
||||
)
|
||||
)
|
||||
io.ex_reg_write_enable := (opcode === InstructionTypes.RM) || (opcode === InstructionTypes.I) ||
|
||||
(opcode === InstructionTypes.L) || (opcode === Instructions.auipc) || (opcode === Instructions.lui) ||
|
||||
(opcode === Instructions.jal) || (opcode === Instructions.jalr) || (opcode === Instructions.csr)
|
||||
io.ex_reg_write_address := io.instruction(11, 7)
|
||||
// Lab3(Forwarding) ID rd
|
||||
io.ex_reg_write_enable := false.B
|
||||
io.ex_reg_write_address := rd
|
||||
// Lab3(Forwarding) ID rd End
|
||||
io.ex_csr_address := io.instruction(31, 20)
|
||||
io.ex_csr_write_enable := (opcode === Instructions.csr) && (
|
||||
funct3 === InstructionsTypeCSR.csrrw || funct3 === InstructionsTypeCSR.csrrwi ||
|
||||
|
||||
@@ -59,15 +59,15 @@ class CPU extends Module {
|
||||
inst_fetch.io.rom_instruction := io.instruction
|
||||
inst_fetch.io.instruction_valid := io.instruction_valid
|
||||
|
||||
if2id.io.stall := ctrl.io.if_stall
|
||||
if2id.io.flush := ctrl.io.if_flush
|
||||
if2id.io.stall := ctrl.io.if2id_stall
|
||||
if2id.io.flush := ctrl.io.if2id_flush
|
||||
if2id.io.instruction := inst_fetch.io.id_instruction
|
||||
if2id.io.instruction_address := inst_fetch.io.instruction_address
|
||||
if2id.io.interrupt_flag := io.interrupt_flag
|
||||
|
||||
id.io.instruction := if2id.io.output_instruction
|
||||
|
||||
id2ex.io.flush := ctrl.io.id_flush
|
||||
id2ex.io.flush := ctrl.io.id2ex_flush
|
||||
id2ex.io.instruction := if2id.io.output_instruction
|
||||
id2ex.io.instruction_address := if2id.io.output_instruction_address
|
||||
id2ex.io.reg1_data := regs.io.read_data1
|
||||
|
||||
@@ -27,17 +27,17 @@ class Control extends Module {
|
||||
val rd_mem = Input(UInt(Parameters.PhysicalRegisterAddrWidth))
|
||||
val reg_write_enable_mem = Input(Bool())
|
||||
|
||||
val if_flush = Output(Bool())
|
||||
val id_flush = Output(Bool())
|
||||
val if2id_flush = Output(Bool())
|
||||
val id2ex_flush = Output(Bool())
|
||||
val pc_stall = Output(Bool())
|
||||
val if_stall = Output(Bool())
|
||||
val if2id_stall = Output(Bool())
|
||||
})
|
||||
|
||||
// Lab3(Stall)
|
||||
io.if_flush := false.B
|
||||
io.id_flush := false.B
|
||||
io.if2id_flush := false.B
|
||||
io.id2ex_flush := false.B
|
||||
|
||||
io.pc_stall := false.B
|
||||
io.if_stall := false.B
|
||||
io.if2id_stall := false.B
|
||||
// Lab3(Stall) End
|
||||
}
|
||||
|
||||
@@ -156,8 +156,10 @@ class InstructionDecode extends Module {
|
||||
val rs1 = io.instruction(19, 15)
|
||||
val rs2 = io.instruction(24, 20)
|
||||
|
||||
io.regs_reg1_read_address := Mux(opcode === Instructions.lui, 0.U(Parameters.PhysicalRegisterAddrWidth), rs1)
|
||||
// Lab3(Stall) ID rs
|
||||
io.regs_reg1_read_address := rs1
|
||||
io.regs_reg2_read_address := rs2
|
||||
// Lab3(Stall) ID rs End
|
||||
io.ex_immediate := MuxLookup(
|
||||
opcode,
|
||||
Cat(Fill(20, io.instruction(31)), io.instruction(31, 20)),
|
||||
@@ -194,10 +196,10 @@ class InstructionDecode extends Module {
|
||||
Instructions.jalr -> RegWriteSource.NextInstructionAddress
|
||||
)
|
||||
)
|
||||
io.ex_reg_write_enable := (opcode === InstructionTypes.RM) || (opcode === InstructionTypes.I) ||
|
||||
(opcode === InstructionTypes.L) || (opcode === Instructions.auipc) || (opcode === Instructions.lui) ||
|
||||
(opcode === Instructions.jal) || (opcode === Instructions.jalr) || (opcode === Instructions.csr)
|
||||
io.ex_reg_write_address := io.instruction(11, 7)
|
||||
// Lab3(Stall) ID rd
|
||||
io.ex_reg_write_enable := false.B
|
||||
io.ex_reg_write_address := rd
|
||||
// Lab3(Stall) ID rd End
|
||||
io.ex_csr_address := io.instruction(31, 20)
|
||||
io.ex_csr_write_enable := (opcode === Instructions.csr) && (
|
||||
funct3 === InstructionsTypeCSR.csrrw || funct3 === InstructionsTypeCSR.csrrwi ||
|
||||
|
||||
@@ -71,3 +71,4 @@ class FiveStageCPUForwardTest extends AnyFlatSpec with ChiselScalatestTester {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -17,6 +17,8 @@ package riscv
|
||||
import chisel3._
|
||||
import chiseltest._
|
||||
import org.scalatest.flatspec.AnyFlatSpec
|
||||
import scala.util.Random
|
||||
import riscv.core.fivestage_stall._
|
||||
|
||||
|
||||
class FiveStageCPUStallTest extends AnyFlatSpec with ChiselScalatestTester {
|
||||
@@ -71,3 +73,86 @@ class FiveStageCPUStallTest extends AnyFlatSpec with ChiselScalatestTester {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
class DecoderStallTest extends AnyFlatSpec with ChiselScalatestTester {
|
||||
behavior of "ID of Five-stage Pipelined CPU with Stalling"
|
||||
|
||||
def concatBits(values: (Int, Int)*): Int = {
|
||||
values.foldLeft(0) { case (result, (value, bits)) =>
|
||||
val mask = (1 << bits) - 1 // Create mask for the specified bit width
|
||||
val maskedValue = value & mask // Ensure value fits in specified bits
|
||||
(result << bits) | maskedValue
|
||||
}
|
||||
}
|
||||
|
||||
it should "generate correct reg addr" in {
|
||||
test(new InstructionDecode).withAnnotations(TestAnnotations.annos) { c =>
|
||||
|
||||
for (i <- 0 to 100) {
|
||||
val rs1 = Random.nextInt(32)
|
||||
val rs2 = Random.nextInt(32)
|
||||
val rd = Random.nextInt(32)
|
||||
|
||||
// for R-type instructions, rs2, rs1 and rd should be valid
|
||||
// val instR = 0.U(7.W) ## rs2 ## rs1 ## 1.U(3.W) ## rd ## InstructionTypes.RM
|
||||
val instR = concatBits(
|
||||
(0, 7), (rs2, 5), (rs1, 5), (1, 3), (rd, 5), (InstructionTypes.RM.litValue.toInt, 7)
|
||||
)
|
||||
c.io.instruction.poke(instR)
|
||||
c.io.regs_reg1_read_address.expect(rs1)
|
||||
c.io.regs_reg2_read_address.expect(rs2)
|
||||
c.io.ex_reg_write_address.expect(rd)
|
||||
c.io.ex_reg_write_enable.expect(true.B)
|
||||
c.clock.step()
|
||||
|
||||
// for I-type instructions, rs1 and rd should be valid
|
||||
val instI = concatBits((0, 12), (rs1, 5), (1, 3), (rd, 5), (InstructionTypes.I.litValue.toInt, 7))
|
||||
c.io.instruction.poke(instI)
|
||||
c.io.regs_reg1_read_address.expect(rs1)
|
||||
c.io.regs_reg2_read_address.expect(0.U)
|
||||
c.io.ex_reg_write_address.expect(rd)
|
||||
c.io.ex_reg_write_enable.expect(true.B)
|
||||
c.clock.step()
|
||||
|
||||
// for S-type instructions, rs2 and rs1 should be valid
|
||||
val instS = concatBits((0, 7), (rs2, 5), (rs1, 5), (1, 3), (2, 5), (InstructionTypes.S.litValue.toInt, 7))
|
||||
c.io.instruction.poke(instS)
|
||||
c.io.regs_reg1_read_address.expect(rs1)
|
||||
c.io.regs_reg2_read_address.expect(rs2)
|
||||
c.io.ex_reg_write_address.expect(0.U)
|
||||
c.io.ex_reg_write_enable.expect(false.B)
|
||||
c.clock.step()
|
||||
|
||||
// for B-type instructions, rs2 and rs1 should be valid
|
||||
val instB = concatBits((0, 7), (rs2, 5), (rs1, 5), (1, 3), (2, 5), (InstructionTypes.B.litValue.toInt, 7))
|
||||
c.io.instruction.poke(instB)
|
||||
c.io.regs_reg1_read_address.expect(rs1)
|
||||
c.io.regs_reg2_read_address.expect(rs2)
|
||||
c.io.ex_reg_write_address.expect(0.U)
|
||||
c.io.ex_reg_write_enable.expect(false.B)
|
||||
c.clock.step()
|
||||
|
||||
// for U-type instructions, rd should be valid
|
||||
val instU = concatBits((0, 20), (rd, 5), (Instructions.lui.litValue.toInt, 7))
|
||||
c.io.instruction.poke(instU)
|
||||
c.io.regs_reg1_read_address.expect(0.U)
|
||||
c.io.regs_reg2_read_address.expect(0.U)
|
||||
c.io.ex_reg_write_address.expect(rd)
|
||||
c.io.ex_reg_write_enable.expect(true.B)
|
||||
c.clock.step()
|
||||
|
||||
// for J-type instructions, rd should be valid
|
||||
val instJ = concatBits((0, 20), (rd, 5), (Instructions.jal.litValue.toInt, 7))
|
||||
c.io.instruction.poke(instJ)
|
||||
c.io.regs_reg1_read_address.expect(0.U)
|
||||
c.io.regs_reg2_read_address.expect(0.U)
|
||||
c.io.ex_reg_write_address.expect(rd)
|
||||
c.io.ex_reg_write_enable.expect(true.B)
|
||||
c.clock.step()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ class Memory {
|
||||
uint32_t read(size_t address) {
|
||||
address = address / 4;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid read address 0x%08x\n", address * 4);
|
||||
printf("invalid read address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
}
|
||||
return memory[address];
|
||||
@@ -29,8 +29,8 @@ class Memory {
|
||||
uint32_t readInst(size_t address) {
|
||||
address = address / 4;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid read Inst address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
printf("invalid read Inst address 0x%08x\n", address * 4);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return memory[address];
|
||||
@@ -44,7 +44,7 @@ class Memory {
|
||||
if (write_strobe[2]) write_mask |= 0x00FF0000;
|
||||
if (write_strobe[3]) write_mask |= 0xFF000000;
|
||||
if (address >= memory.size()) {
|
||||
// printf("invalid write address 0x%08x\n", address * 4);
|
||||
printf("invalid write address 0x%08x\n", address * 4);
|
||||
return;
|
||||
}
|
||||
memory[address] = (memory[address] & ~write_mask) | (value & write_mask);
|
||||
@@ -133,12 +133,12 @@ class Simulator {
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-memory");
|
||||
it != args.end()) {
|
||||
memory_words = std::stoul(*(it + 1));
|
||||
memory_words = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-time");
|
||||
it != args.end()) {
|
||||
max_sim_time = std::stoul(*(it + 1));
|
||||
max_sim_time = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-vcd");
|
||||
@@ -179,9 +179,10 @@ class Simulator {
|
||||
uint32_t data_memory_read_word = 0;
|
||||
uint32_t inst_memory_read_word = 0;
|
||||
uint32_t timer_interrupt = 0;
|
||||
uint32_t counter = 0;
|
||||
uint32_t clocktime = 1;
|
||||
uint32_t counter = 0;
|
||||
uint32_t clocktime = 1;
|
||||
bool memory_write_strobe[4] = {false};
|
||||
int uart_write_time_counter = 0, uart_write_time_limit = 4; // every limit, an UART write completes; this is tricky part
|
||||
while (main_time < max_sim_time && !Verilated::gotFinish()) {
|
||||
++main_time;
|
||||
++counter;
|
||||
@@ -197,17 +198,23 @@ class Simulator {
|
||||
if (main_time > 2) {
|
||||
top->reset = 0;
|
||||
}
|
||||
// top->io_mem_slave_read_data = memory_read_word;
|
||||
// top->io_mem_slave_read_data = memory_read_word;
|
||||
top->io_memory_bundle_read_data = data_memory_read_word;
|
||||
top->io_instruction = inst_memory_read_word;
|
||||
top->clock = !top->clock;
|
||||
top->eval();
|
||||
top->io_interrupt_flag = 0;
|
||||
|
||||
data_memory_read_word = memory->read(top->io_memory_bundle_address);
|
||||
if (top->io_deviceSelect == 2 && top->io_memory_bundle_write_enable) {
|
||||
if (uart_write_time_counter == 0) std::cout << (char)top->io_memory_bundle_write_data << std::flush; // Output to UART
|
||||
uart_write_time_counter = (uart_write_time_counter + 1) % uart_write_time_limit;
|
||||
}
|
||||
else {
|
||||
uart_write_time_counter = 0;
|
||||
}
|
||||
|
||||
|
||||
inst_memory_read_word = memory->readInst(top->io_instruction_address);
|
||||
data_memory_read_word = memory->read(top->io_memory_bundle_address);
|
||||
inst_memory_read_word = memory->readInst(top->io_instruction_address);
|
||||
|
||||
if (top->io_memory_bundle_write_enable) {
|
||||
memory_write_strobe[0] = top->io_memory_bundle_write_strobe_0;
|
||||
@@ -223,6 +230,11 @@ class Simulator {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// print simulation progress in percentage every 1%
|
||||
if (main_time % (max_sim_time / 100) == 0) {
|
||||
std::cout << "Simulation progress: " << (main_time * 100 / max_sim_time) << "%" << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
if (dump_signature) {
|
||||
|
||||
@@ -121,12 +121,12 @@ class Simulator {
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-memory");
|
||||
it != args.end()) {
|
||||
memory_words = std::stoul(*(it + 1));
|
||||
memory_words = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-time");
|
||||
it != args.end()) {
|
||||
max_sim_time = std::stoul(*(it + 1));
|
||||
max_sim_time = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-vcd");
|
||||
|
||||
@@ -121,12 +121,12 @@ class Simulator {
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-memory");
|
||||
it != args.end()) {
|
||||
memory_words = std::stoul(*(it + 1));
|
||||
memory_words = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-time");
|
||||
it != args.end()) {
|
||||
max_sim_time = std::stoul(*(it + 1));
|
||||
max_sim_time = std::stoull(*(it + 1));
|
||||
}
|
||||
|
||||
if (auto it = std::find(args.begin(), args.end(), "-vcd");
|
||||
|
||||
Reference in New Issue
Block a user