about summary refs log tree commit diff
path: root/src/comp/middle
AgeCommit message (Expand)AuthorLines
2011-07-15rustc: Implement logging in DPSPatrick Walton-9/+109
2011-07-15rustc: Translate literals in DPS style; no constification of strings yet.Patrick Walton-7/+174
2011-07-15rustc: Write names of local variables into the LLVM IR when debug mode is onPatrick Walton-0/+3
2011-07-15gather_locals shouldn't descend down into fns and items.Michael Sullivan-1/+10
2011-07-15Convert gather_locals to use visit.Michael Sullivan-18/+21
2011-07-15rustc: Introduce a stub destination-passing-style translation engine, accessi...Patrick Walton-11/+175
2011-07-15rustc: Remove a bunch of exterior vectorsPatrick Walton-96/+95
2011-07-15Getting rid of unnecessary casts for objects.Lindsey Kuper-3/+0
2011-07-14refactor: Move the task and communication-related translation functions to a ...Eric Holk-284/+310
2011-07-14Make collect_upvars know about function args.Michael Sullivan-1/+6
2011-07-14Generalize collect_upvars to work over any type of ast node.Michael Sullivan-7/+12
2011-07-14refactor: Move the LLVM type and constant constructors into a new module.Eric Holk-430/+494
2011-07-14Consolidate some arguments in typeck by just passing the record they came from.Michael Sullivan-12/+12
2011-07-14Factor out build_environment's code to find a variable in a function context.Michael Sullivan-18/+24
2011-07-14Factor out closure construction from trans_for_each.Michael Sullivan-14/+24
2011-07-14Fix array out of bounds index in load_environment.Michael Sullivan-3/+3
2011-07-14Move rustc to the new llvm type system. Requires an update to llvm trunk.Rafael Ávila de Espíndola-29/+32
2011-07-14rustc: First stab at interior string literals, untested as of yetPatrick Walton-12/+86
2011-07-14Revert "Allow main to return int"Brian Anderson-4/+1
2011-07-14Keep a pointer to rust_object_type.Rafael Ávila de Espíndola-7/+9
2011-07-14Main part of the type system rewrite:Rafael Ávila de Espíndola-75/+87
2011-07-13Allow main to return intBrian Anderson-1/+4
2011-07-13Make resolve and the typechecker check for a main fn of theTim Chevalier-8/+65
2011-07-13rustc: Remove some interior vectors from ty, except the ones that I think wer...Patrick Walton-35/+8
2011-07-13Small cleanups that were missing in the last patch.Rafael Ávila de Espíndola-4/+3
2011-07-13Next step in the type system change. Add task_type to the context.Rafael Ávila de Espíndola-24/+29
2011-07-13rustc: Remove exterior vectors from resolve againPatrick Walton-29/+26
2011-07-13First step in the typesystem rewrite:Rafael Ávila de Espíndola-71/+71
2011-07-13Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases.Graydon Hoare-108/+108
2011-07-13Use more precise spans in error messages for bad FRU exprsTim Chevalier-9/+15
2011-07-13Refactor out some repetetive code in trans_altMarijn Haverbeke-59/+46
2011-07-13Add box patternsMarijn Haverbeke-13/+56
2011-07-13box patterns, expect for the trans partMarijn Haverbeke-0/+18
2011-07-13Do not allow moving out of obj fields, properly check move initsMarijn Haverbeke-87/+85
2011-07-12Revert "rustc: Remove some exterior vectors from ty.rs"Patrick Walton-15/+42
2011-07-12Revert "rustc: Remove exterior vectors from resolve"Patrick Walton-26/+29
2011-07-12rustc: Remove the last few exterior vectors from typeckPatrick Walton-42/+25
2011-07-12rustc: Remove a few scattered uses of exterior vectors from typestatePatrick Walton-18/+6
2011-07-12rustc: Remove exterior vectors from resolvePatrick Walton-29/+26
2011-07-12rustc: Remove some exterior vectors from ty.rsPatrick Walton-42/+15
2011-07-12rustc: Remove some useless std::vec importsPatrick Walton-2/+0
2011-07-12Fix type inference of fn tail expressions. Closes #680Brian Anderson-4/+5
2011-07-12rustc: Remove some interior vectors from typestate and some useless vec-relat...Patrick Walton-16/+7
2011-07-13Use switches rather than chained conditionals to compile alt matchesMarijn Haverbeke-219/+431
2011-07-12Make resolve check for type-variable name-shadowingTim Chevalier-5/+18
2011-07-12Remove some obsolete comments.Lindsey Kuper-9/+0
2011-07-12"Narrow scope forgives many sins." -- M. SchwernLindsey Kuper-15/+14
2011-07-12rustc: Simplify tritv::copy; shaves a couple of seconds off typestate.Patrick Walton-17/+4
2011-07-12Add missing filesTim Chevalier-111/+44
2011-07-12Fix potential use-before-init bug in transTim Chevalier-5/+9