about summary refs log tree commit diff
path: root/src/librustc_borrowck
AgeCommit message (Expand)AuthorLines
2016-11-29Split nested_visit_mode function off from nested_visit_mapFlorian Diebold-6/+6
2016-11-29Save bodies of functions for inlining into other cratesFlorian Diebold-6/+10
2016-11-29rustc_borrowck: fix compilationFlorian Diebold-23/+31
2016-11-29rustc: replace body exprs by their idsFlorian Diebold-1/+1
2016-11-28Adds TyCtxt::require_lang_item(LangItem) to simplify lang item requires.Mark-Simulacrum-2/+1
2016-11-29add hint to fix error for immutable ref in argMikhail Modin-46/+83
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-1/+1
2016-11-21Cleanup `InternedString`.Jeffrey Seyfried-1/+1
2016-11-20Refactor `P<ast::MetaItem>` -> `ast::MetaItem`.Jeffrey Seyfried-2/+1
2016-11-16refactor Visitor into ItemLikeVisitor and intravisit::VisitorNiko Matsakis-1/+1
2016-11-14Auto merge of #37278 - matklad:lone-lifetime, r=jseyfriedbors-1/+1
2016-11-14Fix where clauses parsingAleksey Kladov-1/+1
2016-11-12Auto merge of #37675 - arielb1:trans-closure, r=eddybbors-3/+5
2016-11-12rustc: move closure upvar types to the closure substsAriel Ben-Yehuda-3/+5
2016-11-12Auto merge of #37531 - estebank:fix-ref-mut-mut, r=jonathandturnerbors-8/+15
2016-11-12Auto merge of #37554 - mikhail-m1:dnlle, r=jonathandturnerbors-13/+12
2016-11-10rustc: clean up lookup_item_type and remove TypeScheme.Eduard Burtescu-1/+1
2016-11-10rustc: use an Expr instead of a Block for function bodies.Eduard Burtescu-11/+9
2016-11-09Rollup merge of #37229 - nnethercote:FxHasher, r=nikomatsakisEduard-Mihai Burtescu-9/+9
2016-11-09Improve "Doesn't live long enough" errorMikhail Modin-13/+12
2016-11-08Auto merge of #36843 - petrochenkov:dotstab, r=nikomatsakisbors-1/+1
2016-11-08Replace FnvHasher use with FxHasher.Nicholas Nethercote-9/+9
2016-11-04Rollup merge of #37408 - eddyb:lazy-5, r=nikomatsakisAlex Crichton-1/+1
2016-11-03Fix invalid "ref mut mut" sugestionEsteban Küber-8/+15
2016-11-03Stabilize `..` in tuple (struct) patternsVadim Petrochenkov-1/+1
2016-11-02Rollup merge of #37498 - sanxiyn:unused-type-alias, r=eddybJonathan Turner-6/+2
2016-11-02rustc: make all read access to tcx.tables go through a method.Eduard Burtescu-1/+1
2016-11-01Improve "Doesn't live long enough" errorMikhail Modin-0/+13
2016-10-31Changed most vec! invocations to use square bracesiirelu-2/+2
2016-10-31Remove unused type aliasesSeo Sanghyeon-6/+2
2016-10-28rustc: move the MIR map into TyCtxt.Eduard Burtescu-26/+15
2016-10-28rustc: move mir::repr::* to mir.Eduard Burtescu-90/+83
2016-10-26Auto merge of #37270 - Mark-Simulacrum:smallvec-optimized-arenas, r=eddybbors-1/+1
2016-10-25Utilize AccumulateVec to avoid heap allocations in mk_{substs, type_list, tup...Mark-Simulacrum-1/+1
2016-10-20improve "Doesn't live long enough" errorMikhail Modin-7/+23
2016-10-17prefer `if let` to match with `None => { }` arm in some placesZack M. Davis-61/+51
2016-10-12Rollup merge of #36995 - nrc:stable, r=@nikomatsakisAlex Crichton-1/+1
2016-10-12Stabilise `?`Nick Cameron-1/+1
2016-10-10Move IdxSetBuf and BitSlice to rustc_data_structuresWesley Wiser-314/+8
2016-09-27Ignore local kind in MIR dataflowJonas Schievink-10/+3
2016-09-26Rename MIR local iterators to match conventionJonas Schievink-1/+1
2016-09-26[WIP] Move MIR towards a single kind of localJonas Schievink-59/+38
2016-09-19librustc: Implement def-use chains and trivial copy propagation on MIR.Patrick Walton-0/+1
2016-09-19librustc: Add a new nop statement to the MIR.Patrick Walton-3/+6
2016-09-16fix dynamic drop for unionsAriel Ben-Yehuda-22/+36
2016-09-16forbid moves out of slicesAriel Ben-Yehuda-12/+15
2016-09-16groundwork refactoring of `gather_moves`Ariel Ben-Yehuda-703/+474
2016-09-08Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt`Vadim Petrochenkov-91/+90
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-30/+30
2016-09-04Replace `_, _, _` with `..`Vadim Petrochenkov-3/+4