diff options
author | Andreas Krebbel <krebbel@linux.ibm.com> | 2021-02-15 14:20:00 +0100 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.ibm.com> | 2021-02-15 14:32:17 +0100 |
commit | ba2b480f1037082d27da1afdfe0793c8aac9b1bd (patch) | |
tree | 56d25b61192d23f03d7721c54b6ff7b2f31af1f8 /include | |
parent | 8c6740616cd244e5763e974cb737affbe71db385 (diff) | |
download | gdb-ba2b480f1037082d27da1afdfe0793c8aac9b1bd.zip gdb-ba2b480f1037082d27da1afdfe0793c8aac9b1bd.tar.gz gdb-ba2b480f1037082d27da1afdfe0793c8aac9b1bd.tar.bz2 |
IBM Z: Implement instruction set extensions
opcodes/
* s390-mkopc.c (main): Accept arch14 as cpu string.
* s390-opc.txt: Add new arch14 instructions.
include/
* opcode/s390.h (enum s390_opcode_cpu_val): Add
S390_OPCODE_ARCH14.
gas/
* config/tc-s390.c (s390_parse_cpu): New entry for arch14.
* doc/c-s390.texi: Document arch14 march option.
* testsuite/gas/s390/s390.exp: Run the arch14 related tests.
* testsuite/gas/s390/zarch-arch14.d: New test.
* testsuite/gas/s390/zarch-arch14.s: New test.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/opcode/s390.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 18237b5..6c3a835 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2021-02-15 Andreas Krebbel <krebbel@linux.ibm.com> + + * opcode/s390.h (enum s390_opcode_cpu_val): Add + S390_OPCODE_ARCH14. + 2021-02-08 Mike Frysinger <vapier@gentoo.org> * opcode/tic54x.h (mmregs): Rename to ... diff --git a/include/opcode/s390.h b/include/opcode/s390.h index cc112b0..868ae2f 100644 --- a/include/opcode/s390.h +++ b/include/opcode/s390.h @@ -44,6 +44,7 @@ enum s390_opcode_cpu_val S390_OPCODE_Z13, S390_OPCODE_ARCH12, S390_OPCODE_ARCH13, + S390_OPCODE_ARCH14, S390_OPCODE_MAXCPU }; |