当前位置: 首页>>代码示例>>C#>>正文


C# IInstructionDecoder.GetBlock方法代码示例

本文整理汇总了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;
        }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:10,代码来源:SwitchInstruction.cs

示例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));
        }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:19,代码来源:SwitchInstruction.cs

示例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);
        }
开发者ID:yonglehou,项目名称:MOSA-Project,代码行数:14,代码来源:BinaryBranchInstruction.cs

示例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;
        }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:15,代码来源:UnaryBranchInstruction.cs

示例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);
        }
开发者ID:pacificIT,项目名称:MOSA-Project,代码行数:22,代码来源:ReturnInstruction.cs

示例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.");
            }
        }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:28,代码来源:UnaryBranchInstruction.cs

示例7: DecodeTargets

 public override bool DecodeTargets(IInstructionDecoder decoder)
 {
     decoder.GetBlock((int)decoder.Instruction.Operand);
     return true;
 }
开发者ID:yonglehou,项目名称:MOSA-Project,代码行数:5,代码来源:BinaryBranchInstruction.cs


注:本文中的IInstructionDecoder.GetBlock方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。