]> git.lizzy.rs Git - rust.git/shortlog
rust.git
2016-04-15 Scott OlsonFix drop fill checking on 32-bit hosts.
2016-04-15 Scott OlsonMerge pull request #3 from killercup/feature/tests
2016-04-15 Pascal HertleifAdd Travis Config
2016-04-14 Scott OlsonFix over-long bitshift on 32-bit hosts.
2016-04-14 Pascal HertleifAdd EditorConfig
2016-04-14 Pascal HertleifAdd Compile Test
2016-04-14 Scott OlsonMerge pull request #2 from killercup/feature/update...
2016-04-14 Pascal HertleifReadme: Newer Nightly Version, Mention Rustup
2016-04-14 Scott Olsonreadme: Rewording.
2016-04-14 Scott Olsonreadme: Add links to presentation and report PDFs.
2016-04-13 Pascal HertleifUpdate to Rust Nightly 2016-04-11
2016-04-13 Scott Olsonreadme: Fix shell syntax.
2016-04-13 Scott Olsonreadme: Add build and run instructions.
2016-04-13 Scott Olsonreport: Credit where it's due.
2016-04-13 Scott Olsonreport: Numerous fixes. :heart: @DanielKeep, @programbl...
2016-04-13 Scott Olsonreport: Finish the report.
2016-04-13 Scott Olsonreport: Fill in most of the language support section...
2016-04-10 Scott Olsonreport: Minor fixes.
2016-04-10 Scott OlsonRename paper to report.
2016-04-10 Scott Olsonreport: Add stub "Thanks" section.
2016-04-10 Scott Olsonreport: Add "Vec<u8>" example.
2016-04-10 Scott Olsonreport: Add "Flaws" and "Current implementation".
2016-04-10 Scott OlsonReword and reformat various parts.
2016-04-10 Scott OlsonStore AllocIds directly in allocation map.
2016-04-09 Scott OlsonAdd background and intro to first implementation.
2016-04-08 Scott OlsonAdd basic final paper LaTeX with abstract.
2016-04-08 Scott OlsonMove slides into new tex directory.
2016-04-07 Scott OlsonImplement filling drop.
2016-04-07 Scott OlsonHandle missing allocations in Memory::dump.
2016-04-07 Scott OlsonImplement drop/deallocation for Box.
2016-04-07 Scott OlsonSimplify intrinsic/c_abi call argument evaluation.
2016-04-07 Scott OlsonChange debug log format.
2016-04-07 Scott OlsonNormalize test file modes.
2016-04-07 Scott OlsonRename ty_size -> type_size and ty_to_repr -> type_repr.
2016-04-07 Scott OlsonUpdate for changes in rustc master.
2016-04-06 Scott OlsonPrint sizes in allocation dumps.
2016-04-06 Scott OlsonPartially implement reallocation (e.g. for growing...
2016-04-06 Scott OlsonAdd test for out-of-bounds reads.
2016-04-06 Scott OlsonFix undef mask initialization and test undef reads.
2016-04-06 Scott OlsonAdd test for invalid booleans.
2016-04-06 Scott OlsonAdd test for comparing ptrs into different allocs.
2016-04-06 Scott OlsonAdd an Rc reference cycle test.
2016-04-06 Scott OlsonAdd a test for overwriting part of a relocation.
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-04-05 Scott OlsonPrint terminator kinds (without spans) when debugging.
2016-04-04 Scott OlsonFix quote kind in slides LaTeX.
2016-04-04 Scott OlsonAdd note about target data layout.
2016-04-04 Scott OlsonAdd slides for final presentation.
2016-04-01 Scott OlsonUpdate for changes in rustc master.
2016-03-31 Scott OlsonAdd stack traces to error notes.
2016-03-30 Scott OlsonMove substs stack management into main stack managment...
2016-03-30 Scott OlsonAdd initial error reporting via rustc's interface.
2016-03-30 Scott OlsonRemove unnecessary Result return in push_stack_frame.
2016-03-29 Scott OlsonHandle custom discriminant values and detect invalid...
2016-03-28 Scott OlsonAdd a basic test for specialization.
2016-03-28 Scott OlsonUpdate for changes in rustc master.
2016-03-28 Scott OlsonMark bytes undefined in uninit intrinsic.
2016-03-27 Scott OlsonMark partially-overwritten relocations as undefined.
2016-03-27 Scott OlsonFix bug where &str's lengths were not copied.
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-22 Scott OlsonAdd a commented-out RefCell test.
2016-03-22 Scott OlsonAdd a fat byte-slice coercion test.
2016-03-22 Scott OlsonAssert the absence of fat pointers more often.
2016-03-21 Scott OlsonWrite the correct size for PrimVall::IntegerPtr.
2016-03-21 Scott OlsonRefactor handling of relocations.
2016-03-21 Scott OlsonAdd simple test of assert_eq!.
2016-03-21 Scott OlsonHide execution traces (they are getting long...)
2016-03-21 Scott OlsonAdd tests involving Rc, Arc, and Cell.
2016-03-21 Scott OlsonFix typo in test name.
2016-03-21 Scott OlsonMake more MIR match statements exhaustive.
2016-03-21 Scott OlsonSupport intrinsics::overflowing_sub for vec![x; n].
2016-03-21 Scott OlsonSupport [x; N] array repeat rvalues.
2016-03-21 Scott OlsonMake mir::Rvalue handling exhaustive (some still unimpl...
2016-03-21 Scott OlsonAdd vec::IntoIter and fold test.
2016-03-21 Scott OlsonAbort miri if the Rust code had compilation errors.
2016-03-21 Scott OlsonUncomment now-working vec! macro test.
2016-03-21 Scott OlsonFix vec test compile error.
2016-03-21 Scott OlsonAdd slice iterator for-loop test.
2016-03-21 Scott OlsonAdd array indexing for-loop test.
2016-03-21 Scott OlsonRemove debug print.
2016-03-21 Scott OlsonRefactor isize/usize read/writes.
2016-03-21 Scott OlsonMonomorphize lvalue types.
2016-03-21 Scott OlsonSimplify handling of Result in eval_assignment.
2016-03-21 Scott OlsonSupport fat pointer reborrowing, length checking.
2016-03-21 Scott OlsonRefactor some names.
2016-03-21 Scott OlsonImplement length access and indexing for fixed-sized...
2016-03-21 Scott OlsonReduce duplication for integer reprs.
2016-03-21 Scott OlsonAdd first test for std::vec::Vec.
2016-03-21 Scott OlsonSupport fn pointer type sizes.
2016-03-21 Scott OlsonStop unintentionally clearing source relocations when...
2016-03-21 Scott OlsonImplement the move_val_init intrinsic.
2016-03-21 Scott OlsonImplement the __rust_allocate C ABI function.
2016-03-19 Scott OlsonSimplify Misc casts (still incorrect).
next