summary refs log tree commit diff
path: root/src/libsyntax/ext/pipes/pipec.rs
AgeCommit message (Collapse)AuthorLines
2012-10-04Remove by-copy mode from std, mostlyTim Chevalier-8/+6
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-01Move over to calling ptr::addr_ofTim Chevalier-3/+3
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-28Add a demoded version of ptr::addr_ofTim Chevalier-3/+3
Currently, the new version is ptr::p2::addr_of and the old one is ptr::addr_of. This is kind of cheesy, but I need a snapshot before I can ditch the old version, since the pipe compiler generates calls to addr_of. core is converted over to use the new version, std is not.
2012-09-28demode vecNiko Matsakis-2/+2
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-44/+42
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-2/+2
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-1/+2
#[legacy_exports];
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-3/+3
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-5/+3
2012-09-10Make moves explicit in pipes and pipe compilerTim Chevalier-16/+17
2012-09-04libsyntax: "import" -> "use"Patrick Walton-11/+10
2012-08-28Convert core::pipes to camel caseBrian Anderson-8/+8
2012-08-27Camel case various core constructorsBrian Anderson-1/+1
2012-08-26Camel case the option typeBrian Anderson-9/+9
2012-08-24fix some unused pattern binding warningsNiko Matsakis-2/+2
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-19/+19
2012-08-22intern identifiersPaul Stansifer-66/+76
2012-08-17Track spans better in the protocol compiler so we can get better error messages.Eric Holk-3/+9
2012-08-15Modify pipec to not emit calls to some and noneBrian Anderson-4/+4
2012-08-15pipes: Rename the pipec-generated buffer to __BufferBrian Anderson-2/+2
Conforms to camel case convention and hides it away so it doesn't conflict with user code
2012-08-13core: Camel case some lesser-used modulesBrian Anderson-1/+1
2012-08-08libsyntax: Parse common enum fieldsPatrick Walton-1/+3
2012-08-08Convert impls to new syntaxBrian Anderson-16/+10
2012-08-08rustc: Do some plumbing work in preparation for common fields in enumsPatrick Walton-1/+2
2012-08-07Generate try_send versions for all the messages. Fixes #3128Eric Holk-55/+90
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-11/+11
2012-08-05Switch alts to use arrowsBrian Anderson-26/+27
2012-08-03rustc: Add the notion of inherited visibilityPatrick Walton-1/+0
2012-08-03rustc: Remove all fixed-length strings from our codebasePatrick Walton-5/+5
2012-07-31Change remaining "iface" occurrences to "trait"; deprecate "iface"Lindsey Kuper-1/+1
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-23/+23
2012-07-30Impl-ize interner.Paul Stansifer-1/+0
2012-07-27rustc: Use coherence for operator overloading.Patrick Walton-1/+1
The only use of the old-style impls is now placement new.
2012-07-25Polymorphic protocols work well enough to do MapReduce.Eric Holk-6/+8
I did some horrible things with type variable naming here. It should do the right thing in most cases, but we'll need to go through and make it correct someday.
2012-07-25Bounded protocols work well enough to compile core, but map reduce has too ↵Eric Holk-14/+35
many type parameters, so we have to get fancier.
2012-07-25Thread spans through the pipe compiler. They aren't perfect, but they make ↵Eric Holk-9/+10
debugging far easier than core.rc:0:0. Changed the is_bounded check, so we fail compiling core right now due to not supporting type parameters.
2012-07-25Compiled a bounded version of pingpong.Eric Holk-40/+143
There are some failures in the other pipe tests, but these seem to just be a matter of generalizing the library code. Updating pipes library so all tests pass again
2012-07-25Generate buffer type for bounded protocolsEric Holk-0/+18
2012-07-25Refactoring pipes to allow implementing bounded protocols.Eric Holk-2/+5
2012-07-18syntax: Parse multiple trait refs in a single implementationPatrick Walton-0/+1
2012-07-17rustc: Fix coherence errors in the buildPatrick Walton-24/+22
2012-07-17rustc: Implement and enforce instance coherencePatrick Walton-6/+33
2012-07-17Error checking for protocols. We'll need spans though.Eric Holk-140/+13
2012-07-16Add support for terminal states (issue #2862)Eric Holk-22/+71
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-35/+35
#2907.
2012-07-13Support prefix notation for vstore strings. Closes #2906.Michael Sullivan-7/+7
2012-07-12Switch map-reduce control protocol to use pipes. This exposed a bug in the ↵Eric Holk-25/+2
pipe compiler, which is now fixed. Use hashmaps in MapReduce Tweak word-count difficulty
2012-07-12Get rid of all of the remaining /~s in the code base.Michael Sullivan-10/+10
2012-07-06pingpong protocol parses, although I should probably rewrite this to use ↵Eric Holk-8/+13
Paul's Early parser stuff.
2012-07-06Adding token tree nonterminals to earley parser.Eric Holk-2/+0