Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[easy] fix name clobbering #12790

Merged
merged 1 commit into from
Jul 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 23 additions & 19 deletions external-crates/move/move-vm/profiler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ pub struct GasProfiler {

#[cfg(debug_assertions)]
impl GasProfiler {
// Used by profiler viz tool
const OPEN_FRAME_IDENT: &str = "O";
const CLOSE_FRAME_IDENT: &str = "C";

const TOP_LEVEL_FRAME_NAME: &str = "root";

pub fn init(config: &VMProfilerConfig, name: String, start_gas: u64) -> Self {
let mut prof = GasProfiler {
exporter: "speedscope@1.15.2".to_string(),
Expand All @@ -99,7 +105,11 @@ impl GasProfiler {
config: config.clone(),
finished: false,
};
profile_open_frame_impl!(Some(&mut prof), "root".to_string(), start_gas);
profile_open_frame_impl!(
Some(&mut prof),
Self::TOP_LEVEL_FRAME_NAME.to_string(),
start_gas
);
prof
}

Expand All @@ -123,15 +133,20 @@ impl GasProfiler {
self.start_gas
}

fn add_frame(&mut self, frame_name: String, metadata: String) -> u64 {
fn add_frame(
&mut self,
frame_name: String,
frame_display_name: String,
metadata: String,
) -> u64 {
*self
.shared
.frame_table
.entry(frame_name.clone())
.or_insert({
let val = self.shared.frames.len() as u64;
self.shared.frames.push(FrameName {
name: frame_name,
name: frame_display_name,
file: metadata,
});
val as usize
Expand All @@ -143,11 +158,11 @@ impl GasProfiler {
return;
}

let frame_idx = self.add_frame(frame_name.clone(), metadata);
let frame_idx = self.add_frame(metadata.clone(), frame_name.clone(), metadata);
let start = self.start_gas();

self.profiles[0].events.push(Event {
ty: "O".to_string(),
ty: Self::OPEN_FRAME_IDENT.to_string(),
frame: frame_idx,
at: start - gas_start,
});
Expand All @@ -157,11 +172,11 @@ impl GasProfiler {
if !*PROFILER_ENABLED || self.start_gas == 0 {
return;
}
let frame_idx = self.add_frame(frame_name, metadata);
let frame_idx = self.add_frame(metadata.clone(), frame_name, metadata);
let start = self.start_gas();

self.profiles[0].events.push(Event {
ty: "C".to_string(),
ty: Self::CLOSE_FRAME_IDENT.to_string(),
frame: frame_idx,
at: start - gas_end,
});
Expand Down Expand Up @@ -195,7 +210,7 @@ impl GasProfiler {
self.finished = true;
let end_gas = self.start_gas() - self.profiles[0].end_value;
let mut q = Some(self);
profile_close_frame_impl!(&mut q, "root".to_string(), end_gas);
profile_close_frame_impl!(&mut q, Self::TOP_LEVEL_FRAME_NAME.to_string(), end_gas);
profile_dump_file!(q.unwrap());
}
}
Expand All @@ -204,17 +219,6 @@ impl GasProfiler {
impl Drop for GasProfiler {
fn drop(&mut self) {
self.finish();
let GasProfiler {
exporter: _,
name: _,
active_profile_index: _,
schema: _,
shared: _,
profiles: _,
start_gas: _,
config: _,
finished: _,
} = self;
}
}

Expand Down