c6x-protos.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* Prototypes for exported functions defined in c6x.c.
  2. Copyright (C) 2010-2015 Free Software Foundation, Inc.
  3. Contributed by CodeSourcery.
  4. This file is part of GCC.
  5. GCC is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU General Public License as published
  7. by the Free Software Foundation; either version 3, or (at your
  8. option) any later version.
  9. GCC is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  12. License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GCC; see the file COPYING3. If not see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef GCC_C6X_PROTOS_H
  17. #define GCC_C6X_PROTOS_H
  18. /* Functions defined in c6x.c. */
  19. #ifdef RTX_CODE
  20. extern void c6x_init_cumulative_args (CUMULATIVE_ARGS *, const_tree, rtx, int);
  21. extern bool c6x_block_reg_pad_upward (machine_mode, const_tree, bool);
  22. extern bool c6x_legitimate_address_p_1 (machine_mode, rtx, bool, bool);
  23. extern bool c6x_mem_operand (rtx, enum reg_class, bool);
  24. extern bool expand_move (rtx *, machine_mode);
  25. extern bool c6x_long_call_p (rtx);
  26. extern void c6x_expand_call (rtx, rtx, bool);
  27. extern rtx c6x_expand_compare (rtx, machine_mode);
  28. extern bool c6x_force_op_for_comparison_p (enum rtx_code, rtx);
  29. extern bool c6x_expand_movmem (rtx, rtx, rtx, rtx, rtx, rtx);
  30. extern rtx c6x_subword (rtx, bool);
  31. extern void split_di (rtx *, int, rtx *, rtx *);
  32. extern bool c6x_valid_mask_p (HOST_WIDE_INT);
  33. extern char c6x_get_unit_specifier (rtx_insn *);
  34. extern void c6x_final_prescan_insn(rtx_insn *insn, rtx *opvec, int noperands);
  35. extern int c6x_nsaved_regs (void);
  36. extern HOST_WIDE_INT c6x_initial_elimination_offset (int, int);
  37. extern void c6x_expand_prologue (void);
  38. extern void c6x_expand_epilogue (bool);
  39. extern rtx c6x_return_addr_rtx (int);
  40. extern void c6x_set_return_address (rtx, rtx);
  41. #endif
  42. extern void c6x_override_options (void);
  43. extern void c6x_optimization_options (int, int);
  44. extern void c6x_output_file_unwind (FILE *);
  45. extern void c6x_function_end (FILE *, const char *);
  46. #endif /* GCC_C6X_PROTOS_H */