summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2006-10-24 01:27:28 +0000
committerAlan Modra <amodra@bigpond.net.au>2006-10-24 01:27:28 +0000
commitff378c4dead7c4ce2ac780fbf15182196b1a5718 (patch)
treef4e885654c1a191993de6f31165b01205f50e9cf /include
parent717c0c215660cee7faf2ee3de64aabe19f321029 (diff)
downloadgdb-ff378c4dead7c4ce2ac780fbf15182196b1a5718.tar.gz
Add powerpc cell support.
Diffstat (limited to 'include')
-rw-r--r--include/opcode/ChangeLog4
-rw-r--r--include/opcode/ppc.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index 3f70f5db9e2..33a22688ab4 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,3 +1,7 @@
+2006-10-24 Andrew Pinski <andrew_pinski@playstation.sony.com>
+
+ * ppc.h (PPC_OPCODE_CELL): Define.
+
2006-10-23 Dwarakanath Rajagopal <dwarak.rajagopal@amd.com>
* i386.h : Modify opcode to support for the change in POPCNT opcode
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h
index fc4d41f9f41..2205bd6a65c 100644
--- a/include/opcode/ppc.h
+++ b/include/opcode/ppc.h
@@ -143,6 +143,8 @@ extern const int powerpc_num_opcodes;
/* Opcode is only supported by Power6 architecture. */
#define PPC_OPCODE_POWER6 0x4000000
+/* Opcode is only supported by PowerPC Cell family. */
+#define PPC_OPCODE_CELL 0x8000000
/* A macro to extract the major opcode from an instruction. */
#define PPC_OP(i) (((i) >> 26) & 0x3f)