11462faadSDan Gohman //===-- WebAssemblyRegStackify.cpp - Register Stackification --------------===// 21462faadSDan Gohman // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 61462faadSDan Gohman // 71462faadSDan Gohman //===----------------------------------------------------------------------===// 81462faadSDan Gohman /// 91462faadSDan Gohman /// \file 105f8f34e4SAdrian Prantl /// This file implements a register stacking pass. 111462faadSDan Gohman /// 121462faadSDan Gohman /// This pass reorders instructions to put register uses and defs in an order 131462faadSDan Gohman /// such that they form single-use expression trees. Registers fitting this form 141462faadSDan Gohman /// are then marked as "stackified", meaning references to them are replaced by 15e040533eSDan Gohman /// "push" and "pop" from the value stack. 161462faadSDan Gohman /// 1731448f16SDan Gohman /// This is primarily a code size optimization, since temporary values on the 18e040533eSDan Gohman /// value stack don't need to be named. 191462faadSDan Gohman /// 201462faadSDan Gohman //===----------------------------------------------------------------------===// 211462faadSDan Gohman 224ba4816bSDan Gohman #include "MCTargetDesc/WebAssemblyMCTargetDesc.h" // for WebAssembly::ARGUMENT_* 236bda14b3SChandler Carruth #include "WebAssembly.h" 24be24c020SYury Delendik #include "WebAssemblyDebugValueManager.h" 257a6b9825SDan Gohman #include "WebAssemblyMachineFunctionInfo.h" 26b6fd39a3SDan Gohman #include "WebAssemblySubtarget.h" 274fc4e42dSDan Gohman #include "WebAssemblyUtilities.h" 287c18d608SYury Delendik #include "llvm/ADT/SmallPtrSet.h" 2981719f85SDan Gohman #include "llvm/Analysis/AliasAnalysis.h" 30f842297dSMatthias Braun #include "llvm/CodeGen/LiveIntervals.h" 311462faadSDan Gohman #include "llvm/CodeGen/MachineBlockFrequencyInfo.h" 32adf28177SDan Gohman #include "llvm/CodeGen/MachineDominators.h" 33adf28177SDan Gohman #include "llvm/CodeGen/MachineInstrBuilder.h" 3482607f56SDan Gohman #include "llvm/CodeGen/MachineModuleInfoImpls.h" 351462faadSDan Gohman #include "llvm/CodeGen/MachineRegisterInfo.h" 361462faadSDan Gohman #include "llvm/CodeGen/Passes.h" 371462faadSDan Gohman #include "llvm/Support/Debug.h" 381462faadSDan Gohman #include "llvm/Support/raw_ostream.h" 391462faadSDan Gohman using namespace llvm; 401462faadSDan Gohman 411462faadSDan Gohman #define DEBUG_TYPE "wasm-reg-stackify" 421462faadSDan Gohman 431462faadSDan Gohman namespace { 441462faadSDan Gohman class WebAssemblyRegStackify final : public MachineFunctionPass { 45117296c0SMehdi Amini StringRef getPassName() const override { 461462faadSDan Gohman return "WebAssembly Register Stackify"; 471462faadSDan Gohman } 481462faadSDan Gohman 491462faadSDan Gohman void getAnalysisUsage(AnalysisUsage &AU) const override { 501462faadSDan Gohman AU.setPreservesCFG(); 5181719f85SDan Gohman AU.addRequired<AAResultsWrapperPass>(); 52adf28177SDan Gohman AU.addRequired<MachineDominatorTree>(); 538887d1faSDan Gohman AU.addRequired<LiveIntervals>(); 541462faadSDan Gohman AU.addPreserved<MachineBlockFrequencyInfo>(); 558887d1faSDan Gohman AU.addPreserved<SlotIndexes>(); 568887d1faSDan Gohman AU.addPreserved<LiveIntervals>(); 578887d1faSDan Gohman AU.addPreservedID(LiveVariablesID); 58adf28177SDan Gohman AU.addPreserved<MachineDominatorTree>(); 591462faadSDan Gohman MachineFunctionPass::getAnalysisUsage(AU); 601462faadSDan Gohman } 611462faadSDan Gohman 621462faadSDan Gohman bool runOnMachineFunction(MachineFunction &MF) override; 631462faadSDan Gohman 641462faadSDan Gohman public: 651462faadSDan Gohman static char ID; // Pass identification, replacement for typeid 661462faadSDan Gohman WebAssemblyRegStackify() : MachineFunctionPass(ID) {} 671462faadSDan Gohman }; 681462faadSDan Gohman } // end anonymous namespace 691462faadSDan Gohman 701462faadSDan Gohman char WebAssemblyRegStackify::ID = 0; 7140926451SJacob Gravelle INITIALIZE_PASS(WebAssemblyRegStackify, DEBUG_TYPE, 7240926451SJacob Gravelle "Reorder instructions to use the WebAssembly value stack", 7340926451SJacob Gravelle false, false) 7440926451SJacob Gravelle 751462faadSDan Gohman FunctionPass *llvm::createWebAssemblyRegStackify() { 761462faadSDan Gohman return new WebAssemblyRegStackify(); 771462faadSDan Gohman } 781462faadSDan Gohman 79b0992dafSDan Gohman // Decorate the given instruction with implicit operands that enforce the 808887d1faSDan Gohman // expression stack ordering constraints for an instruction which is on 818887d1faSDan Gohman // the expression stack. 8218c56a07SHeejin Ahn static void imposeStackOrdering(MachineInstr *MI) { 83e040533eSDan Gohman // Write the opaque VALUE_STACK register. 84e040533eSDan Gohman if (!MI->definesRegister(WebAssembly::VALUE_STACK)) 85e040533eSDan Gohman MI->addOperand(MachineOperand::CreateReg(WebAssembly::VALUE_STACK, 86b0992dafSDan Gohman /*isDef=*/true, 87b0992dafSDan Gohman /*isImp=*/true)); 884da4abd8SDan Gohman 89e040533eSDan Gohman // Also read the opaque VALUE_STACK register. 90e040533eSDan Gohman if (!MI->readsRegister(WebAssembly::VALUE_STACK)) 91e040533eSDan Gohman MI->addOperand(MachineOperand::CreateReg(WebAssembly::VALUE_STACK, 92b0992dafSDan Gohman /*isDef=*/false, 93b0992dafSDan Gohman /*isImp=*/true)); 94b0992dafSDan Gohman } 95b0992dafSDan Gohman 96e81021a5SDan Gohman // Convert an IMPLICIT_DEF instruction into an instruction which defines 97e81021a5SDan Gohman // a constant zero value. 9818c56a07SHeejin Ahn static void convertImplicitDefToConstZero(MachineInstr *MI, 99e81021a5SDan Gohman MachineRegisterInfo &MRI, 100e81021a5SDan Gohman const TargetInstrInfo *TII, 101feb18fe9SThomas Lively MachineFunction &MF, 102feb18fe9SThomas Lively LiveIntervals &LIS) { 103e81021a5SDan Gohman assert(MI->getOpcode() == TargetOpcode::IMPLICIT_DEF); 104e81021a5SDan Gohman 105f208f631SHeejin Ahn const auto *RegClass = MRI.getRegClass(MI->getOperand(0).getReg()); 106e81021a5SDan Gohman if (RegClass == &WebAssembly::I32RegClass) { 107e81021a5SDan Gohman MI->setDesc(TII->get(WebAssembly::CONST_I32)); 108e81021a5SDan Gohman MI->addOperand(MachineOperand::CreateImm(0)); 109e81021a5SDan Gohman } else if (RegClass == &WebAssembly::I64RegClass) { 110e81021a5SDan Gohman MI->setDesc(TII->get(WebAssembly::CONST_I64)); 111e81021a5SDan Gohman MI->addOperand(MachineOperand::CreateImm(0)); 112e81021a5SDan Gohman } else if (RegClass == &WebAssembly::F32RegClass) { 113e81021a5SDan Gohman MI->setDesc(TII->get(WebAssembly::CONST_F32)); 11418c56a07SHeejin Ahn auto *Val = cast<ConstantFP>(Constant::getNullValue( 11521109249SDavid Blaikie Type::getFloatTy(MF.getFunction().getContext()))); 116e81021a5SDan Gohman MI->addOperand(MachineOperand::CreateFPImm(Val)); 117e81021a5SDan Gohman } else if (RegClass == &WebAssembly::F64RegClass) { 118e81021a5SDan Gohman MI->setDesc(TII->get(WebAssembly::CONST_F64)); 11918c56a07SHeejin Ahn auto *Val = cast<ConstantFP>(Constant::getNullValue( 12021109249SDavid Blaikie Type::getDoubleTy(MF.getFunction().getContext()))); 121e81021a5SDan Gohman MI->addOperand(MachineOperand::CreateFPImm(Val)); 1226ff31fe3SThomas Lively } else if (RegClass == &WebAssembly::V128RegClass) { 12305c145d6SDaniel Sanders Register TempReg = MRI.createVirtualRegister(&WebAssembly::I32RegClass); 124feb18fe9SThomas Lively MI->setDesc(TII->get(WebAssembly::SPLAT_v4i32)); 125feb18fe9SThomas Lively MI->addOperand(MachineOperand::CreateReg(TempReg, false)); 126feb18fe9SThomas Lively MachineInstr *Const = BuildMI(*MI->getParent(), MI, MI->getDebugLoc(), 127feb18fe9SThomas Lively TII->get(WebAssembly::CONST_I32), TempReg) 128feb18fe9SThomas Lively .addImm(0); 129feb18fe9SThomas Lively LIS.InsertMachineInstrInMaps(*Const); 130e81021a5SDan Gohman } else { 131e81021a5SDan Gohman llvm_unreachable("Unexpected reg class"); 132e81021a5SDan Gohman } 133e81021a5SDan Gohman } 134e81021a5SDan Gohman 1352644d74bSDan Gohman // Determine whether a call to the callee referenced by 1362644d74bSDan Gohman // MI->getOperand(CalleeOpNo) reads memory, writes memory, and/or has side 1372644d74bSDan Gohman // effects. 138*7b64a590SThomas Lively static void queryCallee(const MachineInstr &MI, bool &Read, bool &Write, 139*7b64a590SThomas Lively bool &Effects, bool &StackPointer) { 140d08cd15fSDan Gohman // All calls can use the stack pointer. 141d08cd15fSDan Gohman StackPointer = true; 142d08cd15fSDan Gohman 143*7b64a590SThomas Lively const MachineOperand &MO = WebAssembly::getCalleeOp(MI); 1442644d74bSDan Gohman if (MO.isGlobal()) { 1452644d74bSDan Gohman const Constant *GV = MO.getGlobal(); 14618c56a07SHeejin Ahn if (const auto *GA = dyn_cast<GlobalAlias>(GV)) 1472644d74bSDan Gohman if (!GA->isInterposable()) 1482644d74bSDan Gohman GV = GA->getAliasee(); 1492644d74bSDan Gohman 15018c56a07SHeejin Ahn if (const auto *F = dyn_cast<Function>(GV)) { 1512644d74bSDan Gohman if (!F->doesNotThrow()) 1522644d74bSDan Gohman Effects = true; 1532644d74bSDan Gohman if (F->doesNotAccessMemory()) 1542644d74bSDan Gohman return; 1552644d74bSDan Gohman if (F->onlyReadsMemory()) { 1562644d74bSDan Gohman Read = true; 1572644d74bSDan Gohman return; 1582644d74bSDan Gohman } 1592644d74bSDan Gohman } 1602644d74bSDan Gohman } 1612644d74bSDan Gohman 1622644d74bSDan Gohman // Assume the worst. 1632644d74bSDan Gohman Write = true; 1642644d74bSDan Gohman Read = true; 1652644d74bSDan Gohman Effects = true; 1662644d74bSDan Gohman } 1672644d74bSDan Gohman 168d08cd15fSDan Gohman // Determine whether MI reads memory, writes memory, has side effects, 16982607f56SDan Gohman // and/or uses the stack pointer value. 17018c56a07SHeejin Ahn static void query(const MachineInstr &MI, AliasAnalysis &AA, bool &Read, 171500d0469SDuncan P. N. Exon Smith bool &Write, bool &Effects, bool &StackPointer) { 172500d0469SDuncan P. N. Exon Smith assert(!MI.isTerminator()); 1736c8f20d7SDan Gohman 1745ef4d5f9SHeejin Ahn if (MI.isDebugInstr() || MI.isPosition()) 1756c8f20d7SDan Gohman return; 1762644d74bSDan Gohman 1772644d74bSDan Gohman // Check for loads. 178d98cf00cSJustin Lebar if (MI.mayLoad() && !MI.isDereferenceableInvariantLoad(&AA)) 1792644d74bSDan Gohman Read = true; 1802644d74bSDan Gohman 1812644d74bSDan Gohman // Check for stores. 182500d0469SDuncan P. N. Exon Smith if (MI.mayStore()) { 1832644d74bSDan Gohman Write = true; 184500d0469SDuncan P. N. Exon Smith } else if (MI.hasOrderedMemoryRef()) { 185500d0469SDuncan P. N. Exon Smith switch (MI.getOpcode()) { 186f208f631SHeejin Ahn case WebAssembly::DIV_S_I32: 187f208f631SHeejin Ahn case WebAssembly::DIV_S_I64: 188f208f631SHeejin Ahn case WebAssembly::REM_S_I32: 189f208f631SHeejin Ahn case WebAssembly::REM_S_I64: 190f208f631SHeejin Ahn case WebAssembly::DIV_U_I32: 191f208f631SHeejin Ahn case WebAssembly::DIV_U_I64: 192f208f631SHeejin Ahn case WebAssembly::REM_U_I32: 193f208f631SHeejin Ahn case WebAssembly::REM_U_I64: 194f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_S_F32: 195f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_S_F32: 196f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_S_F64: 197f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_S_F64: 198f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_U_F32: 199f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_U_F32: 200f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_U_F64: 201f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_U_F64: 2022644d74bSDan Gohman // These instruction have hasUnmodeledSideEffects() returning true 2032644d74bSDan Gohman // because they trap on overflow and invalid so they can't be arbitrarily 2042644d74bSDan Gohman // moved, however hasOrderedMemoryRef() interprets this plus their lack 2052644d74bSDan Gohman // of memoperands as having a potential unknown memory reference. 2062644d74bSDan Gohman break; 2072644d74bSDan Gohman default: 2081054570aSDan Gohman // Record volatile accesses, unless it's a call, as calls are handled 2092644d74bSDan Gohman // specially below. 210500d0469SDuncan P. N. Exon Smith if (!MI.isCall()) { 2112644d74bSDan Gohman Write = true; 2121054570aSDan Gohman Effects = true; 2131054570aSDan Gohman } 2142644d74bSDan Gohman break; 2152644d74bSDan Gohman } 2162644d74bSDan Gohman } 2172644d74bSDan Gohman 2182644d74bSDan Gohman // Check for side effects. 219500d0469SDuncan P. N. Exon Smith if (MI.hasUnmodeledSideEffects()) { 220500d0469SDuncan P. N. Exon Smith switch (MI.getOpcode()) { 221f208f631SHeejin Ahn case WebAssembly::DIV_S_I32: 222f208f631SHeejin Ahn case WebAssembly::DIV_S_I64: 223f208f631SHeejin Ahn case WebAssembly::REM_S_I32: 224f208f631SHeejin Ahn case WebAssembly::REM_S_I64: 225f208f631SHeejin Ahn case WebAssembly::DIV_U_I32: 226f208f631SHeejin Ahn case WebAssembly::DIV_U_I64: 227f208f631SHeejin Ahn case WebAssembly::REM_U_I32: 228f208f631SHeejin Ahn case WebAssembly::REM_U_I64: 229f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_S_F32: 230f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_S_F32: 231f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_S_F64: 232f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_S_F64: 233f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_U_F32: 234f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_U_F32: 235f208f631SHeejin Ahn case WebAssembly::I32_TRUNC_U_F64: 236f208f631SHeejin Ahn case WebAssembly::I64_TRUNC_U_F64: 2372644d74bSDan Gohman // These instructions have hasUnmodeledSideEffects() returning true 2382644d74bSDan Gohman // because they trap on overflow and invalid so they can't be arbitrarily 2392644d74bSDan Gohman // moved, however in the specific case of register stackifying, it is safe 2402644d74bSDan Gohman // to move them because overflow and invalid are Undefined Behavior. 2412644d74bSDan Gohman break; 2422644d74bSDan Gohman default: 2432644d74bSDan Gohman Effects = true; 2442644d74bSDan Gohman break; 2452644d74bSDan Gohman } 2462644d74bSDan Gohman } 2472644d74bSDan Gohman 248e73c7a1aSHeejin Ahn // Check for writes to __stack_pointer global. 249e73c7a1aSHeejin Ahn if (MI.getOpcode() == WebAssembly::GLOBAL_SET_I32 && 250e73c7a1aSHeejin Ahn strcmp(MI.getOperand(0).getSymbolName(), "__stack_pointer") == 0) 251e73c7a1aSHeejin Ahn StackPointer = true; 252e73c7a1aSHeejin Ahn 2532644d74bSDan Gohman // Analyze calls. 254500d0469SDuncan P. N. Exon Smith if (MI.isCall()) { 255*7b64a590SThomas Lively queryCallee(MI, Read, Write, Effects, StackPointer); 2562644d74bSDan Gohman } 2572644d74bSDan Gohman } 2582644d74bSDan Gohman 2592644d74bSDan Gohman // Test whether Def is safe and profitable to rematerialize. 26018c56a07SHeejin Ahn static bool shouldRematerialize(const MachineInstr &Def, AliasAnalysis &AA, 2612644d74bSDan Gohman const WebAssemblyInstrInfo *TII) { 2629cfc75c2SDuncan P. N. Exon Smith return Def.isAsCheapAsAMove() && TII->isTriviallyReMaterializable(Def, &AA); 2632644d74bSDan Gohman } 2642644d74bSDan Gohman 26512de0b91SDan Gohman // Identify the definition for this register at this point. This is a 26612de0b91SDan Gohman // generalization of MachineRegisterInfo::getUniqueVRegDef that uses 26712de0b91SDan Gohman // LiveIntervals to handle complex cases. 26818c56a07SHeejin Ahn static MachineInstr *getVRegDef(unsigned Reg, const MachineInstr *Insert, 2692644d74bSDan Gohman const MachineRegisterInfo &MRI, 270f208f631SHeejin Ahn const LiveIntervals &LIS) { 2712644d74bSDan Gohman // Most registers are in SSA form here so we try a quick MRI query first. 2722644d74bSDan Gohman if (MachineInstr *Def = MRI.getUniqueVRegDef(Reg)) 2732644d74bSDan Gohman return Def; 2742644d74bSDan Gohman 2752644d74bSDan Gohman // MRI doesn't know what the Def is. Try asking LIS. 2762644d74bSDan Gohman if (const VNInfo *ValNo = LIS.getInterval(Reg).getVNInfoBefore( 2772644d74bSDan Gohman LIS.getInstructionIndex(*Insert))) 2782644d74bSDan Gohman return LIS.getInstructionFromIndex(ValNo->def); 2792644d74bSDan Gohman 2802644d74bSDan Gohman return nullptr; 2812644d74bSDan Gohman } 2822644d74bSDan Gohman 28312de0b91SDan Gohman // Test whether Reg, as defined at Def, has exactly one use. This is a 28412de0b91SDan Gohman // generalization of MachineRegisterInfo::hasOneUse that uses LiveIntervals 28512de0b91SDan Gohman // to handle complex cases. 28618c56a07SHeejin Ahn static bool hasOneUse(unsigned Reg, MachineInstr *Def, MachineRegisterInfo &MRI, 287f208f631SHeejin Ahn MachineDominatorTree &MDT, LiveIntervals &LIS) { 28812de0b91SDan Gohman // Most registers are in SSA form here so we try a quick MRI query first. 28912de0b91SDan Gohman if (MRI.hasOneUse(Reg)) 29012de0b91SDan Gohman return true; 29112de0b91SDan Gohman 29212de0b91SDan Gohman bool HasOne = false; 29312de0b91SDan Gohman const LiveInterval &LI = LIS.getInterval(Reg); 294f208f631SHeejin Ahn const VNInfo *DefVNI = 295f208f631SHeejin Ahn LI.getVNInfoAt(LIS.getInstructionIndex(*Def).getRegSlot()); 29612de0b91SDan Gohman assert(DefVNI); 297a8a63829SDominic Chen for (auto &I : MRI.use_nodbg_operands(Reg)) { 29812de0b91SDan Gohman const auto &Result = LI.Query(LIS.getInstructionIndex(*I.getParent())); 29912de0b91SDan Gohman if (Result.valueIn() == DefVNI) { 30012de0b91SDan Gohman if (!Result.isKill()) 30112de0b91SDan Gohman return false; 30212de0b91SDan Gohman if (HasOne) 30312de0b91SDan Gohman return false; 30412de0b91SDan Gohman HasOne = true; 30512de0b91SDan Gohman } 30612de0b91SDan Gohman } 30712de0b91SDan Gohman return HasOne; 30812de0b91SDan Gohman } 30912de0b91SDan Gohman 3108887d1faSDan Gohman // Test whether it's safe to move Def to just before Insert. 31181719f85SDan Gohman // TODO: Compute memory dependencies in a way that doesn't require always 31281719f85SDan Gohman // walking the block. 31381719f85SDan Gohman // TODO: Compute memory dependencies in a way that uses AliasAnalysis to be 31481719f85SDan Gohman // more precise. 31518c56a07SHeejin Ahn static bool isSafeToMove(const MachineInstr *Def, const MachineInstr *Insert, 316e9e6891bSDerek Schuff AliasAnalysis &AA, const MachineRegisterInfo &MRI) { 317391a98afSDan Gohman assert(Def->getParent() == Insert->getParent()); 3188887d1faSDan Gohman 319d6f48786SHeejin Ahn // 'catch' and 'extract_exception' should be the first instruction of a BB and 320d6f48786SHeejin Ahn // cannot move. 321d6f48786SHeejin Ahn if (Def->getOpcode() == WebAssembly::CATCH || 322d6f48786SHeejin Ahn Def->getOpcode() == WebAssembly::EXTRACT_EXCEPTION_I32) { 323d6f48786SHeejin Ahn const MachineBasicBlock *MBB = Def->getParent(); 324d6f48786SHeejin Ahn auto NextI = std::next(MachineBasicBlock::const_iterator(Def)); 325d6f48786SHeejin Ahn for (auto E = MBB->end(); NextI != E && NextI->isDebugInstr(); ++NextI) 326d6f48786SHeejin Ahn ; 327d6f48786SHeejin Ahn if (NextI != Insert) 328d6f48786SHeejin Ahn return false; 329d6f48786SHeejin Ahn } 330d6f48786SHeejin Ahn 3318887d1faSDan Gohman // Check for register dependencies. 332e9e6891bSDerek Schuff SmallVector<unsigned, 4> MutableRegisters; 3338887d1faSDan Gohman for (const MachineOperand &MO : Def->operands()) { 3348887d1faSDan Gohman if (!MO.isReg() || MO.isUndef()) 3358887d1faSDan Gohman continue; 33605c145d6SDaniel Sanders Register Reg = MO.getReg(); 3378887d1faSDan Gohman 3388887d1faSDan Gohman // If the register is dead here and at Insert, ignore it. 3398887d1faSDan Gohman if (MO.isDead() && Insert->definesRegister(Reg) && 3408887d1faSDan Gohman !Insert->readsRegister(Reg)) 3418887d1faSDan Gohman continue; 3428887d1faSDan Gohman 3432bea69bfSDaniel Sanders if (Register::isPhysicalRegister(Reg)) { 3440cfb5f85SDan Gohman // Ignore ARGUMENTS; it's just used to keep the ARGUMENT_* instructions 3450cfb5f85SDan Gohman // from moving down, and we've already checked for that. 3460cfb5f85SDan Gohman if (Reg == WebAssembly::ARGUMENTS) 3470cfb5f85SDan Gohman continue; 3488887d1faSDan Gohman // If the physical register is never modified, ignore it. 3498887d1faSDan Gohman if (!MRI.isPhysRegModified(Reg)) 3508887d1faSDan Gohman continue; 3518887d1faSDan Gohman // Otherwise, it's a physical register with unknown liveness. 3528887d1faSDan Gohman return false; 3538887d1faSDan Gohman } 3548887d1faSDan Gohman 355e9e6891bSDerek Schuff // If one of the operands isn't in SSA form, it has different values at 356e9e6891bSDerek Schuff // different times, and we need to make sure we don't move our use across 357e9e6891bSDerek Schuff // a different def. 358e9e6891bSDerek Schuff if (!MO.isDef() && !MRI.hasOneDef(Reg)) 359e9e6891bSDerek Schuff MutableRegisters.push_back(Reg); 3608887d1faSDan Gohman } 3618887d1faSDan Gohman 362d08cd15fSDan Gohman bool Read = false, Write = false, Effects = false, StackPointer = false; 36318c56a07SHeejin Ahn query(*Def, AA, Read, Write, Effects, StackPointer); 3642644d74bSDan Gohman 3652644d74bSDan Gohman // If the instruction does not access memory and has no side effects, it has 3662644d74bSDan Gohman // no additional dependencies. 367e9e6891bSDerek Schuff bool HasMutableRegisters = !MutableRegisters.empty(); 368e9e6891bSDerek Schuff if (!Read && !Write && !Effects && !StackPointer && !HasMutableRegisters) 3692644d74bSDan Gohman return true; 3702644d74bSDan Gohman 3712644d74bSDan Gohman // Scan through the intervening instructions between Def and Insert. 3722644d74bSDan Gohman MachineBasicBlock::const_iterator D(Def), I(Insert); 3732644d74bSDan Gohman for (--I; I != D; --I) { 3742644d74bSDan Gohman bool InterveningRead = false; 3752644d74bSDan Gohman bool InterveningWrite = false; 3762644d74bSDan Gohman bool InterveningEffects = false; 377d08cd15fSDan Gohman bool InterveningStackPointer = false; 37818c56a07SHeejin Ahn query(*I, AA, InterveningRead, InterveningWrite, InterveningEffects, 379d08cd15fSDan Gohman InterveningStackPointer); 3802644d74bSDan Gohman if (Effects && InterveningEffects) 3812644d74bSDan Gohman return false; 3822644d74bSDan Gohman if (Read && InterveningWrite) 3832644d74bSDan Gohman return false; 3842644d74bSDan Gohman if (Write && (InterveningRead || InterveningWrite)) 3852644d74bSDan Gohman return false; 386d08cd15fSDan Gohman if (StackPointer && InterveningStackPointer) 387d08cd15fSDan Gohman return false; 388e9e6891bSDerek Schuff 389e9e6891bSDerek Schuff for (unsigned Reg : MutableRegisters) 390e9e6891bSDerek Schuff for (const MachineOperand &MO : I->operands()) 391e9e6891bSDerek Schuff if (MO.isReg() && MO.isDef() && MO.getReg() == Reg) 392e9e6891bSDerek Schuff return false; 3932644d74bSDan Gohman } 3942644d74bSDan Gohman 3952644d74bSDan Gohman return true; 39681719f85SDan Gohman } 39781719f85SDan Gohman 398adf28177SDan Gohman /// Test whether OneUse, a use of Reg, dominates all of Reg's other uses. 39918c56a07SHeejin Ahn static bool oneUseDominatesOtherUses(unsigned Reg, const MachineOperand &OneUse, 400adf28177SDan Gohman const MachineBasicBlock &MBB, 401adf28177SDan Gohman const MachineRegisterInfo &MRI, 4020cfb5f85SDan Gohman const MachineDominatorTree &MDT, 4031054570aSDan Gohman LiveIntervals &LIS, 4041054570aSDan Gohman WebAssemblyFunctionInfo &MFI) { 4050cfb5f85SDan Gohman const LiveInterval &LI = LIS.getInterval(Reg); 4060cfb5f85SDan Gohman 4070cfb5f85SDan Gohman const MachineInstr *OneUseInst = OneUse.getParent(); 4080cfb5f85SDan Gohman VNInfo *OneUseVNI = LI.getVNInfoBefore(LIS.getInstructionIndex(*OneUseInst)); 4090cfb5f85SDan Gohman 410a8a63829SDominic Chen for (const MachineOperand &Use : MRI.use_nodbg_operands(Reg)) { 411adf28177SDan Gohman if (&Use == &OneUse) 412adf28177SDan Gohman continue; 4130cfb5f85SDan Gohman 414adf28177SDan Gohman const MachineInstr *UseInst = Use.getParent(); 4150cfb5f85SDan Gohman VNInfo *UseVNI = LI.getVNInfoBefore(LIS.getInstructionIndex(*UseInst)); 4160cfb5f85SDan Gohman 4170cfb5f85SDan Gohman if (UseVNI != OneUseVNI) 4180cfb5f85SDan Gohman continue; 4190cfb5f85SDan Gohman 42012de0b91SDan Gohman if (UseInst == OneUseInst) { 421adf28177SDan Gohman // Another use in the same instruction. We need to ensure that the one 422adf28177SDan Gohman // selected use happens "before" it. 423adf28177SDan Gohman if (&OneUse > &Use) 424adf28177SDan Gohman return false; 425adf28177SDan Gohman } else { 426adf28177SDan Gohman // Test that the use is dominated by the one selected use. 4271054570aSDan Gohman while (!MDT.dominates(OneUseInst, UseInst)) { 4281054570aSDan Gohman // Actually, dominating is over-conservative. Test that the use would 4291054570aSDan Gohman // happen after the one selected use in the stack evaluation order. 4301054570aSDan Gohman // 4316a87ddacSThomas Lively // This is needed as a consequence of using implicit local.gets for 4326a87ddacSThomas Lively // uses and implicit local.sets for defs. 4331054570aSDan Gohman if (UseInst->getDesc().getNumDefs() == 0) 434adf28177SDan Gohman return false; 4351054570aSDan Gohman const MachineOperand &MO = UseInst->getOperand(0); 4361054570aSDan Gohman if (!MO.isReg()) 4371054570aSDan Gohman return false; 43805c145d6SDaniel Sanders Register DefReg = MO.getReg(); 4392bea69bfSDaniel Sanders if (!Register::isVirtualRegister(DefReg) || 4401054570aSDan Gohman !MFI.isVRegStackified(DefReg)) 4411054570aSDan Gohman return false; 442b3857e4dSYury Delendik assert(MRI.hasOneNonDBGUse(DefReg)); 443b3857e4dSYury Delendik const MachineOperand &NewUse = *MRI.use_nodbg_begin(DefReg); 4441054570aSDan Gohman const MachineInstr *NewUseInst = NewUse.getParent(); 4451054570aSDan Gohman if (NewUseInst == OneUseInst) { 4461054570aSDan Gohman if (&OneUse > &NewUse) 4471054570aSDan Gohman return false; 4481054570aSDan Gohman break; 4491054570aSDan Gohman } 4501054570aSDan Gohman UseInst = NewUseInst; 4511054570aSDan Gohman } 452adf28177SDan Gohman } 453adf28177SDan Gohman } 454adf28177SDan Gohman return true; 455adf28177SDan Gohman } 456adf28177SDan Gohman 4574fc4e42dSDan Gohman /// Get the appropriate tee opcode for the given register class. 45818c56a07SHeejin Ahn static unsigned getTeeOpcode(const TargetRegisterClass *RC) { 459adf28177SDan Gohman if (RC == &WebAssembly::I32RegClass) 4604fc4e42dSDan Gohman return WebAssembly::TEE_I32; 461adf28177SDan Gohman if (RC == &WebAssembly::I64RegClass) 4624fc4e42dSDan Gohman return WebAssembly::TEE_I64; 463adf28177SDan Gohman if (RC == &WebAssembly::F32RegClass) 4644fc4e42dSDan Gohman return WebAssembly::TEE_F32; 465adf28177SDan Gohman if (RC == &WebAssembly::F64RegClass) 4664fc4e42dSDan Gohman return WebAssembly::TEE_F64; 46739bf39f3SDerek Schuff if (RC == &WebAssembly::V128RegClass) 4684fc4e42dSDan Gohman return WebAssembly::TEE_V128; 469adf28177SDan Gohman llvm_unreachable("Unexpected register class"); 470adf28177SDan Gohman } 471adf28177SDan Gohman 4722644d74bSDan Gohman // Shrink LI to its uses, cleaning up LI. 47318c56a07SHeejin Ahn static void shrinkToUses(LiveInterval &LI, LiveIntervals &LIS) { 4742644d74bSDan Gohman if (LIS.shrinkToUses(&LI)) { 4752644d74bSDan Gohman SmallVector<LiveInterval *, 4> SplitLIs; 4762644d74bSDan Gohman LIS.splitSeparateComponents(LI, SplitLIs); 4772644d74bSDan Gohman } 4782644d74bSDan Gohman } 4792644d74bSDan Gohman 480adf28177SDan Gohman /// A single-use def in the same block with no intervening memory or register 481adf28177SDan Gohman /// dependencies; move the def down and nest it with the current instruction. 48218c56a07SHeejin Ahn static MachineInstr *moveForSingleUse(unsigned Reg, MachineOperand &Op, 483f208f631SHeejin Ahn MachineInstr *Def, MachineBasicBlock &MBB, 484adf28177SDan Gohman MachineInstr *Insert, LiveIntervals &LIS, 4850cfb5f85SDan Gohman WebAssemblyFunctionInfo &MFI, 4860cfb5f85SDan Gohman MachineRegisterInfo &MRI) { 487d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << "Move for single use: "; Def->dump()); 4882644d74bSDan Gohman 489be24c020SYury Delendik WebAssemblyDebugValueManager DefDIs(Def); 490adf28177SDan Gohman MBB.splice(Insert, &MBB, Def); 491be24c020SYury Delendik DefDIs.move(Insert); 4921afd1e2bSJF Bastien LIS.handleMove(*Def); 4930cfb5f85SDan Gohman 49412de0b91SDan Gohman if (MRI.hasOneDef(Reg) && MRI.hasOneUse(Reg)) { 49512de0b91SDan Gohman // No one else is using this register for anything so we can just stackify 49612de0b91SDan Gohman // it in place. 497adf28177SDan Gohman MFI.stackifyVReg(Reg); 4980cfb5f85SDan Gohman } else { 49912de0b91SDan Gohman // The register may have unrelated uses or defs; create a new register for 50012de0b91SDan Gohman // just our one def and use so that we can stackify it. 50105c145d6SDaniel Sanders Register NewReg = MRI.createVirtualRegister(MRI.getRegClass(Reg)); 5020cfb5f85SDan Gohman Def->getOperand(0).setReg(NewReg); 5030cfb5f85SDan Gohman Op.setReg(NewReg); 5040cfb5f85SDan Gohman 5050cfb5f85SDan Gohman // Tell LiveIntervals about the new register. 5060cfb5f85SDan Gohman LIS.createAndComputeVirtRegInterval(NewReg); 5070cfb5f85SDan Gohman 5080cfb5f85SDan Gohman // Tell LiveIntervals about the changes to the old register. 5090cfb5f85SDan Gohman LiveInterval &LI = LIS.getInterval(Reg); 5106c8f20d7SDan Gohman LI.removeSegment(LIS.getInstructionIndex(*Def).getRegSlot(), 5116c8f20d7SDan Gohman LIS.getInstructionIndex(*Op.getParent()).getRegSlot(), 5126c8f20d7SDan Gohman /*RemoveDeadValNo=*/true); 5130cfb5f85SDan Gohman 5140cfb5f85SDan Gohman MFI.stackifyVReg(NewReg); 5152644d74bSDan Gohman 516be24c020SYury Delendik DefDIs.updateReg(NewReg); 5177c18d608SYury Delendik 518d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " - Replaced register: "; Def->dump()); 5190cfb5f85SDan Gohman } 5200cfb5f85SDan Gohman 52118c56a07SHeejin Ahn imposeStackOrdering(Def); 522adf28177SDan Gohman return Def; 523adf28177SDan Gohman } 524adf28177SDan Gohman 525adf28177SDan Gohman /// A trivially cloneable instruction; clone it and nest the new copy with the 526adf28177SDan Gohman /// current instruction. 52718c56a07SHeejin Ahn static MachineInstr *rematerializeCheapDef( 5289cfc75c2SDuncan P. N. Exon Smith unsigned Reg, MachineOperand &Op, MachineInstr &Def, MachineBasicBlock &MBB, 5299cfc75c2SDuncan P. N. Exon Smith MachineBasicBlock::instr_iterator Insert, LiveIntervals &LIS, 5309cfc75c2SDuncan P. N. Exon Smith WebAssemblyFunctionInfo &MFI, MachineRegisterInfo &MRI, 5319cfc75c2SDuncan P. N. Exon Smith const WebAssemblyInstrInfo *TII, const WebAssemblyRegisterInfo *TRI) { 532d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << "Rematerializing cheap def: "; Def.dump()); 533d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " - for use in "; Op.getParent()->dump()); 5342644d74bSDan Gohman 535be24c020SYury Delendik WebAssemblyDebugValueManager DefDIs(&Def); 536be24c020SYury Delendik 53705c145d6SDaniel Sanders Register NewReg = MRI.createVirtualRegister(MRI.getRegClass(Reg)); 538adf28177SDan Gohman TII->reMaterialize(MBB, Insert, NewReg, 0, Def, *TRI); 539adf28177SDan Gohman Op.setReg(NewReg); 5409cfc75c2SDuncan P. N. Exon Smith MachineInstr *Clone = &*std::prev(Insert); 54113d3b9b7SJF Bastien LIS.InsertMachineInstrInMaps(*Clone); 542adf28177SDan Gohman LIS.createAndComputeVirtRegInterval(NewReg); 543adf28177SDan Gohman MFI.stackifyVReg(NewReg); 54418c56a07SHeejin Ahn imposeStackOrdering(Clone); 545adf28177SDan Gohman 546d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " - Cloned to "; Clone->dump()); 5472644d74bSDan Gohman 5480cfb5f85SDan Gohman // Shrink the interval. 5490cfb5f85SDan Gohman bool IsDead = MRI.use_empty(Reg); 5500cfb5f85SDan Gohman if (!IsDead) { 5510cfb5f85SDan Gohman LiveInterval &LI = LIS.getInterval(Reg); 55218c56a07SHeejin Ahn shrinkToUses(LI, LIS); 5539cfc75c2SDuncan P. N. Exon Smith IsDead = !LI.liveAt(LIS.getInstructionIndex(Def).getDeadSlot()); 5540cfb5f85SDan Gohman } 5550cfb5f85SDan Gohman 556adf28177SDan Gohman // If that was the last use of the original, delete the original. 5577c18d608SYury Delendik // Move or clone corresponding DBG_VALUEs to the 'Insert' location. 5580cfb5f85SDan Gohman if (IsDead) { 559d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " - Deleting original\n"); 5609cfc75c2SDuncan P. N. Exon Smith SlotIndex Idx = LIS.getInstructionIndex(Def).getRegSlot(); 561adf28177SDan Gohman LIS.removePhysRegDefAt(WebAssembly::ARGUMENTS, Idx); 562adf28177SDan Gohman LIS.removeInterval(Reg); 5639cfc75c2SDuncan P. N. Exon Smith LIS.RemoveMachineInstrFromMaps(Def); 5649cfc75c2SDuncan P. N. Exon Smith Def.eraseFromParent(); 5657c18d608SYury Delendik 566be24c020SYury Delendik DefDIs.move(&*Insert); 567be24c020SYury Delendik DefDIs.updateReg(NewReg); 5687c18d608SYury Delendik } else { 569be24c020SYury Delendik DefDIs.clone(&*Insert, NewReg); 570adf28177SDan Gohman } 5710cfb5f85SDan Gohman 572adf28177SDan Gohman return Clone; 573adf28177SDan Gohman } 574adf28177SDan Gohman 575adf28177SDan Gohman /// A multiple-use def in the same block with no intervening memory or register 576adf28177SDan Gohman /// dependencies; move the def down, nest it with the current instruction, and 5774fc4e42dSDan Gohman /// insert a tee to satisfy the rest of the uses. As an illustration, rewrite 5784fc4e42dSDan Gohman /// this: 579adf28177SDan Gohman /// 580adf28177SDan Gohman /// Reg = INST ... // Def 581adf28177SDan Gohman /// INST ..., Reg, ... // Insert 582adf28177SDan Gohman /// INST ..., Reg, ... 583adf28177SDan Gohman /// INST ..., Reg, ... 584adf28177SDan Gohman /// 585adf28177SDan Gohman /// to this: 586adf28177SDan Gohman /// 5878aa237c3SDan Gohman /// DefReg = INST ... // Def (to become the new Insert) 5884fc4e42dSDan Gohman /// TeeReg, Reg = TEE_... DefReg 589adf28177SDan Gohman /// INST ..., TeeReg, ... // Insert 5906c8f20d7SDan Gohman /// INST ..., Reg, ... 5916c8f20d7SDan Gohman /// INST ..., Reg, ... 592adf28177SDan Gohman /// 5936a87ddacSThomas Lively /// with DefReg and TeeReg stackified. This eliminates a local.get from the 594adf28177SDan Gohman /// resulting code. 59518c56a07SHeejin Ahn static MachineInstr *moveAndTeeForMultiUse( 596adf28177SDan Gohman unsigned Reg, MachineOperand &Op, MachineInstr *Def, MachineBasicBlock &MBB, 597adf28177SDan Gohman MachineInstr *Insert, LiveIntervals &LIS, WebAssemblyFunctionInfo &MFI, 598adf28177SDan Gohman MachineRegisterInfo &MRI, const WebAssemblyInstrInfo *TII) { 599d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << "Move and tee for multi-use:"; Def->dump()); 6002644d74bSDan Gohman 601be24c020SYury Delendik WebAssemblyDebugValueManager DefDIs(Def); 602be24c020SYury Delendik 60312de0b91SDan Gohman // Move Def into place. 604adf28177SDan Gohman MBB.splice(Insert, &MBB, Def); 6051afd1e2bSJF Bastien LIS.handleMove(*Def); 60612de0b91SDan Gohman 60712de0b91SDan Gohman // Create the Tee and attach the registers. 608adf28177SDan Gohman const auto *RegClass = MRI.getRegClass(Reg); 60905c145d6SDaniel Sanders Register TeeReg = MRI.createVirtualRegister(RegClass); 61005c145d6SDaniel Sanders Register DefReg = MRI.createVirtualRegister(RegClass); 61133e694a8SDan Gohman MachineOperand &DefMO = Def->getOperand(0); 612adf28177SDan Gohman MachineInstr *Tee = BuildMI(MBB, Insert, Insert->getDebugLoc(), 61318c56a07SHeejin Ahn TII->get(getTeeOpcode(RegClass)), TeeReg) 61412de0b91SDan Gohman .addReg(Reg, RegState::Define) 61533e694a8SDan Gohman .addReg(DefReg, getUndefRegState(DefMO.isDead())); 616adf28177SDan Gohman Op.setReg(TeeReg); 61733e694a8SDan Gohman DefMO.setReg(DefReg); 61812de0b91SDan Gohman SlotIndex TeeIdx = LIS.InsertMachineInstrInMaps(*Tee).getRegSlot(); 61912de0b91SDan Gohman SlotIndex DefIdx = LIS.getInstructionIndex(*Def).getRegSlot(); 62012de0b91SDan Gohman 621be24c020SYury Delendik DefDIs.move(Insert); 6227c18d608SYury Delendik 62312de0b91SDan Gohman // Tell LiveIntervals we moved the original vreg def from Def to Tee. 62412de0b91SDan Gohman LiveInterval &LI = LIS.getInterval(Reg); 62512de0b91SDan Gohman LiveInterval::iterator I = LI.FindSegmentContaining(DefIdx); 62612de0b91SDan Gohman VNInfo *ValNo = LI.getVNInfoAt(DefIdx); 62712de0b91SDan Gohman I->start = TeeIdx; 62812de0b91SDan Gohman ValNo->def = TeeIdx; 62918c56a07SHeejin Ahn shrinkToUses(LI, LIS); 63012de0b91SDan Gohman 63112de0b91SDan Gohman // Finish stackifying the new regs. 632adf28177SDan Gohman LIS.createAndComputeVirtRegInterval(TeeReg); 6338aa237c3SDan Gohman LIS.createAndComputeVirtRegInterval(DefReg); 6348aa237c3SDan Gohman MFI.stackifyVReg(DefReg); 635adf28177SDan Gohman MFI.stackifyVReg(TeeReg); 63618c56a07SHeejin Ahn imposeStackOrdering(Def); 63718c56a07SHeejin Ahn imposeStackOrdering(Tee); 63812de0b91SDan Gohman 639be24c020SYury Delendik DefDIs.clone(Tee, DefReg); 640be24c020SYury Delendik DefDIs.clone(Insert, TeeReg); 6417c18d608SYury Delendik 642d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " - Replaced register: "; Def->dump()); 643d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << " - Tee instruction: "; Tee->dump()); 644adf28177SDan Gohman return Def; 645adf28177SDan Gohman } 646adf28177SDan Gohman 647adf28177SDan Gohman namespace { 648adf28177SDan Gohman /// A stack for walking the tree of instructions being built, visiting the 649adf28177SDan Gohman /// MachineOperands in DFS order. 650adf28177SDan Gohman class TreeWalkerState { 65118c56a07SHeejin Ahn using mop_iterator = MachineInstr::mop_iterator; 65218c56a07SHeejin Ahn using mop_reverse_iterator = std::reverse_iterator<mop_iterator>; 65318c56a07SHeejin Ahn using RangeTy = iterator_range<mop_reverse_iterator>; 654adf28177SDan Gohman SmallVector<RangeTy, 4> Worklist; 655adf28177SDan Gohman 656adf28177SDan Gohman public: 657adf28177SDan Gohman explicit TreeWalkerState(MachineInstr *Insert) { 658adf28177SDan Gohman const iterator_range<mop_iterator> &Range = Insert->explicit_uses(); 659adf28177SDan Gohman if (Range.begin() != Range.end()) 660adf28177SDan Gohman Worklist.push_back(reverse(Range)); 661adf28177SDan Gohman } 662adf28177SDan Gohman 66318c56a07SHeejin Ahn bool done() const { return Worklist.empty(); } 664adf28177SDan Gohman 66518c56a07SHeejin Ahn MachineOperand &pop() { 666adf28177SDan Gohman RangeTy &Range = Worklist.back(); 667adf28177SDan Gohman MachineOperand &Op = *Range.begin(); 668adf28177SDan Gohman Range = drop_begin(Range, 1); 669adf28177SDan Gohman if (Range.begin() == Range.end()) 670adf28177SDan Gohman Worklist.pop_back(); 671adf28177SDan Gohman assert((Worklist.empty() || 672adf28177SDan Gohman Worklist.back().begin() != Worklist.back().end()) && 673adf28177SDan Gohman "Empty ranges shouldn't remain in the worklist"); 674adf28177SDan Gohman return Op; 675adf28177SDan Gohman } 676adf28177SDan Gohman 677adf28177SDan Gohman /// Push Instr's operands onto the stack to be visited. 67818c56a07SHeejin Ahn void pushOperands(MachineInstr *Instr) { 679adf28177SDan Gohman const iterator_range<mop_iterator> &Range(Instr->explicit_uses()); 680adf28177SDan Gohman if (Range.begin() != Range.end()) 681adf28177SDan Gohman Worklist.push_back(reverse(Range)); 682adf28177SDan Gohman } 683adf28177SDan Gohman 684adf28177SDan Gohman /// Some of Instr's operands are on the top of the stack; remove them and 685adf28177SDan Gohman /// re-insert them starting from the beginning (because we've commuted them). 68618c56a07SHeejin Ahn void resetTopOperands(MachineInstr *Instr) { 68718c56a07SHeejin Ahn assert(hasRemainingOperands(Instr) && 688adf28177SDan Gohman "Reseting operands should only be done when the instruction has " 689adf28177SDan Gohman "an operand still on the stack"); 690adf28177SDan Gohman Worklist.back() = reverse(Instr->explicit_uses()); 691adf28177SDan Gohman } 692adf28177SDan Gohman 693adf28177SDan Gohman /// Test whether Instr has operands remaining to be visited at the top of 694adf28177SDan Gohman /// the stack. 69518c56a07SHeejin Ahn bool hasRemainingOperands(const MachineInstr *Instr) const { 696adf28177SDan Gohman if (Worklist.empty()) 697adf28177SDan Gohman return false; 698adf28177SDan Gohman const RangeTy &Range = Worklist.back(); 699adf28177SDan Gohman return Range.begin() != Range.end() && Range.begin()->getParent() == Instr; 700adf28177SDan Gohman } 701fbfe5ec4SDan Gohman 702fbfe5ec4SDan Gohman /// Test whether the given register is present on the stack, indicating an 703fbfe5ec4SDan Gohman /// operand in the tree that we haven't visited yet. Moving a definition of 704fbfe5ec4SDan Gohman /// Reg to a point in the tree after that would change its value. 7051054570aSDan Gohman /// 7066a87ddacSThomas Lively /// This is needed as a consequence of using implicit local.gets for 7076a87ddacSThomas Lively /// uses and implicit local.sets for defs. 70818c56a07SHeejin Ahn bool isOnStack(unsigned Reg) const { 709fbfe5ec4SDan Gohman for (const RangeTy &Range : Worklist) 710fbfe5ec4SDan Gohman for (const MachineOperand &MO : Range) 711fbfe5ec4SDan Gohman if (MO.isReg() && MO.getReg() == Reg) 712fbfe5ec4SDan Gohman return true; 713fbfe5ec4SDan Gohman return false; 714fbfe5ec4SDan Gohman } 715adf28177SDan Gohman }; 716adf28177SDan Gohman 717adf28177SDan Gohman /// State to keep track of whether commuting is in flight or whether it's been 718adf28177SDan Gohman /// tried for the current instruction and didn't work. 719adf28177SDan Gohman class CommutingState { 720adf28177SDan Gohman /// There are effectively three states: the initial state where we haven't 72199d39463SHeejin Ahn /// started commuting anything and we don't know anything yet, the tentative 722adf28177SDan Gohman /// state where we've commuted the operands of the current instruction and are 72399d39463SHeejin Ahn /// revisiting it, and the declined state where we've reverted the operands 724adf28177SDan Gohman /// back to their original order and will no longer commute it further. 72518c56a07SHeejin Ahn bool TentativelyCommuting = false; 72618c56a07SHeejin Ahn bool Declined = false; 727adf28177SDan Gohman 728adf28177SDan Gohman /// During the tentative state, these hold the operand indices of the commuted 729adf28177SDan Gohman /// operands. 730adf28177SDan Gohman unsigned Operand0, Operand1; 731adf28177SDan Gohman 732adf28177SDan Gohman public: 733adf28177SDan Gohman /// Stackification for an operand was not successful due to ordering 734adf28177SDan Gohman /// constraints. If possible, and if we haven't already tried it and declined 735adf28177SDan Gohman /// it, commute Insert's operands and prepare to revisit it. 73618c56a07SHeejin Ahn void maybeCommute(MachineInstr *Insert, TreeWalkerState &TreeWalker, 737adf28177SDan Gohman const WebAssemblyInstrInfo *TII) { 738adf28177SDan Gohman if (TentativelyCommuting) { 739adf28177SDan Gohman assert(!Declined && 740adf28177SDan Gohman "Don't decline commuting until you've finished trying it"); 741adf28177SDan Gohman // Commuting didn't help. Revert it. 7429cfc75c2SDuncan P. N. Exon Smith TII->commuteInstruction(*Insert, /*NewMI=*/false, Operand0, Operand1); 743adf28177SDan Gohman TentativelyCommuting = false; 744adf28177SDan Gohman Declined = true; 74518c56a07SHeejin Ahn } else if (!Declined && TreeWalker.hasRemainingOperands(Insert)) { 746adf28177SDan Gohman Operand0 = TargetInstrInfo::CommuteAnyOperandIndex; 747adf28177SDan Gohman Operand1 = TargetInstrInfo::CommuteAnyOperandIndex; 7489cfc75c2SDuncan P. N. Exon Smith if (TII->findCommutedOpIndices(*Insert, Operand0, Operand1)) { 749adf28177SDan Gohman // Tentatively commute the operands and try again. 7509cfc75c2SDuncan P. N. Exon Smith TII->commuteInstruction(*Insert, /*NewMI=*/false, Operand0, Operand1); 75118c56a07SHeejin Ahn TreeWalker.resetTopOperands(Insert); 752adf28177SDan Gohman TentativelyCommuting = true; 753adf28177SDan Gohman Declined = false; 754adf28177SDan Gohman } 755adf28177SDan Gohman } 756adf28177SDan Gohman } 757adf28177SDan Gohman 758adf28177SDan Gohman /// Stackification for some operand was successful. Reset to the default 759adf28177SDan Gohman /// state. 76018c56a07SHeejin Ahn void reset() { 761adf28177SDan Gohman TentativelyCommuting = false; 762adf28177SDan Gohman Declined = false; 763adf28177SDan Gohman } 764adf28177SDan Gohman }; 765adf28177SDan Gohman } // end anonymous namespace 766adf28177SDan Gohman 7671462faadSDan Gohman bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) { 768d34e60caSNicola Zaghen LLVM_DEBUG(dbgs() << "********** Register Stackifying **********\n" 7691462faadSDan Gohman "********** Function: " 7701462faadSDan Gohman << MF.getName() << '\n'); 7711462faadSDan Gohman 7721462faadSDan Gohman bool Changed = false; 7731462faadSDan Gohman MachineRegisterInfo &MRI = MF.getRegInfo(); 7741462faadSDan Gohman WebAssemblyFunctionInfo &MFI = *MF.getInfo<WebAssemblyFunctionInfo>(); 775b6fd39a3SDan Gohman const auto *TII = MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo(); 776b6fd39a3SDan Gohman const auto *TRI = MF.getSubtarget<WebAssemblySubtarget>().getRegisterInfo(); 77781719f85SDan Gohman AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); 77818c56a07SHeejin Ahn auto &MDT = getAnalysis<MachineDominatorTree>(); 77918c56a07SHeejin Ahn auto &LIS = getAnalysis<LiveIntervals>(); 780d70e5907SDan Gohman 7811462faadSDan Gohman // Walk the instructions from the bottom up. Currently we don't look past 7821462faadSDan Gohman // block boundaries, and the blocks aren't ordered so the block visitation 7831462faadSDan Gohman // order isn't significant, but we may want to change this in the future. 7841462faadSDan Gohman for (MachineBasicBlock &MBB : MF) { 7858f59cf75SDan Gohman // Don't use a range-based for loop, because we modify the list as we're 7868f59cf75SDan Gohman // iterating over it and the end iterator may change. 7878f59cf75SDan Gohman for (auto MII = MBB.rbegin(); MII != MBB.rend(); ++MII) { 7888f59cf75SDan Gohman MachineInstr *Insert = &*MII; 78981719f85SDan Gohman // Don't nest anything inside an inline asm, because we don't have 79081719f85SDan Gohman // constraints for $push inputs. 791c45e39b3SCraig Topper if (Insert->isInlineAsm()) 792595e8ab2SDan Gohman continue; 793595e8ab2SDan Gohman 794595e8ab2SDan Gohman // Ignore debugging intrinsics. 795c45e39b3SCraig Topper if (Insert->isDebugValue()) 796595e8ab2SDan Gohman continue; 79781719f85SDan Gohman 7981462faadSDan Gohman // Iterate through the inputs in reverse order, since we'll be pulling 79953d13997SDan Gohman // operands off the stack in LIFO order. 800adf28177SDan Gohman CommutingState Commuting; 801adf28177SDan Gohman TreeWalkerState TreeWalker(Insert); 80218c56a07SHeejin Ahn while (!TreeWalker.done()) { 80318c56a07SHeejin Ahn MachineOperand &Op = TreeWalker.pop(); 804adf28177SDan Gohman 8051462faadSDan Gohman // We're only interested in explicit virtual register operands. 806adf28177SDan Gohman if (!Op.isReg()) 8071462faadSDan Gohman continue; 8081462faadSDan Gohman 80905c145d6SDaniel Sanders Register Reg = Op.getReg(); 810adf28177SDan Gohman assert(Op.isUse() && "explicit_uses() should only iterate over uses"); 811adf28177SDan Gohman assert(!Op.isImplicit() && 812adf28177SDan Gohman "explicit_uses() should only iterate over explicit operands"); 8132bea69bfSDaniel Sanders if (Register::isPhysicalRegister(Reg)) 814adf28177SDan Gohman continue; 8151462faadSDan Gohman 816ffc184bbSDan Gohman // Identify the definition for this register at this point. 81718c56a07SHeejin Ahn MachineInstr *Def = getVRegDef(Reg, Insert, MRI, LIS); 8181462faadSDan Gohman if (!Def) 8191462faadSDan Gohman continue; 8201462faadSDan Gohman 82181719f85SDan Gohman // Don't nest an INLINE_ASM def into anything, because we don't have 82281719f85SDan Gohman // constraints for $pop outputs. 823c45e39b3SCraig Topper if (Def->isInlineAsm()) 82481719f85SDan Gohman continue; 82581719f85SDan Gohman 8264ba4816bSDan Gohman // Argument instructions represent live-in registers and not real 8274ba4816bSDan Gohman // instructions. 828d8ddf839SWouter van Oortmerssen if (WebAssembly::isArgument(Def->getOpcode())) 8294ba4816bSDan Gohman continue; 8304ba4816bSDan Gohman 831d6f48786SHeejin Ahn // Currently catch's return value register cannot be stackified, because 832d6f48786SHeejin Ahn // the wasm LLVM backend currently does not support live-in values 833d6f48786SHeejin Ahn // entering blocks, which is a part of multi-value proposal. 834d6f48786SHeejin Ahn // 835d6f48786SHeejin Ahn // Once we support live-in values of wasm blocks, this can be: 8369f96a58cSHeejin Ahn // catch ; push exnref value onto stack 8379f96a58cSHeejin Ahn // block exnref -> i32 8389f96a58cSHeejin Ahn // br_on_exn $__cpp_exception ; pop the exnref value 839d6f48786SHeejin Ahn // end_block 840d6f48786SHeejin Ahn // 841d6f48786SHeejin Ahn // But because we don't support it yet, the catch instruction's dst 842d6f48786SHeejin Ahn // register should be assigned to a local to be propagated across 843d6f48786SHeejin Ahn // 'block' boundary now. 844d6f48786SHeejin Ahn // 845d6f48786SHeejin Ahn // TODO Fix this once we support the multi-value proposal. 846d6f48786SHeejin Ahn if (Def->getOpcode() == WebAssembly::CATCH) 847d6f48786SHeejin Ahn continue; 848d6f48786SHeejin Ahn 849adf28177SDan Gohman // Decide which strategy to take. Prefer to move a single-use value 8504fc4e42dSDan Gohman // over cloning it, and prefer cloning over introducing a tee. 851adf28177SDan Gohman // For moving, we require the def to be in the same block as the use; 852adf28177SDan Gohman // this makes things simpler (LiveIntervals' handleMove function only 853adf28177SDan Gohman // supports intra-block moves) and it's MachineSink's job to catch all 854adf28177SDan Gohman // the sinking opportunities anyway. 855adf28177SDan Gohman bool SameBlock = Def->getParent() == &MBB; 85618c56a07SHeejin Ahn bool CanMove = SameBlock && isSafeToMove(Def, Insert, AA, MRI) && 85718c56a07SHeejin Ahn !TreeWalker.isOnStack(Reg); 85818c56a07SHeejin Ahn if (CanMove && hasOneUse(Reg, Def, MRI, MDT, LIS)) { 85918c56a07SHeejin Ahn Insert = moveForSingleUse(Reg, Op, Def, MBB, Insert, LIS, MFI, MRI); 860d966bf83SDerek Schuff 861d966bf83SDerek Schuff // If we are removing the frame base reg completely, remove the debug 862d966bf83SDerek Schuff // info as well. 863d966bf83SDerek Schuff // TODO: Encode this properly as a stackified value. 864d966bf83SDerek Schuff if (MFI.isFrameBaseVirtual() && MFI.getFrameBaseVreg() == Reg) 865d966bf83SDerek Schuff MFI.clearFrameBaseVreg(); 86618c56a07SHeejin Ahn } else if (shouldRematerialize(*Def, AA, TII)) { 8679cfc75c2SDuncan P. N. Exon Smith Insert = 86818c56a07SHeejin Ahn rematerializeCheapDef(Reg, Op, *Def, MBB, Insert->getIterator(), 8699cfc75c2SDuncan P. N. Exon Smith LIS, MFI, MRI, TII, TRI); 870cf2a9e28SSam Clegg } else if (CanMove && 87118c56a07SHeejin Ahn oneUseDominatesOtherUses(Reg, Op, MBB, MRI, MDT, LIS, MFI)) { 87218c56a07SHeejin Ahn Insert = moveAndTeeForMultiUse(Reg, Op, Def, MBB, Insert, LIS, MFI, 873adf28177SDan Gohman MRI, TII); 874b6fd39a3SDan Gohman } else { 875adf28177SDan Gohman // We failed to stackify the operand. If the problem was ordering 876adf28177SDan Gohman // constraints, Commuting may be able to help. 877adf28177SDan Gohman if (!CanMove && SameBlock) 87818c56a07SHeejin Ahn Commuting.maybeCommute(Insert, TreeWalker, TII); 879adf28177SDan Gohman // Proceed to the next operand. 880adf28177SDan Gohman continue; 881b6fd39a3SDan Gohman } 882adf28177SDan Gohman 883e81021a5SDan Gohman // If the instruction we just stackified is an IMPLICIT_DEF, convert it 884e81021a5SDan Gohman // to a constant 0 so that the def is explicit, and the push/pop 885e81021a5SDan Gohman // correspondence is maintained. 886e81021a5SDan Gohman if (Insert->getOpcode() == TargetOpcode::IMPLICIT_DEF) 88718c56a07SHeejin Ahn convertImplicitDefToConstZero(Insert, MRI, TII, MF, LIS); 888e81021a5SDan Gohman 889adf28177SDan Gohman // We stackified an operand. Add the defining instruction's operands to 890adf28177SDan Gohman // the worklist stack now to continue to build an ever deeper tree. 89118c56a07SHeejin Ahn Commuting.reset(); 89218c56a07SHeejin Ahn TreeWalker.pushOperands(Insert); 893b6fd39a3SDan Gohman } 894adf28177SDan Gohman 895adf28177SDan Gohman // If we stackified any operands, skip over the tree to start looking for 896adf28177SDan Gohman // the next instruction we can build a tree on. 897adf28177SDan Gohman if (Insert != &*MII) { 89818c56a07SHeejin Ahn imposeStackOrdering(&*MII); 899c7e5a9ceSEric Liu MII = MachineBasicBlock::iterator(Insert).getReverse(); 900adf28177SDan Gohman Changed = true; 901adf28177SDan Gohman } 9021462faadSDan Gohman } 9031462faadSDan Gohman } 9041462faadSDan Gohman 905e040533eSDan Gohman // If we used VALUE_STACK anywhere, add it to the live-in sets everywhere so 906adf28177SDan Gohman // that it never looks like a use-before-def. 907b0992dafSDan Gohman if (Changed) { 908e040533eSDan Gohman MF.getRegInfo().addLiveIn(WebAssembly::VALUE_STACK); 909b0992dafSDan Gohman for (MachineBasicBlock &MBB : MF) 910e040533eSDan Gohman MBB.addLiveIn(WebAssembly::VALUE_STACK); 911b0992dafSDan Gohman } 912b0992dafSDan Gohman 9137bafa0eaSDan Gohman #ifndef NDEBUG 914b6fd39a3SDan Gohman // Verify that pushes and pops are performed in LIFO order. 9157bafa0eaSDan Gohman SmallVector<unsigned, 0> Stack; 9167bafa0eaSDan Gohman for (MachineBasicBlock &MBB : MF) { 9177bafa0eaSDan Gohman for (MachineInstr &MI : MBB) { 918801bf7ebSShiva Chen if (MI.isDebugInstr()) 9190cfb5f85SDan Gohman continue; 9207bafa0eaSDan Gohman for (MachineOperand &MO : reverse(MI.explicit_operands())) { 9217a6b9825SDan Gohman if (!MO.isReg()) 9227a6b9825SDan Gohman continue; 92305c145d6SDaniel Sanders Register Reg = MO.getReg(); 9247bafa0eaSDan Gohman 925adf28177SDan Gohman if (MFI.isVRegStackified(Reg)) { 9267bafa0eaSDan Gohman if (MO.isDef()) 927adf28177SDan Gohman Stack.push_back(Reg); 9287bafa0eaSDan Gohman else 929adf28177SDan Gohman assert(Stack.pop_back_val() == Reg && 930adf28177SDan Gohman "Register stack pop should be paired with a push"); 9317bafa0eaSDan Gohman } 9327bafa0eaSDan Gohman } 9337bafa0eaSDan Gohman } 9347bafa0eaSDan Gohman // TODO: Generalize this code to support keeping values on the stack across 9357bafa0eaSDan Gohman // basic block boundaries. 936adf28177SDan Gohman assert(Stack.empty() && 937adf28177SDan Gohman "Register stack pushes and pops should be balanced"); 9387bafa0eaSDan Gohman } 9397bafa0eaSDan Gohman #endif 9407bafa0eaSDan Gohman 9411462faadSDan Gohman return Changed; 9421462faadSDan Gohman } 943