1 |
38 |
julius |
/* Prototypes for exported functions defined in crx.c
|
2 |
|
|
Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
|
3 |
|
|
2002, 2003, 2004, 2007 Free Software Foundation, Inc.
|
4 |
|
|
|
5 |
|
|
This file is part of GCC.
|
6 |
|
|
|
7 |
|
|
GCC is free software; you can redistribute it and/or modify it
|
8 |
|
|
under the terms of the GNU General Public License as published
|
9 |
|
|
by the Free Software Foundation; either version 3, or (at your
|
10 |
|
|
option) any later version.
|
11 |
|
|
|
12 |
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT
|
13 |
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
14 |
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
15 |
|
|
License for more details.
|
16 |
|
|
|
17 |
|
|
You should have received a copy of the GNU General Public License
|
18 |
|
|
along with GCC; see the file COPYING3. If not see
|
19 |
|
|
<http://www.gnu.org/licenses/>. */
|
20 |
|
|
|
21 |
|
|
#ifndef GCC_CRX_PROTOS_H
|
22 |
|
|
#define GCC_CRX_PROTOS_H
|
23 |
|
|
|
24 |
|
|
|
25 |
|
|
/* Register usage. */
|
26 |
|
|
extern enum reg_class crx_regno_reg_class (int);
|
27 |
|
|
extern int crx_hard_regno_mode_ok (int regno, enum machine_mode);
|
28 |
|
|
#ifdef RTX_CODE
|
29 |
|
|
extern enum reg_class crx_secondary_reload_class (enum reg_class, enum machine_mode, rtx);
|
30 |
|
|
#endif /* RTX_CODE */
|
31 |
|
|
|
32 |
|
|
/* Passing function arguments. */
|
33 |
|
|
extern int crx_function_arg_regno_p (int);
|
34 |
|
|
#ifdef TREE_CODE
|
35 |
|
|
extern void crx_function_arg_advance (CUMULATIVE_ARGS *, enum machine_mode, tree, int);
|
36 |
|
|
#ifdef RTX_CODE
|
37 |
|
|
extern void crx_init_cumulative_args (CUMULATIVE_ARGS *, tree, rtx);
|
38 |
|
|
extern rtx crx_function_arg (struct cumulative_args *, enum machine_mode, tree, int);
|
39 |
|
|
#endif /* RTX_CODE */
|
40 |
|
|
#endif /* TREE_CODE */
|
41 |
|
|
|
42 |
|
|
#ifdef RTX_CODE
|
43 |
|
|
/* Addressing Modes. */
|
44 |
|
|
struct crx_address
|
45 |
|
|
{
|
46 |
|
|
rtx base, index, disp, side_effect;
|
47 |
|
|
int scale;
|
48 |
|
|
};
|
49 |
|
|
|
50 |
|
|
enum crx_addrtype
|
51 |
|
|
{
|
52 |
|
|
CRX_INVALID, CRX_REG_REL, CRX_POST_INC, CRX_SCALED_INDX, CRX_ABSOLUTE
|
53 |
|
|
};
|
54 |
|
|
|
55 |
|
|
extern enum crx_addrtype crx_decompose_address (rtx addr, struct crx_address *out);
|
56 |
|
|
extern int crx_legitimate_address_p (enum machine_mode, rtx, int);
|
57 |
|
|
|
58 |
|
|
extern int crx_const_double_ok (rtx op);
|
59 |
|
|
|
60 |
|
|
/* Instruction output. */
|
61 |
|
|
extern void crx_print_operand (FILE *, rtx, int);
|
62 |
|
|
extern void crx_print_operand_address (FILE *, rtx);
|
63 |
|
|
|
64 |
|
|
/* Misc functions called from crx.md. */
|
65 |
|
|
extern rtx crx_expand_compare (enum rtx_code, enum machine_mode);
|
66 |
|
|
extern void crx_expand_branch (enum rtx_code, rtx);
|
67 |
|
|
extern void crx_expand_scond (enum rtx_code, rtx);
|
68 |
|
|
|
69 |
|
|
extern void crx_expand_movmem_single (rtx, rtx, rtx, rtx, rtx, unsigned HOST_WIDE_INT *);
|
70 |
|
|
extern int crx_expand_movmem (rtx, rtx, rtx, rtx);
|
71 |
|
|
#endif /* RTX_CODE */
|
72 |
|
|
|
73 |
|
|
/* Routines to compute costs. */
|
74 |
|
|
extern int crx_memory_move_cost (enum machine_mode, enum reg_class, int);
|
75 |
|
|
|
76 |
|
|
/* Prologue/Epilogue functions. */
|
77 |
|
|
extern int crx_initial_elimination_offset (int, int);
|
78 |
|
|
extern char *crx_prepare_push_pop_string (int);
|
79 |
|
|
extern void crx_expand_prologue (void);
|
80 |
|
|
extern void crx_expand_epilogue (void);
|
81 |
|
|
|
82 |
|
|
|
83 |
|
|
/* Handling the "interrupt" attribute */
|
84 |
|
|
extern int crx_interrupt_function_p (void);
|
85 |
|
|
|
86 |
|
|
#endif /* GCC_CRX_PROTOS_H */
|