OSDN Git Service

2009-05-04 Paolo Bonzini <bonzini@gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / config / bfin / bfin-protos.h
1 /* Prototypes for Blackfin functions used in the md file & elsewhere.
2    Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc.
3
4    This file is part of GNU CC.
5
6    GNU CC is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3, or (at your option)
9    any later version.
10
11    GNU CC is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with GCC; see the file COPYING3.  If not see
18    <http://www.gnu.org/licenses/>.  */
19
20 /* Function prototypes that cannot exist in bfin.h due to dependency
21    complications.  */
22 #ifndef GCC_BFIN_PROTOS_H
23 #define GCC_BFIN_PROTOS_H
24
25 /* CPU type.  */
26 typedef enum bfin_cpu_type
27 {
28   BFIN_CPU_UNKNOWN,
29   BFIN_CPU_BF512,
30   BFIN_CPU_BF514,
31   BFIN_CPU_BF516,
32   BFIN_CPU_BF518,
33   BFIN_CPU_BF522,
34   BFIN_CPU_BF523,
35   BFIN_CPU_BF524,
36   BFIN_CPU_BF525,
37   BFIN_CPU_BF526,
38   BFIN_CPU_BF527,
39   BFIN_CPU_BF531,
40   BFIN_CPU_BF532,
41   BFIN_CPU_BF533,
42   BFIN_CPU_BF534,
43   BFIN_CPU_BF536,
44   BFIN_CPU_BF537,
45   BFIN_CPU_BF538,
46   BFIN_CPU_BF539,
47   BFIN_CPU_BF542,
48   BFIN_CPU_BF544,
49   BFIN_CPU_BF547,
50   BFIN_CPU_BF548,
51   BFIN_CPU_BF549,
52   BFIN_CPU_BF561
53 } bfin_cpu_t;
54
55 /* Value of -mcpu= */
56 extern bfin_cpu_t bfin_cpu_type;
57
58 /* Value of -msi-revision= */
59 extern int bfin_si_revision;
60
61 extern unsigned int bfin_workarounds;
62
63 /* For the anomaly 05-00-0245 */
64 #define WA_SPECULATIVE_LOADS 0x00000001
65 #define ENABLE_WA_SPECULATIVE_LOADS \
66   (bfin_workarounds & WA_SPECULATIVE_LOADS)
67
68 /* For the anomaly 05-00-0244 */
69 #define WA_SPECULATIVE_SYNCS 0x00000002
70 #define ENABLE_WA_SPECULATIVE_SYNCS \
71   (bfin_workarounds & WA_SPECULATIVE_SYNCS)
72
73 /* For the anomaly 05-00-0371 */
74 #define WA_RETS 0x00000004
75 #define ENABLE_WA_RETS \
76   (bfin_workarounds & WA_RETS)
77
78 /* For the anomaly 05-00-0426 */
79 #define WA_INDIRECT_CALLS 0x00000008
80 #define ENABLE_WA_INDIRECT_CALLS \
81   ((bfin_workarounds & WA_INDIRECT_CALLS) && !TARGET_ICPLB)
82
83 #define WA_05000257 0x00000010
84 #define ENABLE_WA_05000257 \
85   (bfin_workarounds & WA_05000257)
86
87 #define WA_05000283 0x00000020
88 #define ENABLE_WA_05000283 \
89   (bfin_workarounds & WA_05000283)
90
91 #define WA_05000315 0x00000040
92 #define ENABLE_WA_05000315 \
93   (bfin_workarounds & WA_05000315)
94
95 /* For the anomaly 05-00-0312 */
96 #define WA_LOAD_LCREGS 0x00000080
97 #define ENABLE_WA_LOAD_LCREGS \
98   (bfin_workarounds & WA_LOAD_LCREGS)
99
100 #define Mmode enum machine_mode
101
102 extern rtx function_arg (CUMULATIVE_ARGS *, Mmode, tree, int);
103 extern void function_arg_advance (CUMULATIVE_ARGS *, Mmode, tree, int);
104 extern bool function_arg_regno_p (int);
105
106 extern const char *output_load_immediate (rtx *);
107 extern const char *output_casesi_internal (rtx *);
108 extern char *bfin_asm_long (void);
109 extern char *bfin_asm_short (void);
110 extern int log2constp (unsigned HOST_WIDE_INT);
111
112 extern bool bfin_legitimate_constant_p (rtx);
113 extern int hard_regno_mode_ok (int, Mmode);
114 extern void init_cumulative_args (CUMULATIVE_ARGS *, tree, rtx);          
115 extern int bfin_frame_pointer_required (void);
116 extern HOST_WIDE_INT bfin_initial_elimination_offset (int, int);
117
118 extern int effective_address_32bit_p (rtx, Mmode);
119 extern int symbolic_reference_mentioned_p (rtx);
120 extern rtx bfin_gen_compare (rtx, Mmode);
121 extern bool expand_move (rtx *, Mmode);
122 extern void bfin_expand_call (rtx, rtx, rtx, rtx, int);
123 extern bool bfin_longcall_p (rtx, int);
124 extern bool bfin_dsp_memref_p (rtx);
125 extern bool bfin_expand_movmem (rtx, rtx, rtx, rtx);
126
127 extern void conditional_register_usage (void);
128 extern int bfin_register_move_cost (enum machine_mode, enum reg_class,
129                                     enum reg_class);
130 extern int bfin_memory_move_cost (enum machine_mode, enum reg_class, int in);
131 extern enum reg_class secondary_input_reload_class (enum reg_class, Mmode,
132                                                     rtx);
133 extern enum reg_class secondary_output_reload_class (enum reg_class, Mmode,
134                                                      rtx);
135 extern char *section_asm_op_1 (SECT_ENUM_T);
136 extern char *section_asm_op (SECT_ENUM_T);
137 extern void override_options (void);
138 extern void print_operand (FILE *,  rtx, char);
139 extern void print_address_operand (FILE *, rtx);
140 extern void split_di (rtx [], int, rtx [], rtx []);
141 extern int split_load_immediate (rtx []);
142 extern void emit_pic_move (rtx *, Mmode);
143 extern void override_options (void);
144 extern void asm_conditional_branch (rtx, rtx *, int, int);
145 extern rtx bfin_gen_compare (rtx, Mmode);
146
147 extern int bfin_local_alignment (tree, int);
148 extern void initialize_trampoline (rtx, rtx, rtx);
149 extern bool bfin_legitimate_address_p (Mmode, rtx, int);
150 extern rtx bfin_va_arg (tree, tree);
151
152 extern void bfin_expand_prologue (void);
153 extern void bfin_expand_epilogue (int, int, bool);
154 extern int push_multiple_operation (rtx, Mmode);
155 extern int pop_multiple_operation (rtx, Mmode);
156 extern void output_push_multiple (rtx, rtx *);
157 extern void output_pop_multiple (rtx, rtx *);
158 extern int bfin_hard_regno_rename_ok (unsigned int, unsigned int);
159 extern rtx bfin_return_addr_rtx (int);
160 extern void bfin_hardware_loop (void);
161 #undef  Mmode 
162
163 #endif
164