ppc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* ppc.h -- Header file for PowerPC opcode table
  2.    Copyright 1994 Free Software Foundation, Inc.
  3.    Written by Ian Lance Taylor, Cygnus Support
  4. This file is part of GDB, GAS, and the GNU binutils.
  5. GDB, GAS, and the GNU binutils are free software; you can redistribute
  6. them and/or modify them under the terms of the GNU General Public
  7. License as published by the Free Software Foundation; either version
  8. 1, or (at your option) any later version.
  9. GDB, GAS, and the GNU binutils are distributed in the hope that they
  10. will be useful, but WITHOUT ANY WARRANTY; without even the implied
  11. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
  12. the GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this file; see the file COPYING.  If not, write to the Free
  15. Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  16. #ifndef PPC_H
  17. #define PPC_H
  18. /* The opcode table is an array of struct powerpc_opcode.  */
  19. struct powerpc_opcode
  20. {
  21.   /* The opcode name.  */
  22.   const char *name;
  23.   /* The opcode itself.  Those bits which will be filled in with
  24.      operands are zeroes.  */
  25.   unsigned long opcode;
  26.   /* The opcode mask.  This is used by the disassembler.  This is a
  27.      mask containing ones indicating those bits which must match the
  28.      opcode field, and zeroes indicating those bits which need not
  29.      match (and are presumably filled in by operands).  */
  30.   unsigned long mask;
  31.   /* One bit flags for the opcode.  These are used to indicate which
  32.      specific processors support the instructions.  The defined values
  33.      are listed below.  */
  34.   unsigned long flags;
  35.   /* An array of operand codes.  Each code is an index into the
  36.      operand table.  They appear in the order which the operands must
  37.      appear in assembly code, and are terminated by a zero.  */
  38.   unsigned char operands[8];
  39. };
  40. /* The table itself is sorted by major opcode number, and is otherwise
  41.    in the order in which the disassembler should consider
  42.    instructions.  */
  43. extern const struct powerpc_opcode powerpc_opcodes[];
  44. extern const int powerpc_num_opcodes;
  45. /* Values defined for the flags field of a struct powerpc_opcode.  */
  46. /* Opcode is defined for the PowerPC architecture.  */
  47. #define PPC_OPCODE_PPC (01)
  48. /* Opcode is defined for the POWER (RS/6000) architecture.  */
  49. #define PPC_OPCODE_POWER (02)
  50. /* Opcode is defined for the POWER2 (Rios 2) architecture.  */
  51. #define PPC_OPCODE_POWER2 (04)
  52. /* Opcode is only defined on 32 bit architectures.  */
  53. #define PPC_OPCODE_32 (010)
  54. /* Opcode is only defined on 64 bit architectures.  */
  55. #define PPC_OPCODE_64 (020)
  56. /* Opcode is supported by the Motorola PowerPC 601 processor.  The 601
  57.    is assumed to support all PowerPC (PPC_OPCODE_PPC) instructions,
  58.    but it also supports many additional POWER instructions.  */
  59. #define PPC_OPCODE_601 (040)
  60. /* A macro to extract the major opcode from an instruction.  */
  61. #define PPC_OP(i) (((i) >> 26) & 0x3f)
  62. /* The operands table is an array of struct powerpc_operand.  */
  63. struct powerpc_operand
  64. {
  65.   /* The number of bits in the operand.  */
  66.   int bits;
  67.   /* How far the operand is left shifted in the instruction.  */
  68.   int shift;
  69.   /* Insertion function.  This is used by the assembler.  To insert an
  70.      operand value into an instruction, check this field.
  71.      If it is NULL, execute
  72.          i |= (op & ((1 << o->bits) - 1)) << o->shift;
  73.      (i is the instruction which we are filling in, o is a pointer to
  74.      this structure, and op is the opcode value; this assumes twos
  75.      complement arithmetic).
  76.      If this field is not NULL, then simply call it with the
  77.      instruction and the operand value.  It will return the new value
  78.      of the instruction.  If the ERRMSG argument is not NULL, then if
  79.      the operand value is illegal, *ERRMSG will be set to a warning
  80.      string (the operand will be inserted in any case).  If the
  81.      operand value is legal, *ERRMSG will be unchanged (most operands
  82.      can accept any value).  */
  83.   unsigned long (*insert) PARAMS ((unsigned long instruction, long op,
  84.    const char **errmsg));
  85.   /* Extraction function.  This is used by the disassembler.  To
  86.      extract this operand type from an instruction, check this field.
  87.      If it is NULL, compute
  88.          op = ((i) >> o->shift) & ((1 << o->bits) - 1);
  89.  if ((o->flags & PPC_OPERAND_SIGNED) != 0
  90.      && (op & (1 << (o->bits - 1))) != 0)
  91.    op -= 1 << o->bits;
  92.      (i is the instruction, o is a pointer to this structure, and op
  93.      is the result; this assumes twos complement arithmetic).
  94.      If this field is not NULL, then simply call it with the
  95.      instruction value.  It will return the value of the operand.  If
  96.      the INVALID argument is not NULL, *INVALID will be set to
  97.      non-zero if this operand type can not actually be extracted from
  98.      this operand (i.e., the instruction does not match).  If the
  99.      operand is valid, *INVALID will not be changed.  */
  100.   long (*extract) PARAMS ((unsigned long instruction, int *invalid));
  101.   /* One bit syntax flags.  */
  102.   unsigned long flags;
  103. };
  104. /* Elements in the table are retrieved by indexing with values from
  105.    the operands field of the powerpc_opcodes table.  */
  106. extern const struct powerpc_operand powerpc_operands[];
  107. /* Values defined for the flags field of a struct powerpc_operand.  */
  108. /* This operand takes signed values.  */
  109. #define PPC_OPERAND_SIGNED (01)
  110. /* This operand takes signed values, but also accepts a full positive
  111.    range of values when running in 32 bit mode.  That is, if bits is
  112.    16, it takes any value from -0x8000 to 0xffff.  In 64 bit mode,
  113.    this flag is ignored.  */
  114. #define PPC_OPERAND_SIGNOPT (02)
  115. /* This operand does not actually exist in the assembler input.  This
  116.    is used to support extended mnemonics such as mr, for which two
  117.    operands fields are identical.  The assembler should call the
  118.    insert function with any op value.  The disassembler should call
  119.    the extract function, ignore the return value, and check the value
  120.    placed in the valid argument.  */
  121. #define PPC_OPERAND_FAKE (04)
  122. /* The next operand should be wrapped in parentheses rather than
  123.    separated from this one by a comma.  This is used for the load and
  124.    store instructions which want their operands to look like
  125.        reg,displacement(reg)
  126.    */
  127. #define PPC_OPERAND_PARENS (010)
  128. /* This operand may use the symbolic names for the CR fields, which
  129.    are
  130.        lt  0 gt  1 eq  2 so  3 un  3
  131.        cr0 0 cr1 1 cr2 2 cr3 3
  132.        cr4 4 cr5 5 cr6 6 cr7 7
  133.    These may be combined arithmetically, as in cr2*4+gt.  These are
  134.    only supported on the PowerPC, not the POWER.  */
  135. #define PPC_OPERAND_CR (020)
  136. /* This operand names a register.  The disassembler uses this to print
  137.    register names with a leading 'r'.  */
  138. #define PPC_OPERAND_GPR (040)
  139. /* This operand names a floating point register.  The disassembler
  140.    prints these with a leading 'f'.  */
  141. #define PPC_OPERAND_FPR (0100)
  142. /* This operand is a relative branch displacement.  The disassembler
  143.    prints these symbolically if possible.  */
  144. #define PPC_OPERAND_RELATIVE (0200)
  145. /* This operand is an absolute branch address.  The disassembler
  146.    prints these symbolically if possible.  */
  147. #define PPC_OPERAND_ABSOLUTE (0400)
  148. /* This operand is optional, and is zero if omitted.  This is used for
  149.    the optional BF and L fields in the comparison instructions.  The
  150.    assembler must count the number of operands remaining on the line,
  151.    and the number of operands remaining for the opcode, and decide
  152.    whether this operand is present or not.  The disassembler should
  153.    print this operand out only if it is not zero.  */
  154. #define PPC_OPERAND_OPTIONAL (01000)
  155. /* This flag is only used with PPC_OPERAND_OPTIONAL.  If this operand
  156.    is omitted, then for the next operand use this operand value plus
  157.    1, ignoring the next operand field for the opcode.  This wretched
  158.    hack is needed because the Power rotate instructions can take
  159.    either 4 or 5 operands.  The disassembler should print this operand
  160.    out regardless of the PPC_OPERAND_OPTIONAL field.  */
  161. #define PPC_OPERAND_NEXT (02000)
  162. /* This operand should be regarded as a negative number for the
  163.    purposes of overflow checking (i.e., the normal most negative
  164.    number is disallowed and one more than the normal most positive
  165.    number is allowed).  This flag will only be set for a signed
  166.    operand.  */
  167. #define PPC_OPERAND_NEGATIVE (04000)
  168. /* The POWER and PowerPC assemblers use a few macros.  We keep them
  169.    with the operands table for simplicity.  The macro table is an
  170.    array of struct powerpc_macro.  */
  171. struct powerpc_macro
  172. {
  173.   /* The macro name.  */
  174.   const char *name;
  175.   /* The number of operands the macro takes.  */
  176.   unsigned int operands;
  177.   /* One bit flags for the opcode.  These are used to indicate which
  178.      specific processors support the instructions.  The values are the
  179.      same as those for the struct powerpc_opcode flags field.  */
  180.   unsigned long flags;
  181.   /* A format string to turn the macro into a normal instruction.
  182.      Each %N in the string is replaced with operand number N (zero
  183.      based).  */
  184.   const char *format;
  185. };
  186. extern const struct powerpc_macro powerpc_macros[];
  187. extern const int powerpc_num_macros;
  188. #endif /* PPC_H */