about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src/interpret/operand.rs
AgeCommit message (Expand)AuthorLines
2023-07-27Remove `constness` from `ParamEnv`Deadbeef-4/+2
2023-07-25make MPlaceTy non-CopyRalf Jung-1/+1
2023-07-25interpret: make read functions generic over operand typeRalf Jung-37/+44
2023-07-25interpret: make write functions generic over the place typeRalf Jung-8/+6
2023-07-25interpret: refactor projection code to work on a common trait, and use that f...Ralf Jung-33/+95
2023-07-24interpret: support projecting into Place::Local without force_allocationRalf Jung-35/+74
2023-07-20clarify MIR uninit vs LLVM undef/poisonRalf Jung-1/+1
2023-07-14refactor(rustc_middle): Substs -> GenericArgMahdi Dibaiee-2/+2
2023-07-11miri: protect Move() function arguments during the callRalf Jung-8/+0
2023-07-05Remove a function argument that is always passed with the same value.Oli Scherer-1/+1
2023-07-05Specialize `try_destructure_mir_constant` for its sole userOli Scherer-1/+1
2023-05-15Suppress "erroneous constant used" for constants tainted by errorsTomasz Miąsko-1/+1
2023-04-28interpret: fail more gracefully on uninit unsized localsRalf Jung-0/+6
2023-04-04Move a const-prop-lint specific hack from mir interpret to const-prop-lint an...Oli Scherer-8/+1
2023-02-20basic dyn* support for MiriRalf Jung-1/+19
2023-02-15Use target instead of machine for mir interpreter integer handling.Oli Scherer-5/+5
2023-02-06interpret: move discriminant reading and writing to separate fileRalf Jung-151/+2
2023-01-22abi: add `AddressSpace` field to `Primitive::Pointer`Erik Desjardins-3/+3
2023-01-20Auto merge of #106090 - WaffleLapkin:dereffffffffff, r=Nilstriebbors-3/+3
2023-01-17Remove double spaces after dots in commentsMaybe Waffle-1/+1
2023-01-17Review suggestionsMaybe Waffle-3/+3
2023-01-17Undo questionable changesMaybe Waffle-1/+1
2023-01-17`rustc_const_eval`: remove `ref` patterns (+some pattern matching imps)Maybe Waffle-6/+6
2022-12-22Rollup merge of #105847 - compiler-errors:issue-104396, r=oli-obkMatthias Krüger-2/+4
2022-12-22Rollup merge of #105602 - RalfJung:read-convenience, r=oli-obkYuki Okushi-0/+11
2022-12-18avoid .into() conversion to identical typesMatthias Krüger-7/+4
2022-12-17Ensure param-env is const before calling eval_to_valtreeMichael Goulet-2/+4
2022-12-12interpret: add read_machine_[ui]size convenience methodsRalf Jung-0/+11
2022-11-25add FIXME'sBoxy-0/+1
2022-11-25Add empty ConstKind::Abstractkadmin-0/+1
2022-11-18review feedbackRalf Jung-5/+5
2022-11-18interpret: use Either over Result when it is not representing an error conditionRalf Jung-15/+17
2022-11-16cleanup and dedupe CTFE and Miri error reportingRalf Jung-34/+37
2022-11-14Rollup merge of #104349 - rustaceanclub:master, r=oli-obkMatthias Krüger-1/+1
2022-11-13add is_sized method on Abi and Layout, and use itRalf Jung-1/+1
2022-11-13fix some typos in commentscui fliter-1/+1
2022-11-02deprecate DelaySpanBugEmitted and use ErrorGuaranteed directlyyukang-2/+2
2022-10-23Comment why normalization is needed for debug assertionsMichael Goulet-1/+8
2022-10-12Use `tidy-alphabetical` in the compilerNilstrieb-1/+2
2022-09-26remove cfg(bootstrap)Pietro Albini-1/+1
2022-09-19ctfe, `const_to_op` only for mir constantslcnr-39/+31
2022-09-14address review againb-naber-12/+13
2022-09-13rebaseb-naber-1/+1
2022-09-13fixes/working versionb-naber-1/+1
2022-09-13use ty::Unevaluated<'tcx, ()> in type systemb-naber-1/+12
2022-09-08bound variables during ctfe are a buglcnr-2/+2
2022-09-07Use niche-filling optimization even when multiple variants have data.Michael Benfield-5/+5
2022-09-07Change name of "dataful" variant to "untagged"Michael Benfield-3/+3
2022-08-30Rollup merge of #101101 - RalfJung:read-pointer-as-bytes, r=oli-obkDylan DPC-1/+1
2022-08-27interpret: make read-pointer-as-bytes *always* work in MiriRalf Jung-1/+1