| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-12-18 | libcore: Remove task::set_min_stack | Brian Anderson | -8/+0 | |
| This existed to make up for the lack of stack growth, and wasn't generally safe. | ||||
| 2011-12-16 | implement #[nolink]; deprecate #[link_name = ""]; note in stdlib to remove ↵ | Graham Fawcett | -1/+1 | |
| empty link_name. Can't remove them from stdlib until the snapshotted compiler supports #[nolink]. | ||||
| 2011-12-16 | reorder args to the various vec, option fns so blk comes last | Niko Matsakis | -2/+2 | |
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -67/+67 | |
| 2011-12-07 | Disallow binding by-mut-ref and by-move arguments | Marijn Haverbeke | -9/+9 | |
| Fix bug in bound by-copy arguments. Closes #1261 | ||||
| 2011-11-20 | Added a little sudoku solver to test/bench for everone's puzzle solving needs | Stefan Plantikow | -0/+170 | |
| 2011-11-18 | Update stdlib, compiler, and tests to new kind system | Marijn Haverbeke | -19/+19 | |
| This involved adding 'copy' to more generics than I hoped, but an experiment with making it implicit showed that that way lies madness -- unless enforced, you will not remember to mark functions that don't copy as not requiring copyable kind. Issue #1177 | ||||
| 2011-11-16 | Use attributes for native module ABI and link name | Haitao Li | -1/+3 | |
| This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547 | ||||
| 2011-11-11 | Give task-perf-word-count default behavior. Closes #1172 | Brian Anderson | -18/+172 | |
| 2011-11-09 | Add "cdecl" as synonym for "c-stack-cdecl" | Brian Anderson | -1/+1 | |
| 2011-10-29 | stdlib: Make io failures recoverable by returning a result | Brian Anderson | -1/+2 | |
| 2011-10-28 | Move to short kind kinds words in test suite | Marijn Haverbeke | -19/+19 | |
| Issue #1076 | ||||
| 2011-10-25 | Update our code to new type parameter kind syntax | Marijn Haverbeke | -19/+23 | |
| Closes #1067 | ||||
| 2011-10-24 | switch over sqrt from llvm to c-stack-cdecl, exposing a bug in | Niko Matsakis | -2/+2 | |
| the supported return types of upcall_c_stack | ||||
| 2011-10-21 | Remove some semicolons after block calls | Marijn Haverbeke | -9/+9 | |
| The remaining ones can be removed after the next snapshot. (Or we can let the next pretty-print pass take care of them.) | ||||
| 2011-10-21 | Remove remaining uses of iter and for-each | Marijn Haverbeke | -24/+22 | |
| Issue #1056 | ||||
| 2011-10-20 | Remove temporary fn# syntax | Brian Anderson | -7/+7 | |
| 2011-10-20 | Make fn denote a bare function. Convert fn to fn@ as needed | Brian Anderson | -2/+2 | |
| 2011-10-20 | Drop the 2 from the spawn*2 functions | Brian Anderson | -9/+9 | |
| Issue #1022 | ||||
| 2011-10-20 | XFAIL task-perf-word-count-generic | Brian Anderson | -0/+2 | |
| This can't be done with bare functions. Issue #1022 | ||||
| 2011-10-20 | Convert tests to use bare-fn spawn | Brian Anderson | -17/+19 | |
| Issue #1022 | ||||
| 2011-10-12 | all tests pass | Niko Matsakis | -2/+2 | |
| 2011-10-10 | Adjust function signatures to allow for vecs being immediate | Marijn Haverbeke | -2/+2 | |
| Some code was relying on vectors being implicitly by-reference (as non-immediate value). This adds the necessary &&-sigils. Closes #1021 | ||||
| 2011-09-19 | Un-xfail various tests | Brian Anderson | -1/+0 | |
| 2011-09-15 | Insert omitted semicolons for statements | Marijn Haverbeke | -10/+8 | |
| 2011-09-12 | Merge branch 'unwind' | Brian Anderson | -0/+1 | |
| Conflicts: src/comp/middle/trans.rs src/comp/middle/trans_build.rs src/lib/run_program.rs src/test/compiletest/runtest.rs | ||||
| 2011-09-12 | Pretty-print for new arg-mode syntax | Marijn Haverbeke | -8/+8 | |
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -37/+37 | |
| Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit. | ||||
| 2011-09-11 | XFAIL bench/shootout-nbody | Brian Anderson | -0/+1 | |
| This is the only file in the whole codebase that depends on the (broken) llvm native ABI. | ||||
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -136/+126 | |
| 2011-09-01 | Convert all uses of #ifmt to #fmt. Issue #855 | Brian Anderson | -10/+10 | |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -29/+29 | |
| 2011-09-01 | Remove std::str. Issue #855 | Brian Anderson | -2/+0 | |
| 2011-09-01 | Add a benchmark for cross-task kernel memory region synchronization | Brian Anderson | -0/+28 | |
| Vectors are allocated from the kernel's memory region, which has some heinous synchronization. This is a stress test of vector allocation in many tasks. | ||||
| 2011-09-01 | Convert main functions to istrs. Issue #855 | Brian Anderson | -4/+3 | |
| 2011-09-01 | Remove various istr conversions. Issue #855 | Brian Anderson | -10/+12 | |
| 2011-08-31 | Convert benchmarks to istrs. Issue #855 | Brian Anderson | -103/+97 | |
| 2011-08-31 | Convert uses of #fmt to #ifmt. Issue #855 | Brian Anderson | -13/+12 | |
| 2011-08-27 | Convert std::map::new_str_hash to istrs. Issue #855 | Brian Anderson | -8/+9 | |
| 2011-08-27 | Convert std::io to istrs. Issue #855 | Brian Anderson | -6/+11 | |
| 2011-08-27 | Convert std::getopts to istrs. Issue #855 | Brian Anderson | -2/+3 | |
| 2011-08-27 | Convert std::u64 to istrs. Issue #855 | Brian Anderson | -3/+6 | |
| 2011-08-27 | Convert std::int to istrs. Issue #855 | Brian Anderson | -6/+10 | |
| 2011-08-26 | Polymorphic MapReduce! | Eric Holk | -0/+328 | |
| 2011-08-25 | Cleaning up task and comm exports, updating all the test cases. | Eric Holk | -42/+43 | |
| 2011-08-20 | Rewrite reap_dead_tasks to never grab the sched lock before a task lock | Brian Anderson | -4/+0 | |
| Doing so contradicts the locking order used everywhere else and causes deadlocks. Un-XFAIL task-perf-spawnalot Closes #854 | ||||
| 2011-08-20 | Convert task-perf-spawnalot to spawn_joinable. XFAIL | Brian Anderson | -1/+7 | |
| 2011-08-20 | Reformat | Brian Anderson | -98/+79 | |
| This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[] | ||||
| 2011-08-17 | Using move-mode for spawn thunks to avoid race conditions. | Eric Holk | -4/+5 | |
| 2011-08-16 | Port the tests to the expr foo::<T> syntax. | Erick Tryzelaar | -4/+4 | |
