Struct move_bytecode_source_map::source_map::SourceMap
source · [−]pub struct SourceMap {
pub definition_location: Loc,
pub module_name_opt: Option<(AccountAddress, Identifier)>,
pub constant_map: BTreeMap<ConstantName, TableIndex>,
/* private fields */
}
Fields
definition_location: Loc
The source location for the definition of the module or script that this source map is for.
module_name_opt: Option<(AccountAddress, Identifier)>
The name <address.module_name> of the module that this source map is for.
None
if this source map corresponds to a script.
constant_map: BTreeMap<ConstantName, TableIndex>
Implementations
sourceimpl SourceMap
impl SourceMap
pub fn new(
definition_location: Loc,
module_name_opt: Option<ModuleIdent>
) -> Self
pub fn check(&self, file_contents: &str) -> bool
pub fn add_top_level_function_mapping(
&mut self,
fdef_idx: FunctionDefinitionIndex,
location: Loc,
is_native: bool
) -> Result<()>
pub fn add_function_type_parameter_mapping(
&mut self,
fdef_idx: FunctionDefinitionIndex,
name: SourceName
) -> Result<()>
pub fn get_function_type_parameter_name(
&self,
fdef_idx: FunctionDefinitionIndex,
type_parameter_idx: usize
) -> Result<SourceName>
pub fn add_code_mapping(
&mut self,
fdef_idx: FunctionDefinitionIndex,
start_offset: CodeOffset,
location: Loc
) -> Result<()>
pub fn add_nop_mapping(
&mut self,
fdef_idx: FunctionDefinitionIndex,
label: NopLabel,
start_offset: CodeOffset
) -> Result<()>
sourcepub fn get_code_location(
&self,
fdef_idx: FunctionDefinitionIndex,
offset: CodeOffset
) -> Result<Loc>
pub fn get_code_location(
&self,
fdef_idx: FunctionDefinitionIndex,
offset: CodeOffset
) -> Result<Loc>
Given a function definition and a code offset within that function definition, this returns the location in the source code associated with the instruction at that offset.
pub fn add_local_mapping(
&mut self,
fdef_idx: FunctionDefinitionIndex,
name: SourceName
) -> Result<()>
pub fn add_parameter_mapping(
&mut self,
fdef_idx: FunctionDefinitionIndex,
name: SourceName
) -> Result<()>
pub fn get_parameter_or_local_name(
&self,
fdef_idx: FunctionDefinitionIndex,
index: u64
) -> Result<SourceName>
pub fn add_top_level_struct_mapping(
&mut self,
struct_def_idx: StructDefinitionIndex,
location: Loc
) -> Result<()>
pub fn add_const_mapping(
&mut self,
const_idx: ConstantPoolIndex,
name: ConstantName
) -> Result<()>
pub fn add_struct_field_mapping(
&mut self,
struct_def_idx: StructDefinitionIndex,
location: Loc
) -> Result<()>
pub fn get_struct_field_name(
&self,
struct_def_idx: StructDefinitionIndex,
field_idx: MemberCount
) -> Option<Loc>
pub fn add_struct_type_parameter_mapping(
&mut self,
struct_def_idx: StructDefinitionIndex,
name: SourceName
) -> Result<()>
pub fn get_struct_type_parameter_name(
&self,
struct_def_idx: StructDefinitionIndex,
type_parameter_idx: usize
) -> Result<SourceName>
pub fn get_function_source_map(
&self,
fdef_idx: FunctionDefinitionIndex
) -> Result<&FunctionSourceMap>
pub fn get_struct_source_map(
&self,
struct_def_idx: StructDefinitionIndex
) -> Result<&StructSourceMap>
sourcepub fn dummy_from_view(
view: &BinaryIndexedView<'_>,
default_loc: Loc
) -> Result<Self>
pub fn dummy_from_view(
view: &BinaryIndexedView<'_>,
default_loc: Loc
) -> Result<Self>
Create a ‘dummy’ source map for a compiled module or script. This is useful for e.g. disassembling with generated or real names depending upon if the source map is available or not.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for SourceMap
impl<'de> Deserialize<'de> for SourceMap
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
Auto Trait Implementations
impl RefUnwindSafe for SourceMap
impl Send for SourceMap
impl Sync for SourceMap
impl Unpin for SourceMap
impl UnwindSafe for SourceMap
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