本文整理汇总了C#中IInstructionDecoder.GetBlock方法的典型用法代码示例。如果您正苦于以下问题:C# IInstructionDecoder.GetBlock方法的具体用法?C# IInstructionDecoder.GetBlock怎么用?C# IInstructionDecoder.GetBlock使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IInstructionDecoder
的用法示例。
在下文中一共展示了IInstructionDecoder.GetBlock方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DecodeTargets
public override bool DecodeTargets(IInstructionDecoder decoder)
{
foreach (var target in (int[])decoder.Instruction.Operand)
{
var block = decoder.GetBlock(target);
}
decoder.GetBlock(decoder.Instruction.Next.Value);
return true;
}
示例2: Decode
/// <summary>
/// Decodes the specified instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="decoder">The instruction decoder, which holds the code stream.</param>
public override void Decode(InstructionNode ctx, IInstructionDecoder decoder)
{
// Decode base classes first
base.Decode(ctx, decoder);
foreach (var target in (int[])decoder.Instruction.Operand)
{
var block = decoder.GetBlock(target);
ctx.AddBranchTarget(block);
}
ctx.AddBranchTarget(decoder.GetBlock(decoder.Instruction.Next.Value));
}
示例3: Decode
/// <summary>
/// Decodes the specified instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="decoder">The instruction decoder, which holds the code stream.</param>
public override void Decode(InstructionNode ctx, IInstructionDecoder decoder)
{
// Decode base classes first
base.Decode(ctx, decoder);
var block = decoder.GetBlock((int)decoder.Instruction.Operand);
ctx.AddBranchTarget(block);
}
示例4: DecodeTargets
public override bool DecodeTargets(IInstructionDecoder decoder)
{
if (opcode == OpCode.Brfalse_s || opcode == OpCode.Brtrue_s ||
opcode == OpCode.Brfalse || opcode == OpCode.Brtrue)
{
decoder.GetBlock((int)decoder.Instruction.Operand);
return true;
}
else if (opcode == OpCode.Switch)
{
return base.DecodeTargets(decoder);
}
return true;
}
示例5: Decode
/// <summary>
/// Decodes the specified instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="decoder">The instruction decoder, which holds the code stream.</param>
public override void Decode(InstructionNode ctx, IInstructionDecoder decoder)
{
// Decode base classes first
base.Decode(ctx, decoder);
if (OpCode.Ret != opcode)
throw new ArgumentException(@"Invalid opcode.", @"codeReader");
if (decoder.Method.Signature.ReturnType.IsVoid)
ctx.OperandCount = 0;
else
ctx.OperandCount = 1;
var block = decoder.GetBlock(BasicBlock.EpilogueLabel);
ctx.AddBranchTarget(block);
}
示例6: Decode
/// <summary>
/// Decodes the specified instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="decoder">The instruction decoder, which holds the code stream.</param>
public override void Decode(InstructionNode ctx, IInstructionDecoder decoder)
{
// Decode base classes first
base.Decode(ctx, decoder);
// Read the branch target
// Is this a short branch target?
if (opcode == OpCode.Brfalse_s || opcode == OpCode.Brtrue_s ||
opcode == OpCode.Brfalse || opcode == OpCode.Brtrue)
{
var block = decoder.GetBlock((int)decoder.Instruction.Operand);
ctx.AddBranchTarget(block);
}
else if (opcode == OpCode.Switch)
{
// Don't do anything, the derived class will do everything
}
else
{
throw new NotSupportedException(@"Invalid opcode " + opcode.ToString() + " specified for UnaryBranchInstruction.");
}
}
示例7: DecodeTargets
public override bool DecodeTargets(IInstructionDecoder decoder)
{
decoder.GetBlock((int)decoder.Instruction.Operand);
return true;
}