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
sourceimpl FunctionSourceMap
impl FunctionSourceMap
pub fn new(definition_location: Loc, is_native: bool) -> Self
pub fn add_type_parameter(&mut self, type_name: SourceName)
pub fn get_type_parameter_name(
&self,
type_parameter_idx: usize
) -> Option<SourceName>
sourcepub fn add_code_mapping(&mut self, start_offset: CodeOffset, location: Loc)
pub fn add_code_mapping(&mut self, start_offset: CodeOffset, location: Loc)
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.
sourcepub fn add_nop_mapping(&mut self, label: NopLabel, offset: CodeOffset)
pub fn add_nop_mapping(&mut self, label: NopLabel, offset: CodeOffset)
Record the code offset for an Nop label
pub fn add_local_mapping(&mut self, name: SourceName)
pub fn add_parameter_mapping(&mut self, name: SourceName)
sourcepub fn get_code_location(&self, code_offset: CodeOffset) -> Option<Loc>
pub fn get_code_location(&self, code_offset: CodeOffset) -> Option<Loc>
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.
pub fn get_parameter_or_local_name(&self, idx: u64) -> Option<SourceName>
pub fn make_local_name_to_index_map(&self) -> BTreeMap<&String, LocalIndex>
pub fn dummy_function_map(
&mut self,
view: &BinaryIndexedView<'_>,
type_parameters: &[AbilitySet],
parameters: SignatureIndex,
code: Option<CodeUnit>,
default_loc: Loc
) -> Result<()>
Trait Implementations
sourceimpl Clone for FunctionSourceMap
impl Clone for FunctionSourceMap
sourcefn clone(&self) -> FunctionSourceMap
fn clone(&self) -> FunctionSourceMap
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FunctionSourceMap
impl Debug for FunctionSourceMap
sourceimpl<'de> Deserialize<'de> for FunctionSourceMap
impl<'de> Deserialize<'de> for FunctionSourceMap
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for FunctionSourceMap
impl Serialize for FunctionSourceMap
Auto Trait Implementations
impl RefUnwindSafe for FunctionSourceMap
impl Send for FunctionSourceMap
impl Sync for FunctionSourceMap
impl Unpin for FunctionSourceMap
impl UnwindSafe for FunctionSourceMap
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more