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
//! Memory handling for the LC-3 simulator.
//!
//! This module consists of:
//! - [`Word`]: A mutable memory location.
//! - [`Mem`]: The memory.
//! - [`RegFile`]: The register file.
use rand::rngs::StdRng;
use rand::{Rng, SeedableRng};
use crate::ast::Reg;
use super::{IODevice, SimErr, SimIO};
/// A memory location that can be read and written to.
///
/// # Reading
///
/// A word's value can be read with [`Word::get`]
/// to return its representation as an unsigned integer.
///
/// This can be converted to a signed integer with typical `as` casting (`data as i16`).
///
/// # Writing
///
/// A word can be written into with a value or with another word.
/// - [`Word::set`] to read a value into this word
/// - [`Word::copy_word`] to read a word into this word
///
/// [`Word::copy_word`] may be more useful in situations where initialization state may want to be preserved.
/// See the respective functions for more details.
///
/// Words can also be written to by applying assign operations (e.g., add, sub, and, etc.).
/// All arithmetic operations that can be applied to words are assumed to be wrapping.
/// See those implementations for more details.
///
/// # Initialization
///
/// Internally, each memory location keeps track of two fields:
/// 1. its data (i.e., the value stored at this location)
/// 2. which bits of its data are truly "initialized" (as in the program knows what values are present there)
///
/// This second field is not used except for when the simulator is set to strict mode.
/// Then, this second field is leveraged to detect if uninitialized memory is being
/// written to places it shouldn't be (e.g., PC, addresses, registers and memory).
///
/// When a `Word` is created for memory/register files (i.e., via [`Word::new_uninit`]),
/// it is created with the initialization bits set to fully uninitialized.
/// The data associated with this `Word` is decided by the creation strategy
/// (see [`WordCreateStrategy`] for details).
#[derive(Debug, Clone, Copy)]
pub struct Word {
data: u16,
init: u16
}
const NO_BITS: u16 = 0;
const ALL_BITS: u16 = 1u16.wrapping_neg();
/// Strategies to create a new uninitialized Word.
///
/// This is used as a parameter in [`Word::new_uninit`] to describe how a newly uninitialized `Word` is created.
#[derive(Debug, Default)]
pub enum WordCreateStrategy {
/// Initializes each word randomly and non-deterministically.
#[default]
Unseeded,
/// Initializes each word randomly and deterministically.
///
/// This can be created readily with [`WordCreateStrategy::seeded`].
Seeded {
/// The seed the RNG was initialized with.
seed: u64,
/// The RNG.
rand: Box<StdRng>
},
/// Initializes each word to a known value.
Known(u16)
}
impl WordCreateStrategy {
/// Creates a word creation strategy that relies on a deterministic, seeded random number generator.
///
/// The produced words from this strategy should be consistent as long as the version of `rand` stays consistent.
pub fn seeded(seed: u64) -> Self {
WordCreateStrategy::Seeded {
seed,
rand: Box::new(StdRng::seed_from_u64(seed)),
}
}
fn generate(&mut self) -> u16 {
match self {
WordCreateStrategy::Unseeded => rand::random(),
WordCreateStrategy::Seeded { rand, .. } => rand.gen(),
WordCreateStrategy::Known(k) => *k,
}
}
/// Resets the state of this word creation strategy.
pub fn reset(&mut self) {
match self {
WordCreateStrategy::Unseeded => { /* nothing */ },
WordCreateStrategy::Seeded { seed, rand } => **rand = StdRng::seed_from_u64(*seed),
WordCreateStrategy::Known(_) => { /* nothing */ },
}
}
}
impl Word {
/// Creates a new word that is considered uninitialized.
pub fn new_uninit(strat: &mut WordCreateStrategy) -> Self {
Self {
data: strat.generate(),
init: NO_BITS,
}
}
/// Creates a new word that is initialized with a given data value.
pub fn new_init(data: u16) -> Self {
Self {
data,
init: ALL_BITS,
}
}
/// Reads the word, returning its unsigned representation.
pub fn get(&self) -> u16 {
self.data
}
/// Checks that a word is fully initialized
pub fn is_init(&self) -> bool {
self.init == ALL_BITS
}
/// Clears initialization of this word.
pub fn clear_init(&mut self) {
self.init = NO_BITS;
}
/// Writes to the word.
///
/// The data provided is assumed to be FULLY initialized,
/// and will set the initialization state of this word to be
/// fully initialized.
///
/// If the data is not fully initialized (e.g., if it is a partially initialized word),
/// [`Word::copy_word`] can be used instead.
pub fn set(&mut self, data: u16) {
self.data = data;
self.init = ALL_BITS;
}
/// Copies the data from one word into another.
///
/// This function is more cognizant of word initialization than [`Word::set`].
/// - In non-strict mode, this function preserves the initialization data of the given word.
/// - In strict mode, this function verifies the word copied is fully initialized, raising the provided error if not.
pub fn copy_word(&mut self, word: Word, strict: bool, err: SimErr) -> Result<(), SimErr> {
match !strict || word.is_init() {
true => {
*self = word;
Ok(())
},
false => Err(err)
}
}
}
impl From<u16> for Word {
/// Creates a fully initialized word.
fn from(value: u16) -> Self {
Word::new_init(value)
}
}
impl From<i16> for Word {
/// Creates a fully initialized word.
fn from(value: i16) -> Self {
Word::new_init(value as u16)
}
}
impl std::ops::Not for Word {
type Output = Word;
/// Inverts the data on this word, preserving any initialization state.
fn not(self) -> Self::Output {
// Initialization state should stay the same after this.
let Self { data, init } = self;
Self { data: !data, init }
}
}
impl std::ops::Add for Word {
type Output = Word;
/// Adds two words together (wrapping if overflow occurs).
///
/// If the two words are fully initialized,
/// the resulting word will also be fully initialized.
/// Otherwise, the resulting word is fully uninitialized.
fn add(self, rhs: Self) -> Self::Output {
let Self { data: ldata, init: linit } = self;
let Self { data: rdata, init: rinit } = rhs;
if rdata == 0 && rinit == ALL_BITS { return self; }
if ldata == 0 && linit == ALL_BITS { return rhs; }
let data = ldata.wrapping_add(rdata);
// Close enough calculation:
// If both are fully init, consider this word fully init.
// Otherwise, consider it fully uninit.
let init = match linit == ALL_BITS && rinit == ALL_BITS {
true => ALL_BITS,
false => NO_BITS,
};
Self { data, init }
}
}
impl std::ops::AddAssign for Word {
fn add_assign(&mut self, rhs: Self) {
*self = *self + rhs;
}
}
impl std::ops::AddAssign<u16> for Word {
/// Increments the word by the provided value.
///
/// If the word was fully initialized,
/// its updated value is also fully initialized.
/// Otherwise, the resulting word is fully uninitialized.
fn add_assign(&mut self, rhs: u16) {
*self = *self + Word::from(rhs);
}
}
impl std::ops::AddAssign<i16> for Word {
/// Increments the word by the provided value.
///
/// If the word was fully initialized,
/// its updated value is also fully initialized.
/// Otherwise, the resulting word is fully uninitialized.
fn add_assign(&mut self, rhs: i16) {
*self = *self + Word::from(rhs);
}
}
impl std::ops::Sub for Word {
type Output = Word;
/// Subtracts two words together (wrapping if overflow occurs).
///
/// If the two words are fully initialized,
/// the resulting word will also be fully initialized.
/// Otherwise, the resulting word is fully uninitialized.
fn sub(self, rhs: Self) -> Self::Output {
let Self { data: ldata, init: linit } = self;
let Self { data: rdata, init: rinit } = rhs;
// This is (self - 0) == self.
if rdata == 0 && rinit == ALL_BITS { return self; }
let data = ldata.wrapping_sub(rdata);
// Very lazy initialization scheme.
// If both are fully init, consider this word fully init.
// Otherwise, consider it fully uninit.
let init = match linit == ALL_BITS && rinit == ALL_BITS {
true => ALL_BITS,
false => NO_BITS,
};
Self { data, init }
}
}
impl std::ops::SubAssign for Word {
fn sub_assign(&mut self, rhs: Self) {
*self = *self - rhs;
}
}
impl std::ops::SubAssign<u16> for Word {
/// Decrements the word by the provided value.
///
/// If the word was fully initialized,
/// its updated value is also fully initialized.
/// Otherwise, the resulting word is fully uninitialized.
fn sub_assign(&mut self, rhs: u16) {
*self = *self - Word::new_init(rhs);
}
}
impl std::ops::SubAssign<i16> for Word {
/// Decrements the word by the provided value.
///
/// If the word was fully initialized,
/// its updated value is also fully initialized.
/// Otherwise, the resulting word is fully uninitialized.
fn sub_assign(&mut self, rhs: i16) {
*self = *self - Word::new_init(rhs as _);
}
}
impl std::ops::BitAnd for Word {
type Output = Word;
/// Applies a bitwise AND across two words.
///
/// This will also compute the correct initialization
/// for the resulting word, taking into account bit clearing.
fn bitand(self, rhs: Self) -> Self::Output {
let Self { data: ldata, init: linit } = self;
let Self { data: rdata, init: rinit } = rhs;
let data = ldata & rdata;
// A given bit of the result is init if:
// - both the lhs and rhs bits are init
// - either of the bits are data: 0, init: 1
let init = (linit & rinit) | (!ldata & linit) | (!rdata & rinit);
Self { data, init }
}
}
impl std::ops::BitAndAssign for Word {
fn bitand_assign(&mut self, rhs: Self) {
*self = *self & rhs;
}
}
pub(crate) trait AssertInit: Sized {
fn is_initialized(&self) -> bool;
fn assert_init<E>(self, strict: bool, err: E) -> Result<Self, E> {
match !strict || self.is_initialized() {
true => Ok(self),
false => Err(err),
}
}
}
impl AssertInit for &Word {
fn is_initialized(&self) -> bool {
self.is_init()
}
}
impl AssertInit for &mut Word {
fn is_initialized(&self) -> bool {
self.is_init()
}
}
impl AssertInit for Word {
fn is_initialized(&self) -> bool {
self.is_init()
}
}
/// Context behind a memory access.
///
/// This struct is used by [`Mem::read`] and [`Mem::write`] to perform checks against memory accesses.
/// A default memory access context for the given simulator can be constructed with [`super::Simulator::default_mem_ctx`].
#[derive(Clone, Copy)]
pub struct MemAccessCtx {
/// Whether this access is privileged (false = user, true = supervisor).
pub privileged: bool,
/// Whether writes to memory should follow strict rules
/// (no writing partially or fully uninitialized data).
///
/// This does not affect [`Mem::read`].
pub strict: bool
}
const N: usize = 1 << 16;
const IO_START: u16 = 0xFE00;
const USER_RANGE: std::ops::Range<u16> = 0x3000..0xFE00;
/// Memory. This can be addressed with any `u16`.
#[derive(Debug)]
pub struct Mem {
pub(super) data: Box<[Word; N]>,
pub(super) io: SimIO
}
impl Mem {
/// Creates a new memory with a provided word creation strategy.
pub fn new(strat: &mut WordCreateStrategy) -> Self {
Self {
data: std::iter::repeat_with(|| Word::new_uninit(strat))
.take(N)
.collect::<Box<_>>()
.try_into()
.unwrap_or_else(|_| unreachable!("iterator should have had {N} elements")),
io: SimIO::Empty
}
}
/// Copies an object file block into this memory.
pub fn copy_obj_block(&mut self, mut start: u16, data: &[Option<u16>]) {
let mem = &mut self.data;
// separate data into chunks of initialized/uninitialized
for chunk in data.chunk_by(|a, b| a.is_some() == b.is_some()) {
let end = start.wrapping_add(chunk.len() as u16);
let si = usize::from(start);
let ei = usize::from(end);
let block_is_contiguous = start <= end;
if chunk[0].is_some() { // if chunk is init, copy the data over
let ch: Vec<_> = chunk.iter()
.map(|&opt| opt.unwrap())
.map(Word::new_init)
.collect();
if block_is_contiguous {
mem[si..ei].copy_from_slice(&ch);
} else {
let (left, right) = ch.split_at(start.wrapping_neg() as usize);
mem[si..].copy_from_slice(left);
mem[..ei].copy_from_slice(right)
}
} else { // if chunk is uninit, clear the initialization state
if block_is_contiguous {
for word in &mut mem[si..ei] {
word.clear_init();
}
} else {
for word in &mut mem[si..] {
word.clear_init();
}
for word in &mut mem[..ei] {
word.clear_init();
}
}
}
start = end;
}
}
/// Gets a reference to a word from the memory's current state.
///
/// This is **only** meant to be used to query the state of the memory,
/// not to simulate a read from memory.
///
/// Note the differences from [`Mem::read`]:
/// - This function does not trigger IO effects (and as a result, IO values will not be updated).
/// - This function does not require [`MemAccessCtx`].
/// - This function does not perform access violation checks.
///
/// If any of these effects are necessary (e.g., when trying to execute instructions from the simulator),
/// [`Mem::read`] should be used instead.
pub fn get_raw(&self, addr: u16) -> &Word {
// Mem could implement Index<u16>, but it doesn't as a lint against using this function incorrectly.
&self.data[usize::from(addr)]
}
/// Gets a mutable reference to a word from the memory's current state.
///
/// This is **only** meant to be used to query/edit the state of the memory,
/// not to simulate a write from memory.
///
/// Note the differences from [`Mem::write`]:
/// - This function does not trigger IO effects (and as a result, IO values will not be updated).
/// - This function does not require [`MemAccessCtx`].
/// - This function does not perform access violation checks or strict uninitialized memory checking.
///
/// If any of these effects are necessary (e.g., when trying to execute instructions from the simulator),
/// [`Mem::write`] should be used instead.
pub fn get_raw_mut(&mut self, addr: u16) -> &mut Word {
// Mem could implement IndexMut<u16>, but it doesn't as a lint against using this function incorrectly.
&mut self.data[usize::from(addr)]
}
/// Fallibly reads the word at the provided index, erroring if not possible.
///
/// This accepts a [`MemAccessCtx`], that describes the parameters of the memory access.
/// The simulator provides a default [`MemAccessCtx`] under [`super::Simulator::default_mem_ctx`].
///
/// The flags are used as follows:
/// - `privileged`: if false, this access errors if the address is a memory location outside of the user range.
/// - `strict`: not used for `read`
///
/// Note that this method is used for simulating a read. If you would like to query the memory's state,
/// consider [`Mem::get_raw`].
pub fn read(&mut self, addr: u16, ctx: MemAccessCtx) -> Result<Word, SimErr> {
if !ctx.privileged && !USER_RANGE.contains(&addr) { return Err(SimErr::AccessViolation) };
if addr >= IO_START {
if let Some(new_data) = self.io.io_read(addr) {
self.data[usize::from(addr)].set(new_data);
}
}
Ok(self.data[usize::from(addr)])
}
/// Fallibly writes the word at the provided index, erroring if not possible.
///
/// This accepts a [`MemAccessCtx`], that describes the parameters of the memory access.
/// The simulator provides a default [`MemAccessCtx`] under [`super::Simulator::default_mem_ctx`].
///
/// The flags are used as follows:
/// - `privileged`: if false, this access errors if the address is a memory location outside of the user range.
/// - `strict`: If true, all accesses that would cause a memory location to be set with uninitialized data causes an error.
///
/// Note that this method is used for simulating a write. If you would like to edit the memory's state,
/// consider [`Mem::get_raw_mut`].
pub fn write(&mut self, addr: u16, data: Word, ctx: MemAccessCtx) -> Result<(), SimErr> {
if !ctx.privileged && !USER_RANGE.contains(&addr) { return Err(SimErr::AccessViolation) };
let write_to_mem = if addr >= IO_START {
let io_data = data.assert_init(ctx.strict, SimErr::StrictIOSetUninit)?
.get();
self.io.io_write(addr, io_data)
} else {
true
};
if write_to_mem {
self.data[usize::from(addr)]
.copy_word(data, ctx.strict, SimErr::StrictMemSetUninit)?;
}
Ok(())
}
}
/// The register file.
///
/// This can be addressed with a [`Reg`], using typical array index notation.
#[derive(Debug, Clone)]
pub struct RegFile([Word; 8]);
impl RegFile {
/// Creates a register file with uninitialized data.
pub fn new(strat: &mut WordCreateStrategy) -> Self {
Self(std::array::from_fn(|_| Word::new_uninit(strat)))
}
}
impl std::ops::Index<Reg> for RegFile {
type Output = Word;
fn index(&self, index: Reg) -> &Self::Output {
&self.0[usize::from(index)]
}
}
impl std::ops::IndexMut<Reg> for RegFile {
fn index_mut(&mut self, index: Reg) -> &mut Self::Output {
&mut self.0[usize::from(index)]
}
}