49#define DEBUG_TYPE "aarch64-simd-scalar"
55 cl::desc(
"Force use of AdvSIMD scalar instructions everywhere"),
58STATISTIC(NumScalarInsnsUsed,
"Number of scalar instructions used");
59STATISTIC(NumCopiesDeleted,
"Number of cross-class copies deleted");
60STATISTIC(NumCopiesInserted,
"Number of cross-class copies inserted");
62#define AARCH64_ADVSIMD_NAME "AdvSIMD Scalar Operation Optimization"
96char AArch64AdvSIMDScalar::ID = 0;
102static
bool isGPR64(
unsigned Reg,
unsigned SubReg,
107 return MRI->getRegClass(Reg)->hasSuperClassEq(&AArch64::GPR64RegClass);
108 return AArch64::GPR64RegClass.contains(Reg);
114 return (
MRI->getRegClass(Reg)->hasSuperClassEq(&AArch64::FPR64RegClass) &&
116 (
MRI->getRegClass(Reg)->hasSuperClassEq(&AArch64::FPR128RegClass) &&
120 (AArch64::FPR128RegClass.
contains(Reg) &&
SubReg == AArch64::dsub);
130 if (
MI->getOpcode() == AArch64::FMOVDXr ||
131 MI->getOpcode() == AArch64::FMOVXDr)
132 return &
MI->getOperand(1);
135 if (
MI->getOpcode() == AArch64::UMOVvi64 &&
MI->getOperand(2).getImm() == 0) {
137 return &
MI->getOperand(1);
141 if (
MI->getOpcode() == AArch64::COPY) {
142 if (
isFPR64(
MI->getOperand(0).getReg(),
MI->getOperand(0).getSubReg(),
144 isGPR64(
MI->getOperand(1).getReg(),
MI->getOperand(1).getSubReg(),
MRI))
145 return &
MI->getOperand(1);
146 if (isGPR64(
MI->getOperand(0).getReg(),
MI->getOperand(0).getSubReg(),
148 isFPR64(
MI->getOperand(1).getReg(),
MI->getOperand(1).getSubReg(),
150 SubReg =
MI->getOperand(1).getSubReg();
151 return &
MI->getOperand(1);
167 case AArch64::ADDXrr:
168 return AArch64::ADDv1i64;
169 case AArch64::SUBXrr:
170 return AArch64::SUBv1i64;
171 case AArch64::ANDXrr:
172 return AArch64::ANDv8i8;
173 case AArch64::EORXrr:
174 return AArch64::EORv8i8;
175 case AArch64::ORRXrr:
176 return AArch64::ORRv8i8;
183 unsigned Opc =
MI.getOpcode();
190bool AArch64AdvSIMDScalar::isProfitableToTransform(
199 unsigned NumNewCopies = 3;
200 unsigned NumRemovableCopies = 0;
202 Register OrigSrc0 =
MI.getOperand(1).getReg();
203 Register OrigSrc1 =
MI.getOperand(2).getReg();
206 if (!
MRI->def_empty(OrigSrc0)) {
208 MRI->def_instr_begin(OrigSrc0);
209 assert(std::next(Def) ==
MRI->def_instr_end() &&
"Multiple def in SSA!");
216 if (MOSrc0 &&
MRI->hasOneNonDBGUse(OrigSrc0))
217 ++NumRemovableCopies;
219 if (!
MRI->def_empty(OrigSrc1)) {
221 MRI->def_instr_begin(OrigSrc1);
222 assert(std::next(Def) ==
MRI->def_instr_end() &&
"Multiple def in SSA!");
228 if (MOSrc1 &&
MRI->hasOneNonDBGUse(OrigSrc1))
229 ++NumRemovableCopies;
238 bool AllUsesAreCopies =
true;
240 Use =
MRI->use_instr_nodbg_begin(Dst),
241 E =
MRI->use_instr_nodbg_end();
245 ++NumRemovableCopies;
251 else if (
Use->getOpcode() == AArch64::INSERT_SUBREG ||
252 Use->getOpcode() == AArch64::INSvi64gpr)
255 AllUsesAreCopies =
false;
259 if (AllUsesAreCopies)
264 if (NumNewCopies <= NumRemovableCopies)
273 unsigned Dst,
unsigned Src,
bool IsKill) {
275 TII->get(AArch64::COPY), Dst)
285void AArch64AdvSIMDScalar::transformInstruction(
MachineInstr &
MI) {
289 unsigned OldOpc =
MI.getOpcode();
291 assert(OldOpc != NewOpc &&
"transform an instruction to itself?!");
294 Register OrigSrc0 =
MI.getOperand(1).getReg();
295 Register OrigSrc1 =
MI.getOperand(2).getReg();
296 unsigned Src0 = 0, SubReg0;
297 unsigned Src1 = 0, SubReg1;
298 bool KillSrc0 =
false, KillSrc1 =
false;
299 if (!
MRI->def_empty(OrigSrc0)) {
301 MRI->def_instr_begin(OrigSrc0);
302 assert(std::next(Def) ==
MRI->def_instr_end() &&
"Multiple def in SSA!");
308 KillSrc0 = MOSrc0->
isKill();
311 if (
MRI->hasOneNonDBGUse(OrigSrc0)) {
312 assert(MOSrc0 &&
"Can't delete copy w/o a valid original source!");
313 Def->eraseFromParent();
318 if (!
MRI->def_empty(OrigSrc1)) {
320 MRI->def_instr_begin(OrigSrc1);
321 assert(std::next(Def) ==
MRI->def_instr_end() &&
"Multiple def in SSA!");
327 KillSrc1 = MOSrc1->
isKill();
330 if (
MRI->hasOneNonDBGUse(OrigSrc1)) {
331 assert(MOSrc1 &&
"Can't delete copy w/o a valid original source!");
332 Def->eraseFromParent();
341 Src0 =
MRI->createVirtualRegister(&AArch64::FPR64RegClass);
347 Src1 =
MRI->createVirtualRegister(&AArch64::FPR64RegClass);
355 Register Dst =
MRI->createVirtualRegister(&AArch64::FPR64RegClass);
370 MI.eraseFromParent();
372 ++NumScalarInsnsUsed;
377 bool Changed =
false;
380 transformInstruction(
MI);
389 bool Changed =
false;
400 if (processMachineBasicBlock(&
MBB))
408 return new AArch64AdvSIMDScalar();
return AArch64::GPR64RegClass contains(Reg)
#define AARCH64_ADVSIMD_NAME
static MachineInstr * insertCopy(const TargetInstrInfo *TII, MachineInstr &MI, unsigned Dst, unsigned Src, bool IsKill)
static cl::opt< bool > TransformAll("aarch64-simd-scalar-force-all", cl::desc("Force use of AdvSIMD scalar instructions everywhere"), cl::init(false), cl::Hidden)
static bool isTransformable(const MachineInstr &MI)
static unsigned getTransformOpcode(unsigned Opc)
unsigned const MachineRegisterInfo * MRI
static bool isFPR64(unsigned Reg, unsigned SubReg, const MachineRegisterInfo *MRI)
static MachineOperand * getSrcFromCopy(MachineInstr *MI, const MachineRegisterInfo *MRI, unsigned &SubReg)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
const HexagonInstrInfo * TII
#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.
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
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 TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
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.
void setIsKill(bool Val=true)
Register getReg() const
getReg - Returns the register number.
defusechain_iterator - This class provides iterator support for machine operands in the function that...
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Wrapper class representing virtual and physical registers.
static constexpr bool isVirtualRegister(unsigned Reg)
Return true if the specified register number is in the virtual register namespace.
StringRef - Represent a constant reference to a string, i.e.
TargetInstrInfo - Interface to description of machine instruction set.
virtual const TargetInstrInfo * getInstrInfo() const
A Use represents the edge between a Value definition and its users.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
initializer< Ty > init(const Ty &Val)
NodeAddr< DefNode * > Def
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...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
unsigned getKillRegState(bool B)
FunctionPass * createAArch64AdvSIMDScalar()
static bool isProfitableToTransform(const Loop &L, const BranchInst *BI)