about summary refs log tree commit diff
path: root/src/librustc/mir/interpret/allocation.rs
AgeCommit message (Expand)AuthorLines
2019-04-16Miri: refactor new allocation taggingRalf Jung-53/+20
2019-03-15Auto merge of #58556 - oli-obk:imperative_recursion, r=pnkfelixbors-13/+63
2019-03-13Use derive macro for HashStableJohn Kåre Alsaker-1/+2
2019-03-12Explain the bits of `UndefMask`Oliver Scherer-0/+2
2019-03-04Use bit operations for setting large ranges of bits in a u64Oliver Scherer-16/+33
2019-03-04No magic numbersOliver Scherer-1/+1
2019-03-04Optimize copying large ranges of undefmask blocksOliver Scherer-7/+38
2019-02-10rustc: doc commentsAlexander Regueiro-10/+10
2019-02-05move librustc to 2018Mark Mansi-2/+2
2018-12-27Auto merge of #57129 - RalfJung:check-bounds, r=oli-obkbors-1/+1
2018-12-26make Alloc::check_bounds_ptr private; you should use Memory::check_bounds_ptr...Ralf Jung-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-27Auto merge of #56094 - RalfJung:memory-data-revived, r=oli-obkbors-99/+151
2018-11-25TypoOliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer-1/+1
2018-11-25fix length of slice returned from read_c_strRalf Jung-3/+5
2018-11-25yay for NLLRalf Jung-5/+3
2018-11-25read_c_str should call the AllocationExtra hooksRalf Jung-4/+3
2018-11-25TypoOliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer-1/+1
2018-11-25make memory allocation hook infallibleRalf Jung-3/+3
2018-11-25bring back MemoryExtraRalf Jung-99/+151
2018-11-24Rebase falloutOliver Scherer-11/+2
2018-11-24Document `Allocation`Oliver Scherer-2/+17
2018-11-24Explain {read,write}_scalar failure to cope with zstsOliver Scherer-0/+10
2018-11-24Move alignment checks out of `Allocation`Oliver Scherer-57/+12
2018-11-24Reorder methods in `allocation.rs`Oliver Scherer-85/+85
2018-11-24Make a method that doesn't need `Self` a free function insteadOliver Scherer-18/+17
2018-11-24Make zst accesses in allocations take the regular path.Oliver Scherer-21/+0
2018-11-24Remove unnecessary `Result` (function always returned `Ok`)Oliver Scherer-6/+6
2018-11-24Adjust rustc_mir::interpret to changes in `Allocation`/`Memory` methodsOliver Scherer-43/+69
2018-11-24Move some byte and scalar accessors from `Memory` to `Allocation`Oliver Scherer-0/+200
2018-11-24Fiddle a `HasDataLayout` through the allocation methodsOliver Scherer-19/+41
2018-11-24Access `self` instead of `alloc`Oliver Scherer-30/+14
2018-11-24Adjust generics to `Allocation` parametersOliver Scherer-9/+9
2018-11-24Move alignment and bounds check from `Memory` to `Allocation`Oliver Scherer-0/+45
2018-11-24Move undef mask methods from `Memory` to `Allocation`Oliver Scherer-0/+33
2018-11-24Move relocation methods from `Memory` to `Allocation`Oliver Scherer-0/+73
2018-11-24Preliminary code adjustment to let the compiler complain about missing methodsOliver Scherer-4/+4
2018-11-24Move some methods from `Memory` to `Allocation`Oliver Scherer-0/+84
2018-11-22rustc_target: avoid using AbiAndPrefAlign where possible.Eduard-Mihai Burtescu-5/+5
2018-11-22rustc_target: separate out an individual Align from AbiAndPrefAlign.Eduard-Mihai Burtescu-2/+2
2018-11-22rustc_target: rename abi::Align to AbiAndPrefAlign.Eduard-Mihai Burtescu-5/+5
2018-11-15do not accept out-of-bounds pointers in enum discriminants, they might be NULLRalf Jung-0/+8
2018-11-12for uniformity, also move memory_deallocated to AllocationExtraRalf Jung-0/+11
2018-11-08Give `AllocationExtra`s access to their entire `Allocation`Oliver Scherer-6/+2
2018-11-08FalloutOliver Scherer-4/+7
2018-11-08Move UndefMask and Relocations into `allocation.rs`Oliver Scherer-5/+134
2018-11-08Move the `memory_accessed` hook onto the `Extra` valueOliver Scherer-0/+30
2018-11-08Move `Allocation` into its own moduleOliver Scherer-682/+5
2018-11-08Duplicate mod.rs for better diff trackingOliver Scherer-0/+752