Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 1 | //===-- WebAssemblyRegStackify.cpp - Register Stackification --------------===// |
| 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 | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// This file implements a register stacking pass. |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 11 | /// |
| 12 | /// This pass reorders instructions to put register uses and defs in an order |
| 13 | /// such that they form single-use expression trees. Registers fitting this form |
| 14 | /// are then marked as "stackified", meaning references to them are replaced by |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 15 | /// "push" and "pop" from the value stack. |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 16 | /// |
Dan Gohman | 31448f1 | 2015-12-08 03:43:03 +0000 | [diff] [blame] | 17 | /// This is primarily a code size optimization, since temporary values on the |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 18 | /// value stack don't need to be named. |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 19 | /// |
| 20 | //===----------------------------------------------------------------------===// |
| 21 | |
Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 22 | #include "MCTargetDesc/WebAssemblyMCTargetDesc.h" // for WebAssembly::ARGUMENT_* |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 23 | #include "WebAssembly.h" |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 24 | #include "WebAssemblyDebugValueManager.h" |
Dan Gohman | 7a6b982 | 2015-11-29 22:32:02 +0000 | [diff] [blame] | 25 | #include "WebAssemblyMachineFunctionInfo.h" |
Dan Gohman | b6fd39a | 2016-01-19 16:59:23 +0000 | [diff] [blame] | 26 | #include "WebAssemblySubtarget.h" |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 27 | #include "WebAssemblyUtilities.h" |
Yury Delendik | 7c18d60 | 2018-09-25 18:59:34 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/SmallPtrSet.h" |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 29 | #include "llvm/Analysis/AliasAnalysis.h" |
Matthias Braun | f842297 | 2017-12-13 02:51:04 +0000 | [diff] [blame] | 30 | #include "llvm/CodeGen/LiveIntervals.h" |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 31 | #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 32 | #include "llvm/CodeGen/MachineDominators.h" |
| 33 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Dan Gohman | 82607f5 | 2017-02-24 23:46:05 +0000 | [diff] [blame] | 34 | #include "llvm/CodeGen/MachineModuleInfoImpls.h" |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 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" |
| 39 | using namespace llvm; |
| 40 | |
| 41 | #define DEBUG_TYPE "wasm-reg-stackify" |
| 42 | |
| 43 | namespace { |
| 44 | class WebAssemblyRegStackify final : public MachineFunctionPass { |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 45 | StringRef getPassName() const override { |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 46 | return "WebAssembly Register Stackify"; |
| 47 | } |
| 48 | |
| 49 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 50 | AU.setPreservesCFG(); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 51 | AU.addRequired<AAResultsWrapperPass>(); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 52 | AU.addRequired<MachineDominatorTree>(); |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 53 | AU.addRequired<LiveIntervals>(); |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 54 | AU.addPreserved<MachineBlockFrequencyInfo>(); |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 55 | AU.addPreserved<SlotIndexes>(); |
| 56 | AU.addPreserved<LiveIntervals>(); |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 57 | AU.addPreservedID(LiveVariablesID); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 58 | AU.addPreserved<MachineDominatorTree>(); |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 59 | MachineFunctionPass::getAnalysisUsage(AU); |
| 60 | } |
| 61 | |
| 62 | bool runOnMachineFunction(MachineFunction &MF) override; |
| 63 | |
| 64 | public: |
| 65 | static char ID; // Pass identification, replacement for typeid |
| 66 | WebAssemblyRegStackify() : MachineFunctionPass(ID) {} |
| 67 | }; |
| 68 | } // end anonymous namespace |
| 69 | |
| 70 | char WebAssemblyRegStackify::ID = 0; |
Jacob Gravelle | 4092645 | 2018-03-30 20:36:58 +0000 | [diff] [blame] | 71 | INITIALIZE_PASS(WebAssemblyRegStackify, DEBUG_TYPE, |
| 72 | "Reorder instructions to use the WebAssembly value stack", |
| 73 | false, false) |
| 74 | |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 75 | FunctionPass *llvm::createWebAssemblyRegStackify() { |
| 76 | return new WebAssemblyRegStackify(); |
| 77 | } |
| 78 | |
Dan Gohman | b0992da | 2015-11-20 02:19:12 +0000 | [diff] [blame] | 79 | // Decorate the given instruction with implicit operands that enforce the |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 80 | // expression stack ordering constraints for an instruction which is on |
| 81 | // the expression stack. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 82 | static void imposeStackOrdering(MachineInstr *MI) { |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 83 | // Write the opaque VALUE_STACK register. |
| 84 | if (!MI->definesRegister(WebAssembly::VALUE_STACK)) |
| 85 | MI->addOperand(MachineOperand::CreateReg(WebAssembly::VALUE_STACK, |
Dan Gohman | 4da4abd | 2015-12-05 00:51:40 +0000 | [diff] [blame] | 86 | /*isDef=*/true, |
| 87 | /*isImp=*/true)); |
Dan Gohman | 4da4abd | 2015-12-05 00:51:40 +0000 | [diff] [blame] | 88 | |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 89 | // Also read the opaque VALUE_STACK register. |
| 90 | if (!MI->readsRegister(WebAssembly::VALUE_STACK)) |
| 91 | MI->addOperand(MachineOperand::CreateReg(WebAssembly::VALUE_STACK, |
Dan Gohman | a712a6c | 2015-12-14 22:37:23 +0000 | [diff] [blame] | 92 | /*isDef=*/false, |
| 93 | /*isImp=*/true)); |
Dan Gohman | b0992da | 2015-11-20 02:19:12 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 96 | // Convert an IMPLICIT_DEF instruction into an instruction which defines |
| 97 | // a constant zero value. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 98 | static void convertImplicitDefToConstZero(MachineInstr *MI, |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 99 | MachineRegisterInfo &MRI, |
| 100 | const TargetInstrInfo *TII, |
Thomas Lively | feb18fe | 2018-12-20 04:20:32 +0000 | [diff] [blame] | 101 | MachineFunction &MF, |
| 102 | LiveIntervals &LIS) { |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 103 | assert(MI->getOpcode() == TargetOpcode::IMPLICIT_DEF); |
| 104 | |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 105 | const auto *RegClass = MRI.getRegClass(MI->getOperand(0).getReg()); |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 106 | if (RegClass == &WebAssembly::I32RegClass) { |
| 107 | MI->setDesc(TII->get(WebAssembly::CONST_I32)); |
| 108 | MI->addOperand(MachineOperand::CreateImm(0)); |
| 109 | } else if (RegClass == &WebAssembly::I64RegClass) { |
| 110 | MI->setDesc(TII->get(WebAssembly::CONST_I64)); |
| 111 | MI->addOperand(MachineOperand::CreateImm(0)); |
| 112 | } else if (RegClass == &WebAssembly::F32RegClass) { |
| 113 | MI->setDesc(TII->get(WebAssembly::CONST_F32)); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 114 | auto *Val = cast<ConstantFP>(Constant::getNullValue( |
David Blaikie | 2110924 | 2017-12-15 23:52:06 +0000 | [diff] [blame] | 115 | Type::getFloatTy(MF.getFunction().getContext()))); |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 116 | MI->addOperand(MachineOperand::CreateFPImm(Val)); |
| 117 | } else if (RegClass == &WebAssembly::F64RegClass) { |
| 118 | MI->setDesc(TII->get(WebAssembly::CONST_F64)); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 119 | auto *Val = cast<ConstantFP>(Constant::getNullValue( |
David Blaikie | 2110924 | 2017-12-15 23:52:06 +0000 | [diff] [blame] | 120 | Type::getDoubleTy(MF.getFunction().getContext()))); |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 121 | MI->addOperand(MachineOperand::CreateFPImm(Val)); |
Thomas Lively | 6ff31fe | 2018-10-31 23:50:53 +0000 | [diff] [blame] | 122 | } else if (RegClass == &WebAssembly::V128RegClass) { |
Thomas Lively | feb18fe | 2018-12-20 04:20:32 +0000 | [diff] [blame] | 123 | unsigned TempReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass); |
| 124 | MI->setDesc(TII->get(WebAssembly::SPLAT_v4i32)); |
| 125 | MI->addOperand(MachineOperand::CreateReg(TempReg, false)); |
| 126 | MachineInstr *Const = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(), |
| 127 | TII->get(WebAssembly::CONST_I32), TempReg) |
| 128 | .addImm(0); |
| 129 | LIS.InsertMachineInstrInMaps(*Const); |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 130 | } else { |
| 131 | llvm_unreachable("Unexpected reg class"); |
| 132 | } |
| 133 | } |
| 134 | |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 135 | // Determine whether a call to the callee referenced by |
| 136 | // MI->getOperand(CalleeOpNo) reads memory, writes memory, and/or has side |
| 137 | // effects. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 138 | static void queryCallee(const MachineInstr &MI, unsigned CalleeOpNo, bool &Read, |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 139 | bool &Write, bool &Effects, bool &StackPointer) { |
Dan Gohman | d08cd15 | 2016-05-17 21:14:26 +0000 | [diff] [blame] | 140 | // All calls can use the stack pointer. |
| 141 | StackPointer = true; |
| 142 | |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 143 | const MachineOperand &MO = MI.getOperand(CalleeOpNo); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 144 | if (MO.isGlobal()) { |
| 145 | const Constant *GV = MO.getGlobal(); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 146 | if (const auto *GA = dyn_cast<GlobalAlias>(GV)) |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 147 | if (!GA->isInterposable()) |
| 148 | GV = GA->getAliasee(); |
| 149 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 150 | if (const auto *F = dyn_cast<Function>(GV)) { |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 151 | if (!F->doesNotThrow()) |
| 152 | Effects = true; |
| 153 | if (F->doesNotAccessMemory()) |
| 154 | return; |
| 155 | if (F->onlyReadsMemory()) { |
| 156 | Read = true; |
| 157 | return; |
| 158 | } |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | // Assume the worst. |
| 163 | Write = true; |
| 164 | Read = true; |
| 165 | Effects = true; |
| 166 | } |
| 167 | |
Dan Gohman | d08cd15 | 2016-05-17 21:14:26 +0000 | [diff] [blame] | 168 | // Determine whether MI reads memory, writes memory, has side effects, |
Dan Gohman | 82607f5 | 2017-02-24 23:46:05 +0000 | [diff] [blame] | 169 | // and/or uses the stack pointer value. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 170 | static void query(const MachineInstr &MI, AliasAnalysis &AA, bool &Read, |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 171 | bool &Write, bool &Effects, bool &StackPointer) { |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 172 | assert(!MI.isTerminator()); |
Dan Gohman | 6c8f20d | 2016-05-23 17:42:57 +0000 | [diff] [blame] | 173 | |
Heejin Ahn | 5ef4d5f | 2018-05-31 22:25:54 +0000 | [diff] [blame] | 174 | if (MI.isDebugInstr() || MI.isPosition()) |
Dan Gohman | 6c8f20d | 2016-05-23 17:42:57 +0000 | [diff] [blame] | 175 | return; |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 176 | |
| 177 | // Check for loads. |
Justin Lebar | d98cf00 | 2016-09-10 01:03:20 +0000 | [diff] [blame] | 178 | if (MI.mayLoad() && !MI.isDereferenceableInvariantLoad(&AA)) |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 179 | Read = true; |
| 180 | |
| 181 | // Check for stores. |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 182 | if (MI.mayStore()) { |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 183 | Write = true; |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 184 | } else if (MI.hasOrderedMemoryRef()) { |
| 185 | switch (MI.getOpcode()) { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 186 | case WebAssembly::DIV_S_I32: |
| 187 | case WebAssembly::DIV_S_I64: |
| 188 | case WebAssembly::REM_S_I32: |
| 189 | case WebAssembly::REM_S_I64: |
| 190 | case WebAssembly::DIV_U_I32: |
| 191 | case WebAssembly::DIV_U_I64: |
| 192 | case WebAssembly::REM_U_I32: |
| 193 | case WebAssembly::REM_U_I64: |
| 194 | case WebAssembly::I32_TRUNC_S_F32: |
| 195 | case WebAssembly::I64_TRUNC_S_F32: |
| 196 | case WebAssembly::I32_TRUNC_S_F64: |
| 197 | case WebAssembly::I64_TRUNC_S_F64: |
| 198 | case WebAssembly::I32_TRUNC_U_F32: |
| 199 | case WebAssembly::I64_TRUNC_U_F32: |
| 200 | case WebAssembly::I32_TRUNC_U_F64: |
| 201 | case WebAssembly::I64_TRUNC_U_F64: |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 202 | // These instruction have hasUnmodeledSideEffects() returning true |
| 203 | // because they trap on overflow and invalid so they can't be arbitrarily |
| 204 | // moved, however hasOrderedMemoryRef() interprets this plus their lack |
| 205 | // of memoperands as having a potential unknown memory reference. |
| 206 | break; |
| 207 | default: |
Dan Gohman | 1054570 | 2016-05-17 22:24:18 +0000 | [diff] [blame] | 208 | // Record volatile accesses, unless it's a call, as calls are handled |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 209 | // specially below. |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 210 | if (!MI.isCall()) { |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 211 | Write = true; |
Dan Gohman | 1054570 | 2016-05-17 22:24:18 +0000 | [diff] [blame] | 212 | Effects = true; |
| 213 | } |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 214 | break; |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | // Check for side effects. |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 219 | if (MI.hasUnmodeledSideEffects()) { |
| 220 | switch (MI.getOpcode()) { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 221 | case WebAssembly::DIV_S_I32: |
| 222 | case WebAssembly::DIV_S_I64: |
| 223 | case WebAssembly::REM_S_I32: |
| 224 | case WebAssembly::REM_S_I64: |
| 225 | case WebAssembly::DIV_U_I32: |
| 226 | case WebAssembly::DIV_U_I64: |
| 227 | case WebAssembly::REM_U_I32: |
| 228 | case WebAssembly::REM_U_I64: |
| 229 | case WebAssembly::I32_TRUNC_S_F32: |
| 230 | case WebAssembly::I64_TRUNC_S_F32: |
| 231 | case WebAssembly::I32_TRUNC_S_F64: |
| 232 | case WebAssembly::I64_TRUNC_S_F64: |
| 233 | case WebAssembly::I32_TRUNC_U_F32: |
| 234 | case WebAssembly::I64_TRUNC_U_F32: |
| 235 | case WebAssembly::I32_TRUNC_U_F64: |
| 236 | case WebAssembly::I64_TRUNC_U_F64: |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 237 | // These instructions have hasUnmodeledSideEffects() returning true |
| 238 | // because they trap on overflow and invalid so they can't be arbitrarily |
| 239 | // moved, however in the specific case of register stackifying, it is safe |
| 240 | // to move them because overflow and invalid are Undefined Behavior. |
| 241 | break; |
| 242 | default: |
| 243 | Effects = true; |
| 244 | break; |
| 245 | } |
| 246 | } |
| 247 | |
Heejin Ahn | e73c7a1 | 2019-01-10 23:12:07 +0000 | [diff] [blame] | 248 | // Check for writes to __stack_pointer global. |
| 249 | if (MI.getOpcode() == WebAssembly::GLOBAL_SET_I32 && |
| 250 | strcmp(MI.getOperand(0).getSymbolName(), "__stack_pointer") == 0) |
| 251 | StackPointer = true; |
| 252 | |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 253 | // Analyze calls. |
Duncan P. N. Exon Smith | 500d046 | 2016-07-08 19:36:40 +0000 | [diff] [blame] | 254 | if (MI.isCall()) { |
Heejin Ahn | 56e79dd | 2018-08-28 17:49:39 +0000 | [diff] [blame] | 255 | unsigned CalleeOpNo = WebAssembly::getCalleeOpNo(MI); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 256 | queryCallee(MI, CalleeOpNo, Read, Write, Effects, StackPointer); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | |
| 260 | // Test whether Def is safe and profitable to rematerialize. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 261 | static bool shouldRematerialize(const MachineInstr &Def, AliasAnalysis &AA, |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 262 | const WebAssemblyInstrInfo *TII) { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 263 | return Def.isAsCheapAsAMove() && TII->isTriviallyReMaterializable(Def, &AA); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 266 | // Identify the definition for this register at this point. This is a |
| 267 | // generalization of MachineRegisterInfo::getUniqueVRegDef that uses |
| 268 | // LiveIntervals to handle complex cases. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 269 | static MachineInstr *getVRegDef(unsigned Reg, const MachineInstr *Insert, |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 270 | const MachineRegisterInfo &MRI, |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 271 | const LiveIntervals &LIS) { |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 272 | // Most registers are in SSA form here so we try a quick MRI query first. |
| 273 | if (MachineInstr *Def = MRI.getUniqueVRegDef(Reg)) |
| 274 | return Def; |
| 275 | |
| 276 | // MRI doesn't know what the Def is. Try asking LIS. |
| 277 | if (const VNInfo *ValNo = LIS.getInterval(Reg).getVNInfoBefore( |
| 278 | LIS.getInstructionIndex(*Insert))) |
| 279 | return LIS.getInstructionFromIndex(ValNo->def); |
| 280 | |
| 281 | return nullptr; |
| 282 | } |
| 283 | |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 284 | // Test whether Reg, as defined at Def, has exactly one use. This is a |
| 285 | // generalization of MachineRegisterInfo::hasOneUse that uses LiveIntervals |
| 286 | // to handle complex cases. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 287 | static bool hasOneUse(unsigned Reg, MachineInstr *Def, MachineRegisterInfo &MRI, |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 288 | MachineDominatorTree &MDT, LiveIntervals &LIS) { |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 289 | // Most registers are in SSA form here so we try a quick MRI query first. |
| 290 | if (MRI.hasOneUse(Reg)) |
| 291 | return true; |
| 292 | |
| 293 | bool HasOne = false; |
| 294 | const LiveInterval &LI = LIS.getInterval(Reg); |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 295 | const VNInfo *DefVNI = |
| 296 | LI.getVNInfoAt(LIS.getInstructionIndex(*Def).getRegSlot()); |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 297 | assert(DefVNI); |
Dominic Chen | a8a6382 | 2016-08-17 23:42:27 +0000 | [diff] [blame] | 298 | for (auto &I : MRI.use_nodbg_operands(Reg)) { |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 299 | const auto &Result = LI.Query(LIS.getInstructionIndex(*I.getParent())); |
| 300 | if (Result.valueIn() == DefVNI) { |
| 301 | if (!Result.isKill()) |
| 302 | return false; |
| 303 | if (HasOne) |
| 304 | return false; |
| 305 | HasOne = true; |
| 306 | } |
| 307 | } |
| 308 | return HasOne; |
| 309 | } |
| 310 | |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 311 | // Test whether it's safe to move Def to just before Insert. |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 312 | // TODO: Compute memory dependencies in a way that doesn't require always |
| 313 | // walking the block. |
| 314 | // TODO: Compute memory dependencies in a way that uses AliasAnalysis to be |
| 315 | // more precise. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 316 | static bool isSafeToMove(const MachineInstr *Def, const MachineInstr *Insert, |
Derek Schuff | e9e6891 | 2016-09-30 18:02:54 +0000 | [diff] [blame] | 317 | AliasAnalysis &AA, const MachineRegisterInfo &MRI) { |
Dan Gohman | 391a98a | 2015-12-03 23:07:03 +0000 | [diff] [blame] | 318 | assert(Def->getParent() == Insert->getParent()); |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 319 | |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 320 | // 'catch' and 'extract_exception' should be the first instruction of a BB and |
| 321 | // cannot move. |
| 322 | if (Def->getOpcode() == WebAssembly::CATCH || |
| 323 | Def->getOpcode() == WebAssembly::EXTRACT_EXCEPTION_I32) { |
| 324 | const MachineBasicBlock *MBB = Def->getParent(); |
| 325 | auto NextI = std::next(MachineBasicBlock::const_iterator(Def)); |
| 326 | for (auto E = MBB->end(); NextI != E && NextI->isDebugInstr(); ++NextI) |
| 327 | ; |
| 328 | if (NextI != Insert) |
| 329 | return false; |
| 330 | } |
| 331 | |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 332 | // Check for register dependencies. |
Derek Schuff | e9e6891 | 2016-09-30 18:02:54 +0000 | [diff] [blame] | 333 | SmallVector<unsigned, 4> MutableRegisters; |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 334 | for (const MachineOperand &MO : Def->operands()) { |
| 335 | if (!MO.isReg() || MO.isUndef()) |
| 336 | continue; |
| 337 | unsigned Reg = MO.getReg(); |
| 338 | |
| 339 | // If the register is dead here and at Insert, ignore it. |
| 340 | if (MO.isDead() && Insert->definesRegister(Reg) && |
| 341 | !Insert->readsRegister(Reg)) |
| 342 | continue; |
| 343 | |
| 344 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) { |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 345 | // Ignore ARGUMENTS; it's just used to keep the ARGUMENT_* instructions |
| 346 | // from moving down, and we've already checked for that. |
| 347 | if (Reg == WebAssembly::ARGUMENTS) |
| 348 | continue; |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 349 | // If the physical register is never modified, ignore it. |
| 350 | if (!MRI.isPhysRegModified(Reg)) |
| 351 | continue; |
| 352 | // Otherwise, it's a physical register with unknown liveness. |
| 353 | return false; |
| 354 | } |
| 355 | |
Derek Schuff | e9e6891 | 2016-09-30 18:02:54 +0000 | [diff] [blame] | 356 | // If one of the operands isn't in SSA form, it has different values at |
| 357 | // different times, and we need to make sure we don't move our use across |
| 358 | // a different def. |
| 359 | if (!MO.isDef() && !MRI.hasOneDef(Reg)) |
| 360 | MutableRegisters.push_back(Reg); |
Dan Gohman | 8887d1f | 2015-12-25 00:31:02 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Dan Gohman | d08cd15 | 2016-05-17 21:14:26 +0000 | [diff] [blame] | 363 | bool Read = false, Write = false, Effects = false, StackPointer = false; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 364 | query(*Def, AA, Read, Write, Effects, StackPointer); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 365 | |
| 366 | // If the instruction does not access memory and has no side effects, it has |
| 367 | // no additional dependencies. |
Derek Schuff | e9e6891 | 2016-09-30 18:02:54 +0000 | [diff] [blame] | 368 | bool HasMutableRegisters = !MutableRegisters.empty(); |
| 369 | if (!Read && !Write && !Effects && !StackPointer && !HasMutableRegisters) |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 370 | return true; |
| 371 | |
| 372 | // Scan through the intervening instructions between Def and Insert. |
| 373 | MachineBasicBlock::const_iterator D(Def), I(Insert); |
| 374 | for (--I; I != D; --I) { |
| 375 | bool InterveningRead = false; |
| 376 | bool InterveningWrite = false; |
| 377 | bool InterveningEffects = false; |
Dan Gohman | d08cd15 | 2016-05-17 21:14:26 +0000 | [diff] [blame] | 378 | bool InterveningStackPointer = false; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 379 | query(*I, AA, InterveningRead, InterveningWrite, InterveningEffects, |
Dan Gohman | d08cd15 | 2016-05-17 21:14:26 +0000 | [diff] [blame] | 380 | InterveningStackPointer); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 381 | if (Effects && InterveningEffects) |
| 382 | return false; |
| 383 | if (Read && InterveningWrite) |
| 384 | return false; |
| 385 | if (Write && (InterveningRead || InterveningWrite)) |
| 386 | return false; |
Dan Gohman | d08cd15 | 2016-05-17 21:14:26 +0000 | [diff] [blame] | 387 | if (StackPointer && InterveningStackPointer) |
| 388 | return false; |
Derek Schuff | e9e6891 | 2016-09-30 18:02:54 +0000 | [diff] [blame] | 389 | |
| 390 | for (unsigned Reg : MutableRegisters) |
| 391 | for (const MachineOperand &MO : I->operands()) |
| 392 | if (MO.isReg() && MO.isDef() && MO.getReg() == Reg) |
| 393 | return false; |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | return true; |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 399 | /// Test whether OneUse, a use of Reg, dominates all of Reg's other uses. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 400 | static bool oneUseDominatesOtherUses(unsigned Reg, const MachineOperand &OneUse, |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 401 | const MachineBasicBlock &MBB, |
| 402 | const MachineRegisterInfo &MRI, |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 403 | const MachineDominatorTree &MDT, |
Dan Gohman | 1054570 | 2016-05-17 22:24:18 +0000 | [diff] [blame] | 404 | LiveIntervals &LIS, |
| 405 | WebAssemblyFunctionInfo &MFI) { |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 406 | const LiveInterval &LI = LIS.getInterval(Reg); |
| 407 | |
| 408 | const MachineInstr *OneUseInst = OneUse.getParent(); |
| 409 | VNInfo *OneUseVNI = LI.getVNInfoBefore(LIS.getInstructionIndex(*OneUseInst)); |
| 410 | |
Dominic Chen | a8a6382 | 2016-08-17 23:42:27 +0000 | [diff] [blame] | 411 | for (const MachineOperand &Use : MRI.use_nodbg_operands(Reg)) { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 412 | if (&Use == &OneUse) |
| 413 | continue; |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 414 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 415 | const MachineInstr *UseInst = Use.getParent(); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 416 | VNInfo *UseVNI = LI.getVNInfoBefore(LIS.getInstructionIndex(*UseInst)); |
| 417 | |
| 418 | if (UseVNI != OneUseVNI) |
| 419 | continue; |
| 420 | |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 421 | if (UseInst == OneUseInst) { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 422 | // Another use in the same instruction. We need to ensure that the one |
| 423 | // selected use happens "before" it. |
| 424 | if (&OneUse > &Use) |
| 425 | return false; |
| 426 | } else { |
| 427 | // Test that the use is dominated by the one selected use. |
Dan Gohman | 1054570 | 2016-05-17 22:24:18 +0000 | [diff] [blame] | 428 | while (!MDT.dominates(OneUseInst, UseInst)) { |
| 429 | // Actually, dominating is over-conservative. Test that the use would |
| 430 | // happen after the one selected use in the stack evaluation order. |
| 431 | // |
Thomas Lively | 6a87dda | 2019-01-08 06:25:55 +0000 | [diff] [blame] | 432 | // This is needed as a consequence of using implicit local.gets for |
| 433 | // uses and implicit local.sets for defs. |
Dominic Chen | 4173fff | 2016-08-11 04:10:56 +0000 | [diff] [blame] | 434 | if (UseInst->getDesc().getNumDefs() == 0) |
Dan Gohman | 1054570 | 2016-05-17 22:24:18 +0000 | [diff] [blame] | 435 | return false; |
| 436 | const MachineOperand &MO = UseInst->getOperand(0); |
| 437 | if (!MO.isReg()) |
| 438 | return false; |
| 439 | unsigned DefReg = MO.getReg(); |
| 440 | if (!TargetRegisterInfo::isVirtualRegister(DefReg) || |
| 441 | !MFI.isVRegStackified(DefReg)) |
| 442 | return false; |
Yury Delendik | b3857e4 | 2018-09-26 23:49:21 +0000 | [diff] [blame] | 443 | assert(MRI.hasOneNonDBGUse(DefReg)); |
| 444 | const MachineOperand &NewUse = *MRI.use_nodbg_begin(DefReg); |
Dan Gohman | 1054570 | 2016-05-17 22:24:18 +0000 | [diff] [blame] | 445 | const MachineInstr *NewUseInst = NewUse.getParent(); |
| 446 | if (NewUseInst == OneUseInst) { |
| 447 | if (&OneUse > &NewUse) |
| 448 | return false; |
| 449 | break; |
| 450 | } |
| 451 | UseInst = NewUseInst; |
| 452 | } |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | return true; |
| 456 | } |
| 457 | |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 458 | /// Get the appropriate tee opcode for the given register class. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 459 | static unsigned getTeeOpcode(const TargetRegisterClass *RC) { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 460 | if (RC == &WebAssembly::I32RegClass) |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 461 | return WebAssembly::TEE_I32; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 462 | if (RC == &WebAssembly::I64RegClass) |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 463 | return WebAssembly::TEE_I64; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 464 | if (RC == &WebAssembly::F32RegClass) |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 465 | return WebAssembly::TEE_F32; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 466 | if (RC == &WebAssembly::F64RegClass) |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 467 | return WebAssembly::TEE_F64; |
Derek Schuff | 39bf39f | 2016-08-02 23:16:09 +0000 | [diff] [blame] | 468 | if (RC == &WebAssembly::V128RegClass) |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 469 | return WebAssembly::TEE_V128; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 470 | llvm_unreachable("Unexpected register class"); |
| 471 | } |
| 472 | |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 473 | // Shrink LI to its uses, cleaning up LI. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 474 | static void shrinkToUses(LiveInterval &LI, LiveIntervals &LIS) { |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 475 | if (LIS.shrinkToUses(&LI)) { |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 476 | SmallVector<LiveInterval *, 4> SplitLIs; |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 477 | LIS.splitSeparateComponents(LI, SplitLIs); |
| 478 | } |
| 479 | } |
| 480 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 481 | /// A single-use def in the same block with no intervening memory or register |
| 482 | /// dependencies; move the def down and nest it with the current instruction. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 483 | static MachineInstr *moveForSingleUse(unsigned Reg, MachineOperand &Op, |
Heejin Ahn | f208f63 | 2018-09-05 01:27:38 +0000 | [diff] [blame] | 484 | MachineInstr *Def, MachineBasicBlock &MBB, |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 485 | MachineInstr *Insert, LiveIntervals &LIS, |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 486 | WebAssemblyFunctionInfo &MFI, |
| 487 | MachineRegisterInfo &MRI) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 488 | LLVM_DEBUG(dbgs() << "Move for single use: "; Def->dump()); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 489 | |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 490 | WebAssemblyDebugValueManager DefDIs(Def); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 491 | MBB.splice(Insert, &MBB, Def); |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 492 | DefDIs.move(Insert); |
JF Bastien | 1afd1e2 | 2016-02-28 15:33:53 +0000 | [diff] [blame] | 493 | LIS.handleMove(*Def); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 494 | |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 495 | if (MRI.hasOneDef(Reg) && MRI.hasOneUse(Reg)) { |
| 496 | // No one else is using this register for anything so we can just stackify |
| 497 | // it in place. |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 498 | MFI.stackifyVReg(Reg); |
| 499 | } else { |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 500 | // The register may have unrelated uses or defs; create a new register for |
| 501 | // just our one def and use so that we can stackify it. |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 502 | unsigned NewReg = MRI.createVirtualRegister(MRI.getRegClass(Reg)); |
| 503 | Def->getOperand(0).setReg(NewReg); |
| 504 | Op.setReg(NewReg); |
| 505 | |
| 506 | // Tell LiveIntervals about the new register. |
| 507 | LIS.createAndComputeVirtRegInterval(NewReg); |
| 508 | |
| 509 | // Tell LiveIntervals about the changes to the old register. |
| 510 | LiveInterval &LI = LIS.getInterval(Reg); |
Dan Gohman | 6c8f20d | 2016-05-23 17:42:57 +0000 | [diff] [blame] | 511 | LI.removeSegment(LIS.getInstructionIndex(*Def).getRegSlot(), |
| 512 | LIS.getInstructionIndex(*Op.getParent()).getRegSlot(), |
| 513 | /*RemoveDeadValNo=*/true); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 514 | |
| 515 | MFI.stackifyVReg(NewReg); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 516 | |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 517 | DefDIs.updateReg(NewReg); |
Yury Delendik | 7c18d60 | 2018-09-25 18:59:34 +0000 | [diff] [blame] | 518 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 519 | LLVM_DEBUG(dbgs() << " - Replaced register: "; Def->dump()); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 520 | } |
| 521 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 522 | imposeStackOrdering(Def); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 523 | return Def; |
| 524 | } |
| 525 | |
| 526 | /// A trivially cloneable instruction; clone it and nest the new copy with the |
| 527 | /// current instruction. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 528 | static MachineInstr *rematerializeCheapDef( |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 529 | unsigned Reg, MachineOperand &Op, MachineInstr &Def, MachineBasicBlock &MBB, |
| 530 | MachineBasicBlock::instr_iterator Insert, LiveIntervals &LIS, |
| 531 | WebAssemblyFunctionInfo &MFI, MachineRegisterInfo &MRI, |
| 532 | const WebAssemblyInstrInfo *TII, const WebAssemblyRegisterInfo *TRI) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 533 | LLVM_DEBUG(dbgs() << "Rematerializing cheap def: "; Def.dump()); |
| 534 | LLVM_DEBUG(dbgs() << " - for use in "; Op.getParent()->dump()); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 535 | |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 536 | WebAssemblyDebugValueManager DefDIs(&Def); |
| 537 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 538 | unsigned NewReg = MRI.createVirtualRegister(MRI.getRegClass(Reg)); |
| 539 | TII->reMaterialize(MBB, Insert, NewReg, 0, Def, *TRI); |
| 540 | Op.setReg(NewReg); |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 541 | MachineInstr *Clone = &*std::prev(Insert); |
JF Bastien | 13d3b9b | 2016-02-27 16:38:23 +0000 | [diff] [blame] | 542 | LIS.InsertMachineInstrInMaps(*Clone); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 543 | LIS.createAndComputeVirtRegInterval(NewReg); |
| 544 | MFI.stackifyVReg(NewReg); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 545 | imposeStackOrdering(Clone); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 546 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 547 | LLVM_DEBUG(dbgs() << " - Cloned to "; Clone->dump()); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 548 | |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 549 | // Shrink the interval. |
| 550 | bool IsDead = MRI.use_empty(Reg); |
| 551 | if (!IsDead) { |
| 552 | LiveInterval &LI = LIS.getInterval(Reg); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 553 | shrinkToUses(LI, LIS); |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 554 | IsDead = !LI.liveAt(LIS.getInstructionIndex(Def).getDeadSlot()); |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 555 | } |
| 556 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 557 | // If that was the last use of the original, delete the original. |
Yury Delendik | 7c18d60 | 2018-09-25 18:59:34 +0000 | [diff] [blame] | 558 | // Move or clone corresponding DBG_VALUEs to the 'Insert' location. |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 559 | if (IsDead) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 560 | LLVM_DEBUG(dbgs() << " - Deleting original\n"); |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 561 | SlotIndex Idx = LIS.getInstructionIndex(Def).getRegSlot(); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 562 | LIS.removePhysRegDefAt(WebAssembly::ARGUMENTS, Idx); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 563 | LIS.removeInterval(Reg); |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 564 | LIS.RemoveMachineInstrFromMaps(Def); |
| 565 | Def.eraseFromParent(); |
Yury Delendik | 7c18d60 | 2018-09-25 18:59:34 +0000 | [diff] [blame] | 566 | |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 567 | DefDIs.move(&*Insert); |
| 568 | DefDIs.updateReg(NewReg); |
Yury Delendik | 7c18d60 | 2018-09-25 18:59:34 +0000 | [diff] [blame] | 569 | } else { |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 570 | DefDIs.clone(&*Insert, NewReg); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 571 | } |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 572 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 573 | return Clone; |
| 574 | } |
| 575 | |
| 576 | /// A multiple-use def in the same block with no intervening memory or register |
| 577 | /// dependencies; move the def down, nest it with the current instruction, and |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 578 | /// insert a tee to satisfy the rest of the uses. As an illustration, rewrite |
| 579 | /// this: |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 580 | /// |
| 581 | /// Reg = INST ... // Def |
| 582 | /// INST ..., Reg, ... // Insert |
| 583 | /// INST ..., Reg, ... |
| 584 | /// INST ..., Reg, ... |
| 585 | /// |
| 586 | /// to this: |
| 587 | /// |
Dan Gohman | 8aa237c | 2016-02-16 15:17:21 +0000 | [diff] [blame] | 588 | /// DefReg = INST ... // Def (to become the new Insert) |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 589 | /// TeeReg, Reg = TEE_... DefReg |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 590 | /// INST ..., TeeReg, ... // Insert |
Dan Gohman | 6c8f20d | 2016-05-23 17:42:57 +0000 | [diff] [blame] | 591 | /// INST ..., Reg, ... |
| 592 | /// INST ..., Reg, ... |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 593 | /// |
Thomas Lively | 6a87dda | 2019-01-08 06:25:55 +0000 | [diff] [blame] | 594 | /// with DefReg and TeeReg stackified. This eliminates a local.get from the |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 595 | /// resulting code. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 596 | static MachineInstr *moveAndTeeForMultiUse( |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 597 | unsigned Reg, MachineOperand &Op, MachineInstr *Def, MachineBasicBlock &MBB, |
| 598 | MachineInstr *Insert, LiveIntervals &LIS, WebAssemblyFunctionInfo &MFI, |
| 599 | MachineRegisterInfo &MRI, const WebAssemblyInstrInfo *TII) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 600 | LLVM_DEBUG(dbgs() << "Move and tee for multi-use:"; Def->dump()); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 601 | |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 602 | WebAssemblyDebugValueManager DefDIs(Def); |
| 603 | |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 604 | // Move Def into place. |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 605 | MBB.splice(Insert, &MBB, Def); |
JF Bastien | 1afd1e2 | 2016-02-28 15:33:53 +0000 | [diff] [blame] | 606 | LIS.handleMove(*Def); |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 607 | |
| 608 | // Create the Tee and attach the registers. |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 609 | const auto *RegClass = MRI.getRegClass(Reg); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 610 | unsigned TeeReg = MRI.createVirtualRegister(RegClass); |
Dan Gohman | 8aa237c | 2016-02-16 15:17:21 +0000 | [diff] [blame] | 611 | unsigned DefReg = MRI.createVirtualRegister(RegClass); |
Dan Gohman | 33e694a | 2016-05-12 04:19:09 +0000 | [diff] [blame] | 612 | MachineOperand &DefMO = Def->getOperand(0); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 613 | MachineInstr *Tee = BuildMI(MBB, Insert, Insert->getDebugLoc(), |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 614 | TII->get(getTeeOpcode(RegClass)), TeeReg) |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 615 | .addReg(Reg, RegState::Define) |
Dan Gohman | 33e694a | 2016-05-12 04:19:09 +0000 | [diff] [blame] | 616 | .addReg(DefReg, getUndefRegState(DefMO.isDead())); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 617 | Op.setReg(TeeReg); |
Dan Gohman | 33e694a | 2016-05-12 04:19:09 +0000 | [diff] [blame] | 618 | DefMO.setReg(DefReg); |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 619 | SlotIndex TeeIdx = LIS.InsertMachineInstrInMaps(*Tee).getRegSlot(); |
| 620 | SlotIndex DefIdx = LIS.getInstructionIndex(*Def).getRegSlot(); |
| 621 | |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 622 | DefDIs.move(Insert); |
Yury Delendik | 7c18d60 | 2018-09-25 18:59:34 +0000 | [diff] [blame] | 623 | |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 624 | // Tell LiveIntervals we moved the original vreg def from Def to Tee. |
| 625 | LiveInterval &LI = LIS.getInterval(Reg); |
| 626 | LiveInterval::iterator I = LI.FindSegmentContaining(DefIdx); |
| 627 | VNInfo *ValNo = LI.getVNInfoAt(DefIdx); |
| 628 | I->start = TeeIdx; |
| 629 | ValNo->def = TeeIdx; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 630 | shrinkToUses(LI, LIS); |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 631 | |
| 632 | // Finish stackifying the new regs. |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 633 | LIS.createAndComputeVirtRegInterval(TeeReg); |
Dan Gohman | 8aa237c | 2016-02-16 15:17:21 +0000 | [diff] [blame] | 634 | LIS.createAndComputeVirtRegInterval(DefReg); |
| 635 | MFI.stackifyVReg(DefReg); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 636 | MFI.stackifyVReg(TeeReg); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 637 | imposeStackOrdering(Def); |
| 638 | imposeStackOrdering(Tee); |
Dan Gohman | 12de0b9 | 2016-05-17 20:19:47 +0000 | [diff] [blame] | 639 | |
Yury Delendik | be24c02 | 2019-01-15 18:14:12 +0000 | [diff] [blame] | 640 | DefDIs.clone(Tee, DefReg); |
| 641 | DefDIs.clone(Insert, TeeReg); |
Yury Delendik | 7c18d60 | 2018-09-25 18:59:34 +0000 | [diff] [blame] | 642 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 643 | LLVM_DEBUG(dbgs() << " - Replaced register: "; Def->dump()); |
| 644 | LLVM_DEBUG(dbgs() << " - Tee instruction: "; Tee->dump()); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 645 | return Def; |
| 646 | } |
| 647 | |
| 648 | namespace { |
| 649 | /// A stack for walking the tree of instructions being built, visiting the |
| 650 | /// MachineOperands in DFS order. |
| 651 | class TreeWalkerState { |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 652 | using mop_iterator = MachineInstr::mop_iterator; |
| 653 | using mop_reverse_iterator = std::reverse_iterator<mop_iterator>; |
| 654 | using RangeTy = iterator_range<mop_reverse_iterator>; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 655 | SmallVector<RangeTy, 4> Worklist; |
| 656 | |
| 657 | public: |
| 658 | explicit TreeWalkerState(MachineInstr *Insert) { |
| 659 | const iterator_range<mop_iterator> &Range = Insert->explicit_uses(); |
| 660 | if (Range.begin() != Range.end()) |
| 661 | Worklist.push_back(reverse(Range)); |
| 662 | } |
| 663 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 664 | bool done() const { return Worklist.empty(); } |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 665 | |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 666 | MachineOperand &pop() { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 667 | RangeTy &Range = Worklist.back(); |
| 668 | MachineOperand &Op = *Range.begin(); |
| 669 | Range = drop_begin(Range, 1); |
| 670 | if (Range.begin() == Range.end()) |
| 671 | Worklist.pop_back(); |
| 672 | assert((Worklist.empty() || |
| 673 | Worklist.back().begin() != Worklist.back().end()) && |
| 674 | "Empty ranges shouldn't remain in the worklist"); |
| 675 | return Op; |
| 676 | } |
| 677 | |
| 678 | /// Push Instr's operands onto the stack to be visited. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 679 | void pushOperands(MachineInstr *Instr) { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 680 | const iterator_range<mop_iterator> &Range(Instr->explicit_uses()); |
| 681 | if (Range.begin() != Range.end()) |
| 682 | Worklist.push_back(reverse(Range)); |
| 683 | } |
| 684 | |
| 685 | /// Some of Instr's operands are on the top of the stack; remove them and |
| 686 | /// re-insert them starting from the beginning (because we've commuted them). |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 687 | void resetTopOperands(MachineInstr *Instr) { |
| 688 | assert(hasRemainingOperands(Instr) && |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 689 | "Reseting operands should only be done when the instruction has " |
| 690 | "an operand still on the stack"); |
| 691 | Worklist.back() = reverse(Instr->explicit_uses()); |
| 692 | } |
| 693 | |
| 694 | /// Test whether Instr has operands remaining to be visited at the top of |
| 695 | /// the stack. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 696 | bool hasRemainingOperands(const MachineInstr *Instr) const { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 697 | if (Worklist.empty()) |
| 698 | return false; |
| 699 | const RangeTy &Range = Worklist.back(); |
| 700 | return Range.begin() != Range.end() && Range.begin()->getParent() == Instr; |
| 701 | } |
Dan Gohman | fbfe5ec | 2016-01-28 03:59:09 +0000 | [diff] [blame] | 702 | |
| 703 | /// Test whether the given register is present on the stack, indicating an |
| 704 | /// operand in the tree that we haven't visited yet. Moving a definition of |
| 705 | /// Reg to a point in the tree after that would change its value. |
Dan Gohman | 1054570 | 2016-05-17 22:24:18 +0000 | [diff] [blame] | 706 | /// |
Thomas Lively | 6a87dda | 2019-01-08 06:25:55 +0000 | [diff] [blame] | 707 | /// This is needed as a consequence of using implicit local.gets for |
| 708 | /// uses and implicit local.sets for defs. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 709 | bool isOnStack(unsigned Reg) const { |
Dan Gohman | fbfe5ec | 2016-01-28 03:59:09 +0000 | [diff] [blame] | 710 | for (const RangeTy &Range : Worklist) |
| 711 | for (const MachineOperand &MO : Range) |
| 712 | if (MO.isReg() && MO.getReg() == Reg) |
| 713 | return true; |
| 714 | return false; |
| 715 | } |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 716 | }; |
| 717 | |
| 718 | /// State to keep track of whether commuting is in flight or whether it's been |
| 719 | /// tried for the current instruction and didn't work. |
| 720 | class CommutingState { |
| 721 | /// There are effectively three states: the initial state where we haven't |
Heejin Ahn | 99d3946 | 2018-12-26 22:27:46 +0000 | [diff] [blame] | 722 | /// started commuting anything and we don't know anything yet, the tentative |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 723 | /// state where we've commuted the operands of the current instruction and are |
Heejin Ahn | 99d3946 | 2018-12-26 22:27:46 +0000 | [diff] [blame] | 724 | /// revisiting it, and the declined state where we've reverted the operands |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 725 | /// back to their original order and will no longer commute it further. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 726 | bool TentativelyCommuting = false; |
| 727 | bool Declined = false; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 728 | |
| 729 | /// During the tentative state, these hold the operand indices of the commuted |
| 730 | /// operands. |
| 731 | unsigned Operand0, Operand1; |
| 732 | |
| 733 | public: |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 734 | /// Stackification for an operand was not successful due to ordering |
| 735 | /// constraints. If possible, and if we haven't already tried it and declined |
| 736 | /// it, commute Insert's operands and prepare to revisit it. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 737 | void maybeCommute(MachineInstr *Insert, TreeWalkerState &TreeWalker, |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 738 | const WebAssemblyInstrInfo *TII) { |
| 739 | if (TentativelyCommuting) { |
| 740 | assert(!Declined && |
| 741 | "Don't decline commuting until you've finished trying it"); |
| 742 | // Commuting didn't help. Revert it. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 743 | TII->commuteInstruction(*Insert, /*NewMI=*/false, Operand0, Operand1); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 744 | TentativelyCommuting = false; |
| 745 | Declined = true; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 746 | } else if (!Declined && TreeWalker.hasRemainingOperands(Insert)) { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 747 | Operand0 = TargetInstrInfo::CommuteAnyOperandIndex; |
| 748 | Operand1 = TargetInstrInfo::CommuteAnyOperandIndex; |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 749 | if (TII->findCommutedOpIndices(*Insert, Operand0, Operand1)) { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 750 | // Tentatively commute the operands and try again. |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 751 | TII->commuteInstruction(*Insert, /*NewMI=*/false, Operand0, Operand1); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 752 | TreeWalker.resetTopOperands(Insert); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 753 | TentativelyCommuting = true; |
| 754 | Declined = false; |
| 755 | } |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | /// Stackification for some operand was successful. Reset to the default |
| 760 | /// state. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 761 | void reset() { |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 762 | TentativelyCommuting = false; |
| 763 | Declined = false; |
| 764 | } |
| 765 | }; |
| 766 | } // end anonymous namespace |
| 767 | |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 768 | bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 769 | LLVM_DEBUG(dbgs() << "********** Register Stackifying **********\n" |
| 770 | "********** Function: " |
| 771 | << MF.getName() << '\n'); |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 772 | |
| 773 | bool Changed = false; |
| 774 | MachineRegisterInfo &MRI = MF.getRegInfo(); |
| 775 | WebAssemblyFunctionInfo &MFI = *MF.getInfo<WebAssemblyFunctionInfo>(); |
Dan Gohman | b6fd39a | 2016-01-19 16:59:23 +0000 | [diff] [blame] | 776 | const auto *TII = MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo(); |
| 777 | const auto *TRI = MF.getSubtarget<WebAssemblySubtarget>().getRegisterInfo(); |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 778 | AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 779 | auto &MDT = getAnalysis<MachineDominatorTree>(); |
| 780 | auto &LIS = getAnalysis<LiveIntervals>(); |
Dan Gohman | d70e590 | 2015-12-08 03:30:42 +0000 | [diff] [blame] | 781 | |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 782 | // Walk the instructions from the bottom up. Currently we don't look past |
| 783 | // block boundaries, and the blocks aren't ordered so the block visitation |
| 784 | // order isn't significant, but we may want to change this in the future. |
| 785 | for (MachineBasicBlock &MBB : MF) { |
Dan Gohman | 8f59cf7 | 2016-01-06 18:29:35 +0000 | [diff] [blame] | 786 | // Don't use a range-based for loop, because we modify the list as we're |
| 787 | // iterating over it and the end iterator may change. |
| 788 | for (auto MII = MBB.rbegin(); MII != MBB.rend(); ++MII) { |
| 789 | MachineInstr *Insert = &*MII; |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 790 | // Don't nest anything inside an inline asm, because we don't have |
| 791 | // constraints for $push inputs. |
Craig Topper | c45e39b | 2019-02-04 21:24:13 +0000 | [diff] [blame] | 792 | if (Insert->isInlineAsm()) |
Dan Gohman | 595e8ab | 2016-02-22 17:45:20 +0000 | [diff] [blame] | 793 | continue; |
| 794 | |
| 795 | // Ignore debugging intrinsics. |
Craig Topper | c45e39b | 2019-02-04 21:24:13 +0000 | [diff] [blame] | 796 | if (Insert->isDebugValue()) |
Dan Gohman | 595e8ab | 2016-02-22 17:45:20 +0000 | [diff] [blame] | 797 | continue; |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 798 | |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 799 | // Iterate through the inputs in reverse order, since we'll be pulling |
Dan Gohman | 53d1399 | 2015-12-02 18:08:49 +0000 | [diff] [blame] | 800 | // operands off the stack in LIFO order. |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 801 | CommutingState Commuting; |
| 802 | TreeWalkerState TreeWalker(Insert); |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 803 | while (!TreeWalker.done()) { |
| 804 | MachineOperand &Op = TreeWalker.pop(); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 805 | |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 806 | // We're only interested in explicit virtual register operands. |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 807 | if (!Op.isReg()) |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 808 | continue; |
| 809 | |
| 810 | unsigned Reg = Op.getReg(); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 811 | assert(Op.isUse() && "explicit_uses() should only iterate over uses"); |
| 812 | assert(!Op.isImplicit() && |
| 813 | "explicit_uses() should only iterate over explicit operands"); |
| 814 | if (TargetRegisterInfo::isPhysicalRegister(Reg)) |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 815 | continue; |
| 816 | |
Dan Gohman | ffc184b | 2016-10-03 22:32:21 +0000 | [diff] [blame] | 817 | // Identify the definition for this register at this point. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 818 | MachineInstr *Def = getVRegDef(Reg, Insert, MRI, LIS); |
Dan Gohman | 2644d74 | 2016-05-17 04:05:31 +0000 | [diff] [blame] | 819 | if (!Def) |
| 820 | continue; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 821 | |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 822 | // Don't nest an INLINE_ASM def into anything, because we don't have |
| 823 | // constraints for $pop outputs. |
Craig Topper | c45e39b | 2019-02-04 21:24:13 +0000 | [diff] [blame] | 824 | if (Def->isInlineAsm()) |
Dan Gohman | 81719f8 | 2015-11-25 16:55:01 +0000 | [diff] [blame] | 825 | continue; |
| 826 | |
Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 827 | // Argument instructions represent live-in registers and not real |
| 828 | // instructions. |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 829 | if (WebAssembly::isArgument(*Def)) |
Dan Gohman | 4ba4816 | 2015-11-18 16:12:01 +0000 | [diff] [blame] | 830 | continue; |
| 831 | |
Heejin Ahn | d6f4878 | 2019-01-30 03:21:57 +0000 | [diff] [blame] | 832 | // Currently catch's return value register cannot be stackified, because |
| 833 | // the wasm LLVM backend currently does not support live-in values |
| 834 | // entering blocks, which is a part of multi-value proposal. |
| 835 | // |
| 836 | // Once we support live-in values of wasm blocks, this can be: |
| 837 | // catch ; push except_ref value onto stack |
| 838 | // block except_ref -> i32 |
| 839 | // br_on_exn $__cpp_exception ; pop the except_ref value |
| 840 | // end_block |
| 841 | // |
| 842 | // But because we don't support it yet, the catch instruction's dst |
| 843 | // register should be assigned to a local to be propagated across |
| 844 | // 'block' boundary now. |
| 845 | // |
| 846 | // TODO Fix this once we support the multi-value proposal. |
| 847 | if (Def->getOpcode() == WebAssembly::CATCH) |
| 848 | continue; |
| 849 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 850 | // Decide which strategy to take. Prefer to move a single-use value |
Dan Gohman | 4fc4e42 | 2016-10-24 19:49:43 +0000 | [diff] [blame] | 851 | // over cloning it, and prefer cloning over introducing a tee. |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 852 | // For moving, we require the def to be in the same block as the use; |
| 853 | // this makes things simpler (LiveIntervals' handleMove function only |
| 854 | // supports intra-block moves) and it's MachineSink's job to catch all |
| 855 | // the sinking opportunities anyway. |
| 856 | bool SameBlock = Def->getParent() == &MBB; |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 857 | bool CanMove = SameBlock && isSafeToMove(Def, Insert, AA, MRI) && |
| 858 | !TreeWalker.isOnStack(Reg); |
| 859 | if (CanMove && hasOneUse(Reg, Def, MRI, MDT, LIS)) { |
| 860 | Insert = moveForSingleUse(Reg, Op, Def, MBB, Insert, LIS, MFI, MRI); |
| 861 | } else if (shouldRematerialize(*Def, AA, TII)) { |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 862 | Insert = |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 863 | rematerializeCheapDef(Reg, Op, *Def, MBB, Insert->getIterator(), |
Duncan P. N. Exon Smith | 9cfc75c | 2016-06-30 00:01:54 +0000 | [diff] [blame] | 864 | LIS, MFI, MRI, TII, TRI); |
Sam Clegg | cf2a9e2 | 2018-07-16 23:09:29 +0000 | [diff] [blame] | 865 | } else if (CanMove && |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 866 | oneUseDominatesOtherUses(Reg, Op, MBB, MRI, MDT, LIS, MFI)) { |
| 867 | Insert = moveAndTeeForMultiUse(Reg, Op, Def, MBB, Insert, LIS, MFI, |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 868 | MRI, TII); |
| 869 | } else { |
| 870 | // We failed to stackify the operand. If the problem was ordering |
| 871 | // constraints, Commuting may be able to help. |
| 872 | if (!CanMove && SameBlock) |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 873 | Commuting.maybeCommute(Insert, TreeWalker, TII); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 874 | // Proceed to the next operand. |
| 875 | continue; |
Dan Gohman | b6fd39a | 2016-01-19 16:59:23 +0000 | [diff] [blame] | 876 | } |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 877 | |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 878 | // If the instruction we just stackified is an IMPLICIT_DEF, convert it |
| 879 | // to a constant 0 so that the def is explicit, and the push/pop |
| 880 | // correspondence is maintained. |
| 881 | if (Insert->getOpcode() == TargetOpcode::IMPLICIT_DEF) |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 882 | convertImplicitDefToConstZero(Insert, MRI, TII, MF, LIS); |
Dan Gohman | e81021a | 2016-11-08 19:40:38 +0000 | [diff] [blame] | 883 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 884 | // We stackified an operand. Add the defining instruction's operands to |
| 885 | // the worklist stack now to continue to build an ever deeper tree. |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 886 | Commuting.reset(); |
| 887 | TreeWalker.pushOperands(Insert); |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 888 | } |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 889 | |
| 890 | // If we stackified any operands, skip over the tree to start looking for |
| 891 | // the next instruction we can build a tree on. |
| 892 | if (Insert != &*MII) { |
Heejin Ahn | 18c56a0 | 2019-02-04 19:13:39 +0000 | [diff] [blame] | 893 | imposeStackOrdering(&*MII); |
Eric Liu | c7e5a9c | 2016-09-12 09:35:59 +0000 | [diff] [blame] | 894 | MII = MachineBasicBlock::iterator(Insert).getReverse(); |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 895 | Changed = true; |
| 896 | } |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 897 | } |
| 898 | } |
| 899 | |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 900 | // If we used VALUE_STACK anywhere, add it to the live-in sets everywhere so |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 901 | // that it never looks like a use-before-def. |
Dan Gohman | b0992da | 2015-11-20 02:19:12 +0000 | [diff] [blame] | 902 | if (Changed) { |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 903 | MF.getRegInfo().addLiveIn(WebAssembly::VALUE_STACK); |
Dan Gohman | b0992da | 2015-11-20 02:19:12 +0000 | [diff] [blame] | 904 | for (MachineBasicBlock &MBB : MF) |
Dan Gohman | e040533 | 2016-10-03 22:43:53 +0000 | [diff] [blame] | 905 | MBB.addLiveIn(WebAssembly::VALUE_STACK); |
Dan Gohman | b0992da | 2015-11-20 02:19:12 +0000 | [diff] [blame] | 906 | } |
| 907 | |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 908 | #ifndef NDEBUG |
Dan Gohman | b6fd39a | 2016-01-19 16:59:23 +0000 | [diff] [blame] | 909 | // Verify that pushes and pops are performed in LIFO order. |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 910 | SmallVector<unsigned, 0> Stack; |
| 911 | for (MachineBasicBlock &MBB : MF) { |
| 912 | for (MachineInstr &MI : MBB) { |
Shiva Chen | 801bf7e | 2018-05-09 02:42:00 +0000 | [diff] [blame] | 913 | if (MI.isDebugInstr()) |
Dan Gohman | 0cfb5f8 | 2016-05-10 04:24:02 +0000 | [diff] [blame] | 914 | continue; |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 915 | for (MachineOperand &MO : reverse(MI.explicit_operands())) { |
Dan Gohman | 7a6b982 | 2015-11-29 22:32:02 +0000 | [diff] [blame] | 916 | if (!MO.isReg()) |
| 917 | continue; |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 918 | unsigned Reg = MO.getReg(); |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 919 | |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 920 | if (MFI.isVRegStackified(Reg)) { |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 921 | if (MO.isDef()) |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 922 | Stack.push_back(Reg); |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 923 | else |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 924 | assert(Stack.pop_back_val() == Reg && |
| 925 | "Register stack pop should be paired with a push"); |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 926 | } |
| 927 | } |
| 928 | } |
| 929 | // TODO: Generalize this code to support keeping values on the stack across |
| 930 | // basic block boundaries. |
Dan Gohman | adf2817 | 2016-01-28 01:22:44 +0000 | [diff] [blame] | 931 | assert(Stack.empty() && |
| 932 | "Register stack pushes and pops should be balanced"); |
Dan Gohman | 7bafa0e | 2015-11-20 02:33:24 +0000 | [diff] [blame] | 933 | } |
| 934 | #endif |
| 935 | |
Dan Gohman | 1462faa | 2015-11-16 16:18:28 +0000 | [diff] [blame] | 936 | return Changed; |
| 937 | } |