]> git.lizzy.rs Git - rust.git/shortlog
rust.git
2016-06-10 Scott OlsonMerge pull request #18 from oli-obk/hold_the_state
2016-06-09 Oliver Schneiderrename `static_item` to `global_item`
2016-06-09 Oliver Schneidermake sure globals that yield function pointers aren...
2016-06-09 Oliver Schneiderwe already have the constant's type, no need to recompu...
2016-06-09 Oliver Schneiderrefactor away the closures and `Event` enum
2016-06-08 Oliver Schneiderthe statement/terminator has already been computed...
2016-06-08 Oliver Schneiderimprove the docs of ConstantId
2016-06-08 Oliver Schneiderimprove fn argument naming
2016-06-08 Oliver Schneiderput `ConstantId`'s common fields into a struct
2016-06-08 Oliver Schneiderno more function pointers
2016-06-08 Oliver Schneiderdirectly push stackframes for constants when they are...
2016-06-08 Oliver Schneiderrebase leftovers
2016-06-08 Oliver Schneiderdon't cache the MIR in the Stepper
2016-06-08 Oliver Schneiderclippy nits
2016-06-08 Oliver Schneidermove load_mir to the global eval context
2016-06-08 Oliver Schneidermove some methods from FnEvalContext to GlobalEvalContext
2016-06-03 Oliver Schneiderglobally cache statics and promoteds
2016-06-03 Oliver Schneiderstop producing executable files in the root folder...
2016-06-03 Oliver Schneidermove constants stack to stackframe
2016-06-03 Oliver Schneiderupdate documentation
2016-06-03 Oliver Schneiderfactor out the statement index into the stackframe
2016-06-03 Oliver Schneiderstore the current block in the frame
2016-06-03 Oliver Schneiderjit interpretation of constants
2016-06-02 Oliver Schneidermerge the three stacks in the interpreter
2016-06-02 Oliver Schneiderremove a debug message that snuck into the commit
2016-06-02 Oliver Schneideradd a const fn test
2016-06-02 Oliver Schneideralso step through promoteds, constants and statics
2016-06-01 Oliver Schneidernote that not all literal items are function pointers
2016-06-01 Oliver Schneiderrename `iterator` module to `stepper`
2016-06-01 Oliver Schneiderstyle: spaces between functions
2016-06-01 Oliver Schneiderstepwise interpretation
2016-06-01 Oliver Schneiderdon't clone the MIR Rc in every iteration
2016-06-01 Oliver Schneiderremove one layer of indirection when interpreting const...
2016-06-01 Oliver Schneidercan't evaluate failed assertions yet
2016-06-01 Scott OlsonMerge pull request #16 from oli-obk/logs
2016-06-01 Oliver Schneiderremove intermediate vars
2016-06-01 Oliver Schneideruse format! compile time magics for indentation
2016-06-01 Oliver Schneiderwraparound when reaching indentation lvl 40
2016-06-01 Oliver Schneideruse a number for the maximum indentation instead of...
2016-06-01 Oliver Schneideruse MIRI_LOG instead of RUST_LOG, because rustc's outpu...
2016-06-01 Scott OlsonMerge pull request #15 from oli-obk/step_by_step
2016-06-01 Oliver Schneiderre-introduce the module name to the logs and show verti...
2016-06-01 Oliver Schneiderfallout because compiletest tried to use rustc's log...
2016-06-01 Oliver Schneideradd the `log` crate + `env_logger` to be able to choose...
2016-06-01 Oliver Schneideradd dependencies and run cargo update
2016-06-01 Oliver Schneideradd a note to Memory::new mentioning tcx.data_layout
2016-06-01 Oliver Schneiderimprove out of bounds error message
2016-06-01 Oliver Schneider4byte pointers
2016-06-01 Oliver Schneiderreplace `panic!`s with `Result`
2016-06-01 Oliver Schneiderdon't generate test suites
2016-05-30 Scott OlsonMerge pull request #13 from oli-obk/master
2016-05-30 Oliver Schneideradd more benchmarks
2016-05-30 Oliver Schneiderremove unnecessary printlns for benchmarks
2016-05-30 Oliver Schneideradd benchmarks
2016-05-27 Oliver Schneiderclippy nit
2016-05-25 Scott OlsonHandle some cases of StructWrappedNullablePointer.
2016-05-14 Scott OlsonMerge pull request #12 from qres/patch-1
2016-05-14 qresfix tuple example in slides
2016-05-14 Scott OlsonUpdate for changes in rustc nightly.
2016-05-10 Scott OlsonCorrect license in Cargo.toml.
2016-05-10 Scott OlsonHandle discriminant_value intrinsic.
2016-05-10 Scott OlsonSupport C ABI memcmp function.
2016-05-10 Scott OlsonAdd test for size_of_val::<str>.
2016-05-10 Scott OlsonHandle size_of_val for slice types.
2016-05-10 Scott OlsonHandle size_of_val for sized types.
2016-05-10 Scott OlsonUpdate for my github username change.
2016-05-10 Scott OlsonHandle statics.
2016-05-10 Scott OlsonDo or do not.
2016-05-10 Scott OlsonFix the all-important smiley.
2016-05-10 Scott OlsonOnly test on the latest nightly version.
2016-05-10 Scott OlsonHandle promoted rvalues by recursing with call_nested.
2016-05-09 Scott OlsonUpdate to a new nightly.
2016-05-09 Scott OlsonHandle CEnum layouts with signed representations.
2016-05-09 Scott OlsonMerge branch 'new-data-layout'
2016-05-09 Scott OlsonMove StructWrappedNullablePointer-using test to bugs...
2016-05-09 Scott OlsonHandle CEnum layouts with unsigned representations.
2016-04-30 Scott OlsonFully handle RawNullablePointer layout.
2016-04-30 Scott OlsonRe-implement support for downcast lvalues.
2016-04-29 Scott OlsonMerge pull request #10 from llogiq/clippy
2016-04-29 Andre Bogusback out similar_names change
2016-04-29 Andre BogusFixed some clippy warnings
2016-04-28 Scott Olsonreport: Remove redundant commented-out paragraph.
2016-04-24 Scott OlsonRemove unused eval_operand_and_layout fn.
2016-04-24 Scott OlsonAdd missing boolean binops.
2016-04-23 Scott OlsonImplement boolean binops.
2016-04-23 Scott OlsonFix lvalue projections with fat pointer bases.
2016-04-23 Scott OlsonUpdate to a nightly with rustc::ty::layout.
2016-04-23 Scott OlsonReplace Repr with the new ty::layout in rustc.
2016-04-22 Scott OlsonMerge pull request #9 from oli-obk/improve_tests
2016-04-22 Oliver Schneiderbug: transmute::<*const T, Option<Box<T>>>(..)
2016-04-22 Oliver Schneiderwild pointer and null pointer deref
2016-04-22 Oliver Schneidervarious testing improvements
2016-04-22 Scott OlsonMerge pull request #7 from oli-obk/compiletest
2016-04-22 Oliver Schneideruse compiletest_rs
2016-04-15 Scott OlsonMerge pull request #5 from killercup/fix/travis-stuff
2016-04-15 Pascal HertleifFix Travis Config for Nightly
2016-04-15 Pascal HertleifAdd Build Status to Readme
2016-04-15 Pascal HertleifFix Typo in Readme
2016-04-15 Scott OlsonUse 8-byte pointers on 32-bit hosts for now.
2016-04-15 Scott OlsonFix drop fill checking on 32-bit hosts.
next