Skip to content

Commit bbf56fb

Browse files
committedOct 4, 2017
[OpenMP] Fix passing of -m arguments correctly
The recent fix in D38258 was wrong: getAuxTriple() only returns non-null values for the CUDA toolchain. That is why the now added test for PPC and X86 failed. Differential Revision: https://reviews.llvm.org/D38372 llvm-svn: 314902
1 parent bd5d2f0 commit bbf56fb

File tree

4 files changed

+73
-70
lines changed

4 files changed

+73
-70
lines changed
 

‎clang/include/clang/Driver/ToolChain.h

+2-7
Original file line numberDiff line numberDiff line change
@@ -245,14 +245,9 @@ class ToolChain {
245245
/// TranslateOpenMPTargetArgs - Create a new derived argument list for
246246
/// that contains the OpenMP target specific flags passed via
247247
/// -Xopenmp-target -opt=val OR -Xopenmp-target=<triple> -opt=val
248-
/// Translation occurs only when the \p DeviceOffloadKind is specified.
249-
///
250-
/// \param DeviceOffloadKind - The device offload kind used for the
251-
/// translation.
252248
virtual llvm::opt::DerivedArgList *TranslateOpenMPTargetArgs(
253-
const llvm::opt::DerivedArgList &Args,
254-
Action::OffloadKind DeviceOffloadKind,
255-
SmallVector<llvm::opt::Arg *, 4> &AllocatedArgs) const;
249+
const llvm::opt::DerivedArgList &Args, bool SameTripleAsHost,
250+
SmallVectorImpl<llvm::opt::Arg *> &AllocatedArgs) const;
256251

257252
/// Choose a tool to use to handle the action \p JA.
258253
///

‎clang/lib/Driver/Compilation.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,15 @@ Compilation::getArgsForToolChain(const ToolChain *TC, StringRef BoundArch,
5252
DerivedArgList *&Entry = TCArgs[{TC, BoundArch, DeviceOffloadKind}];
5353
if (!Entry) {
5454
SmallVector<Arg *, 4> AllocatedArgs;
55+
DerivedArgList *OpenMPArgs = nullptr;
5556
// Translate OpenMP toolchain arguments provided via the -Xopenmp-target flags.
56-
DerivedArgList *OpenMPArgs = TC->TranslateOpenMPTargetArgs(
57-
*TranslatedArgs, DeviceOffloadKind, AllocatedArgs);
57+
if (DeviceOffloadKind == Action::OFK_OpenMP) {
58+
const ToolChain *HostTC = getSingleOffloadToolChain<Action::OFK_Host>();
59+
bool SameTripleAsHost = (TC->getTriple() == HostTC->getTriple());
60+
OpenMPArgs = TC->TranslateOpenMPTargetArgs(
61+
*TranslatedArgs, SameTripleAsHost, AllocatedArgs);
62+
}
63+
5864
if (!OpenMPArgs) {
5965
Entry = TC->TranslateArgs(*TranslatedArgs, BoundArch, DeviceOffloadKind);
6066
if (!Entry)

‎clang/lib/Driver/ToolChain.cpp

+55-61
Original file line numberDiff line numberDiff line change
@@ -801,74 +801,68 @@ ToolChain::computeMSVCVersion(const Driver *D,
801801
}
802802

803803
llvm::opt::DerivedArgList *ToolChain::TranslateOpenMPTargetArgs(
804-
const llvm::opt::DerivedArgList &Args,
805-
Action::OffloadKind DeviceOffloadKind,
806-
SmallVector<llvm::opt::Arg *, 4> &AllocatedArgs) const {
807-
if (DeviceOffloadKind == Action::OFK_OpenMP) {
808-
DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
809-
const OptTable &Opts = getDriver().getOpts();
810-
bool Modified = false;
811-
812-
// Handle -Xopenmp-target flags
813-
for (Arg *A : Args) {
814-
// Exclude flags which may only apply to the host toolchain.
815-
// Do not exclude flags when the host triple (AuxTriple)
816-
// matches the current toolchain triple. If it is not present
817-
// at all, target and host share a toolchain.
818-
if (A->getOption().matches(options::OPT_m_Group)) {
819-
if (!getAuxTriple() || getAuxTriple()->str() == getTriple().str())
820-
DAL->append(A);
821-
else
822-
Modified = true;
823-
continue;
824-
}
825-
826-
unsigned Index;
827-
unsigned Prev;
828-
bool XOpenMPTargetNoTriple = A->getOption().matches(
829-
options::OPT_Xopenmp_target);
830-
831-
if (A->getOption().matches(options::OPT_Xopenmp_target_EQ)) {
832-
// Passing device args: -Xopenmp-target=<triple> -opt=val.
833-
if (A->getValue(0) == getTripleString())
834-
Index = Args.getBaseArgs().MakeIndex(A->getValue(1));
835-
else
836-
continue;
837-
} else if (XOpenMPTargetNoTriple) {
838-
// Passing device args: -Xopenmp-target -opt=val.
839-
Index = Args.getBaseArgs().MakeIndex(A->getValue(0));
840-
} else {
804+
const llvm::opt::DerivedArgList &Args, bool SameTripleAsHost,
805+
SmallVectorImpl<llvm::opt::Arg *> &AllocatedArgs) const {
806+
DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
807+
const OptTable &Opts = getDriver().getOpts();
808+
bool Modified = false;
809+
810+
// Handle -Xopenmp-target flags
811+
for (Arg *A : Args) {
812+
// Exclude flags which may only apply to the host toolchain.
813+
// Do not exclude flags when the host triple (AuxTriple)
814+
// matches the current toolchain triple. If it is not present
815+
// at all, target and host share a toolchain.
816+
if (A->getOption().matches(options::OPT_m_Group)) {
817+
if (SameTripleAsHost)
841818
DAL->append(A);
819+
else
820+
Modified = true;
821+
continue;
822+
}
823+
824+
unsigned Index;
825+
unsigned Prev;
826+
bool XOpenMPTargetNoTriple =
827+
A->getOption().matches(options::OPT_Xopenmp_target);
828+
829+
if (A->getOption().matches(options::OPT_Xopenmp_target_EQ)) {
830+
// Passing device args: -Xopenmp-target=<triple> -opt=val.
831+
if (A->getValue(0) == getTripleString())
832+
Index = Args.getBaseArgs().MakeIndex(A->getValue(1));
833+
else
842834
continue;
843-
}
844-
845-
// Parse the argument to -Xopenmp-target.
846-
Prev = Index;
847-
std::unique_ptr<Arg> XOpenMPTargetArg(Opts.ParseOneArg(Args, Index));
848-
if (!XOpenMPTargetArg || Index > Prev + 1) {
849-
getDriver().Diag(diag::err_drv_invalid_Xopenmp_target_with_args)
850-
<< A->getAsString(Args);
851-
continue;
852-
}
853-
if (XOpenMPTargetNoTriple && XOpenMPTargetArg &&
854-
Args.getAllArgValues(
855-
options::OPT_fopenmp_targets_EQ).size() != 1) {
856-
getDriver().Diag(diag::err_drv_Xopenmp_target_missing_triple);
857-
continue;
858-
}
859-
XOpenMPTargetArg->setBaseArg(A);
860-
A = XOpenMPTargetArg.release();
861-
AllocatedArgs.push_back(A);
835+
} else if (XOpenMPTargetNoTriple) {
836+
// Passing device args: -Xopenmp-target -opt=val.
837+
Index = Args.getBaseArgs().MakeIndex(A->getValue(0));
838+
} else {
862839
DAL->append(A);
863-
Modified = true;
840+
continue;
864841
}
865842

866-
if (Modified) {
867-
return DAL;
868-
} else {
869-
delete DAL;
843+
// Parse the argument to -Xopenmp-target.
844+
Prev = Index;
845+
std::unique_ptr<Arg> XOpenMPTargetArg(Opts.ParseOneArg(Args, Index));
846+
if (!XOpenMPTargetArg || Index > Prev + 1) {
847+
getDriver().Diag(diag::err_drv_invalid_Xopenmp_target_with_args)
848+
<< A->getAsString(Args);
849+
continue;
850+
}
851+
if (XOpenMPTargetNoTriple && XOpenMPTargetArg &&
852+
Args.getAllArgValues(options::OPT_fopenmp_targets_EQ).size() != 1) {
853+
getDriver().Diag(diag::err_drv_Xopenmp_target_missing_triple);
854+
continue;
870855
}
856+
XOpenMPTargetArg->setBaseArg(A);
857+
A = XOpenMPTargetArg.release();
858+
AllocatedArgs.push_back(A);
859+
DAL->append(A);
860+
Modified = true;
871861
}
872862

863+
if (Modified)
864+
return DAL;
865+
866+
delete DAL;
873867
return nullptr;
874868
}

‎clang/test/Driver/openmp-offload.c

+8
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@
7171

7272
/// ###########################################################################
7373

74+
/// Check -march=pwr7 is NOT passed to x86_64-unknown-linux-gnu.
75+
// RUN: %clang -### -no-canonical-prefixes -fopenmp=libomp -fopenmp-targets=x86_64-unknown-linux-gnu -march=pwr7 %s 2>&1 \
76+
// RUN: | FileCheck -check-prefix=CHK-FOPENMP-MARCH-TO-X86 %s
77+
78+
// CHK-FOPENMP-MARCH-TO-X86-NOT: clang{{.*}} "-target-cpu" "pwr7" {{.*}}"-fopenmp-is-device"
79+
80+
/// ###########################################################################
81+
7482
/// Check -Xopenmp-target triggers error when multiple triples are used.
7583
// RUN: %clang -### -no-canonical-prefixes -fopenmp=libomp -fopenmp-targets=powerpc64le-ibm-linux-gnu,powerpc64le-unknown-linux-gnu -Xopenmp-target -mcpu=pwr8 %s 2>&1 \
7684
// RUN: | FileCheck -check-prefix=CHK-FOPENMP-TARGET-AMBIGUOUS-ERROR %s

0 commit comments

Comments
 (0)
Please sign in to comment.