ppc.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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