summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2019-02-28 18:39:08 +0000
committerThomas Lively <tlively@google.com>2019-02-28 18:39:08 +0000
commitf3b4f99007cdcb3306484c9a39d31addc20aaa69 (patch)
tree266810d9e4cefb97f3687f7d18726680e95e4e21 /clang/lib
parent9915b1fa4aa520c4e4d73f0707fc743c4dc08933 (diff)
downloadbcm5719-llvm-f3b4f99007cdcb3306484c9a39d31addc20aaa69.tar.gz
bcm5719-llvm-f3b4f99007cdcb3306484c9a39d31addc20aaa69.zip
[WebAssembly] Remove uses of ThreadModel
Summary: In the clang UI, replaces -mthread-model posix with -matomics as the source of truth on threading. In the backend, replaces -thread-model=posix with the atomics target feature, which is now collected on the WebAssemblyTargetMachine along with all other used features. These collected features will also be used to emit the target features section in the future. The default configuration for the backend is thread-model=posix and no atomics, which was previously an invalid configuration. This change makes the default valid because the thread model is ignored. A side effect of this change is that objects are never emitted with passive segments. It will instead be up to the linker to decide whether sections should be active or passive based on whether atomics are used in the final link. Reviewers: aheejin, sbc100, dschuff Subscribers: mehdi_amini, jgravelle-google, hiraditya, sunfish, steven_wu, dexonsmith, rupprecht, jfb, jdoerfert, cfe-commits, llvm-commits Tags: #clang, #llvm Differential Revision: https://reviews.llvm.org/D58742 llvm-svn: 355112
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/Driver/Driver.cpp2
-rw-r--r--clang/lib/Driver/ToolChains/Clang.cpp2
-rw-r--r--clang/lib/Driver/ToolChains/WebAssembly.cpp67
-rw-r--r--clang/lib/Driver/ToolChains/WebAssembly.h1
4 files changed, 30 insertions, 42 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp
index b405390d44e..eb03e6e87cc 100644
--- a/clang/lib/Driver/Driver.cpp
+++ b/clang/lib/Driver/Driver.cpp
@@ -1528,7 +1528,7 @@ void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {
if (TC.isThreadModelSupported(A->getValue()))
OS << "Thread model: " << A->getValue();
} else
- OS << "Thread model: " << TC.getThreadModel(C.getArgs());
+ OS << "Thread model: " << TC.getThreadModel();
OS << '\n';
// Print out the install directory.
diff --git a/clang/lib/Driver/ToolChains/Clang.cpp b/clang/lib/Driver/ToolChains/Clang.cpp
index e7fb3fe403c..ff48360b666 100644
--- a/clang/lib/Driver/ToolChains/Clang.cpp
+++ b/clang/lib/Driver/ToolChains/Clang.cpp
@@ -3830,7 +3830,7 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
CmdArgs.push_back(A->getValue());
}
else
- CmdArgs.push_back(Args.MakeArgString(TC.getThreadModel(Args)));
+ CmdArgs.push_back(Args.MakeArgString(TC.getThreadModel()));
Args.AddLastArg(CmdArgs, options::OPT_fveclib);
diff --git a/clang/lib/Driver/ToolChains/WebAssembly.cpp b/clang/lib/Driver/ToolChains/WebAssembly.cpp
index f076b528ce4..ce28d447ff2 100644
--- a/clang/lib/Driver/ToolChains/WebAssembly.cpp
+++ b/clang/lib/Driver/ToolChains/WebAssembly.cpp
@@ -20,27 +20,6 @@ using namespace clang::driver::toolchains;
using namespace clang;
using namespace llvm::opt;
-void parseThreadArgs(const Driver &Driver, const ArgList &DriverArgs,
- bool &Pthread, StringRef &ThreadModel,
- bool CheckForErrors = true) {
- // Default value for -pthread / -mthread-model options, each being false /
- // "single".
- Pthread =
- DriverArgs.hasFlag(options::OPT_pthread, options::OPT_no_pthread, false);
- ThreadModel =
- DriverArgs.getLastArgValue(options::OPT_mthread_model, "single");
- if (!CheckForErrors)
- return;
-
- // Did user explicitly specify -mthread-model / -pthread?
- bool HasThreadModel = DriverArgs.hasArg(options::OPT_mthread_model);
- bool HasPthread = Pthread && DriverArgs.hasArg(options::OPT_pthread);
- // '-pthread' cannot be used with '-mthread-model single'
- if (HasPthread && HasThreadModel && ThreadModel == "single")
- Driver.Diag(diag::err_drv_argument_not_allowed_with)
- << "-pthread" << "-mthread-model single";
-}
-
wasm::Linker::Linker(const ToolChain &TC)
: GnuTool("wasm::Linker", "lld", TC) {}
@@ -145,15 +124,36 @@ void WebAssembly::addClangTargetOptions(const ArgList &DriverArgs,
options::OPT_fno_use_init_array, true))
CC1Args.push_back("-fuse-init-array");
- // Either '-mthread-model posix' or '-pthread' sets '-target-feature
- // +atomics'. We intentionally didn't create '-matomics' and set the atomics
- // target feature here depending on the other two options.
- bool Pthread = false;
- StringRef ThreadModel = "";
- parseThreadArgs(getDriver(), DriverArgs, Pthread, ThreadModel);
- if (Pthread || ThreadModel != "single") {
+ // '-pthread' implies '-target-feature +atomics' and
+ // '-target-feature +bulk-memory'
+ if (DriverArgs.hasFlag(options::OPT_pthread, options::OPT_no_pthread,
+ false)) {
+ if (DriverArgs.hasFlag(options::OPT_mno_atomics, options::OPT_matomics,
+ false))
+ getDriver().Diag(diag::err_drv_argument_not_allowed_with)
+ << "-pthread"
+ << "-mno-atomics";
+ if (DriverArgs.hasFlag(options::OPT_mno_bulk_memory,
+ options::OPT_mbulk_memory, false))
+ getDriver().Diag(diag::err_drv_argument_not_allowed_with)
+ << "-pthread"
+ << "-mno-bulk-memory";
CC1Args.push_back("-target-feature");
CC1Args.push_back("+atomics");
+ CC1Args.push_back("-target-feature");
+ CC1Args.push_back("+bulk-memory");
+ }
+
+ // '-matomics' implies '-mbulk-memory'
+ if (DriverArgs.hasFlag(options::OPT_matomics, options::OPT_mno_atomics,
+ false)) {
+ if (DriverArgs.hasFlag(options::OPT_mno_bulk_memory,
+ options::OPT_mbulk_memory, false))
+ getDriver().Diag(diag::err_drv_argument_not_allowed_with)
+ << "-matomics"
+ << "-mno-bulk-memory";
+ CC1Args.push_back("-target-feature");
+ CC1Args.push_back("+bulk-memory");
}
}
@@ -212,17 +212,6 @@ void WebAssembly::AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
}
}
-std::string WebAssembly::getThreadModel(const ArgList &DriverArgs) const {
- // The WebAssembly MVP does not yet support threads. We set this to "posix"
- // when '-pthread' is set.
- bool Pthread = false;
- StringRef ThreadModel = "";
- parseThreadArgs(getDriver(), DriverArgs, Pthread, ThreadModel, false);
- if (Pthread)
- return "posix";
- return ThreadModel;
-}
-
Tool *WebAssembly::buildLinker() const {
return new tools::wasm::Linker(*this);
}
diff --git a/clang/lib/Driver/ToolChains/WebAssembly.h b/clang/lib/Driver/ToolChains/WebAssembly.h
index 6ededd84ec6..2d9210ac04c 100644
--- a/clang/lib/Driver/ToolChains/WebAssembly.h
+++ b/clang/lib/Driver/ToolChains/WebAssembly.h
@@ -64,7 +64,6 @@ private:
llvm::opt::ArgStringList &CC1Args) const override;
void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
llvm::opt::ArgStringList &CmdArgs) const override;
- std::string getThreadModel(const llvm::opt::ArgList &) const override;
const char *getDefaultLinker() const override { return "wasm-ld"; }
OpenPOWER on IntegriCloud