pub struct InstantiableModule {
    pub module: CompiledModule,
    /* private fields */
}
Expand description

During the generation of a bytecode sequence, specific instantiations may need to be made, that may not yet exist in the underlying module. Instead of mutating the underlying module in order to record these instantiations in the locals signature table, we instead build wrapper around the underlying module containing the type instantiations, and at the end materialize this updated signature pool into a module. We also need the ability to quickly determine if an instantiation has already been created, and if so, at which index. So this also keeps a reverse lookup table of instantiation to SignatureIndex.

Fields

module: CompiledModule

Implementations

If the instantiant is not in the instantiations table, this adds the instantiant to the instance_for_offset for table, and adds the index to the reverse lookup table. Returns the SignatureIndex for the instantiant.

If the instantiant is not in the struct_instantiations table, this adds the instantiant to the struct_instance_for_offset for table, and adds the index to the reverse lookup table. Returns the SignatureIndex for the instantiant.

If the instantiant is not in the function_instantiations table, this adds the instantiant to the func_instance_for_offset for table, and adds the index to the reverse lookup table. Returns the SignatureIndex for the instantiant.

If the instantiant is not in the field_instantiations table, this adds the instantiant to the field_instance_for_offset for table, and adds the index to the reverse lookup table. Returns the SignatureIndex for the instantiant.

Returns the type instantiation at index. Errors if the instantiation does not exist.

Returns the struct instantiation at index. Errors if the instantiation does not exist.

Returns the struct instantiation at index. Errors if the instantiation does not exist.

Returns the struct instantiation at index. Errors if the instantiation does not exist.

Consumes self, and adds the instantiations that have been built up to the underlying module, and returns the resultant compiled module.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more