diff options
author | Dmitry Selyutin <ghostmansd@gmail.com> | 2022-07-25 16:10:14 +0300 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2022-08-11 18:38:29 +0930 |
commit | 33ae8a3ae31d8ea787d79d2a677d960721ffe682 (patch) | |
tree | 6af5ac519b400849a6f7f3e4dc1f2e6df2a8c5dc /gas | |
parent | df4860daad8ffa29e0185e543a0a2aae32f7a925 (diff) | |
download | gdb-33ae8a3ae31d8ea787d79d2a677d960721ffe682.zip gdb-33ae8a3ae31d8ea787d79d2a677d960721ffe682.tar.gz gdb-33ae8a3ae31d8ea787d79d2a677d960721ffe682.tar.bz2 |
ppc/svp64: support LibreSOC architecture
This patch adds support for LibreSOC machine and SVP64 extension flag
for PowerPC architecture. SV (Simple-V) is a strict RISC-paradigm
Scalable Vector Extension for the Power ISA. SVP64 is the 64-bit
Prefixed instruction format implementing SV. Funded by NLnet through EU
Grants No: 825310 and 825322, SV is in DRAFT form and is to be publicly
submitted via the OpenPOWER Foundation ISA Working Group via the
newly-created External RFC Process.
For more details, visit https://libre-soc.org.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-ppc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 452fab1..ffc9985 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -1382,6 +1382,8 @@ PowerPC options:\n")); fprintf (stream, _("\ -mpower10, -mpwr10 generate code for Power10 architecture\n")); fprintf (stream, _("\ +-mlibresoc generate code for Libre-SOC architecture\n")); + fprintf (stream, _("\ -mcell generate code for Cell Broadband Engine architecture\n")); fprintf (stream, _("\ -mcom generate code for Power/PowerPC common instructions\n")); |