这可能是一些新手的错误,但我无法找到它。
ilasm说我的代码会生成System.InvalidProgramException
。我发现它在我调用Fibonacci()
时被抛出 - 在调用它之前放置一个标志写入控制台但是在.locals init
之前放入方法内的另一个标志是不是因为除外)。
.assembly extern mscorlib { }
.assembly foo { }
.method public static int32 Fibonacci(int32 n)
{
.locals init ([0] int32 i, [1] int32 last, [2] int32 prev)
ldc.i4.0
ldarg n
brfalse done
ldc.i4.1
dup
ldarg n
sub
brfalse done
ldc.i4.2
stloc i
et1:
dup
stloc prev
add
stloc last
ldloc prev
ldloc last
ldarg n
ldloc i
sub
brfalse done
ldloc i
ldc.i4.1
add
stloc i
br et1
done:
stloc i
pop
ldloc i
ret
}
.method public static void Main()
{
.entrypoint
ldstr "result is: {0}"
ldstr "enter n: "
call void [mscorlib]System.Console::Write(string)
call string [mscorlib]System.Console::ReadLine()
call int32 [mscorlib]System.Int32::Parse(string)
call int32 Fibonacci(int32)
box [mscorlib]System.Int32
call void [mscorlib]System.Console::WriteLine(string,object)
ret
}
答案 0 :(得分:1)
如果是n == 0
,你可以在堆栈上使用带有int的brfalse
分支。
但done
代码采用不同的堆栈布局:
done:
stloc i
pop
ldloc i
ret
看起来它假定有2个元素进入。