about summary refs log tree commit diff
path: root/src/test/bench/task-perf-word-count-generic.rs
AgeCommit message (Collapse)AuthorLines
2013-01-30Remove oldcomm from the test suiteBrian Anderson-384/+0
2013-01-29librustc: Disallow trait bounds in types, enumerations, and structure ↵Patrick Walton-6/+6
definitions. r=tjc
2013-01-28testsuite: Allow structural records in two tests that use pipesTim Chevalier-0/+2
2013-01-10add two more copies required in word-count rs=breakageNiko Matsakis-2/+2
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-21/+31
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-31/+21
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-21/+31
module scope. r=tjc
2012-12-28test: Fix benchmarks. rs=rustbotPatrick Walton-22/+15
2012-12-14Fix broken testsBrian Anderson-1/+1
2012-12-14Rename core::comm to core::oldcommBrian Anderson-5/+5
2012-12-13Rename Send trait to OwnedBrian Anderson-15/+15
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-12-06test: Fix compilation of benchmarks for moves-based-on-type. rs=bustagePatrick Walton-2/+4
2012-10-23Remove uses of binary move - <- - from tests and librariesTim Chevalier-1/+1
2012-10-12Make moves explicit in bench testsTim Chevalier-15/+15
2012-10-05Remove by-mutable-ref mode from the compilerTim Chevalier-8/+8
and test cases. Closes #3513
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-20/+21
One instance remains in net_tcp due to a foreign fn. Lots of instances remain in serialization.rs, but IIRC that is being removed. I had to do unholy things to task-perf-word-count-generic to get it to compile after demoding pipes. I may well have messed up its performance, but it passes.
2012-10-04De-mode comm::ChanTim Chevalier-3/+3
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-10-01Move over to calling ptr::addr_ofTim Chevalier-1/+1
Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that.
2012-09-26Unbreak test/bench/task-perf-word-count-genericBrian Anderson-1/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-4/+3
2012-09-25use + mode for (almost) everything when not using legacy modesNiko Matsakis-1/+1
2012-09-23Make it illegal to use modes in a fn signature with providingNiko Matsakis-2/+2
an explicit variable name. (Step one to changing the defaults) First step to #3535
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-2/+4
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+1
#[legacy_exports];
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-2/+3
2012-09-19Remove final bits of residual hokey-hash functions. Close #1616.Graydon Hoare-13/+3
2012-09-18Fix some broken testsBrian Anderson-1/+1
2012-09-18rustc: Remove legacy mode inference, unless #[legacy_modes] is usedPatrick Walton-0/+2
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-09-10Convert std::map to camel caseBrian Anderson-3/+3
2012-09-10Convert class methods to impl methods. Stop parsing class methodsBrian Anderson-1/+5
2012-09-07(fix incoming) Add the necessary traits to some generic functionsKevin Cantu-3/+6
2012-09-07(partially fix incoming) More hash function simplificationKevin Cantu-10/+4
2012-09-07Convert all kind bounds to camel case. Remove send, owned keywords.Brian Anderson-18/+18
2012-09-07Remove 'let' syntax for struct fieldsBrian Anderson-3/+3
2012-09-06Remove struct ctorsBrian Anderson-5/+13
2012-09-05test: "import" -> "use"Patrick Walton-19/+13
2012-08-27Camel case various core constructorsBrian Anderson-9/+7
2012-08-27Convert core::result to camel caseBrian Anderson-2/+2
2012-08-26Camel case the option typeBrian Anderson-28/+28
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-1/+1
2012-08-23Change calls of `proto!` to use parens.Paul Stansifer-2/+2
2012-08-23Update invocation syntax for `macro_rules!`Paul Stansifer-2/+2
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-8/+8
2012-08-17Remove the class keywordBrian Anderson-2/+2
2012-08-15Convert more core types to camel caseBrian Anderson-6/+8
2012-08-14Convert more core types to camel caseBrian Anderson-4/+4
2012-08-08Convert impls to new syntaxBrian Anderson-4/+3