diff options
author | 2017-03-08 21:42:28 -0500 | |
---|---|---|
committer | 2017-03-08 21:42:28 -0500 | |
commit | eb247936ddd3603038fc4668b062908e1df4f1fc (patch) | |
tree | 5a271ca18d6ae8008a630727ba9e27acfe55e785 /src | |
parent | 50d19895633a8d4311549b214b8f5ae9f9d33236 (diff) | |
download | cortex-m-eb247936ddd3603038fc4668b062908e1df4f1fc.tar.gz cortex-m-eb247936ddd3603038fc4668b062908e1df4f1fc.tar.zst cortex-m-eb247936ddd3603038fc4668b062908e1df4f1fc.zip |
improve throughput of ITM functions
Diffstat (limited to 'src')
-rw-r--r-- | src/itm.rs | 69 |
1 files changed, 56 insertions, 13 deletions
@@ -1,30 +1,73 @@ //! Instrumentation Trace Macrocell -use core::fmt; +use core::{fmt, ptr, slice}; +use peripheral::Stim; -struct Itm { - port: u8, +fn round_up_to_multiple_of(x: usize, k: usize) -> usize { + let rem = x % k; + + if rem == 0 { x } else { x + k - rem } +} + +fn round_down_to_multiple_of(x: usize, k: usize) -> usize { + x - (x % k) } -impl Itm { - fn write_all(&self, buffer: &[u8]) { - let stim = - unsafe { &(*::peripheral::ITM.get()).stim[self.port as usize] }; +unsafe fn split(buffer: &[u8]) -> (&[u8], &[u32], &[u8]) { + let start = buffer.as_ptr(); + let end = start.offset(buffer.len() as isize); + let sbody = round_up_to_multiple_of(start as usize, 4); + let ebody = round_down_to_multiple_of(end as usize, 4); - for byte in buffer { - while !stim.is_fifo_ready() {} - stim.write_u8(*byte); - } + let head = slice::from_raw_parts(start, sbody - start as usize); + let body = slice::from_raw_parts(sbody as *const _, (ebody - sbody) >> 2); + let tail = slice::from_raw_parts(ebody as *const _, end as usize - ebody); + + (head, body, tail) +} + +fn write_bytes(stim: &Stim, bytes: &[u8]) { + for byte in bytes { + while !stim.is_fifo_ready() {} + stim.write_u8(*byte); } } +// NOTE assumes that `bytes` is 32-bit aligned +unsafe fn write_words(stim: &Stim, bytes: &[u32]) { + let mut p = bytes.as_ptr(); + for _ in 0..bytes.len() { + while !stim.is_fifo_ready() {} + stim.write_u32(ptr::read(p)); + p = p.offset(1); + } +} + +struct Itm { + port: u8, +} + impl fmt::Write for Itm { fn write_str(&mut self, s: &str) -> fmt::Result { - self.write_all(s.as_bytes()); + write_all(self.port, s.as_bytes()); Ok(()) } } +/// Writes a `buffer` to the ITM `port` +pub fn write_all(port: u8, buffer: &[u8]) { + let stim = unsafe { &(*::peripheral::ITM.get()).stim[port as usize] }; + + if buffer.len() < 7 { + write_bytes(stim, buffer); + } else { + let (head, body, tail) = unsafe { split(buffer) }; + write_bytes(stim, head); + unsafe { write_words(stim, body) } + write_bytes(stim, tail); + } +} + /// Writes `fmt::Arguments` to the ITM `port` pub fn write_fmt(port: u8, args: fmt::Arguments) { use core::fmt::Write; @@ -34,5 +77,5 @@ pub fn write_fmt(port: u8, args: fmt::Arguments) { /// Writes a string to the ITM `port` pub fn write_str(port: u8, string: &str) { - Itm { port }.write_all(string.as_bytes()) + write_all(port, string.as_bytes()) } |