about summary refs log tree commit diff
path: root/src/librustc_mir/dataflow/impls/borrows.rs
AgeCommit message (Expand)AuthorLines
2019-09-29remove indexed_vec re-export from rustc_data_structurescsmoe-2/+2
2019-09-29remove bit_set re-export from rustc_data_structurescsmoe-1/+1
2019-09-11Make Place Boxed on Statement to reduce size from 64 bytes to 32 bytesSantiago Pastorino-2/+2
2019-09-09Convert Place's projection to a boxed sliceSantiago Pastorino-1/+1
2019-08-31Kill borrows from assignments after generating new borrowsMatthew Jasper-4/+4
2019-08-05Fiddle param env through to `try_eval_bits` in most placesOliver Scherer-1/+5
2019-07-20Migrate from Place enum to Place structSantiago Pastorino-2/+2
2019-06-25Implement From<Local> for Place and PlaceBaseSantiago Pastorino-1/+1
2019-06-22Merge `BitSetOperator` and `InitialFlow` into one trait.Dylan MacKenzie-14/+5
2019-06-22rustc_mir: don't pass `on_entry` when building transfer functions.Dylan MacKenzie-22/+28
2019-06-20Kill conflicting borrows of places with projections.Dylan MacKenzie-30/+25
2019-06-18rustc: remove 'x: 'y bounds (except from comments/strings).Eduard-Mihai Burtescu-1/+1
2019-06-14Unify all uses of 'gcx and 'tcx.Eduard-Mihai Burtescu-7/+7
2019-06-12rustc: replace `TyCtxt<'tcx, 'gcx, 'tcx>` with `TyCtxt<'gcx, 'tcx>`.Eduard-Mihai Burtescu-2/+2
2019-06-12rustc: replace `TyCtxt<'a, 'gcx, 'tcx>` with `TyCtxt<'tcx, 'gcx, 'tcx>`.Eduard-Mihai Burtescu-2/+2
2019-06-09Changed usages of `mir` in librustc::mir and librustc_mir to `body`Jad Ghalayini-11/+11
2019-05-28Changes the type `mir::Mir` into `mir::Body`Claude-Alban RANÉLY-VERGÉ-DÉPRÉ-4/+4
2019-04-13Auto merge of #59612 - matthewjasper:dataflow-usual-newtype-index, r=estebankbors-1/+6
2019-04-03Shrink `mir::Statement`.Nicholas Nethercote-2/+2
2019-04-01Use normal newtype_index macro for MIR dataflowMatthew Jasper-1/+6
2019-03-01Put Local, Static and Promoted as one Base variant of PlaceSantiago Pastorino-3/+3
2019-02-08librustc_mir => 2018Taiki Endo-13/+13
2019-01-30Pass correct arguments to places_conflictMatthew Jasper-1/+1
2018-12-28Remove unnecessary borrow generationMatthew Jasper-14/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-20Auto merge of #56741 - RalfJung:retag-to-raw, r=oli-obkbors-1/+0
2018-12-20Auto merge of #56649 - davidtwco:issue-46589, r=pnkfelixbors-38/+58
2018-12-18treat ref-to-raw cast like a reborrow: do a special kind of retagRalf Jung-1/+0
2018-12-17Add required lifetime parameter to BitDenotation.David Wood-28/+17
2018-12-17Kill borrows from a projection after assignment.David Wood-23/+54
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-1/+1
2018-11-30Remove the `region_map` field from `BorrowSet`Matthew Jasper-8/+1
2018-11-18Only handle ReVar regions in NLL borrowckMatthew Jasper-82/+9
2018-11-18Remove mir::StatementKind::EndRegionMatthew Jasper-5/+1
2018-11-07no more action on ref or cast, but add new MIR statement for escaping a ptr t...Ralf Jung-0/+1
2018-10-29Emit Retag statements, kill Validate statementsRalf Jung-1/+1
2018-10-22Replace the `run_passes!` macro with a regular functionWesley Wiser-1/+0
2018-10-19Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hackOliver Scherer-2/+2
2018-09-24Shrink StatementKind::Assign.Nicholas Nethercote-1/+1
2018-09-18Refactor 'ReadForMatch' into 'FakeRead' and add the cause of the fake readRemy Rakic-1/+1
2018-09-18Auto merge of #54286 - nnethercote:BitSet, r=pnkfelixbors-12/+11
2018-09-18Eliminate `BitwiseOperator`.Nicholas Nethercote-5/+5
2018-09-18Merge indexed_set.rs into bitvec.rs, and rename it bit_set.rs.Nicholas Nethercote-8/+7
2018-09-15Make rustc::middle::region::Scope's fields publicMarshall Bowers-1/+4
2018-09-15Auto merge of #54177 - nnethercote:streamline-bit-stuff, r=Mark-Simulacrumbors-1/+1
2018-09-13Remove bitslice.rs.Nicholas Nethercote-1/+1
2018-09-10add the `AscribeUserType` statement kindNiko Matsakis-1/+1
2018-09-08Auto merge of #53909 - mikhail-m1:53643, r=nikomatsakisbors-2/+8
2018-09-08Rollup merge of #53942 - nnethercote:faster-precompute, r=nikomatsakiskennytm-41/+79
2018-09-06Skip a shared borrow of a immutable local variablesMikhail Modin-2/+8