blob: 21122ba2b2ea9677c031003e96bf26c5b57fb5ad [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
11/// \brief This file implements an optimization pass using store result values.
12///
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///
20//===----------------------------------------------------------------------===//
21
22#include "WebAssembly.h"
23#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
24#include "WebAssemblyMachineFunctionInfo.h"
25#include "WebAssemblySubtarget.h"
26#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
27#include "llvm/CodeGen/MachineDominators.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-store-results"
35
36namespace {
37class WebAssemblyStoreResults final : public MachineFunctionPass {
38public:
39 static char ID; // Pass identification, replacement for typeid
40 WebAssemblyStoreResults() : MachineFunctionPass(ID) {}
41
42 const char *getPassName() const override {
43 return "WebAssembly Store Results";
44 }
45
46 void getAnalysisUsage(AnalysisUsage &AU) const override {
47 AU.setPreservesCFG();
48 AU.addRequired<MachineBlockFrequencyInfo>();
49 AU.addPreserved<MachineBlockFrequencyInfo>();
50 AU.addRequired<MachineDominatorTree>();
51 AU.addPreserved<MachineDominatorTree>();
52 MachineFunctionPass::getAnalysisUsage(AU);
53 }
54
55 bool runOnMachineFunction(MachineFunction &MF) override;
56
57private:
58};
59} // end anonymous namespace
60
61char WebAssemblyStoreResults::ID = 0;
62FunctionPass *llvm::createWebAssemblyStoreResults() {
63 return new WebAssemblyStoreResults();
64}
65
66bool WebAssemblyStoreResults::runOnMachineFunction(MachineFunction &MF) {
67 DEBUG({
68 dbgs() << "********** Store Results **********\n"
69 << "********** Function: " << MF.getName() << '\n';
70 });
71
72 const MachineRegisterInfo &MRI = MF.getRegInfo();
73 MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>();
74
Dan Gohmand70e5902015-12-08 03:30:42 +000075 assert(MRI.isSSA() && "StoreResults depends on SSA form");
76
Derek Schuff5268aaf2015-12-03 00:50:30 +000077 for (auto &MBB : MF) {
78 DEBUG(dbgs() << "Basic Block: " << MBB.getName() << '\n');
Dan Gohman81719f82015-11-25 16:55:01 +000079 for (auto &MI : MBB)
80 switch (MI.getOpcode()) {
81 default:
82 break;
83 case WebAssembly::STORE8_I32:
84 case WebAssembly::STORE16_I32:
85 case WebAssembly::STORE8_I64:
86 case WebAssembly::STORE16_I64:
87 case WebAssembly::STORE32_I64:
88 case WebAssembly::STORE_F32:
89 case WebAssembly::STORE_F64:
90 case WebAssembly::STORE_I32:
91 case WebAssembly::STORE_I64:
92 unsigned ToReg = MI.getOperand(0).getReg();
Derek Schuff9d779522015-12-05 00:26:39 +000093 unsigned FromReg = MI.getOperand(3).getReg();
Dan Gohman81719f82015-11-25 16:55:01 +000094 for (auto I = MRI.use_begin(FromReg), E = MRI.use_end(); I != E;) {
95 MachineOperand &O = *I++;
96 MachineInstr *Where = O.getParent();
Dan Gohman391a98a2015-12-03 23:07:03 +000097 if (Where->getOpcode() == TargetOpcode::PHI) {
98 // PHIs use their operands on their incoming CFG edges rather than
99 // in their parent blocks. Get the basic block paired with this use
100 // of FromReg and check that MI's block dominates it.
101 MachineBasicBlock *Pred =
102 Where->getOperand(&O - &Where->getOperand(0) + 1).getMBB();
103 if (!MDT.dominates(&MBB, Pred))
104 continue;
105 } else {
106 // For a non-PHI, check that MI dominates the instruction in the
107 // normal way.
108 if (&MI == Where || !MDT.dominates(&MI, Where))
109 continue;
110 }
111 DEBUG(dbgs() << "Setting operand " << O << " in " << *Where
112 << " from " << MI << "\n");
Dan Gohman81719f82015-11-25 16:55:01 +0000113 O.setReg(ToReg);
114 }
115 }
Derek Schuff5268aaf2015-12-03 00:50:30 +0000116 }
Dan Gohman81719f82015-11-25 16:55:01 +0000117
118 return true;
119}