This is a collection of Intel®’ IA32® Software Developer's Manuals (URL of the day) and AMD' AMD64 Architecture Programmer's Manual together with the related specifications, application notes, white papers, and change logs. The collection aims to keep all available revisions. It was originally created by Michal Necasek, see OS/2 Museum.

If you have a public document, related to the IA32® specifications and missing from the collection, please mail it to me. The content of this URL and all sub-ULRs is available for convenient bulk download by rsync x86docs password "" (empty).

Types.PstateField - ARM Machine Readable Schema - 2.8

AARCHMRS Schema 2.8

↚ Home

Types.PstateField object

This object is used to link to a PSTATE field, it holds all the components required for the linking.

object

Properties Type Description
_meta Meta

Metadata

See Meta for more information.
_type
Enum
Types.PstateField
value
  • object
Properties Type Description
name
  • string

The name of the PSTATE field, for example PSTATE.EL, PSTATE.D.

Pattern
/^PSTATE\.[A-Za-z][A-Za-z0-9_]*$/
slices
oneOf [
null
]
oneOf Rangeset

The bit slice on the PSTATE value.

oneOf null
Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.

Schema http://json-schema.org/draft-04/schema#

{
  "info": [
    "This object is used to link to a PSTATE field, it holds all the components required for the linking."
  ],
  "title": "Types.PstateField",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "deprecated": "Replaced with $(AST.Concat) and $(Types.Variable).",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "_meta": {
      "$ref": "../Meta.json",
      "info": [
        "Metadata"
      ]
    },
    "_type": {
      "enum": [
        "Types.PstateField"
      ]
    },
    "value": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "name": {
          "type": "string",
          "info": [
            "The name of the PSTATE field, for example `PSTATE.EL`, `PSTATE.D`."
          ],
          "pattern": "^PSTATE\\.[A-Za-z][A-Za-z0-9_]*$"
        },
        "slices": {
          "oneOf": [
            {
              "$ref": "../Rangeset.json",
              "info": [
                "The bit slice on the `PSTATE` value."
              ]
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "required": [
        "name"
      ]
    }
  },
  "required": [
    "value"
  ]
}