RISCV - 4 ISA 扩展名命名约定

RISCV - 4 ISA 扩展名命名约定

  • 1 Case Sensitivity
  • 2 Base Integer ISA
  • 3 Instruction-Set Extension Names
  • 4 Version Numbers
  • 5 Underscores
  • 6 Additional Standard Extension Names
  • 7 Supervisor-level Instruction-Set Extensions
  • 8 Hypervisor-level Instruction-Set Extensions
  • 9 Machine-level Instruction-Set Extensions
  • 10 Non-Standard Extension Names
  • 11 Subset Naming Convention

RISCV - 1 RV32/64G指令集清单
RISCV - 2 “Zicsr“, CSR Instructions
RISCV -3 RV32I/RV64I基本整型指令集

该文源于RISCV的《The RISC-V Instruction Set
Manual: Volume I》,文档的链接为:https://github.com/riscv/riscv-isa-manual/releases/tag/riscv-isa-release-1239329-2023-05-23
在这里插入图片描述

This chapter describes the RISC-V ISA extension naming scheme that is used to concisely describe the set of instructions present in a hardware implementation, or the set of instructions used by an application binary interface (ABI).
本章介绍 RISC-V ISA 扩展命名方案,该方案用于简明地描述硬件实现中存在的指令集或应用程序二进制接口 (ABI) 使用的指令集。

The RISC-V ISA is designed to support a wide variety of implementations with various experimental instruction-set extensions. We have found that an organized naming scheme simplifies software tools and documentation.
RISC-V ISA 旨在支持具有各种实验性指令集扩展的各种实现。我们发现有组织的命名方案可以简化软件工具和文档。

1 Case Sensitivity

The ISA naming strings are case insensitive.
ISA 命名字符串不区分大小写。

2 Base Integer ISA

RISC-V ISA strings begin with either RV32I, RV32E, RV64I, or RV128I indicating the supported address space size in bits for the base integer ISA.
RISC-V ISA 字符串以 RV32I、RV32E、RV64I 或 RV128I 开头,指示基本整型 ISA 支持的地址空间大小(以位为单位)。

3 Instruction-Set Extension Names

Standard ISA extensions are given a name consisting of a single letter. For example, the first four standard extensions to the integer bases are: “M” for integer multiplication and division, “A” for atomic memory instructions, “F” for single-precision floating-point instructions, and “D” for double-precision floating-point instructions. Any RISC-V instruction-set variant can be succinctly described by concatenating the base integer prefix with the names of the included extensions, e.g., “RV64IMAFD”.
标准 ISA 扩展的名称由单个字母组成。例如,整数基数的前四个标准扩展是:“M”表示整数乘法和除法,“A”表示原子内存指令,“F”表示单精度浮点指令,“D”表示双精度浮点指令。任何 RISC-V 指令集变体都可以通过将基本整数前缀与所包含扩展的名称连接起来来简洁地描述,例如“RV64IMAFD”。
We have also defined an abbreviation “G” to represent the “IMAFDZicsr Zifencei” base and extensions, as this is intended to represent our standard general-purpose ISA.
我们还定义了缩写“G”来代表“IMAFDZicsr Zifencei”基础和扩展,因为这旨在代表我们的标准通用 ISA。
Standard extensions to the RISC-V ISA are given other reserved letters, e.g., “Q” for quad-precision floating-point, or “C” for the 16-bit compressed instruction format.
RISC-V ISA 的标准扩展被赋予了其他保留字母,例如,“Q”表示四精度浮点,或“C”表示 16 位压缩指令格式。
Some ISA extensions depend on the presence of other extensions, e.g., “D” depends on “F” and “F” depends on “Zicsr”. These dependences may be implicit in the ISA name: for example, RV32IF is equivalent to RV32IFZicsr, and RV32ID is equivalent to RV32IFD and RV32IFDZicsr.
一些 ISA 扩展依赖于其他扩展的存在,例如,“D”依赖于“F”,“F”依赖于“Zicsr”。这些依赖性可能隐含在 ISA 名称中:例如,RV32IF 相当于 RV32IFZicsr,RV32ID 相当于 RV32IFD 和 RV32IFDZicsr。

4 Version Numbers

Recognizing that instruction sets may expand or alter over time, we encode extension version numbers following the extension name. Version numbers are divided into major and minor version numbers, separated by a “p”. If the minor version is “0”, then “p0” can be omitted from the version string. Changes in major version numbers imply a loss of backwards compatibility, whereas changes in only the minor version number must be backwards-compatible. For example, the original 64-bit standard ISA defined in release 1.0 of this manual can be written in full as “RV64I1p0M1p0A1p0F1p0D1p0”, more concisely as “RV64I1M1A1F1D1”.
认识到指令集可能会随着时间的推移而扩展或改变,我们在扩展名称后面对扩展版本号进行编码。版本号分为主版本号和次版本号,以“p”分隔。如果次要版本为“0”,则可以从版本字符串中省略“p0”。主版本号的更改意味着向后兼容性的丧失,而仅次版本号的更改必须向后兼容。例如,本手册1.0版本中定义的原始64位标准ISA可以完整写为“RV64I1p0M1p0A1p0F1p0D1p0”,更简洁地写为“RV64I1M1A1F1D1”。
We introduced the version numbering scheme with the second release. Hence, we define the default version of a standard extension to be the version present at that time, e.g., “RV32I” is equivalent to “RV32I2”.
我们在第二个版本中引入了版本编号方案。因此,我们将标准扩展的默认版本定义为当时存在的版本,例如“RV32I”相当于“RV32I2”。

5 Underscores

Underscores “ ” may be used to separate ISA extensions to improve readability and to provide disambiguation, e.g., “RV32I2 M2 A2”.
下划线“ ”可用于分隔 ISA 扩展,以提高可读性并提供消歧功能,例如“RV32I2_M2_A2”。
Because the “P” extension for Packed SIMD can be confused for the decimal point in a version number, it must be preceded by an underscore if it follows a number. For example, “rv32i2p2” means version 2.2 of RV32I, whereas “rv32i2 p2” means version 2.0 of RV32I with version 2.0 of the P extension.
由于包装SIMD的“ P”扩展名可能会在版本号中的小数点混淆,因此,如果遵循一个数字,则必须先于下划线。例如,“ RV32I2P2”是指rv32i的2.2版,而“ RV32I2_P2”是指RV32I的2.0版,其版本为P Extension 2.0版。

6 Additional Standard Extension Names

Standard extensions can also be named using a single “Z” followed by an alphabetical name and an optional version number. For example, “Zifencei” names the instruction-fetch fence extension described in Chapter 3; “Zifencei2” and “Zifencei2p0” name version 2.0 of same.
标准扩展也可以使用单个“Z”后跟字母名称和可选版本号来命名。例如,“Zifencei”命名了第 3 章中描述的取指令栅栏扩展; “Zifencei2”和“Zifencei2p0”名称相同的2.0版本。
The first letter following the “Z” conventionally indicates the most closely related alphabetical extension category, IMAFDQLCBJTPVN. For the “Zam” extension for misaligned atomics, for example, the letter “a” indicates the extension is related to the “A” standard extension. If multiple “Z” extensions are named, they should be ordered first by category, then alphabetically within a category—for example, “Zicsr Zifencei Zam”.
“Z”后面的第一个字母通常表示最密切相关的字母扩展类别 IMAFDQLCBJTPVN。例如,对于未对齐原子的“Zam”扩展,字母“a”表示该扩展与“A”标准扩展相关。如果命名了多个“Z”扩展名,则应首先按类别对它们进行排序,然后在类别内按字母顺序排列,例如“Zicsr_Zifencei_Zam”。
Extensions with the “Z” prefix must be separated from other multi-letter extensions by an underscore, e.g., “RV32IMACZicsr_Zifencei”.
带有“Z”前缀的扩展名必须用下划线与其他多字母扩展名分开,例如“RV32IMACZicsr_Zifencei”。

7 Supervisor-level Instruction-Set Extensions

Standard supervisor-level instruction-set extensions are defined in Volume II, but are named using “S” as a prefix, followed by an alphabetical name and an optional version number. Supervisor-level extensions must be separated from other multi-letter extensions by an underscore.
标准管理者级指令集扩展在卷 II 中定义,但使用“S”作为前缀命名,后跟字母名称和可选版本号。主管级扩展必须用下划线与其他多字母扩展分开。
Standard supervisor-level extensions should be listed after standard unprivileged extensions. If multiple supervisor-level extensions are listed, they should be ordered alphabetically.
标准管理者级扩展应列在标准非特权扩展之后。如果列出多个管理者级分机,则应按字母顺序排列。

8 Hypervisor-level Instruction-Set Extensions

Standard hypervisor-level instruction-set extensions are named like supervisor-level extensions, but beginning with the letter “H” instead of the letter “S”.
标准管理程序级指令集扩展的命名与管理程序级扩展类似,但以字母“H”而不是字母“S”开头。
Standard hypervisor-level extensions should be listed after standard lesser-privileged extensions. If multiple hypervisor-level extensions are listed, they should be ordered alphabetically.
标准虚拟机管理程序级扩展应列在标准较低特权扩展之后。如果列出了多个虚拟机管理程序级别的扩展,则应按字母顺序对它们进行排序。

9 Machine-level Instruction-Set Extensions

Standard machine-level instruction-set extensions are prefixed with the three letters “Zxm”.
标准机器级指令集扩展以三个字母“Zxm”为前缀。
Standard machine-level extensions should be listed after standard lesser-privileged extensions. If multiple machine-level extensions are listed, they should be ordered alphabetically.
标准机器级扩展应列在标准较低特权扩展之后。如果列出了多个机器级扩展,则应按字母顺序排列它们。

10 Non-Standard Extension Names

Non-standard extensions are named using a single “X” followed by an alphabetical name and an optional version number. For example, “Xhwacha” names the Hwacha vector-fetch ISA extension; “Xhwacha2” and “Xhwacha2p0” name version 2.0 of same.
非标准扩展使用单个“X”命名,后跟字母名称和可选版本号。例如,“Xhwacha”命名为 Hwacha 矢量提取 ISA 扩展; “Xhwacha2”和“Xhwacha2p0”名称相同的2.0版本。
Non-standard extensions must be listed after all standard extensions. They must be separated from other multi-letter extensions by an underscore. For example, an ISA with non-standard extensions Argle and Bargle may be named “RV64IZifencei Xargle Xbargle”.
非标准扩展必须列在所有标准扩展之后。它们必须通过下划线与其他多字母扩展名分隔。例如,具有非标准扩展名 Argle 和 Bargle 的 ISA 可能被命名为“RV64IZifencei_Xargle_Xbargle”。

If multiple non-standard extensions are listed, they should be ordered alphabetically
如果列出多个非标准扩展名,则应按字母顺序排列

11 Subset Naming Convention

Table 27.1 summarizes the standardized extension names.
表 27.1 总结了标准化扩展名称。
在这里插入图片描述
在这里插入图片描述
Table 27.1: Standard ISA extension names. The table also defines the canonical order in which extension names must appear in the name string, with top-to-bottom in table indicating first-to-last in the name string, e.g., RV32IMACV is legal, whereas RV32IMAVC is not.
表 27.1:标准 ISA 扩展名称。该表还定义了扩展名称必须出现在名称字符串中的规范顺序,表中从上到下表示名称字符串中从第一个到最后一个,例如,RV32IMACV 是合法的,而 RV32IMAVC 则不是。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/15175.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MD-MTSP:成长优化算法GO求解多仓库多旅行商问题MATLAB(可更改数据集,旅行商的数量和起点)

一、成长优化算法GO 成长优化算法(Growth Optimizer,GO)由Qingke Zhang等人于2023年提出,该算法的设计灵感来源于个人在成长过程中的学习和反思机制。学习是个人通过从外部世界获取知识而成长的过程,反思是检查个体自…

在.NET Framework中的连接字符串ConnectionStrings属性

在.NET Framework中&#xff0c;ConfigurationManager.ConnectionStrings属性是用来访问在Visual Studio IDE应用程序配置文件中配置的数据库连接字符串的。每个连接字符串在Visual Studio IDE配置文件中都以<add>元素的形式出现&#xff0c;该元素是<connectionStrin…

目标识别数据集互相转换——xml、txt、json数据格式互转

VOC数据格式与YOLO数据格式互转 1.VOC数据格式 VOC&#xff08;Visual Object Classes&#xff09;是一个常用的计算机视觉数据集&#xff0c;它主要用于对象检测、分类和分割任务。VOC的标注格式&#xff0c;也被许多其他的数据集采用&#xff0c;因此理解这个数据格式是很重…

EC200U-CN学习(三)

EC200U系列内置丰富的网络协议&#xff0c;集成多个工业标准接口&#xff0c;并支持多种驱动和软件功能&#xff08;适用于Windows 7/8/8.1/10、Linux和Android等操作系统下的USB驱动&#xff09;&#xff0c;极大地拓展了其在M2M领域的应用范围&#xff0c;如POS、POC、ETC、共…

【Android知识笔记】UI体系(二)

什么是UI线程? 常说的UI线程到底是哪个线程?UI线程一定是主线程吗? 下面先给出两条确定的结论: UI线程就是刷新UI所在的线程UI是单线程刷新的关于第二条为什么UI只能是单线程刷新的呢?道理很简单,因为多线程访问的话需要加锁,太卡,所以一般系统的UI框架都是采用单线程…

用pip给python安装第三方包

2023年7月30日&#xff0c;周日晚上 目录 搜索包安装包升级包卸载包查看安装了哪些包查看指定的包的详细信息查看pip把某个包安装到了哪里 搜索包 现在只能去专门的网站搜索python的第三方包了 Search results PyPI 安装包 通过下面这条指令就可以安装包 pip install pac…

c/c++内存管理

我们先了解一下c/c中的程序内存区域划分&#xff1a; 栈——非静态局部变量、函数参数、返回值等&#xff0c;栈是向下增长的。 内存映射段——高效的I/O映射方式&#xff0c;用于装载一个共享的动态内存库。用户可使用系统接口 创建共享共享内存&#xff0c;做进程间通信。 …

Django教程_编程入门自学教程_菜鸟教程-免费教程分享

教程简介 Django是一个开放源代码的Web应用框架&#xff0c;由Python写成。采用了MTV的框架模式&#xff0c;即模型M&#xff0c;视图V和模版T。它最初是被开发来用于管理劳伦斯出版集团旗下的一些以新闻内容为主的网站的&#xff0c;即是CMS&#xff08;内容管理系统&#xf…

深入理解设计模式:设计模式定义、设计原则以及组织编目

文章目录 一、设计模式1.1 设计模式的起源1.2 设计模式的定义1.3 记录要素1.4 合理使用模式 二、设计模式的六大原则2.1 开闭原则(Open-Closed Principle, OCP)2.1.1 定义2.1.2 原则分析2.1.3 开闭原则的意义所在 2.2 单一职责原则(Single Responsibility Principle, SRP)2.4.1…

Tomcat的基本使用,如何用Maven创建Web项目、开发完成部署的Web项目

Tomcat 一、Tomcat简介二、Tomcat基本使用三、Maven创建Web项目3.1 Web项目结构3.2开发完成部署的Web项目3.3创建Maven Web项目3.3.1方式一3.3.2方式二&#xff08;个人推荐&#xff09; 总结 一、Tomcat简介 Web服务器&#xff1a; Web服务器是一个应用程序&#xff08;软件&…

android数据的储存、文件的储存、SharedPreferences储存、SQLite的基本用法

一、文件的储存 1、将数据储存到文件中 Context类中提供了openfileOutput()方法&#xff0c;用来获取一个文件流&#xff0c;这个方法接收两个参数&#xff0c;第一个参数是文件名&#xff0c;在文件创建的时候使用的就是这个名称&#xff0c;注意这里指定的文件名不可以包含…

AE基础知识

一、基础概念 1.AE的用途&#xff08;合成&#xff09; AE是一款用于高端视频特效系统的专业特效合成软件&#xff0c;通过对收集到的素材进行数字化的编辑组合到一起&#xff0c;进行艺术性的再加工后得到的最终作品。 2.帧 帧——就是影像动画中最小单位的单幅影像画面&a…

FPGA XDMA 中断模式实现 PCIE3.0 AD7606采集 提供2套工程源码和QT上位机源码

目录 1、前言2、我已有的PCIE方案3、PCIE理论4、总体设计思路和方案AD7606数据采集和缓存XDMA简介XDMA中断模式QT上位机及其源码 5、vivado工程1--BRAM缓存6、vivado工程2--DDR4缓存7、上板调试验证8、福利&#xff1a;工程代码的获取 1、前言 PCIE&#xff08;PCI Express&am…

设计模式什么情况下适合使用呢?

很多情况下设计模式是一种经过验证的解决特定问题的最佳实践。设计模式提供了一种标准化的方式来解决常见的软件设计问题&#xff0c;并提供了一种可重用的解决方案。设计模式可以帮助开发人员编写具有高可维护性、可扩展性和可重用性的代码。 设计模式适用于以下情况&#xf…

redis之Bitmap

位图数据结构其实并不是一个全新的玩意&#xff0c;我们可以简单的认为就是个数组&#xff0c;只是里面的内容只能为0或1而已(二进制位数组)。 GETBIT用于返回位数组在偏移量上的二进制位的值。值得我们注意的是&#xff0c;GETBIT的时间复杂度是O(1)。 GETBIT命令的执行过程如…

Ubuntu系统adb开发调试问题记录

Ubuntu系统adb开发调试问题记录 一、adb devices no permissions二、自定义adb server端口三、动态库目录四、USB抓包 一、adb devices no permissions lsusb -t 设备树直观地查看设备的Bus ID和Device Num&#xff0c;lsusb找到对应的PID和VID编辑udev规则 sudo vim /etc/ud…

百度文心千帆大模型平台:企业级大模型服务的新航标

随着人工智能和大数据的快速发展&#xff0c;大模型平台正越来越受到各大企业和个人开发者的青睐。本文将以百度最新推出的文心千帆大模型平台为例&#xff0c;深入分析其在国家战略布局&#xff0c;经济发展趋势&#xff0c;市场变化动向和技术研发周期等方面的影响和应用。同…

JavaScript--Promise类

在学习Promise类内容前&#xff0c;你需要先了解什么是异步编程&#xff0c;可以参考JavaScript--异步编程,JavaScript--定时事件 Promise介绍&#xff1a; Promise是JavaScript中用于处理异步操作的对象。它代表着一个异步操作的最终完成&#xff08;或失败&#xff09;以及…

matplotlib从起点出发(6)_Tutorial_6_Animations

1 在matplotlib中使用动画 基于其绘图功能&#xff0c;matplotlib还提供了一个使用动画模块生成动画animation的接口。动画是一系列帧&#xff0c;其中每个帧对应于图形Figure 上的一个绘图。本教程介绍了有关如何创建此类动画的一般准则以及可用的不同选项。 import matplot…

php 服务器 http状态码为499的解决办法

原因&#xff1a;某些http请求服务端处理太慢&#xff0c;影响了其他http请求。 1.配置php.ini的max_execution_time和max_input_time。但是改后还是报了不少的499。 &#xff08;set_time_limit()函数和配置指令max_execution_time只影响脚本本身执行的时间。任何发生在诸如…