blob: ba2a0e20b2bcf55739a92ee269a5c1b0e7295cbc [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///
18/// This is primarily a code size optimiation, since temporary values on the
19/// expression don't need to be named.
20///
21//===----------------------------------------------------------------------===//
22
23#include "WebAssembly.h"
24#include "WebAssemblyMachineFunctionInfo.h"
Dan Gohman4ba48162015-11-18 16:12:01 +000025#include "MCTargetDesc/WebAssemblyMCTargetDesc.h" // for WebAssembly::ARGUMENT_*
Dan Gohman81719f82015-11-25 16:55:01 +000026#include "llvm/Analysis/AliasAnalysis.h"
Dan Gohman1462faa2015-11-16 16:18:28 +000027#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
28#include "llvm/CodeGen/MachineRegisterInfo.h"
29#include "llvm/CodeGen/Passes.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/raw_ostream.h"
32using namespace llvm;
33
34#define DEBUG_TYPE "wasm-reg-stackify"
35
36namespace {
37class WebAssemblyRegStackify final : public MachineFunctionPass {
38 const char *getPassName() const override {
39 return "WebAssembly Register Stackify";
40 }
41
42 void getAnalysisUsage(AnalysisUsage &AU) const override {
43 AU.setPreservesCFG();
Dan Gohman81719f82015-11-25 16:55:01 +000044 AU.addRequired<AAResultsWrapperPass>();
Dan Gohman1462faa2015-11-16 16:18:28 +000045 AU.addPreserved<MachineBlockFrequencyInfo>();
46 AU.addPreservedID(MachineDominatorsID);
47 MachineFunctionPass::getAnalysisUsage(AU);
48 }
49
50 bool runOnMachineFunction(MachineFunction &MF) override;
51
52public:
53 static char ID; // Pass identification, replacement for typeid
54 WebAssemblyRegStackify() : MachineFunctionPass(ID) {}
55};
56} // end anonymous namespace
57
58char WebAssemblyRegStackify::ID = 0;
59FunctionPass *llvm::createWebAssemblyRegStackify() {
60 return new WebAssemblyRegStackify();
61}
62
Dan Gohmanb0992da2015-11-20 02:19:12 +000063// Decorate the given instruction with implicit operands that enforce the
64// expression stack ordering constraints.
65static void ImposeStackOrdering(MachineInstr *MI) {
66 // Read and write the opaque EXPR_STACK register.
67 MI->addOperand(MachineOperand::CreateReg(WebAssembly::EXPR_STACK,
68 /*isDef=*/true,
69 /*isImp=*/true));
70 MI->addOperand(MachineOperand::CreateReg(WebAssembly::EXPR_STACK,
71 /*isDef=*/false,
72 /*isImp=*/true));
73}
74
Dan Gohman81719f82015-11-25 16:55:01 +000075// Test whether it's safe to move Def to just before Insert. Note that this
76// doesn't account for physical register dependencies, because WebAssembly
77// doesn't have any (other than special ones like EXPR_STACK).
78// TODO: Compute memory dependencies in a way that doesn't require always
79// walking the block.
80// TODO: Compute memory dependencies in a way that uses AliasAnalysis to be
81// more precise.
82static bool IsSafeToMove(const MachineInstr *Def, const MachineInstr *Insert,
83 AliasAnalysis &AA) {
84 bool SawStore = false, SawSideEffects = false;
85 MachineBasicBlock::const_iterator D(Def), I(Insert);
86 for (--I; I != D; --I)
87 SawSideEffects |= I->isSafeToMove(&AA, SawStore);
88
89 return !(SawStore && Def->mayLoad() && !Def->isInvariantLoad(&AA)) &&
90 !(SawSideEffects && !Def->isSafeToMove(&AA, SawStore));
91}
92
Dan Gohman1462faa2015-11-16 16:18:28 +000093bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) {
94 DEBUG(dbgs() << "********** Register Stackifying **********\n"
95 "********** Function: "
96 << MF.getName() << '\n');
97
98 bool Changed = false;
99 MachineRegisterInfo &MRI = MF.getRegInfo();
100 WebAssemblyFunctionInfo &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
Dan Gohman81719f82015-11-25 16:55:01 +0000101 AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults();
Dan Gohman1462faa2015-11-16 16:18:28 +0000102
103 // Walk the instructions from the bottom up. Currently we don't look past
104 // block boundaries, and the blocks aren't ordered so the block visitation
105 // order isn't significant, but we may want to change this in the future.
106 for (MachineBasicBlock &MBB : MF) {
107 for (MachineInstr &MI : reverse(MBB)) {
108 MachineInstr *Insert = &MI;
109
110 // Don't nest anything inside a phi.
111 if (Insert->getOpcode() == TargetOpcode::PHI)
112 break;
113
Dan Gohman81719f82015-11-25 16:55:01 +0000114 // Don't nest anything inside an inline asm, because we don't have
115 // constraints for $push inputs.
116 if (Insert->getOpcode() == TargetOpcode::INLINEASM)
117 break;
118
Dan Gohman1462faa2015-11-16 16:18:28 +0000119 // Iterate through the inputs in reverse order, since we'll be pulling
120 // operands off the stack in FIFO order.
Dan Gohmanb0992da2015-11-20 02:19:12 +0000121 bool AnyStackified = false;
Dan Gohman1462faa2015-11-16 16:18:28 +0000122 for (MachineOperand &Op : reverse(Insert->uses())) {
123 // We're only interested in explicit virtual register operands.
Dan Gohman81719f82015-11-25 16:55:01 +0000124 if (!Op.isReg() || Op.isImplicit() || !Op.isUse())
Dan Gohman1462faa2015-11-16 16:18:28 +0000125 continue;
126
127 unsigned Reg = Op.getReg();
128 if (!TargetRegisterInfo::isVirtualRegister(Reg))
129 continue;
130
131 // Only consider registers with a single definition.
132 // TODO: Eventually we may relax this, to stackify phi transfers.
133 MachineInstr *Def = MRI.getVRegDef(Reg);
134 if (!Def)
135 continue;
136
137 // There's no use in nesting implicit defs inside anything.
138 if (Def->getOpcode() == TargetOpcode::IMPLICIT_DEF)
139 continue;
140
Dan Gohman81719f82015-11-25 16:55:01 +0000141 // Don't nest an INLINE_ASM def into anything, because we don't have
142 // constraints for $pop outputs.
143 if (Def->getOpcode() == TargetOpcode::INLINEASM)
144 continue;
145
146 // Don't nest PHIs inside of anything.
147 if (Def->getOpcode() == TargetOpcode::PHI)
148 continue;
149
Dan Gohman4ba48162015-11-18 16:12:01 +0000150 // Argument instructions represent live-in registers and not real
151 // instructions.
152 if (Def->getOpcode() == WebAssembly::ARGUMENT_I32 ||
153 Def->getOpcode() == WebAssembly::ARGUMENT_I64 ||
154 Def->getOpcode() == WebAssembly::ARGUMENT_F32 ||
155 Def->getOpcode() == WebAssembly::ARGUMENT_F64)
156 continue;
157
Dan Gohman1462faa2015-11-16 16:18:28 +0000158 // Single-use expression trees require defs that have one use, or that
159 // they be trivially clonable.
160 // TODO: Eventually we'll relax this, to take advantage of set_local
161 // returning its result.
Dan Gohman81719f82015-11-25 16:55:01 +0000162 if (!MRI.hasOneUse(Reg))
Dan Gohman1462faa2015-11-16 16:18:28 +0000163 continue;
164
165 // For now, be conservative and don't look across block boundaries,
166 // unless we have something trivially clonable.
167 // TODO: Be more aggressive.
168 if (Def->getParent() != &MBB && !Def->isMoveImmediate())
169 continue;
170
Dan Gohman81719f82015-11-25 16:55:01 +0000171 // Don't move instructions that have side effects or memory dependencies
172 // or other complications.
173 if (!IsSafeToMove(Def, Insert, AA))
Dan Gohman1462faa2015-11-16 16:18:28 +0000174 continue;
175
176 Changed = true;
Dan Gohmanb0992da2015-11-20 02:19:12 +0000177 AnyStackified = true;
Dan Gohman81719f82015-11-25 16:55:01 +0000178 // Move the def down and nest it in the current instruction.
179 MBB.insert(MachineBasicBlock::instr_iterator(Insert),
180 Def->removeFromParent());
181 MFI.stackifyVReg(Reg);
182 ImposeStackOrdering(Def);
183 Insert = Def;
Dan Gohman1462faa2015-11-16 16:18:28 +0000184 }
Dan Gohmanb0992da2015-11-20 02:19:12 +0000185 if (AnyStackified)
186 ImposeStackOrdering(&MI);
Dan Gohman1462faa2015-11-16 16:18:28 +0000187 }
188 }
189
Dan Gohmanb0992da2015-11-20 02:19:12 +0000190 // If we used EXPR_STACK anywhere, add it to the live-in sets everywhere
191 // so that it never looks like a use-before-def.
192 if (Changed) {
193 MF.getRegInfo().addLiveIn(WebAssembly::EXPR_STACK);
194 for (MachineBasicBlock &MBB : MF)
195 MBB.addLiveIn(WebAssembly::EXPR_STACK);
196 }
197
Dan Gohman7bafa0e2015-11-20 02:33:24 +0000198#ifndef NDEBUG
199 // Verify that pushes and pops are performed in FIFO order.
200 SmallVector<unsigned, 0> Stack;
201 for (MachineBasicBlock &MBB : MF) {
202 for (MachineInstr &MI : MBB) {
203 for (MachineOperand &MO : reverse(MI.explicit_operands())) {
204 if (!MO.isReg()) continue;
205 unsigned VReg = MO.getReg();
206
207 if (MFI.isVRegStackified(VReg)) {
208 if (MO.isDef())
209 Stack.push_back(VReg);
210 else
211 assert(Stack.pop_back_val() == VReg);
212 }
213 }
214 }
215 // TODO: Generalize this code to support keeping values on the stack across
216 // basic block boundaries.
217 assert(Stack.empty());
218 }
219#endif
220
Dan Gohman1462faa2015-11-16 16:18:28 +0000221 return Changed;
222}