about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2011-03-01Populate default compilation environment as in rustboot.Graydon Hoare-7/+44
2011-03-01Fix typo in comment.Graydon Hoare-1/+1
2011-03-01Implement structured compare for rec, tup, tag. Un-XFAIL structured-compare.rs.Graydon Hoare-22/+55
2011-03-01rustc: Switch from storing nullary tags as constants to storing their discrim...Patrick Walton-22/+31
2011-02-28rustc: Mark tags that have subtypes with dynamic size as dynamicPatrick Walton-0/+7
2011-02-28rustc: Trivial cleanup: Remove unused "arity" tagPatrick Walton-1/+0
2011-02-28More complete sketch of structural compare. Still not quite working.Graydon Hoare-38/+115
2011-02-28Groundwork for structural comparison. Still lacking the actual loop that does...Graydon Hoare-26/+118
2011-02-28rustc: Write tag variant discriminants into the crate as integer constantsPatrick Walton-1/+15
2011-02-28Declare wrappers to the native functions and use those to createRafael Ávila de Espíndola-4/+29
2011-02-28Update the function declarations with rust abi. A cdeclRafael Ávila de Espíndola-1/+12
2011-02-25rustc: Make the tag info table keyed by both tag ID and type parameter. Also ...Patrick Walton-14/+24
2011-02-25rustc: Eliminate the "ty_params" field from the tag infoPatrick Walton-6/+14
2011-02-25rustc: Eliminate the "variants" field from the tag infoPatrick Walton-37/+22
2011-02-25rustc: Make iter_structural_ty() not use the "variants" field in the tag infoPatrick Walton-62/+42
2011-02-25Add a tag_variant_count() function to trans that doesn't go through the soon-...Patrick Walton-1/+14
2011-02-25rustc: Move all of the logic in type_of() to type_of_inner()Patrick Walton-38/+40
2011-02-25Revert "rustc: Push type parameters down through alt tag patterns; add a test...Patrick Walton-68/+11
2011-02-25Fix typo in crate directive evaluator.Graydon Hoare-1/+1
2011-02-25rustc: Remove FIXME obsoleted by the previous commitPatrick Walton-5/+0
2011-02-25rustc: Push type parameters down through alt tag patterns; add a testPatrick Walton-6/+68
2011-02-25Pass the abi of native functions all the way to codegen.Rafael Ávila de Espíndola-32/+51
2011-02-25There are no native iterators (or at least they are not going to be supportedRafael Ávila de Espíndola-33/+38
2011-02-25Disable test that is failing on valgrind.Rafael Ávila de Espíndola-1/+2
2011-02-24rustc: Perform type parameter substitutions when emitting glue for generic ta...Patrick Walton-32/+56
2011-02-24Support the awful alt-else form in rustboot's cexp grammar, at least transien...Graydon Hoare-0/+17
2011-02-24Connect the crate and source parsers together.Graydon Hoare-2/+58
2011-02-24Handle the mutant 'let'-block directive in rustboot, temporarily.Graydon Hoare-0/+15
2011-02-24Factor crate expr evaluator out of parser, expand to simple scalars and ops, ...Graydon Hoare-82/+453
2011-02-24Cast more aggressively to the callee type when calling generic functions. Add...Patrick Walton-3/+19
2011-02-24Revert "Cast more aggressively to the callee type when calling generic functi...Patrick Walton-13/+3
2011-02-24Cast more aggressively to the callee type when calling generic functions. Add...Patrick Walton-3/+13
2011-02-24Parse crate directive tree in one pass, then evaluate it in a second.Graydon Hoare-33/+96
2011-02-24Restore working rustc run-pass testsBrian Anderson-1/+1
2011-02-23Invert test/run-pass/ for rustcPatrick Walton-113/+104
2011-02-23Implement type descriptor binding. Un-XFAIL test/run-pass/generic-bind.rs.Patrick Walton-19/+100
2011-02-23Add a type for crate directives, to support intermixing with exprs in crate f...Graydon Hoare-1/+17
2011-02-23Parse auth clauses, drop them on the floor. Nothing exists to use them yet an...Graydon Hoare-0/+9
2011-02-23Use the computed abi :-(Rafael Ávila de Espíndola-1/+1
2011-02-23Parse the abi in native modules.Rafael Ávila de Espíndola-11/+49
2011-02-23Handle the new ty_native_fn in type check.Rafael Ávila de Espíndola-25/+96
2011-02-22Rustify some comments lifted directly from the sha-1 reference implementationBrian Anderson-2/+2
2011-02-22Teach rustc about reserved keywordsBrian Anderson-1/+58
2011-02-22Rename std._io to std.io since 'io' is no longer a keywordBrian Anderson-8/+8
2011-02-22rustc: Perform explicit type substitution as requested by the programmerPatrick Walton-0/+66
2011-02-22Un-XFAIL argv.rs and command-line-args.rs.Graydon Hoare-0/+2
2011-02-22Drop for-loop temporary at end of scope, fixes memory leak.Graydon Hoare-0/+1
2011-02-22Add ABI tagging to crates, adjust rustc output and runtime stack-frame setup ...Graydon Hoare-42/+97
2011-02-22Rework typechecking of bind expressionsPatrick Walton-36/+29
2011-02-22Finish the type of native functions. We now getRafael Ávila de Espíndola-2/+2