blob: 8619cbdcb5eed2bd703692fd4187d15e9afa29eb [file] [log] [blame]
Dan Gohman4fc4e422016-10-24 19:49:43 +00001//===-- WebAssemblyExplicitLocals.cpp - Make Locals Explicit --------------===//
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 converts any remaining registers into WebAssembly locals.
Dan Gohman4fc4e422016-10-24 19:49:43 +000012///
13/// After register stackification and register coloring, convert non-stackified
14/// registers into locals, inserting explicit get_local and set_local
15/// instructions.
16///
17//===----------------------------------------------------------------------===//
18
19#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
20#include "WebAssembly.h"
21#include "WebAssemblyMachineFunctionInfo.h"
22#include "WebAssemblySubtarget.h"
23#include "WebAssemblyUtilities.h"
24#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
25#include "llvm/CodeGen/MachineInstrBuilder.h"
26#include "llvm/CodeGen/MachineRegisterInfo.h"
27#include "llvm/CodeGen/Passes.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/raw_ostream.h"
30using namespace llvm;
31
32#define DEBUG_TYPE "wasm-explicit-locals"
33
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +000034// A command-line option to disable this pass. Note that this produces output
35// which is not valid WebAssembly, though it may be more convenient for writing
36// LLVM unit tests with.
37static cl::opt<bool> DisableWebAssemblyExplicitLocals(
38 "disable-wasm-explicit-locals", cl::ReallyHidden,
39 cl::desc("WebAssembly: Disable emission of get_local/set_local."),
Dan Gohman7d7409e2017-02-28 23:37:04 +000040 cl::init(false));
41
Dan Gohman4fc4e422016-10-24 19:49:43 +000042namespace {
43class WebAssemblyExplicitLocals final : public MachineFunctionPass {
44 StringRef getPassName() const override {
45 return "WebAssembly Explicit Locals";
46 }
47
48 void getAnalysisUsage(AnalysisUsage &AU) const override {
49 AU.setPreservesCFG();
50 AU.addPreserved<MachineBlockFrequencyInfo>();
51 MachineFunctionPass::getAnalysisUsage(AU);
52 }
53
54 bool runOnMachineFunction(MachineFunction &MF) override;
55
56public:
57 static char ID; // Pass identification, replacement for typeid
58 WebAssemblyExplicitLocals() : MachineFunctionPass(ID) {}
59};
60} // end anonymous namespace
61
62char WebAssemblyExplicitLocals::ID = 0;
Jacob Gravelle40926452018-03-30 20:36:58 +000063INITIALIZE_PASS(WebAssemblyExplicitLocals, DEBUG_TYPE,
64 "Convert registers to WebAssembly locals", false, false)
65
Dan Gohman4fc4e422016-10-24 19:49:43 +000066FunctionPass *llvm::createWebAssemblyExplicitLocals() {
67 return new WebAssemblyExplicitLocals();
68}
69
70/// Return a local id number for the given register, assigning it a new one
71/// if it doesn't yet have one.
72static unsigned getLocalId(DenseMap<unsigned, unsigned> &Reg2Local,
73 unsigned &CurLocal, unsigned Reg) {
Dan Gohmand934cb82017-02-24 23:18:00 +000074 auto P = Reg2Local.insert(std::make_pair(Reg, CurLocal));
75 if (P.second)
76 ++CurLocal;
77 return P.first->second;
78}
79
80/// Get the appropriate drop opcode for the given register class.
81static unsigned getDropOpcode(const TargetRegisterClass *RC) {
82 if (RC == &WebAssembly::I32RegClass)
83 return WebAssembly::DROP_I32;
84 if (RC == &WebAssembly::I64RegClass)
85 return WebAssembly::DROP_I64;
86 if (RC == &WebAssembly::F32RegClass)
87 return WebAssembly::DROP_F32;
88 if (RC == &WebAssembly::F64RegClass)
89 return WebAssembly::DROP_F64;
90 if (RC == &WebAssembly::V128RegClass)
91 return WebAssembly::DROP_V128;
Heejin Ahn0de58722018-03-08 04:05:37 +000092 if (RC == &WebAssembly::EXCEPT_REFRegClass)
93 return WebAssembly::DROP_EXCEPT_REF;
Dan Gohmand934cb82017-02-24 23:18:00 +000094 llvm_unreachable("Unexpected register class");
Dan Gohman4fc4e422016-10-24 19:49:43 +000095}
96
97/// Get the appropriate get_local opcode for the given register class.
98static unsigned getGetLocalOpcode(const TargetRegisterClass *RC) {
99 if (RC == &WebAssembly::I32RegClass)
100 return WebAssembly::GET_LOCAL_I32;
101 if (RC == &WebAssembly::I64RegClass)
102 return WebAssembly::GET_LOCAL_I64;
103 if (RC == &WebAssembly::F32RegClass)
104 return WebAssembly::GET_LOCAL_F32;
105 if (RC == &WebAssembly::F64RegClass)
106 return WebAssembly::GET_LOCAL_F64;
107 if (RC == &WebAssembly::V128RegClass)
108 return WebAssembly::GET_LOCAL_V128;
Heejin Ahn0de58722018-03-08 04:05:37 +0000109 if (RC == &WebAssembly::EXCEPT_REFRegClass)
110 return WebAssembly::GET_LOCAL_EXCEPT_REF;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000111 llvm_unreachable("Unexpected register class");
112}
113
114/// Get the appropriate set_local opcode for the given register class.
115static unsigned getSetLocalOpcode(const TargetRegisterClass *RC) {
116 if (RC == &WebAssembly::I32RegClass)
117 return WebAssembly::SET_LOCAL_I32;
118 if (RC == &WebAssembly::I64RegClass)
119 return WebAssembly::SET_LOCAL_I64;
120 if (RC == &WebAssembly::F32RegClass)
121 return WebAssembly::SET_LOCAL_F32;
122 if (RC == &WebAssembly::F64RegClass)
123 return WebAssembly::SET_LOCAL_F64;
124 if (RC == &WebAssembly::V128RegClass)
125 return WebAssembly::SET_LOCAL_V128;
Heejin Ahn0de58722018-03-08 04:05:37 +0000126 if (RC == &WebAssembly::EXCEPT_REFRegClass)
127 return WebAssembly::SET_LOCAL_EXCEPT_REF;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000128 llvm_unreachable("Unexpected register class");
129}
130
131/// Get the appropriate tee_local opcode for the given register class.
132static unsigned getTeeLocalOpcode(const TargetRegisterClass *RC) {
133 if (RC == &WebAssembly::I32RegClass)
134 return WebAssembly::TEE_LOCAL_I32;
135 if (RC == &WebAssembly::I64RegClass)
136 return WebAssembly::TEE_LOCAL_I64;
137 if (RC == &WebAssembly::F32RegClass)
138 return WebAssembly::TEE_LOCAL_F32;
139 if (RC == &WebAssembly::F64RegClass)
140 return WebAssembly::TEE_LOCAL_F64;
141 if (RC == &WebAssembly::V128RegClass)
142 return WebAssembly::TEE_LOCAL_V128;
Heejin Ahn0de58722018-03-08 04:05:37 +0000143 if (RC == &WebAssembly::EXCEPT_REFRegClass)
144 return WebAssembly::TEE_LOCAL_EXCEPT_REF;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000145 llvm_unreachable("Unexpected register class");
146}
147
148/// Get the type associated with the given register class.
Dan Gohman3acb1872016-10-24 23:27:49 +0000149static MVT typeForRegClass(const TargetRegisterClass *RC) {
Dan Gohman4fc4e422016-10-24 19:49:43 +0000150 if (RC == &WebAssembly::I32RegClass)
Dan Gohman3acb1872016-10-24 23:27:49 +0000151 return MVT::i32;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000152 if (RC == &WebAssembly::I64RegClass)
Dan Gohman3acb1872016-10-24 23:27:49 +0000153 return MVT::i64;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000154 if (RC == &WebAssembly::F32RegClass)
Dan Gohman3acb1872016-10-24 23:27:49 +0000155 return MVT::f32;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000156 if (RC == &WebAssembly::F64RegClass)
Dan Gohman3acb1872016-10-24 23:27:49 +0000157 return MVT::f64;
Heejin Ahn0de58722018-03-08 04:05:37 +0000158 if (RC == &WebAssembly::EXCEPT_REFRegClass)
159 return MVT::ExceptRef;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000160 llvm_unreachable("unrecognized register class");
161}
162
163/// Given a MachineOperand of a stackified vreg, return the instruction at the
164/// start of the expression tree.
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000165static MachineInstr *FindStartOfTree(MachineOperand &MO,
Dan Gohman4fc4e422016-10-24 19:49:43 +0000166 MachineRegisterInfo &MRI,
167 WebAssemblyFunctionInfo &MFI) {
168 unsigned Reg = MO.getReg();
169 assert(MFI.isVRegStackified(Reg));
170 MachineInstr *Def = MRI.getVRegDef(Reg);
171
172 // Find the first stackified use and proceed from there.
173 for (MachineOperand &DefMO : Def->explicit_uses()) {
174 if (!DefMO.isReg())
175 continue;
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000176 return FindStartOfTree(DefMO, MRI, MFI);
Dan Gohman4fc4e422016-10-24 19:49:43 +0000177 }
178
179 // If there were no stackified uses, we've reached the start.
180 return Def;
181}
182
183bool WebAssemblyExplicitLocals::runOnMachineFunction(MachineFunction &MF) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000184 LLVM_DEBUG(dbgs() << "********** Make Locals Explicit **********\n"
185 "********** Function: "
186 << MF.getName() << '\n');
Dan Gohman4fc4e422016-10-24 19:49:43 +0000187
Dan Gohman7d7409e2017-02-28 23:37:04 +0000188 // Disable this pass if directed to do so.
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000189 if (DisableWebAssemblyExplicitLocals)
Dan Gohman7d7409e2017-02-28 23:37:04 +0000190 return false;
191
Dan Gohman4fc4e422016-10-24 19:49:43 +0000192 bool Changed = false;
193 MachineRegisterInfo &MRI = MF.getRegInfo();
194 WebAssemblyFunctionInfo &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
195 const auto *TII = MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
196
197 // Map non-stackified virtual registers to their local ids.
198 DenseMap<unsigned, unsigned> Reg2Local;
199
200 // Handle ARGUMENTS first to ensure that they get the designated numbers.
201 for (MachineBasicBlock::iterator I = MF.begin()->begin(),
202 E = MF.begin()->end();
203 I != E;) {
204 MachineInstr &MI = *I++;
205 if (!WebAssembly::isArgument(MI))
206 break;
207 unsigned Reg = MI.getOperand(0).getReg();
208 assert(!MFI.isVRegStackified(Reg));
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000209 Reg2Local[Reg] = MI.getOperand(1).getImm();
Dan Gohman4fc4e422016-10-24 19:49:43 +0000210 MI.eraseFromParent();
211 Changed = true;
212 }
213
214 // Start assigning local numbers after the last parameter.
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000215 unsigned CurLocal = MFI.getParams().size();
Dan Gohman4fc4e422016-10-24 19:49:43 +0000216
Dan Gohmand934cb82017-02-24 23:18:00 +0000217 // Precompute the set of registers that are unused, so that we can insert
218 // drops to their defs.
219 BitVector UseEmpty(MRI.getNumVirtRegs());
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000220 for (unsigned i = 0, e = MRI.getNumVirtRegs(); i < e; ++i)
221 UseEmpty[i] = MRI.use_empty(TargetRegisterInfo::index2VirtReg(i));
Dan Gohmand934cb82017-02-24 23:18:00 +0000222
Dan Gohman4fc4e422016-10-24 19:49:43 +0000223 // Visit each instruction in the function.
224 for (MachineBasicBlock &MBB : MF) {
225 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E;) {
226 MachineInstr &MI = *I++;
227 assert(!WebAssembly::isArgument(MI));
228
Shiva Chen801bf7e2018-05-09 02:42:00 +0000229 if (MI.isDebugInstr() || MI.isLabel())
Dan Gohman4fc4e422016-10-24 19:49:43 +0000230 continue;
231
232 // Replace tee instructions with tee_local. The difference is that tee
233 // instructins have two defs, while tee_local instructions have one def
234 // and an index of a local to write to.
235 if (WebAssembly::isTee(MI)) {
236 assert(MFI.isVRegStackified(MI.getOperand(0).getReg()));
237 assert(!MFI.isVRegStackified(MI.getOperand(1).getReg()));
238 unsigned OldReg = MI.getOperand(2).getReg();
239 const TargetRegisterClass *RC = MRI.getRegClass(OldReg);
240
241 // Stackify the input if it isn't stackified yet.
242 if (!MFI.isVRegStackified(OldReg)) {
243 unsigned LocalId = getLocalId(Reg2Local, CurLocal, OldReg);
244 unsigned NewReg = MRI.createVirtualRegister(RC);
245 unsigned Opc = getGetLocalOpcode(RC);
246 BuildMI(MBB, &MI, MI.getDebugLoc(), TII->get(Opc), NewReg)
247 .addImm(LocalId);
248 MI.getOperand(2).setReg(NewReg);
249 MFI.stackifyVReg(NewReg);
250 }
251
252 // Replace the TEE with a TEE_LOCAL.
253 unsigned LocalId =
254 getLocalId(Reg2Local, CurLocal, MI.getOperand(1).getReg());
255 unsigned Opc = getTeeLocalOpcode(RC);
256 BuildMI(MBB, &MI, MI.getDebugLoc(), TII->get(Opc),
257 MI.getOperand(0).getReg())
258 .addImm(LocalId)
259 .addReg(MI.getOperand(2).getReg());
260
261 MI.eraseFromParent();
262 Changed = true;
263 continue;
264 }
265
266 // Insert set_locals for any defs that aren't stackified yet. Currently
267 // we handle at most one def.
268 assert(MI.getDesc().getNumDefs() <= 1);
269 if (MI.getDesc().getNumDefs() == 1) {
270 unsigned OldReg = MI.getOperand(0).getReg();
Dan Gohmand934cb82017-02-24 23:18:00 +0000271 if (!MFI.isVRegStackified(OldReg)) {
Dan Gohman4fc4e422016-10-24 19:49:43 +0000272 const TargetRegisterClass *RC = MRI.getRegClass(OldReg);
273 unsigned NewReg = MRI.createVirtualRegister(RC);
274 auto InsertPt = std::next(MachineBasicBlock::iterator(&MI));
Dan Gohmand934cb82017-02-24 23:18:00 +0000275 if (MI.getOpcode() == WebAssembly::IMPLICIT_DEF) {
276 MI.eraseFromParent();
277 Changed = true;
278 continue;
279 }
280 if (UseEmpty[TargetRegisterInfo::virtReg2Index(OldReg)]) {
281 unsigned Opc = getDropOpcode(RC);
Heejin Ahn891a7472018-06-19 20:30:42 +0000282 MachineInstr *Drop =
283 BuildMI(MBB, InsertPt, MI.getDebugLoc(), TII->get(Opc))
284 .addReg(NewReg);
285 // After the drop instruction, this reg operand will not be used
286 Drop->getOperand(0).setIsKill();
Dan Gohmand934cb82017-02-24 23:18:00 +0000287 } else {
288 unsigned LocalId = getLocalId(Reg2Local, CurLocal, OldReg);
289 unsigned Opc = getSetLocalOpcode(RC);
290 BuildMI(MBB, InsertPt, MI.getDebugLoc(), TII->get(Opc))
291 .addImm(LocalId)
292 .addReg(NewReg);
293 }
Dan Gohman4fc4e422016-10-24 19:49:43 +0000294 MI.getOperand(0).setReg(NewReg);
Heejin Ahn891a7472018-06-19 20:30:42 +0000295 // This register operand is now being used by the inserted drop
296 // instruction, so make it undead.
297 MI.getOperand(0).setIsDead(false);
Dan Gohman4fc4e422016-10-24 19:49:43 +0000298 MFI.stackifyVReg(NewReg);
299 Changed = true;
300 }
301 }
302
303 // Insert get_locals for any uses that aren't stackified yet.
304 MachineInstr *InsertPt = &MI;
305 for (MachineOperand &MO : reverse(MI.explicit_uses())) {
306 if (!MO.isReg())
307 continue;
308
309 unsigned OldReg = MO.getReg();
310
Dan Gohmanb465aa02017-11-08 19:18:08 +0000311 // Inline asm may have a def in the middle of the operands. Our contract
312 // with inline asm register operands is to provide local indices as
313 // immediates.
314 if (MO.isDef()) {
315 assert(MI.getOpcode() == TargetOpcode::INLINEASM);
316 unsigned LocalId = getLocalId(Reg2Local, CurLocal, OldReg);
317 MRI.removeRegOperandFromUseList(&MO);
318 MO = MachineOperand::CreateImm(LocalId);
319 continue;
320 }
321
Dan Gohman4fc4e422016-10-24 19:49:43 +0000322 // If we see a stackified register, prepare to insert subsequent
323 // get_locals before the start of its tree.
324 if (MFI.isVRegStackified(OldReg)) {
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000325 InsertPt = FindStartOfTree(MO, MRI, MFI);
Dan Gohman4fc4e422016-10-24 19:49:43 +0000326 continue;
327 }
328
Dan Gohmanb465aa02017-11-08 19:18:08 +0000329 // Our contract with inline asm register operands is to provide local
330 // indices as immediates.
331 if (MI.getOpcode() == TargetOpcode::INLINEASM) {
332 unsigned LocalId = getLocalId(Reg2Local, CurLocal, OldReg);
333 MRI.removeRegOperandFromUseList(&MO);
334 MO = MachineOperand::CreateImm(LocalId);
335 continue;
336 }
337
Dan Gohman4fc4e422016-10-24 19:49:43 +0000338 // Insert a get_local.
339 unsigned LocalId = getLocalId(Reg2Local, CurLocal, OldReg);
340 const TargetRegisterClass *RC = MRI.getRegClass(OldReg);
341 unsigned NewReg = MRI.createVirtualRegister(RC);
342 unsigned Opc = getGetLocalOpcode(RC);
343 InsertPt =
344 BuildMI(MBB, InsertPt, MI.getDebugLoc(), TII->get(Opc), NewReg)
345 .addImm(LocalId);
346 MO.setReg(NewReg);
347 MFI.stackifyVReg(NewReg);
348 Changed = true;
349 }
350
351 // Coalesce and eliminate COPY instructions.
352 if (WebAssembly::isCopy(MI)) {
353 MRI.replaceRegWith(MI.getOperand(1).getReg(),
354 MI.getOperand(0).getReg());
355 MI.eraseFromParent();
356 Changed = true;
357 }
358 }
359 }
360
Dan Gohman3acb1872016-10-24 23:27:49 +0000361 // Define the locals.
Dan Gohmand934cb82017-02-24 23:18:00 +0000362 // TODO: Sort the locals for better compression.
363 MFI.setNumLocals(CurLocal - MFI.getParams().size());
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000364 for (size_t i = 0, e = MRI.getNumVirtRegs(); i < e; ++i) {
365 unsigned Reg = TargetRegisterInfo::index2VirtReg(i);
366 auto I = Reg2Local.find(Reg);
367 if (I == Reg2Local.end() || I->second < MFI.getParams().size())
Dan Gohman4fc4e422016-10-24 19:49:43 +0000368 continue;
369
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000370 MFI.setLocal(I->second - MFI.getParams().size(),
Dan Gohmand934cb82017-02-24 23:18:00 +0000371 typeForRegClass(MRI.getRegClass(Reg)));
Dan Gohman3acb1872016-10-24 23:27:49 +0000372 Changed = true;
Dan Gohman4fc4e422016-10-24 19:49:43 +0000373 }
374
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000375#ifndef NDEBUG
376 // Assert that all registers have been stackified at this point.
377 for (const MachineBasicBlock &MBB : MF) {
378 for (const MachineInstr &MI : MBB) {
379 if (MI.isDebugInstr() || MI.isLabel())
380 continue;
381 for (const MachineOperand &MO : MI.explicit_operands()) {
382 assert(
383 (!MO.isReg() || MRI.use_empty(MO.getReg()) ||
384 MFI.isVRegStackified(MO.getReg())) &&
385 "WebAssemblyExplicitLocals failed to stackify a register operand");
386 }
387 }
Wouter van Oortmerssenab26bd02018-08-10 21:32:47 +0000388 }
Wouter van Oortmerssena7be3752018-08-13 23:12:49 +0000389#endif
390
391 return Changed;
Wouter van Oortmerssenab26bd02018-08-10 21:32:47 +0000392}