2003-01-14 04:01:16 +08:00
|
|
|
//===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
|
2005-04-22 06:36:52 +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
|
2005-04-22 06:36:52 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 06:36:52 +08:00
|
|
|
//
|
2003-05-08 04:08:36 +08:00
|
|
|
// This file implements the LiveVariable analysis pass. For each machine
|
|
|
|
// instruction in the function, this pass calculates the set of registers that
|
|
|
|
// are immediately dead after the instruction (i.e., the instruction calculates
|
|
|
|
// the value, but it is never used) and the set of registers that are used by
|
|
|
|
// the instruction, but are never used after the instruction (i.e., they are
|
|
|
|
// killed).
|
|
|
|
//
|
2012-04-02 03:27:25 +08:00
|
|
|
// This class computes live variables using a sparse implementation based on
|
2003-05-08 04:08:36 +08:00
|
|
|
// the machine code SSA form. This class computes live variable information for
|
|
|
|
// each virtual and _register allocatable_ physical register in a function. It
|
|
|
|
// uses the dominance properties of SSA form to efficiently compute live
|
|
|
|
// variables for virtual registers, and assumes that physical registers are only
|
|
|
|
// live within a single basic block (allowing it to do a single local analysis
|
|
|
|
// to resolve physical register lifetimes in each basic block). If a physical
|
|
|
|
// register is not register allocatable, it is not tracked. This is useful for
|
|
|
|
// things like the stack pointer and condition codes.
|
|
|
|
//
|
2003-01-14 04:01:16 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/LiveVariables.h"
|
2019-10-19 08:22:07 +08:00
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
|
|
#include "llvm/ADT/SmallSet.h"
|
2003-01-14 04:01:16 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2007-12-31 12:13:23 +08:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2008-08-05 07:54:43 +08:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2018-04-30 22:59:11 +08:00
|
|
|
#include "llvm/Config/llvm-config.h"
|
2010-01-05 07:02:10 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2015-03-24 03:32:43 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2005-08-24 08:09:33 +08:00
|
|
|
#include <algorithm>
|
2004-01-31 06:08:53 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2007-05-03 09:11:54 +08:00
|
|
|
char LiveVariables::ID = 0;
|
2012-02-10 12:10:36 +08:00
|
|
|
char &llvm::LiveVariablesID = LiveVariables::ID;
|
2010-10-13 03:48:12 +08:00
|
|
|
INITIALIZE_PASS_BEGIN(LiveVariables, "livevars",
|
|
|
|
"Live Variable Analysis", false, false)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(UnreachableMachineBlockElim)
|
|
|
|
INITIALIZE_PASS_END(LiveVariables, "livevars",
|
2010-10-08 06:25:06 +08:00
|
|
|
"Live Variable Analysis", false, false)
|
2003-01-14 04:01:16 +08:00
|
|
|
|
2008-08-05 07:54:43 +08:00
|
|
|
|
|
|
|
void LiveVariables::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(UnreachableMachineBlockElimID);
|
|
|
|
AU.setPreservesAll();
|
2009-08-01 02:16:33 +08:00
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
2008-08-05 07:54:43 +08:00
|
|
|
}
|
|
|
|
|
2009-11-11 06:01:05 +08:00
|
|
|
MachineInstr *
|
|
|
|
LiveVariables::VarInfo::findKill(const MachineBasicBlock *MBB) const {
|
|
|
|
for (unsigned i = 0, e = Kills.size(); i != e; ++i)
|
|
|
|
if (Kills[i]->getParent() == MBB)
|
|
|
|
return Kills[i];
|
2014-04-14 08:51:57 +08:00
|
|
|
return nullptr;
|
2009-11-11 06:01:05 +08:00
|
|
|
}
|
|
|
|
|
2017-10-15 22:32:27 +08:00
|
|
|
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
|
2017-01-28 10:02:38 +08:00
|
|
|
LLVM_DUMP_METHOD void LiveVariables::VarInfo::dump() const {
|
2010-01-05 07:02:10 +08:00
|
|
|
dbgs() << " Alive in blocks: ";
|
2021-02-14 12:41:39 +08:00
|
|
|
for (unsigned AB : AliveBlocks)
|
|
|
|
dbgs() << AB << ", ";
|
2010-01-05 07:02:10 +08:00
|
|
|
dbgs() << "\n Killed by:";
|
2006-01-04 13:40:30 +08:00
|
|
|
if (Kills.empty())
|
2010-01-05 07:02:10 +08:00
|
|
|
dbgs() << " No instructions.\n";
|
2006-01-04 13:40:30 +08:00
|
|
|
else {
|
|
|
|
for (unsigned i = 0, e = Kills.size(); i != e; ++i)
|
2010-01-05 07:02:10 +08:00
|
|
|
dbgs() << "\n #" << i << ": " << *Kills[i];
|
|
|
|
dbgs() << "\n";
|
2006-01-04 13:40:30 +08:00
|
|
|
}
|
|
|
|
}
|
2017-01-28 10:02:38 +08:00
|
|
|
#endif
|
2006-01-04 13:40:30 +08:00
|
|
|
|
2008-02-20 14:10:21 +08:00
|
|
|
/// getVarInfo - Get (possibly creating) a VarInfo object for the given vreg.
|
2020-10-23 13:15:56 +08:00
|
|
|
LiveVariables::VarInfo &LiveVariables::getVarInfo(Register Reg) {
|
|
|
|
assert(Reg.isVirtual() && "getVarInfo: not a virtual register!");
|
|
|
|
VirtRegInfo.grow(Reg);
|
|
|
|
return VirtRegInfo[Reg];
|
2003-05-12 22:24:00 +08:00
|
|
|
}
|
|
|
|
|
2020-07-16 08:12:48 +08:00
|
|
|
void LiveVariables::MarkVirtRegAliveInBlock(
|
|
|
|
VarInfo &VRInfo, MachineBasicBlock *DefBlock, MachineBasicBlock *MBB,
|
|
|
|
SmallVectorImpl<MachineBasicBlock *> &WorkList) {
|
2004-07-01 12:29:47 +08:00
|
|
|
unsigned BBNum = MBB->getNumber();
|
2012-02-03 13:12:30 +08:00
|
|
|
|
2003-01-14 04:01:16 +08:00
|
|
|
// Check to see if this basic block is one of the killing blocks. If so,
|
2008-02-20 14:10:21 +08:00
|
|
|
// remove it.
|
2003-01-14 04:01:16 +08:00
|
|
|
for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
|
2004-07-19 15:04:55 +08:00
|
|
|
if (VRInfo.Kills[i]->getParent() == MBB) {
|
2003-01-14 04:01:16 +08:00
|
|
|
VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
|
|
|
|
break;
|
|
|
|
}
|
2012-02-03 13:12:30 +08:00
|
|
|
|
2008-01-16 06:58:11 +08:00
|
|
|
if (MBB == DefBlock) return; // Terminate recursion
|
2003-01-14 04:01:16 +08:00
|
|
|
|
2009-05-27 02:27:15 +08:00
|
|
|
if (VRInfo.AliveBlocks.test(BBNum))
|
2003-01-14 04:01:16 +08:00
|
|
|
return; // We already know the block is live
|
|
|
|
|
|
|
|
// Mark the variable known alive in this bb
|
2009-05-27 02:27:15 +08:00
|
|
|
VRInfo.AliveBlocks.set(BBNum);
|
2003-01-14 04:01:16 +08:00
|
|
|
|
2012-03-10 07:41:44 +08:00
|
|
|
assert(MBB != &MF->front() && "Can't find reaching def for virtreg");
|
2011-03-09 01:28:36 +08:00
|
|
|
WorkList.insert(WorkList.end(), MBB->pred_rbegin(), MBB->pred_rend());
|
2003-01-14 04:01:16 +08:00
|
|
|
}
|
|
|
|
|
2008-02-20 15:36:31 +08:00
|
|
|
void LiveVariables::MarkVirtRegAliveInBlock(VarInfo &VRInfo,
|
2008-01-16 06:58:11 +08:00
|
|
|
MachineBasicBlock *DefBlock,
|
2007-05-09 03:00:00 +08:00
|
|
|
MachineBasicBlock *MBB) {
|
2020-07-16 08:12:48 +08:00
|
|
|
SmallVector<MachineBasicBlock *, 16> WorkList;
|
2008-01-16 06:58:11 +08:00
|
|
|
MarkVirtRegAliveInBlock(VRInfo, DefBlock, MBB, WorkList);
|
2008-02-20 15:36:31 +08:00
|
|
|
|
2007-05-09 03:00:00 +08:00
|
|
|
while (!WorkList.empty()) {
|
|
|
|
MachineBasicBlock *Pred = WorkList.back();
|
|
|
|
WorkList.pop_back();
|
2008-01-16 06:58:11 +08:00
|
|
|
MarkVirtRegAliveInBlock(VRInfo, DefBlock, Pred, WorkList);
|
2007-05-09 03:00:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-23 13:15:56 +08:00
|
|
|
void LiveVariables::HandleVirtRegUse(Register Reg, MachineBasicBlock *MBB,
|
2016-07-01 09:51:32 +08:00
|
|
|
MachineInstr &MI) {
|
2020-10-23 13:15:56 +08:00
|
|
|
assert(MRI->getVRegDef(Reg) && "Register use before def!");
|
2004-09-02 06:34:52 +08:00
|
|
|
|
2007-11-08 09:20:48 +08:00
|
|
|
unsigned BBNum = MBB->getNumber();
|
|
|
|
|
2020-10-23 13:15:56 +08:00
|
|
|
VarInfo &VRInfo = getVarInfo(Reg);
|
2007-03-17 17:29:54 +08:00
|
|
|
|
2008-02-20 14:10:21 +08:00
|
|
|
// Check to see if this basic block is already a kill block.
|
2004-07-19 15:04:55 +08:00
|
|
|
if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) {
|
2008-02-20 14:10:21 +08:00
|
|
|
// Yes, this register is killed in this basic block already. Increase the
|
2003-01-14 04:01:16 +08:00
|
|
|
// live range by updating the kill instruction.
|
2016-07-01 09:51:32 +08:00
|
|
|
VRInfo.Kills.back() = &MI;
|
2003-01-14 04:01:16 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
|
2004-07-19 15:04:55 +08:00
|
|
|
assert(VRInfo.Kills[i]->getParent() != MBB && "entry should be at end!");
|
2003-01-14 04:01:16 +08:00
|
|
|
#endif
|
|
|
|
|
2008-06-24 07:41:14 +08:00
|
|
|
// This situation can occur:
|
|
|
|
//
|
|
|
|
// ,------.
|
|
|
|
// | |
|
|
|
|
// | v
|
|
|
|
// | t2 = phi ... t1 ...
|
|
|
|
// | |
|
|
|
|
// | v
|
|
|
|
// | t1 = ...
|
|
|
|
// | ... = ... t1 ...
|
|
|
|
// | |
|
|
|
|
// `------'
|
|
|
|
//
|
|
|
|
// where there is a use in a PHI node that's a predecessor to the defining
|
|
|
|
// block. We don't want to mark all predecessors as having the value "alive"
|
|
|
|
// in this case.
|
2020-10-23 13:15:56 +08:00
|
|
|
if (MBB == MRI->getVRegDef(Reg)->getParent())
|
|
|
|
return;
|
2003-01-14 04:01:16 +08:00
|
|
|
|
2008-02-20 14:10:21 +08:00
|
|
|
// Add a new kill entry for this basic block. If this virtual register is
|
|
|
|
// already marked as alive in this basic block, that means it is alive in at
|
|
|
|
// least one of the successor blocks, it's not a kill.
|
2009-05-27 02:27:15 +08:00
|
|
|
if (!VRInfo.AliveBlocks.test(BBNum))
|
2016-07-01 09:51:32 +08:00
|
|
|
VRInfo.Kills.push_back(&MI);
|
2003-01-14 04:01:16 +08:00
|
|
|
|
2008-02-20 15:36:31 +08:00
|
|
|
// Update all dominating blocks to mark them as "known live".
|
2021-02-14 12:41:39 +08:00
|
|
|
for (MachineBasicBlock *Pred : MBB->predecessors())
|
|
|
|
MarkVirtRegAliveInBlock(VRInfo, MRI->getVRegDef(Reg)->getParent(), Pred);
|
2003-01-14 04:01:16 +08:00
|
|
|
}
|
|
|
|
|
2020-10-23 13:15:56 +08:00
|
|
|
void LiveVariables::HandleVirtRegDef(Register Reg, MachineInstr &MI) {
|
2008-09-22 05:11:41 +08:00
|
|
|
VarInfo &VRInfo = getVarInfo(Reg);
|
|
|
|
|
2009-05-27 02:27:15 +08:00
|
|
|
if (VRInfo.AliveBlocks.empty())
|
2008-09-22 05:11:41 +08:00
|
|
|
// If vr is not alive in any block, then defaults to dead.
|
2016-07-01 09:51:32 +08:00
|
|
|
VRInfo.Kills.push_back(&MI);
|
2008-09-22 05:11:41 +08:00
|
|
|
}
|
|
|
|
|
2008-04-16 17:46:40 +08:00
|
|
|
/// FindLastPartialDef - Return the last partial def of the specified register.
|
2009-09-22 16:34:46 +08:00
|
|
|
/// Also returns the sub-registers that're defined by the instruction.
|
2020-10-23 13:15:56 +08:00
|
|
|
MachineInstr *
|
|
|
|
LiveVariables::FindLastPartialDef(Register Reg,
|
|
|
|
SmallSet<unsigned, 4> &PartDefRegs) {
|
2008-04-16 17:46:40 +08:00
|
|
|
unsigned LastDefReg = 0;
|
|
|
|
unsigned LastDefDist = 0;
|
2014-04-14 08:51:57 +08:00
|
|
|
MachineInstr *LastDef = nullptr;
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
|
|
|
|
unsigned SubReg = *SubRegs;
|
2008-04-16 17:46:40 +08:00
|
|
|
MachineInstr *Def = PhysRegDef[SubReg];
|
|
|
|
if (!Def)
|
|
|
|
continue;
|
|
|
|
unsigned Dist = DistanceMap[Def];
|
|
|
|
if (Dist > LastDefDist) {
|
|
|
|
LastDefReg = SubReg;
|
|
|
|
LastDef = Def;
|
|
|
|
LastDefDist = Dist;
|
|
|
|
}
|
|
|
|
}
|
2009-09-22 16:34:46 +08:00
|
|
|
|
|
|
|
if (!LastDef)
|
2014-04-14 08:51:57 +08:00
|
|
|
return nullptr;
|
2009-09-22 16:34:46 +08:00
|
|
|
|
|
|
|
PartDefRegs.insert(LastDefReg);
|
|
|
|
for (unsigned i = 0, e = LastDef->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = LastDef->getOperand(i);
|
|
|
|
if (!MO.isReg() || !MO.isDef() || MO.getReg() == 0)
|
|
|
|
continue;
|
Apply llvm-prefer-register-over-unsigned from clang-tidy to LLVM
Summary:
This clang-tidy check is looking for unsigned integer variables whose initializer
starts with an implicit cast from llvm::Register and changes the type of the
variable to llvm::Register (dropping the llvm:: where possible).
Partial reverts in:
X86FrameLowering.cpp - Some functions return unsigned and arguably should be MCRegister
X86FixupLEAs.cpp - Some functions return unsigned and arguably should be MCRegister
X86FrameLowering.cpp - Some functions return unsigned and arguably should be MCRegister
HexagonBitSimplify.cpp - Function takes BitTracker::RegisterRef which appears to be unsigned&
MachineVerifier.cpp - Ambiguous operator==() given MCRegister and const Register
PPCFastISel.cpp - No Register::operator-=()
PeepholeOptimizer.cpp - TargetInstrInfo::optimizeLoadInstr() takes an unsigned&
MachineTraceMetrics.cpp - MachineTraceMetrics lacks a suitable constructor
Manual fixups in:
ARMFastISel.cpp - ARMEmitLoad() now takes a Register& instead of unsigned&
HexagonSplitDouble.cpp - Ternary operator was ambiguous between unsigned/Register
HexagonConstExtenders.cpp - Has a local class named Register, used llvm::Register instead of Register.
PPCFastISel.cpp - PPCEmitLoad() now takes a Register& instead of unsigned&
Depends on D65919
Reviewers: arsenm, bogner, craig.topper, RKSimon
Reviewed By: arsenm
Subscribers: RKSimon, craig.topper, lenary, aemerson, wuzish, jholewinski, MatzeB, qcolombet, dschuff, jyknight, dylanmckay, sdardis, nemanjai, jvesely, wdng, nhaehnle, sbc100, jgravelle-google, kristof.beyls, hiraditya, aheejin, kbarton, fedor.sergeev, javed.absar, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, tpr, PkmX, jocewei, jsji, Petar.Avramovic, asbirlea, Jim, s.egerton, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65962
llvm-svn: 369041
2019-08-16 03:22:08 +08:00
|
|
|
Register DefReg = MO.getReg();
|
2009-09-22 16:34:46 +08:00
|
|
|
if (TRI->isSubRegister(Reg, DefReg)) {
|
2013-05-23 06:26:05 +08:00
|
|
|
for (MCSubRegIterator SubRegs(DefReg, TRI, /*IncludeSelf=*/true);
|
|
|
|
SubRegs.isValid(); ++SubRegs)
|
2012-06-02 07:28:30 +08:00
|
|
|
PartDefRegs.insert(*SubRegs);
|
2009-09-22 16:34:46 +08:00
|
|
|
}
|
|
|
|
}
|
2008-04-16 17:46:40 +08:00
|
|
|
return LastDef;
|
|
|
|
}
|
|
|
|
|
2008-02-20 17:15:16 +08:00
|
|
|
/// HandlePhysRegUse - Turn previous partial def's into read/mod/writes. Add
|
|
|
|
/// implicit defs to a machine instruction if there was an earlier def of its
|
|
|
|
/// super-register.
|
2020-10-23 13:15:56 +08:00
|
|
|
void LiveVariables::HandlePhysRegUse(Register Reg, MachineInstr &MI) {
|
2009-11-14 04:36:40 +08:00
|
|
|
MachineInstr *LastDef = PhysRegDef[Reg];
|
2008-04-16 17:46:40 +08:00
|
|
|
// If there was a previous use or a "full" def all is well.
|
2009-11-14 04:36:40 +08:00
|
|
|
if (!LastDef && !PhysRegUse[Reg]) {
|
2008-04-16 17:46:40 +08:00
|
|
|
// Otherwise, the last sub-register def implicitly defines this register.
|
|
|
|
// e.g.
|
|
|
|
// AH =
|
2017-12-07 18:40:31 +08:00
|
|
|
// AL = ... implicit-def EAX, implicit killed AH
|
2008-04-16 17:46:40 +08:00
|
|
|
// = AH
|
|
|
|
// ...
|
|
|
|
// = EAX
|
|
|
|
// All of the sub-registers must have been defined before the use of Reg!
|
2009-09-22 16:34:46 +08:00
|
|
|
SmallSet<unsigned, 4> PartDefRegs;
|
|
|
|
MachineInstr *LastPartialDef = FindLastPartialDef(Reg, PartDefRegs);
|
2008-04-16 17:46:40 +08:00
|
|
|
// If LastPartialDef is NULL, it must be using a livein register.
|
|
|
|
if (LastPartialDef) {
|
|
|
|
LastPartialDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
|
|
|
|
true/*IsImp*/));
|
|
|
|
PhysRegDef[Reg] = LastPartialDef;
|
2008-08-15 07:41:38 +08:00
|
|
|
SmallSet<unsigned, 8> Processed;
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
|
|
|
|
unsigned SubReg = *SubRegs;
|
2008-04-16 17:46:40 +08:00
|
|
|
if (Processed.count(SubReg))
|
|
|
|
continue;
|
2009-09-22 16:34:46 +08:00
|
|
|
if (PartDefRegs.count(SubReg))
|
2008-04-16 17:46:40 +08:00
|
|
|
continue;
|
|
|
|
// This part of Reg was defined before the last partial def. It's killed
|
|
|
|
// here.
|
|
|
|
LastPartialDef->addOperand(MachineOperand::CreateReg(SubReg,
|
|
|
|
false/*IsDef*/,
|
|
|
|
true/*IsImp*/));
|
|
|
|
PhysRegDef[SubReg] = LastPartialDef;
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS)
|
2008-04-16 17:46:40 +08:00
|
|
|
Processed.insert(*SS);
|
|
|
|
}
|
|
|
|
}
|
2012-01-14 09:53:46 +08:00
|
|
|
} else if (LastDef && !PhysRegUse[Reg] &&
|
|
|
|
!LastDef->findRegisterDefOperand(Reg))
|
2009-11-14 04:36:40 +08:00
|
|
|
// Last def defines the super register, add an implicit def of reg.
|
2012-01-14 09:53:46 +08:00
|
|
|
LastDef->addOperand(MachineOperand::CreateReg(Reg, true/*IsDef*/,
|
|
|
|
true/*IsImp*/));
|
2008-02-20 14:10:21 +08:00
|
|
|
|
2008-04-16 17:46:40 +08:00
|
|
|
// Remember this use.
|
2013-05-23 06:26:05 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
|
|
|
|
SubRegs.isValid(); ++SubRegs)
|
2016-07-01 09:51:32 +08:00
|
|
|
PhysRegUse[*SubRegs] = &MI;
|
2007-06-27 05:03:35 +08:00
|
|
|
}
|
|
|
|
|
2009-12-01 08:44:45 +08:00
|
|
|
/// FindLastRefOrPartRef - Return the last reference or partial reference of
|
|
|
|
/// the specified register.
|
2020-10-23 13:15:56 +08:00
|
|
|
MachineInstr *LiveVariables::FindLastRefOrPartRef(Register Reg) {
|
2009-12-01 08:44:45 +08:00
|
|
|
MachineInstr *LastDef = PhysRegDef[Reg];
|
|
|
|
MachineInstr *LastUse = PhysRegUse[Reg];
|
|
|
|
if (!LastDef && !LastUse)
|
2014-04-14 08:51:57 +08:00
|
|
|
return nullptr;
|
2009-12-01 08:44:45 +08:00
|
|
|
|
|
|
|
MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
|
|
|
|
unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
|
|
|
|
unsigned LastPartDefDist = 0;
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
|
|
|
|
unsigned SubReg = *SubRegs;
|
2009-12-01 08:44:45 +08:00
|
|
|
MachineInstr *Def = PhysRegDef[SubReg];
|
|
|
|
if (Def && Def != LastDef) {
|
|
|
|
// There was a def of this sub-register in between. This is a partial
|
|
|
|
// def, keep track of the last one.
|
|
|
|
unsigned Dist = DistanceMap[Def];
|
2010-01-08 01:29:08 +08:00
|
|
|
if (Dist > LastPartDefDist)
|
2009-12-01 08:44:45 +08:00
|
|
|
LastPartDefDist = Dist;
|
2010-01-08 01:29:08 +08:00
|
|
|
} else if (MachineInstr *Use = PhysRegUse[SubReg]) {
|
2009-12-01 08:44:45 +08:00
|
|
|
unsigned Dist = DistanceMap[Use];
|
|
|
|
if (Dist > LastRefOrPartRefDist) {
|
|
|
|
LastRefOrPartRefDist = Dist;
|
|
|
|
LastRefOrPartRef = Use;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return LastRefOrPartRef;
|
|
|
|
}
|
|
|
|
|
2020-10-23 13:15:56 +08:00
|
|
|
bool LiveVariables::HandlePhysRegKill(Register Reg, MachineInstr *MI) {
|
2009-09-24 10:15:22 +08:00
|
|
|
MachineInstr *LastDef = PhysRegDef[Reg];
|
|
|
|
MachineInstr *LastUse = PhysRegUse[Reg];
|
|
|
|
if (!LastDef && !LastUse)
|
2008-04-16 17:46:40 +08:00
|
|
|
return false;
|
|
|
|
|
2009-09-24 10:15:22 +08:00
|
|
|
MachineInstr *LastRefOrPartRef = LastUse ? LastUse : LastDef;
|
2008-04-16 17:46:40 +08:00
|
|
|
unsigned LastRefOrPartRefDist = DistanceMap[LastRefOrPartRef];
|
|
|
|
// The whole register is used.
|
|
|
|
// AL =
|
|
|
|
// AH =
|
|
|
|
//
|
|
|
|
// = AX
|
2017-12-07 18:40:31 +08:00
|
|
|
// = AL, implicit killed AX
|
2008-04-16 17:46:40 +08:00
|
|
|
// AX =
|
|
|
|
//
|
|
|
|
// Or whole register is defined, but not used at all.
|
2017-12-07 18:40:31 +08:00
|
|
|
// dead AX =
|
2008-04-16 17:46:40 +08:00
|
|
|
// ...
|
|
|
|
// AX =
|
|
|
|
//
|
|
|
|
// Or whole register is defined, but only partly used.
|
2017-12-07 18:40:31 +08:00
|
|
|
// dead AX = implicit-def AL
|
|
|
|
// = killed AL
|
2012-02-03 13:12:30 +08:00
|
|
|
// AX =
|
2014-04-14 08:51:57 +08:00
|
|
|
MachineInstr *LastPartDef = nullptr;
|
2009-09-24 10:15:22 +08:00
|
|
|
unsigned LastPartDefDist = 0;
|
2008-08-15 07:41:38 +08:00
|
|
|
SmallSet<unsigned, 8> PartUses;
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
|
|
|
|
unsigned SubReg = *SubRegs;
|
2009-09-24 10:15:22 +08:00
|
|
|
MachineInstr *Def = PhysRegDef[SubReg];
|
|
|
|
if (Def && Def != LastDef) {
|
|
|
|
// There was a def of this sub-register in between. This is a partial
|
|
|
|
// def, keep track of the last one.
|
|
|
|
unsigned Dist = DistanceMap[Def];
|
|
|
|
if (Dist > LastPartDefDist) {
|
|
|
|
LastPartDefDist = Dist;
|
|
|
|
LastPartDef = Def;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2008-04-16 17:46:40 +08:00
|
|
|
if (MachineInstr *Use = PhysRegUse[SubReg]) {
|
2013-05-23 06:26:05 +08:00
|
|
|
for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true); SS.isValid();
|
|
|
|
++SS)
|
2008-04-16 17:46:40 +08:00
|
|
|
PartUses.insert(*SS);
|
|
|
|
unsigned Dist = DistanceMap[Use];
|
|
|
|
if (Dist > LastRefOrPartRefDist) {
|
|
|
|
LastRefOrPartRefDist = Dist;
|
|
|
|
LastRefOrPartRef = Use;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-01-21 05:25:12 +08:00
|
|
|
|
2010-03-06 05:49:17 +08:00
|
|
|
if (!PhysRegUse[Reg]) {
|
2009-09-24 10:15:22 +08:00
|
|
|
// Partial uses. Mark register def dead and add implicit def of
|
|
|
|
// sub-registers which are used.
|
2017-12-07 18:40:31 +08:00
|
|
|
// dead EAX = op implicit-def AL
|
2009-09-24 10:15:22 +08:00
|
|
|
// That is, EAX def is dead but AL def extends pass it.
|
2008-04-16 17:46:40 +08:00
|
|
|
PhysRegDef[Reg]->addRegisterDead(Reg, TRI, true);
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
|
|
|
|
unsigned SubReg = *SubRegs;
|
2009-09-24 10:15:22 +08:00
|
|
|
if (!PartUses.count(SubReg))
|
|
|
|
continue;
|
|
|
|
bool NeedDef = true;
|
|
|
|
if (PhysRegDef[Reg] == PhysRegDef[SubReg]) {
|
|
|
|
MachineOperand *MO = PhysRegDef[Reg]->findRegisterDefOperand(SubReg);
|
|
|
|
if (MO) {
|
|
|
|
NeedDef = false;
|
|
|
|
assert(!MO->isDead());
|
2009-07-07 05:34:05 +08:00
|
|
|
}
|
2008-04-16 17:46:40 +08:00
|
|
|
}
|
2009-09-24 10:15:22 +08:00
|
|
|
if (NeedDef)
|
|
|
|
PhysRegDef[Reg]->addOperand(MachineOperand::CreateReg(SubReg,
|
|
|
|
true/*IsDef*/, true/*IsImp*/));
|
2009-12-01 08:44:45 +08:00
|
|
|
MachineInstr *LastSubRef = FindLastRefOrPartRef(SubReg);
|
|
|
|
if (LastSubRef)
|
|
|
|
LastSubRef->addRegisterKilled(SubReg, TRI, true);
|
|
|
|
else {
|
|
|
|
LastRefOrPartRef->addRegisterKilled(SubReg, TRI, true);
|
2013-05-23 06:26:05 +08:00
|
|
|
for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true);
|
|
|
|
SS.isValid(); ++SS)
|
2012-06-02 07:28:30 +08:00
|
|
|
PhysRegUse[*SS] = LastRefOrPartRef;
|
2009-12-01 08:44:45 +08:00
|
|
|
}
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SS(SubReg, TRI); SS.isValid(); ++SS)
|
2009-09-24 10:15:22 +08:00
|
|
|
PartUses.erase(*SS);
|
2008-04-16 17:46:40 +08:00
|
|
|
}
|
2010-03-06 05:49:17 +08:00
|
|
|
} else if (LastRefOrPartRef == PhysRegDef[Reg] && LastRefOrPartRef != MI) {
|
|
|
|
if (LastPartDef)
|
|
|
|
// The last partial def kills the register.
|
|
|
|
LastPartDef->addOperand(MachineOperand::CreateReg(Reg, false/*IsDef*/,
|
|
|
|
true/*IsImp*/, true/*IsKill*/));
|
|
|
|
else {
|
|
|
|
MachineOperand *MO =
|
2019-02-20 15:01:04 +08:00
|
|
|
LastRefOrPartRef->findRegisterDefOperand(Reg, false, false, TRI);
|
2010-03-06 05:49:17 +08:00
|
|
|
bool NeedEC = MO->isEarlyClobber() && MO->getReg() != Reg;
|
|
|
|
// If the last reference is the last def, then it's not used at all.
|
|
|
|
// That is, unless we are currently processing the last reference itself.
|
|
|
|
LastRefOrPartRef->addRegisterDead(Reg, TRI, true);
|
|
|
|
if (NeedEC) {
|
|
|
|
// If we are adding a subreg def and the superreg def is marked early
|
|
|
|
// clobber, add an early clobber marker to the subreg def.
|
|
|
|
MO = LastRefOrPartRef->findRegisterDefOperand(Reg);
|
|
|
|
if (MO)
|
|
|
|
MO->setIsEarlyClobber();
|
|
|
|
}
|
|
|
|
}
|
2009-09-24 10:15:22 +08:00
|
|
|
} else
|
2008-04-16 17:46:40 +08:00
|
|
|
LastRefOrPartRef->addRegisterKilled(Reg, TRI, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-21 08:58:53 +08:00
|
|
|
void LiveVariables::HandleRegMask(const MachineOperand &MO) {
|
|
|
|
// Call HandlePhysRegKill() for all live registers clobbered by Mask.
|
|
|
|
// Clobbered registers are always dead, sp there is no need to use
|
|
|
|
// HandlePhysRegDef().
|
|
|
|
for (unsigned Reg = 1, NumRegs = TRI->getNumRegs(); Reg != NumRegs; ++Reg) {
|
|
|
|
// Skip dead regs.
|
|
|
|
if (!PhysRegDef[Reg] && !PhysRegUse[Reg])
|
|
|
|
continue;
|
|
|
|
// Skip mask-preserved regs.
|
2012-01-21 11:31:03 +08:00
|
|
|
if (!MO.clobbersPhysReg(Reg))
|
2012-01-21 08:58:53 +08:00
|
|
|
continue;
|
|
|
|
// Kill the largest clobbered super-register.
|
|
|
|
// This avoids needless implicit operands.
|
|
|
|
unsigned Super = Reg;
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSuperRegIterator SR(Reg, TRI); SR.isValid(); ++SR)
|
2012-01-21 08:58:53 +08:00
|
|
|
if ((PhysRegDef[*SR] || PhysRegUse[*SR]) && MO.clobbersPhysReg(*SR))
|
|
|
|
Super = *SR;
|
2014-04-14 08:51:57 +08:00
|
|
|
HandlePhysRegKill(Super, nullptr);
|
2012-01-21 08:58:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-23 13:15:56 +08:00
|
|
|
void LiveVariables::HandlePhysRegDef(Register Reg, MachineInstr *MI,
|
2013-07-12 00:22:38 +08:00
|
|
|
SmallVectorImpl<unsigned> &Defs) {
|
2008-04-16 17:46:40 +08:00
|
|
|
// What parts of the register are previously defined?
|
2008-06-27 15:05:59 +08:00
|
|
|
SmallSet<unsigned, 32> Live;
|
2008-04-16 17:46:40 +08:00
|
|
|
if (PhysRegDef[Reg] || PhysRegUse[Reg]) {
|
2013-05-23 06:26:05 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
|
|
|
|
SubRegs.isValid(); ++SubRegs)
|
2012-06-02 07:28:30 +08:00
|
|
|
Live.insert(*SubRegs);
|
2008-04-16 17:46:40 +08:00
|
|
|
} else {
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
|
|
|
|
unsigned SubReg = *SubRegs;
|
2008-04-16 17:46:40 +08:00
|
|
|
// If a register isn't itself defined, but all parts that make up of it
|
|
|
|
// are defined, then consider it also defined.
|
|
|
|
// e.g.
|
|
|
|
// AL =
|
|
|
|
// AH =
|
|
|
|
// = AX
|
2009-09-24 10:15:22 +08:00
|
|
|
if (Live.count(SubReg))
|
|
|
|
continue;
|
2008-04-16 17:46:40 +08:00
|
|
|
if (PhysRegDef[SubReg] || PhysRegUse[SubReg]) {
|
2013-05-23 06:26:05 +08:00
|
|
|
for (MCSubRegIterator SS(SubReg, TRI, /*IncludeSelf=*/true);
|
|
|
|
SS.isValid(); ++SS)
|
2008-04-16 17:46:40 +08:00
|
|
|
Live.insert(*SS);
|
2007-06-27 05:03:35 +08:00
|
|
|
}
|
2008-02-20 15:36:31 +08:00
|
|
|
}
|
2003-01-14 04:01:16 +08:00
|
|
|
}
|
2007-04-25 15:30:23 +08:00
|
|
|
|
2008-04-16 17:46:40 +08:00
|
|
|
// Start from the largest piece, find the last time any part of the register
|
|
|
|
// is referenced.
|
2009-09-24 10:15:22 +08:00
|
|
|
HandlePhysRegKill(Reg, MI);
|
|
|
|
// Only some of the sub-registers are used.
|
2012-06-02 07:28:30 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI); SubRegs.isValid(); ++SubRegs) {
|
|
|
|
unsigned SubReg = *SubRegs;
|
2009-09-24 10:15:22 +08:00
|
|
|
if (!Live.count(SubReg))
|
|
|
|
// Skip if this sub-register isn't defined.
|
|
|
|
continue;
|
|
|
|
HandlePhysRegKill(SubReg, MI);
|
2007-04-25 15:30:23 +08:00
|
|
|
}
|
|
|
|
|
2009-09-24 10:15:22 +08:00
|
|
|
if (MI)
|
|
|
|
Defs.push_back(Reg); // Remember this def.
|
2009-09-23 14:28:31 +08:00
|
|
|
}
|
|
|
|
|
2016-07-01 09:51:32 +08:00
|
|
|
void LiveVariables::UpdatePhysRegDefs(MachineInstr &MI,
|
2013-07-12 00:22:38 +08:00
|
|
|
SmallVectorImpl<unsigned> &Defs) {
|
2009-09-23 14:28:31 +08:00
|
|
|
while (!Defs.empty()) {
|
2020-10-23 13:15:56 +08:00
|
|
|
Register Reg = Defs.back();
|
2009-09-23 14:28:31 +08:00
|
|
|
Defs.pop_back();
|
2013-05-23 06:26:05 +08:00
|
|
|
for (MCSubRegIterator SubRegs(Reg, TRI, /*IncludeSelf=*/true);
|
|
|
|
SubRegs.isValid(); ++SubRegs) {
|
2012-06-02 07:28:30 +08:00
|
|
|
unsigned SubReg = *SubRegs;
|
2016-07-01 09:51:32 +08:00
|
|
|
PhysRegDef[SubReg] = &MI;
|
2014-04-14 08:51:57 +08:00
|
|
|
PhysRegUse[SubReg] = nullptr;
|
2007-06-27 05:03:35 +08:00
|
|
|
}
|
2004-01-13 14:24:30 +08:00
|
|
|
}
|
2003-01-14 04:01:16 +08:00
|
|
|
}
|
|
|
|
|
2016-07-01 09:51:32 +08:00
|
|
|
void LiveVariables::runOnInstr(MachineInstr &MI,
|
2014-08-25 09:59:49 +08:00
|
|
|
SmallVectorImpl<unsigned> &Defs) {
|
2021-04-13 14:51:44 +08:00
|
|
|
assert(!MI.isDebugOrPseudoInstr());
|
2014-08-25 09:59:49 +08:00
|
|
|
// Process all of the operands of the instruction...
|
2016-07-01 09:51:32 +08:00
|
|
|
unsigned NumOperandsToProcess = MI.getNumOperands();
|
2014-08-25 09:59:49 +08:00
|
|
|
|
|
|
|
// Unless it is a PHI node. In this case, ONLY process the DEF, not any
|
|
|
|
// of the uses. They will be handled in other basic blocks.
|
2016-07-01 09:51:32 +08:00
|
|
|
if (MI.isPHI())
|
2014-08-25 09:59:49 +08:00
|
|
|
NumOperandsToProcess = 1;
|
|
|
|
|
|
|
|
// Clear kill and dead markers. LV will recompute them.
|
|
|
|
SmallVector<unsigned, 4> UseRegs;
|
|
|
|
SmallVector<unsigned, 4> DefRegs;
|
|
|
|
SmallVector<unsigned, 1> RegMasks;
|
|
|
|
for (unsigned i = 0; i != NumOperandsToProcess; ++i) {
|
2016-07-01 09:51:32 +08:00
|
|
|
MachineOperand &MO = MI.getOperand(i);
|
2014-08-25 09:59:49 +08:00
|
|
|
if (MO.isRegMask()) {
|
|
|
|
RegMasks.push_back(i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!MO.isReg() || MO.getReg() == 0)
|
|
|
|
continue;
|
Apply llvm-prefer-register-over-unsigned from clang-tidy to LLVM
Summary:
This clang-tidy check is looking for unsigned integer variables whose initializer
starts with an implicit cast from llvm::Register and changes the type of the
variable to llvm::Register (dropping the llvm:: where possible).
Partial reverts in:
X86FrameLowering.cpp - Some functions return unsigned and arguably should be MCRegister
X86FixupLEAs.cpp - Some functions return unsigned and arguably should be MCRegister
X86FrameLowering.cpp - Some functions return unsigned and arguably should be MCRegister
HexagonBitSimplify.cpp - Function takes BitTracker::RegisterRef which appears to be unsigned&
MachineVerifier.cpp - Ambiguous operator==() given MCRegister and const Register
PPCFastISel.cpp - No Register::operator-=()
PeepholeOptimizer.cpp - TargetInstrInfo::optimizeLoadInstr() takes an unsigned&
MachineTraceMetrics.cpp - MachineTraceMetrics lacks a suitable constructor
Manual fixups in:
ARMFastISel.cpp - ARMEmitLoad() now takes a Register& instead of unsigned&
HexagonSplitDouble.cpp - Ternary operator was ambiguous between unsigned/Register
HexagonConstExtenders.cpp - Has a local class named Register, used llvm::Register instead of Register.
PPCFastISel.cpp - PPCEmitLoad() now takes a Register& instead of unsigned&
Depends on D65919
Reviewers: arsenm, bogner, craig.topper, RKSimon
Reviewed By: arsenm
Subscribers: RKSimon, craig.topper, lenary, aemerson, wuzish, jholewinski, MatzeB, qcolombet, dschuff, jyknight, dylanmckay, sdardis, nemanjai, jvesely, wdng, nhaehnle, sbc100, jgravelle-google, kristof.beyls, hiraditya, aheejin, kbarton, fedor.sergeev, javed.absar, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, tpr, PkmX, jocewei, jsji, Petar.Avramovic, asbirlea, Jim, s.egerton, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65962
llvm-svn: 369041
2019-08-16 03:22:08 +08:00
|
|
|
Register MOReg = MO.getReg();
|
2014-08-25 09:59:49 +08:00
|
|
|
if (MO.isUse()) {
|
2019-08-02 07:27:28 +08:00
|
|
|
if (!(Register::isPhysicalRegister(MOReg) && MRI->isReserved(MOReg)))
|
2015-11-25 04:06:56 +08:00
|
|
|
MO.setIsKill(false);
|
2014-08-25 09:59:49 +08:00
|
|
|
if (MO.readsReg())
|
|
|
|
UseRegs.push_back(MOReg);
|
2016-03-29 11:08:18 +08:00
|
|
|
} else {
|
|
|
|
assert(MO.isDef());
|
2016-03-30 03:07:40 +08:00
|
|
|
// FIXME: We should not remove any dead flags. However the MIPS RDDSP
|
|
|
|
// instruction needs it at the moment: http://llvm.org/PR27116.
|
2019-08-02 07:27:28 +08:00
|
|
|
if (Register::isPhysicalRegister(MOReg) && !MRI->isReserved(MOReg))
|
2015-11-25 04:06:56 +08:00
|
|
|
MO.setIsDead(false);
|
2014-08-25 09:59:49 +08:00
|
|
|
DefRegs.push_back(MOReg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-01 09:51:32 +08:00
|
|
|
MachineBasicBlock *MBB = MI.getParent();
|
2014-08-25 09:59:49 +08:00
|
|
|
// Process all uses.
|
|
|
|
for (unsigned i = 0, e = UseRegs.size(); i != e; ++i) {
|
|
|
|
unsigned MOReg = UseRegs[i];
|
2019-08-02 07:27:28 +08:00
|
|
|
if (Register::isVirtualRegister(MOReg))
|
2014-08-25 09:59:49 +08:00
|
|
|
HandleVirtRegUse(MOReg, MBB, MI);
|
|
|
|
else if (!MRI->isReserved(MOReg))
|
|
|
|
HandlePhysRegUse(MOReg, MI);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process all masked registers. (Call clobbers).
|
|
|
|
for (unsigned i = 0, e = RegMasks.size(); i != e; ++i)
|
2016-07-01 09:51:32 +08:00
|
|
|
HandleRegMask(MI.getOperand(RegMasks[i]));
|
2014-08-25 09:59:49 +08:00
|
|
|
|
|
|
|
// Process all defs.
|
|
|
|
for (unsigned i = 0, e = DefRegs.size(); i != e; ++i) {
|
|
|
|
unsigned MOReg = DefRegs[i];
|
2019-08-02 07:27:28 +08:00
|
|
|
if (Register::isVirtualRegister(MOReg))
|
2014-08-25 09:59:49 +08:00
|
|
|
HandleVirtRegDef(MOReg, MI);
|
|
|
|
else if (!MRI->isReserved(MOReg))
|
2016-07-01 09:51:32 +08:00
|
|
|
HandlePhysRegDef(MOReg, &MI, Defs);
|
2014-08-25 09:59:49 +08:00
|
|
|
}
|
|
|
|
UpdatePhysRegDefs(MI, Defs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LiveVariables::runOnBlock(MachineBasicBlock *MBB, const unsigned NumRegs) {
|
|
|
|
// Mark live-in registers as live-in.
|
|
|
|
SmallVector<unsigned, 4> Defs;
|
2015-09-10 02:08:03 +08:00
|
|
|
for (const auto &LI : MBB->liveins()) {
|
2019-08-02 07:27:28 +08:00
|
|
|
assert(Register::isPhysicalRegister(LI.PhysReg) &&
|
2014-08-25 09:59:49 +08:00
|
|
|
"Cannot have a live-in virtual register!");
|
2015-09-10 02:08:03 +08:00
|
|
|
HandlePhysRegDef(LI.PhysReg, nullptr, Defs);
|
2014-08-25 09:59:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Loop over all of the instructions, processing them.
|
|
|
|
DistanceMap.clear();
|
|
|
|
unsigned Dist = 0;
|
2016-07-01 07:33:35 +08:00
|
|
|
for (MachineInstr &MI : *MBB) {
|
2021-04-13 14:51:44 +08:00
|
|
|
if (MI.isDebugOrPseudoInstr())
|
2014-08-25 09:59:49 +08:00
|
|
|
continue;
|
2016-07-01 07:33:35 +08:00
|
|
|
DistanceMap.insert(std::make_pair(&MI, Dist++));
|
2014-08-25 09:59:49 +08:00
|
|
|
|
2016-07-01 09:51:32 +08:00
|
|
|
runOnInstr(MI, Defs);
|
2014-08-25 09:59:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle any virtual assignments from PHI nodes which might be at the
|
|
|
|
// bottom of this basic block. We check all of our successor blocks to see
|
|
|
|
// if they have PHI nodes, and if so, we simulate an assignment at the end
|
|
|
|
// of the current block.
|
|
|
|
if (!PHIVarInfo[MBB->getNumber()].empty()) {
|
|
|
|
SmallVectorImpl<unsigned> &VarInfoVec = PHIVarInfo[MBB->getNumber()];
|
|
|
|
|
2021-02-14 12:41:39 +08:00
|
|
|
for (unsigned I : VarInfoVec)
|
2014-08-25 09:59:49 +08:00
|
|
|
// Mark it alive only in the block we are representing.
|
2021-02-14 12:41:39 +08:00
|
|
|
MarkVirtRegAliveInBlock(getVarInfo(I), MRI->getVRegDef(I)->getParent(),
|
2014-08-25 09:59:49 +08:00
|
|
|
MBB);
|
|
|
|
}
|
|
|
|
|
|
|
|
// MachineCSE may CSE instructions which write to non-allocatable physical
|
|
|
|
// registers across MBBs. Remember if any reserved register is liveout.
|
|
|
|
SmallSet<unsigned, 4> LiveOuts;
|
2021-02-14 12:41:39 +08:00
|
|
|
for (const MachineBasicBlock *SuccMBB : MBB->successors()) {
|
2015-08-28 07:27:47 +08:00
|
|
|
if (SuccMBB->isEHPad())
|
2014-08-25 09:59:49 +08:00
|
|
|
continue;
|
2015-09-10 02:08:03 +08:00
|
|
|
for (const auto &LI : SuccMBB->liveins()) {
|
|
|
|
if (!TRI->isInAllocatableClass(LI.PhysReg))
|
2014-08-25 09:59:49 +08:00
|
|
|
// Ignore other live-ins, e.g. those that are live into landing pads.
|
2015-09-10 02:08:03 +08:00
|
|
|
LiveOuts.insert(LI.PhysReg);
|
2014-08-25 09:59:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop over PhysRegDef / PhysRegUse, killing any registers that are
|
|
|
|
// available at the end of the basic block.
|
|
|
|
for (unsigned i = 0; i != NumRegs; ++i)
|
|
|
|
if ((PhysRegDef[i] || PhysRegUse[i]) && !LiveOuts.count(i))
|
|
|
|
HandlePhysRegDef(i, nullptr, Defs);
|
|
|
|
}
|
|
|
|
|
2007-03-17 17:29:54 +08:00
|
|
|
bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
|
|
|
|
MF = &mf;
|
2008-04-03 02:04:08 +08:00
|
|
|
MRI = &mf.getRegInfo();
|
2014-08-05 10:39:49 +08:00
|
|
|
TRI = MF->getSubtarget().getRegisterInfo();
|
2004-02-09 09:35:21 +08:00
|
|
|
|
2014-08-25 09:59:42 +08:00
|
|
|
const unsigned NumRegs = TRI->getNumRegs();
|
2014-08-26 10:03:25 +08:00
|
|
|
PhysRegDef.assign(NumRegs, nullptr);
|
|
|
|
PhysRegUse.assign(NumRegs, nullptr);
|
2014-08-25 09:59:42 +08:00
|
|
|
PHIVarInfo.resize(MF->getNumBlockIDs());
|
2010-02-24 06:43:58 +08:00
|
|
|
PHIJoins.clear();
|
2003-01-14 04:01:16 +08:00
|
|
|
|
2012-02-10 12:10:36 +08:00
|
|
|
// FIXME: LiveIntervals will be updated to remove its dependence on
|
|
|
|
// LiveVariables to improve compilation time and eliminate bizarre pass
|
|
|
|
// dependencies. Until then, we can't change much in -O0.
|
|
|
|
if (!MRI->isSSA())
|
|
|
|
report_fatal_error("regalloc=... not currently supported with -O0");
|
|
|
|
|
2007-03-17 17:29:54 +08:00
|
|
|
analyzePHINodes(mf);
|
2006-10-03 15:20:20 +08:00
|
|
|
|
2003-01-14 04:01:16 +08:00
|
|
|
// Calculate live variable information in depth first order on the CFG of the
|
|
|
|
// function. This guarantees that we will see the definition of a virtual
|
|
|
|
// register before its uses due to dominance properties of SSA (except for PHI
|
|
|
|
// nodes, which are treated as a special case).
|
2015-10-10 03:13:58 +08:00
|
|
|
MachineBasicBlock *Entry = &MF->front();
|
2016-10-06 05:36:16 +08:00
|
|
|
df_iterator_default_set<MachineBasicBlock*,16> Visited;
|
2008-02-20 17:15:16 +08:00
|
|
|
|
2014-08-25 07:23:06 +08:00
|
|
|
for (MachineBasicBlock *MBB : depth_first_ext(Entry, Visited)) {
|
2014-08-25 09:59:49 +08:00
|
|
|
runOnBlock(MBB, NumRegs);
|
2007-04-25 15:30:23 +08:00
|
|
|
|
2014-08-26 10:03:25 +08:00
|
|
|
PhysRegDef.assign(NumRegs, nullptr);
|
|
|
|
PhysRegUse.assign(NumRegs, nullptr);
|
2003-01-14 04:01:16 +08:00
|
|
|
}
|
|
|
|
|
2006-11-16 04:51:59 +08:00
|
|
|
// Convert and transfer the dead / killed information we have gathered into
|
|
|
|
// VirtRegInfo onto MI's.
|
2011-01-09 07:10:57 +08:00
|
|
|
for (unsigned i = 0, e1 = VirtRegInfo.size(); i != e1; ++i) {
|
2020-10-23 13:15:56 +08:00
|
|
|
const Register Reg = Register::index2VirtReg(i);
|
2011-01-09 07:10:57 +08:00
|
|
|
for (unsigned j = 0, e2 = VirtRegInfo[Reg].Kills.size(); j != e2; ++j)
|
|
|
|
if (VirtRegInfo[Reg].Kills[j] == MRI->getVRegDef(Reg))
|
|
|
|
VirtRegInfo[Reg].Kills[j]->addRegisterDead(Reg, TRI);
|
2003-01-14 04:01:16 +08:00
|
|
|
else
|
2011-01-09 07:10:57 +08:00
|
|
|
VirtRegInfo[Reg].Kills[j]->addRegisterKilled(Reg, TRI);
|
|
|
|
}
|
2004-07-01 12:24:29 +08:00
|
|
|
|
2004-07-10 00:44:37 +08:00
|
|
|
// Check to make sure there are no unreachable blocks in the MC CFG for the
|
|
|
|
// function. If so, it is due to a bug in the instruction selector or some
|
|
|
|
// other part of the code generator if this happens.
|
|
|
|
#ifndef NDEBUG
|
2021-02-14 12:41:39 +08:00
|
|
|
for (const MachineBasicBlock &MBB : *MF)
|
|
|
|
assert(Visited.contains(&MBB) && "unreachable basic block found");
|
2004-07-10 00:44:37 +08:00
|
|
|
#endif
|
|
|
|
|
2014-08-25 09:59:42 +08:00
|
|
|
PhysRegDef.clear();
|
|
|
|
PhysRegUse.clear();
|
|
|
|
PHIVarInfo.clear();
|
2007-04-26 03:34:00 +08:00
|
|
|
|
2003-01-14 04:01:16 +08:00
|
|
|
return false;
|
|
|
|
}
|
2004-02-20 02:28:02 +08:00
|
|
|
|
2008-07-03 08:07:19 +08:00
|
|
|
/// replaceKillInstruction - Update register kill info by replacing a kill
|
|
|
|
/// instruction with a new one.
|
2020-10-23 13:15:56 +08:00
|
|
|
void LiveVariables::replaceKillInstruction(Register Reg, MachineInstr &OldMI,
|
2016-07-01 09:51:32 +08:00
|
|
|
MachineInstr &NewMI) {
|
2008-07-03 08:07:19 +08:00
|
|
|
VarInfo &VI = getVarInfo(Reg);
|
2016-07-01 09:51:32 +08:00
|
|
|
std::replace(VI.Kills.begin(), VI.Kills.end(), &OldMI, &NewMI);
|
2008-07-03 08:07:19 +08:00
|
|
|
}
|
|
|
|
|
2006-09-03 08:05:09 +08:00
|
|
|
/// removeVirtualRegistersKilled - Remove all killed info for the specified
|
|
|
|
/// instruction.
|
2016-07-01 09:51:32 +08:00
|
|
|
void LiveVariables::removeVirtualRegistersKilled(MachineInstr &MI) {
|
|
|
|
for (unsigned i = 0, e = MI.getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI.getOperand(i);
|
2008-10-03 23:45:36 +08:00
|
|
|
if (MO.isReg() && MO.isKill()) {
|
2007-12-31 05:56:09 +08:00
|
|
|
MO.setIsKill(false);
|
Apply llvm-prefer-register-over-unsigned from clang-tidy to LLVM
Summary:
This clang-tidy check is looking for unsigned integer variables whose initializer
starts with an implicit cast from llvm::Register and changes the type of the
variable to llvm::Register (dropping the llvm:: where possible).
Partial reverts in:
X86FrameLowering.cpp - Some functions return unsigned and arguably should be MCRegister
X86FixupLEAs.cpp - Some functions return unsigned and arguably should be MCRegister
X86FrameLowering.cpp - Some functions return unsigned and arguably should be MCRegister
HexagonBitSimplify.cpp - Function takes BitTracker::RegisterRef which appears to be unsigned&
MachineVerifier.cpp - Ambiguous operator==() given MCRegister and const Register
PPCFastISel.cpp - No Register::operator-=()
PeepholeOptimizer.cpp - TargetInstrInfo::optimizeLoadInstr() takes an unsigned&
MachineTraceMetrics.cpp - MachineTraceMetrics lacks a suitable constructor
Manual fixups in:
ARMFastISel.cpp - ARMEmitLoad() now takes a Register& instead of unsigned&
HexagonSplitDouble.cpp - Ternary operator was ambiguous between unsigned/Register
HexagonConstExtenders.cpp - Has a local class named Register, used llvm::Register instead of Register.
PPCFastISel.cpp - PPCEmitLoad() now takes a Register& instead of unsigned&
Depends on D65919
Reviewers: arsenm, bogner, craig.topper, RKSimon
Reviewed By: arsenm
Subscribers: RKSimon, craig.topper, lenary, aemerson, wuzish, jholewinski, MatzeB, qcolombet, dschuff, jyknight, dylanmckay, sdardis, nemanjai, jvesely, wdng, nhaehnle, sbc100, jgravelle-google, kristof.beyls, hiraditya, aheejin, kbarton, fedor.sergeev, javed.absar, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, tpr, PkmX, jocewei, jsji, Petar.Avramovic, asbirlea, Jim, s.egerton, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65962
llvm-svn: 369041
2019-08-16 03:22:08 +08:00
|
|
|
Register Reg = MO.getReg();
|
2019-08-02 07:27:28 +08:00
|
|
|
if (Register::isVirtualRegister(Reg)) {
|
2006-11-16 04:51:59 +08:00
|
|
|
bool removed = getVarInfo(Reg).removeKill(MI);
|
|
|
|
assert(removed && "kill not in register's VarInfo?");
|
2011-08-12 22:54:45 +08:00
|
|
|
(void)removed;
|
2006-11-16 04:51:59 +08:00
|
|
|
}
|
2006-09-03 08:05:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-03 15:20:20 +08:00
|
|
|
/// analyzePHINodes - Gather information about the PHI nodes in here. In
|
2008-02-20 17:15:16 +08:00
|
|
|
/// particular, we want to map the variable information of a virtual register
|
|
|
|
/// which is used in a PHI node. We map that to the BB the vreg is coming from.
|
2006-10-03 15:20:20 +08:00
|
|
|
///
|
|
|
|
void LiveVariables::analyzePHINodes(const MachineFunction& Fn) {
|
2014-05-01 02:29:51 +08:00
|
|
|
for (const auto &MBB : Fn)
|
2014-05-01 06:17:38 +08:00
|
|
|
for (const auto &BBI : MBB) {
|
|
|
|
if (!BBI.isPHI())
|
|
|
|
break;
|
|
|
|
for (unsigned i = 1, e = BBI.getNumOperands(); i != e; i += 2)
|
|
|
|
if (BBI.getOperand(i).readsReg())
|
|
|
|
PHIVarInfo[BBI.getOperand(i + 1).getMBB()->getNumber()]
|
|
|
|
.push_back(BBI.getOperand(i).getReg());
|
|
|
|
}
|
2006-10-03 15:20:20 +08:00
|
|
|
}
|
2009-11-11 06:01:05 +08:00
|
|
|
|
2009-11-21 10:05:21 +08:00
|
|
|
bool LiveVariables::VarInfo::isLiveIn(const MachineBasicBlock &MBB,
|
2020-10-23 13:15:56 +08:00
|
|
|
Register Reg, MachineRegisterInfo &MRI) {
|
2009-11-21 10:05:21 +08:00
|
|
|
unsigned Num = MBB.getNumber();
|
|
|
|
|
|
|
|
// Reg is live-through.
|
|
|
|
if (AliveBlocks.test(Num))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Registers defined in MBB cannot be live in.
|
|
|
|
const MachineInstr *Def = MRI.getVRegDef(Reg);
|
|
|
|
if (Def && Def->getParent() == &MBB)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Reg was not defined in MBB, was it killed here?
|
|
|
|
return findKill(&MBB);
|
|
|
|
}
|
|
|
|
|
2020-10-23 13:15:56 +08:00
|
|
|
bool LiveVariables::isLiveOut(Register Reg, const MachineBasicBlock &MBB) {
|
2009-12-02 01:13:31 +08:00
|
|
|
LiveVariables::VarInfo &VI = getVarInfo(Reg);
|
|
|
|
|
2015-06-11 15:50:21 +08:00
|
|
|
SmallPtrSet<const MachineBasicBlock *, 8> Kills;
|
|
|
|
for (unsigned i = 0, e = VI.Kills.size(); i != e; ++i)
|
|
|
|
Kills.insert(VI.Kills[i]->getParent());
|
|
|
|
|
2009-12-02 01:13:31 +08:00
|
|
|
// Loop over all of the successors of the basic block, checking to see if
|
|
|
|
// the value is either live in the block, or if it is killed in the block.
|
2015-06-11 15:50:21 +08:00
|
|
|
for (const MachineBasicBlock *SuccMBB : MBB.successors()) {
|
2009-12-02 01:13:31 +08:00
|
|
|
// Is it alive in this successor?
|
|
|
|
unsigned SuccIdx = SuccMBB->getNumber();
|
|
|
|
if (VI.AliveBlocks.test(SuccIdx))
|
|
|
|
return true;
|
2015-06-11 15:50:21 +08:00
|
|
|
// Or is it live because there is a use in a successor that kills it?
|
|
|
|
if (Kills.count(SuccMBB))
|
|
|
|
return true;
|
2009-12-02 01:13:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-12 03:31:31 +08:00
|
|
|
/// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
|
|
|
|
/// variables that are live out of DomBB will be marked as passing live through
|
|
|
|
/// BB.
|
|
|
|
void LiveVariables::addNewBlock(MachineBasicBlock *BB,
|
2009-11-21 10:05:21 +08:00
|
|
|
MachineBasicBlock *DomBB,
|
|
|
|
MachineBasicBlock *SuccBB) {
|
2009-11-12 03:31:31 +08:00
|
|
|
const unsigned NumNew = BB->getNumber();
|
2009-11-21 10:05:21 +08:00
|
|
|
|
2017-05-12 03:37:43 +08:00
|
|
|
DenseSet<unsigned> Defs, Kills;
|
2012-09-09 19:56:14 +08:00
|
|
|
|
|
|
|
MachineBasicBlock::iterator BBI = SuccBB->begin(), BBE = SuccBB->end();
|
|
|
|
for (; BBI != BBE && BBI->isPHI(); ++BBI) {
|
|
|
|
// Record the def of the PHI node.
|
|
|
|
Defs.insert(BBI->getOperand(0).getReg());
|
|
|
|
|
|
|
|
// All registers used by PHI nodes in SuccBB must be live through BB.
|
2009-11-21 10:05:21 +08:00
|
|
|
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
|
|
|
|
if (BBI->getOperand(i+1).getMBB() == BB)
|
|
|
|
getVarInfo(BBI->getOperand(i).getReg()).AliveBlocks.set(NumNew);
|
2012-09-09 19:56:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Record all vreg defs and kills of all instructions in SuccBB.
|
|
|
|
for (; BBI != BBE; ++BBI) {
|
2021-02-21 13:46:02 +08:00
|
|
|
for (const MachineOperand &Op : BBI->operands()) {
|
|
|
|
if (Op.isReg() && Register::isVirtualRegister(Op.getReg())) {
|
|
|
|
if (Op.isDef())
|
|
|
|
Defs.insert(Op.getReg());
|
|
|
|
else if (Op.isKill())
|
|
|
|
Kills.insert(Op.getReg());
|
2012-09-09 19:56:14 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 06:01:05 +08:00
|
|
|
|
|
|
|
// Update info for all live variables
|
2011-01-09 07:10:57 +08:00
|
|
|
for (unsigned i = 0, e = MRI->getNumVirtRegs(); i != e; ++i) {
|
2020-10-23 13:15:56 +08:00
|
|
|
Register Reg = Register::index2VirtReg(i);
|
2012-09-09 19:56:14 +08:00
|
|
|
|
|
|
|
// If the Defs is defined in the successor it can't be live in BB.
|
|
|
|
if (Defs.count(Reg))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// If the register is either killed in or live through SuccBB it's also live
|
|
|
|
// through BB.
|
2009-11-12 03:31:31 +08:00
|
|
|
VarInfo &VI = getVarInfo(Reg);
|
2012-09-09 19:56:14 +08:00
|
|
|
if (Kills.count(Reg) || VI.AliveBlocks.test(SuccBB->getNumber()))
|
2009-11-12 03:31:31 +08:00
|
|
|
VI.AliveBlocks.set(NumNew);
|
2009-11-11 06:01:05 +08:00
|
|
|
}
|
|
|
|
}
|
2020-01-21 04:56:09 +08:00
|
|
|
|
|
|
|
/// addNewBlock - Add a new basic block BB as an empty succcessor to DomBB. All
|
|
|
|
/// variables that are live out of DomBB will be marked as passing live through
|
|
|
|
/// BB. LiveInSets[BB] is *not* updated (because it is not needed during
|
|
|
|
/// PHIElimination).
|
|
|
|
void LiveVariables::addNewBlock(MachineBasicBlock *BB,
|
|
|
|
MachineBasicBlock *DomBB,
|
|
|
|
MachineBasicBlock *SuccBB,
|
|
|
|
std::vector<SparseBitVector<>> &LiveInSets) {
|
|
|
|
const unsigned NumNew = BB->getNumber();
|
|
|
|
|
|
|
|
SparseBitVector<> &BV = LiveInSets[SuccBB->getNumber()];
|
2021-02-14 12:41:39 +08:00
|
|
|
for (unsigned R : BV) {
|
|
|
|
Register VirtReg = Register::index2VirtReg(R);
|
2020-01-21 04:56:09 +08:00
|
|
|
LiveVariables::VarInfo &VI = getVarInfo(VirtReg);
|
|
|
|
VI.AliveBlocks.set(NumNew);
|
|
|
|
}
|
|
|
|
// All registers used by PHI nodes in SuccBB must be live through BB.
|
|
|
|
for (MachineBasicBlock::iterator BBI = SuccBB->begin(),
|
|
|
|
BBE = SuccBB->end();
|
|
|
|
BBI != BBE && BBI->isPHI(); ++BBI) {
|
|
|
|
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2)
|
2020-06-03 23:25:30 +08:00
|
|
|
if (BBI->getOperand(i + 1).getMBB() == BB &&
|
|
|
|
BBI->getOperand(i).readsReg())
|
2020-01-21 04:56:09 +08:00
|
|
|
getVarInfo(BBI->getOperand(i).getReg())
|
|
|
|
.AliveBlocks.set(NumNew);
|
|
|
|
}
|
|
|
|
}
|