aboutsummaryrefslogtreecommitdiff
path: root/opcodes/i386-init.h
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2022-03-17 11:01:38 +0100
committerJan Beulich <jbeulich@suse.com>2022-03-17 11:01:38 +0100
commit648d04db39d0f8d69d5f4d47a86c7bd9ecc10e85 (patch)
tree58b7b57747e6365326402eb772ea1cc3f786e71d /opcodes/i386-init.h
parent4417601f70ce20397dccd1884c2e0c44f25d9b3c (diff)
downloadgdb-648d04db39d0f8d69d5f4d47a86c7bd9ecc10e85.zip
gdb-648d04db39d0f8d69d5f4d47a86c7bd9ecc10e85.tar.gz
gdb-648d04db39d0f8d69d5f4d47a86c7bd9ecc10e85.tar.bz2
x86: assorted IAMCU CPU checking fixes
The checks done by check_cpu_arch_compatible() were halfway sensible only at the time where only L1OM support was there. The purpose, however, has always been to prevent bad uses of .arch (turning off the base CPU "feature" flag) while at the same time permitting extensions to be enabled / disabled. In order to achieve this (and to prevent regressions when L1OM and K1OM support are removed) - set CpuIAMCU in CPU_IAMCU_FLAGS, - adjust the IAMCU check in the function itself (the other two similarly broken checks aren't adjusted as they're slated to be removed anyway), - avoid calling the function for extentions (which would never have the base "feature" flag set), - add a new testcase actually exercising ".arch iamcu" (which would also regress with the planned removal).
Diffstat (limited to 'opcodes/i386-init.h')
-rw-r--r--opcodes/i386-init.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/i386-init.h b/opcodes/i386-init.h
index fa73bd2..265e39b 100644
--- a/opcodes/i386-init.h
+++ b/opcodes/i386-init.h
@@ -939,7 +939,7 @@
#define CPU_IAMCU_FLAGS \
{ { 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
+ 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, \