aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2015-09-23 16:52:50 +0200
committerThomas Schwinge <tschwinge@gcc.gnu.org>2015-09-23 16:52:50 +0200
commit64186aad5abe1c3e1468f172589b55a6449d6fc2 (patch)
treee56994358815ca037270fe39c1df903fc8423e3f /gcc
parentf2c9f71da9fd748bb452e69e7825e5f28e7c741d (diff)
downloadgcc-64186aad5abe1c3e1468f172589b55a6449d6fc2.zip
gcc-64186aad5abe1c3e1468f172589b55a6449d6fc2.tar.gz
gcc-64186aad5abe1c3e1468f172589b55a6449d6fc2.tar.bz2
Fix --enable-offload-targets/-foffload handling, pt. 1
gcc/ * configure.ac (offload_targets, OFFLOAD_TARGETS): Separate offload targets by commas, not colons. * config.in: Regenerate. * configure: Likewise. * gcc.c (driver::maybe_putenv_COLLECT_LTO_WRAPPER): Due to that, instead of setting up the default offload targets here... (process_command): ..., do it here. libgomp/ * plugin/configfrag.ac (OFFLOAD_TARGETS): Clarify that offload targets are separated by commas. * config.h.in: Regenerate. From-SVN: r228053
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog14
-rw-r--r--gcc/config.in2
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.ac4
-rw-r--r--gcc/gcc.c23
-rw-r--r--gcc/lto-wrapper.c4
6 files changed, 35 insertions, 14 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0e9b728..df71558 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,4 +1,18 @@
2015-09-23 Thomas Schwinge <thomas@codesourcery.com>
+
+ * configure.ac (offload_targets, OFFLOAD_TARGETS): Separate
+ offload targets by commas, not colons.
+ * config.in: Regenerate.
+ * configure: Likewise.
+ * gcc.c (driver::maybe_putenv_COLLECT_LTO_WRAPPER): Due to that,
+ instead of setting up the default offload targets here...
+ (process_command): ..., do it here.
+ libgomp/
+ * plugin/configfrag.ac (OFFLOAD_TARGETS): Clarify that offload
+ targets are separated by commas.
+ * config.h.in: Regenerate.
+
+2015-09-23 Thomas Schwinge <thomas@codesourcery.com>
Nathan Sidwell <nathan@codesourcery.com>
* omp-low.h (omp_reduction_init_op): Declare.
diff --git a/gcc/config.in b/gcc/config.in
index 431d262..c5c1be4 100644
--- a/gcc/config.in
+++ b/gcc/config.in
@@ -1913,7 +1913,7 @@
#endif
-/* Define to hold the list of target names suitable for offloading. */
+/* Define to offload targets, separated by commas. */
#ifndef USED_FOR_TARGET
#undef OFFLOAD_TARGETS
#endif
diff --git a/gcc/configure b/gcc/configure
index 6fb11a7..7493c80 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -7696,7 +7696,7 @@ for tgt in `echo $enable_offload_targets | sed 's/,/ /g'`; do
if test x"$offload_targets" = x; then
offload_targets=$tgt
else
- offload_targets="$offload_targets:$tgt"
+ offload_targets="$offload_targets,$tgt"
fi
done
diff --git a/gcc/configure.ac b/gcc/configure.ac
index a6e078a..9d1f6f1 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -941,11 +941,11 @@ for tgt in `echo $enable_offload_targets | sed 's/,/ /g'`; do
if test x"$offload_targets" = x; then
offload_targets=$tgt
else
- offload_targets="$offload_targets:$tgt"
+ offload_targets="$offload_targets,$tgt"
fi
done
AC_DEFINE_UNQUOTED(OFFLOAD_TARGETS, "$offload_targets",
- [Define to hold the list of target names suitable for offloading.])
+ [Define to offload targets, separated by commas.])
if test x"$offload_targets" != x; then
AC_DEFINE(ENABLE_OFFLOADING, 1,
[Define this to enable support for offloading.])
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 757bfc9..78b68e2 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -284,7 +284,8 @@ static const char *const spec_version = DEFAULT_TARGET_VERSION;
static const char *spec_machine = DEFAULT_TARGET_MACHINE;
static const char *spec_host_machine = DEFAULT_REAL_TARGET_MACHINE;
-/* List of offload targets. */
+/* List of offload targets. Separated by colon. Empty string for
+ -foffload=disable. */
static char *offload_targets = NULL;
@@ -4376,6 +4377,13 @@ process_command (unsigned int decoded_options_count,
CL_DRIVER, &handlers, global_dc);
}
+#ifdef ENABLE_OFFLOADING
+ /* If the user didn't specify any, default to all configured offload
+ targets. */
+ if (offload_targets == NULL)
+ handle_foffload_option (OFFLOAD_TARGETS);
+#endif
+
if (output_file
&& strcmp (output_file, "-") != 0
&& strcmp (output_file, HOST_BIT_BUCKET) != 0)
@@ -7572,22 +7580,17 @@ driver::maybe_putenv_COLLECT_LTO_WRAPPER () const
void
driver::maybe_putenv_OFFLOAD_TARGETS () const
{
- const char *targets = offload_targets;
-
- /* If no targets specified by -foffload, use all available targets. */
- if (!targets)
- targets = OFFLOAD_TARGETS;
-
- if (strlen (targets) > 0)
+ if (offload_targets && offload_targets[0] != '\0')
{
obstack_grow (&collect_obstack, "OFFLOAD_TARGET_NAMES=",
sizeof ("OFFLOAD_TARGET_NAMES=") - 1);
- obstack_grow (&collect_obstack, targets,
- strlen (targets) + 1);
+ obstack_grow (&collect_obstack, offload_targets,
+ strlen (offload_targets) + 1);
xputenv (XOBFINISH (&collect_obstack, char *));
}
free (offload_targets);
+ offload_targets = NULL;
}
/* Reject switches that no pass was interested in. */
diff --git a/gcc/lto-wrapper.c b/gcc/lto-wrapper.c
index 150d3684..e13a82a 100644
--- a/gcc/lto-wrapper.c
+++ b/gcc/lto-wrapper.c
@@ -594,6 +594,8 @@ append_offload_options (obstack *argv_obstack, const char *target,
else
{
opts = strchr (option->arg, '=');
+ /* If there are offload targets specified, but no actual options,
+ there is nothing to do here. */
if (!opts)
continue;
@@ -606,10 +608,12 @@ append_offload_options (obstack *argv_obstack, const char *target,
next = opts;
next = (next > opts) ? opts : next;
+ /* Are we looking for this offload target? */
if (strlen (target) == (size_t) (next - cur)
&& strncmp (target, cur, next - cur) == 0)
break;
+ /* Skip the comma or equal sign. */
cur = next + 1;
}