]> git.lizzy.rs Git - rust.git/history - src/memory.rs
Handle missing allocations in Memory::dump.
[rust.git] / src / memory.rs
2016-04-07 Scott OlsonHandle missing allocations in Memory::dump.
2016-04-07 Scott OlsonImplement drop/deallocation for Box.
2016-04-06 Scott OlsonPrint sizes in allocation dumps.
2016-04-06 Scott OlsonPartially implement reallocation (e.g. for growing...
2016-04-06 Scott OlsonFix undef mask initialization and test undef reads.
2016-04-06 Scott OlsonImplement a naive, slow version of undef mask copying.
2016-04-06 Scott OlsonSwitch to bitmask-based undef mask.
2016-04-05 Scott OlsonRearrange code in memory.rs.
2016-03-28 Scott OlsonMark bytes undefined in uninit intrinsic.
2016-03-27 Scott OlsonMark partially-overwritten relocations as undefined.
2016-03-27 Scott OlsonCheck for undefinedness when reading from memory.
2016-03-27 Scott OlsonAdd method for checking if a range is defined in an...
2016-03-27 Scott OlsonAdd undefined byte tracking.
2016-03-24 Scott OlsonReorganize memory methods.
2016-03-24 Scott OlsonRefactor memory/allocation handling.
2016-03-22 Scott OlsonUse Box<[u8]> instead of Vec<u8> for allocations.
2016-03-21 Scott OlsonWrite the correct size for PrimVall::IntegerPtr.
2016-03-21 Scott OlsonRefactor handling of relocations.
2016-03-21 Scott OlsonAdd array indexing for-loop test.
2016-03-21 Scott OlsonRefactor isize/usize read/writes.
2016-03-21 Scott OlsonRefactor some names.
2016-03-21 Scott OlsonStop unintentionally clearing source relocations when...
2016-03-19 Scott OlsonImplement string literals.
2016-03-19 Scott OlsonImplement pointer primvals and comparison ops on them.
2016-03-18 Scott OlsonAvoid an integer underflow error.
2016-03-17 Scott OlsonChoose pointer size dynamically.
2016-03-17 Scott OlsonChange invalid pointer read panic into Err.
2016-03-17 Scott OlsonFix boolean tests and clean up code.
2016-03-17 Scott OlsonSimplify integer reading/writing.
2016-03-17 Scott OlsonUse total size instead of max variant size in aggregates.
2016-03-17 Scott OlsonMerge sum and product representations.
2016-03-17 Scott OlsonSimplify primitive type reprs.
2016-03-17 Scott OlsonFix typo.
2016-03-17 Scott OlsonSimplify Repr::Array's elem size.
2016-03-17 Scott OlsonSimplify PrimVals.
2016-03-17 Scott OlsonSimplify FieldRepr sizes.
2016-03-17 Scott OlsonSimplify some Repr code.
2016-03-17 Scott OlsonWIP: Support array indexing including a `get_unchecked...
2016-03-17 Scott OlsonCreate a pointer-only version of eval_operand. Fix...
2016-03-15 Scott OlsonSplit Repr creation out of eval_lvalue.
2016-03-15 Scott OlsonImplement fixed-sized arrays.
2016-03-15 Scott OlsonAdd unsigned integers.
2016-03-15 Scott OlsonImplement Rvalue::Box allocations.
2016-03-15 Scott OlsonReorganize and simplify.
2016-03-13 Scott OlsonAdd support for pointers.
2016-03-13 Scott OlsonMake sum repr discriminant an arbitrary repr.
2016-03-13 Scott OlsonUnnest integer reprs.
2016-03-13 Scott OlsonAdd support for smaller signed integers.
2016-03-13 Scott OlsonMore work for multiple int sizes.
2016-03-13 Scott OlsonAdd initial support for different int sizes.
2016-03-13 Scott OlsonRestructure aggregates and pave the way for enums.
2016-03-13 Scott OlsonFix 0-sized writes being treated as out of bounds.
2016-03-12 Scott OlsonSupport structs and single-variant enums.
2016-03-07 Scott OlsonSupport SwitchInt for integer types.
2016-03-07 Scott OlsonSimplfy memory allocation.
2016-03-07 Scott OlsonRemove Pointer's repr field and make it Copy.
2016-03-07 Scott OlsonAdd basic bool support.
2016-03-05 Scott OlsonSort imports.
2016-03-05 Scott OlsonRemove Allocation's Clone impl.
2016-03-05 Scott OlsonMove memory module to its own file.