2015-07-30 06:32:47 +08:00
|
|
|
// WebAssemblyMachineFunctionInfo.h-WebAssembly machine function info-*- C++ -*-
|
2015-06-30 07:51:55 +08:00
|
|
|
//
|
|
|
|
// 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 declares WebAssembly-specific per-machine-function
|
|
|
|
/// information.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYMACHINEFUNCTIONINFO_H
|
|
|
|
#define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYMACHINEFUNCTIONINFO_H
|
|
|
|
|
2015-12-12 07:49:46 +08:00
|
|
|
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
2015-06-30 07:51:55 +08:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
/// This class is derived from MachineFunctionInfo and contains private
|
|
|
|
/// WebAssembly-specific information for each MachineFunction.
|
|
|
|
class WebAssemblyFunctionInfo final : public MachineFunctionInfo {
|
|
|
|
MachineFunction &MF;
|
|
|
|
|
2015-11-11 09:33:02 +08:00
|
|
|
std::vector<MVT> Params;
|
2015-10-06 08:27:55 +08:00
|
|
|
|
2015-11-13 01:04:33 +08:00
|
|
|
/// A mapping from CodeGen vreg index to WebAssembly register number.
|
|
|
|
std::vector<unsigned> WARegs;
|
|
|
|
|
2015-11-17 00:18:28 +08:00
|
|
|
/// A mapping from CodeGen vreg index to a boolean value indicating whether
|
|
|
|
/// the given register is considered to be "stackified", meaning it has been
|
|
|
|
/// determined or made to meet the stack requirements:
|
|
|
|
/// - single use (per path)
|
|
|
|
/// - single def (per path)
|
2015-12-03 02:08:49 +08:00
|
|
|
/// - defined and used in LIFO order with other stack registers
|
2015-11-17 00:18:28 +08:00
|
|
|
BitVector VRegStackified;
|
|
|
|
|
2015-12-12 07:49:46 +08:00
|
|
|
// One entry for each possible target reg. we expect it to be small.
|
|
|
|
std::vector<unsigned> PhysRegs;
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
public:
|
2015-12-12 07:49:46 +08:00
|
|
|
explicit WebAssemblyFunctionInfo(MachineFunction &MF) : MF(MF) {
|
|
|
|
PhysRegs.resize(WebAssembly::NUM_TARGET_REGS, -1U);
|
|
|
|
}
|
2015-06-30 07:51:55 +08:00
|
|
|
~WebAssemblyFunctionInfo() override;
|
2015-10-06 08:27:55 +08:00
|
|
|
|
2015-11-11 09:33:02 +08:00
|
|
|
void addParam(MVT VT) { Params.push_back(VT); }
|
|
|
|
const std::vector<MVT> &getParams() const { return Params; }
|
|
|
|
|
2015-11-13 08:21:05 +08:00
|
|
|
static const unsigned UnusedReg = -1u;
|
|
|
|
|
2015-11-17 00:18:28 +08:00
|
|
|
void stackifyVReg(unsigned VReg) {
|
|
|
|
if (TargetRegisterInfo::virtReg2Index(VReg) >= VRegStackified.size())
|
|
|
|
VRegStackified.resize(TargetRegisterInfo::virtReg2Index(VReg) + 1);
|
|
|
|
VRegStackified.set(TargetRegisterInfo::virtReg2Index(VReg));
|
|
|
|
}
|
2016-01-26 11:39:31 +08:00
|
|
|
void unstackifyVReg(unsigned VReg) {
|
|
|
|
if (TargetRegisterInfo::virtReg2Index(VReg) >= VRegStackified.size())
|
|
|
|
return;
|
|
|
|
VRegStackified.reset(TargetRegisterInfo::virtReg2Index(VReg));
|
|
|
|
}
|
2015-11-17 00:18:28 +08:00
|
|
|
bool isVRegStackified(unsigned VReg) const {
|
|
|
|
if (TargetRegisterInfo::virtReg2Index(VReg) >= VRegStackified.size())
|
|
|
|
return false;
|
|
|
|
return VRegStackified.test(TargetRegisterInfo::virtReg2Index(VReg));
|
|
|
|
}
|
|
|
|
|
2015-11-13 08:21:05 +08:00
|
|
|
void initWARegs();
|
2015-11-13 01:04:33 +08:00
|
|
|
void setWAReg(unsigned VReg, unsigned WAReg) {
|
2015-11-13 08:21:05 +08:00
|
|
|
assert(WAReg != UnusedReg);
|
2015-11-26 05:13:02 +08:00
|
|
|
assert(TargetRegisterInfo::virtReg2Index(VReg) < WARegs.size());
|
2015-11-13 01:04:33 +08:00
|
|
|
WARegs[TargetRegisterInfo::virtReg2Index(VReg)] = WAReg;
|
|
|
|
}
|
2015-12-12 07:49:46 +08:00
|
|
|
unsigned getWAReg(unsigned Reg) const {
|
|
|
|
if (TargetRegisterInfo::isVirtualRegister(Reg)) {
|
|
|
|
assert(TargetRegisterInfo::virtReg2Index(Reg) < WARegs.size());
|
|
|
|
return WARegs[TargetRegisterInfo::virtReg2Index(Reg)];
|
|
|
|
}
|
|
|
|
return PhysRegs[Reg];
|
2015-11-13 01:04:33 +08:00
|
|
|
}
|
2015-11-26 05:13:02 +08:00
|
|
|
// If new virtual registers are created after initWARegs has been called,
|
|
|
|
// this function can be used to add WebAssembly register mappings for them.
|
|
|
|
void addWAReg(unsigned VReg, unsigned WAReg) {
|
|
|
|
assert(VReg = WARegs.size());
|
|
|
|
WARegs.push_back(WAReg);
|
|
|
|
}
|
2015-12-12 07:49:46 +08:00
|
|
|
|
|
|
|
void addPReg(unsigned PReg, unsigned WAReg) {
|
|
|
|
assert(PReg < WebAssembly::NUM_TARGET_REGS);
|
|
|
|
assert(WAReg < -1U);
|
|
|
|
PhysRegs[PReg] = WAReg;
|
|
|
|
}
|
2015-12-17 04:43:08 +08:00
|
|
|
const std::vector<unsigned> &getPhysRegs() const { return PhysRegs; }
|
2015-06-30 07:51:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|