about summary refs log tree commit diff
path: root/src/librustc_passes
AgeCommit message (Expand)AuthorLines
2020-07-15Add and use more static symbols.Nicholas Nethercote-3/+3
2020-07-10Rollup merge of #74127 - tamird:allowlist, r=oli-obkManish Goregaokar-2/+2
2020-07-10Rollup merge of #74109 - nbdd0121:issue-74082, r=petrochenkovManish Goregaokar-0/+2
2020-07-10Avoid "whitelist"Tamir Duberstein-2/+2
2020-07-06Only allow `repr(i128/u128)` on enumGary Guo-0/+2
2020-07-05Use for<'tcx> fn pointers in Providers, instead of having Providers<'tcx>.Eduard-Mihai Burtescu-14/+14
2020-07-02Rollup merge of #73753 - eddyb:extraneous-lifetime, r=ManishearthManish Goregaokar-4/+4
2020-07-02Rollup merge of #73726 - davidtwco:issue-73541-labelled-break-through-closure...Manish Goregaokar-10/+1
2020-07-03Use 'tcx for references to AccessLevels wherever possible.Eduard-Mihai Burtescu-4/+4
2020-07-02Auto merge of #73751 - eddyb:no-empty-tables, r=nikomatsakisbors-29/+44
2020-07-02rustc_passes/dead: avoid using TypeckTables::empty for MarkSymbolVisitor.Eduard-Mihai Burtescu-19/+26
2020-07-02rustc_passes/reachable: avoid using TypeckTables::empty for ReachableContext.Eduard-Mihai Burtescu-10/+18
2020-07-02resolve: disallow label use through closure/asyncDavid Wood-10/+1
2020-07-01Rollup merge of #73449 - ehuss:duplicate-lang-item, r=matthewjasperManish Goregaokar-0/+22
2020-06-30Switch crate_extern_paths to a query, and tweak wording.Eric Huss-9/+10
2020-06-30Provide more information on duplicate lang item error.Eric Huss-0/+21
2020-06-30change `skip_binder` to use T by valueBastian Kauschke-1/+1
2020-06-28Use `LocalDefId` in HIR const-checkerDylan MacKenzie-4/+4
2020-06-28Stop checking for `while` and `loop` in a const contextDylan MacKenzie-7/+6
2020-06-28Require `allow_internal_unstable` in HIR const-checkerDylan MacKenzie-13/+50
2020-06-28HIR const-checkingDylan MacKenzie-35/+10
2020-06-27Rollup merge of #73796 - lcnr:LocalDefId, r=matthewjasperManish Goregaokar-19/+19
2020-06-27use LocalDefId in module checkingBastian Kauschke-19/+19
2020-06-26Explain move errors that occur due to method calls involving `self`Aaron Hill-1/+5
2020-06-24Implement associated lang itemsAaron Hill-19/+35
2020-06-21Make is_freeze and is_copy_modulo_regions take TyCtxtAtRalf Jung-1/+1
2020-06-19Rollup merge of #73011 - richkadel:llvm-count-from-mir-pass, r=tmandryRalf Jung-2/+14
2020-06-15Add case for count_code_region() extern lang_itemRich Kadel-2/+14
2020-06-15make all uses of ty::Error or ConstKind::Error delay a span bugmark-2/+2
2020-06-15Auto merge of #72080 - matthewjasper:uniform-impl-trait, r=nikomatsakisbors-8/+9
2020-06-11Rollup merge of #73182 - Aaron1011:feature/call-fn-span, r=matthewjasperDylan DPC-1/+1
2020-06-11Rename `TyKind::Def` to `OpaqueDef`Matthew Jasper-1/+1
2020-06-11Remove associated opaque typesMatthew Jasper-4/+4
2020-06-11Stop special casing top level TAITMatthew Jasper-3/+4
2020-06-10Track span of function in method calls, and use this in #[track_caller]Aaron Hill-1/+1
2020-06-09Fix more clippy warningsMatthias Krüger-1/+1
2020-05-29liveness: Warn about unused captured variablesTomasz Miąsko-54/+170
2020-05-29liveness: Include upvars in the analysisTomasz Miąsko-36/+33
2020-05-29liveness: Remove unused fallthrough_lnTomasz Miąsko-9/+1
2020-05-29liveness: Remove unused clean_exit_varTomasz Miąsko-14/+1
2020-05-29liveness: Log information about used variablesTomasz Miąsko-5/+8
2020-05-26Rollup merge of #72581 - samrat:allow-desugared-break-in-labeled-block, r=dav...Dylan DPC-1/+2
2020-05-26Allow unlabeled breaks from desugared `?` in labeled blocksSamrat Man Singh-1/+2
2020-05-25Rollup merge of #72544 - sexxi-goose:upvars_mentioned, r=matthewjasperRalf Jung-7/+7
2020-05-25Rollup merge of #72537 - Amanieu:fix-asm-liveness, r=petrochenkovRalf Jung-8/+2
2020-05-24librustc_middle: Rename upvars query to upvars_mentionedAman Arora-7/+7
2020-05-24Fix InlineAsmOperand expresions being visited twice during liveness checkingAmanieu d'Antras-8/+2
2020-05-22Use `OnceCell` instead of `Once`Dylan MacKenzie-3/+3
2020-05-18Move InlineAsmTemplatePiece and InlineAsmOptions to librustc_astAmanieu d'Antras-3/+3
2020-05-18Add support for high byte registers on x86Amanieu d'Antras-13/+11