| Age | Commit message (Expand) | Author | Lines |
| 2012-05-22 | Merge branch 'master' of git://github.com/mozilla/rust | Margaret Meyerhofer | -64/+656 |
| 2012-05-22 | bench: Reduce some constants to make graph500-bfs faster | Brian Anderson | -2/+2 |
| 2012-05-22 | Added a test for #! comments | Margaret Meyerhofer | -0/+6 |
| 2012-05-22 | Merge pull request #2427 from msullivan/shifts | Brian Anderson | -29/+13 |
| 2012-05-22 | Add a test for Issue #2428. | Michael Sullivan | -0/+5 |
| 2012-05-22 | Updating pbfs for new kind rules. | Eric Holk | -6/+7 |
| 2012-05-22 | Removed accidental machine size dependencies. | Eric Holk | -19/+22 |
| 2012-05-22 | Updating bfs to work with the new random methods. | Eric Holk | -9/+2 |
| 2012-05-22 | More unsafe pointers to share immutable structures between tasks. This versio... | Eric Holk | -16/+20 |
| 2012-05-22 | Be less careful about checking that lengths make sense, for slightly more per... | Eric Holk | -6/+2 |
| 2012-05-22 | Using unsafe pointers to views to try to reduce some vector copy and allocati... | Eric Holk | -20/+48 |
| 2012-05-22 | Using unsafe pointers to share closures. | Eric Holk | -1/+4 |
| 2012-05-22 | Using libstd future instead. | Eric Holk | -74/+38 |
| 2012-05-22 | A new version of the sequential BFS. This uses the same approach as the paral... | Eric Holk | -0/+91 |
| 2012-05-22 | BFS now tries a number of search keys. | Eric Holk | -18/+69 |
| 2012-05-22 | A parallel BFS. | Eric Holk | -6/+103 |
| 2012-05-22 | Adding a module with parallel vector operations. | Eric Holk | -4/+112 |
| 2012-05-22 | Added most of the Graph500 validation routine. It's very slow. | Eric Holk | -4/+109 |
| 2012-05-22 | Starting on a BFS benchmark, but ran into problems with the deque module, so ... | Eric Holk | -0/+172 |
| 2012-05-22 | Get rid of the >>> operator and make >> logical or arithmetic depending on th... | Michael Sullivan | -29/+13 |
| 2012-05-22 | Send is no longer a subkind of copy. This allows for sendable, but non-copyab... | Eric Holk | -35/+22 |
| 2012-05-21 | Region checking: this one currently passes, but only "by accident". | Lindsey Kuper | -0/+21 |
| 2012-05-21 | Test illustrating issue #2263. | Lindsey Kuper | -0/+24 |
| 2012-05-21 | change list so that it must be used in a purely boxed fashion | Niko Matsakis | -14/+14 |
| 2012-05-21 | detect and report shadows in nested bindings | Niko Matsakis | -0/+5 |
| 2012-05-19 | fix up handling of &x where x is an arg or &self (for now at least). | Niko Matsakis | -0/+50 |
| 2012-05-18 | create a smallintmap benchmark | Niko Matsakis | -0/+46 |
| 2012-05-18 | port smallintmap over to dvec | Niko Matsakis | -2/+8 |
| 2012-05-18 | move io over to dvec | Niko Matsakis | -3/+4 |
| 2012-05-18 | test for #2378 | Niko Matsakis | -0/+36 |
| 2012-05-18 | add swappable/dvec modules | Niko Matsakis | -0/+92 |
| 2012-05-18 | allow region ptrs to be cast to uints | Niko Matsakis | -0/+4 |
| 2012-05-18 | rustc: Don't copy vecs in seq_preconds. Huge perf win on some tests | Brian Anderson | -0/+8002 |
| 2012-05-18 | remove line so that pretty printer doesn't mess it up | Niko Matsakis | -2/+1 |
| 2012-05-18 | xfail-test failing test | Niko Matsakis | -1/+2 |
| 2012-05-18 | test that we preserve boxes in patterns---still one bug | Niko Matsakis | -0/+81 |
| 2012-05-18 | rustc: Don't recurse in seq_preconds. Consumes too much stack | Brian Anderson | -0/+2002 |
| 2012-05-18 | test file I had lying around and had forgotten to commit | Niko Matsakis | -0/+9 |
| 2012-05-18 | add #include_bin[] | Paul Stansifer | -0/+4 |
| 2012-05-18 | Fold #include_str into the other source_utils.rs syntax extensions. | Paul Stansifer | -0/+3 |
| 2012-05-18 | add #mod[], which expands to the current module path | Paul Stansifer | -2/+10 |
| 2012-05-18 | New syntax extensions: #line[], #col[], #file[], #stringify[], #include[] | Paul Stansifer | -0/+18 |
| 2012-05-18 | Make extracting syntax extension arguments easier. | Paul Stansifer | -3/+3 |
| 2012-05-17 | Test that a class type name gets printed correctly in a... | Tim Chevalier | -0/+14 |
| 2012-05-16 | Include intrinsic module in all crates, emit visit glue, fn intrinsic::visit_... | Graydon Hoare | -73/+18 |
| 2012-05-16 | add xfail-fast directives for borrowck tests | Niko Matsakis | -0/+18 |
| 2012-05-16 | correct preservation of explicit borrows like "let x = &*y;" | Niko Matsakis | -0/+66 |
| 2012-05-15 | rename test | Niko Matsakis | -0/+0 |
| 2012-05-15 | check if the type of a local variable contains illegal region | Niko Matsakis | -3/+14 |
| 2012-05-15 | Start porting tests to use classes with dtors instead of resources | Tim Chevalier | -7/+25 |