|
1 | 1 | /* **********************************************************
|
2 |
| - * Copyright (c) 2022 Google, Inc. All rights reserved. |
| 2 | + * Copyright (c) 2022-2025 Google, Inc. All rights reserved. |
3 | 3 | * Copyright (c) 2016 ARM Limited. All rights reserved.
|
4 | 4 | * **********************************************************/
|
5 | 5 |
|
@@ -111,11 +111,25 @@ read_feature_regs(uint64 isa_features[])
|
111 | 111 | :
|
112 | 112 | : "x0");
|
113 | 113 |
|
114 |
| - asm(".inst 0xd5380740\n" /* mrs x0, ID_AA64MMFR2_EL1 */ |
115 |
| - "mov %0, x0" |
116 |
| - : "=r"(isa_features[AA64MMFR2]) |
117 |
| - : |
118 |
| - : "x0"); |
| 114 | + if (IF_LINUX_ELSE(!IS_STRING_OPTION_EMPTY(xarch_root), false)) { |
| 115 | + /* We assume we're under QEMU, where this causes a fatal SIGILL (i#7315). |
| 116 | + * XXX i#7315: We'd prefer to use TRY_EXCEPT_ALLOW_NO_DCONTEXT here and |
| 117 | + * remove this xarch_root check, but proc_init() is called prior to |
| 118 | + * init-time signal handling being set up: and we'd need to add SIGILL |
| 119 | + * to the ones caught at init time, which complicates later uses of |
| 120 | + * SIGILL for NUDGESIG_SIGNUM and suspend_signum (and on x86 |
| 121 | + * XSTATE_QUERY_SIG): so we'd want SIGILL to only work for try-except |
| 122 | + * at init time. This is all a little too involved to implement right now. |
| 123 | + */ |
| 124 | + LOG(GLOBAL, LOG_TOP | LOG_ASYNCH, 1, |
| 125 | + "Skipping MRS of ID_AA64MMFR2_EL1 under QEMU\n"); |
| 126 | + } else { |
| 127 | + asm(".inst 0xd5380740\n" /* mrs x0, ID_AA64MMFR2_EL1 */ |
| 128 | + "mov %0, x0" |
| 129 | + : "=r"(isa_features[AA64MMFR2]) |
| 130 | + : |
| 131 | + : "x0"); |
| 132 | + } |
119 | 133 | }
|
120 | 134 |
|
121 | 135 | # if !defined(MACOS)
|
|
0 commit comments