2009-10-26 19:32:42 +00:00
|
|
|
//=- llvm/CodeGen/AggressiveAntiDepBreaker.h - Anti-Dep Support -*- C++ -*-=//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the AggressiveAntiDepBreaker class, which
|
|
|
|
// implements register anti-dependence breaking during post-RA
|
|
|
|
// scheduling. It attempts to break all anti-dependencies within a
|
|
|
|
// block.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_CODEGEN_AGGRESSIVEANTIDEPBREAKER_H
|
|
|
|
#define LLVM_LIB_CODEGEN_AGGRESSIVEANTIDEPBREAKER_H
|
2009-10-26 19:32:42 +00:00
|
|
|
|
2009-10-28 18:29:54 +00:00
|
|
|
#include "AntiDepBreaker.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
|
|
|
#include "llvm/ADT/SmallSet.h"
|
2009-10-26 19:32:42 +00:00
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
|
|
#include "llvm/CodeGen/ScheduleDAG.h"
|
2010-07-15 06:51:46 +00:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2009-11-20 19:32:48 +00:00
|
|
|
#include <map>
|
2009-10-26 19:32:42 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2011-06-16 21:56:21 +00:00
|
|
|
class RegisterClassInfo;
|
|
|
|
|
2009-11-20 19:32:48 +00:00
|
|
|
/// Contains all the state necessary for anti-dep breaking.
|
2013-09-11 18:05:11 +00:00
|
|
|
class AggressiveAntiDepState {
|
2009-10-26 22:31:16 +00:00
|
|
|
public:
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Information about a register reference within a liverange
|
2009-10-26 19:32:42 +00:00
|
|
|
typedef struct {
|
2014-09-21 14:48:16 +00:00
|
|
|
/// The registers operand
|
2009-10-26 19:32:42 +00:00
|
|
|
MachineOperand *Operand;
|
2014-09-21 14:48:16 +00:00
|
|
|
/// The register class
|
2009-10-26 19:32:42 +00:00
|
|
|
const TargetRegisterClass *RC;
|
|
|
|
} RegisterReference;
|
|
|
|
|
2009-10-26 22:31:16 +00:00
|
|
|
private:
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Number of non-virtual target registers (i.e. TRI->getNumRegs()).
|
2009-12-09 17:18:22 +00:00
|
|
|
const unsigned NumTargetRegs;
|
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Implements a disjoint-union data structure to
|
2009-10-26 19:32:42 +00:00
|
|
|
/// form register groups. A node is represented by an index into
|
|
|
|
/// the vector. A node can "point to" itself to indicate that it
|
|
|
|
/// is the parent of a group, or point to another node to indicate
|
|
|
|
/// that it is a member of the same group as that node.
|
|
|
|
std::vector<unsigned> GroupNodes;
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// For each register, the index of the GroupNode
|
2009-10-26 19:32:42 +00:00
|
|
|
/// currently representing the group that the register belongs to.
|
|
|
|
/// Register 0 is always represented by the 0 group, a group
|
|
|
|
/// composed of registers that are not eligible for anti-aliasing.
|
2010-07-15 18:40:50 +00:00
|
|
|
std::vector<unsigned> GroupNodeIndices;
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Map registers to all their references within a live range.
|
2009-10-26 19:32:42 +00:00
|
|
|
std::multimap<unsigned, RegisterReference> RegRefs;
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// The index of the most recent kill (proceding bottom-up),
|
2009-10-26 19:32:42 +00:00
|
|
|
/// or ~0u if the register is not live.
|
2010-07-15 18:43:09 +00:00
|
|
|
std::vector<unsigned> KillIndices;
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// The index of the most recent complete def (proceding bottom
|
2009-10-26 19:32:42 +00:00
|
|
|
/// up), or ~0u if the register is live.
|
2010-07-15 18:43:09 +00:00
|
|
|
std::vector<unsigned> DefIndices;
|
2009-10-26 19:32:42 +00:00
|
|
|
|
|
|
|
public:
|
2009-12-09 17:18:22 +00:00
|
|
|
AggressiveAntiDepState(const unsigned TargetRegs, MachineBasicBlock *BB);
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Return the kill indices.
|
2010-07-15 18:43:09 +00:00
|
|
|
std::vector<unsigned> &GetKillIndices() { return KillIndices; }
|
2009-10-26 19:32:42 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Return the define indices.
|
2010-07-15 18:43:09 +00:00
|
|
|
std::vector<unsigned> &GetDefIndices() { return DefIndices; }
|
2009-10-26 19:32:42 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Return the RegRefs map.
|
2009-10-26 22:31:16 +00:00
|
|
|
std::multimap<unsigned, RegisterReference>& GetRegRefs() { return RegRefs; }
|
2009-10-26 19:32:42 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
// Get the group for a register. The returned value is
|
2009-10-26 19:32:42 +00:00
|
|
|
// the index of the GroupNode representing the group.
|
|
|
|
unsigned GetGroup(unsigned Reg);
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
// Return a vector of the registers belonging to a group.
|
|
|
|
// If RegRefs is non-NULL then only included referenced registers.
|
2009-11-13 19:52:48 +00:00
|
|
|
void GetGroupRegs(
|
|
|
|
unsigned Group,
|
|
|
|
std::vector<unsigned> &Regs,
|
2010-01-06 16:48:02 +00:00
|
|
|
std::multimap<unsigned,
|
|
|
|
AggressiveAntiDepState::RegisterReference> *RegRefs);
|
2009-10-26 19:32:42 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
// Union Reg1's and Reg2's groups to form a new group.
|
|
|
|
// Return the index of the GroupNode representing the group.
|
2009-10-26 19:32:42 +00:00
|
|
|
unsigned UnionGroups(unsigned Reg1, unsigned Reg2);
|
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
// Remove a register from its current group and place
|
2009-10-26 19:32:42 +00:00
|
|
|
// it alone in its own group. Return the index of the GroupNode
|
|
|
|
// representing the registers new group.
|
|
|
|
unsigned LeaveGroup(unsigned Reg);
|
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Return true if Reg is live.
|
2009-10-26 19:32:42 +00:00
|
|
|
bool IsLive(unsigned Reg);
|
2009-10-26 22:31:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-09-11 18:05:11 +00:00
|
|
|
class AggressiveAntiDepBreaker : public AntiDepBreaker {
|
2009-10-26 22:31:16 +00:00
|
|
|
MachineFunction& MF;
|
|
|
|
MachineRegisterInfo &MRI;
|
2010-06-16 07:35:02 +00:00
|
|
|
const TargetInstrInfo *TII;
|
2009-10-26 22:31:16 +00:00
|
|
|
const TargetRegisterInfo *TRI;
|
2011-06-16 21:56:21 +00:00
|
|
|
const RegisterClassInfo &RegClassInfo;
|
2009-11-13 19:52:48 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// The set of registers that should only be
|
2009-11-13 19:52:48 +00:00
|
|
|
/// renamed if they are on the critical path.
|
|
|
|
BitVector CriticalPathSet;
|
2009-10-26 22:31:16 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// The state used to identify and rename anti-dependence registers.
|
2009-10-26 22:31:16 +00:00
|
|
|
AggressiveAntiDepState *State;
|
|
|
|
|
|
|
|
public:
|
2010-01-06 16:48:02 +00:00
|
|
|
AggressiveAntiDepBreaker(MachineFunction& MFi,
|
2011-07-01 21:01:15 +00:00
|
|
|
const RegisterClassInfo &RCI,
|
|
|
|
TargetSubtargetInfo::RegClassVector& CriticalPathRCs);
|
2009-10-26 22:31:16 +00:00
|
|
|
~AggressiveAntiDepBreaker();
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Initialize anti-dep breaking for a new basic block.
|
2014-03-07 09:26:03 +00:00
|
|
|
void StartBlock(MachineBasicBlock *BB) override;
|
2009-10-26 22:31:16 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Identifiy anti-dependencies along the critical path
|
2009-10-26 22:31:16 +00:00
|
|
|
/// of the ScheduleDAG and break them by renaming registers.
|
|
|
|
///
|
2010-04-19 23:11:58 +00:00
|
|
|
unsigned BreakAntiDependencies(const std::vector<SUnit>& SUnits,
|
|
|
|
MachineBasicBlock::iterator Begin,
|
|
|
|
MachineBasicBlock::iterator End,
|
2011-06-02 21:26:52 +00:00
|
|
|
unsigned InsertPosIndex,
|
2014-03-07 09:26:03 +00:00
|
|
|
DbgValueVector &DbgValues) override;
|
2009-10-26 22:31:16 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Update liveness information to account for the current
|
2009-10-26 22:31:16 +00:00
|
|
|
/// instruction, which will not be scheduled.
|
|
|
|
///
|
2014-03-07 09:26:03 +00:00
|
|
|
void Observe(MachineInstr *MI, unsigned Count,
|
|
|
|
unsigned InsertPosIndex) override;
|
2009-10-26 22:31:16 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Finish anti-dep breaking for a basic block.
|
2014-03-07 09:26:03 +00:00
|
|
|
void FinishBlock() override;
|
2009-10-26 22:31:16 +00:00
|
|
|
|
|
|
|
private:
|
2011-06-16 21:56:21 +00:00
|
|
|
/// Keep track of a position in the allocation order for each regclass.
|
|
|
|
typedef std::map<const TargetRegisterClass *, unsigned> RenameOrderType;
|
2009-11-05 01:19:35 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// Return true if MO represents a register
|
2009-10-26 19:32:42 +00:00
|
|
|
/// that is both implicitly used and defined in MI
|
|
|
|
bool IsImplicitDefUse(MachineInstr *MI, MachineOperand& MO);
|
2010-01-06 16:48:02 +00:00
|
|
|
|
2014-09-21 14:48:16 +00:00
|
|
|
/// If MI implicitly def/uses a register, then
|
2009-10-26 19:32:42 +00:00
|
|
|
/// return that register and all subregisters.
|
|
|
|
void GetPassthruRegs(MachineInstr *MI, std::set<unsigned>& PassthruRegs);
|
|
|
|
|
2009-11-19 23:12:37 +00:00
|
|
|
void HandleLastUse(unsigned Reg, unsigned KillIdx, const char *tag,
|
2014-04-16 04:21:27 +00:00
|
|
|
const char *header = nullptr,
|
|
|
|
const char *footer = nullptr);
|
2009-11-19 23:12:37 +00:00
|
|
|
|
2009-10-26 19:32:42 +00:00
|
|
|
void PrescanInstruction(MachineInstr *MI, unsigned Count,
|
|
|
|
std::set<unsigned>& PassthruRegs);
|
|
|
|
void ScanInstruction(MachineInstr *MI, unsigned Count);
|
|
|
|
BitVector GetRenameRegisters(unsigned Reg);
|
|
|
|
bool FindSuitableFreeRegisters(unsigned AntiDepGroupIndex,
|
2009-11-05 01:19:35 +00:00
|
|
|
RenameOrderType& RenameOrder,
|
2009-10-26 19:32:42 +00:00
|
|
|
std::map<unsigned, unsigned> &RenameMap);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|