53#define DEBUG_TYPE "hexagon-peephole"
57 cl::desc(
"Disable Peephole Optimization"));
60 cl::desc(
"Disable Optimization of PNotP"));
64 cl::desc(
"Disable Optimization of Sign/Zero Extends"));
69 cl::desc(
"Disable Optimization of extensions to i64."));
91 return "Hexagon optimize redundant zero and size extends";
100char HexagonPeephole::ID = 0;
106 if (skipFunction(MF.getFunction()))
109 QII =
static_cast<const HexagonInstrInfo *
>(MF.getSubtarget().getInstrInfo());
111 MRI = &MF.getRegInfo();
121 PeepholeDoubleRegsMap.
clear();
138 PeepholeMap[DstReg] = SrcReg;
153 PeepholeMap[DstReg] = SrcReg;
161 if (
MI.getOpcode() == Hexagon::S2_lsr_i_p) {
170 PeepholeDoubleRegsMap[DstReg] =
171 std::make_pair(*&SrcReg, Hexagon::isub_hi);
186 PeepholeMap[DstReg] = SrcReg;
198 if (Src.getSubReg() != Hexagon::isub_lo)
205 if (
unsigned PeepholeSrc = PeepholeMap.
lookup(SrcReg)) {
211 PeepholeDoubleRegsMap.
find(SrcReg);
212 if (DI != PeepholeDoubleRegsMap.
end()) {
213 std::pair<unsigned,unsigned> PeepholeSrc = DI->second;
216 PeepholeSrc.first,
false ,
false ,
217 false ,
false ,
false ,
218 false , PeepholeSrc.second));
227 if (QII->isPredicated(
MI)) {
231 if (RC0->
getID() == Hexagon::PredRegsRegClassID) {
236 if (
unsigned PeepholeSrc = PeepholeMap.
lookup(Reg0)) {
238 MI.getOperand(0).setReg(PeepholeSrc);
239 MRI->clearKillFlags(PeepholeSrc);
240 int NewOp = QII->getInvertedPredicatedOpcode(
MI.getOpcode());
241 MI.setDesc(QII->get(NewOp));
250 unsigned Op =
MI.getOpcode();
252 unsigned PR = 1,
S1 = 2, S2 = 3;
255 case Hexagon::C2_mux:
256 case Hexagon::C2_muxii:
259 case Hexagon::C2_muxri:
260 NewOp = Hexagon::C2_muxir;
262 case Hexagon::C2_muxir:
263 NewOp = Hexagon::C2_muxri;
268 if (
unsigned POrig = PeepholeMap.
lookup(PSrc)) {
270 MI.getOperand(0).getReg())
272 .
add(
MI.getOperand(S2))
274 MRI->clearKillFlags(POrig);
275 MI.eraseFromParent();
288 return new HexagonPeephole();
unsigned const MachineRegisterInfo * MRI
This file defines the DenseMap class.
static cl::opt< bool > DisableOptExtTo64("disable-hexagon-opt-ext-to-64", cl::Hidden, cl::init(true), cl::desc("Disable Optimization of extensions to i64."))
static cl::opt< bool > DisableHexagonPeephole("disable-hexagon-peephole", cl::Hidden, cl::desc("Disable Peephole Optimization"))
static cl::opt< bool > DisablePNotP("disable-hexagon-pnotp", cl::Hidden, cl::desc("Disable Optimization of PNotP"))
static cl::opt< bool > DisableOptSZExt("disable-hexagon-optszext", cl::Hidden, cl::init(true), cl::desc("Disable Optimization of Sign/Zero Extends"))
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
Represent the analysis usage information of a pass.
This class represents an Operation in the Expression.
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
iterator find(const_arg_type_t< KeyT > Val)
FunctionPass class - This class is used to implement most global optimizations.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
Register getReg() const
getReg - Returns the register number.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Wrapper class representing virtual and physical registers.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
StringRef - Represent a constant reference to a string, i.e.
unsigned getID() const
Return the register class ID number.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
FunctionPass * createHexagonPeephole()
void initializeHexagonPeepholePass(PassRegistry &)
DWARFExpression::Operation Op