2015-11-17 00:18:28 +08:00
|
|
|
//===-- WebAssemblyRegStackify.cpp - Register Stackification --------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file implements a register stacking pass.
|
|
|
|
///
|
|
|
|
/// This pass reorders instructions to put register uses and defs in an order
|
|
|
|
/// such that they form single-use expression trees. Registers fitting this form
|
|
|
|
/// are then marked as "stackified", meaning references to them are replaced by
|
|
|
|
/// "push" and "pop" from the stack.
|
|
|
|
///
|
2015-12-08 11:43:03 +08:00
|
|
|
/// This is primarily a code size optimization, since temporary values on the
|
2015-11-17 00:18:28 +08:00
|
|
|
/// expression don't need to be named.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "WebAssembly.h"
|
2015-11-19 00:12:01 +08:00
|
|
|
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h" // for WebAssembly::ARGUMENT_*
|
2015-11-30 06:32:02 +08:00
|
|
|
#include "WebAssemblyMachineFunctionInfo.h"
|
2016-01-20 00:59:23 +08:00
|
|
|
#include "WebAssemblySubtarget.h"
|
2015-11-26 00:55:01 +08:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
2015-12-25 08:31:02 +08:00
|
|
|
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
2015-11-17 00:18:28 +08:00
|
|
|
#include "llvm/CodeGen/MachineBlockFrequencyInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "wasm-reg-stackify"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class WebAssemblyRegStackify final : public MachineFunctionPass {
|
|
|
|
const char *getPassName() const override {
|
|
|
|
return "WebAssembly Register Stackify";
|
|
|
|
}
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
|
|
AU.setPreservesCFG();
|
2015-11-26 00:55:01 +08:00
|
|
|
AU.addRequired<AAResultsWrapperPass>();
|
2015-12-25 08:31:02 +08:00
|
|
|
AU.addRequired<LiveIntervals>();
|
2015-11-17 00:18:28 +08:00
|
|
|
AU.addPreserved<MachineBlockFrequencyInfo>();
|
2015-12-25 08:31:02 +08:00
|
|
|
AU.addPreserved<SlotIndexes>();
|
|
|
|
AU.addPreserved<LiveIntervals>();
|
2015-11-17 00:18:28 +08:00
|
|
|
AU.addPreservedID(MachineDominatorsID);
|
2015-12-25 08:31:02 +08:00
|
|
|
AU.addPreservedID(LiveVariablesID);
|
2015-11-17 00:18:28 +08:00
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID; // Pass identification, replacement for typeid
|
|
|
|
WebAssemblyRegStackify() : MachineFunctionPass(ID) {}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
char WebAssemblyRegStackify::ID = 0;
|
|
|
|
FunctionPass *llvm::createWebAssemblyRegStackify() {
|
|
|
|
return new WebAssemblyRegStackify();
|
|
|
|
}
|
|
|
|
|
2015-11-20 10:19:12 +08:00
|
|
|
// Decorate the given instruction with implicit operands that enforce the
|
2015-12-25 08:31:02 +08:00
|
|
|
// expression stack ordering constraints for an instruction which is on
|
|
|
|
// the expression stack.
|
|
|
|
static void ImposeStackOrdering(MachineInstr *MI) {
|
2015-12-05 08:51:40 +08:00
|
|
|
// Write the opaque EXPR_STACK register.
|
|
|
|
if (!MI->definesRegister(WebAssembly::EXPR_STACK))
|
|
|
|
MI->addOperand(MachineOperand::CreateReg(WebAssembly::EXPR_STACK,
|
|
|
|
/*isDef=*/true,
|
|
|
|
/*isImp=*/true));
|
|
|
|
|
|
|
|
// Also read the opaque EXPR_STACK register.
|
2015-12-15 06:37:23 +08:00
|
|
|
if (!MI->readsRegister(WebAssembly::EXPR_STACK))
|
|
|
|
MI->addOperand(MachineOperand::CreateReg(WebAssembly::EXPR_STACK,
|
|
|
|
/*isDef=*/false,
|
|
|
|
/*isImp=*/true));
|
2015-11-20 10:19:12 +08:00
|
|
|
}
|
|
|
|
|
2015-12-25 08:31:02 +08:00
|
|
|
// Test whether it's safe to move Def to just before Insert.
|
2015-11-26 00:55:01 +08:00
|
|
|
// TODO: Compute memory dependencies in a way that doesn't require always
|
|
|
|
// walking the block.
|
|
|
|
// TODO: Compute memory dependencies in a way that uses AliasAnalysis to be
|
|
|
|
// more precise.
|
|
|
|
static bool IsSafeToMove(const MachineInstr *Def, const MachineInstr *Insert,
|
2015-12-25 08:31:02 +08:00
|
|
|
AliasAnalysis &AA, LiveIntervals &LIS,
|
|
|
|
MachineRegisterInfo &MRI) {
|
2015-12-04 07:07:03 +08:00
|
|
|
assert(Def->getParent() == Insert->getParent());
|
2015-11-26 00:55:01 +08:00
|
|
|
bool SawStore = false, SawSideEffects = false;
|
|
|
|
MachineBasicBlock::const_iterator D(Def), I(Insert);
|
2015-12-25 08:31:02 +08:00
|
|
|
|
|
|
|
// Check for register dependencies.
|
|
|
|
for (const MachineOperand &MO : Def->operands()) {
|
|
|
|
if (!MO.isReg() || MO.isUndef())
|
|
|
|
continue;
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
|
|
|
|
// If the register is dead here and at Insert, ignore it.
|
|
|
|
if (MO.isDead() && Insert->definesRegister(Reg) &&
|
|
|
|
!Insert->readsRegister(Reg))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
|
|
|
|
// If the physical register is never modified, ignore it.
|
|
|
|
if (!MRI.isPhysRegModified(Reg))
|
|
|
|
continue;
|
|
|
|
// Otherwise, it's a physical register with unknown liveness.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ask LiveIntervals whether moving this virtual register use or def to
|
|
|
|
// Insert will change value numbers are seen.
|
|
|
|
const LiveInterval &LI = LIS.getInterval(Reg);
|
2016-01-20 00:59:23 +08:00
|
|
|
VNInfo *DefVNI =
|
|
|
|
MO.isDef() ? LI.getVNInfoAt(LIS.getInstructionIndex(Def).getRegSlot())
|
|
|
|
: LI.getVNInfoBefore(LIS.getInstructionIndex(Def));
|
2015-12-25 08:31:02 +08:00
|
|
|
assert(DefVNI && "Instruction input missing value number");
|
|
|
|
VNInfo *InsVNI = LI.getVNInfoBefore(LIS.getInstructionIndex(Insert));
|
|
|
|
if (InsVNI && DefVNI != InsVNI)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for memory dependencies and side effects.
|
2015-11-26 00:55:01 +08:00
|
|
|
for (--I; I != D; --I)
|
2016-01-20 12:21:16 +08:00
|
|
|
SawSideEffects |= !I->isSafeToMove(&AA, SawStore);
|
2015-11-26 00:55:01 +08:00
|
|
|
return !(SawStore && Def->mayLoad() && !Def->isInvariantLoad(&AA)) &&
|
|
|
|
!(SawSideEffects && !Def->isSafeToMove(&AA, SawStore));
|
|
|
|
}
|
|
|
|
|
2015-11-17 00:18:28 +08:00
|
|
|
bool WebAssemblyRegStackify::runOnMachineFunction(MachineFunction &MF) {
|
|
|
|
DEBUG(dbgs() << "********** Register Stackifying **********\n"
|
|
|
|
"********** Function: "
|
|
|
|
<< MF.getName() << '\n');
|
|
|
|
|
|
|
|
bool Changed = false;
|
|
|
|
MachineRegisterInfo &MRI = MF.getRegInfo();
|
|
|
|
WebAssemblyFunctionInfo &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
|
2016-01-20 00:59:23 +08:00
|
|
|
const auto *TII = MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
|
|
|
|
const auto *TRI = MF.getSubtarget<WebAssemblySubtarget>().getRegisterInfo();
|
2015-11-26 00:55:01 +08:00
|
|
|
AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults();
|
2015-12-25 08:31:02 +08:00
|
|
|
LiveIntervals &LIS = getAnalysis<LiveIntervals>();
|
2015-12-08 11:30:42 +08:00
|
|
|
|
2015-11-17 00:18:28 +08:00
|
|
|
// Walk the instructions from the bottom up. Currently we don't look past
|
|
|
|
// block boundaries, and the blocks aren't ordered so the block visitation
|
|
|
|
// order isn't significant, but we may want to change this in the future.
|
|
|
|
for (MachineBasicBlock &MBB : MF) {
|
2016-01-07 02:29:35 +08:00
|
|
|
// Don't use a range-based for loop, because we modify the list as we're
|
|
|
|
// iterating over it and the end iterator may change.
|
|
|
|
for (auto MII = MBB.rbegin(); MII != MBB.rend(); ++MII) {
|
|
|
|
MachineInstr *Insert = &*MII;
|
2015-11-17 00:18:28 +08:00
|
|
|
// Don't nest anything inside a phi.
|
|
|
|
if (Insert->getOpcode() == TargetOpcode::PHI)
|
|
|
|
break;
|
|
|
|
|
2015-11-26 00:55:01 +08:00
|
|
|
// Don't nest anything inside an inline asm, because we don't have
|
|
|
|
// constraints for $push inputs.
|
|
|
|
if (Insert->getOpcode() == TargetOpcode::INLINEASM)
|
|
|
|
break;
|
|
|
|
|
2015-11-17 00:18:28 +08:00
|
|
|
// Iterate through the inputs in reverse order, since we'll be pulling
|
2015-12-03 02:08:49 +08:00
|
|
|
// operands off the stack in LIFO order.
|
2015-11-20 10:19:12 +08:00
|
|
|
bool AnyStackified = false;
|
2015-11-17 00:18:28 +08:00
|
|
|
for (MachineOperand &Op : reverse(Insert->uses())) {
|
|
|
|
// We're only interested in explicit virtual register operands.
|
2015-11-26 00:55:01 +08:00
|
|
|
if (!Op.isReg() || Op.isImplicit() || !Op.isUse())
|
2015-11-17 00:18:28 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
unsigned Reg = Op.getReg();
|
|
|
|
|
|
|
|
// Only consider registers with a single definition.
|
|
|
|
// TODO: Eventually we may relax this, to stackify phi transfers.
|
2015-12-25 08:31:02 +08:00
|
|
|
MachineInstr *Def = MRI.getUniqueVRegDef(Reg);
|
2015-11-17 00:18:28 +08:00
|
|
|
if (!Def)
|
|
|
|
continue;
|
|
|
|
|
2015-11-26 00:55:01 +08:00
|
|
|
// Don't nest an INLINE_ASM def into anything, because we don't have
|
|
|
|
// constraints for $pop outputs.
|
|
|
|
if (Def->getOpcode() == TargetOpcode::INLINEASM)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Don't nest PHIs inside of anything.
|
|
|
|
if (Def->getOpcode() == TargetOpcode::PHI)
|
|
|
|
continue;
|
|
|
|
|
2015-11-19 00:12:01 +08:00
|
|
|
// Argument instructions represent live-in registers and not real
|
|
|
|
// instructions.
|
|
|
|
if (Def->getOpcode() == WebAssembly::ARGUMENT_I32 ||
|
|
|
|
Def->getOpcode() == WebAssembly::ARGUMENT_I64 ||
|
|
|
|
Def->getOpcode() == WebAssembly::ARGUMENT_F32 ||
|
|
|
|
Def->getOpcode() == WebAssembly::ARGUMENT_F64)
|
|
|
|
continue;
|
|
|
|
|
2016-01-20 00:59:23 +08:00
|
|
|
if (MRI.hasOneUse(Reg) && Def->getParent() == &MBB &&
|
|
|
|
IsSafeToMove(Def, Insert, AA, LIS, MRI)) {
|
|
|
|
// A single-use def in the same block with no intervening memory or
|
|
|
|
// register dependencies; move the def down and nest it with the
|
|
|
|
// current instruction.
|
|
|
|
// TODO: Stackify multiple-use values, taking advantage of set_local
|
|
|
|
// returning its result.
|
|
|
|
Changed = true;
|
|
|
|
AnyStackified = true;
|
|
|
|
MBB.splice(Insert, &MBB, Def);
|
|
|
|
LIS.handleMove(Def);
|
|
|
|
MFI.stackifyVReg(Reg);
|
|
|
|
ImposeStackOrdering(Def);
|
|
|
|
Insert = Def;
|
|
|
|
} else if (Def->isAsCheapAsAMove() &&
|
|
|
|
TII->isTriviallyReMaterializable(Def, &AA)) {
|
|
|
|
// A trivially cloneable instruction; clone it and nest the new copy
|
|
|
|
// with the current instruction.
|
|
|
|
Changed = true;
|
|
|
|
AnyStackified = true;
|
|
|
|
unsigned OldReg = Def->getOperand(0).getReg();
|
|
|
|
unsigned NewReg = MRI.createVirtualRegister(MRI.getRegClass(OldReg));
|
|
|
|
TII->reMaterialize(MBB, Insert, NewReg, 0, Def, *TRI);
|
|
|
|
Op.setReg(NewReg);
|
|
|
|
MachineInstr *Clone =
|
|
|
|
&*std::prev(MachineBasicBlock::instr_iterator(Insert));
|
|
|
|
LIS.InsertMachineInstrInMaps(Clone);
|
|
|
|
LIS.createAndComputeVirtRegInterval(NewReg);
|
|
|
|
MFI.stackifyVReg(NewReg);
|
|
|
|
ImposeStackOrdering(Clone);
|
|
|
|
Insert = Clone;
|
|
|
|
|
|
|
|
// If that was the last use of the original, delete the original.
|
|
|
|
// Otherwise shrink the LiveInterval.
|
|
|
|
if (MRI.use_empty(OldReg)) {
|
|
|
|
SlotIndex Idx = LIS.getInstructionIndex(Def).getRegSlot();
|
|
|
|
LIS.removePhysRegDefAt(WebAssembly::ARGUMENTS, Idx);
|
|
|
|
LIS.removeVRegDefAt(LIS.getInterval(OldReg), Idx);
|
|
|
|
LIS.removeInterval(OldReg);
|
|
|
|
LIS.RemoveMachineInstrFromMaps(Def);
|
|
|
|
Def->eraseFromParent();
|
|
|
|
} else {
|
|
|
|
LIS.shrinkToUses(&LIS.getInterval(OldReg));
|
|
|
|
}
|
|
|
|
}
|
2015-11-17 00:18:28 +08:00
|
|
|
}
|
2015-11-20 10:19:12 +08:00
|
|
|
if (AnyStackified)
|
2016-01-07 02:29:35 +08:00
|
|
|
ImposeStackOrdering(&*MII);
|
2015-11-17 00:18:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 10:19:12 +08:00
|
|
|
// If we used EXPR_STACK anywhere, add it to the live-in sets everywhere
|
|
|
|
// so that it never looks like a use-before-def.
|
|
|
|
if (Changed) {
|
|
|
|
MF.getRegInfo().addLiveIn(WebAssembly::EXPR_STACK);
|
|
|
|
for (MachineBasicBlock &MBB : MF)
|
|
|
|
MBB.addLiveIn(WebAssembly::EXPR_STACK);
|
|
|
|
}
|
|
|
|
|
2015-11-20 10:33:24 +08:00
|
|
|
#ifndef NDEBUG
|
2016-01-20 00:59:23 +08:00
|
|
|
// Verify that pushes and pops are performed in LIFO order.
|
2015-11-20 10:33:24 +08:00
|
|
|
SmallVector<unsigned, 0> Stack;
|
|
|
|
for (MachineBasicBlock &MBB : MF) {
|
|
|
|
for (MachineInstr &MI : MBB) {
|
|
|
|
for (MachineOperand &MO : reverse(MI.explicit_operands())) {
|
2015-11-30 06:32:02 +08:00
|
|
|
if (!MO.isReg())
|
|
|
|
continue;
|
2015-11-20 10:33:24 +08:00
|
|
|
unsigned VReg = MO.getReg();
|
|
|
|
|
2015-12-05 07:22:35 +08:00
|
|
|
// Don't stackify physregs like SP or FP.
|
|
|
|
if (!TargetRegisterInfo::isVirtualRegister(VReg))
|
|
|
|
continue;
|
|
|
|
|
2015-11-20 10:33:24 +08:00
|
|
|
if (MFI.isVRegStackified(VReg)) {
|
|
|
|
if (MO.isDef())
|
|
|
|
Stack.push_back(VReg);
|
|
|
|
else
|
|
|
|
assert(Stack.pop_back_val() == VReg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: Generalize this code to support keeping values on the stack across
|
|
|
|
// basic block boundaries.
|
|
|
|
assert(Stack.empty());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-11-17 00:18:28 +08:00
|
|
|
return Changed;
|
|
|
|
}
|