Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: include/elf/sparc.h

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « include/elf/s390.h ('k') | include/elf/tilegx.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/elf/sparc.h
diff --git a/include/elf/sparc.h b/include/elf/sparc.h
index fc8a765a60825d0e0e765ae1fcb885e83cececfc..d182f4d769629e387f582749c79857cdb9913cd0 100644
--- a/include/elf/sparc.h
+++ b/include/elf/sparc.h
@@ -162,6 +162,7 @@ START_RELOC_NUMBERS (elf_sparc_reloc_type)
RELOC_NUMBER (R_SPARC_H34, 85)
RELOC_NUMBER (R_SPARC_SIZE32, 86)
RELOC_NUMBER (R_SPARC_SIZE64, 87)
+ RELOC_NUMBER (R_SPARC_WDISP10, 88)
EMPTY_RELOC (R_SPARC_max_std)
@@ -212,5 +213,19 @@ enum
#define ELF_SPARC_HWCAP_IMA 0x00008000 /* integer multiply-add */
#define ELF_SPARC_HWCAP_ASI_CACHE_SPARING \
0x00010000 /* cache sparing ASIs */
+#define ELF_SPARC_HWCAP_AES 0x00020000 /* AES crypto insns */
+#define ELF_SPARC_HWCAP_DES 0x00040000 /* DES crypto insns */
+#define ELF_SPARC_HWCAP_KASUMI 0x00080000 /* KASUMI crypto insns */
+#define ELF_SPARC_HWCAP_CAMELLIA \
+ 0x00100000 /* CAMELLIA crypto insns */
+#define ELF_SPARC_HWCAP_MD5 0x00200000 /* MD5 hashing insns */
+#define ELF_SPARC_HWCAP_SHA1 0x00400000 /* SHA1 hashing insns */
+#define ELF_SPARC_HWCAP_SHA256 0x00800000 /* SHA256 hashing insns */
+#define ELF_SPARC_HWCAP_SHA512 0x01000000 /* SHA512 hashing insns */
+#define ELF_SPARC_HWCAP_MPMUL 0x02000000 /* Multiple Precision Multiply */
+#define ELF_SPARC_HWCAP_MONT 0x04000000 /* Montgomery Mult/Sqrt */
+#define ELF_SPARC_HWCAP_PAUSE 0x08000000 /* Pause insn */
+#define ELF_SPARC_HWCAP_CBCOND 0x10000000 /* Compare and Branch insns */
+#define ELF_SPARC_HWCAP_CRC32C 0x20000000 /* CRC32C insn */
#endif /* _ELF_SPARC_H */
« no previous file with comments | « include/elf/s390.h ('k') | include/elf/tilegx.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698