2016-09-24 02:38:15 +08:00
|
|
|
//===-- ResetMachineFunctionPass.cpp - Reset Machine Function ----*- C++ -*-==//
|
2016-08-27 08:18:31 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-08-27 08:18:31 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2016-09-24 02:38:15 +08: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 08:18:31 +08: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-03-01 01:55:45 +08:00
|
|
|
#include "llvm/ADT/ScopeExit.h"
|
2016-09-24 02:38:13 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2016-08-27 08:18:31 +08: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-03-01 01:55:45 +08:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
Sink all InitializePasses.h includes
This file lists every pass in LLVM, and is included by Pass.h, which is
very popular. Every time we add, remove, or rename a pass in LLVM, it
caused lots of recompilation.
I found this fact by looking at this table, which is sorted by the
number of times a file was changed over the last 100,000 git commits
multiplied by the number of object files that depend on it in the
current checkout:
recompiles touches affected_files header
342380 95 3604 llvm/include/llvm/ADT/STLExtras.h
314730 234 1345 llvm/include/llvm/InitializePasses.h
307036 118 2602 llvm/include/llvm/ADT/APInt.h
213049 59 3611 llvm/include/llvm/Support/MathExtras.h
170422 47 3626 llvm/include/llvm/Support/Compiler.h
162225 45 3605 llvm/include/llvm/ADT/Optional.h
158319 63 2513 llvm/include/llvm/ADT/Triple.h
140322 39 3598 llvm/include/llvm/ADT/StringRef.h
137647 59 2333 llvm/include/llvm/Support/Error.h
131619 73 1803 llvm/include/llvm/Support/FileSystem.h
Before this change, touching InitializePasses.h would cause 1345 files
to recompile. After this change, touching it only causes 550 compiles in
an incremental rebuild.
Reviewers: bkramer, asbirlea, bollu, jdoerfert
Differential Revision: https://reviews.llvm.org/D70211
2019-11-14 05:15:01 +08:00
|
|
|
#include "llvm/CodeGen/StackProtector.h"
|
2016-09-01 02:43:01 +08:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
Sink all InitializePasses.h includes
This file lists every pass in LLVM, and is included by Pass.h, which is
very popular. Every time we add, remove, or rename a pass in LLVM, it
caused lots of recompilation.
I found this fact by looking at this table, which is sorted by the
number of times a file was changed over the last 100,000 git commits
multiplied by the number of object files that depend on it in the
current checkout:
recompiles touches affected_files header
342380 95 3604 llvm/include/llvm/ADT/STLExtras.h
314730 234 1345 llvm/include/llvm/InitializePasses.h
307036 118 2602 llvm/include/llvm/ADT/APInt.h
213049 59 3611 llvm/include/llvm/Support/MathExtras.h
170422 47 3626 llvm/include/llvm/Support/Compiler.h
162225 45 3605 llvm/include/llvm/ADT/Optional.h
158319 63 2513 llvm/include/llvm/ADT/Triple.h
140322 39 3598 llvm/include/llvm/ADT/StringRef.h
137647 59 2333 llvm/include/llvm/Support/Error.h
131619 73 1803 llvm/include/llvm/Support/FileSystem.h
Before this change, touching InitializePasses.h would cause 1345 files
to recompile. After this change, touching it only causes 550 compiles in
an incremental rebuild.
Reviewers: bkramer, asbirlea, bollu, jdoerfert
Differential Revision: https://reviews.llvm.org/D70211
2019-11-14 05:15:01 +08:00
|
|
|
#include "llvm/InitializePasses.h"
|
2016-08-27 08:18:31 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "reset-machine-function"
|
|
|
|
|
2016-09-24 02:38:13 +08:00
|
|
|
STATISTIC(NumFunctionsReset, "Number of functions reset");
|
2019-03-14 09:13:15 +08:00
|
|
|
STATISTIC(NumFunctionsVisited, "Number of functions visited");
|
2016-09-24 02:38:13 +08:00
|
|
|
|
2016-08-27 08:18:31 +08:00
|
|
|
namespace {
|
|
|
|
class ResetMachineFunction : public MachineFunctionPass {
|
2016-09-01 02:43:01 +08:00
|
|
|
/// Tells whether or not this pass should emit a fallback
|
|
|
|
/// diagnostic when it resets a function.
|
|
|
|
bool EmitFallbackDiag;
|
2017-01-14 07:46:11 +08:00
|
|
|
/// Whether we should abort immediately instead of resetting the function.
|
|
|
|
bool AbortOnFailedISel;
|
2016-09-01 02:43:01 +08:00
|
|
|
|
2016-08-27 08:18:31 +08:00
|
|
|
public:
|
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2017-01-14 07:46:11 +08:00
|
|
|
ResetMachineFunction(bool EmitFallbackDiag = false,
|
|
|
|
bool AbortOnFailedISel = false)
|
|
|
|
: MachineFunctionPass(ID), EmitFallbackDiag(EmitFallbackDiag),
|
|
|
|
AbortOnFailedISel(AbortOnFailedISel) {}
|
2016-08-27 08:18:31 +08:00
|
|
|
|
2016-10-01 10:56:57 +08:00
|
|
|
StringRef getPassName() const override { return "ResetMachineFunction"; }
|
2016-08-27 08:18:31 +08:00
|
|
|
|
2018-07-13 08:08:38 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
|
|
AU.addPreserved<StackProtector>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
2016-08-27 08:18:31 +08:00
|
|
|
bool runOnMachineFunction(MachineFunction &MF) override {
|
2019-03-14 09:13:15 +08:00
|
|
|
++NumFunctionsVisited;
|
[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-03-01 01:55:45 +08: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-24 05:12:02 +08: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-03-01 01:55:45 +08:00
|
|
|
|
2016-08-27 08:18:31 +08:00
|
|
|
if (MF.getProperties().hasProperty(
|
|
|
|
MachineFunctionProperties::Property::FailedISel)) {
|
2017-01-14 07:46:11 +08:00
|
|
|
if (AbortOnFailedISel)
|
|
|
|
report_fatal_error("Instruction selection failed");
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Resetting: " << MF.getName() << '\n');
|
2016-09-24 02:38:13 +08:00
|
|
|
++NumFunctionsReset;
|
2016-08-27 08:18:31 +08:00
|
|
|
MF.reset();
|
2016-09-01 02:43:01 +08:00
|
|
|
if (EmitFallbackDiag) {
|
2017-12-16 06:22:58 +08:00
|
|
|
const Function &F = MF.getFunction();
|
2016-09-01 02:43:01 +08:00
|
|
|
DiagnosticInfoISelFallback DiagFallback(F);
|
|
|
|
F.getContext().diagnose(DiagFallback);
|
|
|
|
}
|
2016-08-27 08:18:31 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
char ResetMachineFunction::ID = 0;
|
|
|
|
INITIALIZE_PASS(ResetMachineFunction, DEBUG_TYPE,
|
2018-02-02 09:49:59 +08:00
|
|
|
"Reset machine function if ISel failed", false, false)
|
2016-08-27 08:18:31 +08:00
|
|
|
|
|
|
|
MachineFunctionPass *
|
2017-01-14 07:46:11 +08:00
|
|
|
llvm::createResetMachineFunctionPass(bool EmitFallbackDiag = false,
|
|
|
|
bool AbortOnFailedISel = false) {
|
|
|
|
return new ResetMachineFunction(EmitFallbackDiag, AbortOnFailedISel);
|
2016-08-27 08:18:31 +08:00
|
|
|
}
|