zoukankan      html  css  js  c++  java
  • 关于一些术语的解释

    原文网址:

    http://sunshout.tistory.com/1488

    Glossary

    Banked register

    Is a register that has multiple instances, with the instance that is in use depending on the processor mode, security state, or other processor state.

    IMP

    Is an abbreviation used in diagrams to indicate that the bit or bits concerned have implementation defined behavior.

    IMPLEMENTATION DEFINED

    Means that the behavior is not architecturally defined, but should be defined and documented by individual implementations.

    Observer

    A processor or mechanism within the system, such as peripheral device, that is capable of generating reads from or writes to memory.

    Read-As-One (RAO)

    In any implementation, the bit must read as 1, or all 1s for a bit field.

    Read-As-Zero (RAZ)

    In any implementation, the bit must read as 0, or all 0s for a bit field.

    RAO

    See Read-As-One.

    RAO/WI

    Read-As-One, Writes Ignored.In any implementation, the bit must read as 1, or all 1s for a bit field, and writes to the field must be ignored.

    Software can rely on the bit reading as 1, or all 1s for a bit field, and on writes being ignored.

    RAZ

    See Read-As-Zero.

    RAZ/WI

    Read-As-Zero, Writes Ignored.In any implementation, the bit must read as 0, or all 0s for a bit field, and writes to the field must be ignored.

    Software can rely on the bit reading as 0, or all 0s for a bit field, and on writes being ignored.

    Reserved

    Registers and instructions that are reserved are unpredictable unless otherwise stated. Bit positions described as Reserved are UNK/SBZP.

    SBZ

    See Should-Be-Zero.

    SBZP

    See Should-Be-Zero-or-Preserved.

    Security hole

    Is a mechanism that bypasses system protection.

    Should-Be-Zero (SBZ)

    Should be written as 0 (or all 0s for a bit field) by software. Values other than 0 produce unpredictable results.

    Should-Be-Zero-or-Preserved (SBZP)

    Must be written as 0, or all 0s for a bit field, by software if the value is being written without having been previously read, or if the register has not been initialized. Where the register was previously read on the sameprocessor, since the processor was last reset, the value in the field should be preserved by writing the value that was previously read.

    Hardware must ignore writes to these fields.

    If a value is written to the field that is neither 0 (or all 0s for a bit field), nor a value previously read for the same field on the same processor, the result is unpredictable.

    UNKNOWN

    An unknown value does not contain valid data, and can vary from moment to moment, instruction to instruction, and implementation to implementation. An unknown value must not be a security hole. unknown values must not be documented or promoted as having a defined value or effect.

    UNK/SBZP

    unknown on reads, Should-Be-Zero-or-Preserved on writes.

    In any implementation, the bit must read as 0, or all 0s for a bit field, and writes to the field must be ignored.

    Software must not rely on the field reading as 0, or all 0s for a bit field, and must use an SBZP policy to write to the field.

    UNK

    Software must treat a field as containing an UNKNOWN value.In any implementation, the bit must read as 0, or all 0s for a bit field. Software must not rely on the field reading as zero.

    UNPREDICTABLE

    The behavior cannot be relied upon. unpredictable behavior must not represent security holes. unpredictable behavior must not halt or hang the processor, or any parts of the system. unpredictable behavior must not be documented or promoted as having a defined effect.

    Unsigned data types

    Represent a non-negative integer in the range 0 to +2N−1, using normal binary format.

  • 相关阅读:
    ECSHOP文章详情页的标题上加个链接
    点击复制代码到粘贴板代码
    ecshop商城用户名和邮箱都能登陆方法
    ECSHOP商品页发表评论时 取消EMAIL必填
    ECSHOP 模板结构说明
    ecshop文章分类页 显视当前文章分类名称及商品分类页显视当前分类名称
    ecshop商城用户名和邮箱都能登陆方法
    Ecshop品牌页如何自定义Title
    常见的颜色搭配、衣裤搭配指南
    ECSHOP首页显示积分商城里的商品
  • 原文地址:https://www.cnblogs.com/c-road/p/7278861.html
Copyright © 2011-2022 走看看