本文整理汇总了C#中Instruction.BO方法的典型用法代码示例。如果您正苦于以下问题:C# Instruction.BO方法的具体用法?C# Instruction.BO怎么用?C# Instruction.BO使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Instruction
的用法示例。
在下文中一共展示了Instruction.BO方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Bclr_C
static List<CStatement> Bclr_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);
CStatement branch = new CStatement();
if (i.LK())
{
branch.Kind = CStatement.Kinds.Assignment;
branch.Op1 = new CStatement.COperand("r3");
CStatement realBranch = new CStatement(CStatement.Kinds.Call);
realBranch.CallFuncName = "lr";
realBranch.BranchDestinationRegister = "lr";
branch.Op2 = new CStatement.COperand(realBranch);
}
else
branch.Kind = CStatement.Kinds.Return;
if (final == null)
final = branch;
else
{
final.InnerBlock = new List<CStatement>();
final.InnerBlock.Add(branch);
}
stats.Add(final);
return stats;
}
示例2: 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;
}
示例3: ConditionCheck
private static CStatement ConditionCheck(Instruction i)
{
CStatement CtrCondition = null;
CStatement CrCondition = null;
if ((i.BO() & 4) == 0)
{
CtrCondition = new CStatement();
}
if ((i.BO() & 0x10) == 0)
{
CrCondition = new CStatement();
CrCondition.Kind = CStatement.Kinds.Comparison;
uint cr = i.BI() / 4;
uint fld = i.BI() % 4;
CrCondition.Op1 = new CStatement.COperand("cr" + cr);
CrCondition.Op2 = new CStatement.COperand(0);
bool bo = ((i.BO() >> 3) & 1) == 1;
switch (fld)
{
case 0:
if (bo)
CrCondition.ConditionSign = CStatement.Conditions.LessThan;
else
CrCondition.ConditionSign = CStatement.Conditions.GreaterEqualThan;
break;
case 1:
if (bo)
CrCondition.ConditionSign = CStatement.Conditions.GreaterThan;
else
CrCondition.ConditionSign = CStatement.Conditions.LessEqualThan;
break;
case 2:
if (bo)
CrCondition.ConditionSign = CStatement.Conditions.Equal;
else
CrCondition.ConditionSign = CStatement.Conditions.NotEqual;
break;
case 3:
if (bo)
CrCondition.ConditionSign = CStatement.Conditions.Overflow;
else
CrCondition.ConditionSign = CStatement.Conditions.NotOverflow;
break;
}
}
CStatement final = null;
if (CrCondition != null)
{
if (CtrCondition != null)
{
CStatement composite = new CStatement(CStatement.Kinds.CompositeCondition, CrCondition, CtrCondition);
composite.ConditionSign = CStatement.Conditions.And;
final = new CStatement();
final.Kind = CStatement.Kinds.Conditional;
final.Condition = composite;
}
else
{
final = new CStatement();
final.Kind = CStatement.Kinds.Conditional;
final.Condition = CrCondition;
}
}
else if (CtrCondition != null)
{
final = new CStatement();
final.Kind = CStatement.Kinds.Conditional;
final.Condition = CtrCondition;
}
return final;
}