25#define DEBUG_TYPE "wasm-peephole"
28 "disable-wasm-fallthrough-return-opt",
cl::Hidden,
29 cl::desc(
"WebAssembly: Disable fallthrough-return optimizations."),
35 return "WebAssembly late peephole optimizer";
38 void getAnalysisUsage(AnalysisUsage &AU)
const override {
45 bool runOnMachineFunction(MachineFunction &MF)
override;
49 WebAssemblyPeephole() : MachineFunctionPass(ID) {}
53char WebAssemblyPeephole::ID = 0;
55 "WebAssembly peephole optimizations",
false,
false)
58 return new WebAssemblyPeephole();
66 if (OldReg == NewReg) {
68 Register NewReg =
MRI.createVirtualRegister(
MRI.getRegClass(OldReg));
88 assert(End->getOpcode() == WebAssembly::END_FUNCTION);
93 for (
auto &MO :
MI.explicit_operands()) {
98 unsigned CopyLocalOpc;
101 Register NewReg =
MRI.createVirtualRegister(RegClass);
109 MI.setDesc(
TII.get(WebAssembly::FALLTHROUGH_RETURN));
115 dbgs() <<
"********** Peephole **********\n"
116 <<
"********** Function: " << MF.
getName() <<
'\n';
120 WebAssemblyFunctionInfo &MFI = *MF.
getInfo<WebAssemblyFunctionInfo>();
121 const WebAssemblySubtarget &Subtarget =
123 const auto &
TII = *Subtarget.getInstrInfo();
125 getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(MF.
getFunction());
127 const LibcallLoweringInfo &LibcallLowering =
128 getAnalysis<LibcallLoweringInfoWrapper>().getLibcallLowering(
131 RTLIB::LibcallImpl MemcpyImpl = LibcallLowering.
getLibcallImpl(RTLIB::MEMCPY);
132 RTLIB::LibcallImpl MemmoveImpl =
134 RTLIB::LibcallImpl MemsetImpl = LibcallLowering.
getLibcallImpl(RTLIB::MEMSET);
136 StringRef MemcpyName =
138 StringRef MemmoveName =
140 StringRef MemsetName =
147 switch (
MI.getOpcode()) {
150 case WebAssembly::CALL: {
151 MachineOperand &Op1 =
MI.getOperand(1);
154 if (Name == MemcpyName || Name == MemmoveName || Name == MemsetName) {
156 if (LibInfo.getLibFunc(Name, Func)) {
157 const auto &Op2 =
MI.getOperand(2);
160 "wrong signature, not consuming reg");
161 MachineOperand &MO =
MI.getOperand(0);
165 if (
MRI.getRegClass(NewReg) !=
MRI.getRegClass(OldReg))
167 "wrong signature, from/to mismatch");
175 case WebAssembly::RETURN:
unsigned const MachineRegisterInfo * MRI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
const HexagonInstrInfo * TII
Promote Memory to Register
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file provides WebAssembly-specific target descriptions.
This file declares WebAssembly-specific per-machine-function information.
static bool maybeRewriteToDrop(unsigned OldReg, unsigned NewReg, MachineOperand &MO, WebAssemblyFunctionInfo &MFI, MachineRegisterInfo &MRI)
If desirable, rewrite NewReg to a drop register.
static bool maybeRewriteToFallthrough(MachineInstr &MI, MachineBasicBlock &MBB, const MachineFunction &MF, WebAssemblyFunctionInfo &MFI, MachineRegisterInfo &MRI, const WebAssemblyInstrInfo &TII)
static cl::opt< bool > DisableWebAssemblyFallthroughReturnOpt("disable-wasm-fallthrough-return-opt", cl::Hidden, cl::desc("WebAssembly: Disable fallthrough-return optimizations."), cl::init(false))
This file declares the WebAssembly-specific subclass of TargetSubtarget.
This file contains the declaration of the WebAssembly-specific utility functions.
This file contains the entry points for global functions defined in the LLVM WebAssembly back-end.
AnalysisUsage & addRequired()
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
FunctionPass class - This class is used to implement most global optimizations.
Module * getParent()
Get the module that this global value is contained inside of...
LLVM_ABI RTLIB::LibcallImpl getLibcallImpl(RTLIB::Libcall Call) const
Return the lowering's selection of implementation call for Call.
MachineInstrBundleIterator< MachineInstr > iterator
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineBasicBlock & back() const
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineInstrBuilder & addReg(Register RegNo, unsigned Flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
void setIsDead(bool Val=true)
LLVM_ABI void setReg(Register Reg)
Change the register this operand corresponds to.
bool isSymbol() const
isSymbol - Tests if this is a MO_ExternalSymbol operand.
const char * getSymbolName() const
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Wrapper class representing virtual and physical registers.
StringRef - Represent a constant reference to a string, i.e.
This class is derived from MachineFunctionInfo and contains private WebAssembly-specific information ...
void stackifyVReg(MachineRegisterInfo &MRI, Register VReg)
bool isVRegStackified(Register VReg) const
unsigned getCopyOpcodeForRegClass(const TargetRegisterClass *RC)
Returns the appropriate copy opcode for the given register class.
initializer< Ty > init(const Ty &Val)
NodeAddr< FuncNode * > Func
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
FunctionPass * createWebAssemblyPeephole()
static StringRef getLibcallImplName(RTLIB::LibcallImpl CallImpl)
Get the libcall routine name for the specified libcall implementation.