CIL堆栈交换指令
是否有 CIL 指令来交换堆栈中的前两个元素?
Is there a CIL instruction to exchange the first two elements in the stack?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有 CIL 指令来交换堆栈中的前两个元素?
Is there a CIL instruction to exchange the first two elements in the stack?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
不存在单一指令交换。 但是,使用 stloc,pop 和 ldloc,您应该能够完成交换。
There is no single instruction exchange. However, using stloc, pop, and ldloc, you should be able to accomplish your exchange.
不可以。交换元素的唯一方法是将顶部的两个元素弹出到局部变量,然后以相反的顺序推送它们。
No. The only way to swap elements is to pop the top two elements to locals, then push them in reverse order.
查看 CIL 指令列表,似乎没有一条指令可以交换堆栈顶部的两个元素。 您必须采用旧的弹出/推送方式。
Looking at a list of CIL instructions there doesn't appear to be a single instruction that exchanges the two elements at the top of the stack. You'll have to do it the old pop/push way.
为了便于将来参考,您可以创建一个程序集来执行您想要学习 IL 的操作,然后在 Reflector 中查看该程序集。 您可以选择代码使用的语言,IL 是其中之一。 我在试图弄清楚如何编写动态方法时这样做了......
For future reference, you can create an assembly that does what you want to learn the IL for, then view the assembly in Reflector. You can select the language you wish the code to be in, and IL is one of the options. I did this when trying to figure out how to code a dynamic method...