about summary refs log tree commit diff
path: root/src
AgeCommit message (Expand)AuthorLines
2011-03-19rustc: Use the right block context to generate unary operands. std.rc compile...Patrick Walton-3/+3
2011-03-19rustc: Allow arguments to be captured as upvars. std.rc compiles now, except ...Patrick Walton-3/+15
2011-03-19rustc: Do argument casts before loading aggregates, not afterPatrick Walton-5/+16
2011-03-18rustc: Implement int-to-native castsPatrick Walton-0/+3
2011-03-18rustc: Make trans_path() generic-safe wrt nullary tagsPatrick Walton-1/+8
2011-03-18rustc: Make iter_structural_ty_full() generic-safe wrt tagsPatrick Walton-28/+10
2011-03-18rustc: Do pointer casts when casting native typesPatrick Walton-1/+3
2011-03-18rustc: Fix inference for auto slots (forgot to stage changes before)Patrick Walton-7/+6
2011-03-18rustc: Fix inference for auto slots. Add a test case.Patrick Walton-0/+6
2011-03-18rustc: Don't always build a constant multiply instruction when translating li...Patrick Walton-2/+2
2011-03-18rustc: Move type_of() behind the check for dynamic size in trans_vec()Patrick Walton-1/+1
2011-03-18rustc: Create global variable constants during the collection phasePatrick Walton-14/+13
2011-03-18rustc: Make iter_sequence() work with generic vectorsPatrick Walton-3/+16
2011-03-18rustc: Fix list.foldl() to pass its second argument by aliasPatrick Walton-2/+2
2011-03-18rustc: Box the tuples returned by hashmap.items() for now since we don't have...Patrick Walton-4/+4
2011-03-18rustc: Get type params from the item when translating native itemsPatrick Walton-9/+13
2011-03-18Fix bug in string comparison. std.rc typechecks now.Patrick Walton-1/+1
2011-03-18Add "mutable?" to _vec in the standard library; fix callersPatrick Walton-19/+20
2011-03-18Add some mutable variants of vector functions to the standard libraryPatrick Walton-0/+31
2011-03-18rustc: When encountering "mutable" as a tycon, parse it, drop it on the floor...Patrick Walton-0/+17
2011-03-18Make some standard library pieces no longer dependent on mutable parameters, ...Patrick Walton-10/+14
2011-03-18rustc: Unify over alt expressionsPatrick Walton-0/+14
2011-03-18rustc: Add a span_unimpl() for debuggingPatrick Walton-1/+11
2011-03-18rustboot: Parse, and ignore, "mutable?"Patrick Walton-2/+14
2011-03-18rustc: Implement "mutable?". Add a test case and XFAIL it in rustboot for now.Patrick Walton-25/+87
2011-03-17rustc: Switch mutability from being a type constructor to a field annotationPatrick Walton-280/+327
2011-03-17rustc: Typo: mutabliity -> mutabilityPatrick Walton-3/+3
2011-03-17Move Makefile.in and configure to top level, BOOT_-qualify names, various twe...Graydon Hoare-190/+0
2011-03-17rustc: Correctly report mutability when stringifying typesPatrick Walton-24/+24
2011-03-17rustc: Consider native types to be scalarPatrick Walton-0/+1
2011-03-17rustc: Sort object methods when parsing textual types in the ASTPatrick Walton-9/+11
2011-03-17rustc: Don't go over inner functions' locals during the writeback phase of ty...Patrick Walton-5/+22
2011-03-17Add an option.is_none() methodPatrick Walton-0/+7
2011-03-16rustc: Add str_from_cstr() and str_from_buf() functions to the standard libra...Patrick Walton-0/+48
2011-03-16Teach configure.sh to probe paths, factor a bit.Graydon Hoare-26/+48
2011-03-16Remove uses of 'break' in std lib; rustc doesn't support it yet, this is easi...Graydon Hoare-3/+7
2011-03-16Add a "rustllvm.def" file for Windows' linker to use. This allows us to creat...Patrick Walton-0/+473
2011-03-16Disable built-in rules in makefile, speed up win32 build.Graydon Hoare-0/+10
2011-03-16Fixed version of my previous patch to rename the upcall functions. This time ...Rafael Ávila de Espíndola-7/+6
2011-03-16Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. Tw...Graydon Hoare-225/+278
2011-03-16Add some more dlopen-related suppressions for the MacPatrick Walton-0/+78
2011-03-16Beginning of build-system upgrade.Graydon Hoare-0/+168
2011-03-16Revert 6fdb81fa17b3c7147a69edc5217c9f93ff485410, it is causing failures inRafael Ávila de Espíndola-21/+3
2011-03-16Update comment to reflect the decision to avoid cycles.Rafael Ávila de Espíndola-2/+2
2011-03-15rustc: Remove the memory-managed interface to LLVM memory buffers; passing th...Patrick Walton-18/+0
2011-03-15rustc: Open "use"d crates with the LLVM object file readerPatrick Walton-3/+27
2011-03-15rustc: Add an annotation for the crate definition to view_item_usePatrick Walton-20/+50
2011-03-15Revert "Change the numbering of upcall functions. upcall_0 now calls a functi...Patrick Walton-3/+4
2011-03-15Typo: FIXE -> FIXMEPatrick Walton-1/+1
2011-03-15Add a fs.connect() function to join pathsPatrick Walton-0/+8