about summary refs log tree commit diff
AgeCommit message (Expand)AuthorLines
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-25Update manual to define identifiers using UAX 31 XID_Start / XID_Continue.Graydon Hoare-13/+19
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
2011-02-21Fix typo in rust_task::start. Should be copying 1 fewer initial arg.Graydon Hoare-2/+2
2011-02-21Find main functions buried within modules. Un-XFAIL import.rs.Graydon Hoare-2/+26
2011-02-21Implement sha-1 in standard library. Closes #228Brian Anderson-0/+400
2011-02-18Implement expr_put. Un-XFAIL foreach-simple.rs; iters w/o env access work.Graydon Hoare-2/+30
2011-02-18Factor out the call typechecking logic so that bind can use itPatrick Walton-42/+101
2011-02-18Pass correct lliterbody; can compile and run no-put iters.Graydon Hoare-3/+11