summary refs log tree commit diff
path: root/src/librustc_mir/dataflow/mod.rs
AgeCommit message (Expand)AuthorLines
2020-05-04Import dataflow impls via the `impls` submoduleDylan MacKenzie-6/+1
2020-05-03Live variable analysisDylan MacKenzie-2/+2
2020-05-03Support backward dataflow analysesDylan MacKenzie-2/+3
2020-03-30rustc -> rustc_middle part 3 (rustfmt)Mazdak Farrokhzad-1/+1
2020-03-30rustc -> rustc_middle part 2Mazdak Farrokhzad-1/+1
2020-03-26Make `framework` a private moduleDylan MacKenzie-1/+1
2020-03-26Move `BottomValue` into `framework/mod.rs`Dylan MacKenzie-45/+2
2020-03-26Update use statements in `dataflow/mod.rs`Dylan MacKenzie-7/+10
2020-03-26Move `MoveDataParamEnv` to beginning of moduleDylan MacKenzie-5/+5
2020-03-26Remove `BitDenotation` frameworkDylan MacKenzie-848/+2
2020-03-20remove redundant returns (clippy::needless_return)Matthias Krüger-2/+2
2020-03-16use direct imports for `rustc::{lint, session}`.Mazdak Farrokhzad-8/+6
2020-03-04cover some more nearby casesRalf Jung-1/+0
2020-03-01Auto merge of #69295 - ecstatic-morse:unified-dataflow-generators, r=tmandrybors-1/+1
2020-02-29Rename `syntax` to `rustc_ast` in source codeVadim Petrochenkov-1/+1
2020-02-28remove redundant clones, references to operands, explicit boolean comparisons...Matthias Krüger-5/+1
2020-02-27Rename `RequiresStorage` to `MaybeRequiresStorage`Dylan MacKenzie-1/+1
2020-02-24don't explicitly compare against true or falseMatthias Krüger-1/+1
2020-02-12Implement `Maybe{Mut,}BorrowedLocals` analysesDylan MacKenzie-2/+1
2020-02-01syntax::print -> new crate rustc_ast_prettyMazdak Farrokhzad-1/+1
2020-01-13Rollup merge of #67313 - oli-obk:document_all_the_t̶h̶i̶n̶g̶s̶dataflow,...Yuki Okushi-1/+23
2020-01-05Remove rustc_hir reexports in rustc::hir.Mazdak Farrokhzad-1/+1
2020-01-02Normalize `syntax::symbol` imports.Mazdak Farrokhzad-1/+1
2019-12-22Format the worldMark Rousskov-118/+131
2019-12-20Address review commentsOliver Scherer-3/+9
2019-12-15Document more use cases of dataflowOliver Scherer-1/+17
2019-10-13ast: remove implicit pprust dependency via Display.Mazdak Farrokhzad-3/+3
2019-09-29remove indexed_vec re-export from rustc_data_structurescsmoe-1/+1
2019-09-29remove bit_set re-export from rustc_data_structurescsmoe-1/+1
2019-09-28Add analysis to determine if a local is indirectly mutableDylan MacKenzie-0/+1
2019-09-19Rollup merge of #64566 - ecstatic-morse:generic-dataflow, r=oli-obkMazdak Farrokhzad-0/+1
2019-09-18Rollup merge of #64532 - ecstatic-morse:dataflow-cursor-get, r=tmandryTyler Mandry-26/+2
2019-09-17Add generic dataflow implDylan MacKenzie-0/+1
2019-09-16Remove `dataflow::state_for_location`Dylan MacKenzie-28/+0
2019-09-16Add a getter for the current state to `DataflowResultsCursor`Dylan MacKenzie-0/+4
2019-09-06Make rustc_mir::dataflow module pubShotaro Yamada-9/+9
2019-08-08Use associated_type_bounds where applicable - closes #61738Ilija Tovilo-8/+3
2019-07-20Avoid cloning Place in report_use_of_moved_or_uninitialized and friendsSantiago Pastorino-2/+2
2019-07-14Actually call `visit_block_entry` in `DataflowResultsConsumer`Dylan MacKenzie-0/+2
2019-07-02Auto merge of #61922 - tmandry:moar-generator-optimization, r=matthewjasperbors-1/+94
2019-07-01Clean up extra lifetime, add assertionsTyler Mandry-2/+2
2019-06-28Remove Clone requirementTyler Mandry-2/+1
2019-06-27Use a more efficient iteration order for forward dataflowDylan MacKenzie-2/+18
2019-06-25Add RequiresStorage pass to decide which locals to save in generatorsTyler Mandry-1/+1
2019-06-25Add DataflowResultsCursorTyler Mandry-0/+94
2019-06-24Auto merge of #61787 - ecstatic-morse:dataflow-split-block-sets, r=pnkfelixbors-157/+135
2019-06-22Merge `BitSetOperator` and `InitialFlow` into one trait.Dylan MacKenzie-12/+26
2019-06-22rustc_mir: don't pass `on_entry` when building transfer functions.Dylan MacKenzie-148/+112
2019-06-22Deny explicit_outlives_requirements in the compilerMatthew Jasper-1/+1
2019-06-18Run `rustfmt --file-lines ...` for changes from previous commits.Eduard-Mihai Burtescu-9/+24