C# 클래스 Mosa.Compiler.Framework.CIL.UnaryBranchInstruction

Represents a unary branch instruction in internal representation.
This instruction is used to represent brfalse[.s] and brtrue[.s].
상속: Mosa.Compiler.Framework.CIL.UnaryInstruction
파일 보기 프로젝트 열기: tgiphil/MOSA-Project

공개 메소드들

메소드 설명
Decode ( InstructionNode ctx, IInstructionDecoder decoder ) : void

Decodes the specified instruction.

DecodeTargets ( IInstructionDecoder decoder ) : bool
UnaryBranchInstruction ( OpCode opcode ) : System

Initializes a new instance of the UnaryBranchInstruction class.

보호된 메소드들

메소드 설명
GetModifier ( InstructionNode node ) : string

Gets the instruction modifier.

메소드 상세

Decode() 공개 메소드

Decodes the specified instruction.
public Decode ( InstructionNode ctx, IInstructionDecoder decoder ) : void
ctx InstructionNode The context.
decoder IInstructionDecoder The instruction decoder, which holds the code stream.
리턴 void

DecodeTargets() 공개 메소드

public DecodeTargets ( IInstructionDecoder decoder ) : bool
decoder IInstructionDecoder
리턴 bool

GetModifier() 보호된 메소드

Gets the instruction modifier.
protected GetModifier ( InstructionNode node ) : string
node InstructionNode The context.
리턴 string

UnaryBranchInstruction() 공개 메소드

Initializes a new instance of the UnaryBranchInstruction class.
public UnaryBranchInstruction ( OpCode opcode ) : System
opcode OpCode The opcode.
리턴 System