annotate gcc/config/visium/visium-protos.h @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Prototypes of target machine for Visium.
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
2 Copyright (C) 2002-2018 Free Software Foundation, Inc.
111
kono
parents:
diff changeset
3 Contributed by C.Nettleton,J.P.Parkes and P.Garbett.
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 This file is part of GCC.
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 GCC is free software; you can redistribute it and/or modify it
kono
parents:
diff changeset
8 under the terms of the GNU General Public License as published
kono
parents:
diff changeset
9 by the Free Software Foundation; either version 3, or (at your
kono
parents:
diff changeset
10 option) any later version.
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 GCC is distributed in the hope that it will be useful, but WITHOUT
kono
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
kono
parents:
diff changeset
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
kono
parents:
diff changeset
15 License for more details.
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
18 along with GCC; see the file COPYING3. If not see
kono
parents:
diff changeset
19 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21 #ifndef GCC_VISIUM_PROTOS_H
kono
parents:
diff changeset
22 #define GCC_VISIUM_PROTOS_H
kono
parents:
diff changeset
23
kono
parents:
diff changeset
24 extern unsigned int visium_data_alignment (tree, unsigned int);
kono
parents:
diff changeset
25 extern void visium_init_expanders (void);
kono
parents:
diff changeset
26 extern int visium_interrupt_function_p (void);
kono
parents:
diff changeset
27 extern bool visium_can_use_return_insn_p (void);
kono
parents:
diff changeset
28 extern void visium_expand_prologue (void);
kono
parents:
diff changeset
29 extern void visium_expand_epilogue (void);
kono
parents:
diff changeset
30 extern int visium_epilogue_uses (int);
kono
parents:
diff changeset
31 extern void visium_profile_hook (void);
kono
parents:
diff changeset
32 extern int visium_hard_regno_rename_ok (unsigned int, unsigned int);
kono
parents:
diff changeset
33 extern int visium_initial_elimination_offset (int from, int to);
kono
parents:
diff changeset
34 #ifdef RTX_CODE
kono
parents:
diff changeset
35 extern void prepare_move_operands (rtx *, machine_mode);
kono
parents:
diff changeset
36 extern bool ok_for_simple_move_operands (rtx *, machine_mode);
kono
parents:
diff changeset
37 extern bool ok_for_simple_move_strict_operands (rtx *, machine_mode);
kono
parents:
diff changeset
38 extern bool ok_for_simple_arith_logic_operands (rtx *, machine_mode);
kono
parents:
diff changeset
39 extern void visium_initialize_trampoline (rtx, rtx, rtx);
kono
parents:
diff changeset
40 extern int empty_delay_slot (rtx_insn *);
kono
parents:
diff changeset
41 extern int gr5_hazard_bypass_p (rtx_insn *, rtx_insn *);
kono
parents:
diff changeset
42 extern rtx visium_return_addr_rtx (int, rtx);
kono
parents:
diff changeset
43 extern rtx visium_eh_return_handler_rtx (void);
kono
parents:
diff changeset
44 extern rtx visium_dynamic_chain_address (rtx);
kono
parents:
diff changeset
45 extern rtx visium_legitimize_reload_address (rtx, machine_mode, int, int,
kono
parents:
diff changeset
46 int);
kono
parents:
diff changeset
47 extern machine_mode visium_select_cc_mode (enum rtx_code, rtx, rtx);
kono
parents:
diff changeset
48 extern void visium_split_cbranch (enum rtx_code, rtx, rtx, rtx);
kono
parents:
diff changeset
49 extern const char *output_ubranch (rtx, rtx_insn *);
kono
parents:
diff changeset
50 extern const char *output_cbranch (rtx, enum rtx_code, machine_mode, int,
kono
parents:
diff changeset
51 rtx_insn *);
kono
parents:
diff changeset
52 extern void visium_split_double_move (rtx *, machine_mode);
kono
parents:
diff changeset
53 extern void visium_split_double_add (enum rtx_code, rtx, rtx, rtx);
kono
parents:
diff changeset
54 extern void visium_expand_copysign (rtx *, machine_mode);
kono
parents:
diff changeset
55 extern void visium_expand_int_cstore (rtx *, machine_mode);
kono
parents:
diff changeset
56 extern void visium_expand_fp_cstore (rtx *, machine_mode);
kono
parents:
diff changeset
57 extern void visium_split_cstore (enum rtx_code, rtx, rtx,
kono
parents:
diff changeset
58 enum rtx_code, rtx, rtx);
kono
parents:
diff changeset
59 extern int visium_expand_block_move (rtx *);
kono
parents:
diff changeset
60 extern int visium_expand_block_set (rtx *);
kono
parents:
diff changeset
61 extern unsigned int reg_or_subreg_regno (rtx);
kono
parents:
diff changeset
62 #endif /* RTX_CODE */
kono
parents:
diff changeset
63
kono
parents:
diff changeset
64 #endif