about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret/place.rs
AgeCommit message (Expand)AuthorLines
2022-07-18interpret: make some large types not CopyRalf Jung-16/+16
2022-07-18interpret: remove some unused trait implsRalf Jung-4/+3
2022-07-16Rollup merge of #99259 - RalfJung:visit-a-place, r=oli-obkMatthias Krüger-3/+13
2022-07-15interpret/visitor: support visiting with a PlaceTyRalf Jung-3/+13
2022-07-14rename MPlaceTy::dangling to fake_alloc_zstRalf Jung-1/+3
2022-07-13get rid of MemPlaceMeta::PoisonRalf Jung-15/+6
2022-07-11use a loop rather than try_foldRalf Jung-13/+12
2022-07-11interpret: refactor projection handling codeRalf Jung-276/+29
2022-07-06deduplicate some copy_op codeRalf Jung-76/+59
2022-07-06support passing unsized fn argumentsRalf Jung-9/+21
2022-07-06interpret: remove LocalValue::Unallocated, add Operand::UninitRalf Jung-81/+52
2022-07-05finally enable Scalar layout sanity checksRalf Jung-1/+1
2022-07-05adjust dangling-int-ptr error messageRalf Jung-1/+1
2022-07-03interpret: track place alignment together with the type, not the valueRalf Jung-70/+90
2022-06-29interpret: add From<&MplaceTy> for PlaceTyRalf Jung-1/+15
2022-06-15make sure miri ices when dereferencing a boxDrMeepster-0/+5
2022-06-02take back half-baked noaliasing check in AssignmentRalf Jung-3/+1
2022-05-24Remove outdated commentOli Scherer-4/+0
2022-05-24Add the transmute and asm checks to typeck as deferred checksOli Scherer-4/+4
2022-05-22Lifetime variance fixes for rustcMichael Goulet-1/+1
2022-05-16use GlobalId in eval_to_valtree query and introduce query for valtree_to_cons...b-naber-7/+13
2022-05-11Auto merge of #96220 - RalfJung:scalar-no-padding, r=oli-obkbors-30/+10
2022-05-10update/remove some old commentsRalf Jung-5/+1
2022-05-10disable one check for now until #96185 is fixedRalf Jung-1/+1
2022-05-10tighten sanity checks around Scalar and ScalarPairRalf Jung-25/+9
2022-05-06Fix inaccurate function name in `rustc_const_eval` docspierwill-1/+1
2022-05-05give it a scary nameRalf Jung-2/+2
2022-05-04interpret: debug-check ScalarPair layout informationRalf Jung-1/+1
2022-04-26account for custom DSTs in valtree -> constvalue conversionb-naber-0/+6
2022-04-21deduplicate a lot of codeb-naber-14/+2
2022-04-21implement valtree -> constvalue conversionb-naber-3/+24
2022-04-17when writing uninit to an allocation, also clear relocations like other write...Ralf Jung-1/+1
2022-04-16Rollup merge of #95426 - b-naber:valtrees-slice, r=RalfJung,oli-obkDylan DPC-1/+1
2022-04-12use len on mplace instead of reading immediate, remove dead codeb-naber-1/+1
2022-04-11Add new `Deinit` statement kindJakob Degen-0/+36
2022-04-08create leafs for slicesb-naber-12/+0
2022-04-07interpret: err instead of ICE on size mismatches in to_bits_or_ptr_internalRalf Jung-2/+2
2022-04-05Auto merge of #94527 - oli-obk:undef_scalars, r=nagisa,erikdesjardinbors-6/+4
2022-04-05Mark scalar layout unions so that backends that do not support partially init...Oli Scherer-6/+4
2022-04-03interpret: remove MemoryExtra in favor of giving access to the MachineRalf Jung-12/+11
2022-03-30Spellchecking some commentsYuri Astrakhan-1/+1
2022-03-29include refs in valtree creationb-naber-0/+12
2022-02-22Miri: extend comments on downcast operationRalf Jung-1/+3
2022-02-19rustc_const_eval: adopt let else in more placesest31-6/+5
2022-02-15Overhaul `TyS` and `Ty`.Nicholas Nethercote-1/+1
2021-12-15miri: lift restriction on extern types being the only field in a structTomasz Miąsko-14/+8
2021-12-13Remove `in_band_lifetimes` from `rustc_const_eval`LegionMammal978-2/+2
2021-12-12doc: fix typo in commentsjapm48-1/+1
2021-12-05allow for failure of subst_normalize_erasing_regions in const_evalb-naber-1/+1
2021-11-18fix CTFE/Miri simd_insert/extract on array-style repr(simd) typesRalf Jung-1/+27