RISC-V知识点目录

分支预测

分支预测概述https://blog.csdn.net/zhangshangjie1/article/details/136947089?sharetype=blogdetail&sharerId=136947089&sharerefer=PC&sharesource=zhangshangjie1&spm=1011.2480.3001.8118分支指令的方向预测https://blog.csdn.net/zhangshangjie1/article/details/135261303分支预测的地址跳转https://blog.csdn.net/zhangshangjie1/article/details/139169767分支预测失败的处理https://blog.csdn.net/zhangshangjie1/article/details/134964464超标量处理器中的分支预测实现https://blog.csdn.net/zhangshangjie1/article/details/137681183TAGE predictorhttps://blog.csdn.net/zhangshangjie1/article/details/140291542

TAGE-SC-L predictorhttps://blog.csdn.net/zhangshangjie1/article/details/142791925?spm=1001.2014.3001.5501

TAGE-SC分支预测器https://blog.csdn.net/zhangshangjie1/article/details/142824078?spm=1001.2014.3001.5502

指令集体系

指令集体系简读https://blog.csdn.net/zhangshangjie1/article/details/137681854RISCV指令集体系简读之RV32Ihttps://blog.csdn.net/zhangshangjie1/article/details/137792240RISCV指令集体系简读之RV32Mhttps://blog.csdn.net/zhangshangjie1/article/details/137794084
decode

超标量之指令解码_指令集解码https://blog.csdn.net/zhangshangjie1/article/details/138484616
rename

处理器的状态管理https://blog.csdn.net/zhangshangjie1/article/details/134942507处理器中的几种hazardhttps://blog.csdn.net/zhangshangjie1/article/details/142755074

rename--统一的PRFhttps://blog.csdn.net/zhangshangjie1/article/details/134839027rename--超标量处理器的实现https://blog.csdn.net/zhangshangjie1/article/details/134840126rename--恢复流程https://blog.csdn.net/zhangshangjie1/article/details/134851171rename--一些例子与问题https://blog.csdn.net/zhangshangjie1/article/details/134849671Rename--CAM在checkpoint恢复上的流程与优势https://blog.csdn.net/zhangshangjie1/article/details/134850744
ISSUE

ISSUE的基本概念_cpu issuehttps://blog.csdn.net/zhangshangjie1/article/details/135022058发射过程中的流水线https://blog.csdn.net/zhangshangjie1/article/details/135058018issue queue的实现方式https://blog.csdn.net/zhangshangjie1/article/details/135022410issue阶段的选择电路的实现https://blog.csdn.net/zhangshangjie1/article/details/135059098超标量处理器的唤醒https://blog.csdn.net/zhangshangjie1/article/details/135062260唤醒阶段的推测唤醒(1)https://blog.csdn.net/zhangshangjie1/article/details/135064162唤醒阶段的推测唤醒(2)https://blog.csdn.net/zhangshangjie1/article/details/135080169issue unithttps://blog.csdn.net/zhangshangjie1/article/details/134987790
Execution

execution unit的概念与实现----BRU_branch unithttps://blog.csdn.net/zhangshangjie1/article/details/134920891execution unit的概念与实现----ALUhttps://blog.csdn.net/zhangshangjie1/article/details/134922342execution unit的概念与实现----AGUhttps://blog.csdn.net/zhangshangjie1/article/details/134923028LSU介绍https://blog.csdn.net/zhangshangjie1/article/details/134923571处理器中store指令的处理https://blog.csdn.net/zhangshangjie1/article/details/134968473
Commit

ROB的结构与作用https://blog.csdn.net/zhangshangjie1/article/details/134934552ROB&dispatch stagehttps://blog.csdn.net/zhangshangjie1/article/details/134957062ROB端口需求https://blog.csdn.net/zhangshangjie1/article/details/134941707
Exception & Interrupt

处理器中异常的处理https://blog.csdn.net/zhangshangjie1/article/details/134965392riscv中的异常简介https://blog.csdn.net/zhangshangjie1/article/details/135123640Excp/Trap/Int的一些简单说明https://blog.csdn.net/zhangshangjie1/article/details/135413348TRAP概念及流程简介https://blog.csdn.net/zhangshangjie1/article/details/135000648处理器中断的处理https://blog.csdn.net/zhangshangjie1/article/details/134967330Machine Interrupt Registershttps://blog.csdn.net/zhangshangjie1/article/details/135544363Machine Trap Delegation Registershttps://blog.csdn.net/zhangshangjie1/article/details/135548720Machine Mode下的Excp处理https://blog.csdn.net/zhangshangjie1/article/details/142764415
特权架构

RV32/64 特权架构https://blog.csdn.net/zhangshangjie1/article/details/134974656risc-v system instructionhttps://blog.csdn.net/zhangshangjie1/article/details/135003940
VECTOR

RISC-V vector(1) --- vector的引入与register说明https://blog.csdn.net/zhangshangjie1/article/details/141459803
浮点运算

浮点数的加法运算https://blog.csdn.net/zhangshangjie1/article/details/137920540浮点数的乘法处理https://blog.csdn.net/zhangshangjie1/article/details/138808445浮点数的转换--IEEE 754https://blog.csdn.net/zhangshangjie1/article/details/135204585
MISC

经典5级流水线概述https://blog.csdn.net/zhangshangjie1/article/details/142759726Mtime&Mtimecmphttps://blog.csdn.net/zhangshangjie1/article/details/135595319处理器类型简介https://blog.csdn.net/zhangshangjie1/article/details/135214846RISCV中的寄存器操作https://blog.csdn.net/zhangshangjie1/article/details/134996405

相关推荐
BigDark的笔记1 个月前
【鸿蒙】0x02-LiteOS-M基于Qemu RISC-V运行
华为·harmonyos·risc-v
早上真好1 个月前
【项目推荐】CakeMu-RV:一个开放的 RISC-V 处理器模拟器学习项目
嵌入式硬件·mcu·学习·计算机外设·risc-v
sinovoip1 个月前
Banana Pi BPI-RV2 RISC-V路由开发板采用矽昌通信SF2H8898芯片
risc-v
CV金科1 个月前
freertos的基础(二)内存管理:堆和栈
stm32·开源·arm·freertos·risc-v
BroccoliKing1 个月前
An FPGA-based SoC System——RISC-V On PYNQ项目复现
arm开发·单片机·mcu·fpga开发·dsp开发·risc-v
百里杨1 个月前
X86(Local APIC+I/O APIC)与RISC-V(IMSIC+APLIC)对比
risc-v·x86·local apic·ioapic·imsic·aplic
嵌入式Linux,1 个月前
一块钱的RISC-V 32位芯片
risc-v
世事如云有卷舒2 个月前
RISC-V学习笔记
笔记·学习·risc-v
oahrzvq2 个月前
【CPU】RISC-V 与 x86 操作数字段的区别
系统架构·risc-v
MounRiver_Studio2 个月前
基于VSCode软件框架的RISC-V IDE MRS2正式上线发布
ide·vscode·mcu·risc-v