summary refs log tree commit diff
path: root/src/librustc_mir/interpret
AgeCommit message (Expand)AuthorLines
2018-06-27Don't use `ParamEnv::reveal_all()` if there is a real one availableOliver Schneider-1/+1
2018-06-14rustc: rename ty::maps to ty::query.Eduard-Mihai Burtescu-2/+2
2018-06-05Properly report transitive errorsOliver Schneider-23/+8
2018-06-05Refactor the const eval diagnostic APIOliver Schneider-107/+32
2018-06-04Simplify value field accessOliver Schneider-36/+27
2018-06-02Correctly access ScalarPair fields during const evalOliver Schneider-60/+34
2018-06-01Auto merge of #51225 - oli-obk:miri_oob_ptr, r=eddybbors-15/+30
2018-05-31Rename num -> bits and num -> out_valLinus Färnstrand-6/+6
2018-05-31Rename bytes -> bitsLinus Färnstrand-8/+8
2018-05-31Rewrite numeric_intrinsic without macroLinus Färnstrand-28/+11
2018-05-31Make ctpop, cttz, ctlz and bswap const fnsLinus Färnstrand-3/+60
2018-05-31Update miri submoduleOliver Schneider-1/+1
2018-05-31ScalarPair for two element tuples was treated wrongly in closure callsOliver Schneider-12/+24
2018-05-31Pull a layout computation out of a loopOliver Schneider-1/+4
2018-05-31Don't invalidate one byte beyond the endOliver Schneider-1/+1
2018-05-31Don't store the discriminant with the enum's type sizeOliver Schneider-1/+1
2018-05-29Review feedback: update fixme comment to reflect reality.Felix S. Klock II-3/+2
2018-05-29rust-lang/rust#27282: Add `StatementKind::ReadForMatch` to MIR.Felix S. Klock II-0/+5
2018-05-24Rename `amt` variables to `shift`Oliver Schneider-10/+10
2018-05-24Remove dead codeOliver Schneider-3/+0
2018-05-24Remove `ty_to_primitive`Oliver Schneider-13/+12
2018-05-24Properly check defined bits rangeOliver Schneider-2/+2
2018-05-24Replace `ScalarKind` with `Primitive`Oliver Schneider-76/+9
2018-05-24Get rid of `scalar_size`Oliver Schneider-12/+13
2018-05-24Update outdated commentOliver Schneider-1/+1
2018-05-24primval -> scalar renameOliver Schneider-58/+58
2018-05-24Use the destination type size instead of the source type sizeOliver Schneider-1/+1
2018-05-24Use the target types bitsize instead of the source type'sOliver Schneider-6/+6
2018-05-24change `Value::Bytes` to `Value::Bits`Oliver Schneider-104/+220
2018-05-24Remove Pointer::zero in favor of Pointer::fromOliver Schneider-9/+5
2018-05-24Rename MemoryPointer to PointerOliver Schneider-48/+48
2018-05-24Eliminate the `Pointer` wrapper typeOliver Schneider-49/+48
2018-05-24Rename ByVal(Pair) to Scalar(Pair)Oliver Schneider-57/+57
2018-05-24Rename PrimVal to ScalarOliver Schneider-145/+145
2018-05-24Add constant for `Size::from_bytes(0)`Oliver Schneider-9/+9
2018-05-22Use SortedMap instead of BTreeMap for relocations in MIRI.Michael Woerister-21/+21
2018-05-22Auto merge of #50520 - Zoxc:alloc-misc, r=oli-obkbors-50/+54
2018-05-22Introduce AllocType which indicates what AllocIds point toJohn Kåre Alsaker-47/+51
2018-05-22Get rid of literal_alloc_cacheJohn Kåre Alsaker-3/+3
2018-05-21Auto merge of #50812 - kennytm:fix-50756-miri-bad-float-behavior, r=oli-obkbors-7/+6
2018-05-20Auto merge of #50841 - oli-obk:promote_errors_to_panics, r=eddybbors-10/+2
2018-05-19Use `Size` instead of `u64` in mir interpretationOliver Schneider-132/+135
2018-05-19Keep statics' constant as ByRefOliver Schneider-20/+44
2018-05-19Go through an allocation when accessing fields of constantsOliver Schneider-18/+22
2018-05-19Reintroduce some sanity checksOliver Schneider-4/+7
2018-05-19Ensure that statics are always ByRefOliver Schneider-86/+59
2018-05-19Release mode overflows should not cause const eval to errorOliver Schneider-10/+2
2018-05-17Make sure the float comparison output is consistent with the expectedkennytm-7/+6
2018-05-13Fix conversion from Miri Value to ConstValueJohn Kåre Alsaker-56/+67
2018-05-11Add a query to convert from ConstValue to AllocationJohn Kåre Alsaker-10/+69