about summary refs log tree commit diff
path: root/src/librustc/middle/effect.rs
AgeCommit message (Expand)AuthorLines
2017-09-24move unsafety checking to MIRAriel Ben-Yehuda-316/+0
2017-08-30rustc: Remove the `used_unsafe` field on TyCtxtAlex Crichton-5/+50
2017-08-11Improve validation of TypeckTables keys.Michael Woerister-2/+1
2017-08-11Encapsulate sub-table access in TypeckTables and validate keys on each access.Michael Woerister-1/+1
2017-08-11Make TypeckTables::type_dependent_defs use ItemLocalId instead of NodeId.Michael Woerister-2/+3
2017-08-09rustc: Rearchitect lints to be emitted more eagerlyAlex Crichton-5/+5
2017-07-05use field init shorthand in src/librustcZack M. Davis-1/+1
2017-06-27rustc: move the PolyFnSig out of TyFnDef.Eduard-Mihai Burtescu-15/+13
2017-06-01rustc: replace method_map with Def::Method and node_substs entries.Eduard-Mihai Burtescu-2/+2
2017-06-01rustc: avoid using MethodCallee's signature where possible.Eduard-Mihai Burtescu-3/+4
2017-06-01rustc: replace TyFnDef in MethodCallee with just the FnSig.Eduard-Mihai Burtescu-3/+3
2017-06-01rustc: keep overloaded autoderef MethodCallee's in Adjust.Eduard-Mihai Burtescu-3/+1
2017-05-25Use parameter environment associated with field use, not field definitionVadim Petrochenkov-2/+8
2017-05-25Make assignments to `Copy` union fields safeVadim Petrochenkov-0/+18
2017-05-09resolved merge conflictsachernyak-1/+1
2017-05-08Remove need for &format!(...) or &&"" dances in `span_label` callsOliver Schneider-1/+1
2017-05-05is_foreign_itemachernyak-1/+1
2017-04-04remove `EffectCheck`Niko Matsakis-3/+0
2017-02-25rustc: combine BareFnTy and ClosureTy into FnSig.Eduard-Mihai Burtescu-2/+2
2017-01-26rustc: rename TyCtxt's `map` field to `hir`.Eduard-Mihai Burtescu-3/+3
2017-01-25rename `Tables` to `TypeckTables`Niko Matsakis-2/+2
2017-01-06rustc: keep track of tables everywhere as if they were per-body.Eduard-Mihai Burtescu-6/+16
2016-12-28rustc: separate bodies for static/(associated)const and embedded constants.Eduard-Mihai Burtescu-1/+1
2016-11-29revamp `Visitor` with a single method for controlling nested visitsNiko Matsakis-3/+3
2016-11-29Split nested_visit_mode function off from nested_visit_mapFlorian Diebold-3/+3
2016-11-29rustc: replace body exprs by their idsFlorian Diebold-8/+12
2016-11-28rustc: use Span's allow_internal_unstable instead of hir::BlockCheckMode.Eduard Burtescu-1/+1
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-2/+2
2016-11-28rustc: desugar UFCS as much as possible during HIR lowering.Eduard Burtescu-1/+1
2016-11-16refactor Visitor into ItemLikeVisitor and intravisit::VisitorNiko Matsakis-1/+1
2016-11-10rustc: use an Expr instead of a Block for function bodies.Eduard Burtescu-1/+1
2016-11-02rustc: record the target type of every adjustment.Eduard Burtescu-3/+3
2016-11-02rustc: make all read access to tcx.tables go through a method.Eduard Burtescu-2/+2
2016-09-09Auto merge of #36331 - petrochenkov:tyadt, r=eddybbors-5/+9
2016-09-09Issue deprecation warnings for safe accesses to extern staticsVadim Petrochenkov-9/+31
2016-09-08Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt`Vadim Petrochenkov-5/+9
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-2/+2
2016-09-04Replace `_, _, _` with `..`Vadim Petrochenkov-2/+2
2016-09-03Make accesses to union fields unsafeVadim Petrochenkov-4/+20
2016-08-19Fix label messages for E0133Chiu-Hsiang Hsu-1/+1
2016-08-10Update E0133 to new formatChiu-Hsiang Hsu-3/+5
2016-07-29intravisit: Fold functionality of IdVisitor into the regular Visitor.Michael Woerister-2/+2
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+1
2016-06-10Introduce TyCtxt::expect_def/expect_resolution helpers and use them where pos...Vadim Petrochenkov-1/+1
2016-05-11rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users.Eduard Burtescu-2/+2
2016-05-11rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper.Eduard Burtescu-2/+2
2016-04-06rustc: move middle::{def,def_id,pat_util} to hir.Eduard Burtescu-1/+1
2016-04-06rustc: move rustc_front to rustc::hir.Eduard Burtescu-3/+3
2016-03-27rustc: move cfg, infer, traits and ty from middle to top-level.Eduard Burtescu-2/+2
2016-03-21Expose attached attributes to `FnKind` abstraction so that I can look at them...Felix S. Klock II-2/+2