本文整理汇总了C#中MachineCodeEmitter.Call方法的典型用法代码示例。如果您正苦于以下问题:C# MachineCodeEmitter.Call方法的具体用法?C# MachineCodeEmitter.Call怎么用?C# MachineCodeEmitter.Call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MachineCodeEmitter
的用法示例。
在下文中一共展示了MachineCodeEmitter.Call方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context context, MachineCodeEmitter emitter)
{
if (context.OperandCount == 0)
{
// TODO:
//emitter.EmitBranch(LabelCall, context.BranchTargets[0]);
return;
}
Operand destinationOperand = context.Operand1;
SymbolOperand destinationSymbol = destinationOperand as SymbolOperand;
if (destinationSymbol != null)
{
emitter.Call(destinationSymbol);
}
else
{
if (destinationOperand is MemoryOperand)
{
//RegisterOperand register = destinationOperand as RegisterOperand;
//emitter.EmitSingleRegisterInstructions(0x11, (byte)register.Register.RegisterCode);
MemoryOperand memory = destinationOperand as MemoryOperand;
emitter.EmitRegisterOperandWithK16(0x101, (byte)memory.Base.RegisterCode, (ushort)memory.Offset);
}
}
}
示例2: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context ctx, MachineCodeEmitter emitter)
{
emitter.WriteByte(0xE8);
emitter.WriteByte(0x00);
emitter.WriteByte(0x00);
emitter.WriteByte(0x00);
emitter.WriteByte(0x00);
emitter.Call(ctx.InvokeTarget);
}
示例3: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context ctx, MachineCodeEmitter emitter)
{
Operand destinationOperand = ctx.Operand1;
SymbolOperand destinationSymbol = destinationOperand as SymbolOperand;
if (destinationSymbol != null)
{
emitter.WriteByte(0xE8);
emitter.Call(destinationSymbol);
}
else
{
RegisterOperand registerOperand = destinationOperand as RegisterOperand;
emitter.Emit(RegCall, registerOperand);
}
}
示例4: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context context, MachineCodeEmitter emitter)
{
Operand destinationOperand = context.Operand1;
SymbolOperand destinationSymbol = destinationOperand as SymbolOperand;
if (destinationSymbol != null)
{
emitter.WriteByte(0xE9);
emitter.Call(destinationSymbol);
}
else
if (context.Operand1 is RegisterOperand)
emitter.Emit(JmpReg, context.Operand1);
else
emitter.EmitBranch(JMP, context.BranchTargets[0]);
}
示例5: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context context, MachineCodeEmitter emitter)
{
if (context.OperandCount == 0)
{
emitter.EmitBranch(LabelCall, context.BranchTargets[0]);
return;
}
if (context.Operand1.IsSymbol)
{
emitter.WriteByte(0xE8);
emitter.Call(context.Operand1);
}
else
{
emitter.Emit(RegCall, context.Operand1);
}
}
示例6: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context context, MachineCodeEmitter emitter)
{
if (context.Operand1 == null)
{
emitter.EmitBranch(JMP, context.BranchTargets[0]);
}
else
{
if (context.Operand1.IsSymbol)
{
emitter.WriteByte(0xE9);
emitter.Call(context.Operand1);
}
else if (context.Operand1.IsRegister)
{
emitter.Emit(JMP_R, context.Operand1);
}
}
}
示例7: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context context, MachineCodeEmitter emitter)
{
if (context.OperandCount == 0)
{
// TODO:
//emitter.EmitBranch(LabelCall, context.BranchTargets[0]);
return;
}
if (context.Operand1.IsSymbol)
{
emitter.Call(context.Operand1);
}
else
{
if (context.Operand1.IsMemoryAddress)
{
emitter.EmitRegisterOperandWithK16(0x101, (byte)context.Operand1.Base.RegisterCode, (ushort)context.Operand1.Offset);
}
}
}
示例8: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="context">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context context, MachineCodeEmitter emitter)
{
if (context.OperandCount == 0)
{
emitter.EmitBranch(LabelCall, context.BranchTargets[0]);
return;
}
Operand destinationOperand = context.Operand1;
SymbolOperand destinationSymbol = destinationOperand as SymbolOperand;
if (destinationSymbol != null)
{
emitter.WriteByte(0xE8);
emitter.Call(destinationSymbol);
}
else
{
RegisterOperand registerOperand = destinationOperand as RegisterOperand;
emitter.Emit(RegCall, registerOperand);
}
}
示例9: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="ctx">The context.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(Context ctx, MachineCodeEmitter emitter)
{
emitter.WriteByte (0xe8);
emitter.Write (new byte[4], 0, 4);
emitter.Call (ctx.InvokeTarget);
}