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

Identifier - ARM Machine Readable Schema - 2.8

AARCHMRS Schema 2.8

↚ Home

AST.Identifier object

An AST model wrapper for an identifier, such as REG0 or a32.

definition

Definitions Type Description
c_identifier_regex
  • string
Pattern
/^(?!__)[a-zA-Z_][a-zA-Z0-9_]*$/
regex
  • string
Pattern
/^((?!__)[a-zA-Z_][a-zA-Z0-9_]*(<[^>]+>)?[a-zA-Z0-9_]*$)/

object

Properties Type Description
_meta Meta
See Meta for more information.
_type
Enum
AST.Identifier
value

The string value of this identifier.

See definitions.regex for more information.
Additional Properties
Not Allowed
◊ Required
Properties marked with ◊ are required properties.
Examples
{
    "_type": "AST.Identifier", 
    "value": "REG0"
}
{
    "_type": "AST.Identifier", 
    "value": "A32"
}

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

{
  "info": [
    "An AST model wrapper for an identifier, such as `REG0` or `a32`."
  ],
  "definitions": {
    "regex": {
      "type": "string",
      "pattern": "^((?!__)[a-zA-Z_][a-zA-Z0-9_]*(<[^>]+>)?[a-zA-Z0-9_]*$)"
    },
    "c_identifier_regex": {
      "type": "string",
      "pattern": "^(?!__)[a-zA-Z_][a-zA-Z0-9_]*$"
    }
  },
  "examples": [
    {
      "_type": "AST.Identifier",
      "value": "REG0"
    },
    {
      "_type": "AST.Identifier",
      "value": "A32"
    }
  ],
  "properties": {
    "_meta": {
      "$ref": "../Meta.json"
    },
    "_type": {
      "enum": [
        "AST.Identifier"
      ]
    },
    "value": {
      "info": [
        "The string value of this identifier."
      ],
      "$ref": "#/definitions/regex"
    }
  },
  "required": [
    "value"
  ],
  "title": "Identifier",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": false
}