aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2010-02-08 01:59:38 +0000
committerAlan Modra <amodra@gmail.com>2010-02-08 01:59:38 +0000
commitce3d2015b21ba6aa3d2bb0b0ca88101cec56a7be (patch)
tree0555f5021de308066dc8d7210e9e405c3f2c97b2 /include
parent06a162cf6325616071ef4c2fc19e8c4d05c64ac1 (diff)
downloadfsf-binutils-gdb-ce3d2015b21ba6aa3d2bb0b0ca88101cec56a7be.zip
fsf-binutils-gdb-ce3d2015b21ba6aa3d2bb0b0ca88101cec56a7be.tar.gz
fsf-binutils-gdb-ce3d2015b21ba6aa3d2bb0b0ca88101cec56a7be.tar.bz2
include/
* opcode/ppc.h (PPC_OPCODE_TITAN): Define. bfd/ * archures.c (bfd_mach_ppc_titan): Define. * bfd-in2.h: Regenerate. * cpu-powerpc.c (bfd_powerpc_archs): Add titan entry. opcodes/ * ppc-dis.c (ppc_opts): Add titan entry. * ppc-opc.c (TITAN, MULHW): Define. (powerpc_opcodes): Support AppliedMicro Titan core (APM83xxx). gas/ * config/tc-ppc.c (md_show_usage): Mention -mtitan. Don't use tabs. (ppc_mach): Handle titan. * doc/c-ppc.texi: Mention -mtitan. gas/testsuite/ * gas/ppc/titan.d, * gas/ppc/titan.s: New test. * gas/ppc/ppc.exp: Run it.
Diffstat (limited to 'include')
-rw-r--r--include/opcode/ppc.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h
index 1dc2f1d..e4b624a 100644
--- a/include/opcode/ppc.h
+++ b/include/opcode/ppc.h
@@ -1,6 +1,6 @@
/* ppc.h -- Header file for PowerPC opcode table
Copyright 1994, 1995, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
- 2007, 2008, 2009 Free Software Foundation, Inc.
+ 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Support
This file is part of GDB, GAS, and the GNU binutils.
@@ -168,11 +168,14 @@ extern const int powerpc_num_opcodes;
#define PPC_OPCODE_VSX 0x80000000
/* Opcode is supported by A2. */
-#define PPC_OPCODE_A2 0x100000000ULL
+#define PPC_OPCODE_A2 0x100000000ULL
/* Opcode is supported by PowerPC 476 processor. */
#define PPC_OPCODE_476 0x200000000ULL
+/* Opcode is supported by AppliedMicro Titan core */
+#define PPC_OPCODE_TITAN 0x400000000ULL
+
/* A macro to extract the major opcode from an instruction. */
#define PPC_OP(i) (((i) >> 26) & 0x3f)