about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2011-02-10Add missing fold of native functions.Rafael Avila de Espindola-13/+37
2011-02-10Handle instantiations where some type parameters remain parameters (eg. deriv...Graydon Hoare-1/+5
2011-02-10Commit the trap-failure hack to the runtime, since I keep using it in my work...Graydon Hoare-0/+4
2011-02-09Fix bug in test and un-XFAIL 4 tests now passing on rustc.Graydon Hoare-1/+5
2011-02-09Re-indent a bit of elf.Graydon Hoare-10/+10
2011-02-09Add several 1-word .bss fragments for FreeBSD.Graydon Hoare-0/+21
2011-02-09Add .bss fragment support to elf.Graydon Hoare-3/+31
2011-02-09Adapt elf.ml to handle differences between Linux and FreeBSD.Rob Arnold-6/+20
2011-02-09Add FreeBSD_x86_elf target to rustbootRob Arnold-6/+29
2011-02-09Add FreeBSD support in the MakefileRob Arnold-0/+20
2011-02-09Elide passed-typarams when tydescs are captured. Un-XFAIL generic-obj.rs.Graydon Hoare-12/+17
2011-02-08Add the single instruction required in activate glue to fix burning darwin ti...Graydon Hoare-2/+99
2011-02-08Handle subtle view-shift on outptr in generic calls. Can construct generic ob...Graydon Hoare-0/+8
2011-02-08Overhaul ABI. All retptrs, all the time.Graydon Hoare-254/+224
2011-02-07Add a fixme for last commit.Graydon Hoare-0/+4
2011-02-07Iterate type unification to drive the types a bit further down into the leave...Graydon Hoare-1/+33
2011-02-07Add native modules to resolve. With this hello world gets to typecheck.Rafael Avila de Espindola-19/+60
2011-02-07Fix expressions with paths with more than one element.Rafael Avila de Espindola-2/+9
2011-02-07Add support forRafael Avila de Espindola-1/+16
2011-02-04Parse function declarations.Rafael Ávila de Espíndola-43/+101
2011-02-04Factor the parsing of "type foo" into parse_type_decl.Rafael Ávila de Espíndola-9/+11
2011-02-03Capture typarams into obj, independent of body tydesc.Graydon Hoare-19/+79
2011-02-02Attempt to put out burning tinderbox.Graydon Hoare-1/+5
2011-02-02Hack to work around apparent LLVM bug?Graydon Hoare-1/+7
2011-02-02Store tydesc for whole body, not just fields, in objs and closures. Handles u...Graydon Hoare-14/+5
2011-02-02Handle missing case in linearize_ty_params.Graydon Hoare-0/+1
2011-02-02Change decl_upcall to decl_upcall_glue, more correct name.Graydon Hoare-2/+2
2011-02-02Add trace and trap helpers to trans for low level diagnostics.Graydon Hoare-0/+18
2011-02-02Add most of the plumbing for native items and add support for parsing native ...Rafael Ávila de Espíndola-4/+96
2011-02-01Fix buggy argument assembly for upcall_get_type_desc. Can now complete calls ...Graydon Hoare-5/+5
2011-02-01Add very minimal support for native modules. For now they must be empty.Rafael Ávila de Espíndola-2/+64
2011-02-01Pick up case for expr_block from brson's other branch.Graydon Hoare-0/+15
2011-02-01Implement 'else if'Graydon Hoare-28/+104
2011-02-01Use dynamic GEP and silly offset-encoding on tydescs. Successful call into a ...Graydon Hoare-40/+70
2011-02-01Add ty_type.Graydon Hoare-0/+10
2011-02-01Allow the else part of an expr_if to be either expr_if or expr_blockBrian Anderson-30/+55
2011-01-31More work on derived tydescs. Can compile simple tests with generic objects.Graydon Hoare-33/+53
2011-01-31Merge branch 'master' into forgraydon-elseifBrian Anderson-130/+193
2011-01-31Majority of the remaining work for derived tydescs. Not quite working yet.Graydon Hoare-106/+159
2011-01-31Re-XFAIL those tests enabled by commit a2789363e107114fdc0ff45a208ae67a56bce73a.Graydon Hoare-2/+17
2011-01-31Run cleanups in reverse order. Not presently observable, no dtors.Graydon Hoare-1/+4
2011-01-31Un-XFAIL some compile-fail testsBrian Anderson-0/+7
2011-01-30Reenable xfailed tests for rustboot that pass with trivial or no modificationsBrian Anderson-40/+25
2011-01-30Teach rustc to parse 'else if'Brian Anderson-2/+17
2011-01-28Fix a bug in linearize and get the captured tydescs type right.Graydon Hoare-9/+11
2011-01-28Pass linearized typarams to make_generic_glue. Steps toward derived tydescs.Graydon Hoare-5/+22
2011-01-28Pass tydesc array into type glue fns as first arg. Required for derived tydes...Graydon Hoare-40/+53
2011-01-28Pass --error-exitcode=1 to valgrind in Makefile; XFAIL test that was memcheck...Graydon Hoare-1/+1
2011-01-28Teach rustc to failBrian Anderson-11/+31
2011-01-28Correctly handle "import foo = bar.zed;".Rafael Ávila de Espíndola-28/+54