25#define DEBUG_TYPE "hexagon-abs"
30 "Number of Load instructions converted to absolute-set form");
32 "Number of Store instructions converted to absolute-set form");
46 return "Hexagon Generate Load/Store Set Absolute Address Instruction";
59 static bool isValidIndexedStore(
int &Opcode,
int &NewOpcode);
63char HexagonGenMemAbsolute::ID = 0;
66 "Hexagon Generate Load/Store Set Absolute Address Instruction",
70 if (skipFunction(Fn.getFunction()))
74 MRI = &Fn.getRegInfo();
75 TRI = Fn.getRegInfo().getTargetRegisterInfo();
78 getAnalysis<MachineDominatorTreeWrapperPass>().getDomTree();
86 int Opc =
MI->getOpcode();
87 if (
Opc != Hexagon::CONST32 &&
Opc != Hexagon::A2_tfrsi)
94 unsigned DstReg = MO.
getReg();
95 if (
MRI->use_nodbg_empty(DstReg))
99 use_iterator NextUseMI =
MRI->use_nodbg_begin(DstReg);
106 if (!IsLoad && !isValidIndexedStore(NextOpc, NewOpc))
112 unsigned BaseRegPos, ImmPos, RegPos;
115 RegPos = IsLoad ? 0 : 2;
117 bool IsGlobal =
MI->getOperand(1).isGlobal();
118 if (!
MI->getOperand(1).isImm() && !IsGlobal)
124 TII->getMemOperandWithOffset(*NextMI, BaseOp,
Offset, Scalable,
TRI);
127 if (!BaseOp || !BaseOp->
isReg())
133 unsigned BaseReg = BaseOp->
getReg();
134 if ((DstReg != BaseReg) || (
Offset != 0))
142 unsigned LoadStoreReg = MO0.
getReg();
146 if (LoadStoreReg == BaseReg)
152 bool Dominates =
true;
153 unsigned Counter = 0;
154 for (use_iterator
I = NextUseMI, E =
MRI->use_nodbg_end();
I != E; ++
I) {
160 if ((!Dominates) || (Counter < 3))
166 dbgs() <<
"Found a pair of instructions for absolute-set "
167 << (IsLoad ?
"load" :
"store") <<
"\n";
174 ++HexagonNumLoadAbsConversions;
176 TII->get(NewOpc), LoadStoreReg)
179 ++HexagonNumStoreAbsConversions;
181 TII->get(NewOpc), DstReg);
207bool HexagonGenMemAbsolute::isValidIndexedLoad(
int &
Opc,
int &NewOpc) {
211 case Hexagon::L2_loadrb_io:
212 NewOpc = Hexagon::L4_loadrb_ap;
214 case Hexagon::L2_loadrh_io:
215 NewOpc = Hexagon::L4_loadrh_ap;
217 case Hexagon::L2_loadri_io:
218 NewOpc = Hexagon::L4_loadri_ap;
220 case Hexagon::L2_loadrd_io:
221 NewOpc = Hexagon::L4_loadrd_ap;
223 case Hexagon::L2_loadruh_io:
224 NewOpc = Hexagon::L4_loadruh_ap;
226 case Hexagon::L2_loadrub_io:
227 NewOpc = Hexagon::L4_loadrub_ap;
236bool HexagonGenMemAbsolute::isValidIndexedStore(
int &
Opc,
int &NewOpc) {
240 case Hexagon::S2_storerd_io:
241 NewOpc = Hexagon::S4_storerd_ap;
243 case Hexagon::S2_storeri_io:
244 NewOpc = Hexagon::S4_storeri_ap;
246 case Hexagon::S2_storerh_io:
247 NewOpc = Hexagon::S4_storerh_ap;
249 case Hexagon::S2_storerb_io:
250 NewOpc = Hexagon::S4_storerb_ap;
264 return new HexagonGenMemAbsolute();
unsigned const MachineRegisterInfo * MRI
const HexagonInstrInfo * TII
static bool isValidIndexedLoad(const LoadSDNode *LD)
Register const TargetRegisterInfo * TRI
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
FunctionPass class - This class is used to implement most global optimizations.
bool getBaseAndOffsetPosition(const MachineInstr &MI, unsigned &BasePos, unsigned &OffsetPos) const override
For instructions with a base and offset, return the position of the base register and offset operands...
LLVM_ABI instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
Analysis pass which computes a MachineDominatorTree.
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
bool dominates(const MachineInstr *A, const MachineInstr *B) const
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 & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & addGlobalAddress(const GlobalValue *GV, int64_t Offset=0, unsigned TargetFlags=0) const
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
const MachineOperand & getOperand(unsigned i) const
MachineOperand class - Representation of each machine instruction operand.
void setSubReg(unsigned subReg)
unsigned getSubReg() const
const GlobalValue * getGlobal() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
unsigned getTargetFlags() const
Register getReg() const
getReg - Returns the register number.
int64_t getOffset() const
Return the offset from the symbol in this operand.
reg_begin/reg_end - Provide iteration support to walk over all definitions and uses of a register wit...
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
StringRef - Represent a constant reference to a string, i.e.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ Define
Register definition.
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.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
FunctionPass * createHexagonGenMemAbsolute()