2016-09-23 20:38:15 +02:00
|
|
|
//===-- ResetMachineFunctionPass.cpp - Reset Machine Function ----*- C++ -*-==//
|
2016-08-27 02:18:31 +02:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-09-23 20:38:15 +02:00
|
|
|
/// \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.
|
2016-08-27 02:18:31 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
[GlobalISel] Print/Parse FailedISel MachineFunction property
FailedISel MachineFunction property is part of the CodeGen pipeline
state as much as every other property, notably, Legalized,
RegBankSelected, and Selected. Let's make that part of the state also
serializable / de-serializable, so if GlobalISel aborts on some of the
functions of a large module, but not the others, it could be easily seen
and the state of the pipeline could be maintained through llc's
invocations with -stop-after / -start-after.
To make MIR printable and generally to not to break it too much too
soon, this patch also defers cleaning up the vreg -> LLT map until
ResetMachineFunctionPass.
To make MIR with FailedISel: true also machine verifiable, machine
verifier is changed so it treats a MIR-module as non-regbankselected and
non-selected if there is FailedISel property set.
Reviewers: qcolombet, ab
Reviewed By: dsanders
Subscribers: javed.absar, rovka, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D42877
llvm-svn: 326343
2018-02-28 18:55:45 +01:00
|
|
|
#include "llvm/ADT/ScopeExit.h"
|
2016-09-23 20:38:13 +02:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2016-08-27 02:18:31 +02:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
[GlobalISel] Print/Parse FailedISel MachineFunction property
FailedISel MachineFunction property is part of the CodeGen pipeline
state as much as every other property, notably, Legalized,
RegBankSelected, and Selected. Let's make that part of the state also
serializable / de-serializable, so if GlobalISel aborts on some of the
functions of a large module, but not the others, it could be easily seen
and the state of the pipeline could be maintained through llc's
invocations with -stop-after / -start-after.
To make MIR printable and generally to not to break it too much too
soon, this patch also defers cleaning up the vreg -> LLT map until
ResetMachineFunctionPass.
To make MIR with FailedISel: true also machine verifiable, machine
verifier is changed so it treats a MIR-module as non-regbankselected and
non-selected if there is FailedISel property set.
Reviewers: qcolombet, ab
Reviewed By: dsanders
Subscribers: javed.absar, rovka, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D42877
llvm-svn: 326343
2018-02-28 18:55:45 +01:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2018-07-13 02:08:38 +02:00
|
|
|
#include "llvm/CodeGen/StackProtector.h"
|
2017-06-06 13:49:48 +02:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2016-08-31 20:43:01 +02:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
2016-08-27 02:18:31 +02:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "reset-machine-function"
|
|
|
|
|
2016-09-23 20:38:13 +02:00
|
|
|
STATISTIC(NumFunctionsReset, "Number of functions reset");
|
|
|
|
|
2016-08-27 02:18:31 +02:00
|
|
|
namespace {
|
|
|
|
class ResetMachineFunction : public MachineFunctionPass {
|
2016-08-31 20:43:01 +02:00
|
|
|
/// Tells whether or not this pass should emit a fallback
|
|
|
|
/// diagnostic when it resets a function.
|
|
|
|
bool EmitFallbackDiag;
|
2017-01-14 00:46:11 +01:00
|
|
|
/// Whether we should abort immediately instead of resetting the function.
|
|
|
|
bool AbortOnFailedISel;
|
2016-08-31 20:43:01 +02:00
|
|
|
|
2016-08-27 02:18:31 +02:00
|
|
|
public:
|
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2017-01-14 00:46:11 +01:00
|
|
|
ResetMachineFunction(bool EmitFallbackDiag = false,
|
|
|
|
bool AbortOnFailedISel = false)
|
|
|
|
: MachineFunctionPass(ID), EmitFallbackDiag(EmitFallbackDiag),
|
|
|
|
AbortOnFailedISel(AbortOnFailedISel) {}
|
2016-08-27 02:18:31 +02:00
|
|
|
|
2016-10-01 04:56:57 +02:00
|
|
|
StringRef getPassName() const override { return "ResetMachineFunction"; }
|
2016-08-27 02:18:31 +02:00
|
|
|
|
2018-07-13 02:08:38 +02:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
|
|
AU.addPreserved<StackProtector>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
2016-08-27 02:18:31 +02:00
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override {
|
[GlobalISel] Print/Parse FailedISel MachineFunction property
FailedISel MachineFunction property is part of the CodeGen pipeline
state as much as every other property, notably, Legalized,
RegBankSelected, and Selected. Let's make that part of the state also
serializable / de-serializable, so if GlobalISel aborts on some of the
functions of a large module, but not the others, it could be easily seen
and the state of the pipeline could be maintained through llc's
invocations with -stop-after / -start-after.
To make MIR printable and generally to not to break it too much too
soon, this patch also defers cleaning up the vreg -> LLT map until
ResetMachineFunctionPass.
To make MIR with FailedISel: true also machine verifiable, machine
verifier is changed so it treats a MIR-module as non-regbankselected and
non-selected if there is FailedISel property set.
Reviewers: qcolombet, ab
Reviewed By: dsanders
Subscribers: javed.absar, rovka, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D42877
llvm-svn: 326343
2018-02-28 18:55:45 +01:00
|
|
|
// No matter what happened, whether we successfully selected the function
|
|
|
|
// or not, nothing is going to use the vreg types after us. Make sure they
|
|
|
|
// disappear.
|
|
|
|
auto ClearVRegTypesOnReturn =
|
2018-05-23 23:12:02 +02:00
|
|
|
make_scope_exit([&MF]() { MF.getRegInfo().clearVirtRegTypes(); });
|
[GlobalISel] Print/Parse FailedISel MachineFunction property
FailedISel MachineFunction property is part of the CodeGen pipeline
state as much as every other property, notably, Legalized,
RegBankSelected, and Selected. Let's make that part of the state also
serializable / de-serializable, so if GlobalISel aborts on some of the
functions of a large module, but not the others, it could be easily seen
and the state of the pipeline could be maintained through llc's
invocations with -stop-after / -start-after.
To make MIR printable and generally to not to break it too much too
soon, this patch also defers cleaning up the vreg -> LLT map until
ResetMachineFunctionPass.
To make MIR with FailedISel: true also machine verifiable, machine
verifier is changed so it treats a MIR-module as non-regbankselected and
non-selected if there is FailedISel property set.
Reviewers: qcolombet, ab
Reviewed By: dsanders
Subscribers: javed.absar, rovka, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D42877
llvm-svn: 326343
2018-02-28 18:55:45 +01:00
|
|
|
|
2016-08-27 02:18:31 +02:00
|
|
|
if (MF.getProperties().hasProperty(
|
|
|
|
MachineFunctionProperties::Property::FailedISel)) {
|
2017-01-14 00:46:11 +01:00
|
|
|
if (AbortOnFailedISel)
|
|
|
|
report_fatal_error("Instruction selection failed");
|
2018-05-14 14:53:11 +02:00
|
|
|
LLVM_DEBUG(dbgs() << "Resetting: " << MF.getName() << '\n');
|
2016-09-23 20:38:13 +02:00
|
|
|
++NumFunctionsReset;
|
2016-08-27 02:18:31 +02:00
|
|
|
MF.reset();
|
2016-08-31 20:43:01 +02:00
|
|
|
if (EmitFallbackDiag) {
|
2017-12-15 23:22:58 +01:00
|
|
|
const Function &F = MF.getFunction();
|
2016-08-31 20:43:01 +02:00
|
|
|
DiagnosticInfoISelFallback DiagFallback(F);
|
|
|
|
F.getContext().diagnose(DiagFallback);
|
|
|
|
}
|
2016-08-27 02:18:31 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
char ResetMachineFunction::ID = 0;
|
|
|
|
INITIALIZE_PASS(ResetMachineFunction, DEBUG_TYPE,
|
2018-02-02 02:49:59 +01:00
|
|
|
"Reset machine function if ISel failed", false, false)
|
2016-08-27 02:18:31 +02:00
|
|
|
|
|
|
|
MachineFunctionPass *
|
2017-01-14 00:46:11 +01:00
|
|
|
llvm::createResetMachineFunctionPass(bool EmitFallbackDiag = false,
|
|
|
|
bool AbortOnFailedISel = false) {
|
|
|
|
return new ResetMachineFunction(EmitFallbackDiag, AbortOnFailedISel);
|
2016-08-27 02:18:31 +02:00
|
|
|
}
|