* config/nvptx/nvptx-protos.h
[official-gcc.git] / gcc / config / nvptx / nvptx-protos.h
blobd39987778e5a8d591bd99b279a7e139b8be36313
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_output_aligned_decl (FILE *file, const char *name,
28 const_tree decl,
29 HOST_WIDE_INT size, unsigned align);
30 extern void nvptx_function_end (FILE *);
31 extern void nvptx_output_skip (FILE *, unsigned HOST_WIDE_INT);
32 extern void nvptx_output_ascii (FILE *, const char *, unsigned HOST_WIDE_INT);
33 extern void nvptx_register_pragmas (void);
35 #ifdef RTX_CODE
36 extern void nvptx_expand_oacc_fork (unsigned);
37 extern void nvptx_expand_oacc_join (unsigned);
38 extern void nvptx_expand_call (rtx, rtx);
39 extern rtx nvptx_expand_compare (rtx);
40 extern const char *nvptx_ptx_type_from_mode (machine_mode, bool);
41 extern const char *nvptx_output_mov_insn (rtx, rtx);
42 extern const char *nvptx_output_call_insn (rtx_insn *, rtx, rtx);
43 extern const char *nvptx_output_return (void);
44 #endif
45 #endif