-
Notifications
You must be signed in to change notification settings - Fork 717
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added time_phases builder parameter create timers for BindgenContex analyses, codegen time parse added docstrings added fitzgens suggestions
- Loading branch information
Showing
5 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
use std::io::{self, Write}; | ||
use std::time::{Instant, Duration}; | ||
|
||
|
||
/// RAII timer to measure how long phases take. | ||
#[derive(Debug)] | ||
pub struct Timer<'a> { | ||
output: bool, | ||
name: &'a str, | ||
start: Instant, | ||
} | ||
|
||
|
||
impl<'a> Timer<'a> { | ||
/// Creates a Timer with the given name, and starts it. By default, | ||
/// will print to stderr when it is `drop`'d | ||
pub fn new(name: &'a str) -> Self { | ||
Timer { | ||
output: true, | ||
name, | ||
start: Instant::now() | ||
} | ||
} | ||
|
||
/// Sets whether or not the Timer will print a mesage | ||
/// when it is dropped. | ||
pub fn with_output(mut self, output: bool) -> Self { | ||
self.output = output; | ||
self | ||
} | ||
|
||
/// Returns the time elapsed since the timer's creation | ||
pub fn elapsed(&self) -> Duration { | ||
Instant::now() - self.start | ||
} | ||
|
||
fn print_elapsed(&mut self) { | ||
if self.output { | ||
let elapsed = self.elapsed(); | ||
let time = (elapsed.as_secs() as f32) | ||
+ (elapsed.subsec_nanos() as f32) / 1e9; | ||
let stderr = io::stderr(); | ||
// Arbitrary output format, subject to change. | ||
writeln!(stderr.lock(), | ||
" time: {:.3} ms.\t{}", | ||
time, self.name) | ||
.expect("timer write should not fail"); | ||
} | ||
} | ||
} | ||
|
||
|
||
impl<'a> Drop for Timer<'a> { | ||
fn drop(&mut self) { | ||
self.print_elapsed(); | ||
} | ||
} |