aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Instructions/InstEmitMove.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Instructions/InstEmitMove.cs')
-rw-r--r--ChocolArm64/Instructions/InstEmitMove.cs41
1 files changed, 0 insertions, 41 deletions
diff --git a/ChocolArm64/Instructions/InstEmitMove.cs b/ChocolArm64/Instructions/InstEmitMove.cs
deleted file mode 100644
index be3e8e2d..00000000
--- a/ChocolArm64/Instructions/InstEmitMove.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using ChocolArm64.Decoders;
-using ChocolArm64.Translation;
-using System.Reflection.Emit;
-
-namespace ChocolArm64.Instructions
-{
- static partial class InstEmit
- {
- public static void Movk(ILEmitterCtx context)
- {
- OpCodeMov64 op = (OpCodeMov64)context.CurrOp;
-
- context.EmitLdintzr(op.Rd);
- context.EmitLdc_I(~(0xffffL << op.Pos));
-
- context.Emit(OpCodes.And);
-
- context.EmitLdc_I(op.Imm);
-
- context.Emit(OpCodes.Or);
-
- context.EmitStintzr(op.Rd);
- }
-
- public static void Movn(ILEmitterCtx context)
- {
- OpCodeMov64 op = (OpCodeMov64)context.CurrOp;
-
- context.EmitLdc_I(~op.Imm);
- context.EmitStintzr(op.Rd);
- }
-
- public static void Movz(ILEmitterCtx context)
- {
- OpCodeMov64 op = (OpCodeMov64)context.CurrOp;
-
- context.EmitLdc_I(op.Imm);
- context.EmitStintzr(op.Rd);
- }
- }
-} \ No newline at end of file