runtime: fix more bugs in DMA trace encoder.

This commit is contained in:
whitequark 2017-03-03 05:15:54 +00:00
parent 86dea869b3
commit 3070a2fac1
1 changed files with 7 additions and 1 deletions

View File

@ -51,13 +51,19 @@ impl Manager {
(address >> 8) as u8,
]).unwrap();
for &word in data {
writer.write_u32(word).unwrap();
writer.write_all(&[
(word >> 0) as u8,
(word >> 8) as u8,
(word >> 16) as u8,
(word >> 24) as u8,
]).unwrap();
}
}
pub fn record_stop(&mut self, name: &str) {
let mut recorded = Vec::new();
mem::swap(&mut self.recording, &mut recorded);
recorded.push(0);
recorded.shrink_to_fit();
info!("recorded DMA data: {:?}", recorded);