qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 29/30] accel/tcg/user-exec: Implement CPU-specific signal


From: WANG Xuerui
Subject: Re: [PATCH v2 29/30] accel/tcg/user-exec: Implement CPU-specific signal handler for loongarch64 hosts
Date: Thu, 23 Sep 2021 01:35:03 +0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:94.0) Gecko/20100101 Thunderbird/94.0a1

Hi Richard,

On 9/23/21 00:51, Richard Henderson wrote:
On 9/21/21 1:19 PM, WANG Xuerui wrote:
+        case 0b00011111110: /* stle.w */
+        case 0b00011111111: /* stle.d */
+            is_write = 1;
+            break;
+        default:
+            /* test for am* instruction range */
+            if (0b00011000000 <= sel && sel <= 0b00011100011) {
+                is_write = 1;
+            }

Probably better to fold the range check into the switch with

  case 0b00011000000 ... 0b00011100011:  /* am* insn range */

I just googled this particular syntax; it looks like a GCC-only extension, but is already used in a few places inside QEMU. So I think I'll take this advice and just make the range another switch arm.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]