Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <modra@gmail.com>2006-10-24 05:27:28 +0400
committerAlan Modra <modra@gmail.com>2006-10-24 05:27:28 +0400
commite359f110bab2868d19d36b6efe366386855d7326 (patch)
tree930d9ec48801c10da4f4c0edeadd67aaa94cb12b
parent7e39651a5498881a4cbb0a756fa8f60cc924f579 (diff)
Add powerpc cell support.
-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 3f70f5db9..33a22688a 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 fc4d41f9f..2205bd6a6 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)