diff options
author | jl139090 <none@none> | 2007-09-12 22:37:07 -0700 |
---|---|---|
committer | jl139090 <none@none> | 2007-09-12 22:37:07 -0700 |
commit | e98fafb9956429b59c817d4fbd27720c73879203 (patch) | |
tree | 006ccb99bb3ed3f566f430088b88c7e4864a72db /usr/src/common | |
parent | c4f91784e8e1661a861af87f7d98cbb9edc7314f (diff) | |
download | illumos-joyent-e98fafb9956429b59c817d4fbd27720c73879203.tar.gz |
PSARC 2007/337 OPL Jupiter CPU Support
PSARC 2007/433 Integer Multiply-Add instruction set feature
PSARC 2007/506 FMA for OPL Jupiter CPU
6551253 OPL Jupiter CPU support
Diffstat (limited to 'usr/src/common')
-rw-r--r-- | usr/src/common/elfcap/elfcap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/common/elfcap/elfcap.c b/usr/src/common/elfcap/elfcap.c index 1fb412bf98..4bafbcf64f 100644 --- a/usr/src/common/elfcap/elfcap.c +++ b/usr/src/common/elfcap/elfcap.c @@ -98,6 +98,7 @@ static const char Hw1_s_reserved3[] = "RESERVED3"; static const char Hw1_s_reserved4[] = "RESERVED4"; static const char Hw1_s_reserved5[] = "RESERVED5"; static const char Hw1_s_fjfmau[] = "FJFMAU"; +static const char Hw1_s_ima[] = "IMA"; #elif CAP_LOWERCASE static const char Hw1_s_mul32[] = "mul32"; static const char Hw1_s_div32[] = "div32"; @@ -114,6 +115,7 @@ static const char Hw1_s_reserved3[] = "reserved3"; static const char Hw1_s_reserved4[] = "reserved4"; static const char Hw1_s_reserved5[] = "reserved5"; static const char Hw1_s_fjfmau[] = "fjfmau"; +static const char Hw1_s_ima[] = "ima"; #else #error "Hardware Capabilities (sparc) - what case do you want?" @@ -139,7 +141,8 @@ static const Cap_desc hw1_s[] = { { 0, Hw1_s_reserved3, sizeof (Hw1_s_reserved3) - 1 }, { 0, Hw1_s_reserved4, sizeof (Hw1_s_reserved4) - 1 }, { 0, Hw1_s_reserved5, sizeof (Hw1_s_reserved5) - 1 }, - { AV_SPARC_FJFMAU, Hw1_s_fjfmau, sizeof (Hw1_s_fjfmau) - 1 } + { AV_SPARC_FJFMAU, Hw1_s_fjfmau, sizeof (Hw1_s_fjfmau) - 1 }, + { AV_SPARC_IMA, Hw1_s_ima, sizeof (Hw1_s_ima) - 1 } }; static const uint_t hw1_s_num = sizeof (hw1_s) / sizeof (Cap_desc); |