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

Base class for instructions, which invoke other functions.
상속: BaseCILInstruction
파일 보기 프로젝트 열기: tgiphil/MOSA-Project

공개 메소드들

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

Decodes the specified instruction.

InvokeInstruction ( OpCode opcode ) : System

Initializes a new instance of the InvokeInstruction class.

Resolve ( Context ctx, BaseMethodCompiler compiler ) : void

Validates the instruction operands and creates a matching variable for the result.

보호된 메소드들

메소드 설명
DecodeInvocationTarget ( InstructionNode ctx, IInstructionDecoder decoder, InvokeSupportFlags flags ) : MosaMethod

Decodes the invocation target.

비공개 메소드들

메소드 설명
SetInvokeTarget ( InstructionNode context, BaseMethodCompiler compiler, MosaMethod method ) : void

Sets the invoke target.

메소드 상세

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

DecodeInvocationTarget() 보호된 정적인 메소드

Decodes the invocation target.
protected static DecodeInvocationTarget ( InstructionNode ctx, IInstructionDecoder decoder, InvokeSupportFlags flags ) : MosaMethod
ctx InstructionNode The context.
decoder IInstructionDecoder The IL decoder, which provides decoding functionality.
flags InvokeSupportFlags Flags, which control the
리턴 MosaMethod

InvokeInstruction() 공개 메소드

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

Resolve() 공개 메소드

Validates the instruction operands and creates a matching variable for the result.
public Resolve ( Context ctx, BaseMethodCompiler compiler ) : void
ctx Context The context.
compiler BaseMethodCompiler The compiler.
리턴 void