30#define DEBUG_TYPE "wasm-reg-numbering"
35 return "WebAssembly Register Numbering";
51char WebAssemblyRegNumberingLegacy::ID = 0;
53 "Assigns WebAssembly register numbers for virtual registers",
57 return new WebAssemblyRegNumberingLegacy();
62 "********** Function: "
77 int64_t Imm =
MI.getOperand(1).getImm();
79 <<
" -> WAReg " << Imm <<
"\n");
87 unsigned NumStackRegs = 0;
90 for (
unsigned VRegIdx = 0; VRegIdx < NumVRegs; ++VRegIdx) {
93 if (MRI.use_empty(VReg))
98 << (INT32_MIN | NumStackRegs) <<
"\n");
99 MFI.
setWAReg(VReg, INT32_MIN | NumStackRegs++);
112bool WebAssemblyRegNumberingLegacy::runOnMachineFunction(
MachineFunction &MF) {
#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 regNumbering(MachineFunction &MF)
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.
Represent the analysis usage information of a pass.
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Represents analyses that only rely on functions' control flow.
FunctionPass class - This class is used to implement most global optimizations.
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.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineBasicBlock & front() const
Representation of each machine instruction.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
unsigned getNumVirtRegs() const
getNumVirtRegs - Return the number of virtual registers created.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
Wrapper class representing virtual and physical registers.
static Register index2VirtReg(unsigned Index)
Convert a 0-based index to a virtual register number.
Represent a constant reference to a string, i.e.
This class is derived from MachineFunctionInfo and contains private WebAssembly-specific information ...
void initWARegs(MachineRegisterInfo &MRI)
bool isVRegStackified(Register VReg) const
void setWAReg(Register VReg, unsigned WAReg)
unsigned getWAReg(Register VReg) const
const std::vector< MVT > & getParams() const
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
Pass manager infrastructure for declaring and invalidating analyses.
bool isArgument(unsigned Opc)
static const unsigned UnusedReg
This is an optimization pass for GlobalISel generic memory operations.
FunctionPass * createWebAssemblyRegNumberingLegacyPass()
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI Printable printReg(Register Reg, const TargetRegisterInfo *TRI=nullptr, unsigned SubIdx=0, const MachineRegisterInfo *MRI=nullptr)
Prints virtual and physical registers with or without a TRI instance.