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
/*<LICENSE>
This file is part of Memthol.
Copyright (C) 2020 OCamlPro.
Memthol is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Memthol is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Memthol. If not, see <https://www.gnu.org/licenses/>.
*/
//! Provides a generic factory-like type to share labels and locations across allocations.
use std::{collections::HashMap as Map, sync::Arc};
prelude! {}
/// Convenience macro that creates a lazy-static-rw-locked memory and some accessors.
macro_rules! new {
(mod $mod:ident for $ty:ty, uid: $uid:ident) => {
mod $mod {
prelude! {}
/// Stores a UID, cannot be constructed outside of the module it's declared in.
#[derive(
Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize,
)]
pub struct $uid {
uid: usize,
}
impl $uid {
/// Mutable factory accessor.
pub fn factory_mut<'a>() -> AsWrite<'a> {
write()
}
/// Immutable factory accessor.
pub fn factory<'a>() -> AsRead<'a> {
read()
}
/// Retrieves the actual value.
pub fn get(self) -> Arc<$ty> {
Self::factory().get_elm(self)
}
/// Constructor.
pub fn new(elm: $ty) -> Self {
Self::factory_mut().get_uid(elm)
}
}
/// Type of the memory structure.
type Memory = $crate::mem::Memory<$ty>;
/// Read-lock over the factory.
pub struct AsRead<'a> {
mem: sync::RwLockReadGuard<'a, Memory>,
}
impl<'a> AsRead<'a> {
/// Accessor for a value in the factory.
pub fn get_elm(&self, uid: $uid) -> Arc<$ty> {
self.mem.get_elm(uid.uid)
}
}
/// Write-lock over the factory.
pub struct AsWrite<'a> {
mem: sync::RwLockWriteGuard<'a, Memory>,
}
impl<'a> AsWrite<'a> {
/// Creates/retrieves the UID of some value.
pub fn get_uid(&mut self, elm: $ty) -> $uid {
$uid {
uid: self.mem.get_uid(elm),
}
}
/// Accessor for a value in the factory.
pub fn get_elm(&self, uid: $uid) -> Arc<$ty> {
self.mem.get_elm(uid.uid)
}
}
$crate::prelude::lazy_static! {
/// Memory.
static ref MEM: sync::RwLock<Memory> = sync::RwLock::new(Memory::new());
}
/// Provides read-access to the memory.
///
/// Panics if the memory has been poisoned.
pub fn read<'a>() -> AsRead<'a> {
AsRead {
mem: MEM
.read()
.expect("fatal error: a data memory has been poisoned"),
}
}
/// Provides write-access to the memory.
///
/// Panics if the memory has been poisoned.
pub fn write<'a>() -> AsWrite<'a> {
AsWrite {
mem: MEM
.write()
.expect("fatal error: a data memory has been poisoned"),
}
}
}
};
}
pub mod labels;
pub mod str;
pub mod trace;
/// Factory for string, labels and trace creation.
pub struct Factory<'a> {
/// Write-access to the string factory.
str: str::AsWrite<'a>,
/// Write-access to the labels factory.
labels: labels::AsWrite<'a>,
/// Write-access to the trace factory.
trace: trace::AsWrite<'a>,
/// Indicates whether the callstacks are in reverse order.
///
/// If true, callstacks must be reversed when registering them.
callstack_is_rev: bool,
/// The empty list of labels.
empty_labels: Labels,
}
impl<'a> Factory<'a> {
/// Constructor.
pub fn new(callstack_is_rev: bool) -> Self {
let mut labels = Labels::factory_mut();
let empty_labels = labels.get_uid(Vec::new());
Self {
str: Str::factory_mut(),
labels,
trace: Trace::factory_mut(),
callstack_is_rev,
empty_labels,
}
}
/// Registers a string in the string factory.
#[inline]
pub fn register_str(&mut self, s: &str) -> Str {
self.str.get_uid(s)
}
/// Registers a label in the label factory.
#[inline]
pub fn register_labels(&mut self, labels: Vec<Str>) -> Labels {
self.labels.get_uid(labels)
}
/// The empty list of labels.
#[inline]
pub fn empty_labels(&self) -> Labels {
self.empty_labels.clone()
}
/// Registers a trace in the trace factory.
#[inline]
pub fn register_trace(&mut self, mut trace: Vec<CLoc>) -> Trace {
if self.callstack_is_rev {
trace.reverse()
}
self.trace.get_uid(trace)
}
}
/// A structure mapping some elements to UIDs and back.
///
/// This type is very biased towards a particular situation: new elements are very rare compared to
///
/// - insertion of already-known elements, and
/// - query over already-known elements.
pub struct Memory<Elm: ?Sized> {
/// Maps elements to their UID.
map: Map<Arc<Elm>, usize>,
/// Maps UIDs to elements.
vec: Vec<Arc<Elm>>,
}
impl<Elm: ?Sized + Ord> Memory<Elm> {
/// Constructor.
pub fn new() -> Self {
Self {
map: Map::new(),
vec: Vec::with_capacity(103),
}
}
/// Retrieves an element from its UID.
pub fn get_elm(&self, uid: usize) -> Arc<Elm> {
self.vec[uid].clone()
}
}
impl<Elm> Memory<Elm>
where
Elm: Ord + Sized + std::hash::Hash,
{
/// The UID associated to some element.
///
/// Generates a fresh one if none exists. Biased towards the case when the element is already
/// registered.
#[inline]
pub fn get_uid(&mut self, elm: Elm) -> usize {
if let Some(uid) = self.map.get(&elm) {
*uid
} else {
let uid = self.vec.len();
let elm = Arc::new(elm);
self.vec.push(elm);
let prev = self.map.insert(self.vec[uid].clone(), uid);
debug_assert_eq!(prev, None);
uid
}
}
}
impl Memory<[u8]> {
/// Retrieves the UID of a string slice.
fn get_uid(&mut self, s: &str) -> usize {
if let Some(uid) = self.map.get(s.as_bytes()) {
*uid
} else {
let uid = self.vec.len();
let elm = s.to_owned().into_boxed_str().into_boxed_bytes().into();
self.vec.push(elm);
let prev = self.map.insert(self.vec[uid].clone(), uid);
debug_assert_eq!(prev, None);
uid
}
}
}