Struct llhd::inst::Inst [] [src]

pub struct Inst { /* fields omitted */ }

Methods

impl Inst
[src]

[src]

Create a new instruction.

[src]

Obtain a reference to this instruction.

[src]

Determine the mnemonic for this instruction. The mnemonic is a short sequence of characters that uniquely identifies the instruction in human readable assembly text.

[src]

Obtain a reference to the data for this instruction. See InstKind.

Trait Implementations

impl Debug for Inst
[src]

[src]

Formats the value using the given formatter.

impl Value for Inst
[src]

[src]

Get the unique ID of the value.

[src]

Get the type of the value.

[src]

Get the optional name of the value.

[src]

Whether this value is global or not. Global values are considered during linking, and are visible in a module's symbol table. Local values are not, and are only visible within the surrounding context (module or unit). Read more