--- /dev/null
+/* Subroutines for the C front end on the NVPTX architecture.
+ * Copyright (C) 2021 Free Software Foundation, Inc.
+ *
+ * This file is part of GCC.
+ *
+ * GCC is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published
+ * by the Free Software Foundation; either version 3, or (at your
+ * option) any later version.
+ *
+ * GCC is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with GCC; see the file COPYING3. If not see
+ * <http://www.gnu.org/licenses/>. */
+
+#define IN_TARGET_CODE 1
+
+#include "config.h"
+#include "system.h"
+#include "coretypes.h"
+#include "target.h"
+#include "c-family/c-common.h"
+#include "memmodel.h"
+#include "tm_p.h"
+#include "c-family/c-pragma.h"
+
+/* Function to tell the preprocessor about the defines for the target. */
+void
+nvptx_cpu_cpp_builtins (void)
+{
+ cpp_assert (parse_in, "machine=nvptx");
+ cpp_assert (parse_in, "cpu=nvptx");
+ cpp_define (parse_in, "__nvptx__");
+ if (TARGET_SOFT_STACK)
+ cpp_define (parse_in, "__nvptx_softstack__");
+ if (TARGET_UNIFORM_SIMT)
+ cpp_define (parse_in,"__nvptx_unisimt__");
+ if (TARGET_SM35)
+ cpp_define (parse_in, "__PTX_SM__=350");
+ else
+ cpp_define (parse_in,"__PTX_SM__=300");
+}
+
extern void nvptx_function_end (FILE *);
extern void nvptx_output_skip (FILE *, unsigned HOST_WIDE_INT);
extern void nvptx_output_ascii (FILE *, const char *, unsigned HOST_WIDE_INT);
+extern void nvptx_cpu_cpp_builtins (void);
extern void nvptx_register_pragmas (void);
extern unsigned int nvptx_data_alignment (const_tree, unsigned int);
nvptx-as. */
#define ASM_SPEC "%{misa=*:-m %*; :-m sm_35}"
-#define TARGET_CPU_CPP_BUILTINS() \
- do \
- { \
- builtin_assert ("machine=nvptx"); \
- builtin_assert ("cpu=nvptx"); \
- builtin_define ("__nvptx__"); \
- if (TARGET_SOFT_STACK) \
- builtin_define ("__nvptx_softstack__"); \
- if (TARGET_UNIFORM_SIMT) \
- builtin_define ("__nvptx_unisimt__"); \
- } while (0)
+#define TARGET_CPU_CPP_BUILTINS() nvptx_cpu_cpp_builtins ()
/* Avoid the default in ../../gcc.c, which adds "-pthread", which is not
supported for nvptx. */