aboutsummaryrefslogtreecommitdiff
path: root/src/comp
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix two incorrect block-context uses in rustc.Graydon Hoare2010-11-051-2/+2
|
* Teach rustc to generate type descriptors.Graydon Hoare2010-11-051-0/+13
|
* Switch rustc to llvm 2.8 rather than 2.8svn on windows.Graydon Hoare2010-11-051-1/+1
|
* rustc: Implement function typesPatrick Walton2010-11-053-1/+60
|
* Move the option type to its own modulePatrick Walton2010-11-056-45/+44
|
* Revert "Move the option type to its own module"Patrick Walton2010-11-056-14/+15
|
* Move the option type to its own modulePatrick Walton2010-11-056-15/+14
|
* Fix buggy while and do-while translation in rustc. Add test.Graydon Hoare2010-11-042-11/+19
|
* rustc: Use an extensible annotation field instead of putting option[@ty] ↵Patrick Walton2010-11-034-89/+94
| | | | everywhere
* Support while and do-while loops in rustc.Graydon Hoare2010-11-034-0/+116
|
* Teach rustc lexer about changes to stratum, opacity and effect keywords.Graydon Hoare2010-11-032-5/+21
|
* Split out stratum-checking pass, implement more-strict (overly aggressive) ↵Graydon Hoare2010-11-021-16/+16
| | | | impure-effect checking.
* First pass on splitting stratum and opacity off of effects. WIP.Graydon Hoare2010-11-024-57/+57
|
* Long line police.Graydon Hoare2010-10-221-3/+5
|
* Pass outptr as in rustboot. Probably need to revisit this ABI. Also ↵Graydon Hoare2010-10-221-5/+18
| | | | disgusting hack employed. Please remove.
* Collect all fns first so decl order doesn't matter to translation.Graydon Hoare2010-10-221-13/+41
|
* Extremely broken hacked-up incorrect attempt at 'ret'.Graydon Hoare2010-10-222-0/+36
|
* Don't use string == in x86.rs, doesn't work.Graydon Hoare2010-10-221-1/+1
|
* rustc: Add an "_" prefix to assembler-generated symbols on MacPatrick Walton2010-10-221-0/+5
|
* Implement check-exprs, un-xfail 5 rustc tests.Graydon Hoare2010-10-225-2/+57
|
* Add makefile bits to run rustc on the testsuite as part of 'make check'. ↵Graydon Hoare2010-10-221-11/+0
| | | | Mostly xfailed.
* Give rustc the beginnings of an option-processing loop (at least -nowarn, -h ↵Graydon Hoare2010-10-222-11/+99
| | | | and -o).
* Make append take a mutable &. Not even checked at present, tsk tsk.Graydon Hoare2010-10-221-1/+1
|
* Add support for passing args to fns in rustc.Graydon Hoare2010-10-211-18/+49
|
* Support basic function calls in rustc.Graydon Hoare2010-10-211-8/+39
|
* Teach rustc to parse call exprs.Graydon Hoare2010-10-211-0/+13
|
* line length police; moved comp.util.bits to std.bitvDave Herman2010-10-212-464/+0
|
* oops, removed bits.test() from mainDave Herman2010-10-211-4/+0
|
* tests and bugfixes: fns take aliases, fixed binary arithmetic in create, ↵Dave Herman2010-10-212-29/+322
| | | | eliminated wasted bit per uint
* simpler computation of uint_bits(), plus whitespace policeDave Herman2010-10-201-13/+2
|
* created a first draft of the bit-set library needed for typestateDave Herman2010-10-202-0/+186
|
* Translate lazy && and || operators in rustc.Graydon Hoare2010-10-191-7/+58
|
* Parse and translate assignments.Graydon Hoare2010-10-192-18/+50
|
* Teach trans to allocate, initialize and load from local variables.Graydon Hoare2010-10-196-18/+174
|
* Add a type slot to the ASTPatrick Walton2010-10-194-93/+98
|
* Partial work on adding types to the ASTPatrick Walton2010-10-192-54/+71
|
* Store items and decls in vecs to preserve input order, index externally. ↵Graydon Hoare2010-10-186-137/+232
| | | | Implement block-local name lookup.
* More work on resolving names in rustc. Basic expr_name lookup working on ↵Graydon Hoare2010-10-186-93/+123
| | | | items and args.
* Rewrite session formatting to use #fmt extension.Graydon Hoare2010-10-181-19/+7
|
* Begin sketching name lookup in rustc.Graydon Hoare2010-10-181-6/+74
|
* Expand rustc's fold to update env on block boundaries.Graydon Hoare2010-10-181-1/+14
|
* Roll back the expr->lval change. We're now LL(1) again.Patrick Walton2010-10-183-128/+39
|
* Encode and decode tag types in dwarf properly. Add list module to std. Shift ↵Graydon Hoare2010-10-155-21/+12
| | | | rustc to use std.util.option. Fix various dependent bugs. Closes #73.
* Finish the fold drivers in fold.rs.Graydon Hoare2010-10-142-12/+110
|
* rustc: Parse field and vector indexing expressionsPatrick Walton2010-10-141-34/+53
|
* Enable resolve pass in rustc. Doesn't do much yet aside from an incomplete ↵Graydon Hoare2010-10-141-0/+2
| | | | identity fold, but no longer crashes.
* Stop using bound refs (don't work; leak) and work around auto-deref ↵Graydon Hoare2010-10-141-23/+33
| | | | vec-append bug.
* rustc: Start work on lvalsPatrick Walton2010-10-143-59/+137
|
* rustc: Lex identifiers that have numbers in them tooPatrick Walton2010-10-131-2/+6
|
* rustc: Parse vector typesPatrick Walton2010-10-132-0/+8
|