blob: 537c147e61421a19108ac8de8534408205a1f312 [file] [log] [blame]
Dan Gohman1462faa2015-11-16 16:18:28 +00001//===-- WebAssemblyRegStackify.cpp - Register Stackification --------------===//
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 implements a register stacking pass.
12///
13/// This pass reorders instructions to put register uses and defs in an order
14/// such that they form single-use expression trees. Registers fitting this form
15/// are then marked as "stackified", meaning references to them are replaced by
16/// "push" and "pop" from the stack.
17///
Dan Gohman31448f12015-12-08 03:43:03 +000018/// This is primarily a code size optimization, since temporary values on the
Dan Gohman1462faa2015-11-16 16:18:28 +000019/// expression don't need to be named.
20///
21//===----------------------------------------------------------------------===//
22
23#include "WebAssembly.h"
Dan Gohman4ba48162015-11-18 16:12:01 +000024#include "MCTargetDesc/WebAssemblyMCTargetDesc.h" // for WebAssembly::ARGUMENT_*
Dan Gohman7a6b9822015-11-29 22:32:02 +000025#include "WebAssemblyMachineFunctionInfo.h"
Dan Gohman81719f82015-11-25 16:55:01 +000026#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohman8887d1f2015-12-25 00:31:02 +000027#include "llvm/CodeGen/LiveIntervalAnalysis.h"
Dan Gohman1462faa2015-11-16 16:18:28 +000028#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
29#include "llvm/CodeGen/MachineRegisterInfo.h"
30#include "llvm/CodeGen/Passes.h"
31#include "llvm/Support/Debug.h"
32#include "llvm/Support/raw_ostream.h"
33using namespace llvm;
34
35#define DEBUG_TYPE "wasm-reg-stackify"
36
37namespace {
38class WebAssemblyRegStackify final : public MachineFunctionPass {
39 const char *getPassName() const override {
40 return "WebAssembly Register Stackify";
41 }
42
43 void getAnalysisUsage(AnalysisUsage &AU) const override {
44 AU.setPreservesCFG();
Dan Gohman81719f82015-11-25 16:55:01 +000045 AU.addRequired<AAResultsWrapperPass>();
Dan Gohman8887d1f2015-12-25 00:31:02 +000046 AU.addRequired<LiveIntervals>();
Dan Gohman1462faa2015-11-16 16:18:28 +000047 AU.addPreserved<MachineBlockFrequencyInfo>();
Dan Gohman8887d1f2015-12-25 00:31:02 +000048 AU.addPreserved<SlotIndexes>();
49 AU.addPreserved<LiveIntervals>();
Dan Gohman1462faa2015-11-16 16:18:28 +000050 AU.addPreservedID(MachineDominatorsID);
Dan Gohman8887d1f2015-12-25 00:31:02 +000051 AU.addPreservedID(LiveVariablesID);
Dan Gohman1462faa2015-11-16 16:18:28 +000052 MachineFunctionPass::getAnalysisUsage(AU);
53 }
54
55 bool runOnMachineFunction(MachineFunction &MF) override;
56
57public:
58 static char ID; // Pass identification, replacement for typeid
59 WebAssemblyRegStackify() : MachineFunctionPass(ID) {}
60};
61} // end anonymous namespace
62
63char WebAssemblyRegStackify::ID = 0;
64FunctionPass *llvm::createWebAssemblyRegStackify() {
65 return new WebAssemblyRegStackify();
66}
67
Dan Gohmanb0992da2015-11-20 02:19:12 +000068// Decorate the given instruction with implicit operands that enforce the
Dan Gohman8887d1f2015-12-25 00:31:02 +000069// expression stack ordering constraints for an instruction which is on
70// the expression stack.
71static void ImposeStackOrdering(MachineInstr *MI) {
Dan Gohman4da4abd2015-12-05 00:51:40 +000072 // Write the opaque EXPR_STACK register.
73 if (!MI->definesRegister(WebAssembly::EXPR_STACK))
74 MI->addOperand(MachineOperand::CreateReg(WebAssembly::EXPR_STACK,
75 /*isDef=*/true,
76 /*isImp=*/true));
Dan Gohman4da4abd2015-12-05 00:51:40 +000077
78 // Also read the opaque EXPR_STACK register.
Dan Gohmana712a6c2015-12-14 22:37:23 +000079 if (!MI->readsRegister(WebAssembly::EXPR_STACK))
80 MI->addOperand(MachineOperand::CreateReg(WebAssembly::EXPR_STACK,
81 /*isDef=*/false,
82 /*isImp=*/true));
Dan Gohmanb0992da2015-11-20 02:19:12 +000083}
84
Dan Gohman8887d1f2015-12-25 00:31:02 +000085// Test whether it's safe to move Def to just before Insert.
Dan Gohman81719f82015-11-25 16:55:01 +000086// TODO: Compute memory dependencies in a way that doesn't require always
87// walking the block.
88// TODO: Compute memory dependencies in a way that uses AliasAnalysis to be
89// more precise.
90static bool IsSafeToMove(const MachineInstr *Def, const MachineInstr *Insert,
Dan Gohman8887d1f2015-12-25 00:31:02 +000091 AliasAnalysis &AA, LiveIntervals &LIS,
92 MachineRegisterInfo &MRI) {
Dan Gohman391a98a2015-12-03 23:07:03 +000093 assert(Def->getParent() == Insert->getParent());
Dan Gohman81719f82015-11-25 16:55:01 +000094 bool SawStore = false, SawSideEffects = false;
95 MachineBasicBlock::const_iterator D(Def), I(Insert);
Dan Gohman8887d1f2015-12-25 00:31:02 +000096
97 // Check for register dependencies.
98 for (const MachineOperand &MO : Def->operands()) {
99 if (!MO.isReg() || MO.isUndef())
100 continue;
101 unsigned Reg = MO.getReg();
102
103 // If the register is dead here and at Insert, ignore it.
104 if (MO.isDead() && Insert->definesRegister(Reg) &&
105 !Insert->readsRegister(Reg))
106 continue;
107
108 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
109 // If the physical register is never modified, ignore it.
110 if (!MRI.isPhysRegModified(Reg))
111 continue;
112 // Otherwise, it's a physical register with unknown liveness.
113 return false;
114 }
115
116 // Ask LiveIntervals whether moving this virtual register use or def to
117 // Insert will change value numbers are seen.
118 const LiveInterval &LI = LIS.getInterval(Reg);
119 VNInfo *DefVNI = MO.isDef() ?
120 LI.getVNInfoAt(LIS.getInstructionIndex(Def).getRegSlot()) :
121 LI.getVNInfoBefore(LIS.getInstructionIndex(Def));
122 assert(DefVNI && "Instruction input missing value number");
123 VNInfo *InsVNI = LI.getVNInfoBefore(LIS.getInstructionIndex(Insert));
124 if (InsVNI && DefVNI != InsVNI)
125 return false;
126 }
127
128 // Check for memory dependencies and side effects.
Dan Gohman81719f82015-11-25 16:55:01 +0000129 for (--I; I != D; --I)
130 SawSideEffects |= I->isSafeToMove(&AA, SawStore);
Dan Gohman81719f82015-11-25 16:55:01 +0000131 return !(SawStore && Def->mayLoad() && !Def->isInvariantLoad(&AA)) &&
132 !(SawSideEffects && !Def->isSafeToMove(&AA, SawStore));
133}
134
Dan Gohman1462faa2015-11-16 16:18:28 +0000135bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) {
136 DEBUG(dbgs() << "********** Register Stackifying **********\n"
137 "********** Function: "
138 << MF.getName() << '\n');
139
140 bool Changed = false;
141 MachineRegisterInfo &MRI = MF.getRegInfo();
142 WebAssemblyFunctionInfo &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
Dan Gohman81719f82015-11-25 16:55:01 +0000143 AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults();
Dan Gohman8887d1f2015-12-25 00:31:02 +0000144 LiveIntervals &LIS = getAnalysis<LiveIntervals>();
Dan Gohmand70e5902015-12-08 03:30:42 +0000145
Dan Gohman1462faa2015-11-16 16:18:28 +0000146 // Walk the instructions from the bottom up. Currently we don't look past
147 // block boundaries, and the blocks aren't ordered so the block visitation
148 // order isn't significant, but we may want to change this in the future.
149 for (MachineBasicBlock &MBB : MF) {
Dan Gohman8f59cf72016-01-06 18:29:35 +0000150 // Don't use a range-based for loop, because we modify the list as we're
151 // iterating over it and the end iterator may change.
152 for (auto MII = MBB.rbegin(); MII != MBB.rend(); ++MII) {
153 MachineInstr *Insert = &*MII;
Dan Gohman1462faa2015-11-16 16:18:28 +0000154 // Don't nest anything inside a phi.
155 if (Insert->getOpcode() == TargetOpcode::PHI)
156 break;
157
Dan Gohman81719f82015-11-25 16:55:01 +0000158 // Don't nest anything inside an inline asm, because we don't have
159 // constraints for $push inputs.
160 if (Insert->getOpcode() == TargetOpcode::INLINEASM)
161 break;
162
Dan Gohman1462faa2015-11-16 16:18:28 +0000163 // Iterate through the inputs in reverse order, since we'll be pulling
Dan Gohman53d13992015-12-02 18:08:49 +0000164 // operands off the stack in LIFO order.
Dan Gohmanb0992da2015-11-20 02:19:12 +0000165 bool AnyStackified = false;
Dan Gohman1462faa2015-11-16 16:18:28 +0000166 for (MachineOperand &Op : reverse(Insert->uses())) {
167 // We're only interested in explicit virtual register operands.
Dan Gohman81719f82015-11-25 16:55:01 +0000168 if (!Op.isReg() || Op.isImplicit() || !Op.isUse())
Dan Gohman1462faa2015-11-16 16:18:28 +0000169 continue;
170
171 unsigned Reg = Op.getReg();
Dan Gohman1462faa2015-11-16 16:18:28 +0000172
173 // Only consider registers with a single definition.
174 // TODO: Eventually we may relax this, to stackify phi transfers.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000175 MachineInstr *Def = MRI.getUniqueVRegDef(Reg);
Dan Gohman1462faa2015-11-16 16:18:28 +0000176 if (!Def)
177 continue;
178
179 // There's no use in nesting implicit defs inside anything.
180 if (Def->getOpcode() == TargetOpcode::IMPLICIT_DEF)
181 continue;
182
Dan Gohman81719f82015-11-25 16:55:01 +0000183 // Don't nest an INLINE_ASM def into anything, because we don't have
184 // constraints for $pop outputs.
185 if (Def->getOpcode() == TargetOpcode::INLINEASM)
186 continue;
187
188 // Don't nest PHIs inside of anything.
189 if (Def->getOpcode() == TargetOpcode::PHI)
190 continue;
191
Dan Gohman4ba48162015-11-18 16:12:01 +0000192 // Argument instructions represent live-in registers and not real
193 // instructions.
194 if (Def->getOpcode() == WebAssembly::ARGUMENT_I32 ||
195 Def->getOpcode() == WebAssembly::ARGUMENT_I64 ||
196 Def->getOpcode() == WebAssembly::ARGUMENT_F32 ||
197 Def->getOpcode() == WebAssembly::ARGUMENT_F64)
198 continue;
199
Dan Gohman391a98a2015-12-03 23:07:03 +0000200 // Single-use expression trees require defs that have one use.
Dan Gohman1462faa2015-11-16 16:18:28 +0000201 // TODO: Eventually we'll relax this, to take advantage of set_local
202 // returning its result.
Dan Gohman81719f82015-11-25 16:55:01 +0000203 if (!MRI.hasOneUse(Reg))
Dan Gohman1462faa2015-11-16 16:18:28 +0000204 continue;
205
Dan Gohman391a98a2015-12-03 23:07:03 +0000206 // For now, be conservative and don't look across block boundaries.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000207 // TODO: Be more aggressive?
Dan Gohman391a98a2015-12-03 23:07:03 +0000208 if (Def->getParent() != &MBB)
Dan Gohman1462faa2015-11-16 16:18:28 +0000209 continue;
210
Dan Gohman81719f82015-11-25 16:55:01 +0000211 // Don't move instructions that have side effects or memory dependencies
212 // or other complications.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000213 if (!IsSafeToMove(Def, Insert, AA, LIS, MRI))
Dan Gohman1462faa2015-11-16 16:18:28 +0000214 continue;
215
216 Changed = true;
Dan Gohmanb0992da2015-11-20 02:19:12 +0000217 AnyStackified = true;
Dan Gohman81719f82015-11-25 16:55:01 +0000218 // Move the def down and nest it in the current instruction.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000219 MBB.splice(Insert, &MBB, Def);
220 LIS.handleMove(Def);
Dan Gohman81719f82015-11-25 16:55:01 +0000221 MFI.stackifyVReg(Reg);
Dan Gohman8887d1f2015-12-25 00:31:02 +0000222 ImposeStackOrdering(Def);
Dan Gohman81719f82015-11-25 16:55:01 +0000223 Insert = Def;
Dan Gohman1462faa2015-11-16 16:18:28 +0000224 }
Dan Gohmanb0992da2015-11-20 02:19:12 +0000225 if (AnyStackified)
Dan Gohman8f59cf72016-01-06 18:29:35 +0000226 ImposeStackOrdering(&*MII);
Dan Gohman1462faa2015-11-16 16:18:28 +0000227 }
228 }
229
Dan Gohmanb0992da2015-11-20 02:19:12 +0000230 // If we used EXPR_STACK anywhere, add it to the live-in sets everywhere
231 // so that it never looks like a use-before-def.
232 if (Changed) {
233 MF.getRegInfo().addLiveIn(WebAssembly::EXPR_STACK);
234 for (MachineBasicBlock &MBB : MF)
235 MBB.addLiveIn(WebAssembly::EXPR_STACK);
236 }
237
Dan Gohman7bafa0e2015-11-20 02:33:24 +0000238#ifndef NDEBUG
239 // Verify that pushes and pops are performed in FIFO order.
240 SmallVector<unsigned, 0> Stack;
241 for (MachineBasicBlock &MBB : MF) {
242 for (MachineInstr &MI : MBB) {
243 for (MachineOperand &MO : reverse(MI.explicit_operands())) {
Dan Gohman7a6b9822015-11-29 22:32:02 +0000244 if (!MO.isReg())
245 continue;
Dan Gohman7bafa0e2015-11-20 02:33:24 +0000246 unsigned VReg = MO.getReg();
247
Dan Gohman35bfb242015-12-04 23:22:35 +0000248 // Don't stackify physregs like SP or FP.
249 if (!TargetRegisterInfo::isVirtualRegister(VReg))
250 continue;
251
Dan Gohman7bafa0e2015-11-20 02:33:24 +0000252 if (MFI.isVRegStackified(VReg)) {
253 if (MO.isDef())
254 Stack.push_back(VReg);
255 else
256 assert(Stack.pop_back_val() == VReg);
257 }
258 }
259 }
260 // TODO: Generalize this code to support keeping values on the stack across
261 // basic block boundaries.
262 assert(Stack.empty());
263 }
264#endif
265
Dan Gohman1462faa2015-11-16 16:18:28 +0000266 return Changed;
267}