gcc/
[official-gcc.git] / gcc / config / nvptx / nvptx-protos.h
blob2ade94693fded99b623da370a1f019f5c88101a9
1 /* Prototypes for exported functions defined in nvptx.c.
2 Copyright (C) 2014-2015 Free Software Foundation, Inc.
3 Contributed by Bernd Schmidt <bernds@codesourcery.com>
5 This file is part of GCC.
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.
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.
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/>. */
21 #ifndef GCC_NVPTX_PROTOS_H
22 #define GCC_NVPTX_PROTOS_H
24 extern void nvptx_declare_function_name (FILE *, const char *, const_tree decl);
25 extern void nvptx_declare_object_name (FILE *file, const char *name,
26 const_tree decl);
27 extern void nvptx_record_needed_fndecl (tree decl);
28 extern void nvptx_function_end (FILE *);
29 extern void nvptx_output_skip (FILE *, unsigned HOST_WIDE_INT);
30 extern void nvptx_output_ascii (FILE *, const char *, unsigned HOST_WIDE_INT);
31 extern void nvptx_register_pragmas (void);
32 extern const char *nvptx_section_for_decl (const_tree);
34 #ifdef RTX_CODE
35 extern void nvptx_expand_call (rtx, rtx);
36 extern rtx nvptx_expand_compare (rtx);
37 extern const char *nvptx_ptx_type_from_mode (machine_mode, bool);
38 extern const char *nvptx_output_call_insn (rtx_insn *, rtx, rtx);
39 extern const char *nvptx_output_return (void);
40 extern machine_mode nvptx_underlying_object_mode (rtx);
41 extern const char *nvptx_section_from_addr_space (addr_space_t);
42 extern bool nvptx_hard_regno_mode_ok (int, machine_mode);
43 extern addr_space_t nvptx_addr_space_from_address (rtx);
44 extern rtx nvptx_maybe_convert_symbolic_operand (rtx);
45 #endif
46 #endif