about summary refs log tree commit diff
path: root/src/rustc/back
AgeCommit message (Collapse)AuthorLines
2012-08-29core: Don't normalize paths by default. Add a normalize methodBrian Anderson-3/+5
2012-08-26Camel case the option typeBrian Anderson-17/+17
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-214/+170
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-33/+33
2012-08-22intern identifiersPaul Stansifer-33/+38
2012-08-22Eliminate many match checks in rustcTim Chevalier-9/+9
2012-08-17rustc: upcall_alloc_c_stack doesn't existBrian Anderson-3/+0
2012-08-14Convert more core types to camel caseBrian Anderson-15/+15
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-18/+18
2012-08-05Switch alts to use arrowsBrian Anderson-59/+58
2012-08-02De-duplicate core::hash some, refactor the traits.Graydon Hoare-13/+14
2012-08-01Convert ret to returnBrian Anderson-40/+40
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-33/+33
2012-07-30LONG LINES\!Brian Anderson-2/+5
2012-07-30rustc: use new siphash impl instead of sha1Damian Gryski-22/+22
Updating types std::sha1::sha1 -> hash::streaming was a relatively small change. Renaming the variables to reflect that things aren't sha1s any more touched far more lines.
2012-07-26Removed the rest of the vec::view calls that were marked with #2880. Fixes ↵Eric Holk-2/+1
#2880.
2012-07-19Fix stringTim Chevalier-1/+1
2012-07-19Merge pull request #2910 from gwillen/bug-2360Tim Chevalier-4/+22
Better error when rustc fails to write output.
2012-07-14remove typestate from code, tests, and docsNiko Matsakis-9/+7
2012-07-14Get rid of more deprecated strs on non 64-bit linux platforms.Michael Sullivan-15/+15
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-212/+214
#2907.
2012-07-13More consistent use of backticks and "expected" in error messages.Lindsey Kuper-4/+4
Got some of the debug messages, here, too. I figure it doesn't hurt to get used to doing this even in places where users won't ever see it.
2012-07-13Better error when rustc fails to write output.Glenn Willen-4/+22
2012-07-12Fix the signature on vec::view.Eric Holk-1/+2
Due to limitations in region inference, this has the effect of making vec::view pretty much entirely unusable.
2012-07-12Accept prefix notation for writing the types of str/~ and friends.Michael Sullivan-11/+11
2012-07-10Eliminate some obsolete upcalls.Michael Sullivan-8/+0
2012-07-10Get rid of unused fields in tydescs. Closes #2351.Michael Sullivan-17/+10
2012-07-10Remove the empty tuple of tydescs from closures. Closes #2531.Michael Sullivan-4/+0
2012-07-09Switch 'cont' to 'again' everywhere. Close #2229.Graydon Hoare-1/+1
2012-07-05Comments only: change TODOs to FIXMEs and annotate themTim Chevalier-2/+2
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-4/+4
2012-07-01Convert to new closure syntaxBrian Anderson-60/+61
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-1/+1
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-59/+59
2012-06-28Replaced almost all vector+ in rustc (#2719)Eric Holk-15/+22
Didn't update shape because the changes were causing segfaults.
2012-06-26Getting rid of lots more vector +=. (issue #2719)Eric Holk-25/+25
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-75/+75
2012-06-21Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this.Graydon Hoare-7/+5
2012-06-21Rename upcall_malloc_dyn to just upcall_malloc.Michael Sullivan-6/+6
2012-06-20Remove bind. Issue #2189Brian Anderson-4/+7
2012-06-19rustc: Add a temporary option to not link to the runtimeBrian Anderson-2/+4
2012-06-13Make trans only generate calls to the _dyn malloc upcalls, so we can get rid ↵Michael Sullivan-7/+0
of the non dyn ones.
2012-06-13Add a malloc_dyn upcall for dynamically sized allocations on the shared heap.Michael Sullivan-0/+4
2012-06-13Box AST identsBrian Anderson-27/+28
2012-06-07Use #[cfg(unix)] and #[cfg(windows)] everywhereBrian Anderson-3/+1
2012-06-07fix compiletest deadlock on freebsdJyun-Yan You-6/+7
2012-06-06rustc: Add comments about linking to libmBrian Anderson-1/+6
2012-06-06fix link errorJyun-Yan You-1/+1
2012-05-30rt: Remove upcall_shared_malloc/free/reallocBrian Anderson-10/+0
2012-05-30Various changes for self-describing vecsBrian Anderson-8/+12