freebsd-nq/lib/CodeGen/CriticalAntiDepBreaker.h

107 lines
4.1 KiB
C
Raw Normal View History

2009-11-04 14:58:56 +00:00
//=- llvm/CodeGen/CriticalAntiDepBreaker.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 CriticalAntiDepBreaker class, which
// implements register anti-dependence breaking along a blocks
// critical path during post-RA scheduler.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIB_CODEGEN_CRITICALANTIDEPBREAKER_H
#define LLVM_LIB_CODEGEN_CRITICALANTIDEPBREAKER_H
2009-11-04 14:58:56 +00:00
#include "AntiDepBreaker.h"
#include "llvm/ADT/BitVector.h"
2009-11-04 14:58:56 +00:00
#include "llvm/CodeGen/MachineBasicBlock.h"
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/CodeGen/RegisterClassInfo.h"
2009-11-04 14:58:56 +00:00
#include "llvm/CodeGen/ScheduleDAG.h"
namespace llvm {
class RegisterClassInfo;
2010-07-13 17:19:57 +00:00
class TargetInstrInfo;
class TargetRegisterInfo;
class MachineFunction;
2010-07-13 17:19:57 +00:00
class LLVM_LIBRARY_VISIBILITY CriticalAntiDepBreaker : public AntiDepBreaker {
2009-11-04 14:58:56 +00:00
MachineFunction& MF;
MachineRegisterInfo &MRI;
2010-07-13 17:19:57 +00:00
const TargetInstrInfo *TII;
2009-11-04 14:58:56 +00:00
const TargetRegisterInfo *TRI;
const RegisterClassInfo &RegClassInfo;
2009-11-04 14:58:56 +00:00
/// The set of allocatable registers.
2009-11-04 14:58:56 +00:00
/// We'll be ignoring anti-dependencies on non-allocatable registers,
/// because they may not be safe to break.
const BitVector AllocatableSet;
/// For live regs that are only used in one register class in a
2009-11-04 14:58:56 +00:00
/// live range, the register class. If the register is not live, the
/// corresponding value is null. If the register is live but used in
/// multiple register classes, the corresponding value is -1 casted to a
/// pointer.
std::vector<const TargetRegisterClass*> Classes;
2009-11-04 14:58:56 +00:00
/// Map registers to all their references within a live range.
2009-11-04 14:58:56 +00:00
std::multimap<unsigned, MachineOperand *> RegRefs;
typedef std::multimap<unsigned, MachineOperand *>::const_iterator
RegRefIter;
2009-11-04 14:58:56 +00:00
/// The index of the most recent kill (proceeding bottom-up),
2009-11-04 14:58:56 +00:00
/// or ~0u if the register is not live.
std::vector<unsigned> KillIndices;
2009-11-04 14:58:56 +00:00
/// The index of the most recent complete def (proceeding
/// bottom up), or ~0u if the register is live.
std::vector<unsigned> DefIndices;
2009-11-04 14:58:56 +00:00
/// A set of registers which are live and cannot be changed to
2009-11-04 14:58:56 +00:00
/// break anti-dependencies.
BitVector KeepRegs;
2009-11-04 14:58:56 +00:00
public:
CriticalAntiDepBreaker(MachineFunction& MFi, const RegisterClassInfo&);
~CriticalAntiDepBreaker() override;
2010-01-15 15:37:28 +00:00
/// Initialize anti-dep breaking for a new basic block.
void StartBlock(MachineBasicBlock *BB) override;
2009-11-04 14:58:56 +00:00
/// Identifiy anti-dependencies along the critical path
2009-11-04 14:58:56 +00:00
/// of the ScheduleDAG and break them by renaming registers.
2010-05-04 16:11:02 +00:00
unsigned BreakAntiDependencies(const std::vector<SUnit>& SUnits,
MachineBasicBlock::iterator Begin,
MachineBasicBlock::iterator End,
unsigned InsertPosIndex,
DbgValueVector &DbgValues) override;
2009-11-04 14:58:56 +00:00
/// Update liveness information to account for the current
2009-11-04 14:58:56 +00:00
/// instruction, which will not be scheduled.
void Observe(MachineInstr &MI, unsigned Count,
unsigned InsertPosIndex) override;
2009-11-04 14:58:56 +00:00
/// Finish anti-dep breaking for a basic block.
void FinishBlock() override;
2009-11-04 14:58:56 +00:00
private:
void PrescanInstruction(MachineInstr &MI);
void ScanInstruction(MachineInstr &MI, unsigned Count);
bool isNewRegClobberedByRefs(RegRefIter RegRefBegin,
RegRefIter RegRefEnd,
unsigned NewReg);
unsigned findSuitableFreeRegister(RegRefIter RegRefBegin,
RegRefIter RegRefEnd,
2010-01-15 15:37:28 +00:00
unsigned AntiDepReg,
2009-11-04 14:58:56 +00:00
unsigned LastNewReg,
const TargetRegisterClass *RC,
SmallVectorImpl<unsigned> &Forbid);
2009-11-04 14:58:56 +00:00
};
}
2009-11-04 14:58:56 +00:00
#endif