| Comments |
|
|
--comment |
All comments. |
--default |
--comment-line |
All line comments. |
--comment=>--default |
--comment-shebang |
The (optional) #! comment on the first line line of the file. |
--comment-line=>--comment=>--default |
--comment-block |
All block comments. |
--comment=>--default |
| DocTags |
|
|
--doctag |
All doctags within comments. |
--comment=>--default |
--doctag-bug |
E.g. BUG:. |
--doctag=>--comment=>--default |
--doctag-fixme |
E.g. FIXME:. |
--doctag=>--comment=>--default |
--doctag-hack |
E.g. HACK:. |
--doctag=>--comment=>--default |
--doctag-later |
E.g. LATER:. |
--doctag=>--comment=>--default |
--doctag-maybe |
E.g. MAYBE:. |
--doctag=>--comment=>--default |
--doctag-noCheckin |
E.g. NO_CHECKIN: or nocheckin:. |
--doctag=>--comment=>--default |
--doctag-note |
E.g. NOTE:. |
--doctag=>--comment=>--default |
--doctag-optimise |
E.g. OPTIMISE: or OPTIMIZE:. |
--doctag=>--comment=>--default |
--doctag-test |
E.g. TEST:. |
--doctag=>--comment=>--default |
--doctag-todo |
E.g. TODO:. |
--doctag=>--comment=>--default |
--doctag-question |
E.g. QUESTION:. |
--doctag=>--comment=>--default |
--doctag-xxx |
E.g. XXX:. |
--doctag=>--comment=>--default |
--doctag-reminder |
E.g. @Speed. |
--doctag=>--comment=>--default |
--doctag-label |
E.g. :Something. |
--doctag=>--comment=>--default |
inside .build/added_strings_*.jai |
|
|
--doctag-workspace |
The workspace header comment. |
--doctag=>--comment=>--default |
--doctag-workspace-name |
The workspace name in the above comment. |
--doctag-workspace=>--doctag=>--comment=>--default |
--doctag-addBuildString |
A "String added via add_build_string() from" heading comment. |
--doctag=>--comment=>--default |
--doctag-addBuildString-path |
The file-path in the above comment. |
--doctag-addBuildString=>--doctag=>--comment=>--default |
--doctag-addBuildString-fileName |
The file-name in the above comment. |
--doctag-addBuildString=>--doctag=>--comment=>--default |
--doctag-insert |
A "#insert text. Generated from`" heading comment. |
--doctag=>--comment=>--default |
--doctag-insert-path |
The file-path in the above comment. |
--doctag-insert=>--doctag=>--comment=>--default |
--doctag-insert-fileName |
The file-name in the above comment. |
--doctag-insert=>--doctag=>--comment=>--default |
--doctag-lineNumber |
The line number in the above 2 comment types. |
--doctag=>--comment=>--default |
|
|
|
| Literals |
|
|
--literal |
Non-numeric, non-string literals: true, false, null. |
--default |
--literal-bool |
Boolean literals: true, false |
--literal=>--default |
--literal-bool-true |
true |
--literal-bool=>--literal=>--default |
--literal-bool-false |
false |
--literal-bool=>--literal=>--default |
|
|
|
| Numbers |
|
|
--number |
All numeric literals. |
--default |
--number-prefix |
The prefix on any non-decimal numeric literal, e.g. 0x, 0b etc. |
--number=>--default |
--number-integer |
All integer literals. |
--number=>--default |
--number-float |
All floating-point literals. |
--number=>--default |
--number-float-exponent |
The exponent suffix on a float literal, if present. |
--number-float=>--number=>--default |
--number-binary |
All binary (0b) literals. |
--number=>--default |
--number-binary-prefix |
The 0b prefix. |
--number-prefix=>--number=>--default |
--number-hexadecimal |
All hexadecimal (0x) literals. |
--number=>--default |
--number-hex-prefix |
The 0x prefix. |
--number-prefix=>--number=>--default |
--number-hexFloat |
All hexFloat (0h) literals. |
--number=>--default |
--number-hexFloat-prefix |
The 0h prefix. |
--number-prefix=>--number=>--default |
|
|
|
| Chars |
|
|
--char |
The #char directive and it's following quoted char value. |
--string=>--default |
--char-hash |
The # in the #char directive. |
--operator-hash-directive=>--operator=>--default |
--keyword-char |
The char keyword in the #char directive. |
--keyword=>--default |
| Strings |
|
|
--string |
Strings. |
--default |
--hereString |
Here-Strings. |
--string=>--default |
--hereString-hash |
The # in the #string directive. |
--hereString=>--string=>--default |
--hereString-directive |
The string in the #string directive. |
--directive=>--meta=>--default |
--hereString-directive-modifier |
The ,cr in the #string,cr directive. |
--directive-modifier=>--directive=>--meta=>--default |
--hereString-termiator |
Here-String terminators. |
--hereString=>--string=>--default |
--string-path |
Strings in #load and #import directives. |
--string=>--default |
--char-escape |
Escaped things in strings, e.g. \n. |
--string=>--default |
--subst |
Substituted things in strings that are args to known @PrintLike functions, e.g. %. |
--string=>--default |
--string-path |
The path-containing string in #import and #load directives. |
--string=>--default |
--string-path-import |
The path-containing string in an #import directive. |
--string-path=>--string=>--default |
--string-path-load |
The path-containing string in a #load directive. |
--string-path=>--string=>--default |
|
|
|
| Keywords |
|
|
--keyword |
Keywords |
--default |
--keyword-char |
The char keyword in the #char directive. |
--keyword=>--default |
--keyword-context |
The push_context and defer_pop keywords. |
--keyword=>--default |
--keyword-enum |
The enum and enum_flags keywords. |
--keyword=>--default |
--keyword-if |
if, ifx, then, else and case. |
--keyword=>--default |
--keyword-for |
for, remove and while |
--keyword=>--default |
--keyword-flowControl |
continue, break, defer and return. |
--keyword=>--default |
--keyword-meta |
type_of, type_info, size_of, initializer_of, code_of, is_constant and using |
--keyword=>--default |
--keyword-proc |
inline, no_inline and interface. |
--keyword=>--default |
--keyword-struct |
The struct keyword. |
--keyword=>--default |
--keyword-union |
The union keyword. |
--keyword=>--default |
--keyword-cast |
The cast keyword, its parameters, and ()s and ,, as used in Option 1 and Option 2, and the xx autocast keyword. |
--keyword=>--default for the keyword;
--keyword=>--punctuation=>--default for the ()s and ,; |
--keyword-cast-v1 |
The cast keyword & parameters, as used in Option 1. |
--keyword-cast=>--keyword=>--default |
--keyword-cast-v1-auto |
The xx keyword, as used in Option 1. |
--keyword-cast-v1=>--keyword-cast=>--keyword=>--default |
--keyword-cast-v2 |
The cast keyword & parameters, as used in Option 2. |
--keyword-cast=>--keyword=>--default |
--operator-cast-v3 |
The .(Type) Option 3 suffix cast. |
--operator=>--default |
|
|
|
| Operators |
|
|
--operator |
All operators. |
--default |
--operator-bake |
The $ operator. |
--operator=>--default |
--operator-autobake |
The $$ operator. |
--operator=>--default |
--operator-assign |
All assignment operators, =, and all the +=, -= etc. versions. |
--operator=>--default |
--operator-backtick |
The scope-modifying ` operator. |
--operator=>--default |
--operator-bitwise |
All bitwise operators (&, ` |
, ~, ^`). |
--operator-comparison |
All comparison operators (==, !=, <, >, <=, >=). |
--operator=>--default |
--operator-define |
The : operator. |
--operator=>--default |
--operator-define-assign |
The compound, type-inferred := operator. |
--operator-define=>--operator=>--default |
--operator-define-constant |
The constant-defining operator ::. |
--operator-define=>--operator=>--default |
--operator-dereference |
The .* operator |
--operator=>--default |
--operator-dot |
The . operator. |
--operator=>--default |
--operator-dynamicArray |
The .. operator when used to indicate a dynamic array type. |
--operator=>--default |
--operator-hash-directive |
The # operator. |
--operator=>--default |
--operator-logical |
All logical operators (!, &&, ` |
|
--operator-math |
All math binary operators (+, -, *, /, %). |
--operator=>--default |
--operator-math-unaryNegate |
The unary - in front of a numeric literal. |
--operator-math=>--operator=>--default |
--operator-pointerTo |
* when used at the start of a type name. |
--operator=>--default |
--operator-quickLambda |
The => operator. |
--operator=>--default |
--operator-range |
The .. operator. |
--operator=>--default |
--operator-returns |
The -> operator. |
--operator=>--default |
--operator-rotate |
The bitwise rotate operators (<<<, >>>). |
--operator=>--default |
--operator-shift |
The bitwise shift operators (<<, >>). |
--operator=>--default |
--operator-shift-modifier |
Things like ,small or ,logical for the bit-shift operators. |
--operator-shift=>--operator=>--default |
--operator-uninitialised |
The --- operator. |
--operator=>--default |
--operator-varargs |
The .. operator marking a variadic parameter. |
--operator=>--default |
--operator-pinRegister |
The === operator. |
--operator=>--default |
--operator-asm-broadcastValueOrSuppressFloatExceptions |
The ! operator in inline ASM. |
--operator=>--default |
--operator-asm-maskControl |
The & and &* operators in inline ASM. |
--operator=>--default |
--operator-asm-roundingControl |
The !n, !d, !u and !z operators in inline ASM. |
--operator=>--default |
| Punctuation |
|
|
--punctuation |
All punctuation. |
--default |
--punctuation-bracket |
[ and ]. |
--punctuation=>--default |
--punctuation-paren |
( and ). |
--punctuation=>--default |
--punctuation-brace |
{ and }. |
--punctuation=>--default |
--punctuation-quote |
"s. |
--punctuation=>--default |
--punctuation-comma |
,s. |
--punctuation=>--default |
--punctuation-commaComma |
The ,, context-arg delimiter. |
--punctuation-comma=>--punctuation=>--default |
--punctuation-semicolon |
;s. |
--punctuation=>--default |
--punctuation-forModifier |
The < and * modifiers for a for statement. |
--punctuation=>--default |
--punctuation-forExpansionInvoke |
The : prefix on for-expansion invocations. |
--punctuation=>--default |
--punctuation-backslash |
Mid-identifier alignment backslash. |
--punctuation=>--default |
--punctuation-alignmentWS |
Mid-identifier alignment whitespace. |
--punctuation=>--default |
|
|
|
| Declarations |
|
|
--declaration |
All declarations - if they fall back to this. |
--default |
--variable-declaration |
Variable declarations. |
--declaration=>--variable=>--default |
--variable-constant-declaration |
A constant being declared. |
--variable-declaration=>--declaration=>--variable-constant=>--variable=>--default |
--record-declaration |
Struct or union variable declarations. |
--declaration=>--record=>--title=>--default |
--field-declaration |
Struct field declarations. |
--declaration=>--field=>--default |
--field-type |
The type of a field. |
--type=>--field=>--default |
--field-type-function |
The type of a field when it's a proc/function. |
--field-type=>--type-function=>--type=>--field=>--default |
--field-constant-declaration |
Struct constant-field declarations. |
--declaration=>--field-constant=>--field=>--default |
--field-value |
The value of a constant field. |
--field-constant=>--field=>--default |
--external |
External things (#foreign, #library, #system_library and #elsewhere). |
--title=>--default |
--libraryProcName |
The external proc name if specified. |
--proc=>--title=>--default |
--libraryReference |
The external library reference. |
--proc=>--title=>--default |
--external-declaration |
A declaration marked with #foreign, #library, #system_library or #elsewhere. |
--declaration=>--external=>--title=>--default |
--external-declaration-elsewhere |
A declaration marked with #elsewhere. |
--external-declaration=>--declaration=>--external=>--title=>--default |
--external-declaration-foreign |
A declaration marked with #foreign. |
--external-declaration=>--declaration=>--external=>--title=>--default |
--external-declaration-library |
A declaration marked with #library or #system_library. |
--external-declaration=>--declaration=>--external=>--title=>--default |
--proc-declaration |
Proc/functions declarations. |
--declaration=>--proc=>--title=>--default |
--params-declaration |
All proc parameter declarations in the proc signature. |
--declaration=>--params=>--default |
--type-declaration |
Type declarations. |
--declaration=>--type=>--default |
--type-enum-declaration |
An enum or enum_flags type being declared. |
--type-declaration=>--declaration=>--type=>--default |
--type-enum-value-declaration |
An enum value being declared. |
--type-enum-declaration=>--type-declaration=>--declaration=>--type=>--default |
--module-params-declaration |
Module parameter declarations in the #module_parameters directive. |
--declaration=>--module-params=>--params=>--default |
--program-params-declaration |
Program parameter declarations in the #module_parameters directive. |
--declaration=>--program-params=>--params=>--default |
|
|
|
| Variables |
|
|
--variable |
All otherwise-uncategorised variable identifiers. |
--default |
--variable-declaration |
A variable being declared. |
--declaration=>--variable=>--default |
--variable-language |
Language-defined variables: context, it, it_index & temp. |
--variable=>--default |
--variable-constant |
Constants (ALL_UPPER names). |
--variable=>--default |
--variable-constant-declaration |
A constant being declared. |
--variable-declaration=>--declaration=>--variable-constant=>--variable=>--default |
--variable-param-baked |
A parameter variable which is being value-baked, i.e. $myVar. |
--variable=>--default |
--variable-context |
Variables on the Context. |
--variable=>--default |
--variable-context-constant |
Constants on the Context. |
--variable-constant=>--variable=>--default |
--variable-stdLib |
Variables defined in a standard lib module. |
--variable=>--default |
--variable-stdLib-constant |
Constants defined in a module. |
--variable-stdLib=>--variable-constant=>--variable=>--default |
--variable-stdLib-context |
Context additions defined a module. |
--variable-stdLib=>--variable=>--default |
--variable-stdLib-moduleParam |
A standard lib module's module-parameter. |
--params=>--variable=>--default |
--variable-stdLib-programParam |
A standard lib module's program-parameter. |
--params=>--variable=>--default |
--field |
Struct field references (things following the . operator). |
--default |
--field-declaration |
A struct field declaration. |
--field=>--default |
--field-constant |
Struct constant-field references (ALL_UPPER). |
--field=>--default |
--field-enum |
Enum value references (.ALL_UPPER or .PascalCase). |
--field-constant=>--field=>--default |
--punctuation-backslash |
Mid-identifier alignment backslash. |
--punctuation=>--default |
--punctuation-alignmentWS |
Mid-identifier alignment whitespace. |
--punctuation=>--default |
|
Fields |
|
--field |
Struct field references (things following the . operator). |
--default |
--field-declaration |
A struct field declaration. |
--field=>--default |
--field-constant |
Struct constant-field references (ALL_UPPER). |
--field=>--default |
--field-default |
The default value of a field. |
--declaration=>--field=>--default |
--field-constant-declaration |
Struct constant-field declarations. |
--declaration=>--field-constant=>--field=>--default |
--field-enum |
Enum value references (.ALL_UPPER or .PascalCase). |
--field-constant=>--field=>--default |
--field-tag |
A tagged union's discriminator declaration. |
--field=>--default |
--field-tag-declaration |
The name of a tagged union's discriminator. |
--declaration=>--field-tag=>--field=>--default |
--field-tag-default |
The default value of a tagged union's discriminator. |
--field-default=>--declaration=>--field-tag=>--field=>--default |
--field-tag-type |
The type of a tagged union's discriminator. |
--field-type=>--type=>--field-tag=>--field=>--default |
|
|
|
| Types |
|
|
--type |
All types (PascalCase). |
--default |
--type-arrayOf |
The array specifier of a type. |
--type=>--default |
--type-declaration |
Type declarations. |
--declaration=>--type=>--default |
--type-enum |
All Enum types. |
--type=>--default |
--type-any |
The Any type. |
--type=>--default |
--type-bool |
The bool type. |
--type=>--default |
--type-code |
The Code type. |
--type=>--default |
--type-context |
The #Context type |
--type=>--default |
--type-enum-declaration |
An enum or enum_flags type being declared. |
--type-declaration=>--declaration=>--type=>--default |
--type-enum-value-declaration |
An enum value being declared. |
--type-enum-declaration=>--type-declaration=>--declaration=>--type=>--default |
--type-float |
Both floating point types (float, float64). |
--type=>--default |
--type-function |
All procs/functions. |
--type=>--default |
--type-function-declaration |
Proc/function declarations. |
--type-declaration=>--declaration=>--type-function=>--type=>--default |
--type-integer |
All integer types. |
--type=>--default |
--type-integer-signed |
All signed integer types (int, s8, s16, s32, s64). |
--type-integer=>--type=>--default |
--type-integer-unsigned |
All unsigned integer types (u8, u16, u32, u64). |
--type-integer=>--type=>--default |
--type-record |
All record types (struct and union). |
--record=>--type=>--default |
--type-record-anonymous |
An anonymous inline struct or union type. |
--type-record=>--record=>--type=>--default |
--type-string |
The string type. |
--type=>--default |
--type-stdLib |
Any types defined in the standard library. |
--type=>--default |
--type-struct |
All struct types. |
--type-record=>--struct=>--record=>--type=>--default |
--type-struct-declaration |
Struct type declarations. |
--type-declaration=>--declaration=>--type-struct=>--type-record=>--struct=>--record=>--type=>--default |
--type-type |
The Type type. |
--type=>--default |
--type-union |
All union types. |
--type-record=>--union=>--record=>--type=>--default |
--type-union-declaration |
Union type declarations. |
--type-declaration=>--declaration=>--type-union=>--type-record=>--union=>--record=>--type=>--default |
--type-void |
The void type. |
--type=>--default |
--type-asm |
The reg (and __reg) types. |
--type=>--default |
--type-baked |
Any polymorphic type that is baked, e.g. $T. |
--type=>--default |
|
|
|
| Enums |
|
|
--enum |
All enum variables. |
--title=>--default |
--enum-declaration |
Enum variable declarations. |
--declaration=>--enum=>--title=>--default |
|
|
|
--title |
The names of structs, procs & functions. |
--default |
|
|
|
| Records - Structs/Unions |
|
|
--record |
Structs and unions. |
--title=>--default |
--record-inherited |
Record fields marked with #as. |
--record=>--title=>--default |
--record-declaration |
A struct or union being declared. |
--declaration=>--record=>--title=>--default |
--struct |
Struct-specific override. |
--record=>--title=>--default |
--union |
Union-specific override. |
--record=>--title=>--default |
--paramsList |
The list of struct parameters. |
--type-struct-declaration=>--type-struct=>--type-record=>--struct=>--record=>--type=>--default |
|
|
|
| Procs/Functions |
|
|
--proc |
Procedures & functions. |
--title=>--default |
--proc-printLike |
Known stdLib procs marked with @PrintLike, enabling substitution marker highlighting. |
--proc=>--title=>--default |
--proc-declaration |
A proc/function being declared. |
--declaration=>--proc=>--title=>--default |
--paramsList |
The list of proc parameters. |
--type-function-declaration=>--type-function=>--type=>--default |
--params-declaration |
All proc parameter declarations in the proc signature. |
--declaration=>--params=>--default |
--params-type |
The type of a proc parameter. |
--type=>--params=>--default |
--params-type-function |
The type of a proc parameter when it's a proc/function. |
--params-type=>--type-function=>--type=>--params=>--default |
--params-default |
The default value for a parameter in the proc signature. |
--params=>--default |
--directive-modify |
The #modify directive on a proc declaration.` |
--directive=>--meta=>--default |
--params-return |
A return entry. |
--params=>--default |
--returnsList |
The list of proc returns; applies regardless of whether ()s wrap the returns. |
--params=>--default |
--params-returnDeclaration |
The name of a return entry. |
--declaration=>--params-return=>--params=>--default |
--params-returnType |
The type of a return entry. |
--params-return=>--params-type=>--type=>--params=>--default |
--params-returnType-function |
The type of a return entry when it's a proc/function. |
--params-returnType=>--params-type-function=>--params-type=>--type-function=>--type=>--params=>--default |
--params-returnDefault |
The default value of a return entry. |
--params-return=>--params=>--default |
| Specials |
|
|
--forExpansion |
Procs named for_expansion. |
--proc=>--title=>--default |
--operatorProc |
Procs named operator. |
--proc=>--title=>--default |
|
|
|
| Standard Lib |
|
|
--builtIn |
All built-in procs & functions. |
--default |
--builtIn-stdLib |
Procs and functions defined in a standard lib module |
--builtIn=>--default |
|
|
|
| Meta Information |
|
|
--meta |
Meta-information, e.g. directives and notes. |
--default |
--meta-comma |
Commas in directives. |
--punctuation=>--default |
--meta-union-binding |
A tagged-union binding, e.g. .TAG ,, member: Type;. |
--meta=>--default |
--meta-union-binding-tag |
The tag value at the start of a tagged-union binding. |
--meta-union-binding=>--meta=>--default |
--note |
Notes, e.g. @PrintLike |
--meta=>--default |
| Directives |
|
|
--directive |
Directives. |
--meta=>--default |
--directive-modifier |
Directive modifiers. |
--directive=>--meta=>--default |
--directive-foreignOrLibrary |
The #foreign, #library and #system_library directives. |
--directive=>--meta=>--default |
--directive-import |
The #import directive. |
--directive=>--meta=>--default |
--directive-load |
The #load directive. |
--directive=>--meta=>--default |
--directive-modify |
The #modify directive on a proc declaration.` |
--directive=>--meta=>--default |
--directive-insert |
The #insert directive. |
--directive=>--meta=>--default |
--directive-module_parameters |
The #module_parameters directive. |
--directive=>--meta=>--default |
--module-params-declaration |
Module parameter declarations in the #module_parameters directive. |
--declaration=>--module-params=>--params=>--default |
--program-params-declaration |
Program parameter declarations in the #module_parameters directive. |
--declaration=>--program-params=>--params=>--default |
--directive-module_parameters-block |
The block that is optionally part of the #module_parameters directive, where things to be used in the module parameters are defined. |
--directive-module_parameters=>--directive=>--meta=>--default |
|
|
|
| Specifics |
|
|
--params |
A module's module or program parameters in an #import directive. |
--default |
--module-params |
A module's module in an #import directive. |
--params=>--default |
--program-params |
A module's program parameters in an #import directive. |
--params=>--default |
|
|
|
| Inline ASM |
|
|
--asm |
All inline ASM. |
--meta=>--default |
--asm-directive |
The #asm directive. |
--directive=>--meta=>--default |
--asm-directive-flags |
Any CPU feature flags list on the #asm directive. |
--directive-modifier=>--directive=>--meta=>--default |
--asm-directive-flags-comma |
,s in the CPU feature flags list on the #asm directive. |
--meta-comma=>--punctuation=>--default |
--asm-directive-flag |
Each CPU feature flags on the #asm directive. |
--asm-directive-flags=>--directive-modifier=>--directive=>--meta=>--default |
--asm-directive-block |
The entire {}-bounded block after the #asm directive. |
--asm=>--asm-directive=>--directive=>--meta=>--default |
--asm-statement |
An #asm instruction. |
--asm=>--meta=>--default |
--asm-comma |
Commas in #asm statements. |
--meta-comma=>--punctuation=>--default |
--operator-pinRegister |
The === operator. |
--operator=>--default |
--operator-asm-broadcastValueOrSuppressFloatExceptions |
The ! operator in inline ASM. |
--operator=>--default |
--operator-asm-maskControl |
The & and &* operators in inline ASM. |
--operator=>--default |
--operator-asm-roundingControl |
The !n, !d, !u and !z operators in inline ASM. |
--operator=>--default |
|
|
|
--asm-register |
CPU register names. |
--keyword=>--default |
--symbol |
All symbols. |
--default |
--asm-symbol |
All mnemonics and size symbols. |
--symbol=>--default |
--asm-mnemonic |
Instruction opcodes, e.g. mov. |
--asm-symbol=>--symbol=>--default |
--asm-size |
A size specifier on an opcode, e.g. in mov.8 or mov?T. |
--asm-mnemonic=>--asm-symbol=>--symbol=>--default |
--asm-size-numeric |
A numeric-literal size specifier, e.g. mov.8. |
--asm-size=>--asm-mnemonic=>--asm-symbol=>--symbol=>--default |
--asm-size-const |
A constant opcode size specifier, e.g. mov.BITS. |
--asm-size=>--asm-mnemonic=>--asm-symbol=>--symbol=>--default |
--asm-size-type |
A variable opcode size specifier, e.g. mov?T. |
--asm-size=>--asm-mnemonic=>--asm-symbol=>--symbol=>--default |
--operator-asm-size |
The . or ? in an opcode size specifier, e.g. in mov.8 or mov?T. |
--operator=>--default |
--operator-asm-size-clue |
The ? in an opcode size specifier, e.g. in mov?T. |
--operator-asm-size=>--operator=>--default |
--operator-asm-size-dot |
The . in an opcode size specifier, e.g. in mov.8. |
--operator-asm-size=>--operator=>--default |