blob: 1d21f2b33fd99ff94bcd0c146a58f6fd10ede41f [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
15#include "WebAssembly.h"
16#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
17#include "WebAssemblyTargetMachine.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.
Dan Gohmand82494b2015-07-01 21:42:34 +000046 RegisterTargetMachine<WebAssemblyTargetMachine> X(TheWebAssemblyTarget32);
47 RegisterTargetMachine<WebAssemblyTargetMachine> Y(TheWebAssemblyTarget64);
Derek Schufff41f67d2016-08-01 21:34:04 +000048
49 // Register exception handling pass to opt
Derek Schuffccdceda2016-08-18 15:27:25 +000050 initializeWebAssemblyLowerEmscriptenEHSjLjPass(
Derek Schufff41f67d2016-08-01 21:34:04 +000051 *PassRegistry::getPassRegistry());
Dan Gohman10e730a2015-06-29 23:51:55 +000052}
53
54//===----------------------------------------------------------------------===//
55// WebAssembly Lowering public interface.
56//===----------------------------------------------------------------------===//
57
Dan Gohman41133a32016-05-19 03:00:05 +000058static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) {
59 if (!RM.hasValue())
60 return Reloc::PIC_;
61 return *RM;
62}
63
Dan Gohman10e730a2015-06-29 23:51:55 +000064/// Create an WebAssembly architecture model.
65///
66WebAssemblyTargetMachine::WebAssemblyTargetMachine(
67 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
Dan Gohman41133a32016-05-19 03:00:05 +000068 const TargetOptions &Options, Optional<Reloc::Model> RM,
69 CodeModel::Model CM, CodeGenOpt::Level OL)
Dan Gohman0c6f5ac2016-01-07 03:19:23 +000070 : LLVMTargetMachine(T,
71 TT.isArch64Bit() ? "e-m:e-p:64:64-i64:64-n32:64-S128"
72 : "e-m:e-p:32:32-i64:64-n32:64-S128",
Dan Gohman41133a32016-05-19 03:00:05 +000073 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
74 CM, OL),
Dan Gohman5bf22fc2015-12-17 04:55:44 +000075 TLOF(make_unique<WebAssemblyTargetObjectFile>()) {
Derek Schuffffa143c2015-11-10 00:30:57 +000076 // WebAssembly type-checks expressions, but a noreturn function with a return
77 // type that doesn't match the context will cause a check failure. So we lower
78 // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's
79 // 'unreachable' expression which is meant for that case.
80 this->Options.TrapUnreachable = true;
81
Dan Gohman10e730a2015-06-29 23:51:55 +000082 initAsmInfo();
83
Dan Gohmand85ab7f2016-02-18 06:32:53 +000084 // Note that we don't use setRequiresStructuredCFG(true). It disables
85 // optimizations than we're ok with, and want, such as critical edge
86 // splitting and tail merging.
Dan Gohman10e730a2015-06-29 23:51:55 +000087}
88
89WebAssemblyTargetMachine::~WebAssemblyTargetMachine() {}
90
91const WebAssemblySubtarget *
92WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const {
93 Attribute CPUAttr = F.getFnAttribute("target-cpu");
94 Attribute FSAttr = F.getFnAttribute("target-features");
95
96 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
97 ? CPUAttr.getValueAsString().str()
98 : TargetCPU;
99 std::string FS = !FSAttr.hasAttribute(Attribute::None)
100 ? FSAttr.getValueAsString().str()
101 : TargetFS;
102
103 auto &I = SubtargetMap[CPU + FS];
104 if (!I) {
105 // This needs to be done before we create a new subtarget since any
106 // creation will depend on the TM and the code generation flags on the
107 // function that reside in TargetOptions.
108 resetTargetOptions(F);
Rafael Espindola3adc7ce2015-08-11 18:11:17 +0000109 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
Dan Gohman10e730a2015-06-29 23:51:55 +0000110 }
111 return I.get();
112}
113
114namespace {
115/// WebAssembly Code Generator Pass Configuration Options.
116class WebAssemblyPassConfig final : public TargetPassConfig {
117public:
118 WebAssemblyPassConfig(WebAssemblyTargetMachine *TM, PassManagerBase &PM)
119 : TargetPassConfig(TM, PM) {}
120
121 WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
122 return getTM<WebAssemblyTargetMachine>();
123 }
124
125 FunctionPass *createTargetRegisterAllocator(bool) override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000126
127 void addIRPasses() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000128 bool addInstSelector() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000129 void addPostRegAlloc() override;
Derek Schuffad154c82016-03-28 17:05:30 +0000130 bool addGCPasses() override { return false; }
Dan Gohman10e730a2015-06-29 23:51:55 +0000131 void addPreEmitPass() override;
132};
133} // end anonymous namespace
134
135TargetIRAnalysis WebAssemblyTargetMachine::getTargetIRAnalysis() {
Hans Wennborg9099b5e62015-09-16 23:59:57 +0000136 return TargetIRAnalysis([this](const Function &F) {
Dan Gohman10e730a2015-06-29 23:51:55 +0000137 return TargetTransformInfo(WebAssemblyTTIImpl(this, F));
138 });
139}
140
141TargetPassConfig *
142WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) {
143 return new WebAssemblyPassConfig(this, PM);
144}
145
146FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
147 return nullptr; // No reg alloc
148}
149
Dan Gohman10e730a2015-06-29 23:51:55 +0000150//===----------------------------------------------------------------------===//
151// The following functions are called from lib/CodeGen/Passes.cpp to modify
152// the CodeGen pass sequence.
153//===----------------------------------------------------------------------===//
154
155void WebAssemblyPassConfig::addIRPasses() {
JF Bastien03855df2015-07-01 23:41:25 +0000156 if (TM->Options.ThreadModel == ThreadModel::Single)
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000157 // In "single" mode, atomics get lowered to non-atomics.
JF Bastien03855df2015-07-01 23:41:25 +0000158 addPass(createLowerAtomicPass());
159 else
160 // Expand some atomic operations. WebAssemblyTargetLowering has hooks which
161 // control specifically what gets lowered.
162 addPass(createAtomicExpandPass(TM));
Dan Gohman10e730a2015-06-29 23:51:55 +0000163
Dan Gohman81719f82015-11-25 16:55:01 +0000164 // Optimize "returned" function attributes.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000165 if (getOptLevel() != CodeGenOpt::None)
166 addPass(createWebAssemblyOptimizeReturned());
Dan Gohman81719f82015-11-25 16:55:01 +0000167
Derek Schufff41f67d2016-08-01 21:34:04 +0000168 // Handle exceptions.
Derek Schuffccdceda2016-08-18 15:27:25 +0000169 if (EnableEmException || EnableEmSjLj)
170 addPass(createWebAssemblyLowerEmscriptenEHSjLj(EnableEmException,
171 EnableEmSjLj));
Derek Schufff41f67d2016-08-01 21:34:04 +0000172
Dan Gohman10e730a2015-06-29 23:51:55 +0000173 TargetPassConfig::addIRPasses();
174}
175
Dan Gohman10e730a2015-06-29 23:51:55 +0000176bool WebAssemblyPassConfig::addInstSelector() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000177 (void)TargetPassConfig::addInstSelector();
Dan Gohman10e730a2015-06-29 23:51:55 +0000178 addPass(
179 createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel()));
Dan Gohman1cf96c02015-12-09 16:23:59 +0000180 // Run the argument-move pass immediately after the ScheduleDAG scheduler
181 // so that we can fix up the ARGUMENT instructions before anything else
182 // sees them in the wrong place.
183 addPass(createWebAssemblyArgumentMove());
Dan Gohmanbb372242016-01-26 03:39:31 +0000184 // Set the p2align operands. This information is present during ISel, however
185 // it's inconvenient to collect. Collect it now, and update the immediate
186 // operands.
187 addPass(createWebAssemblySetP2AlignOperands());
Dan Gohman10e730a2015-06-29 23:51:55 +0000188 return false;
189}
190
JF Bastien600aee92015-07-31 17:53:38 +0000191void WebAssemblyPassConfig::addPostRegAlloc() {
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000192 // TODO: The following CodeGen passes don't currently support code containing
193 // virtual registers. Consider removing their restrictions and re-enabling
194 // them.
Derek Schuffad154c82016-03-28 17:05:30 +0000195
196 // Has no asserts of its own, but was not written to handle virtual regs.
197 disablePass(&ShrinkWrapID);
Derek Schuffecabac62016-03-28 22:52:20 +0000198
199 // These functions all require the AllVRegsAllocated property.
JF Bastien600aee92015-07-31 17:53:38 +0000200 disablePass(&MachineCopyPropagationID);
Derek Schuffecabac62016-03-28 22:52:20 +0000201 disablePass(&PostRASchedulerID);
202 disablePass(&FuncletLayoutID);
203 disablePass(&StackMapLivenessID);
204 disablePass(&LiveDebugValuesID);
Sanjoy Dasfe71ec72016-04-19 06:24:58 +0000205 disablePass(&PatchableFunctionID);
Dan Gohman950a13c2015-09-16 16:51:30 +0000206
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000207 TargetPassConfig::addPostRegAlloc();
JF Bastien600aee92015-07-31 17:53:38 +0000208}
Dan Gohman10e730a2015-06-29 23:51:55 +0000209
Dan Gohman950a13c2015-09-16 16:51:30 +0000210void WebAssemblyPassConfig::addPreEmitPass() {
Dan Gohmanb0921ca2015-12-05 19:24:17 +0000211 TargetPassConfig::addPreEmitPass();
Dan Gohman05ac43f2015-12-17 01:39:00 +0000212
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000213 // Now that we have a prologue and epilogue and all frame indices are
214 // rewritten, eliminate SP and FP. This allows them to be stackified,
215 // colored, and numbered with the rest of the registers.
216 addPass(createWebAssemblyReplacePhysRegs());
217
218 if (getOptLevel() != CodeGenOpt::None) {
219 // LiveIntervals isn't commonly run this late. Re-establish preconditions.
220 addPass(createWebAssemblyPrepareForLiveIntervals());
221
222 // Depend on LiveIntervals and perform some optimizations on it.
223 addPass(createWebAssemblyOptimizeLiveIntervals());
224
225 // Prepare store instructions for register stackifying.
226 addPass(createWebAssemblyStoreResults());
227
228 // Mark registers as representing wasm's expression stack. This is a key
229 // code-compression technique in WebAssembly. We run this pass (and
230 // StoreResults above) very late, so that it sees as much code as possible,
231 // including code emitted by PEI and expanded by late tail duplication.
232 addPass(createWebAssemblyRegStackify());
233
234 // Run the register coloring pass to reduce the total number of registers.
235 // This runs after stackification so that it doesn't consider registers
236 // that become stackified.
237 addPass(createWebAssemblyRegColoring());
238 }
239
Dan Gohmand7a2eea2016-03-09 02:01:14 +0000240 // Eliminate multiple-entry loops.
241 addPass(createWebAssemblyFixIrreducibleControlFlow());
242
Dan Gohman5941bde2015-11-25 21:32:06 +0000243 // Put the CFG in structured form; insert BLOCK and LOOP markers.
Dan Gohman950a13c2015-09-16 16:51:30 +0000244 addPass(createWebAssemblyCFGStackify());
Dan Gohman5941bde2015-11-25 21:32:06 +0000245
Dan Gohmanf0b165a2015-12-05 03:03:35 +0000246 // Lower br_unless into br_if.
247 addPass(createWebAssemblyLowerBrUnless());
248
Dan Gohman5941bde2015-11-25 21:32:06 +0000249 // Perform the very last peephole optimizations on the code.
Dan Gohmanb13c91f2016-01-19 14:55:02 +0000250 if (getOptLevel() != CodeGenOpt::None)
251 addPass(createWebAssemblyPeephole());
Dan Gohmanb7c24002016-05-21 00:21:56 +0000252
253 // Create a mapping from LLVM CodeGen virtual registers to wasm registers.
254 addPass(createWebAssemblyRegNumbering());
Dan Gohman950a13c2015-09-16 16:51:30 +0000255}