Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Algorithm for implementing C# yield statement

I'd love to figure it out myself but I was wondering roughly what's the algorithm for converting a function with yield statements into a state machine for an enumerator? For example how does C# turn this:

IEnumerator<string> strings(IEnumerable<string> args)  { IEnumerator<string> enumerator2 = getAnotherEnumerator();         foreach(var arg in arg)      { enumerator2.MoveNext();       yield return arg+enumerator.Current;     }   } 

into this:

bool MoveNext()  { switch (this.state)     {         case 0:             this.state = -1;             this.enumerator2 = getAnotherEnumerator();             this.argsEnumerator = this.args.GetEnumerator();             this.state = 1;             while (this.argsEnumerator.MoveNext())             {                 this.arg = this.argsEnumerator.Current;                 this.enumerator2.MoveNext();                 this.current = this.arg + this.enumerator2.Current;                 this.state = 2;                 return true;                state1:                 this.state = 1;             }             this.state = -1;             if (this.argsEnumerator != null) this.argsEnumerator.Dispose();             break;          case 2:             goto state1;     }     return false; } 

Of course the result can be completely different depending on the original code.

like image 497
Mark Cidade Avatar asked Sep 25 '08 07:09

Mark Cidade


People also ask

What is implementation in C programming?

A standard conforming C implementation consists of a compiler that translates compilation units as mandated by the standard, an implementation of the standard library for all functions required by the standard and something (normally a linker) that puts everything together to build an executable file.

What is algorithm in C language with example?

In this tutorial, we will learn what algorithms are with the help of examples. In computer programming terms, an algorithm is a set of well-defined instructions to solve a particular problem. It takes a set of input(s) and produces the desired output.


1 Answers

The particular code sample you are looking at involves a series of transformations. Please note that this is an approximate description of the algorithm. The actual names used by the compiler and the exact code it generates may be different. The idea is the same, however.

The first transformation is the "foreach" transformation, which transforms this code:

foreach (var x in y) {    //body } 

into this code:

var enumerator = y.GetEnumerator(); while (enumerator.MoveNext()) {     var x = enumerator.Current;     //body }  if (y != null) {     enumerator.Dispose(); } 

The second transformation finds all the yield return statements in the function body, assigns a number to each (a state value), and creates a "goto label" right after the yield.

The third transformation lifts all the local variables and function arguments in the method body into an object called a closure.

Given the code in your example, that would look similar to this:

 class ClosureEnumerable : IEnumerable<string>  {     private IEnumerable<string> args;     private ClassType originalThis;     public ClosureEnumerator(ClassType origThis, IEnumerable<string> args)     {         this.args = args;         this.origianlThis = origThis;     }     public IEnumerator<string> GetEnumerator()     {         return new Closure(origThis, args);     }  }  class Closure : IEnumerator<string> {     public Closure(ClassType originalThis, IEnumerable<string> args)     {         state = 0;         this.args = args;         this.originalThis = originalThis;     }      private IEnumerable<string> args;     private IEnumerator<string> enumerator2;     private IEnumerator<string> argEnumerator;      //- Here ClassType is the type of the object that contained the method     //  This may be optimized away if the method does not access any      //  class members     private ClassType originalThis;      //This holds the state value.     private int state;     //The current value to return     private string currentValue;      public string Current     {         get          {             return currentValue;         }     } } 

The method body is then moved from the original method to a method inside "Closure" called MoveNext, which returns a bool, and implements IEnumerable.MoveNext. Any access to any locals is routed through "this", and any access to any class members are routed through this.originalThis.

Any "yield return expr" is translated into:

currentValue = expr; state = //the state number of the yield statement; return true; 

Any yield break statement is translated into:

state = -1; return false; 

There is an "implicit" yield break statement at the end of the function. A switch statement is then introduced at the beginning of the procedure that looks at the state number and jumps to the associated label.

The original method is then translated into something like this:

IEnumerator<string> strings(IEnumerable<string> args) {    return new ClosureEnumerable(this,args); } 

The fact that the state of the method is all pushed into an object and that the MoveNext method uses a switch statement / state variable is what allows the iterator to behave as if control is being passed back to the point immediately after the last "yield return" statement the next time "MoveNext" is called.

It is important to point out, however, that the transformation used by the C# compiler is not the best way to do this. It suffers from poor performance when trying to use "yield" with recursive algorithms. There is a good paper that outlines a better way to do this here:

http://research.microsoft.com/en-us/projects/specsharp/iterators.pdf

It's worth a read if you haven't read it yet.

like image 192
Scott Wisniewski Avatar answered Oct 05 '22 12:10

Scott Wisniewski