Struct cranelift_codegen::ir::TableData[][src]

pub struct TableData {
    pub base_gv: GlobalValue,
    pub min_size: Imm64,
    pub bound_gv: GlobalValue,
    pub element_size: Imm64,
}

Information about a table declaration.

Fields

Global value giving the address of the start of the table.

Guaranteed minimum table size in elements. Table accesses before min_size don't need bounds checking.

Global value giving the current bound of the table, in elements.

The size of a table element, in bytes.

Trait Implementations

impl Clone for TableData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for TableData
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for TableData

impl Sync for TableData