本文整理汇总了C#中MachineCodeEmitter.WriteByte方法的典型用法代码示例。如果您正苦于以下问题:C# MachineCodeEmitter.WriteByte方法的具体用法?C# MachineCodeEmitter.WriteByte怎么用?C# MachineCodeEmitter.WriteByte使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MachineCodeEmitter
的用法示例。
在下文中一共展示了MachineCodeEmitter.WriteByte方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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);
}
示例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)
{
if (ctx.Result is RegisterOperand)
emitter.WriteByte ((byte)(0x58 + (ctx.Result as RegisterOperand).Register.RegisterCode));
else
emitter.Emit (POP.Code, 0, ctx.Result, null);
}
示例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="node">The node.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(InstructionNode node, MachineCodeEmitter emitter)
{
if (node.OperandCount == 0)
{
emitter.EmitRelativeBranch(CALL, node.BranchTargets[0].Label);
return;
}
if (node.Operand1.IsSymbol)
{
emitter.WriteByte(0xE8);
emitter.EmitCallSite(node.Operand1);
}
else
{
emitter.Emit(RegCall, node.Operand1);
}
}
示例7: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="node">The node.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(InstructionNode node, MachineCodeEmitter emitter)
{
if (node.Operand1 == null)
{
emitter.EmitRelativeBranch(JMP, node.BranchTargets[0].Label);
}
else
{
if (node.Operand1.IsSymbol)
{
emitter.WriteByte(0xE9);
emitter.EmitCallSite(node.Operand1);
}
else if (node.Operand1.IsRegister)
{
emitter.Emit(JMP_R, node.Operand1);
}
}
}
示例8: 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);
}
}
}
示例9: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="node">The node.</param>
/// <param name="emitter">The emitter.</param>
/// <exception cref="System.InvalidOperationException">@unable to emit opcode for segment register</exception>
protected override void Emit(InstructionNode node, MachineCodeEmitter emitter)
{
if (node.Result.IsCPURegister)
{
if (node.Result.Register is SegmentRegister)
switch ((node.Result.Register as SegmentRegister).Segment)
{
case SegmentRegister.SegmentType.DS: emitter.Emit(POP_DS); return;
case SegmentRegister.SegmentType.ES: emitter.Emit(POP_ES); return;
case SegmentRegister.SegmentType.FS: emitter.Emit(POP_FS); return;
case SegmentRegister.SegmentType.GS: emitter.Emit(POP_GS); return;
case SegmentRegister.SegmentType.SS: emitter.Emit(POP_SS); return;
default: throw new InvalidOperationException(@"unable to emit opcode for segment register");
}
else
emitter.WriteByte((byte)(0x58 + node.Result.Register.RegisterCode));
}
else
emitter.Emit(POP, node.Result);
}
示例10: 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.Result is RegisterOperand)
{
if ((context.Result as RegisterOperand).Register is SegmentRegister)
switch (((context.Result as RegisterOperand).Register as SegmentRegister).Segment)
{
case SegmentRegister.SegmentType.DS: emitter.Emit(POP_DS, null, null); return;
case SegmentRegister.SegmentType.ES: emitter.Emit(POP_ES, null, null); return;
case SegmentRegister.SegmentType.FS: emitter.Emit(POP_FS, null, null); return;
case SegmentRegister.SegmentType.GS: emitter.Emit(POP_GS, null, null); return;
case SegmentRegister.SegmentType.SS: emitter.Emit(POP_SS, null, null); return;
default: throw new InvalidOperationException(@"unable to emit opcode for segment register");
}
else
emitter.WriteByte((byte)(0x58 + (context.Result as RegisterOperand).Register.RegisterCode));
}
else
emitter.Emit(POP, context.Result, null);
}
示例11: 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);
}
}
示例12: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="node">The node.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(InstructionNode node, MachineCodeEmitter emitter)
{
emitter.WriteByte(0xF3);
emitter.WriteByte(0x90);
}
示例13: 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)
{
emitter.WriteByte(0xFA);
}
示例14: 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);
}
示例15: Emit
/// <summary>
/// Emits the specified platform instruction.
/// </summary>
/// <param name="node">The node.</param>
/// <param name="emitter">The emitter.</param>
protected override void Emit(InstructionNode node, MachineCodeEmitter emitter)
{
emitter.WriteByte(0xCD);
emitter.WriteByte((byte)node.Operand1.ConstantUnsignedInteger);
}