mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
eb66b33867
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). llvm-svn: 304787
75 lines
2.8 KiB
C++
75 lines
2.8 KiB
C++
//===-- ResetMachineFunctionPass.cpp - Reset Machine Function ----*- C++ -*-==//
|
|
//
|
|
// 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 will conditionally reset a machine
|
|
/// function as if it was just created. This is used to provide a fallback
|
|
/// mechanism when GlobalISel fails, thus the condition for the reset to
|
|
/// happen is that the MachineFunction has the FailedISel property.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
#include "llvm/CodeGen/Passes.h"
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
|
#include "llvm/Support/Debug.h"
|
|
using namespace llvm;
|
|
|
|
#define DEBUG_TYPE "reset-machine-function"
|
|
|
|
STATISTIC(NumFunctionsReset, "Number of functions reset");
|
|
|
|
namespace {
|
|
class ResetMachineFunction : public MachineFunctionPass {
|
|
/// Tells whether or not this pass should emit a fallback
|
|
/// diagnostic when it resets a function.
|
|
bool EmitFallbackDiag;
|
|
/// Whether we should abort immediately instead of resetting the function.
|
|
bool AbortOnFailedISel;
|
|
|
|
public:
|
|
static char ID; // Pass identification, replacement for typeid
|
|
ResetMachineFunction(bool EmitFallbackDiag = false,
|
|
bool AbortOnFailedISel = false)
|
|
: MachineFunctionPass(ID), EmitFallbackDiag(EmitFallbackDiag),
|
|
AbortOnFailedISel(AbortOnFailedISel) {}
|
|
|
|
StringRef getPassName() const override { return "ResetMachineFunction"; }
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override {
|
|
if (MF.getProperties().hasProperty(
|
|
MachineFunctionProperties::Property::FailedISel)) {
|
|
if (AbortOnFailedISel)
|
|
report_fatal_error("Instruction selection failed");
|
|
DEBUG(dbgs() << "Reseting: " << MF.getName() << '\n');
|
|
++NumFunctionsReset;
|
|
MF.reset();
|
|
if (EmitFallbackDiag) {
|
|
const Function &F = *MF.getFunction();
|
|
DiagnosticInfoISelFallback DiagFallback(F);
|
|
F.getContext().diagnose(DiagFallback);
|
|
}
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
char ResetMachineFunction::ID = 0;
|
|
INITIALIZE_PASS(ResetMachineFunction, DEBUG_TYPE,
|
|
"reset machine function if ISel failed", false, false)
|
|
|
|
MachineFunctionPass *
|
|
llvm::createResetMachineFunctionPass(bool EmitFallbackDiag = false,
|
|
bool AbortOnFailedISel = false) {
|
|
return new ResetMachineFunction(EmitFallbackDiag, AbortOnFailedISel);
|
|
}
|