LLVM 19.0.0git
WebAssemblyRegNumbering.cpp
Go to the documentation of this file.
1//===-- WebAssemblyRegNumbering.cpp - Register Numbering ------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file implements a pass which assigns WebAssembly register
11/// numbers for CodeGen virtual registers.
12///
13//===----------------------------------------------------------------------===//
14
16#include "WebAssembly.h"
26#include "llvm/CodeGen/Passes.h"
27#include "llvm/Support/Debug.h"
29using namespace llvm;
30
31#define DEBUG_TYPE "wasm-reg-numbering"
32
33namespace {
34class WebAssemblyRegNumbering final : public MachineFunctionPass {
35 StringRef getPassName() const override {
36 return "WebAssembly Register Numbering";
37 }
38
39 void getAnalysisUsage(AnalysisUsage &AU) const override {
40 AU.setPreservesCFG();
42 }
43
44 bool runOnMachineFunction(MachineFunction &MF) override;
45
46public:
47 static char ID; // Pass identification, replacement for typeid
48 WebAssemblyRegNumbering() : MachineFunctionPass(ID) {}
49};
50} // end anonymous namespace
51
52char WebAssemblyRegNumbering::ID = 0;
53INITIALIZE_PASS(WebAssemblyRegNumbering, DEBUG_TYPE,
54 "Assigns WebAssembly register numbers for virtual registers",
55 false, false)
56
58 return new WebAssemblyRegNumbering();
59}
60
61bool WebAssemblyRegNumbering::runOnMachineFunction(MachineFunction &MF) {
62 LLVM_DEBUG(dbgs() << "********** Register Numbering **********\n"
63 "********** Function: "
64 << MF.getName() << '\n');
65
68
69 MFI.initWARegs(MRI);
70
71 // WebAssembly argument registers are in the same index space as local
72 // variables. Assign the numbers for them first.
73 MachineBasicBlock &EntryMBB = MF.front();
74 for (MachineInstr &MI : EntryMBB) {
75 if (!WebAssembly::isArgument(MI.getOpcode()))
76 break;
77
78 int64_t Imm = MI.getOperand(1).getImm();
79 LLVM_DEBUG(dbgs() << "Arg VReg " << MI.getOperand(0).getReg()
80 << " -> WAReg " << Imm << "\n");
81 MFI.setWAReg(MI.getOperand(0).getReg(), Imm);
82 }
83
84 // Then assign regular WebAssembly registers for all remaining used
85 // virtual registers. TODO: Consider sorting the registers by frequency of
86 // use, to maximize usage of small immediate fields.
87 unsigned NumVRegs = MF.getRegInfo().getNumVirtRegs();
88 unsigned NumStackRegs = 0;
89 // Start the numbering for locals after the arg regs
90 unsigned CurReg = MFI.getParams().size();
91 for (unsigned VRegIdx = 0; VRegIdx < NumVRegs; ++VRegIdx) {
92 Register VReg = Register::index2VirtReg(VRegIdx);
93 // Skip unused registers.
94 if (MRI.use_empty(VReg))
95 continue;
96 // Handle stackified registers.
97 if (MFI.isVRegStackified(VReg)) {
98 LLVM_DEBUG(dbgs() << "VReg " << VReg << " -> WAReg "
99 << (INT32_MIN | NumStackRegs) << "\n");
100 MFI.setWAReg(VReg, INT32_MIN | NumStackRegs++);
101 continue;
102 }
103 if (MFI.getWAReg(VReg) == WebAssembly::UnusedReg) {
104 LLVM_DEBUG(dbgs() << "VReg " << VReg << " -> WAReg " << CurReg << "\n");
105 MFI.setWAReg(VReg, CurReg++);
106 }
107 }
108
109 return true;
110}
unsigned const MachineRegisterInfo * MRI
#define LLVM_DEBUG(X)
Definition: Debug.h:101
IRTranslator LLVM IR MI
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
This builds on the llvm/ADT/GraphTraits.h file to find the strongly connected components (SCCs) of a ...
This file provides WebAssembly-specific target descriptions.
This file declares WebAssembly-specific per-machine-function information.
#define DEBUG_TYPE
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.
Represent the analysis usage information of a pass.
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:269
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
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.
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
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.
Definition: MachineInstr.h:69
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
unsigned getNumVirtRegs() const
getNumVirtRegs - Return the number of virtual registers created.
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
static Register index2VirtReg(unsigned Index)
Convert a 0-based index to a virtual register number.
Definition: Register.h:84
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
This class is derived from MachineFunctionInfo and contains private WebAssembly-specific information ...
unsigned getWAReg(unsigned VReg) const
void initWARegs(MachineRegisterInfo &MRI)
void setWAReg(unsigned VReg, unsigned WAReg)
const std::vector< MVT > & getParams() const
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
bool isArgument(unsigned Opc)
static const unsigned UnusedReg
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FunctionPass * createWebAssemblyRegNumbering()
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163