本文整理汇总了C#中Instruction.RB方法的典型用法代码示例。如果您正苦于以下问题:C# Instruction.RB方法的具体用法?C# Instruction.RB怎么用?C# Instruction.RB使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Instruction
的用法示例。
在下文中一共展示了Instruction.RB方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: And_C
static List<CStatement> And_C(uint pc, uint instruction)
{
Instruction i = new Instruction(instruction);
/* op1 & op2 */
CStatement stat = new CStatement(CStatement.Kinds.And, RegName(i.RS()), RegName(i.RB()));
/* dest = expr */
CStatement ass = new CStatement(CStatement.Kinds.Assignment, RegName(i.RA()), stat);
List<CStatement> stats = new List<CStatement>();
stats.Add(ass);
if (i.RC())
stats.Add(new CStatement(CStatement.Kinds.Assignment, "cr0", RegName(i.RA())));
return stats;
}
示例2: Add_C
static List<CStatement> Add_C(uint pc, uint instruction)
{
Instruction i = new Instruction(instruction);
/* op1 + op2 */
CStatement stat = new CStatement(CStatement.Kinds.Addition, RegName(i.RA()), RegName(i.RB()));
/* dest = expr */
CStatement ass = new CStatement(CStatement.Kinds.Assignment, RegName(i.RD()), stat);
List<CStatement> stats = new List<CStatement>();
stats.Add(ass);
if (i.OE())
MessageBox.Show("This instruction sets the O bit. I don't know how to translate it! Ignoring.");
if (i.RC())
stats.Add(new CStatement(CStatement.Kinds.Assignment, "cr0", RegName(i.RD())));
return stats;
}
示例3: Lbzx_C
static List<CStatement> Lbzx_C(uint pc, uint instruction)
{
Instruction i = new Instruction(instruction);
CStatement stat = new CStatement(CStatement.Kinds.Assignment, RegName(i.RD()));
stat.OperandSizes = CStatement.Sizes.Byte;
if (i.RA() != 0)
{
if (i.RB() != 0)
stat.Op2 = new CStatement.COperand(RegName(i.RA()), RegName(i.RB()));
else
stat.Op2 = new CStatement.COperand(RegName(i.RA()), 0);
}
else
stat.Op2 = new CStatement.COperand(RegName(i.RB()), 0);
List<CStatement> stats = new List<CStatement>();
stats.Add(stat);
return stats;
}
示例4: Or_C
static List<CStatement> Or_C(uint pc, uint instruction)
{
Instruction i = new Instruction(instruction);
CStatement stat;
if (i.RS() == 0 && i.RB() != 0)
stat = new CStatement(CStatement.Kinds.Assignment, RegName(i.RA()), RegName(i.RB()));
else if (i.RB() == 0 && i.RS() != 0)
stat = new CStatement(CStatement.Kinds.Assignment, RegName(i.RA()), RegName(i.RS()));
else if (i.RS() == i.RB())
{
if (i.RS() != 0)
stat = new CStatement(CStatement.Kinds.Assignment, RegName(i.RA()), RegName(i.RS()));
else
stat = new CStatement(CStatement.Kinds.Assignment, RegName(i.RA()), 0);
}
else
{
CStatement or = new CStatement(CStatement.Kinds.Or, RegName(i.RS()), RegName(i.RB()));
or.OperandSizes = CStatement.Sizes.Long;
stat = new CStatement(CStatement.Kinds.Assignment, RegName(i.RA()), or);
}
stat.OperandSizes = CStatement.Sizes.Long;
List<CStatement> stats = new List<CStatement>();
stats.Add(stat);
if (i.RC())
stats.Add(new CStatement(CStatement.Kinds.Assignment, "cr0", RegName(i.RA())));
return stats;
}
示例5: Cmp_C
static List<CStatement> Cmp_C(uint pc, uint instruction)
{
Instruction i = new Instruction(instruction);
CStatement stat = new CStatement(CStatement.Kinds.Subtraction, RegName(i.RA()), RegName(i.RB()));
CStatement ass = new CStatement(CStatement.Kinds.Assignment, "cr" + i.CRFD(), stat);
if (!i.CmpLong())
ass.OperandSizes = stat.OperandSizes = CStatement.Sizes.Int;
List<CStatement> stats = new List<CStatement>();
stats.Add(ass);
return stats;
}