blob: e62a07dbb9d666a432e9b270455dba9ece8f2853 [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"
18#include "WebAssemblyTargetObjectFile.h"
19#include "WebAssemblyTargetTransformInfo.h"
20#include "llvm/CodeGen/MachineFunctionPass.h"
21#include "llvm/CodeGen/Passes.h"
22#include "llvm/CodeGen/RegAllocRegistry.h"
Dan Gohman53828fd2015-11-23 16:50:18 +000023#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000024#include "llvm/IR/Function.h"
25#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/TargetRegistry.h"
27#include "llvm/Target/TargetOptions.h"
JF Bastien03855df2015-07-01 23:41:25 +000028#include "llvm/Transforms/Scalar.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000029using namespace llvm;
30
31#define DEBUG_TYPE "wasm"
32
33extern "C" void LLVMInitializeWebAssemblyTarget() {
34 // Register the target.
Dan Gohmand82494b2015-07-01 21:42:34 +000035 RegisterTargetMachine<WebAssemblyTargetMachine> X(TheWebAssemblyTarget32);
36 RegisterTargetMachine<WebAssemblyTargetMachine> Y(TheWebAssemblyTarget64);
Dan Gohman10e730a2015-06-29 23:51:55 +000037}
38
39//===----------------------------------------------------------------------===//
40// WebAssembly Lowering public interface.
41//===----------------------------------------------------------------------===//
42
43/// Create an WebAssembly architecture model.
44///
45WebAssemblyTargetMachine::WebAssemblyTargetMachine(
46 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
47 const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM,
48 CodeGenOpt::Level OL)
Dan Gohman7a6b9822015-11-29 22:32:02 +000049 : LLVMTargetMachine(T, TT.isArch64Bit() ? "e-p:64:64-i64:64-n32:64-S128"
50 : "e-p:32:32-i64:64-n32:64-S128",
Dan Gohman10e730a2015-06-29 23:51:55 +000051 TT, CPU, FS, Options, RM, CM, OL),
52 TLOF(make_unique<WebAssemblyTargetObjectFile>()) {
Derek Schuffffa143c2015-11-10 00:30:57 +000053 // WebAssembly type-checks expressions, but a noreturn function with a return
54 // type that doesn't match the context will cause a check failure. So we lower
55 // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's
56 // 'unreachable' expression which is meant for that case.
57 this->Options.TrapUnreachable = true;
58
Dan Gohman10e730a2015-06-29 23:51:55 +000059 initAsmInfo();
60
61 // We need a reducible CFG, so disable some optimizations which tend to
62 // introduce irreducibility.
63 setRequiresStructuredCFG(true);
64}
65
66WebAssemblyTargetMachine::~WebAssemblyTargetMachine() {}
67
68const WebAssemblySubtarget *
69WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const {
70 Attribute CPUAttr = F.getFnAttribute("target-cpu");
71 Attribute FSAttr = F.getFnAttribute("target-features");
72
73 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
74 ? CPUAttr.getValueAsString().str()
75 : TargetCPU;
76 std::string FS = !FSAttr.hasAttribute(Attribute::None)
77 ? FSAttr.getValueAsString().str()
78 : TargetFS;
79
80 auto &I = SubtargetMap[CPU + FS];
81 if (!I) {
82 // This needs to be done before we create a new subtarget since any
83 // creation will depend on the TM and the code generation flags on the
84 // function that reside in TargetOptions.
85 resetTargetOptions(F);
Rafael Espindola3adc7ce2015-08-11 18:11:17 +000086 I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
Dan Gohman10e730a2015-06-29 23:51:55 +000087 }
88 return I.get();
89}
90
91namespace {
92/// WebAssembly Code Generator Pass Configuration Options.
93class WebAssemblyPassConfig final : public TargetPassConfig {
94public:
95 WebAssemblyPassConfig(WebAssemblyTargetMachine *TM, PassManagerBase &PM)
96 : TargetPassConfig(TM, PM) {}
97
98 WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const {
99 return getTM<WebAssemblyTargetMachine>();
100 }
101
102 FunctionPass *createTargetRegisterAllocator(bool) override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000103
104 void addIRPasses() override;
105 bool addPreISel() override;
106 bool addInstSelector() override;
107 bool addILPOpts() override;
108 void addPreRegAlloc() override;
Dan Gohman10e730a2015-06-29 23:51:55 +0000109 void addPostRegAlloc() override;
110 void addPreSched2() override;
111 void addPreEmitPass() override;
112};
113} // end anonymous namespace
114
115TargetIRAnalysis WebAssemblyTargetMachine::getTargetIRAnalysis() {
Hans Wennborg9099b5e62015-09-16 23:59:57 +0000116 return TargetIRAnalysis([this](const Function &F) {
Dan Gohman10e730a2015-06-29 23:51:55 +0000117 return TargetTransformInfo(WebAssemblyTTIImpl(this, F));
118 });
119}
120
121TargetPassConfig *
122WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) {
123 return new WebAssemblyPassConfig(this, PM);
124}
125
126FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) {
127 return nullptr; // No reg alloc
128}
129
Dan Gohman10e730a2015-06-29 23:51:55 +0000130//===----------------------------------------------------------------------===//
131// The following functions are called from lib/CodeGen/Passes.cpp to modify
132// the CodeGen pass sequence.
133//===----------------------------------------------------------------------===//
134
135void WebAssemblyPassConfig::addIRPasses() {
JF Bastien03855df2015-07-01 23:41:25 +0000136 if (TM->Options.ThreadModel == ThreadModel::Single)
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000137 // In "single" mode, atomics get lowered to non-atomics.
JF Bastien03855df2015-07-01 23:41:25 +0000138 addPass(createLowerAtomicPass());
139 else
140 // Expand some atomic operations. WebAssemblyTargetLowering has hooks which
141 // control specifically what gets lowered.
142 addPass(createAtomicExpandPass(TM));
Dan Gohman10e730a2015-06-29 23:51:55 +0000143
Dan Gohman81719f82015-11-25 16:55:01 +0000144 // Optimize "returned" function attributes.
145 addPass(createWebAssemblyOptimizeReturned());
146
Dan Gohman10e730a2015-06-29 23:51:55 +0000147 TargetPassConfig::addIRPasses();
148}
149
150bool WebAssemblyPassConfig::addPreISel() { return false; }
151
152bool WebAssemblyPassConfig::addInstSelector() {
153 addPass(
154 createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel()));
155 return false;
156}
157
158bool WebAssemblyPassConfig::addILPOpts() { return true; }
159
Dan Gohman4ba48162015-11-18 16:12:01 +0000160void WebAssemblyPassConfig::addPreRegAlloc() {
Dan Gohman81719f82015-11-25 16:55:01 +0000161 // Prepare store instructions for register stackifying.
162 addPass(createWebAssemblyStoreResults());
163
Dan Gohman4ba48162015-11-18 16:12:01 +0000164 // Mark registers as representing wasm's expression stack.
165 addPass(createWebAssemblyRegStackify());
166}
Dan Gohman10e730a2015-06-29 23:51:55 +0000167
JF Bastien600aee92015-07-31 17:53:38 +0000168void WebAssemblyPassConfig::addPostRegAlloc() {
Dan Gohman9c54d3b2015-11-25 18:13:18 +0000169 // TODO: The following CodeGen passes don't currently support code containing
170 // virtual registers. Consider removing their restrictions and re-enabling
171 // them.
JF Bastien600aee92015-07-31 17:53:38 +0000172 //
173 // Fails with: Regalloc must assign all vregs.
174 disablePass(&PrologEpilogCodeInserterID);
175 // Fails with: should be run after register allocation.
176 disablePass(&MachineCopyPropagationID);
Dan Gohman950a13c2015-09-16 16:51:30 +0000177
178 // TODO: Until we get ReverseBranchCondition support, MachineBlockPlacement
179 // can create ugly-looking control flow.
180 disablePass(&MachineBlockPlacementID);
Dan Gohman4ba48162015-11-18 16:12:01 +0000181
182 // Run the register coloring pass to reduce the total number of registers.
183 addPass(createWebAssemblyRegColoring());
JF Bastien600aee92015-07-31 17:53:38 +0000184}
Dan Gohman10e730a2015-06-29 23:51:55 +0000185
186void WebAssemblyPassConfig::addPreSched2() {}
187
Dan Gohman950a13c2015-09-16 16:51:30 +0000188void WebAssemblyPassConfig::addPreEmitPass() {
Dan Gohman5941bde2015-11-25 21:32:06 +0000189 // Put the CFG in structured form; insert BLOCK and LOOP markers.
Dan Gohman950a13c2015-09-16 16:51:30 +0000190 addPass(createWebAssemblyCFGStackify());
Dan Gohman5941bde2015-11-25 21:32:06 +0000191
192 // Create a mapping from LLVM CodeGen virtual registers to wasm registers.
Dan Gohmancf4748f2015-11-12 17:04:33 +0000193 addPass(createWebAssemblyRegNumbering());
Dan Gohman5941bde2015-11-25 21:32:06 +0000194
195 // Perform the very last peephole optimizations on the code.
Dan Gohman81719f82015-11-25 16:55:01 +0000196 addPass(createWebAssemblyPeephole());
Dan Gohman950a13c2015-09-16 16:51:30 +0000197}