diff options
author | Alan Modra <amodra@gmail.com> | 2006-10-24 01:27:29 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-10-24 01:27:29 +0000 |
commit | ede602d7c88efaaccf5c0679e0382298ae989d95 (patch) | |
tree | bc7447faf2f165356db03bf1034546388d2cf999 /include | |
parent | 2941e768e4dbb9a0cc4cc7a4cc348319cab40729 (diff) | |
download | gdb-ede602d7c88efaaccf5c0679e0382298ae989d95.zip gdb-ede602d7c88efaaccf5c0679e0382298ae989d95.tar.gz gdb-ede602d7c88efaaccf5c0679e0382298ae989d95.tar.bz2 |
Add powerpc cell support.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/ppc.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 3f70f5d..33a2268 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 fc4d41f..2205bd6 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) |