pub struct FunctionSourceMap {
    pub definition_location: Loc,
    pub type_parameters: Vec<SourceName>,
    pub parameters: Vec<SourceName>,
    pub locals: Vec<SourceName>,
    pub nops: BTreeMap<NopLabel, CodeOffset>,
    pub code_map: BTreeMap<CodeOffset, Loc>,
    pub is_native: bool,
}

Fields

definition_location: Loc

The source location for the definition of this entire function. Note that in certain instances this will have no valid source location e.g. the “main” function for modules that are treated as programs are synthesized and therefore have no valid source location.

type_parameters: Vec<SourceName>

The names of the type parameters to the function. Note that type parameters need to be added in the order of their declaration.

parameters: Vec<SourceName>

The names of the parameters to the function.

locals: Vec<SourceName>

The index into the vector is the local’s index. The corresponding (Identifier, Location) tuple is the name and location of the local.

nops: BTreeMap<NopLabel, CodeOffset>

A map to the code offset for a corresponding nop. Nop’s are used as markers for some high level language information

code_map: BTreeMap<CodeOffset, Loc>

The source location map for the function body.

is_native: bool

Whether this function is a native function or not.

Implementations

A single source-level instruction may possibly map to a number of bytecode instructions. In order to not store a location for each instruction, we instead use a BTreeMap to represent a segment map (holding the left-hand-sides of each segment). Thus, an instruction sequence is always marked from its starting point. To determine what part of the source code corresponds to a given CodeOffset we query to find the element that is the largest number less than or equal to the query. This will give us the location for that bytecode range.

Record the code offset for an Nop label

Recall that we are using a segment tree. We therefore lookup the location for the code offset by performing a range query for the largest number less than or equal to the code offset passed in.

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

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. 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.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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.