- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在业余时间学习汇编语言。谁能解释为什么 .maxstack 在这个程序中似乎是可选的。我试图在网上和我的书中找到答案,但没有这样的运气,即程序将编译并运行 .Maxstack 注释掉:
//Add.il
//Add Two Numbers
.assembly extern mscorlib {}
.assembly Add
{
.ver 1:0:1:0
}
.module add.exe
.method static void main() cil managed
{
//.maxstack 2
.entrypoint
ldstr "The sum of 50 and 30 is = "
call void [mscorlib]System.Console::Write (string)
ldc.i4.s 50
ldc.i4 30
add
call void [mscorlib]System.Console::Write (int32)
ret
}
最佳答案
我认为您的困惑源于对 .maxstack
的误解实际上确实如此。这是一个容易犯的错误,因为它似乎在执行时会导致错误。令人惊讶的是,该特定指令实际上具有 与运行时堆栈大小无关 ,而是专门用于代码验证。
来自第 III 部分 - 第 1.7.4 节
Note: Maxstack is related to analysis of the program, not to the size of the stack at runtime. It does not specify the maximum size in bytes of a stack frame, but rather the number of items that must be tracked by an analysis tool.
.maxstack 1
)将停止运行
Unhandled Exception: System.InvalidProgramException: Common Language Runtime detected an invalid program. at main()
InvalidProgramException
.
关于.net - 为什么 .MaxStack 指令在 MSIL 代码中是可选的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9846022/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!