about summary refs log tree commit diff
path: root/compiler/rustc_mir_build/src/build/expr
AgeCommit message (Expand)AuthorLines
2021-08-18Remove box syntax from rustc_mir_buildest31-28/+34
2021-08-15Introduce hir::ExprKind::Let - Take 2Caio-24/+45
2021-07-10Implement Mutation- and BorrowOfLayoutConstrainedField in thir-unsafeckFabian Wolff-1/+1
2021-06-27fixup! Editon 2021 enables precise captureAman Arora-2/+1
2021-06-27Editon 2021 enables precise captureAman Arora-1/+11
2021-06-13Box `ExprKind::Adt`LeSeulArtichaut-1/+8
2021-05-27Remove feature gateRoxane-19/+15
2021-05-27Rollup merge of #85564 - pnkfelix:issue-85435-readd-capture-disjoint-fields-g...Dylan DPC-15/+20
2021-05-25Rollup merge of #85605 - ptrojahn:closure_struct, r=matthewjasperGuillaume Gomez-4/+2
2021-05-23Replace Local::new(1) with CAPTURE_STRUCT_LOCALPaul Trojahn-4/+2
2021-05-22Make THIR building a stealable queryLeSeulArtichaut-7/+7
2021-05-22Move THIR structure definitions to `rustc_middle`LeSeulArtichaut-10/+9
2021-05-21Revert portion of PR #83521 that injected issue #85435 (and thus exposed unde...Felix S. Klock II-15/+20
2021-05-19Store THIR in `IndexVec`s instead of an `Arena`LeSeulArtichaut-89/+149
2021-04-19fix few typosklensy-2/+2
2021-04-07Rollup merge of #83916 - Amanieu:asm_anonconst, r=petrochenkovDylan DPC-3/+5
2021-04-06Use AnonConst for asm! constantsAmanieu d'Antras-3/+5
2021-04-02Fix diagnostic issue when using FakeReads in closuresRoxane-18/+14
2021-04-01Simplify logical operations CFGAngelicosPhosphoros-29/+18
2021-03-26Use iter::zip in compiler/Josh Stone-4/+5
2021-03-16Auto merge of #82936 - oli-obk:valtree, r=RalfJung,lcnr,matthewjasperbors-7/+9
2021-03-16Auto merge of #82536 - sexxi-goose:handle-patterns-take-2, r=nikomatsakisbors-28/+92
2021-03-15Fix error after rebaseRoxane-4/+3
2021-03-15Add comments with examples and testsRoxane-33/+53
2021-03-14Only borrow place for matching under specific conditionsRoxane-1/+3
2021-03-14Use the correct FakeReadCauseRoxane-30/+38
2021-03-14Delay use of Place in favor of PlaceBuilderRoxane-14/+24
2021-03-14Introduce new fake readsRoxane-8/+33
2021-03-14Remove duplicate asserts, replace eq assert with assert_eqÖmer Sinan Ağacan-3/+1
2021-03-12Run rustfmtOli Scherer-1/+3
2021-03-12Prepare mir::Constant for ty::Const only supporting valtreesOli Scherer-7/+7
2021-03-09Take into account `ExprKind::Scope` when calculating span of temporaryLeSeulArtichaut-6/+6
2021-03-09Remove useless references/dereferencesLeSeulArtichaut-132/+119
2021-03-09Make arena allocation for the THIR workLeSeulArtichaut-20/+20
2021-03-09Remove `Clone` impl for `thir::Expr`LeSeulArtichaut-4/+3
2021-03-09Pull `thir::Cx` out of the MIR `Builder`LeSeulArtichaut-47/+53
2021-03-09[WIP] Eagerly construct bodies of THIRLeSeulArtichaut-263/+207
2021-03-05Shrink the size of Rvalue by 16 bytesOli Scherer-8/+11
2021-02-05Run x.py fmt to fix tidy issuesWesley Wiser-1/+0
2021-02-04Revert "Use `record_operands_moved` more aggresively"Felix S. Klock II-14/+2
2021-02-04Revert "Avoid leaking block expression values"Felix S. Klock II-68/+35
2021-02-02Bump rustfmt versionMark Rousskov-72/+90
2021-01-30Rollup merge of #81291 - sexxi-goose:fix-struct-update-functional-record-upda...Yuki Okushi-5/+10
2021-01-22Make functional record update/struct update syntax works inside closures when...Dhruv Jauhar-5/+10
2021-01-16Auto merge of #80290 - RalfJung:less-intrinsic-write, r=lcnrbors-74/+34
2021-01-07Reintroduce hir::ExprKind::IfCaio-0/+37
2020-12-31remove move_val_init leftoversRalf Jung-74/+34
2020-12-30where possible, pass slices instead of &Vec or &String (clippy::ptr_arg)Matthias Krüger-3/+3
2020-12-24use matches!() macro in more placesMatthias Krüger-5/+1
2020-12-12Auto merge of #79553 - sexxi-goose:mir_min_cap_writeback, r=nikomatsakisbors-117/+360