]> git.lizzy.rs Git - rust.git/shortlog
rust.git
2017-08-04 Ralf Jungonly collect backtrace when RUST_BACKTRACE is set;...
2017-08-03 Oliver SchneiderMerge pull request #280 from solson/archeology
2017-08-03 Ralf Jungactually, we can use a plain constant
2017-08-03 Ralf Jungno need to do run-time formatting
2017-08-03 Ralf JungMerge pull request #281 from RalfJung/unsized
2017-08-03 Ralf JungAdd a build script to inform the binary about its profi...
2017-08-03 Ralf Jungfix comment
2017-08-03 Oliver SchneiderReuse the `Backtrace` object instead of rolling our own
2017-08-03 Oliver SchneiderRemove accidental text paste
2017-08-02 Ralf Jungfix size_of_val on unsized tuples
2017-08-02 Ralf Jungstep.rs: improve comment for clarity
2017-08-02 Oliver SchneiderChoose release miri for release tests
2017-08-02 Oliver SchneiderSpeed up travis by using release mode
2017-08-02 Oliver SchneiderProduce backtraces for miri internals
2017-08-02 Eduard-Mihai... Merge pull request #278 from solson/unions
2017-08-02 Oliver SchneiderAdd a test for untagged unions
2017-08-02 Oliver SchneiderMerge pull request #268 from oli-obk/upstream
2017-08-01 Oliver SchneiderBuild the rustc_tests binary on travis
2017-08-01 Oliver SchneiderProcess untagged unions
2017-08-01 Oliver SchneiderAdd a better error message than `syscall 318 not found`
2017-08-01 Oliver SchneiderFix running the rustc test suite
2017-08-01 Oliver SchneiderAddress comments
2017-08-01 Oliver SchneiderProperly process ptr_op for const eval
2017-08-01 Oliver SchneiderRemove redundant `members` field
2017-08-01 Oliver SchneiderRemove leftover unused file
2017-08-01 Oliver SchneiderMove tls code to its own file
2017-08-01 Oliver SchneiderAllow machines to create new memory kinds
2017-08-01 Oliver SchneiderUpdate Cargo.toml
2017-08-01 Oliver SchneiderAdjust travis to the directory changes
2017-08-01 Oliver SchneiderMove all intrinsics out of `interpret` and fail CTFE...
2017-08-01 Oliver SchneiderUpdate env_logger in order to share more dependencies
2017-08-01 Oliver SchneiderMove a method used everywhere out of `intrinsic.rs`
2017-08-01 Oliver SchneiderFix doc text
2017-08-01 Oliver SchneiderReduce the chance of accidentally calling functions...
2017-08-01 Oliver SchneiderMove the `global_item` function to the `EvalContext`
2017-08-01 Oliver SchneiderRename `const_eval::Evaluator` to `CompileTimeFunctionE...
2017-08-01 Oliver SchneiderMove more non-CTFE operations to the Machine
2017-08-01 Oliver SchneiderSplit "new" miri crate into modules
2017-08-01 Oliver SchneiderImplement the first machine function
2017-08-01 Oliver SchneiderSplit up miri into the librustc_mir and bin parts
2017-08-01 Ralf JungMerge pull request #277 from RalfJung/nightly
2017-07-31 Ralf Jungfix for latest nightly
2017-07-31 Oliver SchneiderMerge pull request #274 from RalfJung/packed2
2017-07-29 Ralf Jungremove some commented-out tracing
2017-07-29 Ralf Jungavoid anonymous bool
2017-07-27 Ralf Junguse Cell for memory's aligned flag to avoid infecting...
2017-07-27 Ralf Jungmake force_allocation handle packed ByValPair
2017-07-26 Oliver SchneiderMerge pull request #272 from oli-obk/mir-validate
2017-07-26 Ralf Jungdisable validation code so that it all compiles against...
2017-07-26 Ralf Jungwhitelist some more methods
2017-07-26 Oliver SchneiderMerge pull request #273 from RalfJung/ref
2017-07-26 Ralf Jungmove undef-check-on-release-validation out, to catch...
2017-07-26 Ralf Jungcheck mutable UnsafeCell; hack for AtomicBool::get_mut
2017-07-26 Ralf Jungmore hacks to make test cases pass
2017-07-26 Ralf JungTest that &* of a dangling (and even unaligned) ptr...
2017-07-25 Ralf Jungwhitelist things so that more tests pass
2017-07-25 Ralf Jungsuspend lvalues, not locks. refactor memory locking.
2017-07-25 Ralf Jungmake LockInfo non-Copy
2017-07-25 Ralf Jungfix checks when releasing write locks (101)
2017-07-25 Ralf Jungwe don't have to set the frame on every step
2017-07-25 Ralf Junghandle type of function definitions (98)
2017-07-25 Ralf Jungwe need to normalize associated types also deep in...
2017-07-25 Ralf JungHandle trait objects. Only very superficial checking...
2017-07-25 Ralf Jungnits. also, rustc now emits released for drop. (72)
2017-07-25 Ralf Jungexempt UnsafeCell from checks (69)
2017-07-25 Ralf Jungmove validation to its own file
2017-07-25 Ralf Jungwe have to permit deallocation memory for which we...
2017-07-25 Ralf Jungfix handling univariant enums (62)
2017-07-25 Ralf Jungpermit locking constant memory (60)
2017-07-25 Ralf Jungfn ptrs and never were accidentally disabled (55)
2017-07-25 Ralf Jungfix normalizing associated types. this brings us up...
2017-07-25 Ralf Junghandle array types
2017-07-25 Ralf JungRe-do the way locking is done during verification
2017-07-25 Ralf Jungfor references, validate alignment and handle ZSTs
2017-07-25 Ralf Jungvalidate TyClosure, TyTuple, TyNever
2017-07-25 Ralf Jungvarious small fixes and tracing
2017-07-25 Ralf JungAlso release locks on ReleaseValidation and EndRegion
2017-07-25 Ralf Jungfix release_lock_until to no longer remove inactive...
2017-07-25 Ralf Jungavoid downcasting for enum variants without further...
2017-07-25 Ralf Jungvalidate boxes
2017-07-25 Ralf Jungimplement checking for ADTs
2017-07-25 Ralf Jungimplement stub validity check for basic types (bool...
2017-07-25 Ralf Jungimplement acquiring and releasing locks
2017-07-25 Ralf Jungadd locking data structures and lock checks
2017-07-25 Ralf Jungupdate for rustc changes: treat new MIR commands as NOP
2017-07-24 Oliver SchneiderMerge pull request #267 from RalfJung/cast
2017-07-24 Oliver SchneiderPass `HasDataLayout` instead of the data layout itself
2017-07-23 Oliver SchneiderUse rustc traits instead of our own
2017-07-22 Ralf Jungmove pointer truncation to a common method in memory.rs
2017-07-22 Oliver SchneiderMerge pull request #269 from oli-obk/cleanups
2017-07-22 Ralf Jungfix nits
2017-07-22 Ralf Jungrefactor casting code to more clearly handle pointers
2017-07-22 Ralf Jungfix casting integers to pointers
2017-07-21 Oliver SchneiderRemove unused `IntoValTyPair` hack
2017-07-21 Oliver SchneiderMerge pull request #258 from oli-obk/upstream
2017-07-21 Oliver SchneiderPrep miri repository for rustc merger
2017-07-21 Oliver SchneiderMerge pull request #266 from RalfJung/align
2017-07-20 Ralf Jungalways test alignment in memory.rs
2017-07-20 Oliver SchneiderMerge pull request #265 from oli-obk/optimize_prime
2017-07-20 Oliver SchneiderAlso test optimized MIR
next