Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 1 | //== WebAssemblyMemIntrinsicResults.cpp - Optimize memory intrinsic results ==// |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame^] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 10 | /// This file implements an optimization pass using memory intrinsic results. |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 11 | /// |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 12 | /// Calls to memory intrinsics (memcpy, memmove, memset) return the destination |
| 13 | /// address. They are in the form of |
| 14 | /// %dst_new = call @memcpy %dst, %src, %len |
| 15 | /// where %dst and %dst_new registers contain the same value. |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 16 | /// |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 17 | /// This is to enable an optimization wherein uses of the %dst register used in |
| 18 | /// the parameter can be replaced by uses of the %dst_new register used in the |
| 19 | /// result, making the %dst register more likely to be single-use, thus more |
| 20 | /// likely to be useful to register stackifying, and potentially also exposing |
| 21 | /// the call instruction itself to register stackifying. These both can reduce |
| 22 | /// local.get/local.set traffic. |
| 23 | /// |
| 24 | /// The LLVM intrinsics for these return void so they can't use the returned |
| 25 | /// attribute and consequently aren't handled by the OptimizeReturned pass. |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 26 | /// |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// |
| 28 | |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 29 | #include "MCTargetDesc/WebAssemblyMCTargetDesc.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 30 | #include "WebAssembly.h" |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 31 | #include "WebAssemblyMachineFunctionInfo.h" |
| 32 | #include "WebAssemblySubtarget.h" |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 33 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Matthias Braun | f842297 | 2017-12-13 02:51:04 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/LiveIntervals.h" |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 35 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
| 36 | #include "llvm/CodeGen/MachineDominators.h" |
| 37 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 38 | #include "llvm/CodeGen/Passes.h" |
| 39 | #include "llvm/Support/Debug.h" |
| 40 | #include "llvm/Support/raw_ostream.h" |
| 41 | using namespace llvm; |
| 42 | |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 43 | #define DEBUG_TYPE "wasm-mem-intrinsic-results" |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 44 | |
| 45 | namespace { |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 46 | class WebAssemblyMemIntrinsicResults final : public MachineFunctionPass { |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 47 | public: |
| 48 | static char ID; // Pass identification, replacement for typeid |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 49 | WebAssemblyMemIntrinsicResults() : MachineFunctionPass(ID) {} |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 50 | |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 51 | StringRef getPassName() const override { |
| 52 | return "WebAssembly Memory Intrinsic Results"; |
| 53 | } |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 54 | |
| 55 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 56 | AU.setPreservesCFG(); |
| 57 | AU.addRequired<MachineBlockFrequencyInfo>(); |
| 58 | AU.addPreserved<MachineBlockFrequencyInfo>(); |
| 59 | AU.addRequired<MachineDominatorTree>(); |
| 60 | AU.addPreserved<MachineDominatorTree>(); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 61 | AU.addRequired<LiveIntervals>(); |
| 62 | AU.addPreserved<SlotIndexes>(); |
| 63 | AU.addPreserved<LiveIntervals>(); |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 64 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 65 | MachineFunctionPass::getAnalysisUsage(AU); |
| 66 | } |
| 67 | |
| 68 | bool runOnMachineFunction(MachineFunction &MF) override; |
| 69 | |
| 70 | private: |
| 71 | }; |
| 72 | } // end anonymous namespace |
| 73 | |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 74 | char WebAssemblyMemIntrinsicResults::ID = 0; |
| 75 | INITIALIZE_PASS(WebAssemblyMemIntrinsicResults, DEBUG_TYPE, |
| 76 | "Optimize memory intrinsic result values for WebAssembly", |
| 77 | false, false) |
Jacob Gravelle | 4092645 | 2018-03-30 20:36:58 +0000 | [diff] [blame] | 78 | |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 79 | FunctionPass *llvm::createWebAssemblyMemIntrinsicResults() { |
| 80 | return new WebAssemblyMemIntrinsicResults(); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 81 | } |
| 82 | |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 83 | // Replace uses of FromReg with ToReg if they are dominated by MI. |
| 84 | static bool ReplaceDominatedUses(MachineBasicBlock &MBB, MachineInstr &MI, |
| 85 | unsigned FromReg, unsigned ToReg, |
| 86 | const MachineRegisterInfo &MRI, |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 87 | MachineDominatorTree &MDT, |
| 88 | LiveIntervals &LIS) { |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 89 | bool Changed = false; |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 90 | |
| 91 | LiveInterval *FromLI = &LIS.getInterval(FromReg); |
| 92 | LiveInterval *ToLI = &LIS.getInterval(ToReg); |
| 93 | |
| 94 | SlotIndex FromIdx = LIS.getInstructionIndex(MI).getRegSlot(); |
| 95 | VNInfo *FromVNI = FromLI->getVNInfoAt(FromIdx); |
| 96 | |
| 97 | SmallVector<SlotIndex, 4> Indices; |
| 98 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 99 | for (auto I = MRI.use_nodbg_begin(FromReg), E = MRI.use_nodbg_end(); |
| 100 | I != E;) { |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 101 | MachineOperand &O = *I++; |
| 102 | MachineInstr *Where = O.getParent(); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 103 | |
| 104 | // Check that MI dominates the instruction in the normal way. |
| 105 | if (&MI == Where || !MDT.dominates(&MI, Where)) |
| 106 | continue; |
| 107 | |
| 108 | // If this use gets a different value, skip it. |
| 109 | SlotIndex WhereIdx = LIS.getInstructionIndex(*Where); |
| 110 | VNInfo *WhereVNI = FromLI->getVNInfoAt(WhereIdx); |
| 111 | if (WhereVNI && WhereVNI != FromVNI) |
| 112 | continue; |
| 113 | |
| 114 | // Make sure ToReg isn't clobbered before it gets there. |
| 115 | VNInfo *ToVNI = ToLI->getVNInfoAt(WhereIdx); |
| 116 | if (ToVNI && ToVNI != FromVNI) |
| 117 | continue; |
| 118 | |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 119 | Changed = true; |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 120 | LLVM_DEBUG(dbgs() << "Setting operand " << O << " in " << *Where << " from " |
| 121 | << MI << "\n"); |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 122 | O.setReg(ToReg); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 123 | |
| 124 | // If the store's def was previously dead, it is no longer. |
Dan Gohman | 33e694a | 2016-05-12 04:19:09 +0000 | [diff] [blame] | 125 | if (!O.isUndef()) { |
| 126 | MI.getOperand(0).setIsDead(false); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 127 | |
Dan Gohman | 33e694a | 2016-05-12 04:19:09 +0000 | [diff] [blame] | 128 | Indices.push_back(WhereIdx.getRegSlot()); |
| 129 | } |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 130 | } |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 131 | |
| 132 | if (Changed) { |
| 133 | // Extend ToReg's liveness. |
| 134 | LIS.extendToIndices(*ToLI, Indices); |
| 135 | |
| 136 | // Shrink FromReg's liveness. |
| 137 | LIS.shrinkToUses(FromLI); |
| 138 | |
| 139 | // If we replaced all dominated uses, FromReg is now killed at MI. |
| 140 | if (!FromLI->liveAt(FromIdx.getDeadSlot())) |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 141 | MI.addRegisterKilled(FromReg, MBB.getParent() |
| 142 | ->getSubtarget<WebAssemblySubtarget>() |
| 143 | .getRegisterInfo()); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 146 | return Changed; |
| 147 | } |
| 148 | |
JF Bastien | a5b8ea0d | 2016-02-01 10:46:16 +0000 | [diff] [blame] | 149 | static bool optimizeCall(MachineBasicBlock &MBB, MachineInstr &MI, |
| 150 | const MachineRegisterInfo &MRI, |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 151 | MachineDominatorTree &MDT, LiveIntervals &LIS, |
JF Bastien | a5b8ea0d | 2016-02-01 10:46:16 +0000 | [diff] [blame] | 152 | const WebAssemblyTargetLowering &TLI, |
| 153 | const TargetLibraryInfo &LibInfo) { |
| 154 | MachineOperand &Op1 = MI.getOperand(1); |
| 155 | if (!Op1.isSymbol()) |
| 156 | return false; |
| 157 | |
| 158 | StringRef Name(Op1.getSymbolName()); |
| 159 | bool callReturnsInput = Name == TLI.getLibcallName(RTLIB::MEMCPY) || |
| 160 | Name == TLI.getLibcallName(RTLIB::MEMMOVE) || |
| 161 | Name == TLI.getLibcallName(RTLIB::MEMSET); |
| 162 | if (!callReturnsInput) |
| 163 | return false; |
| 164 | |
Derek Schuff | 4b320b7 | 2017-01-24 00:01:18 +0000 | [diff] [blame] | 165 | LibFunc Func; |
JF Bastien | a5b8ea0d | 2016-02-01 10:46:16 +0000 | [diff] [blame] | 166 | if (!LibInfo.getLibFunc(Name, Func)) |
| 167 | return false; |
| 168 | |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 169 | unsigned FromReg = MI.getOperand(2).getReg(); |
| 170 | unsigned ToReg = MI.getOperand(0).getReg(); |
| 171 | if (MRI.getRegClass(FromReg) != MRI.getRegClass(ToReg)) |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 172 | report_fatal_error("Memory Intrinsic results: call to builtin function " |
| 173 | "with wrong signature, from/to mismatch"); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 174 | return ReplaceDominatedUses(MBB, MI, FromReg, ToReg, MRI, MDT, LIS); |
JF Bastien | a5b8ea0d | 2016-02-01 10:46:16 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 177 | bool WebAssemblyMemIntrinsicResults::runOnMachineFunction(MachineFunction &MF) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 178 | LLVM_DEBUG({ |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 179 | dbgs() << "********** Memory Intrinsic Results **********\n" |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 180 | << "********** Function: " << MF.getName() << '\n'; |
| 181 | }); |
| 182 | |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 183 | MachineRegisterInfo &MRI = MF.getRegInfo(); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 184 | MachineDominatorTree &MDT = getAnalysis<MachineDominatorTree>(); |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 185 | const WebAssemblyTargetLowering &TLI = |
| 186 | *MF.getSubtarget<WebAssemblySubtarget>().getTargetLowering(); |
JF Bastien | a5b8ea0d | 2016-02-01 10:46:16 +0000 | [diff] [blame] | 187 | const auto &LibInfo = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 188 | LiveIntervals &LIS = getAnalysis<LiveIntervals>(); |
Dan Gohman | b949b9c | 2015-12-10 14:17:36 +0000 | [diff] [blame] | 189 | bool Changed = false; |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 190 | |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 191 | // We don't preserve SSA form. |
| 192 | MRI.leaveSSA(); |
| 193 | |
Heejin Ahn | 321d522 | 2019-01-08 22:35:18 +0000 | [diff] [blame] | 194 | assert(MRI.tracksLiveness() && |
| 195 | "MemIntrinsicResults expects liveness tracking"); |
Dan Gohman | d70e590 | 2015-12-08 03:30:42 +0000 | [diff] [blame] | 196 | |
Derek Schuff | 5268aaf | 2015-12-03 00:50:30 +0000 | [diff] [blame] | 197 | for (auto &MBB : MF) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 198 | LLVM_DEBUG(dbgs() << "Basic Block: " << MBB.getName() << '\n'); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 199 | for (auto &MI : MBB) |
| 200 | switch (MI.getOpcode()) { |
| 201 | default: |
| 202 | break; |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 203 | case WebAssembly::CALL_I32: |
JF Bastien | a5b8ea0d | 2016-02-01 10:46:16 +0000 | [diff] [blame] | 204 | case WebAssembly::CALL_I64: |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 205 | Changed |= optimizeCall(MBB, MI, MRI, MDT, LIS, TLI, LibInfo); |
JF Bastien | a5b8ea0d | 2016-02-01 10:46:16 +0000 | [diff] [blame] | 206 | break; |
Dan Gohman | bdf08d5 | 2016-01-26 04:01:11 +0000 | [diff] [blame] | 207 | } |
Derek Schuff | 5268aaf | 2015-12-03 00:50:30 +0000 | [diff] [blame] | 208 | } |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 209 | |
Dan Gohman | b949b9c | 2015-12-10 14:17:36 +0000 | [diff] [blame] | 210 | return Changed; |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 211 | } |