blob: 89ef5cdb2bef5a98d60c7e819abdae6f38f8b979 [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) {
150 for (MachineInstr &MI : reverse(MBB)) {
151 MachineInstr *Insert = &MI;
Dan Gohman1462faa2015-11-16 16:18:28 +0000152 // Don't nest anything inside a phi.
153 if (Insert->getOpcode() == TargetOpcode::PHI)
154 break;
155
Dan Gohman81719f82015-11-25 16:55:01 +0000156 // Don't nest anything inside an inline asm, because we don't have
157 // constraints for $push inputs.
158 if (Insert->getOpcode() == TargetOpcode::INLINEASM)
159 break;
160
Dan Gohman1462faa2015-11-16 16:18:28 +0000161 // Iterate through the inputs in reverse order, since we'll be pulling
Dan Gohman53d13992015-12-02 18:08:49 +0000162 // operands off the stack in LIFO order.
Dan Gohmanb0992da2015-11-20 02:19:12 +0000163 bool AnyStackified = false;
Dan Gohman1462faa2015-11-16 16:18:28 +0000164 for (MachineOperand &Op : reverse(Insert->uses())) {
165 // We're only interested in explicit virtual register operands.
Dan Gohman81719f82015-11-25 16:55:01 +0000166 if (!Op.isReg() || Op.isImplicit() || !Op.isUse())
Dan Gohman1462faa2015-11-16 16:18:28 +0000167 continue;
168
169 unsigned Reg = Op.getReg();
Dan Gohman1462faa2015-11-16 16:18:28 +0000170
171 // Only consider registers with a single definition.
172 // TODO: Eventually we may relax this, to stackify phi transfers.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000173 MachineInstr *Def = MRI.getUniqueVRegDef(Reg);
Dan Gohman1462faa2015-11-16 16:18:28 +0000174 if (!Def)
175 continue;
176
177 // There's no use in nesting implicit defs inside anything.
178 if (Def->getOpcode() == TargetOpcode::IMPLICIT_DEF)
179 continue;
180
Dan Gohman81719f82015-11-25 16:55:01 +0000181 // Don't nest an INLINE_ASM def into anything, because we don't have
182 // constraints for $pop outputs.
183 if (Def->getOpcode() == TargetOpcode::INLINEASM)
184 continue;
185
186 // Don't nest PHIs inside of anything.
187 if (Def->getOpcode() == TargetOpcode::PHI)
188 continue;
189
Dan Gohman4ba48162015-11-18 16:12:01 +0000190 // Argument instructions represent live-in registers and not real
191 // instructions.
192 if (Def->getOpcode() == WebAssembly::ARGUMENT_I32 ||
193 Def->getOpcode() == WebAssembly::ARGUMENT_I64 ||
194 Def->getOpcode() == WebAssembly::ARGUMENT_F32 ||
195 Def->getOpcode() == WebAssembly::ARGUMENT_F64)
196 continue;
197
Dan Gohman391a98a2015-12-03 23:07:03 +0000198 // Single-use expression trees require defs that have one use.
Dan Gohman1462faa2015-11-16 16:18:28 +0000199 // TODO: Eventually we'll relax this, to take advantage of set_local
200 // returning its result.
Dan Gohman81719f82015-11-25 16:55:01 +0000201 if (!MRI.hasOneUse(Reg))
Dan Gohman1462faa2015-11-16 16:18:28 +0000202 continue;
203
Dan Gohman391a98a2015-12-03 23:07:03 +0000204 // For now, be conservative and don't look across block boundaries.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000205 // TODO: Be more aggressive?
Dan Gohman391a98a2015-12-03 23:07:03 +0000206 if (Def->getParent() != &MBB)
Dan Gohman1462faa2015-11-16 16:18:28 +0000207 continue;
208
Dan Gohman81719f82015-11-25 16:55:01 +0000209 // Don't move instructions that have side effects or memory dependencies
210 // or other complications.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000211 if (!IsSafeToMove(Def, Insert, AA, LIS, MRI))
Dan Gohman1462faa2015-11-16 16:18:28 +0000212 continue;
213
214 Changed = true;
Dan Gohmanb0992da2015-11-20 02:19:12 +0000215 AnyStackified = true;
Dan Gohman81719f82015-11-25 16:55:01 +0000216 // Move the def down and nest it in the current instruction.
Dan Gohman8887d1f2015-12-25 00:31:02 +0000217 MBB.splice(Insert, &MBB, Def);
218 LIS.handleMove(Def);
Dan Gohman81719f82015-11-25 16:55:01 +0000219 MFI.stackifyVReg(Reg);
Dan Gohman8887d1f2015-12-25 00:31:02 +0000220 ImposeStackOrdering(Def);
Dan Gohman81719f82015-11-25 16:55:01 +0000221 Insert = Def;
Dan Gohman1462faa2015-11-16 16:18:28 +0000222 }
Dan Gohmanb0992da2015-11-20 02:19:12 +0000223 if (AnyStackified)
Dan Gohman8887d1f2015-12-25 00:31:02 +0000224 ImposeStackOrdering(&MI);
Dan Gohman1462faa2015-11-16 16:18:28 +0000225 }
226 }
227
Dan Gohmanb0992da2015-11-20 02:19:12 +0000228 // If we used EXPR_STACK anywhere, add it to the live-in sets everywhere
229 // so that it never looks like a use-before-def.
230 if (Changed) {
231 MF.getRegInfo().addLiveIn(WebAssembly::EXPR_STACK);
232 for (MachineBasicBlock &MBB : MF)
233 MBB.addLiveIn(WebAssembly::EXPR_STACK);
234 }
235
Dan Gohman7bafa0e2015-11-20 02:33:24 +0000236#ifndef NDEBUG
237 // Verify that pushes and pops are performed in FIFO order.
238 SmallVector<unsigned, 0> Stack;
239 for (MachineBasicBlock &MBB : MF) {
240 for (MachineInstr &MI : MBB) {
241 for (MachineOperand &MO : reverse(MI.explicit_operands())) {
Dan Gohman7a6b9822015-11-29 22:32:02 +0000242 if (!MO.isReg())
243 continue;
Dan Gohman7bafa0e2015-11-20 02:33:24 +0000244 unsigned VReg = MO.getReg();
245
Dan Gohman35bfb242015-12-04 23:22:35 +0000246 // Don't stackify physregs like SP or FP.
247 if (!TargetRegisterInfo::isVirtualRegister(VReg))
248 continue;
249
Dan Gohman7bafa0e2015-11-20 02:33:24 +0000250 if (MFI.isVRegStackified(VReg)) {
251 if (MO.isDef())
252 Stack.push_back(VReg);
253 else
254 assert(Stack.pop_back_val() == VReg);
255 }
256 }
257 }
258 // TODO: Generalize this code to support keeping values on the stack across
259 // basic block boundaries.
260 assert(Stack.empty());
261 }
262#endif
263
Dan Gohman1462faa2015-11-16 16:18:28 +0000264 return Changed;
265}