我一直致力于FxCOP自定义规则。我正在努力获取使用的IL指令行。我有一个基本的疑问,当我们实现一个c#代码时,我们得到操作码,这些是每条指令的不同行(源代码指令在一行中有多个操作码)
现在,我的导师要我计算使用多个操作码的不同行。但是,我的理解是,每个IL指令都在不同的行中。我将尽力表明意见分歧如下:
源代码
opcode 1, opcode 2, opcode 3
opcode 4, opcode 5
My Opinion My Mentor's Opinion
Opcode 1 Opcode 1,Opcode 2, Opcode 3
Opcode 2 Opcode 5, Opcode 6
opcode 3
我无法找到哪个是真的。请帮我查一下,对于任何给定的c#代码,IL指令是分开的,尽管指令在源代码的同一行,或者如果它是我的导师所相信的,并且有找到不同行的方法。
由于
答案 0 :(得分:0)
你可以这样写:
public override ProblemCollection Check(Member member)
{
Method method = member as Method;
if (method == null)
{
return base.Check(member);
}
Console.WriteLine("Method: {0}", member.Name);
InstructionCollection ops = method.Instructions;
foreach (Instruction op in ops)
{
Console.WriteLine("File: {0}, Line: {1}, Pos: {2}, OpCode: {3}", op.SourceContext.FileName, op.SourceContext.StartLine, op.SourceContext.StartColumn, op.OpCode);
}
Console.WriteLine();
return base.Problems;
}
请注意,在Release模式下,代码行与OpCodes之间的关系有点“随机”,因为C#编译器可以重新排列一些代码。在调试模式下,关系更加清晰。
注意(2)我只考虑StartLine
和StartColumn
。有EndLine
和EndColumn
属性。