about summary refs log tree commit diff
path: root/src/boot
AgeCommit message (Expand)AuthorLines
2010-09-09Switch tags to purely nominal, removing TY_iso and TY_idx. Seems to mostly wo...Graydon Hoare-1245/+842
2010-09-08First lame stab at solving the diamond import problemPatrick Walton-25/+53
2010-09-07Lots of design changes around proxies and message passing. Made it so that do...Michael Bebenita-1/+1
2010-09-07Initial support for a global crate metadata cachePatrick Walton-6/+22
2010-09-07Recursively drop a type's parts if the type uses any typarams, since those ty...Roy Frostig-3/+5
2010-09-03When vec growth results in a newly allocated (extended) buffer, copy existing...Roy Frostig-19/+195
2010-09-03Assert to insure that the worst-case glue-call arg count is not exceeded unle...Roy Frostig-5/+22
2010-09-03Fail a bit more informatively on a bad get_element_ptr_dyn.Roy Frostig-2/+6
2010-08-31Whitespace churn.Graydon Hoare-1/+1
2010-08-27Make pattern-alt drop the slots it initializes when binding slot patterns. U...Roy Frostig-37/+52
2010-08-27Have alt-pattern drop the slots it initializes when binding slot patterns. A...Roy Frostig-10/+35
2010-08-27Read definitions of tag types in the DWARFPatrick Walton-32/+52
2010-08-27Zero-length tuples can show up in tag types. Don't forbid them when reading i...Patrick Walton-2/+2
2010-08-26Simplify null-writing from commit 8559a85ccacf70c51d93759b47a3880ae818b247 so...Roy Frostig-8/+2
2010-08-26Encode tag names in the DWARFPatrick Walton-4/+5
2010-08-26Make vreg constrs per-quad, regfence on nontrivial constrs, back out workarou...Graydon Hoare-46/+61
2010-08-26Add automatic parameter instantiation. Closes #45.Patrick Walton-8/+31
2010-08-26When copying function values, null out the destination's binding iff the sour...Roy Frostig-1/+14
2010-08-26Add check to catch bug underlying issue #152. Fix will take longer.Graydon Hoare-1/+14
2010-08-26Add a "param handler" to demand_fn for use in automatic type parameter instan...Patrick Walton-12/+18
2010-08-26Tiny style cleanup in a pattern match in type.mlPatrick Walton-1/+1
2010-08-25Typecheck function patternsPatrick Walton-9/+14
2010-08-25Insure bools remain 0x1 or 0x0 by having boolean-NOT not just be a simple bit...Roy Frostig-1/+4
2010-08-25Add element to closure to hold captured tydesc (not body tydesc).Graydon Hoare-10/+12
2010-08-25Merge obj-drop and closure-drop code, handles freeing bound exteriors now.Graydon Hoare-44/+52
2010-08-25First pass of updating the in-memory layout of closures, for issue 81.Graydon Hoare-121/+153
2010-08-25Janitorial work on obj box / body / field terminology, following froystig's b...Graydon Hoare-35/+40
2010-08-25Fix ghastly typestate bug breaking nested functions.Graydon Hoare-8/+58
2010-08-25Introduce "type patterns" to the typechecker in preparation for function type...Patrick Walton-36/+51
2010-08-25Obj ctors are not obj fns so translate their frame entry as such.Roy Frostig-1/+1
2010-08-24Fix residual nonsense of storing crate-rel displacements in a closure pair (m...Graydon Hoare-12/+4
2010-08-24Remove obsolete TODO about checking for return statementsPatrick Walton-2/+0
2010-08-24Elide preempt check on thunk and ctor frames. Wins 8kb on rustc.Graydon Hoare-6/+11
2010-08-24Avoid emitting unnecessary frame glue. Wins a couple hundred kb of rustc.Graydon Hoare-33/+74
2010-08-24Avoid iterating ty parts on drop when there are no heap pointers in ty. Wins ...Graydon Hoare-5/+31
2010-08-24Shrink size of glue calls. Wins a few tens of kb on rustc.Graydon Hoare-6/+2
2010-08-24Make error reporting slightly more regular.Graydon Hoare-3/+4
2010-08-23Merge remote branch 'tohava/master'Graydon Hoare-70/+148
2010-08-20Warn when the value of "spawn" is unused, as it's uselessPatrick Walton-1/+5
2010-08-21Modified parser to handle alt type andadded a few testsOr Brostovski-66/+148
2010-08-20Modify session to report errors in an emacs-parser-friendlier way.Graydon Hoare-2/+2
2010-08-20Support single-element append on vec, str. Closes #44.Graydon Hoare-8/+74
2010-08-19Fix a bunch of typestate bugs in handling if and while statement wirings.Graydon Hoare-19/+46
2010-08-19Export all item code to stabs on Windows (including e.g. object methods)Patrick Walton-3/+5
2010-08-19Export glue as stabs on Windows as wellPatrick Walton-5/+13
2010-08-19Add some mangled stabs to help debugging on WindowsPatrick Walton-2/+18
2010-08-18Add support for casting native types.Graydon Hoare-7/+10
2010-08-17Add support for a reserved-words list and reserve the various not-supported-b...Graydon Hoare-15/+72
2010-08-16Absent any deep overhauls to syntax or constant-handling, hack in the ability...Graydon Hoare-19/+43
2010-08-13Evil solution to the problem of importing the same opaque from two different ...Patrick Walton-1/+1