本文整理汇总了C#中Instruction.BD方法的典型用法代码示例。如果您正苦于以下问题:C# Instruction.BD方法的具体用法?C# Instruction.BD怎么用?C# Instruction.BD使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Instruction
的用法示例。
在下文中一共展示了Instruction.BD方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Bc_C
static List<CStatement> Bc_C(uint pc, uint instruction)
{
Instruction i = new Instruction(instruction);
List<CStatement> stats = new List<CStatement>();
if ((i.BO() & 4) == 0)
{
CStatement ctrSub = new CStatement(CStatement.Kinds.Subtraction, "CTR", 1);
CStatement ctrAss = new CStatement(CStatement.Kinds.Assignment, "CTR", ctrSub);
stats.Add(ctrAss);
}
CStatement final = ConditionCheck(i);
uint destination = (uint)(int)(short)(i.BD() << 2);
if ((instruction & 2) != 2)
destination += pc;
Function f = decompiler.Functions.Find(delegate(Function fn) { return fn.Address == destination; });
String destName;
if (f != null)
destName = f.Name;
else
destName = "L" + destination.ToString("X8");
CStatement branch = new CStatement();
if (i.LK())
{
if (f != null && decompiler.IgnoredCalls.Contains(f))
return new List<CStatement>();
if (f != null && f.Returns.Name == "void" && f.Returns.Kind == CType.TypeKind.ValueType)
{
branch.Kind = CStatement.Kinds.Call;
branch.CallFuncName = destName;
branch.CalledFunction = f;
}
else
{
branch.Kind = CStatement.Kinds.Assignment;
branch.Op1 = new CStatement.COperand("r3");
CStatement realBranch = new CStatement(CStatement.Kinds.Call);
realBranch.CallFuncName = destName;
realBranch.CalledFunction = f;
branch.Op2 = new CStatement.COperand(realBranch);
}
}
else
{
if (f != null && decompiler.CallIsRet.Contains(f))
branch.Kind = CStatement.Kinds.Return;
else
{
branch.Kind = CStatement.Kinds.Goto;
branch.BranchDestination = destName;
branch.BranchDestinationAddr = destination;
}
}
if (final == null)
final = branch;
else
{
final.InnerBlock = new List<CStatement>();
final.InnerBlock.Add(branch);
}
stats.Add(final);
return stats;
}