blob: ad779c1b771ee87a35b93880653d1733dd4d07d3 [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001//===- WebAssemblyTargetMachine.cpp - Define TargetMachine for WebAssembly -==//
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/// \file
11/// \brief This file defines the WebAssembly-specific subclass of TargetMachine.
12///
13//===----------------------------------------------------------------------===//
14
Dan Gohman10e730a2015-06-29 23:51:55 +000015#include "WebAssemblyTargetMachine.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000016#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
17#include "WebAssembly.h"
Dan Gohman5bf22fc2015-12-17 04:55:44 +000018#include "WebAssemblyTargetObjectFile.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000019#include "WebAssemblyTargetTransformInfo.h"
20#include "llvm/CodeGen/MachineFunctionPass.h"
21#include "llvm/CodeGen/Passes.h"
22#include "llvm/CodeGen/RegAllocRegistry.h"
Matthias Braun31d19d42016-05-10 03:21:59 +000023#include "llvm/CodeGen/TargetPassConfig.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000024#include "llvm/IR/Function.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000025#include "llvm/Support/TargetRegistry.h"
26#include "llvm/Target/TargetOptions.h"
JF Bastien03855df2015-07-01 23:41:25 +000027#include "llvm/Transforms/Scalar.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000028using namespace llvm;
29
30#define DEBUG_TYPE "wasm"
31
Derek Schufff41f67d2016-08-01 21:34:04 +000032// Emscripten's asm.js-style exception handling
Derek Schuffccdceda2016-08-18 15:27:25 +000033static cl::opt<bool> EnableEmException(
Derek Schuff53b9af02016-08-09 00:29:55 +000034 "enable-emscripten-cxx-exceptions",
Derek Schufff41f67d2016-08-01 21:34:04 +000035 cl::desc("WebAssembly Emscripten-style exception handling"),
36 cl::init(false));
37
Derek Schuffccdceda2016-08-18 15:27:25 +000038// Emscripten's asm.js-style setjmp/longjmp handling
39static cl::opt<bool> EnableEmSjLj(
40 "enable-emscripten-sjlj",
41 cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"),
42 cl::init(false));
43
Dan Gohman10e730a2015-06-29 23:51:55 +000044extern "C" void LLVMInitializeWebAssemblyTarget() {
45 // Register the target.
Mehdi Aminif42454b2016-10-09 23:00:34 +000046 RegisterTargetMachine<WebAssemblyTargetMachine> X(
47 getTheWebAssemblyTarget32());
48 RegisterTargetMachine<WebAssemblyTargetMachine> Y(
49 getTheWebAssemblyTarget64());
Derek Schufff41f67d2016-08-01 21:34:04 +000050
51 // Register exception handling pass to opt
Derek Schuffccdceda2016-08-18 15:27:25 +000052 initializeWebAssemblyLowerEmscriptenEHSjLjPass(
Derek Schufff41f67d2016-08-01 21:34:04 +000053 *PassRegistry::getPassRegistry());
Dan Gohman10e730a2015-06-29 23:51:55 +000054}
55
56//===----------------------------------------------------------------------===//
57// WebAssembly Lowering public interface.
58//===----------------------------------------------------------------------===//
59
Dan Gohman41133a32016-05-19 03:00:05 +000060static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
61 if (!RM.hasValue())
62 return Reloc::PIC_;
63 return *RM;
64}
65
Dan Gohman10e730a2015-06-29 23:51:55 +000066/// Create an WebAssembly architecture model.
67///
68WebAssemblyTargetMachine::WebAssemblyTargetMachine(
69 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
Dan Gohman41133a32016-05-19 03:00:05 +000070 const TargetOptions &Options, Optional<Reloc::Model> RM,
Daniel Jasper314ed202017-08-03 05:15:53 +000071 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT)
Matthias Braun3a9c1142017-10-12 22:28:54 +000072 : TargetMachine(T, TT.isArch64Bit() ? "e-m:e-p:64:64-i64:64-n32:64-S128"
73 : "e-m:e-p:32:32-i64:64-n32:64-S128",
74 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
75 CM ? *CM : CodeModel::Large, OL),
Dan Gohman18eafb62017-02-22 01:23:18 +000076 TLOF(TT.isOSBinFormatELF() ?
77 static_cast<TargetLoweringObjectFile*>(
78 new WebAssemblyTargetObjectFileELF()) :
79 static_cast<TargetLoweringObjectFile*>(
80 new WebAssemblyTargetObjectFile())) {
Dan Gohmane0405332016-10-03 22:43:53 +000081 // WebAssembly type-checks instructions, but a noreturn function with a return
Derek Schuffffa143c2015-11-10 00:30:57 +000082 // type that doesn't match the context will cause a check failure. So we lower
83 // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's
Dan Gohmane0405332016-10-03 22:43:53 +000084 // 'unreachable' instructions which is meant for that case.
Derek Schuffffa143c2015-11-10 00:30:57 +000085 this->Options.TrapUnreachable = true;
86
Dan Gohmand934cb82017-02-24 23:18:00 +000087 // WebAssembly treats each function as an independent unit. Force
88 // -ffunction-sections, effectively, so that we can emit them independently.
89 if (!TT.isOSBinFormatELF()) {
90 this->Options.FunctionSections = true;
91 this->Options.DataSections = true;
92 this->Options.UniqueSectionNames = true;
93 }
94
Dan Gohman10e730a2015-06-29 23:51:55 +000095 initAsmInfo();
96
Dan Gohmand85ab7f2016-02-18 06:32:53 +000097 // Note that we don't use setRequiresStructuredCFG(true). It disables
98 // optimizations than we're ok with, and want, such as critical edge
99 // splitting and tail merging.
Dan Gohman10e730a2015-06-29 23:51:55 +0000100}
101
102WebAssemblyTargetMachine::~WebAssemblyTargetMachine() {}
103
104const WebAssemblySubtarget *
105WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const {
106 Attribute CPUAttr = F.getFnAttribute("target-cpu");
107 Attribute FSAttr = F.getFnAttribute("target-features");
108
109 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
110 ? CPUAttr.getValueAsString().str()
111 : TargetCPU;
112 std::string FS = !FSAttr.hasAttribute(Attribute::None)
113 ? FSAttr.getValueAsString().str()
114 : TargetFS;
115
116 auto &I = SubtargetMap[CPU + FS];
117 if (!I) {
118 // This needs to be done before we create a new subtarget since any
119 // creation will depend on the TM and the code generation flags on the
120 // function that reside in TargetOptions.
121 resetTargetOptions(F);
Rafael Espindola3adc7ce2015-08-11 18:11:17 +0000122 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
Dan Gohman10e730a2015-06-29 23:51:55 +0000123 }
124 return I.get();
125}
126
127namespace {
128/// WebAssembly Code Generator Pass Configuration Options.
129class WebAssemblyPassConfig final : public TargetPassConfig {
130public:
Matthias Braun5e394c32017-05-30 21:36:41 +0000131 WebAssemblyPassConfig(WebAssemblyTargetMachine &TM, PassManagerBase &PM)
Dan Gohman10e730a2015-06-29 23:51:55 +0000132 : TargetPassConfig(TM, PM) {}
133
134 WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
135 return getTM<WebAssemblyTargetMachine>();
136 }
137
138 FunctionPass *createTargetRegisterAllocator(bool) override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000139
140 void addIRPasses() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000141 bool addInstSelector() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000142 void addPostRegAlloc() override;
Derek Schuffad154c82016-03-28 17:05:30 +0000143 bool addGCPasses() override { return false; }
Dan Gohman10e730a2015-06-29 23:51:55 +0000144 void addPreEmitPass() override;
145};
146} // end anonymous namespace
147
148TargetIRAnalysis WebAssemblyTargetMachine::getTargetIRAnalysis() {
Hans Wennborg9099b5e62015-09-16 23:59:57 +0000149 return TargetIRAnalysis([this](const Function &F) {
Dan Gohman10e730a2015-06-29 23:51:55 +0000150 return TargetTransformInfo(WebAssemblyTTIImpl(this, F));
151 });
152}
153
154TargetPassConfig *
155WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) {
Matthias Braun5e394c32017-05-30 21:36:41 +0000156 return new WebAssemblyPassConfig(*this, PM);
Dan Gohman10e730a2015-06-29 23:51:55 +0000157}
158
159FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
160 return nullptr; // No reg alloc
161}
162
Dan Gohman10e730a2015-06-29 23:51:55 +0000163//===----------------------------------------------------------------------===//
164// The following functions are called from lib/CodeGen/Passes.cpp to modify
165// the CodeGen pass sequence.
166//===----------------------------------------------------------------------===//
167
168void WebAssemblyPassConfig::addIRPasses() {
JF Bastien03855df2015-07-01 23:41:25 +0000169 if (TM->Options.ThreadModel == ThreadModel::Single)
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000170 // In "single" mode, atomics get lowered to non-atomics.
JF Bastien03855df2015-07-01 23:41:25 +0000171 addPass(createLowerAtomicPass());
172 else
173 // Expand some atomic operations. WebAssemblyTargetLowering has hooks which
174 // control specifically what gets lowered.
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000175 addPass(createAtomicExpandPass());
Dan Gohman10e730a2015-06-29 23:51:55 +0000176
Dan Gohman1b637452017-01-07 00:34:54 +0000177 // Fix function bitcasts, as WebAssembly requires caller and callee signatures
178 // to match.
179 addPass(createWebAssemblyFixFunctionBitcasts());
180
Dan Gohman81719f82015-11-25 16:55:01 +0000181 // Optimize "returned" function attributes.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000182 if (getOptLevel() != CodeGenOpt::None)
183 addPass(createWebAssemblyOptimizeReturned());
Dan Gohman81719f82015-11-25 16:55:01 +0000184
Heejin Ahnc0f18172016-09-01 21:05:15 +0000185 // If exception handling is not enabled and setjmp/longjmp handling is
186 // enabled, we lower invokes into calls and delete unreachable landingpad
187 // blocks. Lowering invokes when there is no EH support is done in
188 // TargetPassConfig::addPassesToHandleExceptions, but this runs after this
189 // function and SjLj handling expects all invokes to be lowered before.
190 if (!EnableEmException) {
191 addPass(createLowerInvokePass());
192 // The lower invoke pass may create unreachable code. Remove it in order not
193 // to process dead blocks in setjmp/longjmp handling.
194 addPass(createUnreachableBlockEliminationPass());
195 }
196
197 // Handle exceptions and setjmp/longjmp if enabled.
Derek Schuffccdceda2016-08-18 15:27:25 +0000198 if (EnableEmException || EnableEmSjLj)
199 addPass(createWebAssemblyLowerEmscriptenEHSjLj(EnableEmException,
200 EnableEmSjLj));
Derek Schufff41f67d2016-08-01 21:34:04 +0000201
Dan Gohman10e730a2015-06-29 23:51:55 +0000202 TargetPassConfig::addIRPasses();
203}
204
Dan Gohman10e730a2015-06-29 23:51:55 +0000205bool WebAssemblyPassConfig::addInstSelector() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000206 (void)TargetPassConfig::addInstSelector();
Dan Gohman10e730a2015-06-29 23:51:55 +0000207 addPass(
208 createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel()));
Dan Gohman1cf96c02015-12-09 16:23:59 +0000209 // Run the argument-move pass immediately after the ScheduleDAG scheduler
210 // so that we can fix up the ARGUMENT instructions before anything else
211 // sees them in the wrong place.
212 addPass(createWebAssemblyArgumentMove());
Dan Gohmanbb372242016-01-26 03:39:31 +0000213 // Set the p2align operands. This information is present during ISel, however
214 // it's inconvenient to collect. Collect it now, and update the immediate
215 // operands.
216 addPass(createWebAssemblySetP2AlignOperands());
Dan Gohman10e730a2015-06-29 23:51:55 +0000217 return false;
218}
219
JF Bastien600aee92015-07-31 17:53:38 +0000220void WebAssemblyPassConfig::addPostRegAlloc() {
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000221 // TODO: The following CodeGen passes don't currently support code containing
222 // virtual registers. Consider removing their restrictions and re-enabling
223 // them.
Derek Schuffad154c82016-03-28 17:05:30 +0000224
225 // Has no asserts of its own, but was not written to handle virtual regs.
226 disablePass(&ShrinkWrapID);
Derek Schuffecabac62016-03-28 22:52:20 +0000227
Matthias Braun1eb47362016-08-25 01:27:13 +0000228 // These functions all require the NoVRegs property.
JF Bastien600aee92015-07-31 17:53:38 +0000229 disablePass(&MachineCopyPropagationID);
Derek Schuffecabac62016-03-28 22:52:20 +0000230 disablePass(&PostRASchedulerID);
231 disablePass(&FuncletLayoutID);
232 disablePass(&StackMapLivenessID);
233 disablePass(&LiveDebugValuesID);
Sanjoy Dasfe71ec72016-04-19 06:24:58 +0000234 disablePass(&PatchableFunctionID);
Dan Gohman950a13c2015-09-16 16:51:30 +0000235
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000236 TargetPassConfig::addPostRegAlloc();
JF Bastien600aee92015-07-31 17:53:38 +0000237}
Dan Gohman10e730a2015-06-29 23:51:55 +0000238
Dan Gohman950a13c2015-09-16 16:51:30 +0000239void WebAssemblyPassConfig::addPreEmitPass() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000240 TargetPassConfig::addPreEmitPass();
Dan Gohman05ac43f2015-12-17 01:39:00 +0000241
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000242 // Now that we have a prologue and epilogue and all frame indices are
243 // rewritten, eliminate SP and FP. This allows them to be stackified,
244 // colored, and numbered with the rest of the registers.
245 addPass(createWebAssemblyReplacePhysRegs());
246
Derek Schuff6f697832016-10-21 16:38:07 +0000247 // Rewrite pseudo call_indirect instructions as real instructions.
248 // This needs to run before register stackification, because we change the
249 // order of the arguments.
250 addPass(createWebAssemblyCallIndirectFixup());
251
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000252 if (getOptLevel() != CodeGenOpt::None) {
253 // LiveIntervals isn't commonly run this late. Re-establish preconditions.
254 addPass(createWebAssemblyPrepareForLiveIntervals());
255
256 // Depend on LiveIntervals and perform some optimizations on it.
257 addPass(createWebAssemblyOptimizeLiveIntervals());
258
259 // Prepare store instructions for register stackifying.
260 addPass(createWebAssemblyStoreResults());
261
Dan Gohmane0405332016-10-03 22:43:53 +0000262 // Mark registers as representing wasm's value stack. This is a key
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000263 // code-compression technique in WebAssembly. We run this pass (and
264 // StoreResults above) very late, so that it sees as much code as possible,
265 // including code emitted by PEI and expanded by late tail duplication.
266 addPass(createWebAssemblyRegStackify());
267
268 // Run the register coloring pass to reduce the total number of registers.
269 // This runs after stackification so that it doesn't consider registers
270 // that become stackified.
271 addPass(createWebAssemblyRegColoring());
272 }
273
Dan Gohmand934cb82017-02-24 23:18:00 +0000274 // Eliminate multiple-entry loops. Do this before inserting explicit get_local
275 // and set_local operators because we create a new variable that we want
276 // converted into a local.
277 addPass(createWebAssemblyFixIrreducibleControlFlow());
278
Dan Gohman4fc4e422016-10-24 19:49:43 +0000279 // Insert explicit get_local and set_local operators.
Dan Gohman66caac52016-12-03 23:00:12 +0000280 addPass(createWebAssemblyExplicitLocals());
Dan Gohman4fc4e422016-10-24 19:49:43 +0000281
Dan Gohmanf52ee172017-02-27 22:38:58 +0000282 // Sort the blocks of the CFG into topological order, a prerequisite for
283 // BLOCK and LOOP markers.
284 addPass(createWebAssemblyCFGSort());
285
286 // Insert BLOCK and LOOP markers.
Dan Gohman950a13c2015-09-16 16:51:30 +0000287 addPass(createWebAssemblyCFGStackify());
Dan Gohman5941bde2015-11-25 21:32:06 +0000288
Dan Gohmanf0b165a2015-12-05 03:03:35 +0000289 // Lower br_unless into br_if.
290 addPass(createWebAssemblyLowerBrUnless());
291
Dan Gohman5941bde2015-11-25 21:32:06 +0000292 // Perform the very last peephole optimizations on the code.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000293 if (getOptLevel() != CodeGenOpt::None)
294 addPass(createWebAssemblyPeephole());
Dan Gohmanb7c24002016-05-21 00:21:56 +0000295
296 // Create a mapping from LLVM CodeGen virtual registers to wasm registers.
297 addPass(createWebAssemblyRegNumbering());
Dan Gohman950a13c2015-09-16 16:51:30 +0000298}