summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
committerpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
commitb64793999546ed8adebaeebd9d8345d18db8927d (patch)
tree4357c27b561d73b0e089727c6ed659f2ceff5f47 /gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
parentAdd support for UTF-8 DISPLAY-HINTs with octet length. For now only (diff)
downloadwireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.tar.xz
wireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.zip
Remove LLVM 8.0.1 files.
Diffstat (limited to 'gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp')
-rw-r--r--gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp103
1 files changed, 0 insertions, 103 deletions
diff --git a/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp b/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
deleted file mode 100644
index e5a3e47a3bc..00000000000
--- a/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
+++ /dev/null
@@ -1,103 +0,0 @@
-//===-- WebAssemblyReplacePhysRegs.cpp - Replace phys regs with virt regs -===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-///
-/// \file
-/// This file implements a pass that replaces physical registers with
-/// virtual registers.
-///
-/// LLVM expects certain physical registers, such as a stack pointer. However,
-/// WebAssembly doesn't actually have such physical registers. This pass is run
-/// once LLVM no longer needs these registers, and replaces them with virtual
-/// registers, so they can participate in register stackifying and coloring in
-/// the normal way.
-///
-//===----------------------------------------------------------------------===//
-
-#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
-#include "WebAssembly.h"
-#include "WebAssemblyMachineFunctionInfo.h"
-#include "WebAssemblySubtarget.h"
-#include "llvm/CodeGen/MachineFunctionPass.h"
-#include "llvm/CodeGen/MachineRegisterInfo.h"
-#include "llvm/CodeGen/Passes.h"
-#include "llvm/Support/Debug.h"
-#include "llvm/Support/raw_ostream.h"
-using namespace llvm;
-
-#define DEBUG_TYPE "wasm-replace-phys-regs"
-
-namespace {
-class WebAssemblyReplacePhysRegs final : public MachineFunctionPass {
-public:
- static char ID; // Pass identification, replacement for typeid
- WebAssemblyReplacePhysRegs() : MachineFunctionPass(ID) {}
-
-private:
- StringRef getPassName() const override {
- return "WebAssembly Replace Physical Registers";
- }
-
- void getAnalysisUsage(AnalysisUsage &AU) const override {
- AU.setPreservesCFG();
- MachineFunctionPass::getAnalysisUsage(AU);
- }
-
- bool runOnMachineFunction(MachineFunction &MF) override;
-};
-} // end anonymous namespace
-
-char WebAssemblyReplacePhysRegs::ID = 0;
-INITIALIZE_PASS(WebAssemblyReplacePhysRegs, DEBUG_TYPE,
- "Replace physical registers with virtual registers", false,
- false)
-
-FunctionPass *llvm::createWebAssemblyReplacePhysRegs() {
- return new WebAssemblyReplacePhysRegs();
-}
-
-bool WebAssemblyReplacePhysRegs::runOnMachineFunction(MachineFunction &MF) {
- LLVM_DEBUG({
- dbgs() << "********** Replace Physical Registers **********\n"
- << "********** Function: " << MF.getName() << '\n';
- });
-
- MachineRegisterInfo &MRI = MF.getRegInfo();
- const auto &TRI = *MF.getSubtarget<WebAssemblySubtarget>().getRegisterInfo();
- bool Changed = false;
-
- assert(!mustPreserveAnalysisID(LiveIntervalsID) &&
- "LiveIntervals shouldn't be active yet!");
- // We don't preserve SSA or liveness.
- MRI.leaveSSA();
- MRI.invalidateLiveness();
-
- for (unsigned PReg = WebAssembly::NoRegister + 1;
- PReg < WebAssembly::NUM_TARGET_REGS; ++PReg) {
- // Skip fake registers that are never used explicitly.
- if (PReg == WebAssembly::VALUE_STACK || PReg == WebAssembly::ARGUMENTS)
- continue;
-
- // Replace explicit uses of the physical register with a virtual register.
- const TargetRegisterClass *RC = TRI.getMinimalPhysRegClass(PReg);
- unsigned VReg = WebAssembly::NoRegister;
- for (auto I = MRI.reg_begin(PReg), E = MRI.reg_end(); I != E;) {
- MachineOperand &MO = *I++;
- if (!MO.isImplicit()) {
- if (VReg == WebAssembly::NoRegister)
- VReg = MRI.createVirtualRegister(RC);
- MO.setReg(VReg);
- if (MO.getParent()->isDebugValue())
- MO.setIsDebug();
- Changed = true;
- }
- }
- }
-
- return Changed;
-}