to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351636
218 lines
7.9 KiB
C++
218 lines
7.9 KiB
C++
//===-- WebAssemblyPeephole.cpp - WebAssembly Peephole Optimiztions -------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// Late peephole optimizations for WebAssembly.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
|
#include "WebAssembly.h"
|
|
#include "WebAssemblyMachineFunctionInfo.h"
|
|
#include "WebAssemblySubtarget.h"
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
using namespace llvm;
|
|
|
|
#define DEBUG_TYPE "wasm-peephole"
|
|
|
|
static cl::opt<bool> DisableWebAssemblyFallthroughReturnOpt(
|
|
"disable-wasm-fallthrough-return-opt", cl::Hidden,
|
|
cl::desc("WebAssembly: Disable fallthrough-return optimizations."),
|
|
cl::init(false));
|
|
|
|
namespace {
|
|
class WebAssemblyPeephole final : public MachineFunctionPass {
|
|
StringRef getPassName() const override {
|
|
return "WebAssembly late peephole optimizer";
|
|
}
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
AU.setPreservesCFG();
|
|
AU.addRequired<TargetLibraryInfoWrapperPass>();
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
}
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override;
|
|
|
|
public:
|
|
static char ID;
|
|
WebAssemblyPeephole() : MachineFunctionPass(ID) {}
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
char WebAssemblyPeephole::ID = 0;
|
|
INITIALIZE_PASS(WebAssemblyPeephole, DEBUG_TYPE,
|
|
"WebAssembly peephole optimizations", false, false)
|
|
|
|
FunctionPass *llvm::createWebAssemblyPeephole() {
|
|
return new WebAssemblyPeephole();
|
|
}
|
|
|
|
/// If desirable, rewrite NewReg to a drop register.
|
|
static bool MaybeRewriteToDrop(unsigned OldReg, unsigned NewReg,
|
|
MachineOperand &MO, WebAssemblyFunctionInfo &MFI,
|
|
MachineRegisterInfo &MRI) {
|
|
bool Changed = false;
|
|
if (OldReg == NewReg) {
|
|
Changed = true;
|
|
unsigned NewReg = MRI.createVirtualRegister(MRI.getRegClass(OldReg));
|
|
MO.setReg(NewReg);
|
|
MO.setIsDead();
|
|
MFI.stackifyVReg(NewReg);
|
|
}
|
|
return Changed;
|
|
}
|
|
|
|
static bool MaybeRewriteToFallthrough(MachineInstr &MI, MachineBasicBlock &MBB,
|
|
const MachineFunction &MF,
|
|
WebAssemblyFunctionInfo &MFI,
|
|
MachineRegisterInfo &MRI,
|
|
const WebAssemblyInstrInfo &TII,
|
|
unsigned FallthroughOpc,
|
|
unsigned CopyLocalOpc) {
|
|
if (DisableWebAssemblyFallthroughReturnOpt)
|
|
return false;
|
|
if (&MBB != &MF.back())
|
|
return false;
|
|
|
|
MachineBasicBlock::iterator End = MBB.end();
|
|
--End;
|
|
assert(End->getOpcode() == WebAssembly::END_FUNCTION);
|
|
--End;
|
|
if (&MI != &*End)
|
|
return false;
|
|
|
|
if (FallthroughOpc != WebAssembly::FALLTHROUGH_RETURN_VOID) {
|
|
// If the operand isn't stackified, insert a COPY to read the operand and
|
|
// stackify it.
|
|
MachineOperand &MO = MI.getOperand(0);
|
|
unsigned Reg = MO.getReg();
|
|
if (!MFI.isVRegStackified(Reg)) {
|
|
unsigned NewReg = MRI.createVirtualRegister(MRI.getRegClass(Reg));
|
|
BuildMI(MBB, MI, MI.getDebugLoc(), TII.get(CopyLocalOpc), NewReg)
|
|
.addReg(Reg);
|
|
MO.setReg(NewReg);
|
|
MFI.stackifyVReg(NewReg);
|
|
}
|
|
}
|
|
|
|
// Rewrite the return.
|
|
MI.setDesc(TII.get(FallthroughOpc));
|
|
return true;
|
|
}
|
|
|
|
bool WebAssemblyPeephole::runOnMachineFunction(MachineFunction &MF) {
|
|
LLVM_DEBUG({
|
|
dbgs() << "********** Peephole **********\n"
|
|
<< "********** Function: " << MF.getName() << '\n';
|
|
});
|
|
|
|
MachineRegisterInfo &MRI = MF.getRegInfo();
|
|
WebAssemblyFunctionInfo &MFI = *MF.getInfo<WebAssemblyFunctionInfo>();
|
|
const auto &TII = *MF.getSubtarget<WebAssemblySubtarget>().getInstrInfo();
|
|
const WebAssemblyTargetLowering &TLI =
|
|
*MF.getSubtarget<WebAssemblySubtarget>().getTargetLowering();
|
|
auto &LibInfo = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
|
|
bool Changed = false;
|
|
|
|
for (auto &MBB : MF)
|
|
for (auto &MI : MBB)
|
|
switch (MI.getOpcode()) {
|
|
default:
|
|
break;
|
|
case WebAssembly::CALL_I32:
|
|
case WebAssembly::CALL_I64: {
|
|
MachineOperand &Op1 = MI.getOperand(1);
|
|
if (Op1.isSymbol()) {
|
|
StringRef Name(Op1.getSymbolName());
|
|
if (Name == TLI.getLibcallName(RTLIB::MEMCPY) ||
|
|
Name == TLI.getLibcallName(RTLIB::MEMMOVE) ||
|
|
Name == TLI.getLibcallName(RTLIB::MEMSET)) {
|
|
LibFunc Func;
|
|
if (LibInfo.getLibFunc(Name, Func)) {
|
|
const auto &Op2 = MI.getOperand(2);
|
|
if (!Op2.isReg())
|
|
report_fatal_error("Peephole: call to builtin function with "
|
|
"wrong signature, not consuming reg");
|
|
MachineOperand &MO = MI.getOperand(0);
|
|
unsigned OldReg = MO.getReg();
|
|
unsigned NewReg = Op2.getReg();
|
|
|
|
if (MRI.getRegClass(NewReg) != MRI.getRegClass(OldReg))
|
|
report_fatal_error("Peephole: call to builtin function with "
|
|
"wrong signature, from/to mismatch");
|
|
Changed |= MaybeRewriteToDrop(OldReg, NewReg, MO, MFI, MRI);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
// Optimize away an explicit void return at the end of the function.
|
|
case WebAssembly::RETURN_I32:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_I32,
|
|
WebAssembly::COPY_I32);
|
|
break;
|
|
case WebAssembly::RETURN_I64:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_I64,
|
|
WebAssembly::COPY_I64);
|
|
break;
|
|
case WebAssembly::RETURN_F32:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_F32,
|
|
WebAssembly::COPY_F32);
|
|
break;
|
|
case WebAssembly::RETURN_F64:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_F64,
|
|
WebAssembly::COPY_F64);
|
|
break;
|
|
case WebAssembly::RETURN_v16i8:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_v16i8,
|
|
WebAssembly::COPY_V128);
|
|
break;
|
|
case WebAssembly::RETURN_v8i16:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_v8i16,
|
|
WebAssembly::COPY_V128);
|
|
break;
|
|
case WebAssembly::RETURN_v4i32:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_v4i32,
|
|
WebAssembly::COPY_V128);
|
|
break;
|
|
case WebAssembly::RETURN_v2i64:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_v2i64,
|
|
WebAssembly::COPY_V128);
|
|
break;
|
|
case WebAssembly::RETURN_v4f32:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_v4f32,
|
|
WebAssembly::COPY_V128);
|
|
break;
|
|
case WebAssembly::RETURN_v2f64:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_v2f64,
|
|
WebAssembly::COPY_V128);
|
|
break;
|
|
case WebAssembly::RETURN_VOID:
|
|
Changed |= MaybeRewriteToFallthrough(
|
|
MI, MBB, MF, MFI, MRI, TII, WebAssembly::FALLTHROUGH_RETURN_VOID,
|
|
WebAssembly::INSTRUCTION_LIST_END);
|
|
break;
|
|
}
|
|
|
|
return Changed;
|
|
}
|