Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 1 | //===- WebAssemblyTargetMachine.cpp - Define TargetMachine for WebAssembly -==// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// This file defines the WebAssembly-specific subclass of TargetMachine. |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 11 | /// |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 14 | #include "WebAssemblyTargetMachine.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 15 | #include "MCTargetDesc/WebAssemblyMCTargetDesc.h" |
| 16 | #include "WebAssembly.h" |
Heejin Ahn | 52221d5 | 2019-03-26 17:35:35 +0000 | [diff] [blame] | 17 | #include "WebAssemblyMachineFunctionInfo.h" |
Dan Gohman | 5bf22fc | 2015-12-17 04:55:44 +0000 | [diff] [blame] | 18 | #include "WebAssemblyTargetObjectFile.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 19 | #include "WebAssemblyTargetTransformInfo.h" |
Heejin Ahn | 52221d5 | 2019-03-26 17:35:35 +0000 | [diff] [blame] | 20 | #include "llvm/CodeGen/MIRParser/MIParser.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 21 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 22 | #include "llvm/CodeGen/Passes.h" |
| 23 | #include "llvm/CodeGen/RegAllocRegistry.h" |
Matthias Braun | 31d19d4 | 2016-05-10 03:21:59 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/TargetPassConfig.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Function.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 26 | #include "llvm/Support/TargetRegistry.h" |
| 27 | #include "llvm/Target/TargetOptions.h" |
JF Bastien | 03855df | 2015-07-01 23:41:25 +0000 | [diff] [blame] | 28 | #include "llvm/Transforms/Scalar.h" |
David Blaikie | a373d18 | 2018-03-28 17:44:36 +0000 | [diff] [blame] | 29 | #include "llvm/Transforms/Utils.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 30 | using namespace llvm; |
| 31 | |
| 32 | #define DEBUG_TYPE "wasm" |
| 33 | |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 34 | // Emscripten's asm.js-style exception handling |
Derek Schuff | ccdceda | 2016-08-18 15:27:25 +0000 | [diff] [blame] | 35 | static cl::opt<bool> EnableEmException( |
Derek Schuff | 53b9af0 | 2016-08-09 00:29:55 +0000 | [diff] [blame] | 36 | "enable-emscripten-cxx-exceptions", |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 37 | cl::desc("WebAssembly Emscripten-style exception handling"), |
| 38 | cl::init(false)); |
| 39 | |
Derek Schuff | ccdceda | 2016-08-18 15:27:25 +0000 | [diff] [blame] | 40 | // Emscripten's asm.js-style setjmp/longjmp handling |
| 41 | static cl::opt<bool> EnableEmSjLj( |
| 42 | "enable-emscripten-sjlj", |
| 43 | cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"), |
| 44 | cl::init(false)); |
| 45 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 46 | extern "C" void LLVMInitializeWebAssemblyTarget() { |
| 47 | // Register the target. |
Mehdi Amini | f42454b | 2016-10-09 23:00:34 +0000 | [diff] [blame] | 48 | RegisterTargetMachine<WebAssemblyTargetMachine> X( |
| 49 | getTheWebAssemblyTarget32()); |
| 50 | RegisterTargetMachine<WebAssemblyTargetMachine> Y( |
| 51 | getTheWebAssemblyTarget64()); |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 52 | |
Jacob Gravelle | 4092645 | 2018-03-30 20:36:58 +0000 | [diff] [blame] | 53 | // Register backend passes |
| 54 | auto &PR = *PassRegistry::getPassRegistry(); |
Sam Clegg | 9261755 | 2018-07-11 04:29:36 +0000 | [diff] [blame] | 55 | initializeWebAssemblyAddMissingPrototypesPass(PR); |
Jacob Gravelle | 4092645 | 2018-03-30 20:36:58 +0000 | [diff] [blame] | 56 | initializeWebAssemblyLowerEmscriptenEHSjLjPass(PR); |
| 57 | initializeLowerGlobalDtorsPass(PR); |
| 58 | initializeFixFunctionBitcastsPass(PR); |
| 59 | initializeOptimizeReturnedPass(PR); |
| 60 | initializeWebAssemblyArgumentMovePass(PR); |
| 61 | initializeWebAssemblySetP2AlignOperandsPass(PR); |
| 62 | initializeWebAssemblyReplacePhysRegsPass(PR); |
| 63 | initializeWebAssemblyPrepareForLiveIntervalsPass(PR); |
| 64 | initializeWebAssemblyOptimizeLiveIntervalsPass(PR); |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 65 | initializeWebAssemblyMemIntrinsicResultsPass(PR); |
Jacob Gravelle | 4092645 | 2018-03-30 20:36:58 +0000 | [diff] [blame] | 66 | initializeWebAssemblyRegStackifyPass(PR); |
| 67 | initializeWebAssemblyRegColoringPass(PR); |
| 68 | initializeWebAssemblyExplicitLocalsPass(PR); |
| 69 | initializeWebAssemblyFixIrreducibleControlFlowPass(PR); |
Heejin Ahn | 4934f76 | 2018-06-25 01:07:11 +0000 | [diff] [blame] | 70 | initializeWebAssemblyLateEHPreparePass(PR); |
Heejin Ahn | 04c4894 | 2018-06-25 01:20:21 +0000 | [diff] [blame] | 71 | initializeWebAssemblyExceptionInfoPass(PR); |
Jacob Gravelle | 4092645 | 2018-03-30 20:36:58 +0000 | [diff] [blame] | 72 | initializeWebAssemblyCFGSortPass(PR); |
| 73 | initializeWebAssemblyCFGStackifyPass(PR); |
| 74 | initializeWebAssemblyLowerBrUnlessPass(PR); |
| 75 | initializeWebAssemblyRegNumberingPass(PR); |
| 76 | initializeWebAssemblyPeepholePass(PR); |
| 77 | initializeWebAssemblyCallIndirectFixupPass(PR); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | //===----------------------------------------------------------------------===// |
| 81 | // WebAssembly Lowering public interface. |
| 82 | //===----------------------------------------------------------------------===// |
| 83 | |
Dan Gohman | 41133a3 | 2016-05-19 03:00:05 +0000 | [diff] [blame] | 84 | static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) { |
Sam Clegg | 74f5fd4 | 2018-11-16 18:59:51 +0000 | [diff] [blame] | 85 | 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 Gohman | 41133a3 | 2016-05-19 03:00:05 +0000 | [diff] [blame] | 91 | return *RM; |
| 92 | } |
| 93 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 94 | /// Create an WebAssembly architecture model. |
| 95 | /// |
| 96 | WebAssemblyTargetMachine::WebAssemblyTargetMachine( |
| 97 | const Target &T, const Triple &TT, StringRef CPU, StringRef FS, |
Dan Gohman | 41133a3 | 2016-05-19 03:00:05 +0000 | [diff] [blame] | 98 | const TargetOptions &Options, Optional<Reloc::Model> RM, |
Daniel Jasper | 314ed20 | 2017-08-03 05:15:53 +0000 | [diff] [blame] | 99 | Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) |
Matthias Braun | bb8507e | 2017-10-12 22:57:28 +0000 | [diff] [blame] | 100 | : 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 Green | ca29c27 | 2018-12-07 12:10:23 +0000 | [diff] [blame] | 104 | getEffectiveCodeModel(CM, CodeModel::Large), OL), |
Sam Clegg | cf2a9e2 | 2018-07-16 23:09:29 +0000 | [diff] [blame] | 105 | TLOF(new WebAssemblyTargetObjectFile()) { |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 106 | // WebAssembly type-checks instructions, but a noreturn function with a return |
Derek Schuff | ffa143c | 2015-11-10 00:30:57 +0000 | [diff] [blame] | 107 | // 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 Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 109 | // 'unreachable' instructions which is meant for that case. |
Derek Schuff | ffa143c | 2015-11-10 00:30:57 +0000 | [diff] [blame] | 110 | this->Options.TrapUnreachable = true; |
| 111 | |
Dan Gohman | d934cb8 | 2017-02-24 23:18:00 +0000 | [diff] [blame] | 112 | // WebAssembly treats each function as an independent unit. Force |
| 113 | // -ffunction-sections, effectively, so that we can emit them independently. |
Sam Clegg | cf2a9e2 | 2018-07-16 23:09:29 +0000 | [diff] [blame] | 114 | this->Options.FunctionSections = true; |
| 115 | this->Options.DataSections = true; |
| 116 | this->Options.UniqueSectionNames = true; |
Dan Gohman | d934cb8 | 2017-02-24 23:18:00 +0000 | [diff] [blame] | 117 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 118 | initAsmInfo(); |
| 119 | |
Thomas Lively | f3b4f99 | 2019-02-28 18:39:08 +0000 | [diff] [blame] | 120 | // Create a subtarget using the unmodified target machine features to |
| 121 | // initialize the used feature set with explicitly enabled features. |
| 122 | getSubtargetImpl(getTargetCPU(), getTargetFeatureString()); |
| 123 | |
Dan Gohman | d85ab7f | 2016-02-18 06:32:53 +0000 | [diff] [blame] | 124 | // Note that we don't use setRequiresStructuredCFG(true). It disables |
| 125 | // optimizations than we're ok with, and want, such as critical edge |
| 126 | // splitting and tail merging. |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 129 | WebAssemblyTargetMachine::~WebAssemblyTargetMachine() = default; // anchor. |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 130 | |
| 131 | const WebAssemblySubtarget * |
Thomas Lively | f3b4f99 | 2019-02-28 18:39:08 +0000 | [diff] [blame] | 132 | WebAssemblyTargetMachine::getSubtargetImpl(std::string CPU, |
| 133 | std::string FS) const { |
| 134 | auto &I = SubtargetMap[CPU + FS]; |
| 135 | if (!I) { |
| 136 | I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this); |
| 137 | UsedFeatures |= I->getFeatureBits(); |
| 138 | } |
| 139 | return I.get(); |
| 140 | } |
| 141 | |
| 142 | const WebAssemblySubtarget * |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 143 | WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const { |
| 144 | Attribute CPUAttr = F.getFnAttribute("target-cpu"); |
| 145 | Attribute FSAttr = F.getFnAttribute("target-features"); |
| 146 | |
| 147 | std::string CPU = !CPUAttr.hasAttribute(Attribute::None) |
| 148 | ? CPUAttr.getValueAsString().str() |
| 149 | : TargetCPU; |
| 150 | std::string FS = !FSAttr.hasAttribute(Attribute::None) |
| 151 | ? FSAttr.getValueAsString().str() |
| 152 | : TargetFS; |
| 153 | |
Thomas Lively | f3b4f99 | 2019-02-28 18:39:08 +0000 | [diff] [blame] | 154 | // This needs to be done before we create a new subtarget since any |
| 155 | // creation will depend on the TM and the code generation flags on the |
| 156 | // function that reside in TargetOptions. |
| 157 | resetTargetOptions(F); |
| 158 | |
| 159 | return getSubtargetImpl(CPU, FS); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | namespace { |
Derek Schuff | 39b5367 | 2018-03-20 22:01:32 +0000 | [diff] [blame] | 163 | class StripThreadLocal final : public ModulePass { |
| 164 | // The default thread model for wasm is single, where thread-local variables |
| 165 | // are identical to regular globals and should be treated the same. So this |
| 166 | // pass just converts all GlobalVariables to NotThreadLocal |
| 167 | static char ID; |
| 168 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 169 | public: |
Derek Schuff | 39b5367 | 2018-03-20 22:01:32 +0000 | [diff] [blame] | 170 | StripThreadLocal() : ModulePass(ID) {} |
| 171 | bool runOnModule(Module &M) override { |
| 172 | for (auto &GV : M.globals()) |
| 173 | GV.setThreadLocalMode(GlobalValue::ThreadLocalMode::NotThreadLocal); |
| 174 | return true; |
| 175 | } |
| 176 | }; |
| 177 | char StripThreadLocal::ID = 0; |
| 178 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 179 | /// WebAssembly Code Generator Pass Configuration Options. |
| 180 | class WebAssemblyPassConfig final : public TargetPassConfig { |
| 181 | public: |
Matthias Braun | 5e394c3 | 2017-05-30 21:36:41 +0000 | [diff] [blame] | 182 | WebAssemblyPassConfig(WebAssemblyTargetMachine &TM, PassManagerBase &PM) |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 183 | : TargetPassConfig(TM, PM) {} |
| 184 | |
| 185 | WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const { |
| 186 | return getTM<WebAssemblyTargetMachine>(); |
| 187 | } |
| 188 | |
| 189 | FunctionPass *createTargetRegisterAllocator(bool) override; |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 190 | |
| 191 | void addIRPasses() override; |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 192 | bool addInstSelector() override; |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 193 | void addPostRegAlloc() override; |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 194 | bool addGCPasses() override { return false; } |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 195 | void addPreEmitPass() override; |
Matt Arsenault | cf55a65 | 2019-03-19 19:33:12 +0000 | [diff] [blame] | 196 | |
| 197 | // No reg alloc |
| 198 | bool addRegAssignmentFast() override { return false; } |
| 199 | |
| 200 | // No reg alloc |
| 201 | bool addRegAssignmentOptimized() override { return false; } |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 202 | }; |
| 203 | } // end anonymous namespace |
| 204 | |
Sanjoy Das | 26d11ca | 2017-12-22 18:21:59 +0000 | [diff] [blame] | 205 | TargetTransformInfo |
| 206 | WebAssemblyTargetMachine::getTargetTransformInfo(const Function &F) { |
| 207 | return TargetTransformInfo(WebAssemblyTTIImpl(this, F)); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | TargetPassConfig * |
| 211 | WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) { |
Matthias Braun | 5e394c3 | 2017-05-30 21:36:41 +0000 | [diff] [blame] | 212 | return new WebAssemblyPassConfig(*this, PM); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) { |
| 216 | return nullptr; // No reg alloc |
| 217 | } |
| 218 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 219 | //===----------------------------------------------------------------------===// |
| 220 | // The following functions are called from lib/CodeGen/Passes.cpp to modify |
| 221 | // the CodeGen pass sequence. |
| 222 | //===----------------------------------------------------------------------===// |
| 223 | |
| 224 | void WebAssemblyPassConfig::addIRPasses() { |
Thomas Lively | f3b4f99 | 2019-02-28 18:39:08 +0000 | [diff] [blame] | 225 | if (static_cast<WebAssemblyTargetMachine *>(TM) |
| 226 | ->getUsedFeatures()[WebAssembly::FeatureAtomics]) { |
JF Bastien | 03855df | 2015-07-01 23:41:25 +0000 | [diff] [blame] | 227 | // Expand some atomic operations. WebAssemblyTargetLowering has hooks which |
| 228 | // control specifically what gets lowered. |
Francis Visoiu Mistrih | 8b61764 | 2017-05-18 17:21:13 +0000 | [diff] [blame] | 229 | addPass(createAtomicExpandPass()); |
Thomas Lively | f3b4f99 | 2019-02-28 18:39:08 +0000 | [diff] [blame] | 230 | } else { |
| 231 | // If atomics are not enabled, they get lowered to non-atomics. |
| 232 | addPass(createLowerAtomicPass()); |
| 233 | addPass(new StripThreadLocal()); |
Derek Schuff | 39b5367 | 2018-03-20 22:01:32 +0000 | [diff] [blame] | 234 | } |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 235 | |
Sam Clegg | 9261755 | 2018-07-11 04:29:36 +0000 | [diff] [blame] | 236 | // Add signatures to prototype-less function declarations |
| 237 | addPass(createWebAssemblyAddMissingPrototypes()); |
| 238 | |
Sam Clegg | bafe690 | 2017-12-15 00:17:10 +0000 | [diff] [blame] | 239 | // Lower .llvm.global_dtors into .llvm_global_ctors with __cxa_atexit calls. |
| 240 | addPass(createWebAssemblyLowerGlobalDtors()); |
| 241 | |
Dan Gohman | 1b63745 | 2017-01-07 00:34:54 +0000 | [diff] [blame] | 242 | // Fix function bitcasts, as WebAssembly requires caller and callee signatures |
| 243 | // to match. |
| 244 | addPass(createWebAssemblyFixFunctionBitcasts()); |
| 245 | |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 246 | // Optimize "returned" function attributes. |
Dan Gohman | b13c91f | 2016-01-19 14:55:02 +0000 | [diff] [blame] | 247 | if (getOptLevel() != CodeGenOpt::None) |
| 248 | addPass(createWebAssemblyOptimizeReturned()); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 249 | |
Heejin Ahn | c0f1817 | 2016-09-01 21:05:15 +0000 | [diff] [blame] | 250 | // If exception handling is not enabled and setjmp/longjmp handling is |
| 251 | // enabled, we lower invokes into calls and delete unreachable landingpad |
| 252 | // blocks. Lowering invokes when there is no EH support is done in |
| 253 | // TargetPassConfig::addPassesToHandleExceptions, but this runs after this |
| 254 | // function and SjLj handling expects all invokes to be lowered before. |
Heejin Ahn | 9386bde | 2018-02-24 00:40:50 +0000 | [diff] [blame] | 255 | if (!EnableEmException && |
| 256 | TM->Options.ExceptionModel == ExceptionHandling::None) { |
Heejin Ahn | c0f1817 | 2016-09-01 21:05:15 +0000 | [diff] [blame] | 257 | addPass(createLowerInvokePass()); |
| 258 | // The lower invoke pass may create unreachable code. Remove it in order not |
| 259 | // to process dead blocks in setjmp/longjmp handling. |
| 260 | addPass(createUnreachableBlockEliminationPass()); |
| 261 | } |
| 262 | |
| 263 | // Handle exceptions and setjmp/longjmp if enabled. |
Derek Schuff | ccdceda | 2016-08-18 15:27:25 +0000 | [diff] [blame] | 264 | if (EnableEmException || EnableEmSjLj) |
| 265 | addPass(createWebAssemblyLowerEmscriptenEHSjLj(EnableEmException, |
| 266 | EnableEmSjLj)); |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 267 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 268 | TargetPassConfig::addIRPasses(); |
| 269 | } |
| 270 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 271 | bool WebAssemblyPassConfig::addInstSelector() { |
Dan Gohman | b0921ca | 2015-12-05 19:24:17 +0000 | [diff] [blame] | 272 | (void)TargetPassConfig::addInstSelector(); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 273 | addPass( |
| 274 | createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel())); |
Dan Gohman | 1cf96c0 | 2015-12-09 16:23:59 +0000 | [diff] [blame] | 275 | // Run the argument-move pass immediately after the ScheduleDAG scheduler |
| 276 | // so that we can fix up the ARGUMENT instructions before anything else |
| 277 | // sees them in the wrong place. |
| 278 | addPass(createWebAssemblyArgumentMove()); |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 279 | // Set the p2align operands. This information is present during ISel, however |
| 280 | // it's inconvenient to collect. Collect it now, and update the immediate |
| 281 | // operands. |
| 282 | addPass(createWebAssemblySetP2AlignOperands()); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 283 | return false; |
| 284 | } |
| 285 | |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 286 | void WebAssemblyPassConfig::addPostRegAlloc() { |
Dan Gohman | 9c54d3b | 2015-11-25 18:13:18 +0000 | [diff] [blame] | 287 | // TODO: The following CodeGen passes don't currently support code containing |
| 288 | // virtual registers. Consider removing their restrictions and re-enabling |
| 289 | // them. |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 290 | |
Matthias Braun | 1eb4736 | 2016-08-25 01:27:13 +0000 | [diff] [blame] | 291 | // These functions all require the NoVRegs property. |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 292 | disablePass(&MachineCopyPropagationID); |
Jun Bum Lim | 7ab1b32 | 2018-04-03 18:17:34 +0000 | [diff] [blame] | 293 | disablePass(&PostRAMachineSinkingID); |
Derek Schuff | ecabac6 | 2016-03-28 22:52:20 +0000 | [diff] [blame] | 294 | disablePass(&PostRASchedulerID); |
| 295 | disablePass(&FuncletLayoutID); |
| 296 | disablePass(&StackMapLivenessID); |
| 297 | disablePass(&LiveDebugValuesID); |
Sanjoy Das | fe71ec7 | 2016-04-19 06:24:58 +0000 | [diff] [blame] | 298 | disablePass(&PatchableFunctionID); |
Jun Bum Lim | 7ab1b32 | 2018-04-03 18:17:34 +0000 | [diff] [blame] | 299 | disablePass(&ShrinkWrapID); |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 300 | |
Heejin Ahn | ef9d6ae | 2019-03-05 20:35:34 +0000 | [diff] [blame] | 301 | // This pass hurts code size for wasm because it can generate irreducible |
| 302 | // control flow. |
| 303 | disablePass(&MachineBlockPlacementID); |
| 304 | |
Dan Gohman | b0921ca | 2015-12-05 19:24:17 +0000 | [diff] [blame] | 305 | TargetPassConfig::addPostRegAlloc(); |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 306 | } |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 307 | |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 308 | void WebAssemblyPassConfig::addPreEmitPass() { |
Dan Gohman | b0921ca | 2015-12-05 19:24:17 +0000 | [diff] [blame] | 309 | TargetPassConfig::addPreEmitPass(); |
Dan Gohman | 05ac43f | 2015-12-17 01:39:00 +0000 | [diff] [blame] | 310 | |
Derek Schuff | 6f69783 | 2016-10-21 16:38:07 +0000 | [diff] [blame] | 311 | // Rewrite pseudo call_indirect instructions as real instructions. |
| 312 | // This needs to run before register stackification, because we change the |
| 313 | // order of the arguments. |
| 314 | addPass(createWebAssemblyCallIndirectFixup()); |
| 315 | |
Heejin Ahn | e95056d | 2019-01-08 01:25:12 +0000 | [diff] [blame] | 316 | // Eliminate multiple-entry loops. |
| 317 | addPass(createWebAssemblyFixIrreducibleControlFlow()); |
| 318 | |
| 319 | // Do various transformations for exception handling. |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 320 | // Every CFG-changing optimizations should come before this. |
Heejin Ahn | e95056d | 2019-01-08 01:25:12 +0000 | [diff] [blame] | 321 | addPass(createWebAssemblyLateEHPrepare()); |
| 322 | |
Heejin Ahn | 0bb9865 | 2019-01-30 22:44:45 +0000 | [diff] [blame] | 323 | // Now that we have a prologue and epilogue and all frame indices are |
| 324 | // rewritten, eliminate SP and FP. This allows them to be stackified, |
| 325 | // colored, and numbered with the rest of the registers. |
| 326 | addPass(createWebAssemblyReplacePhysRegs()); |
| 327 | |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 328 | // Preparations and optimizations related to register stackification. |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 329 | if (getOptLevel() != CodeGenOpt::None) { |
| 330 | // LiveIntervals isn't commonly run this late. Re-establish preconditions. |
| 331 | addPass(createWebAssemblyPrepareForLiveIntervals()); |
| 332 | |
| 333 | // Depend on LiveIntervals and perform some optimizations on it. |
| 334 | addPass(createWebAssemblyOptimizeLiveIntervals()); |
| 335 | |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 336 | // Prepare memory intrinsic calls for register stackifying. |
| 337 | addPass(createWebAssemblyMemIntrinsicResults()); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 338 | |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 339 | // Mark registers as representing wasm's value stack. This is a key |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 340 | // code-compression technique in WebAssembly. We run this pass (and |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 341 | // MemIntrinsicResults above) very late, so that it sees as much code as |
| 342 | // possible, including code emitted by PEI and expanded by late tail |
| 343 | // duplication. |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 344 | addPass(createWebAssemblyRegStackify()); |
| 345 | |
| 346 | // Run the register coloring pass to reduce the total number of registers. |
| 347 | // This runs after stackification so that it doesn't consider registers |
| 348 | // that become stackified. |
| 349 | addPass(createWebAssemblyRegColoring()); |
| 350 | } |
| 351 | |
Thomas Lively | 6a87dda | 2019-01-08 06:25:55 +0000 | [diff] [blame] | 352 | // Insert explicit local.get and local.set operators. |
Wouter van Oortmerssen | a7be375 | 2018-08-13 23:12:49 +0000 | [diff] [blame] | 353 | addPass(createWebAssemblyExplicitLocals()); |
| 354 | |
Dan Gohman | f52ee17 | 2017-02-27 22:38:58 +0000 | [diff] [blame] | 355 | // Sort the blocks of the CFG into topological order, a prerequisite for |
| 356 | // BLOCK and LOOP markers. |
| 357 | addPass(createWebAssemblyCFGSort()); |
| 358 | |
| 359 | // Insert BLOCK and LOOP markers. |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 360 | addPass(createWebAssemblyCFGStackify()); |
Dan Gohman | 5941bde | 2015-11-25 21:32:06 +0000 | [diff] [blame] | 361 | |
Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 362 | // Lower br_unless into br_if. |
| 363 | addPass(createWebAssemblyLowerBrUnless()); |
| 364 | |
Dan Gohman | 5941bde | 2015-11-25 21:32:06 +0000 | [diff] [blame] | 365 | // Perform the very last peephole optimizations on the code. |
Dan Gohman | b13c91f | 2016-01-19 14:55:02 +0000 | [diff] [blame] | 366 | if (getOptLevel() != CodeGenOpt::None) |
| 367 | addPass(createWebAssemblyPeephole()); |
Dan Gohman | b7c2400 | 2016-05-21 00:21:56 +0000 | [diff] [blame] | 368 | |
| 369 | // Create a mapping from LLVM CodeGen virtual registers to wasm registers. |
| 370 | addPass(createWebAssemblyRegNumbering()); |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 371 | } |
Heejin Ahn | 52221d5 | 2019-03-26 17:35:35 +0000 | [diff] [blame] | 372 | |
| 373 | yaml::MachineFunctionInfo * |
| 374 | WebAssemblyTargetMachine::createDefaultFuncInfoYAML() const { |
| 375 | return new yaml::WebAssemblyFunctionInfo(); |
| 376 | } |
| 377 | |
| 378 | yaml::MachineFunctionInfo *WebAssemblyTargetMachine::convertFuncInfoToYAML( |
| 379 | const MachineFunction &MF) const { |
| 380 | const auto *MFI = MF.getInfo<WebAssemblyFunctionInfo>(); |
| 381 | return new yaml::WebAssemblyFunctionInfo(*MFI); |
| 382 | } |
| 383 | |
| 384 | bool WebAssemblyTargetMachine::parseMachineFunctionInfo( |
| 385 | const yaml::MachineFunctionInfo &MFI, PerFunctionMIParsingState &PFS, |
| 386 | SMDiagnostic &Error, SMRange &SourceRange) const { |
| 387 | const auto &YamlMFI = |
| 388 | reinterpret_cast<const yaml::WebAssemblyFunctionInfo &>(MFI); |
| 389 | MachineFunction &MF = PFS.MF; |
| 390 | MF.getInfo<WebAssemblyFunctionInfo>()->initializeBaseYamlFields(YamlMFI); |
| 391 | return false; |
| 392 | } |