1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
use std::{borrow::Cow, collections::VecDeque, ffi::c_void, fmt::Debug, io::BufRead, path::Path};
use serde::Serialize;
#[derive(Debug, Clone)]
pub struct FrameInfo {
/// Filename where the function call was made
pub filename: Option<std::path::PathBuf>,
/// Column number where the function call was made
pub colno: Option<u32>,
/// Line number where the function call was made
pub lineno: Option<u32>,
/// Address of the function
pub fn_address: Option<*mut c_void>,
/// Name of the function
pub fn_name: Option<String>,
}
#[derive(Debug)]
pub struct Allocation {
/// Allocation size
pub allocation_size: usize,
/// Deallocation size
pub deallocation_size: usize,
/// address of the allocation
pub address: usize,
/// Stack trace
pub stack: VecDeque<FrameInfo>,
}
#[derive(Debug)]
pub struct Stats {
/// Allocations
pub allocations: VecDeque<Allocation>,
/// Deallocations
pub deallocations: VecDeque<Allocation>,
}
impl Stats {
/// Transform the raw stats into a tree structure
pub fn into_tree(mut self) -> Result<Tree<Key>, Cow<'static, str>> {
let cwd = std::env::current_dir()
.map_err(|e| format!("failed to get current directory: {e:?}"))?;
let cwd = cwd.to_str().ok_or("current directory is not valid UTF-8")?;
let allocation = match self.allocations.pop_back() {
None => {
return Err("no allocations".into());
}
Some(allocation) => allocation,
};
let mut stack = allocation.stack;
let initial_key = loop {
let root = stack.pop_front();
let root = match root {
None => panic!(
"No simbols are found. Try to run again with debug symbols (like no release mode)"
),
Some(root) => root,
};
let key = TryInto::<Key>::try_into(root);
if let Ok(key) = key {
break key;
}
};
let mut tree = Tree {
category: guess_category(cwd, initial_key.filename.as_str()),
key: initial_key.clone(),
allocation: 0,
allocation_count: 0,
deallocation: 0,
deallocation_count: 0,
children: Vec::new(),
};
let mut pointer = &mut tree;
let stack_len = stack.len();
for (index, info) in stack.into_iter().enumerate() {
let is_last = stack_len == index + 1;
let key: Key = match info.try_into() {
Ok(key) => key,
Err(_) => continue,
};
let mut c = Tree {
category: guess_category(cwd, key.filename.as_str()),
key,
allocation: 0,
allocation_count: 0,
deallocation: 0,
deallocation_count: 0,
children: Vec::new(),
};
if is_last {
c.allocation += allocation.allocation_size;
c.allocation_count += 1;
c.deallocation += allocation.deallocation_size;
}
pointer.children.push(c);
pointer = pointer.children.last_mut().unwrap();
}
for allocation in self.allocations {
let mut pointer = &mut tree;
let stack_len = allocation.stack.len();
for (index, info) in allocation.stack.into_iter().enumerate() {
let is_last = stack_len == index + 1;
let key: Key = match info.try_into() {
Ok(key) => key,
Err(_) => continue,
};
let found = pointer.children.iter().position(|c| c.key == key);
pointer = if let Some(found) = found {
pointer.children.get_mut(found).unwrap()
} else {
let c = Tree {
category: guess_category(cwd, key.filename.as_str()),
key,
allocation: 0,
allocation_count: 0,
deallocation: 0,
deallocation_count: 0,
children: Vec::new(),
};
pointer.children.push(c);
pointer.children.last_mut().unwrap()
};
// Put the effort only on the last frame
if is_last {
pointer.allocation += allocation.allocation_size;
pointer.deallocation += allocation.deallocation_size;
pointer.allocation_count += 1;
}
}
}
for allocation in self.deallocations {
let mut pointer = &mut tree;
let stack_len = allocation.stack.len();
for (index, info) in allocation.stack.into_iter().enumerate() {
let is_last = stack_len == index + 1;
let key: Key = match info.try_into() {
Ok(key) => key,
Err(_) => continue,
};
let found = pointer.children.iter().position(|c| c.key == key);
pointer = if let Some(found) = found {
pointer.children.get_mut(found).unwrap()
} else {
let c = Tree {
category: guess_category(cwd, key.filename.as_str()),
key,
allocation: 0,
allocation_count: 0,
deallocation: 0,
deallocation_count: 0,
children: Vec::new(),
};
pointer.children.push(c);
pointer.children.last_mut().unwrap()
};
// Put the effort only on the last frame
if is_last {
pointer.allocation += allocation.allocation_size;
pointer.deallocation += allocation.deallocation_size;
pointer.deallocation_count += 1;
}
}
}
tree.update_value();
Ok(tree)
}
}
#[derive(Debug, PartialEq, Eq, Serialize, Clone)]
pub struct FileContent {
pub before: Vec<String>,
pub highlighted: String,
pub after: Vec<String>,
}
#[derive(Debug, PartialEq, Eq, Serialize, Clone)]
pub struct Key {
pub filename: String,
pub colno: u32,
pub lineno: u32,
#[serde(skip_serializing)]
pub fn_address: *mut c_void,
pub fn_name: String,
pub file_content: Option<FileContent>,
}
impl TryFrom<FrameInfo> for Key {
type Error = &'static str;
fn try_from(value: FrameInfo) -> Result<Self, Self::Error> {
let filename = value.filename.ok_or("filename is None")?;
let filename = filename.to_str().ok_or("filename is not valid UTF-8")?;
let filename = filename.to_string();
let colno = value.colno.ok_or("colno is None")?;
let lineno = value.lineno.ok_or("lineno is None")?;
let fn_address = value.fn_address.ok_or("fn_address is None")?;
let fn_name = value.fn_name.ok_or("fn_name is None")?;
let fn_name = rustc_demangle::demangle(&fn_name).to_string();
let delta = 5;
let range_min = if lineno > (delta + 1) {
lineno - delta - 1
} else {
0
};
let file_content = std::fs::File::open(&filename).ok().and_then(|file| {
let lines = std::io::BufReader::new(file).lines();
let mut lines: Vec<_> = lines
.enumerate()
.filter_map(|(i, line)| Some((i, line.ok()?)))
.skip_while(|(index, _)| *index < range_min as usize)
.take_while(|(index, _)| *index < lineno as usize + delta as usize)
.collect();
let highlighted_index = match lines.iter().position(|(i, _)| *i as u32 == lineno) {
Some(i) => i,
None => {
println!("not found");
return None;
}
};
let mut after = lines.split_off(highlighted_index - 1);
let highlighted = after.remove(0);
let before = lines;
Some(FileContent {
before: before.into_iter().map(|(_, line)| line).collect(),
highlighted: highlighted.1,
after: after.into_iter().map(|(_, line)| line).collect(),
})
});
Ok(Key {
filename,
colno,
lineno,
fn_address,
fn_name,
file_content,
})
}
}
#[derive(Debug, Serialize)]
#[cfg_attr(test, derive(PartialEq, Eq))]
/// Tree structure for the flamegraph
pub struct Tree<K: Debug + Serialize> {
pub key: K,
pub allocation: usize,
pub allocation_count: usize,
pub deallocation: usize,
pub deallocation_count: usize,
pub category: Category,
pub children: Vec<Tree<K>>,
}
impl<K: Debug + Serialize> Tree<K> {
/// Write an HTML file with the flamegraph at the given path
pub fn print_flamegraph<P>(&self, path: P)
where
P: AsRef<Path>,
{
let d = serde_json::to_string(&self).unwrap();
let html = include_str!("../template.html");
let html = html.replace("{ undefined }", &d);
std::fs::write(path, html).unwrap();
}
fn update_value(&mut self) {
let mut allocation = 0;
let mut allocation_count = 0;
let mut deallocation = 0;
let mut deallocation_count = 0;
for child in &mut self.children {
child.update_value();
allocation += child.allocation;
if child.allocation > 0 {
allocation_count += child.allocation_count;
}
deallocation += child.deallocation;
if child.deallocation > 0 {
deallocation_count += child.deallocation_count;
}
}
self.allocation += allocation;
self.allocation_count += allocation_count;
self.deallocation += deallocation;
self.deallocation_count += deallocation_count;
}
}
#[derive(Debug, Serialize)]
#[cfg_attr(test, derive(PartialEq, Eq))]
#[serde(rename_all = "lowercase")]
/// Category of the allocation
/// - `rustc`: Rust compiler
/// - `ruststdlib`: Rust standard library
/// - `deps`: Dependencies
/// - `application`: Application code
/// - `unknown`: Unknown code
///
/// The category is determined by the path of the file.
pub enum Category {
RustStdLib,
RustC,
Deps,
Application,
Unknown,
}
fn guess_category(cwd: &str, filename: &str) -> Category {
if filename.contains("/rustc/") {
Category::RustC
} else if filename.contains("/rustlib/") {
Category::RustStdLib
} else if filename.contains("cargo/registry/src") {
Category::Deps
} else if filename.starts_with(cwd) {
Category::Application
} else {
Category::Unknown
}
}
#[cfg(test)]
mod test {
use pretty_assertions::assert_eq;
use super::*;
#[test]
fn test_tree_value_1() {
let stats = Stats {
deallocations: VecDeque::new(),
allocations: VecDeque::from([Allocation {
allocation_size: 1024,
deallocation_size: 0,
address: 0,
stack: VecDeque::from([
FrameInfo {
filename: Some("foo.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo".into()),
},
FrameInfo {
filename: Some("foo2.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo2".into()),
},
FrameInfo {
filename: Some("foo3.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo3".into()),
},
]),
}]),
};
let tree = stats.into_tree().unwrap();
assert_eq!(
tree,
Tree {
key: Key {
filename: "foo.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo".to_string(),
file_content: None,
},
allocation: 1024,
allocation_count: 1,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo2.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo2".to_string(),
file_content: None,
},
allocation: 1024,
allocation_count: 1,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo3.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo3".to_string(),
file_content: None,
},
allocation: 1024,
allocation_count: 1,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![],
}],
}],
}
);
}
#[test]
fn test_tree_value_2() {
let stats = Stats {
deallocations: VecDeque::new(),
allocations: VecDeque::from([
Allocation {
allocation_size: 1024,
deallocation_size: 0,
address: 0,
stack: VecDeque::from([
FrameInfo {
filename: Some("foo.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo".into()),
},
FrameInfo {
filename: Some("foo2.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo2".into()),
},
FrameInfo {
filename: Some("foo3.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo3".into()),
},
]),
},
Allocation {
allocation_size: 1024,
deallocation_size: 0,
address: 0,
stack: VecDeque::from([
FrameInfo {
filename: Some("foo.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo".into()),
},
FrameInfo {
filename: Some("foo2.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo2".into()),
},
FrameInfo {
filename: Some("foo3.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo3".into()),
},
]),
},
]),
};
let tree = stats.into_tree().unwrap();
assert_eq!(
tree,
Tree {
key: Key {
filename: "foo.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo2.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo2".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo3.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo3".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![],
}],
}],
}
);
}
#[test]
fn test_tree_value_3() {
let stats = Stats {
deallocations: VecDeque::new(),
allocations: VecDeque::from([
Allocation {
allocation_size: 1024,
deallocation_size: 0,
address: 0,
stack: VecDeque::from([
FrameInfo {
filename: Some("foo.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo".into()),
},
FrameInfo {
filename: Some("foo2.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo2".into()),
},
FrameInfo {
filename: Some("foo3.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo3".into()),
},
]),
},
Allocation {
allocation_size: 1024,
deallocation_size: 0,
address: 0,
stack: VecDeque::from([
FrameInfo {
filename: Some("foo.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo".into()),
},
FrameInfo {
filename: Some("foo2.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo2".into()),
},
FrameInfo {
filename: Some("foo3.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo3".into()),
},
FrameInfo {
filename: Some("foo4.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo4".into()),
},
]),
},
]),
};
let tree = stats.into_tree().unwrap();
assert_eq!(
tree,
Tree {
key: Key {
filename: "foo.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo2.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo2".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo3.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo3".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo4.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo4".to_string(),
file_content: None,
},
allocation: 1024,
allocation_count: 1,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![],
}],
}],
}],
}
);
}
#[test]
fn test_tree_value_4() {
let stats = Stats {
deallocations: VecDeque::new(),
allocations: VecDeque::from([
Allocation {
allocation_size: 1024,
deallocation_size: 0,
address: 0,
stack: VecDeque::from([
FrameInfo {
filename: Some("foo.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo".into()),
},
FrameInfo {
filename: Some("foo2.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo2".into()),
},
FrameInfo {
filename: Some("foo3.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo3".into()),
},
]),
},
Allocation {
allocation_size: 1024,
deallocation_size: 0,
address: 0,
stack: VecDeque::from([
FrameInfo {
filename: Some("foo.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo".into()),
},
FrameInfo {
filename: Some("foo2.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo2".into()),
},
FrameInfo {
filename: Some("foo4.rs".into()),
colno: Some(1),
lineno: Some(1),
fn_address: Some(std::ptr::null_mut()),
fn_name: Some("foo4".into()),
},
]),
},
]),
};
let tree = stats.into_tree().unwrap();
assert_eq!(
tree,
Tree {
key: Key {
filename: "foo.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![Tree {
key: Key {
filename: "foo2.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo2".to_string(),
file_content: None,
},
allocation: 1024 * 2,
allocation_count: 2,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![
Tree {
key: Key {
filename: "foo4.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo4".to_string(),
file_content: None,
},
allocation: 1024,
allocation_count: 1,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![],
},
Tree {
key: Key {
filename: "foo3.rs".to_string(),
colno: 1,
lineno: 1,
fn_address: std::ptr::null_mut(),
fn_name: "foo3".to_string(),
file_content: None,
},
allocation: 1024,
allocation_count: 1,
deallocation: 0,
deallocation_count: 0,
category: Category::Unknown,
children: vec![],
}
],
}],
}
);
}
}