Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 1 | //===- 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 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" |
| 20 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 21 | #include "llvm/CodeGen/Passes.h" |
| 22 | #include "llvm/CodeGen/RegAllocRegistry.h" |
Matthias Braun | 31d19d4 | 2016-05-10 03:21:59 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/TargetPassConfig.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Function.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 25 | #include "llvm/Support/TargetRegistry.h" |
| 26 | #include "llvm/Target/TargetOptions.h" |
JF Bastien | 03855df | 2015-07-01 23:41:25 +0000 | [diff] [blame] | 27 | #include "llvm/Transforms/Scalar.h" |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 28 | using namespace llvm; |
| 29 | |
| 30 | #define DEBUG_TYPE "wasm" |
| 31 | |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 32 | // Emscripten's asm.js-style exception handling |
Derek Schuff | ccdceda | 2016-08-18 15:27:25 +0000 | [diff] [blame] | 33 | static cl::opt<bool> EnableEmException( |
Derek Schuff | 53b9af0 | 2016-08-09 00:29:55 +0000 | [diff] [blame] | 34 | "enable-emscripten-cxx-exceptions", |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 35 | cl::desc("WebAssembly Emscripten-style exception handling"), |
| 36 | cl::init(false)); |
| 37 | |
Derek Schuff | ccdceda | 2016-08-18 15:27:25 +0000 | [diff] [blame] | 38 | // Emscripten's asm.js-style setjmp/longjmp handling |
| 39 | static cl::opt<bool> EnableEmSjLj( |
| 40 | "enable-emscripten-sjlj", |
| 41 | cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"), |
| 42 | cl::init(false)); |
| 43 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 44 | extern "C" void LLVMInitializeWebAssemblyTarget() { |
| 45 | // Register the target. |
Mehdi Amini | f42454b | 2016-10-09 23:00:34 +0000 | [diff] [blame] | 46 | RegisterTargetMachine<WebAssemblyTargetMachine> X( |
| 47 | getTheWebAssemblyTarget32()); |
| 48 | RegisterTargetMachine<WebAssemblyTargetMachine> Y( |
| 49 | getTheWebAssemblyTarget64()); |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 50 | |
| 51 | // Register exception handling pass to opt |
Derek Schuff | ccdceda | 2016-08-18 15:27:25 +0000 | [diff] [blame] | 52 | initializeWebAssemblyLowerEmscriptenEHSjLjPass( |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 53 | *PassRegistry::getPassRegistry()); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | //===----------------------------------------------------------------------===// |
| 57 | // WebAssembly Lowering public interface. |
| 58 | //===----------------------------------------------------------------------===// |
| 59 | |
Dan Gohman | 41133a3 | 2016-05-19 03:00:05 +0000 | [diff] [blame] | 60 | static Reloc::Model getEffectiveRelocModel(Optional<Reloc::Model> RM) { |
| 61 | if (!RM.hasValue()) |
| 62 | return Reloc::PIC_; |
| 63 | return *RM; |
| 64 | } |
| 65 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 66 | /// Create an WebAssembly architecture model. |
| 67 | /// |
| 68 | WebAssemblyTargetMachine::WebAssemblyTargetMachine( |
| 69 | const Target &T, const Triple &TT, StringRef CPU, StringRef FS, |
Dan Gohman | 41133a3 | 2016-05-19 03:00:05 +0000 | [diff] [blame] | 70 | const TargetOptions &Options, Optional<Reloc::Model> RM, |
| 71 | CodeModel::Model CM, CodeGenOpt::Level OL) |
Dan Gohman | 0c6f5ac | 2016-01-07 03:19:23 +0000 | [diff] [blame] | 72 | : LLVMTargetMachine(T, |
| 73 | TT.isArch64Bit() ? "e-m:e-p:64:64-i64:64-n32:64-S128" |
| 74 | : "e-m:e-p:32:32-i64:64-n32:64-S128", |
Dan Gohman | 41133a3 | 2016-05-19 03:00:05 +0000 | [diff] [blame] | 75 | TT, CPU, FS, Options, getEffectiveRelocModel(RM), |
| 76 | CM, OL), |
Dan Gohman | 18eafb6 | 2017-02-22 01:23:18 +0000 | [diff] [blame] | 77 | TLOF(TT.isOSBinFormatELF() ? |
| 78 | static_cast<TargetLoweringObjectFile*>( |
| 79 | new WebAssemblyTargetObjectFileELF()) : |
| 80 | static_cast<TargetLoweringObjectFile*>( |
| 81 | new WebAssemblyTargetObjectFile())) { |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 82 | // WebAssembly type-checks instructions, but a noreturn function with a return |
Derek Schuff | ffa143c | 2015-11-10 00:30:57 +0000 | [diff] [blame] | 83 | // type that doesn't match the context will cause a check failure. So we lower |
| 84 | // LLVM 'unreachable' to ISD::TRAP and then lower that to WebAssembly's |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 85 | // 'unreachable' instructions which is meant for that case. |
Derek Schuff | ffa143c | 2015-11-10 00:30:57 +0000 | [diff] [blame] | 86 | this->Options.TrapUnreachable = true; |
| 87 | |
Dan Gohman | d934cb8 | 2017-02-24 23:18:00 +0000 | [diff] [blame] | 88 | // WebAssembly treats each function as an independent unit. Force |
| 89 | // -ffunction-sections, effectively, so that we can emit them independently. |
| 90 | if (!TT.isOSBinFormatELF()) { |
| 91 | this->Options.FunctionSections = true; |
| 92 | this->Options.DataSections = true; |
| 93 | this->Options.UniqueSectionNames = true; |
| 94 | } |
| 95 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 96 | initAsmInfo(); |
| 97 | |
Dan Gohman | d85ab7f | 2016-02-18 06:32:53 +0000 | [diff] [blame] | 98 | // Note that we don't use setRequiresStructuredCFG(true). It disables |
| 99 | // optimizations than we're ok with, and want, such as critical edge |
| 100 | // splitting and tail merging. |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | WebAssemblyTargetMachine::~WebAssemblyTargetMachine() {} |
| 104 | |
| 105 | const WebAssemblySubtarget * |
| 106 | WebAssemblyTargetMachine::getSubtargetImpl(const Function &F) const { |
| 107 | Attribute CPUAttr = F.getFnAttribute("target-cpu"); |
| 108 | Attribute FSAttr = F.getFnAttribute("target-features"); |
| 109 | |
| 110 | std::string CPU = !CPUAttr.hasAttribute(Attribute::None) |
| 111 | ? CPUAttr.getValueAsString().str() |
| 112 | : TargetCPU; |
| 113 | std::string FS = !FSAttr.hasAttribute(Attribute::None) |
| 114 | ? FSAttr.getValueAsString().str() |
| 115 | : TargetFS; |
| 116 | |
| 117 | auto &I = SubtargetMap[CPU + FS]; |
| 118 | if (!I) { |
| 119 | // This needs to be done before we create a new subtarget since any |
| 120 | // creation will depend on the TM and the code generation flags on the |
| 121 | // function that reside in TargetOptions. |
| 122 | resetTargetOptions(F); |
Rafael Espindola | 3adc7ce | 2015-08-11 18:11:17 +0000 | [diff] [blame] | 123 | I = llvm::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 124 | } |
| 125 | return I.get(); |
| 126 | } |
| 127 | |
| 128 | namespace { |
| 129 | /// WebAssembly Code Generator Pass Configuration Options. |
| 130 | class WebAssemblyPassConfig final : public TargetPassConfig { |
| 131 | public: |
| 132 | WebAssemblyPassConfig(WebAssemblyTargetMachine *TM, PassManagerBase &PM) |
| 133 | : TargetPassConfig(TM, PM) {} |
| 134 | |
| 135 | WebAssemblyTargetMachine &getWebAssemblyTargetMachine() const { |
| 136 | return getTM<WebAssemblyTargetMachine>(); |
| 137 | } |
| 138 | |
| 139 | FunctionPass *createTargetRegisterAllocator(bool) override; |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 140 | |
| 141 | void addIRPasses() override; |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 142 | bool addInstSelector() override; |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 143 | void addPostRegAlloc() override; |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 144 | bool addGCPasses() override { return false; } |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 145 | void addPreEmitPass() override; |
| 146 | }; |
| 147 | } // end anonymous namespace |
| 148 | |
| 149 | TargetIRAnalysis WebAssemblyTargetMachine::getTargetIRAnalysis() { |
Hans Wennborg | 9099b5e6 | 2015-09-16 23:59:57 +0000 | [diff] [blame] | 150 | return TargetIRAnalysis([this](const Function &F) { |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 151 | return TargetTransformInfo(WebAssemblyTTIImpl(this, F)); |
| 152 | }); |
| 153 | } |
| 154 | |
| 155 | TargetPassConfig * |
| 156 | WebAssemblyTargetMachine::createPassConfig(PassManagerBase &PM) { |
| 157 | return new WebAssemblyPassConfig(this, PM); |
| 158 | } |
| 159 | |
| 160 | FunctionPass *WebAssemblyPassConfig::createTargetRegisterAllocator(bool) { |
| 161 | return nullptr; // No reg alloc |
| 162 | } |
| 163 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 164 | //===----------------------------------------------------------------------===// |
| 165 | // The following functions are called from lib/CodeGen/Passes.cpp to modify |
| 166 | // the CodeGen pass sequence. |
| 167 | //===----------------------------------------------------------------------===// |
| 168 | |
| 169 | void WebAssemblyPassConfig::addIRPasses() { |
JF Bastien | 03855df | 2015-07-01 23:41:25 +0000 | [diff] [blame] | 170 | if (TM->Options.ThreadModel == ThreadModel::Single) |
Dan Gohman | 9c54d3b | 2015-11-25 18:13:18 +0000 | [diff] [blame] | 171 | // In "single" mode, atomics get lowered to non-atomics. |
JF Bastien | 03855df | 2015-07-01 23:41:25 +0000 | [diff] [blame] | 172 | addPass(createLowerAtomicPass()); |
| 173 | else |
| 174 | // Expand some atomic operations. WebAssemblyTargetLowering has hooks which |
| 175 | // control specifically what gets lowered. |
| 176 | addPass(createAtomicExpandPass(TM)); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 177 | |
Dan Gohman | 1b63745 | 2017-01-07 00:34:54 +0000 | [diff] [blame] | 178 | // Fix function bitcasts, as WebAssembly requires caller and callee signatures |
| 179 | // to match. |
| 180 | addPass(createWebAssemblyFixFunctionBitcasts()); |
| 181 | |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 182 | // Optimize "returned" function attributes. |
Dan Gohman | b13c91f | 2016-01-19 14:55:02 +0000 | [diff] [blame] | 183 | if (getOptLevel() != CodeGenOpt::None) |
| 184 | addPass(createWebAssemblyOptimizeReturned()); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 185 | |
Heejin Ahn | c0f1817 | 2016-09-01 21:05:15 +0000 | [diff] [blame] | 186 | // If exception handling is not enabled and setjmp/longjmp handling is |
| 187 | // enabled, we lower invokes into calls and delete unreachable landingpad |
| 188 | // blocks. Lowering invokes when there is no EH support is done in |
| 189 | // TargetPassConfig::addPassesToHandleExceptions, but this runs after this |
| 190 | // function and SjLj handling expects all invokes to be lowered before. |
| 191 | if (!EnableEmException) { |
| 192 | addPass(createLowerInvokePass()); |
| 193 | // The lower invoke pass may create unreachable code. Remove it in order not |
| 194 | // to process dead blocks in setjmp/longjmp handling. |
| 195 | addPass(createUnreachableBlockEliminationPass()); |
| 196 | } |
| 197 | |
| 198 | // Handle exceptions and setjmp/longjmp if enabled. |
Derek Schuff | ccdceda | 2016-08-18 15:27:25 +0000 | [diff] [blame] | 199 | if (EnableEmException || EnableEmSjLj) |
| 200 | addPass(createWebAssemblyLowerEmscriptenEHSjLj(EnableEmException, |
| 201 | EnableEmSjLj)); |
Derek Schuff | f41f67d | 2016-08-01 21:34:04 +0000 | [diff] [blame] | 202 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 203 | TargetPassConfig::addIRPasses(); |
| 204 | } |
| 205 | |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 206 | bool WebAssemblyPassConfig::addInstSelector() { |
Dan Gohman | b0921ca | 2015-12-05 19:24:17 +0000 | [diff] [blame] | 207 | (void)TargetPassConfig::addInstSelector(); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 208 | addPass( |
| 209 | createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel())); |
Dan Gohman | 1cf96c0 | 2015-12-09 16:23:59 +0000 | [diff] [blame] | 210 | // Run the argument-move pass immediately after the ScheduleDAG scheduler |
| 211 | // so that we can fix up the ARGUMENT instructions before anything else |
| 212 | // sees them in the wrong place. |
| 213 | addPass(createWebAssemblyArgumentMove()); |
Dan Gohman | bb37224 | 2016-01-26 03:39:31 +0000 | [diff] [blame] | 214 | // Set the p2align operands. This information is present during ISel, however |
| 215 | // it's inconvenient to collect. Collect it now, and update the immediate |
| 216 | // operands. |
| 217 | addPass(createWebAssemblySetP2AlignOperands()); |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 218 | return false; |
| 219 | } |
| 220 | |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 221 | void WebAssemblyPassConfig::addPostRegAlloc() { |
Dan Gohman | 9c54d3b | 2015-11-25 18:13:18 +0000 | [diff] [blame] | 222 | // TODO: The following CodeGen passes don't currently support code containing |
| 223 | // virtual registers. Consider removing their restrictions and re-enabling |
| 224 | // them. |
Derek Schuff | ad154c8 | 2016-03-28 17:05:30 +0000 | [diff] [blame] | 225 | |
| 226 | // Has no asserts of its own, but was not written to handle virtual regs. |
| 227 | disablePass(&ShrinkWrapID); |
Derek Schuff | ecabac6 | 2016-03-28 22:52:20 +0000 | [diff] [blame] | 228 | |
Matthias Braun | 1eb4736 | 2016-08-25 01:27:13 +0000 | [diff] [blame] | 229 | // These functions all require the NoVRegs property. |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 230 | disablePass(&MachineCopyPropagationID); |
Derek Schuff | ecabac6 | 2016-03-28 22:52:20 +0000 | [diff] [blame] | 231 | disablePass(&PostRASchedulerID); |
| 232 | disablePass(&FuncletLayoutID); |
| 233 | disablePass(&StackMapLivenessID); |
| 234 | disablePass(&LiveDebugValuesID); |
Sanjoy Das | fe71ec7 | 2016-04-19 06:24:58 +0000 | [diff] [blame] | 235 | disablePass(&PatchableFunctionID); |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 236 | |
Dan Gohman | b0921ca | 2015-12-05 19:24:17 +0000 | [diff] [blame] | 237 | TargetPassConfig::addPostRegAlloc(); |
JF Bastien | 600aee9 | 2015-07-31 17:53:38 +0000 | [diff] [blame] | 238 | } |
Dan Gohman | 10e730a | 2015-06-29 23:51:55 +0000 | [diff] [blame] | 239 | |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 240 | void WebAssemblyPassConfig::addPreEmitPass() { |
Dan Gohman | b0921ca | 2015-12-05 19:24:17 +0000 | [diff] [blame] | 241 | TargetPassConfig::addPreEmitPass(); |
Dan Gohman | 05ac43f | 2015-12-17 01:39:00 +0000 | [diff] [blame] | 242 | |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 243 | // Now that we have a prologue and epilogue and all frame indices are |
| 244 | // rewritten, eliminate SP and FP. This allows them to be stackified, |
| 245 | // colored, and numbered with the rest of the registers. |
| 246 | addPass(createWebAssemblyReplacePhysRegs()); |
| 247 | |
Derek Schuff | 6f69783 | 2016-10-21 16:38:07 +0000 | [diff] [blame] | 248 | // Rewrite pseudo call_indirect instructions as real instructions. |
| 249 | // This needs to run before register stackification, because we change the |
| 250 | // order of the arguments. |
| 251 | addPass(createWebAssemblyCallIndirectFixup()); |
| 252 | |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 253 | if (getOptLevel() != CodeGenOpt::None) { |
| 254 | // LiveIntervals isn't commonly run this late. Re-establish preconditions. |
| 255 | addPass(createWebAssemblyPrepareForLiveIntervals()); |
| 256 | |
| 257 | // Depend on LiveIntervals and perform some optimizations on it. |
| 258 | addPass(createWebAssemblyOptimizeLiveIntervals()); |
| 259 | |
| 260 | // Prepare store instructions for register stackifying. |
| 261 | addPass(createWebAssemblyStoreResults()); |
| 262 | |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 263 | // Mark registers as representing wasm's value stack. This is a key |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 264 | // code-compression technique in WebAssembly. We run this pass (and |
| 265 | // StoreResults above) very late, so that it sees as much code as possible, |
| 266 | // including code emitted by PEI and expanded by late tail duplication. |
| 267 | addPass(createWebAssemblyRegStackify()); |
| 268 | |
| 269 | // Run the register coloring pass to reduce the total number of registers. |
| 270 | // This runs after stackification so that it doesn't consider registers |
| 271 | // that become stackified. |
| 272 | addPass(createWebAssemblyRegColoring()); |
| 273 | } |
| 274 | |
Dan Gohman | d934cb8 | 2017-02-24 23:18:00 +0000 | [diff] [blame] | 275 | // Eliminate multiple-entry loops. Do this before inserting explicit get_local |
| 276 | // and set_local operators because we create a new variable that we want |
| 277 | // converted into a local. |
| 278 | addPass(createWebAssemblyFixIrreducibleControlFlow()); |
| 279 | |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 280 | // Insert explicit get_local and set_local operators. |
Dan Gohman | 66caac5 | 2016-12-03 23:00:12 +0000 | [diff] [blame] | 281 | addPass(createWebAssemblyExplicitLocals()); |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 282 | |
Dan Gohman | f52ee17 | 2017-02-27 22:38:58 +0000 | [diff] [blame] | 283 | // Sort the blocks of the CFG into topological order, a prerequisite for |
| 284 | // BLOCK and LOOP markers. |
| 285 | addPass(createWebAssemblyCFGSort()); |
| 286 | |
| 287 | // Insert BLOCK and LOOP markers. |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 288 | addPass(createWebAssemblyCFGStackify()); |
Dan Gohman | 5941bde | 2015-11-25 21:32:06 +0000 | [diff] [blame] | 289 | |
Dan Gohman | f0b165a | 2015-12-05 03:03:35 +0000 | [diff] [blame] | 290 | // Lower br_unless into br_if. |
| 291 | addPass(createWebAssemblyLowerBrUnless()); |
| 292 | |
Dan Gohman | 5941bde | 2015-11-25 21:32:06 +0000 | [diff] [blame] | 293 | // Perform the very last peephole optimizations on the code. |
Dan Gohman | b13c91f | 2016-01-19 14:55:02 +0000 | [diff] [blame] | 294 | if (getOptLevel() != CodeGenOpt::None) |
| 295 | addPass(createWebAssemblyPeephole()); |
Dan Gohman | b7c2400 | 2016-05-21 00:21:56 +0000 | [diff] [blame] | 296 | |
| 297 | // Create a mapping from LLVM CodeGen virtual registers to wasm registers. |
| 298 | addPass(createWebAssemblyRegNumbering()); |
Dan Gohman | 950a13c | 2015-09-16 16:51:30 +0000 | [diff] [blame] | 299 | } |