blob: 893e8484c4c6a46d2bd56f90c87612284043c02d [file] [log] [blame]
Dan Gohman81719f82015-11-25 16:55:01 +00001//===-- WebAssemblyStoreResults.cpp - Optimize using store result values --===//
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 implements an optimization pass using store result values.
Dan Gohman81719f82015-11-25 16:55:01 +000012///
Dan Gohman391a98a2015-12-03 23:07:03 +000013/// WebAssembly's store instructions return the stored value. This is to enable
14/// an optimization wherein uses of the stored value can be replaced by uses of
15/// the store's result value, making the stored value register more likely to
16/// be single-use, thus more likely to be useful to register stackifying, and
17/// potentially also exposing the store to register stackifying. These both can
18/// reduce get_local/set_local traffic.
Dan Gohman81719f82015-11-25 16:55:01 +000019///
Dan Gohmanbdf08d52016-01-26 04:01:11 +000020/// This pass also performs this optimization for memcpy, memmove, and memset
21/// calls, since the LLVM intrinsics for these return void so they can't use the
22/// returned attribute and consequently aren't handled by the OptimizeReturned
23/// pass.
24///
Dan Gohman81719f82015-11-25 16:55:01 +000025//===----------------------------------------------------------------------===//
26
Dan Gohman81719f82015-11-25 16:55:01 +000027#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000028#include "WebAssembly.h"
Dan Gohman81719f82015-11-25 16:55:01 +000029#include "WebAssemblyMachineFunctionInfo.h"
30#include "WebAssemblySubtarget.h"
Dan Gohmanbdf08d52016-01-26 04:01:11 +000031#include "llvm/Analysis/TargetLibraryInfo.h"
Matthias Braunf8422972017-12-13 02:51:04 +000032#include "llvm/CodeGen/LiveIntervals.h"
Dan Gohman81719f82015-11-25 16:55:01 +000033#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
34#include "llvm/CodeGen/MachineDominators.h"
35#include "llvm/CodeGen/MachineRegisterInfo.h"
36#include "llvm/CodeGen/Passes.h"
37#include "llvm/Support/Debug.h"
38#include "llvm/Support/raw_ostream.h"
39using namespace llvm;
40
41#define DEBUG_TYPE "wasm-store-results"
42
43namespace {
44class WebAssemblyStoreResults final : public MachineFunctionPass {
45public:
46 static char ID; // Pass identification, replacement for typeid
47 WebAssemblyStoreResults() : MachineFunctionPass(ID) {}
48
Mehdi Amini117296c2016-10-01 02:56:57 +000049 StringRef getPassName() const override { return "WebAssembly Store Results"; }
Dan Gohman81719f82015-11-25 16:55:01 +000050
51 void getAnalysisUsage(AnalysisUsage &AU) const override {
52 AU.setPreservesCFG();
53 AU.addRequired<MachineBlockFrequencyInfo>();
54 AU.addPreserved<MachineBlockFrequencyInfo>();
55 AU.addRequired<MachineDominatorTree>();
56 AU.addPreserved<MachineDominatorTree>();
Dan Gohman0cfb5f82016-05-10 04:24:02 +000057 AU.addRequired<LiveIntervals>();
58 AU.addPreserved<SlotIndexes>();
59 AU.addPreserved<LiveIntervals>();
Dan Gohmanbdf08d52016-01-26 04:01:11 +000060 AU.addRequired<TargetLibraryInfoWrapperPass>();
Dan Gohman81719f82015-11-25 16:55:01 +000061 MachineFunctionPass::getAnalysisUsage(AU);
62 }
63
64 bool runOnMachineFunction(MachineFunction &MF) override;
65
66private:
67};
68} // end anonymous namespace
69
70char WebAssemblyStoreResults::ID = 0;
Jacob Gravelle40926452018-03-30 20:36:58 +000071INITIALIZE_PASS(WebAssemblyStoreResults, DEBUG_TYPE,
72 "Optimize store result values for WebAssembly", false, false)
73
Dan Gohman81719f82015-11-25 16:55:01 +000074FunctionPass *llvm::createWebAssemblyStoreResults() {
75 return new WebAssemblyStoreResults();
76}
77
Dan Gohmanbdf08d52016-01-26 04:01:11 +000078// Replace uses of FromReg with ToReg if they are dominated by MI.
79static bool ReplaceDominatedUses(MachineBasicBlock &MBB, MachineInstr &MI,
80 unsigned FromReg, unsigned ToReg,
81 const MachineRegisterInfo &MRI,
Dan Gohman0cfb5f82016-05-10 04:24:02 +000082 MachineDominatorTree &MDT,
83 LiveIntervals &LIS) {
Dan Gohmanbdf08d52016-01-26 04:01:11 +000084 bool Changed = false;
Dan Gohman0cfb5f82016-05-10 04:24:02 +000085
86 LiveInterval *FromLI = &LIS.getInterval(FromReg);
87 LiveInterval *ToLI = &LIS.getInterval(ToReg);
88
89 SlotIndex FromIdx = LIS.getInstructionIndex(MI).getRegSlot();
90 VNInfo *FromVNI = FromLI->getVNInfoAt(FromIdx);
91
92 SmallVector<SlotIndex, 4> Indices;
93
Dominic Chena8a63822016-08-17 23:42:27 +000094 for (auto I = MRI.use_nodbg_begin(FromReg), E = MRI.use_nodbg_end(); I != E;) {
Dan Gohmanbdf08d52016-01-26 04:01:11 +000095 MachineOperand &O = *I++;
96 MachineInstr *Where = O.getParent();
Dan Gohman0cfb5f82016-05-10 04:24:02 +000097
98 // Check that MI dominates the instruction in the normal way.
99 if (&MI == Where || !MDT.dominates(&MI, Where))
100 continue;
101
102 // If this use gets a different value, skip it.
103 SlotIndex WhereIdx = LIS.getInstructionIndex(*Where);
104 VNInfo *WhereVNI = FromLI->getVNInfoAt(WhereIdx);
105 if (WhereVNI && WhereVNI != FromVNI)
106 continue;
107
108 // Make sure ToReg isn't clobbered before it gets there.
109 VNInfo *ToVNI = ToLI->getVNInfoAt(WhereIdx);
110 if (ToVNI && ToVNI != FromVNI)
111 continue;
112
Dan Gohmanbdf08d52016-01-26 04:01:11 +0000113 Changed = true;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000114 LLVM_DEBUG(dbgs() << "Setting operand " << O << " in " << *Where << " from "
115 << MI << "\n");
Dan Gohmanbdf08d52016-01-26 04:01:11 +0000116 O.setReg(ToReg);
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000117
118 // If the store's def was previously dead, it is no longer.
Dan Gohman33e694a2016-05-12 04:19:09 +0000119 if (!O.isUndef()) {
120 MI.getOperand(0).setIsDead(false);
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000121
Dan Gohman33e694a2016-05-12 04:19:09 +0000122 Indices.push_back(WhereIdx.getRegSlot());
123 }
Dan Gohmanbdf08d52016-01-26 04:01:11 +0000124 }
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000125
126 if (Changed) {
127 // Extend ToReg's liveness.
128 LIS.extendToIndices(*ToLI, Indices);
129
130 // Shrink FromReg's liveness.
131 LIS.shrinkToUses(FromLI);
132
133 // If we replaced all dominated uses, FromReg is now killed at MI.
134 if (!FromLI->liveAt(FromIdx.getDeadSlot()))
135 MI.addRegisterKilled(FromReg,
136 MBB.getParent()->getSubtarget<WebAssemblySubtarget>()
137 .getRegisterInfo());
138 }
139
Dan Gohmanbdf08d52016-01-26 04:01:11 +0000140 return Changed;
141}
142
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000143static bool optimizeCall(MachineBasicBlock &MBB, MachineInstr &MI,
144 const MachineRegisterInfo &MRI,
145 MachineDominatorTree &MDT,
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000146 LiveIntervals &LIS,
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000147 const WebAssemblyTargetLowering &TLI,
148 const TargetLibraryInfo &LibInfo) {
149 MachineOperand &Op1 = MI.getOperand(1);
150 if (!Op1.isSymbol())
151 return false;
152
153 StringRef Name(Op1.getSymbolName());
154 bool callReturnsInput = Name == TLI.getLibcallName(RTLIB::MEMCPY) ||
155 Name == TLI.getLibcallName(RTLIB::MEMMOVE) ||
156 Name == TLI.getLibcallName(RTLIB::MEMSET);
157 if (!callReturnsInput)
158 return false;
159
Derek Schuff4b320b72017-01-24 00:01:18 +0000160 LibFunc Func;
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000161 if (!LibInfo.getLibFunc(Name, Func))
162 return false;
163
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000164 unsigned FromReg = MI.getOperand(2).getReg();
165 unsigned ToReg = MI.getOperand(0).getReg();
166 if (MRI.getRegClass(FromReg) != MRI.getRegClass(ToReg))
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000167 report_fatal_error("Store results: call to builtin function with wrong "
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000168 "signature, from/to mismatch");
169 return ReplaceDominatedUses(MBB, MI, FromReg, ToReg, MRI, MDT, LIS);
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000170}
171
Dan Gohman81719f82015-11-25 16:55:01 +0000172bool WebAssemblyStoreResults::runOnMachineFunction(MachineFunction &MF) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000173 LLVM_DEBUG({
Dan Gohman81719f82015-11-25 16:55:01 +0000174 dbgs() << "********** Store Results **********\n"
175 << "********** Function: " << MF.getName() << '\n';
176 });
177
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000178 MachineRegisterInfo &MRI = MF.getRegInfo();
Dan Gohman81719f82015-11-25 16:55:01 +0000179 MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>();
Dan Gohmanbdf08d52016-01-26 04:01:11 +0000180 const WebAssemblyTargetLowering &TLI =
181 *MF.getSubtarget<WebAssemblySubtarget>().getTargetLowering();
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000182 const auto &LibInfo = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000183 LiveIntervals &LIS = getAnalysis<LiveIntervals>();
Dan Gohmanb949b9c2015-12-10 14:17:36 +0000184 bool Changed = false;
Dan Gohman81719f82015-11-25 16:55:01 +0000185
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000186 // We don't preserve SSA form.
187 MRI.leaveSSA();
188
189 assert(MRI.tracksLiveness() && "StoreResults expects liveness tracking");
Dan Gohmand70e5902015-12-08 03:30:42 +0000190
Derek Schuff5268aaf2015-12-03 00:50:30 +0000191 for (auto &MBB : MF) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000192 LLVM_DEBUG(dbgs() << "Basic Block: " << MBB.getName() << '\n');
Dan Gohman81719f82015-11-25 16:55:01 +0000193 for (auto &MI : MBB)
194 switch (MI.getOpcode()) {
195 default:
196 break;
Dan Gohmanbdf08d52016-01-26 04:01:11 +0000197 case WebAssembly::CALL_I32:
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000198 case WebAssembly::CALL_I64:
Dan Gohman0cfb5f82016-05-10 04:24:02 +0000199 Changed |= optimizeCall(MBB, MI, MRI, MDT, LIS, TLI, LibInfo);
JF Bastiena5b8ea0d2016-02-01 10:46:16 +0000200 break;
Dan Gohmanbdf08d52016-01-26 04:01:11 +0000201 }
Derek Schuff5268aaf2015-12-03 00:50:30 +0000202 }
Dan Gohman81719f82015-11-25 16:55:01 +0000203
Dan Gohmanb949b9c2015-12-10 14:17:36 +0000204 return Changed;
Dan Gohman81719f82015-11-25 16:55:01 +0000205}