mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 01:16:26 +00:00

I did this a long time ago with a janky python script, but now clang-format has built-in support for this. I fed clang-format every line with a #include and let it re-sort things according to the precise LLVM rules for include ordering baked into clang-format these days. I've reverted a number of files where the results of sorting includes isn't healthy. Either places where we have legacy code relying on particular include ordering (where possible, I'll fix these separately) or where we have particular formatting around #include lines that I didn't want to disturb in this patch. This patch is *entirely* mechanical. If you get merge conflicts or anything, just ignore the changes in this patch and run clang-format over your #include lines in the files. Sorry for any noise here, but it is important to keep these things stable. I was seeing an increasing number of patches with irrelevant re-ordering of #include lines because clang-format was used. This patch at least isolates that churn, makes it easy to skip when resolving conflicts, and gets us to a clean baseline (again). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@304787 91177308-0d34-0410-b5e6-96231b3b80d8
100 lines
3.3 KiB
C++
100 lines
3.3 KiB
C++
//===-- 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
|
|
/// \brief 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;
|
|
FunctionPass *llvm::createWebAssemblyReplacePhysRegs() {
|
|
return new WebAssemblyReplacePhysRegs();
|
|
}
|
|
|
|
bool WebAssemblyReplacePhysRegs::runOnMachineFunction(MachineFunction &MF) {
|
|
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;
|
|
}
|