recog.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* Declarations for interface to insn recognizer and insn-output.c.
  2. Copyright (C) 1987 Free Software Foundation, Inc.
  3. This file is part of GNU CC.
  4. GNU CC is distributed in the hope that it will be useful,
  5. but WITHOUT ANY WARRANTY. No author or distributor
  6. accepts responsibility to anyone for the consequences of using it
  7. or for whether it serves any particular purpose or works at all,
  8. unless he says so in writing. Refer to the GNU CC General Public
  9. License for full details.
  10. Everyone is granted permission to copy, modify and redistribute
  11. GNU CC, but only under the conditions described in the
  12. GNU CC General Public License. A copy of this license is
  13. supposed to have been given to you along with GNU CC so you
  14. can know your rights and responsibilities. It should be in a
  15. file named COPYING. Among other things, the copyright notice
  16. and this notice must be preserved on all copies. */
  17. extern rtx recog_operand[];
  18. extern rtx *recog_operand_loc[];
  19. extern rtx *recog_dup_loc[];
  20. extern char recog_dup_num[];
  21. extern rtx recog_addr_dummy;
  22. extern int recog ();
  23. extern char *insn_template[];
  24. extern int insn_n_operands[];
  25. extern int insn_n_dups[];
  26. extern char *insn_operand_constraint[][MAX_RECOG_OPERANDS];
  27. extern char insn_operand_address_p[][MAX_RECOG_OPERANDS];
  28. extern enum machine_mode insn_operand_mode[][MAX_RECOG_OPERANDS];
  29. extern char *output_insn_hairy ();