package inst
import "github.com/mmcloughlin/avo/internal/inst"
Package inst is the avo instruction database.
Index ¶
- Variables
- func ISACombinations(is []Instruction) [][]string
- func ISAs(is []Instruction) []string
- func ImplicitRegisters(is []Instruction) []string
- func OperandTypes(is []Instruction) []string
- func SuffixesClasses(is []Instruction) map[string][]Suffixes
- type Action
- func ActionFromReadWrite(r, w bool) Action
- func (a Action) ContainsAll(s Action) bool
- func (a Action) ContainsAny(s Action) bool
- func (a Action) Read() bool
- func (a Action) String() string
- func (a Action) Write() bool
- type EncodingType
- type Form
- func (f Form) AcceptsSuffixes() bool
- func (f Form) Arity() int
- func (f Form) Clone() Form
- func (f Form) Signature() []string
- func (f Form) SuffixesClass() string
- func (f Form) SupportedSuffixes() []Suffixes
- type Forms
- func (fs Forms) Arities() []int
- func (fs Forms) Arity() int
- func (fs Forms) Clone() Forms
- func (fs Forms) IsNiladic() bool
- func (fs Forms) IsVariadic() bool
- type ImplicitOperand
- type Instruction
- func Lookup(opcode string) (Instruction, bool)
- func (i Instruction) Clone() Instruction
- func (i Instruction) IsBranch() bool
- func (i Instruction) IsConditionalBranch() bool
- func (i Instruction) IsTerminal() bool
- type Operand
- type Suffix
- func UniqueSuffixes(is []Instruction) []Suffix
- func (s Suffix) String() string
- func (s Suffix) Summary() string
- type Suffixes
Variables ¶
var Instructions = []Instruction{ /* 1308 elements not displayed */ }
Functions ¶
func ISACombinations ¶
func ISACombinations(is []Instruction) [][]string
ISACombinations returns all the unique combinations of ISAs seen in the given instructions.
func ISAs ¶
func ISAs(is []Instruction) []string
ISAs returns all the unique ISAs seen in the given instructions.
func ImplicitRegisters ¶
func ImplicitRegisters(is []Instruction) []string
ImplicitRegisters returns all the registers that appear as implicit operands in the provided instructions.
func OperandTypes ¶
func OperandTypes(is []Instruction) []string
OperandTypes returns all the operand types that appear in the provided instructions.
func SuffixesClasses ¶
func SuffixesClasses(is []Instruction) map[string][]Suffixes
SuffixesClasses returns all possible classes of suffix combinations.
Types ¶
type Action ¶
type Action uint8
Action specifies the read/write operation of an instruction on an operand.
Possible Action types.
func ActionFromReadWrite ¶
ActionFromReadWrite builds an Action from boolean flags.
func (Action) ContainsAll ¶
ContainsAll reports whether a supports all actions in s.
func (Action) ContainsAny ¶
ContainsAny reports whether a supports any actions in s.
func (Action) Read ¶
Read reports whether a supports read.
func (Action) String ¶
String represents a as a human-readable string.
func (Action) Write ¶
Write reports whether a supports write.
type EncodingType ¶
type EncodingType uint8
EncodingType specifies a category of encoding types.
const ( EncodingTypeLegacy EncodingType = 1 + iota EncodingTypeREX EncodingTypeVEX EncodingTypeEVEX )
Supported encoding types.
type Form ¶
type Form struct { // Instruction sets this instruction form requires. ISA []string // Operands required for this form. Operands []Operand // Registers read or written but not explicitly passed to the instruction. ImplicitOperands []ImplicitOperand // Encoding type required for this instruction form. EncodingType EncodingType // CancellingInputs indicates this instruction form has no dependency on the // input operands when they refer to the same register. The classic example of // this is "XORQ RAX, RAX", in which case the output has no dependence on the // value of RAX. Instruction forms with cancelling inputs have only two input // operands, which have the same register type. CancellingInputs bool // Zeroing indicates whether the instruction form uses AVX-512 zeroing. This // is the .Z suffix in Go, usually indicated with {z} operand suffix in // Intel manuals. Zeroing bool // EmbeddedRounding indicates whether the instruction form uses AVX-512 // embedded rounding. This is the RN_SAE, RZ_SAE, RD_SAE and RU_SAE suffixes // in Go, usually indicated with {er} in Intel manuals. EmbeddedRounding bool // SuppressAllExceptions indicates whether the instruction form uses AVX-512 // "suppress all exceptions". This is the SAE suffix in Go, usually // indicated with {sae} in Intel manuals. SuppressAllExceptions bool // Broadcast indicates whether the instruction form uses AVX-512 // broadcast. This is the BCST suffix in Go, usually indicated by operand // types like "m64bcst" in Intel manuals. Broadcast bool }
Form specifies one accepted set of operands for an instruction.
func (Form) AcceptsSuffixes ¶
AcceptsSuffixes reports whether this form takes any opcode suffixes.
func (Form) Arity ¶
Arity returns the number of operands this form expects.
func (Form) Clone ¶
Clone the instruction form.
func (Form) Signature ¶
Signature returns the list of operand types.
func (Form) SuffixesClass ¶
SuffixesClass returns a key representing the class of instruction suffixes it accepts. All instructions sharing a suffix class accept the same suffixes.
func (Form) SupportedSuffixes ¶
SupportedSuffixes returns the list of all possible suffix combinations supported by this instruction form.
type Forms ¶
type Forms []Form
Forms is a collection of instruction forms.
func (Forms) Arities ¶
Arities returns the unique arities among the instruction forms.
func (Forms) Arity ¶
Arity is a convenience for returning the unique instruction arity when you know it is not variadic. Panics for a variadic instruction.
func (Forms) Clone ¶
Clone the instruction forms.
func (Forms) IsNiladic ¶
IsNiladic reports whether the instruction takes no operands.
func (Forms) IsVariadic ¶
IsVariadic reports whether the instruction has more than one arity.
type ImplicitOperand ¶
ImplicitOperand describes a register that is implicitly read/written by an instruction.
type Instruction ¶
type Instruction struct { Opcode string // Golang assembly mnemonic AliasOf string // Opcode of instruction that this is an alias for Summary string // Description of the instruction Forms // Accepted operand forms }
Instruction represents an x86 instruction.
func Lookup ¶
func Lookup(opcode string) (Instruction, bool)
Lookup returns the instruction with the given opcode. Boolean return value indicates whether the instruction was found.
func (Instruction) Clone ¶
func (i Instruction) Clone() Instruction
Clone the instruction.
func (Instruction) IsBranch ¶
func (i Instruction) IsBranch() bool
IsBranch reports whether the instruction is a branch; that is, if it can cause control flow to jump to another location.
func (Instruction) IsConditionalBranch ¶
func (i Instruction) IsConditionalBranch() bool
IsConditionalBranch reports whether the instruction branches dependent on some condition.
func (Instruction) IsTerminal ¶
func (i Instruction) IsTerminal() bool
IsTerminal reports whether the instruction exits a function.
type Operand ¶
Operand is an operand to an instruction, describing the expected type and read/write action.
type Suffix ¶
type Suffix string
Suffix is an opcode suffix.
const ( BCST Suffix = "BCST" RN_SAE Suffix = "RN_SAE" RZ_SAE Suffix = "RZ_SAE" RD_SAE Suffix = "RD_SAE" RU_SAE Suffix = "RU_SAE" SAE Suffix = "SAE" Z Suffix = "Z" )
Supported opcode suffixes in x86 assembly.
func UniqueSuffixes ¶
func UniqueSuffixes(is []Instruction) []Suffix
UniqueSuffixes returns all the non-empty suffixes that appear in the provided instructions.
func (Suffix) String ¶
func (Suffix) Summary ¶
Summary of the opcode suffix, for documentation purposes.
type Suffixes ¶
type Suffixes []Suffix
Suffixes is a list of opcode suffixes.
func (Suffixes) Join ¶
Join suffixes with the given separator.
func (Suffixes) String ¶
String returns the dot-separated suffixes.
func (Suffixes) Strings ¶
Strings returns the suffixes as strings.
func (Suffixes) Summaries ¶
Summaries returns all the suffix summaries.
Source Files ¶
doc.go table.go types.go ztable.go
- Version
- v0.6.0 (latest)
- Published
- Jan 7, 2024
- Platform
- linux/amd64
- Imports
- 2 packages
- Last checked
- 1 month ago –
Tools for package owners.