From fbcf802fbc32dc7730520402dd44b0667bef2bbd Mon Sep 17 00:00:00 2001 From: merry Date: Wed, 14 Sep 2022 22:18:15 +0100 Subject: A32/T32/A64: Implement Hint instructions (CSDB, SEV, SEVL, WFE, WFI, YIELD) (#3694) * OpCodeTable: Implement Hint instructions (CSDB, SEV, SEVL, WFE, WFI, YIELD) * A64: Remove catch-all Hint instruction * T16: Handle unallocated hint instructions Some thumb tests execute these assuming that they're nops. * T32: Fill out other Hint instructions * A32: Fill out other hint instructions --- ARMeilleure/Instructions/InstEmitSystem.cs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'ARMeilleure/Instructions/InstEmitSystem.cs') diff --git a/ARMeilleure/Instructions/InstEmitSystem.cs b/ARMeilleure/Instructions/InstEmitSystem.cs index 50dab07d..cdfaa26e 100644 --- a/ARMeilleure/Instructions/InstEmitSystem.cs +++ b/ARMeilleure/Instructions/InstEmitSystem.cs @@ -15,11 +15,6 @@ namespace ARMeilleure.Instructions private const int DczSizeLog2 = 4; // Log2 size in words public const int DczSizeInBytes = 4 << DczSizeLog2; - public static void Hint(ArmEmitterContext context) - { - // Execute as no-op. - } - public static void Isb(ArmEmitterContext context) { // Execute as no-op. -- cgit v1.2.3