]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/nvptx/nvptx-protos.h
Update copyright years.
[thirdparty/gcc.git] / gcc / config / nvptx / nvptx-protos.h
CommitLineData
738f2522 1/* Prototypes for exported functions defined in nvptx.c.
a5544970 2 Copyright (C) 2014-2019 Free Software Foundation, Inc.
738f2522
BS
3 Contributed by Bernd Schmidt <bernds@codesourcery.com>
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_NVPTX_PROTOS_H
22#define GCC_NVPTX_PROTOS_H
23
5012919d
AM
24/* The kind of shuffe instruction. */
25enum nvptx_shuffle_kind
26{
27 SHUFFLE_UP,
28 SHUFFLE_DOWN,
29 SHUFFLE_BFLY,
30 SHUFFLE_IDX,
31 SHUFFLE_MAX
32};
33
738f2522
BS
34extern void nvptx_declare_function_name (FILE *, const char *, const_tree decl);
35extern void nvptx_declare_object_name (FILE *file, const char *name,
36 const_tree decl);
69823d76
NS
37extern void nvptx_output_aligned_decl (FILE *file, const char *name,
38 const_tree decl,
39 HOST_WIDE_INT size, unsigned align);
738f2522
BS
40extern void nvptx_function_end (FILE *);
41extern void nvptx_output_skip (FILE *, unsigned HOST_WIDE_INT);
42extern void nvptx_output_ascii (FILE *, const char *, unsigned HOST_WIDE_INT);
43extern void nvptx_register_pragmas (void);
3717fbe3 44extern unsigned int nvptx_data_alignment (const_tree, unsigned int);
738f2522
BS
45
46#ifdef RTX_CODE
d88cd9c4
NS
47extern void nvptx_expand_oacc_fork (unsigned);
48extern void nvptx_expand_oacc_join (unsigned);
738f2522 49extern void nvptx_expand_call (rtx, rtx);
5012919d 50extern rtx nvptx_gen_shuffle (rtx, rtx, rtx, nvptx_shuffle_kind);
738f2522
BS
51extern rtx nvptx_expand_compare (rtx);
52extern const char *nvptx_ptx_type_from_mode (machine_mode, bool);
f313d112 53extern const char *nvptx_output_mov_insn (rtx, rtx);
738f2522
BS
54extern const char *nvptx_output_call_insn (rtx_insn *, rtx, rtx);
55extern const char *nvptx_output_return (void);
5012919d 56extern const char *nvptx_output_set_softstack (unsigned);
0c6b03b5
AM
57extern const char *nvptx_output_simt_enter (rtx, rtx, rtx);
58extern const char *nvptx_output_simt_exit (rtx);
738f2522
BS
59#endif
60#endif