The implementation of iterators in C# and its consequences (part 1) Raymond Chen
Likeanonymous methods,
iterators in C# are very complex syntactic sugar.
You could do it all yourself (after all, you did have to do
it all yourself in earlier versions of C#),
but the compiler transformation makes for much greater convenience.
The idea behind iterators is that they take a function withyield return
statements
(and possible some yield break statements)
and convert it into a state machine.
When you yield return, the state of the function is
recorded, and execution resumes from that state the next time the
iterator is called upon to produce another object.
Here’s the basic idea:
All the local variables of the iterator (treating iterator parameters
as pre-initialized local variables, including the hidden this
parameter)
become member variables of a helper class.
The helper class also has an internal state member that keeps
track of where execution left off and an internal current
member that holds the object most recently enumerated.
class MyClass {
int limit = ;
public MyClass(int limit) { this.limit = limit; }
public IEnumerable<int> CountFrom(int start)
{
for (int i = start; i <= limit; i++) {
yield return i;
}
}
}
The CountFrom method produces an integer
enumerator that spits out the integers starting at start
and continuing up to and including limit.
The compiler internally converts this enumerator into
something like this:
class MyClass_Enumerator : IEnumerable<int> {
int state$ = ;// internal member
int current$; // internal member
MyClass this$; // implicit parameter to CountFrom
int start; // explicit parameter to CountFrom
int i; // local variable of CountFrom
public int Current {
get { return current$; }
}
public bool MoveNext()
{
switch (state$) {
case : goto resume$;
case : goto resume$;
case : return false;
}
resume$:;
for (i = start; i <= this$.limit; i++) {
current$ = i;
state$ = ;
return true;
resume$:;
}
state$ = ;
return false;
}
… other bookkeeping, not important here …
}
public IEnumerable<int> CountFrom(int start)
{
MyClass_Enumerator e = new MyClass_Enumerator();
e.this$ = this;
e.start = start;
return e;
}
用dnSpy反编译上面的代码,同时在配置中

得到如下代码,是一个状态机
// Token: 0x02000005 RID: 5
internal class MyClass
{
// Token: 0x06000006 RID: 6 RVA: 0x000020C9 File Offset: 0x000002C9
public MyClass(int limit)
{
this.limit = limit;
} // Token: 0x06000007 RID: 7 RVA: 0x000020E1 File Offset: 0x000002E1
public IEnumerable<int> CountFrom(int start)
{
MyClass.<CountFrom>d__2 <CountFrom>d__ = new MyClass.<CountFrom>d__2(-);
<CountFrom>d__.<>4__this = this;
<CountFrom>d__.<>3__start = start;
return <CountFrom>d__;
} // Token: 0x04000001 RID: 1
private int limit = ; // Token: 0x02000006 RID: 6
[CompilerGenerated]
private sealed class <CountFrom>d__2 : IEnumerable<int>, IEnumerable, IEnumerator<int>, IDisposable, IEnumerator
{
// Token: 0x06000008 RID: 8 RVA: 0x000020F8 File Offset: 0x000002F8
[DebuggerHidden]
public <CountFrom>d__2(int <>1__state)
{
this.<>1__state = <>1__state;
this.<>l__initialThreadId = Environment.CurrentManagedThreadId;
} // Token: 0x06000009 RID: 9 RVA: 0x00002113 File Offset: 0x00000313
[DebuggerHidden]
void IDisposable.Dispose()
{
} // Token: 0x0600000A RID: 10 RVA: 0x00002118 File Offset: 0x00000318
bool IEnumerator.MoveNext()
{
int num = this.<>1__state;
if (num != )
{
if (num != )
{
return false;
}
this.<>1__state = -;
int num2 = this.<i>5__1;
this.<i>5__1 = num2 + ;
}
else
{
this.<>1__state = -;
this.<i>5__1 = this.start;
}
if (this.<i>5__1 > this.<>4__this.limit)
{
return false;
}
this.<>2__current = this.<i>5__1;
this.<>1__state = ;
return true;
} // Token: 0x17000001 RID: 1
// (get) Token: 0x0600000B RID: 11 RVA: 0x0000219C File Offset: 0x0000039C
int IEnumerator<int>.Current
{
[DebuggerHidden]
get
{
return this.<>2__current;
}
} // Token: 0x0600000C RID: 12 RVA: 0x000021A4 File Offset: 0x000003A4
[DebuggerHidden]
void IEnumerator.Reset()
{
throw new NotSupportedException();
} // Token: 0x17000002 RID: 2
// (get) Token: 0x0600000D RID: 13 RVA: 0x000021AB File Offset: 0x000003AB
object IEnumerator.Current
{
[DebuggerHidden]
get
{
return this.<>2__current;
}
} // Token: 0x0600000E RID: 14 RVA: 0x000021B8 File Offset: 0x000003B8
[DebuggerHidden]
IEnumerator<int> IEnumerable<int>.GetEnumerator()
{
MyClass.<CountFrom>d__2 <CountFrom>d__;
if (this.<>1__state == - && this.<>l__initialThreadId == Environment.CurrentManagedThreadId)
{
this.<>1__state = ;
<CountFrom>d__ = this;
}
else
{
<CountFrom>d__ = new MyClass.<CountFrom>d__2();
<CountFrom>d__.<>4__this = this.<>4__this;
}
<CountFrom>d__.start = this.<>3__start;
return <CountFrom>d__;
} // Token: 0x0600000F RID: 15 RVA: 0x00002207 File Offset: 0x00000407
[DebuggerHidden]
IEnumerator IEnumerable.GetEnumerator()
{
return this.System.Collections.Generic.IEnumerable<System.Int32>.GetEnumerator();
} // Token: 0x04000002 RID: 2
private int <>1__state; // Token: 0x04000003 RID: 3
private int <>2__current; // Token: 0x04000004 RID: 4
private int <>l__initialThreadId; // Token: 0x04000005 RID: 5
private int start; // Token: 0x04000006 RID: 6
public int <>3__start; // Token: 0x04000007 RID: 7
public MyClass <>4__this; // Token: 0x04000008 RID: 8
private int <i>5__1;
}
}
The enumerator class is auto-generated by the compiler
and, as promised, it contains two internal members for the
state and current object,
plus a member for each parameter
(including the hidden this parameter),
plus a member for each local variable.
The Current property merely returns the current object.
All the real work happens in MoveNext.
To generate the MoveNext method, the compiler
takes the code you write and performs a few transformations.
First, all the references to variables and parameters need to
be adjusted since the code moved to a helper class.
Notice that this transformation is quite different fromthe enumeration model we built based on coroutines and fibers.
The C# method is far more efficient in terms of memory usage
since it doesn’t consume an entire stack (typically a megabyte in size)
like the fiber approach does.
Instead it just borrows the stack of the caller,
and anything that it needs to save across calls to MoveNext
are stored in a helper object (which goes on the heap rather than the stack).
This fake-out is normally quite effective—most
people don’t even realize that it’s happening—but there are places
where the difference is significant, and we’ll see that shortly.
The implementation of iterators in C# and its consequences (part 1) Raymond Chen的更多相关文章
- What is the yield keyword used for in C#?
What is the yield keyword used for in C#? https://stackoverflow.com/a/39496/3782855 The yield keywor ...
- 一次C#和C++的实际应用性能比较(C++允许我们使用任何手段来提高效率,只要愿意做出足够的努力)
05年时,在微软的Rico Mariani做了一次实际应用的C#和C++的性能比较.事情起源于微软著名的元老Raymond Chen(在下敬仰的超级牛人)用C++写了一个英汉词典程序,来描述讲解优化C ...
- cvpr2015papers
@http://www-cs-faculty.stanford.edu/people/karpathy/cvpr2015papers/ CVPR 2015 papers (in nicer forma ...
- Python 的上下文管理器是怎么设计的?
花下猫语:最近,我在看 Python 3.10 版本的更新内容时,发现有一个关于上下文管理器的小更新,然后,突然发现上下文管理器的设计 PEP 竟然还没人翻译过!于是,我断断续续花了两周时间,终于把这 ...
- Implementation with Java
Implementation with Java From:http://jcsc.sourceforge.net In general, follow the Sun coding conventi ...
- Python标准模块--Iterators和Generators
1 模块简介 当你开始使用Python编程时,你或许已经使用了iterators(迭代器)和generators(生成器),你当时可能并没有意识到.在本篇博文中,我们将会学习迭代器和生成器是什么.当然 ...
- Design and Implementation of the Sun Network File System
Introduction The network file system(NFS) is a client/service application that provides shared file ...
- [转]Objective-c中@interface、@implementation、@protocal
原处:http://blog.csdn.net/l271640625/article/details/8393531 以下Objective-c简称OC 从事java开发的程序员们都知道,在java中 ...
- Implementation Model Editor of AVEVA in OpenSceneGraph
Implementation Model Editor of AVEVA in OpenSceneGraph eryar@163.com 摘要Abstract:本文主要对工厂和海工设计软件AVEVA的 ...
随机推荐
- springboot系列(九)springboot使用druid数据源
Druid是阿里巴巴开源平台上一个数据库连接池实现,它结合了C3P0.DBCP.PROXOOL等DB池的优点,同时加入了日志监控,可以很好的监控DB池连接和SQL的执行情况,可以说是针对监控而生的DB ...
- xshell退出保持后台服务运行的方法
Linux后台启动了一个服务,但是退出命令终端后或者退出xshell后,服务就关闭了,要想保持后台服务一直启动,可以使用下面的命令来启动服务 #nohup python3.6 /opt/testman ...
- Codeforces #369 (Div. 2) C. Coloring Trees (3维dp
http://codeforces.com/group/1EzrFFyOc0/contest/711/problem/C https://blog.csdn.net/qq_36368339/artic ...
- sql index改怎么建
https://stackoverflow.com/questions/11299217/how-can-i-optimize-this-sql-query-using-indexes ------- ...
- WA又出现了
为甚么本蒟蒻写的代码永远有BUG? 为甚么本蒟蒻永远检查不出错误? 通过良久的分析,我得出一个结论:写代码也要有信仰. 人是要有信仰的,OI选手也不例外. 原因就是写之前没有膜拜上帝.真主.释迦摩尼. ...
- uni-app之导航配置pages.json
1.基础配置,各个页面都要在这里边引入. 2.基础配置,头部导航左右上脚的buttons设置. 3.如果没有权限展示底部导航的需求,可以直接在此文件配置底部导航.
- linux系统常用软件
输入法---搜狗输入法 音乐播放器---网易云音乐 邮箱---
- CF359D Pair of Numbers gcd+暴力
利用区间 gcd 个数不超过 log 种来做就可以了~ code: #include <bits/stdc++.h> #define N 300005 #define setIO(s) f ...
- 遇到一张jpg的图片打不开,ps打不开,fireworks,打不开,ie8浏览器上显示不了,其他的浏览器没问题
1.在photoshop上报错; 2.在fireworks上报错 3.ie8上 其他的图片都可以,就这张不可以,没发现什么不同的地方,都是jpg格式的呀,而且谷歌浏览器能显示出来; 处理方法: 1.选 ...
- Python中的各种排序问题
小书匠python排序 本章目录,快速浏览所需内容: 基本的排序 1.列表(list) 1.1按列表元素大小排序 1.2按列表元素的属性 2.字典(dictory) 3.元组(tuple)排序 3.1 ...