blob: 4338d03ade05f82eeb1a4c4a3dcec35827d95333 [file] [log] [blame]
Erich Keaneebba5922017-07-21 22:37:03 +00001//===--- WebAssembly.cpp - Implement WebAssembly target feature support ---===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements WebAssembly TargetInfo objects.
11//
12//===----------------------------------------------------------------------===//
13
14#include "WebAssembly.h"
15#include "Targets.h"
16#include "clang/Basic/Builtins.h"
17#include "clang/Basic/Diagnostic.h"
18#include "clang/Basic/TargetBuiltins.h"
19#include "llvm/ADT/StringSwitch.h"
20
21using namespace clang;
22using namespace clang::targets;
23
24const Builtin::Info WebAssemblyTargetInfo::BuiltinInfo[] = {
25#define BUILTIN(ID, TYPE, ATTRS) \
26 {#ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr},
27#define LIBBUILTIN(ID, TYPE, ATTRS, HEADER) \
28 {#ID, TYPE, ATTRS, HEADER, ALL_LANGUAGES, nullptr},
29#include "clang/Basic/BuiltinsWebAssembly.def"
30};
31
Erich Keanee44bdb32018-02-08 23:16:55 +000032static constexpr llvm::StringLiteral ValidCPUNames[] = {
33 {"mvp"}, {"bleeding-edge"}, {"generic"}};
34
Erich Keaneebba5922017-07-21 22:37:03 +000035bool WebAssemblyTargetInfo::hasFeature(StringRef Feature) const {
36 return llvm::StringSwitch<bool>(Feature)
37 .Case("simd128", SIMDLevel >= SIMD128)
Dan Gohman0811cd12017-11-28 01:13:45 +000038 .Case("nontrapping-fptoint", HasNontrappingFPToInt)
Dan Gohmand0c4e1e2018-01-19 17:16:32 +000039 .Case("sign-ext", HasSignExt)
Erich Keaneebba5922017-07-21 22:37:03 +000040 .Default(false);
41}
42
43bool WebAssemblyTargetInfo::isValidCPUName(StringRef Name) const {
Erich Keanee44bdb32018-02-08 23:16:55 +000044 return llvm::find(ValidCPUNames, Name) != std::end(ValidCPUNames);
45}
46
47void WebAssemblyTargetInfo::fillValidCPUList(
48 SmallVectorImpl<StringRef> &Values) const {
49 Values.append(std::begin(ValidCPUNames), std::end(ValidCPUNames));
Erich Keaneebba5922017-07-21 22:37:03 +000050}
51
52void WebAssemblyTargetInfo::getTargetDefines(const LangOptions &Opts,
53 MacroBuilder &Builder) const {
54 defineCPUMacros(Builder, "wasm", /*Tuning=*/false);
55 if (SIMDLevel >= SIMD128)
56 Builder.defineMacro("__wasm_simd128__");
57}
58
59bool WebAssemblyTargetInfo::handleTargetFeatures(
60 std::vector<std::string> &Features, DiagnosticsEngine &Diags) {
61 for (const auto &Feature : Features) {
62 if (Feature == "+simd128") {
63 SIMDLevel = std::max(SIMDLevel, SIMD128);
64 continue;
65 }
66 if (Feature == "-simd128") {
67 SIMDLevel = std::min(SIMDLevel, SIMDEnum(SIMD128 - 1));
68 continue;
69 }
Dan Gohman0811cd12017-11-28 01:13:45 +000070 if (Feature == "+nontrapping-fptoint") {
71 HasNontrappingFPToInt = true;
72 continue;
73 }
74 if (Feature == "-nontrapping-fptoint") {
75 HasNontrappingFPToInt = false;
76 continue;
77 }
Dan Gohmand0c4e1e2018-01-19 17:16:32 +000078 if (Feature == "+sign-ext") {
79 HasSignExt = true;
80 continue;
81 }
82 if (Feature == "-sign-ext") {
83 HasSignExt = false;
84 continue;
85 }
Erich Keaneebba5922017-07-21 22:37:03 +000086
87 Diags.Report(diag::err_opt_not_valid_with_opt)
88 << Feature << "-target-feature";
89 return false;
90 }
91 return true;
92}
93
94ArrayRef<Builtin::Info> WebAssemblyTargetInfo::getTargetBuiltins() const {
95 return llvm::makeArrayRef(BuiltinInfo, clang::WebAssembly::LastTSBuiltin -
96 Builtin::FirstTSBuiltin);
97}
98
99void WebAssembly32TargetInfo::getTargetDefines(const LangOptions &Opts,
100 MacroBuilder &Builder) const {
101 WebAssemblyTargetInfo::getTargetDefines(Opts, Builder);
102 defineCPUMacros(Builder, "wasm32", /*Tuning=*/false);
103}
104
105void WebAssembly64TargetInfo::getTargetDefines(const LangOptions &Opts,
106 MacroBuilder &Builder) const {
107 WebAssemblyTargetInfo::getTargetDefines(Opts, Builder);
108 defineCPUMacros(Builder, "wasm64", /*Tuning=*/false);
109}