blob: 05bd5926ef970e182537718a8f6d7bcfc446168d [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
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000011/// This file defines the WebAssembly-specific subclass of TargetMachine.
Dan Gohman10e730a2015-06-29 23:51:55 +000012///
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"
David Blaikiea373d182018-03-28 17:44:36 +000028#include "llvm/Transforms/Utils.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000029using namespace llvm;
30
31#define DEBUG_TYPE "wasm"
32
Derek Schufff41f67d2016-08-01 21:34:04 +000033// Emscripten's asm.js-style exception handling
Derek Schuffccdceda2016-08-18 15:27:25 +000034static cl::opt<bool> EnableEmException(
Derek Schuff53b9af02016-08-09 00:29:55 +000035 "enable-emscripten-cxx-exceptions",
Derek Schufff41f67d2016-08-01 21:34:04 +000036 cl::desc("WebAssembly Emscripten-style exception handling"),
37 cl::init(false));
38
Derek Schuffccdceda2016-08-18 15:27:25 +000039// Emscripten's asm.js-style setjmp/longjmp handling
40static cl::opt<bool> EnableEmSjLj(
41 "enable-emscripten-sjlj",
42 cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"),
43 cl::init(false));
44
Dan Gohman10e730a2015-06-29 23:51:55 +000045extern "C" void LLVMInitializeWebAssemblyTarget() {
46 // Register the target.
Mehdi Aminif42454b2016-10-09 23:00:34 +000047 RegisterTargetMachine<WebAssemblyTargetMachine> X(
48 getTheWebAssemblyTarget32());
49 RegisterTargetMachine<WebAssemblyTargetMachine> Y(
50 getTheWebAssemblyTarget64());
Derek Schufff41f67d2016-08-01 21:34:04 +000051
Jacob Gravelle40926452018-03-30 20:36:58 +000052 // Register backend passes
53 auto &PR = *PassRegistry::getPassRegistry();
Sam Clegg92617552018-07-11 04:29:36 +000054 initializeWebAssemblyAddMissingPrototypesPass(PR);
Jacob Gravelle40926452018-03-30 20:36:58 +000055 initializeWebAssemblyLowerEmscriptenEHSjLjPass(PR);
56 initializeLowerGlobalDtorsPass(PR);
57 initializeFixFunctionBitcastsPass(PR);
58 initializeOptimizeReturnedPass(PR);
59 initializeWebAssemblyArgumentMovePass(PR);
60 initializeWebAssemblySetP2AlignOperandsPass(PR);
Heejin Ahn78d19102018-08-21 21:23:07 +000061 initializeWebAssemblyEHRestoreStackPointerPass(PR);
Jacob Gravelle40926452018-03-30 20:36:58 +000062 initializeWebAssemblyReplacePhysRegsPass(PR);
63 initializeWebAssemblyPrepareForLiveIntervalsPass(PR);
64 initializeWebAssemblyOptimizeLiveIntervalsPass(PR);
65 initializeWebAssemblyStoreResultsPass(PR);
66 initializeWebAssemblyRegStackifyPass(PR);
67 initializeWebAssemblyRegColoringPass(PR);
68 initializeWebAssemblyExplicitLocalsPass(PR);
69 initializeWebAssemblyFixIrreducibleControlFlowPass(PR);
Heejin Ahn4934f762018-06-25 01:07:11 +000070 initializeWebAssemblyLateEHPreparePass(PR);
Heejin Ahn04c48942018-06-25 01:20:21 +000071 initializeWebAssemblyExceptionInfoPass(PR);
Jacob Gravelle40926452018-03-30 20:36:58 +000072 initializeWebAssemblyCFGSortPass(PR);
73 initializeWebAssemblyCFGStackifyPass(PR);
74 initializeWebAssemblyLowerBrUnlessPass(PR);
75 initializeWebAssemblyRegNumberingPass(PR);
76 initializeWebAssemblyPeepholePass(PR);
77 initializeWebAssemblyCallIndirectFixupPass(PR);
Dan Gohman10e730a2015-06-29 23:51:55 +000078}
79
80//===----------------------------------------------------------------------===//
81// WebAssembly Lowering public interface.
82//===----------------------------------------------------------------------===//
83
Dan Gohman41133a32016-05-19 03:00:05 +000084static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
Sam Clegg74f5fd42018-11-16 18:59:51 +000085 if (!RM.hasValue()) {
86 // Default to static relocation model. This should always be more optimial
87 // than PIC since the static linker can determine all global addresses and
88 // assume direct function calls.
89 return Reloc::Static;
90 }
Dan Gohman41133a32016-05-19 03:00:05 +000091 return *RM;
92}
93
Dan Gohman10e730a2015-06-29 23:51:55 +000094/// Create an WebAssembly architecture model.
95///
96WebAssemblyTargetMachine::WebAssemblyTargetMachine(
97 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
Dan Gohman41133a32016-05-19 03:00:05 +000098 const TargetOptions &Options, Optional<Reloc::Model> RM,
Daniel Jasper314ed202017-08-03 05:15:53 +000099 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT)
Matthias Braunbb8507e2017-10-12 22:57:28 +0000100 : LLVMTargetMachine(T,
101 TT.isArch64Bit() ? "e-m:e-p:64:64-i64:64-n32:64-S128"
102 : "e-m:e-p:32:32-i64:64-n32:64-S128",
103 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
David Greenca29c272018-12-07 12:10:23 +0000104 getEffectiveCodeModel(CM, CodeModel::Large), OL),
Sam Cleggcf2a9e22018-07-16 23:09:29 +0000105 TLOF(new WebAssemblyTargetObjectFile()) {
Dan Gohmane0405332016-10-03 22:43:53 +0000106 // WebAssembly type-checks instructions, but a noreturn function with a return
Derek Schuffffa143c2015-11-10 00:30:57 +0000107 // type that doesn't match the context will cause a check failure. So we lower
108 // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's
Dan Gohmane0405332016-10-03 22:43:53 +0000109 // 'unreachable' instructions which is meant for that case.
Derek Schuffffa143c2015-11-10 00:30:57 +0000110 this->Options.TrapUnreachable = true;
111
Dan Gohmand934cb82017-02-24 23:18:00 +0000112 // WebAssembly treats each function as an independent unit. Force
113 // -ffunction-sections, effectively, so that we can emit them independently.
Sam Cleggcf2a9e22018-07-16 23:09:29 +0000114 this->Options.FunctionSections = true;
115 this->Options.DataSections = true;
116 this->Options.UniqueSectionNames = true;
Dan Gohmand934cb82017-02-24 23:18:00 +0000117
Dan Gohman10e730a2015-06-29 23:51:55 +0000118 initAsmInfo();
119
Dan Gohmand85ab7f2016-02-18 06:32:53 +0000120 // Note that we don't use setRequiresStructuredCFG(true). It disables
121 // optimizations than we're ok with, and want, such as critical edge
122 // splitting and tail merging.
Dan Gohman10e730a2015-06-29 23:51:55 +0000123}
124
125WebAssemblyTargetMachine::~WebAssemblyTargetMachine() {}
126
127const WebAssemblySubtarget *
128WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const {
129 Attribute CPUAttr = F.getFnAttribute("target-cpu");
130 Attribute FSAttr = F.getFnAttribute("target-features");
131
132 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
133 ? CPUAttr.getValueAsString().str()
134 : TargetCPU;
135 std::string FS = !FSAttr.hasAttribute(Attribute::None)
136 ? FSAttr.getValueAsString().str()
137 : TargetFS;
138
139 auto &I = SubtargetMap[CPU + FS];
140 if (!I) {
141 // This needs to be done before we create a new subtarget since any
142 // creation will depend on the TM and the code generation flags on the
143 // function that reside in TargetOptions.
144 resetTargetOptions(F);
Rafael Espindola3adc7ce2015-08-11 18:11:17 +0000145 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
Dan Gohman10e730a2015-06-29 23:51:55 +0000146 }
147 return I.get();
148}
149
150namespace {
Derek Schuff39b53672018-03-20 22:01:32 +0000151class StripThreadLocal final : public ModulePass {
152 // The default thread model for wasm is single, where thread-local variables
153 // are identical to regular globals and should be treated the same. So this
154 // pass just converts all GlobalVariables to NotThreadLocal
155 static char ID;
156
Heejin Ahnf208f632018-09-05 01:27:38 +0000157public:
Derek Schuff39b53672018-03-20 22:01:32 +0000158 StripThreadLocal() : ModulePass(ID) {}
159 bool runOnModule(Module &M) override {
160 for (auto &GV : M.globals())
161 GV.setThreadLocalMode(GlobalValue::ThreadLocalMode::NotThreadLocal);
162 return true;
163 }
164};
165char StripThreadLocal::ID = 0;
166
Dan Gohman10e730a2015-06-29 23:51:55 +0000167/// WebAssembly Code Generator Pass Configuration Options.
168class WebAssemblyPassConfig final : public TargetPassConfig {
169public:
Matthias Braun5e394c32017-05-30 21:36:41 +0000170 WebAssemblyPassConfig(WebAssemblyTargetMachine &TM, PassManagerBase &PM)
Dan Gohman10e730a2015-06-29 23:51:55 +0000171 : TargetPassConfig(TM, PM) {}
172
173 WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
174 return getTM<WebAssemblyTargetMachine>();
175 }
176
177 FunctionPass *createTargetRegisterAllocator(bool) override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000178
179 void addIRPasses() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000180 bool addInstSelector() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000181 void addPostRegAlloc() override;
Derek Schuffad154c82016-03-28 17:05:30 +0000182 bool addGCPasses() override { return false; }
Dan Gohman10e730a2015-06-29 23:51:55 +0000183 void addPreEmitPass() override;
184};
185} // end anonymous namespace
186
Sanjoy Das26d11ca2017-12-22 18:21:59 +0000187TargetTransformInfo
188WebAssemblyTargetMachine::getTargetTransformInfo(const Function &F) {
189 return TargetTransformInfo(WebAssemblyTTIImpl(this, F));
Dan Gohman10e730a2015-06-29 23:51:55 +0000190}
191
192TargetPassConfig *
193WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) {
Matthias Braun5e394c32017-05-30 21:36:41 +0000194 return new WebAssemblyPassConfig(*this, PM);
Dan Gohman10e730a2015-06-29 23:51:55 +0000195}
196
197FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
198 return nullptr; // No reg alloc
199}
200
Dan Gohman10e730a2015-06-29 23:51:55 +0000201//===----------------------------------------------------------------------===//
202// The following functions are called from lib/CodeGen/Passes.cpp to modify
203// the CodeGen pass sequence.
204//===----------------------------------------------------------------------===//
205
206void WebAssemblyPassConfig::addIRPasses() {
Derek Schuff39b53672018-03-20 22:01:32 +0000207 if (TM->Options.ThreadModel == ThreadModel::Single) {
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000208 // In "single" mode, atomics get lowered to non-atomics.
JF Bastien03855df2015-07-01 23:41:25 +0000209 addPass(createLowerAtomicPass());
Derek Schuff39b53672018-03-20 22:01:32 +0000210 addPass(new StripThreadLocal());
211 } else {
JF Bastien03855df2015-07-01 23:41:25 +0000212 // Expand some atomic operations. WebAssemblyTargetLowering has hooks which
213 // control specifically what gets lowered.
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000214 addPass(createAtomicExpandPass());
Derek Schuff39b53672018-03-20 22:01:32 +0000215 }
Dan Gohman10e730a2015-06-29 23:51:55 +0000216
Sam Clegg92617552018-07-11 04:29:36 +0000217 // Add signatures to prototype-less function declarations
218 addPass(createWebAssemblyAddMissingPrototypes());
219
Sam Cleggbafe6902017-12-15 00:17:10 +0000220 // Lower .llvm.global_dtors into .llvm_global_ctors with __cxa_atexit calls.
221 addPass(createWebAssemblyLowerGlobalDtors());
222
Dan Gohman1b637452017-01-07 00:34:54 +0000223 // Fix function bitcasts, as WebAssembly requires caller and callee signatures
224 // to match.
225 addPass(createWebAssemblyFixFunctionBitcasts());
226
Dan Gohman81719f82015-11-25 16:55:01 +0000227 // Optimize "returned" function attributes.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000228 if (getOptLevel() != CodeGenOpt::None)
229 addPass(createWebAssemblyOptimizeReturned());
Dan Gohman81719f82015-11-25 16:55:01 +0000230
Heejin Ahnc0f18172016-09-01 21:05:15 +0000231 // If exception handling is not enabled and setjmp/longjmp handling is
232 // enabled, we lower invokes into calls and delete unreachable landingpad
233 // blocks. Lowering invokes when there is no EH support is done in
234 // TargetPassConfig::addPassesToHandleExceptions, but this runs after this
235 // function and SjLj handling expects all invokes to be lowered before.
Heejin Ahn9386bde2018-02-24 00:40:50 +0000236 if (!EnableEmException &&
237 TM->Options.ExceptionModel == ExceptionHandling::None) {
Heejin Ahnc0f18172016-09-01 21:05:15 +0000238 addPass(createLowerInvokePass());
239 // The lower invoke pass may create unreachable code. Remove it in order not
240 // to process dead blocks in setjmp/longjmp handling.
241 addPass(createUnreachableBlockEliminationPass());
242 }
243
244 // Handle exceptions and setjmp/longjmp if enabled.
Derek Schuffccdceda2016-08-18 15:27:25 +0000245 if (EnableEmException || EnableEmSjLj)
246 addPass(createWebAssemblyLowerEmscriptenEHSjLj(EnableEmException,
247 EnableEmSjLj));
Derek Schufff41f67d2016-08-01 21:34:04 +0000248
Dan Gohman10e730a2015-06-29 23:51:55 +0000249 TargetPassConfig::addIRPasses();
250}
251
Dan Gohman10e730a2015-06-29 23:51:55 +0000252bool WebAssemblyPassConfig::addInstSelector() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000253 (void)TargetPassConfig::addInstSelector();
Dan Gohman10e730a2015-06-29 23:51:55 +0000254 addPass(
255 createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel()));
Dan Gohman1cf96c02015-12-09 16:23:59 +0000256 // Run the argument-move pass immediately after the ScheduleDAG scheduler
257 // so that we can fix up the ARGUMENT instructions before anything else
258 // sees them in the wrong place.
259 addPass(createWebAssemblyArgumentMove());
Dan Gohmanbb372242016-01-26 03:39:31 +0000260 // Set the p2align operands. This information is present during ISel, however
261 // it's inconvenient to collect. Collect it now, and update the immediate
262 // operands.
263 addPass(createWebAssemblySetP2AlignOperands());
Dan Gohman10e730a2015-06-29 23:51:55 +0000264 return false;
265}
266
JF Bastien600aee92015-07-31 17:53:38 +0000267void WebAssemblyPassConfig::addPostRegAlloc() {
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000268 // TODO: The following CodeGen passes don't currently support code containing
269 // virtual registers. Consider removing their restrictions and re-enabling
270 // them.
Derek Schuffad154c82016-03-28 17:05:30 +0000271
Matthias Braun1eb47362016-08-25 01:27:13 +0000272 // These functions all require the NoVRegs property.
JF Bastien600aee92015-07-31 17:53:38 +0000273 disablePass(&MachineCopyPropagationID);
Jun Bum Lim7ab1b322018-04-03 18:17:34 +0000274 disablePass(&PostRAMachineSinkingID);
Derek Schuffecabac62016-03-28 22:52:20 +0000275 disablePass(&PostRASchedulerID);
276 disablePass(&FuncletLayoutID);
277 disablePass(&StackMapLivenessID);
278 disablePass(&LiveDebugValuesID);
Sanjoy Dasfe71ec72016-04-19 06:24:58 +0000279 disablePass(&PatchableFunctionID);
Jun Bum Lim7ab1b322018-04-03 18:17:34 +0000280 disablePass(&ShrinkWrapID);
Dan Gohman950a13c2015-09-16 16:51:30 +0000281
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000282 TargetPassConfig::addPostRegAlloc();
JF Bastien600aee92015-07-31 17:53:38 +0000283}
Dan Gohman10e730a2015-06-29 23:51:55 +0000284
Dan Gohman950a13c2015-09-16 16:51:30 +0000285void WebAssemblyPassConfig::addPreEmitPass() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000286 TargetPassConfig::addPreEmitPass();
Dan Gohman05ac43f2015-12-17 01:39:00 +0000287
Heejin Ahn78d19102018-08-21 21:23:07 +0000288 // Restore __stack_pointer global after an exception is thrown.
289 addPass(createWebAssemblyEHRestoreStackPointer());
290
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000291 // Now that we have a prologue and epilogue and all frame indices are
292 // rewritten, eliminate SP and FP. This allows them to be stackified,
293 // colored, and numbered with the rest of the registers.
294 addPass(createWebAssemblyReplacePhysRegs());
295
Derek Schuff6f697832016-10-21 16:38:07 +0000296 // Rewrite pseudo call_indirect instructions as real instructions.
297 // This needs to run before register stackification, because we change the
298 // order of the arguments.
299 addPass(createWebAssemblyCallIndirectFixup());
300
Heejin Ahne95056d2019-01-08 01:25:12 +0000301 // Eliminate multiple-entry loops.
302 addPass(createWebAssemblyFixIrreducibleControlFlow());
303
304 // Do various transformations for exception handling.
305 addPass(createWebAssemblyLateEHPrepare());
306
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000307 if (getOptLevel() != CodeGenOpt::None) {
308 // LiveIntervals isn't commonly run this late. Re-establish preconditions.
309 addPass(createWebAssemblyPrepareForLiveIntervals());
310
311 // Depend on LiveIntervals and perform some optimizations on it.
312 addPass(createWebAssemblyOptimizeLiveIntervals());
313
314 // Prepare store instructions for register stackifying.
315 addPass(createWebAssemblyStoreResults());
316
Dan Gohmane0405332016-10-03 22:43:53 +0000317 // Mark registers as representing wasm's value stack. This is a key
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000318 // code-compression technique in WebAssembly. We run this pass (and
319 // StoreResults above) very late, so that it sees as much code as possible,
320 // including code emitted by PEI and expanded by late tail duplication.
321 addPass(createWebAssemblyRegStackify());
322
323 // Run the register coloring pass to reduce the total number of registers.
324 // This runs after stackification so that it doesn't consider registers
325 // that become stackified.
326 addPass(createWebAssemblyRegColoring());
327 }
328
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000329 // Insert explicit get_local and set_local operators.
330 addPass(createWebAssemblyExplicitLocals());
331
Dan Gohmanf52ee172017-02-27 22:38:58 +0000332 // Sort the blocks of the CFG into topological order, a prerequisite for
333 // BLOCK and LOOP markers.
334 addPass(createWebAssemblyCFGSort());
335
336 // Insert BLOCK and LOOP markers.
Dan Gohman950a13c2015-09-16 16:51:30 +0000337 addPass(createWebAssemblyCFGStackify());
Dan Gohman5941bde2015-11-25 21:32:06 +0000338
Dan Gohmanf0b165a2015-12-05 03:03:35 +0000339 // Lower br_unless into br_if.
340 addPass(createWebAssemblyLowerBrUnless());
341
Dan Gohman5941bde2015-11-25 21:32:06 +0000342 // Perform the very last peephole optimizations on the code.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000343 if (getOptLevel() != CodeGenOpt::None)
344 addPass(createWebAssemblyPeephole());
Dan Gohmanb7c24002016-05-21 00:21:56 +0000345
346 // Create a mapping from LLVM CodeGen virtual registers to wasm registers.
347 addPass(createWebAssemblyRegNumbering());
Dan Gohman950a13c2015-09-16 16:51:30 +0000348}