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).

Parameterset - ARM Machine Readable Schema - 2.8

AARCHMRS Schema 2.8

↚ Home

Parameterset array

Parameterset provides a set-like container to store all types of Parameters uniquely identified by their name property.

array

Examples
[
    {
        "_type": "Parameters.Integer", 
        "name": "NUM_VERSIONS", 
        "constraints": [
            {
                "_type": "AST.BinaryOp", 
                "left": {
                    "_type": "AST.BinaryOp", 
                    "left": {
                        "_type": "AST.Identifier", 
                        "value": "NUM_VERSIONS"
                    }, 
                    "op": ">", 
                    "right": {
                        "_type": "AST.Integer", 
                        "value": 23
                    }
                }, 
                "op": "==>", 
                "right": {
                    "_type": "AST.Identifier", 
                    "value": "FEAT_ACTION"
                }
            }
        ], 
        "values": [
            20, 
            {
                "_type": "Index", 
                "start": 22, 
                "end": 25
            }, 
            {
                "_type": "Index", 
                "start": 50, 
                "end": 60
            }, 
            100
        ]
    }, 
    {
        "_type": "Parameters.Boolean", 
        "name": "FEAT_FOO", 
        "constraints": [
            {
                "_type": "AST.BinaryOp", 
                "left": {
                    "_type": "AST.Identifier", 
                    "value": "FEAT_X"
                }, 
                "op": "==>", 
                "right": {
                    "_type": "AST.Identifier", 
                    "value": "v8Ap2"
                }
            }
        ]
    }
]

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

{
  "additionalItems": false,
  "examples": [
    [
      {
        "_type": "Parameters.Integer",
        "name": "NUM_VERSIONS",
        "constraints": [
          {
            "_type": "AST.BinaryOp",
            "left": {
              "_type": "AST.BinaryOp",
              "left": {
                "_type": "AST.Identifier",
                "value": "NUM_VERSIONS"
              },
              "op": ">",
              "right": {
                "_type": "AST.Integer",
                "value": 23
              }
            },
            "op": "==>",
            "right": {
              "_type": "AST.Identifier",
              "value": "FEAT_ACTION"
            }
          }
        ],
        "values": [
          20,
          {
            "_type": "Index",
            "start": 22,
            "end": 25
          },
          {
            "_type": "Index",
            "start": 50,
            "end": 60
          },
          100
        ]
      },
      {
        "_type": "Parameters.Boolean",
        "name": "FEAT_FOO",
        "constraints": [
          {
            "_type": "AST.BinaryOp",
            "left": {
              "_type": "AST.Identifier",
              "value": "FEAT_X"
            },
            "op": "==>",
            "right": {
              "_type": "AST.Identifier",
              "value": "v8Ap2"
            }
          }
        ]
      }
    ]
  ],
  "info": [
    [
      "$(Parameterset) provides a set-like container to store all types of $(Parameters.)",
      "uniquely identified by their name property."
    ]
  ],
  "items": {
    "oneOf": [
      {
        "$ref": "Parameters/Boolean.json"
      },
      {
        "$ref": "Parameters/Integer.json"
      },
      {
        "$ref": "Parameters/String.json"
      },
      {
        "$ref": "Parameters/Group.json"
      }
    ]
  },
  "title": "Parameterset",
  "type": "array",
  "$schema": "http://json-schema.org/draft-04/schema#"
}