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
//! Faerie trap manifests record every `TrapCode` that cranelift outputs during code generation,
//! for every function in the module. This data may be useful at runtime.

use cranelift_codegen::{binemit, ir};

/// Record of the arguments cranelift passes to `TrapSink::trap`
pub struct FaerieTrapSite {
    /// Offset into function
    pub offset: binemit::CodeOffset,
    /// Source location given to cranelift
    pub srcloc: ir::SourceLoc,
    /// Trap code, as determined by cranelift
    pub code: ir::TrapCode,
}

/// Record of the trap sites for a given function
pub struct FaerieTrapSink {
    /// Name of function
    pub name: String,
    /// Total code size of function
    pub code_size: u32,
    /// All trap sites collected in function
    pub sites: Vec<FaerieTrapSite>,
}

impl FaerieTrapSink {
    /// Create an empty `FaerieTrapSink`
    pub fn new(name: &str, code_size: u32) -> Self {
        Self {
            sites: Vec::new(),
            name: name.to_owned(),
            code_size,
        }
    }
}

impl binemit::TrapSink for FaerieTrapSink {
    fn trap(&mut self, offset: binemit::CodeOffset, srcloc: ir::SourceLoc, code: ir::TrapCode) {
        self.sites.push(FaerieTrapSite {
            offset,
            srcloc,
            code,
        });
    }
}

/// Collection of all `FaerieTrapSink`s for the module
pub struct FaerieTrapManifest {
    /// All `FaerieTrapSink` for the module
    pub sinks: Vec<FaerieTrapSink>,
}

impl FaerieTrapManifest {
    /// Create an empty `FaerieTrapManifest`
    pub fn new() -> Self {
        Self { sinks: Vec::new() }
    }

    /// Put a `FaerieTrapSink` into manifest
    pub fn add_sink(&mut self, sink: FaerieTrapSink) {
        self.sinks.push(sink);
    }
}