LLVM 24.0.0git
AArch64MIPeepholeOpt.cpp
Go to the documentation of this file.
1//===- AArch64MIPeepholeOpt.cpp - AArch64 MI peephole optimization pass ---===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This pass performs below peephole optimizations on MIR level.
10//
11// 1. MOVi32imm + (ANDS?|EOR|ORR)Wrr ==> (AND|EOR|ORR)Wri + (ANDS?|EOR|ORR)Wri
12// MOVi64imm + (ANDS?|EOR|ORR)Xrr ==> (AND|EOR|ORR)Xri + (ANDS?|EOR|ORR)Xri
13//
14// 2. MOVi32imm + ADDWrr ==> ADDWRi + ADDWRi
15// MOVi64imm + ADDXrr ==> ADDXri + ADDXri
16//
17// 3. MOVi32imm + SUBWrr ==> SUBWRi + SUBWRi
18// MOVi64imm + SUBXrr ==> SUBXri + SUBXri
19//
20// The mov pseudo instruction could be expanded to multiple mov instructions
21// later. In this case, we could try to split the constant operand of mov
22// instruction into two immediates which can be directly encoded into
23// *Wri/*Xri instructions. It makes two AND/ADD/SUB instructions instead of
24// multiple `mov` + `and/add/sub` instructions.
25//
26// 4. Remove redundant ORRWrs which is generated by zero-extend.
27//
28// %3:gpr32 = ORRWrs $wzr, %2, 0
29// %4:gpr64 = SUBREG_TO_REG %3, %subreg.sub_32
30//
31// If AArch64's 32-bit form of instruction defines the source operand of
32// ORRWrs, we can remove the ORRWrs because the upper 32 bits of the source
33// operand are set to zero.
34//
35// 5. %reg = INSERT_SUBREG %reg(tied-def 0), %subreg, subidx
36// ==> %reg:subidx = SUBREG_TO_REG %subreg, subidx
37//
38// 6. %intermediate:gpr32 = COPY %src:fpr128
39// %dst:fpr128 = INSvi32gpr %dst_vec:fpr128, dst_index, %intermediate:gpr32
40// ==> %dst:fpr128 = INSvi32lane %dst_vec:fpr128, dst_index, %src:fpr128, 0
41//
42// In cases where a source FPR is copied to a GPR in order to be copied
43// to a destination FPR, we can directly copy the values between the FPRs,
44// eliminating the use of the Integer unit. When we match a pattern of
45// INSvi[X]gpr that is preceded by a chain of COPY instructions from a FPR
46// source, we use the INSvi[X]lane to replace the COPY & INSvi[X]gpr
47// instructions.
48//
49// 7. If MI sets zero for high 64-bits implicitly, remove `mov 0` for high
50// 64-bits. For example,
51//
52// %1:fpr64 = nofpexcept FCVTNv4i16 %0:fpr128, implicit $fpcr
53// %2:fpr64 = MOVID 0
54// %4:fpr128 = IMPLICIT_DEF
55// %3:fpr128 = INSERT_SUBREG %4:fpr128(tied-def 0), %2:fpr64, %subreg.dsub
56// %6:fpr128 = IMPLICIT_DEF
57// %5:fpr128 = INSERT_SUBREG %6:fpr128(tied-def 0), %1:fpr64, %subreg.dsub
58// %7:fpr128 = INSvi64lane %5:fpr128(tied-def 0), 1, %3:fpr128, 0
59// ==>
60// %1:fpr64 = nofpexcept FCVTNv4i16 %0:fpr128, implicit $fpcr
61// %6:fpr128 = IMPLICIT_DEF
62// %7:fpr128 = INSERT_SUBREG %6:fpr128(tied-def 0), %1:fpr64, %subreg.dsub
63//
64// 8. Remove redundant CSELs that select between identical registers, by
65// replacing them with unconditional moves.
66//
67// 9. Replace UBFMXri with UBFMWri if the instruction is equivalent to a 32 bit
68// LSR or LSL alias of UBFM.
69//
70//===----------------------------------------------------------------------===//
71
72#include "AArch64ExpandImm.h"
73#include "AArch64InstrInfo.h"
77
78using namespace llvm;
79
80#define DEBUG_TYPE "aarch64-mi-peephole-opt"
81
82namespace {
83
84class AArch64MIPeepholeOptImpl {
85public:
86 const AArch64InstrInfo *TII;
88 MachineLoopInfo *MLI;
90
91 explicit AArch64MIPeepholeOptImpl(MachineLoopInfo &MLI) : MLI(&MLI) {}
92
93 bool run(MachineFunction &MF);
94
95private:
96 using OpcodePair = std::pair<unsigned, unsigned>;
97 template <typename T>
98 using SplitAndOpcFunc =
99 std::function<std::optional<OpcodePair>(T, unsigned, T &, T &)>;
100 using BuildMIFunc =
101 std::function<void(MachineInstr &, OpcodePair, unsigned, unsigned,
103
104 /// For instructions where an immediate operand could be split into two
105 /// separate immediate instructions, use the splitTwoPartImm two handle the
106 /// optimization.
107 ///
108 /// To implement, the following function types must be passed to
109 /// splitTwoPartImm. A SplitAndOpcFunc must be implemented that determines if
110 /// splitting the immediate is valid and returns the associated new opcode. A
111 /// BuildMIFunc must be implemented to build the two immediate instructions.
112 ///
113 /// Example Pattern (where IMM would require 2+ MOV instructions):
114 /// %dst = <Instr>rr %src IMM [...]
115 /// becomes:
116 /// %tmp = <Instr>ri %src (encode half IMM) [...]
117 /// %dst = <Instr>ri %tmp (encode half IMM) [...]
118 template <typename T>
119 bool splitTwoPartImm(MachineInstr &MI,
120 SplitAndOpcFunc<T> SplitAndOpc, BuildMIFunc BuildInstr);
121
122 bool checkMovImmInstr(MachineInstr &MI, MachineInstr *&MovMI,
123 MachineInstr *&SubregToRegMI);
124
125 template <typename T>
126 bool visitADDSUB(unsigned PosOpc, unsigned NegOpc, MachineInstr &MI);
127 template <typename T>
128 bool visitADDSSUBS(OpcodePair PosOpcs, OpcodePair NegOpcs, MachineInstr &MI);
129
130 // Strategy used to split logical immediate bitmasks.
131 enum class SplitStrategy {
132 Intersect,
133 Disjoint,
134 };
135 template <typename T>
136 bool trySplitLogicalImm(unsigned Opc, MachineInstr &MI,
137 SplitStrategy Strategy, unsigned OtherOpc = 0);
138 bool visitORR(MachineInstr &MI);
139 bool visitCSEL(MachineInstr &MI);
140 bool visitINSERT(MachineInstr &MI);
141 bool visitINSviGPR(MachineInstr &MI, unsigned Opc);
142 bool visitINSvi64lane(MachineInstr &MI);
143 bool visitFMOVDr(MachineInstr &MI);
144 bool visitUBFMXri(MachineInstr &MI);
145 bool visitCopy(MachineInstr &MI);
146};
147
148struct AArch64MIPeepholeOptLegacy : public MachineFunctionPass {
149 static char ID;
150
151 AArch64MIPeepholeOptLegacy() : MachineFunctionPass(ID) {}
152
153 bool runOnMachineFunction(MachineFunction &MF) override;
154
155 StringRef getPassName() const override {
156 return "AArch64 MI Peephole Optimization pass";
157 }
158
159 void getAnalysisUsage(AnalysisUsage &AU) const override {
160 AU.setPreservesCFG();
163 }
164};
165
166char AArch64MIPeepholeOptLegacy::ID = 0;
167
168} // end anonymous namespace
169
170INITIALIZE_PASS(AArch64MIPeepholeOptLegacy, "aarch64-mi-peephole-opt",
171 "AArch64 MI Peephole Optimization", false, false)
172
173template <typename T>
174static bool splitBitmaskImm(T Imm, unsigned RegSize, T &Imm1Enc, T &Imm2Enc) {
175 T UImm = static_cast<T>(Imm);
176 assert(UImm && (UImm != ~static_cast<T>(0)) && "Invalid immediate!");
177
178 // The bitmask immediate consists of consecutive ones. Let's say there is
179 // constant 0b00000000001000000000010000000000 which does not consist of
180 // consecutive ones. We can split it in to two bitmask immediate like
181 // 0b00000000001111111111110000000000 and 0b11111111111000000000011111111111.
182 // If we do AND with these two bitmask immediate, we can see original one.
184 unsigned HighestBitSet = Log2_64(UImm);
185
186 // Create a mask which is filled with one from the position of lowest bit set
187 // to the position of highest bit set.
188 T NewImm1 = (static_cast<T>(2) << HighestBitSet) -
189 (static_cast<T>(1) << LowestBitSet);
190 // Create a mask which is filled with one outside the position of lowest bit
191 // set and the position of highest bit set.
193
194 // If the split value is not valid bitmask immediate, do not split this
195 // constant.
197 return false;
198
201 return true;
202}
203
204template <typename T>
206 T &Imm2Enc) {
207 assert(Imm && (Imm != ~static_cast<T>(0)) && "Invalid immediate!");
208
209 // Try to split a bitmask of the form 0b00000000011000000000011110000000 into
210 // two disjoint masks such as 0b00000000011000000000000000000000 and
211 // 0b00000000000000000000011110000000 where the inclusive/exclusive OR of the
212 // new masks match the original mask.
214 unsigned LowestGapBitUnset =
216
217 // Create a mask for the least significant group of consecutive ones.
218 assert(LowestGapBitUnset < sizeof(T) * CHAR_BIT && "Undefined behaviour!");
219 T NewImm1 = (static_cast<T>(1) << LowestGapBitUnset) -
220 (static_cast<T>(1) << LowestBitSet);
221 // Create a disjoint mask for the remaining ones.
222 T NewImm2 = Imm & ~NewImm1;
223
224 // Do not split if NewImm2 is not a valid bitmask immediate.
226 return false;
227
230 return true;
231}
232
233template <typename T>
234bool AArch64MIPeepholeOptImpl::trySplitLogicalImm(unsigned Opc,
236 SplitStrategy Strategy,
237 unsigned OtherOpc) {
238 // Try below transformations.
239 //
240 // MOVi32imm + (ANDS?|EOR|ORR)Wrr ==> (AND|EOR|ORR)Wri + (ANDS?|EOR|ORR)Wri
241 // MOVi64imm + (ANDS?|EOR|ORR)Xrr ==> (AND|EOR|ORR)Xri + (ANDS?|EOR|ORR)Xri
242 //
243 // The mov pseudo instruction could be expanded to multiple mov instructions
244 // later. Let's try to split the constant operand of mov instruction into two
245 // bitmask immediates based on the given split strategy. It makes only two
246 // logical instructions instead of multiple mov + logic instructions.
247
248 return splitTwoPartImm<T>(
249 MI,
250 [Opc, Strategy, OtherOpc](T Imm, unsigned RegSize, T &Imm0,
251 T &Imm1) -> std::optional<OpcodePair> {
252 // If this immediate is already a suitable bitmask, don't split it.
253 // TODO: Should we just combine the two instructions in this case?
255 return std::nullopt;
256
257 // If this immediate can be handled by one instruction, don't split it.
260 if (Insn.size() == 1)
261 return std::nullopt;
262
263 bool SplitSucc = false;
264 switch (Strategy) {
265 case SplitStrategy::Intersect:
266 SplitSucc = splitBitmaskImm(Imm, RegSize, Imm0, Imm1);
267 break;
268 case SplitStrategy::Disjoint:
269 SplitSucc = splitDisjointBitmaskImm(Imm, RegSize, Imm0, Imm1);
270 break;
271 }
272 if (SplitSucc)
273 return std::make_pair(Opc, !OtherOpc ? Opc : OtherOpc);
274 return std::nullopt;
275 },
276 [&TII = TII](MachineInstr &MI, OpcodePair Opcode, unsigned Imm0,
277 unsigned Imm1, Register SrcReg, Register NewTmpReg,
278 Register NewDstReg) {
279 DebugLoc DL = MI.getDebugLoc();
280 MachineBasicBlock *MBB = MI.getParent();
281 BuildMI(*MBB, MI, DL, TII->get(Opcode.first), NewTmpReg)
282 .addReg(SrcReg)
283 .addImm(Imm0);
284 BuildMI(*MBB, MI, DL, TII->get(Opcode.second), NewDstReg)
285 .addReg(NewTmpReg)
286 .addImm(Imm1);
287 });
288}
289
290bool AArch64MIPeepholeOptImpl::visitORR(MachineInstr &MI) {
291 // Check this ORR comes from below zero-extend pattern.
292 //
293 // def : Pat<(i64 (zext GPR32:$src)),
294 // (SUBREG_TO_REG (ORRWrs WZR, GPR32:$src, 0), sub_32)>;
295 if (MI.getOperand(3).getImm() != 0)
296 return false;
297
298 if (MI.getOperand(1).getReg() != AArch64::WZR)
299 return false;
300
301 if (MI.getOperand(2).getSubReg())
302 return false;
303
304 MachineInstr *SrcMI = MRI->getUniqueVRegDef(MI.getOperand(2).getReg());
305 if (!SrcMI)
306 return false;
307
308 // From https://developer.arm.com/documentation/dui0801/b/BABBGCAC
309 //
310 // When you use the 32-bit form of an instruction, the upper 32 bits of the
311 // source registers are ignored and the upper 32 bits of the destination
312 // register are set to zero.
313 //
314 // If AArch64's 32-bit form of instruction defines the source operand of
315 // zero-extend, we do not need the zero-extend. Let's check the MI's opcode is
316 // real AArch64 instruction and if it is not, do not process the opcode
317 // conservatively.
318 if (SrcMI->getOpcode() == TargetOpcode::COPY &&
319 SrcMI->getOperand(1).getReg().isVirtual()) {
320 const TargetRegisterClass *RC =
321 MRI->getRegClass(SrcMI->getOperand(1).getReg());
322
323 // A COPY from an FPR will become a FMOVSWr, so do so now so that we know
324 // that the upper bits are zero.
325 if (RC != &AArch64::FPR32RegClass &&
326 ((RC != &AArch64::FPR64RegClass && RC != &AArch64::FPR128RegClass &&
327 RC != &AArch64::ZPRRegClass) ||
328 SrcMI->getOperand(1).getSubReg() != AArch64::ssub))
329 return false;
330 Register CpySrc;
331 if (SrcMI->getOperand(1).getSubReg() == AArch64::ssub) {
332 CpySrc = MRI->createVirtualRegister(&AArch64::FPR32RegClass);
333 BuildMI(*SrcMI->getParent(), SrcMI, SrcMI->getDebugLoc(),
334 TII->get(TargetOpcode::COPY), CpySrc)
335 .add(SrcMI->getOperand(1));
336 } else {
337 CpySrc = SrcMI->getOperand(1).getReg();
338 }
339 BuildMI(*SrcMI->getParent(), SrcMI, SrcMI->getDebugLoc(),
340 TII->get(AArch64::FMOVSWr), SrcMI->getOperand(0).getReg())
341 .addReg(CpySrc);
342 SrcMI->eraseFromParent();
343 }
344 else if (SrcMI->getOpcode() <= TargetOpcode::GENERIC_OP_END)
345 return false;
346
347 Register DefReg = MI.getOperand(0).getReg();
348 Register SrcReg = MI.getOperand(2).getReg();
349 MRI->replaceRegWith(DefReg, SrcReg);
350 MRI->clearKillFlags(SrcReg);
351 LLVM_DEBUG(dbgs() << "Removed: " << MI << "\n");
352 MI.eraseFromParent();
353
354 return true;
355}
356
357bool AArch64MIPeepholeOptImpl::visitCSEL(MachineInstr &MI) {
358 // Replace CSEL with MOV when both inputs are the same register.
359 if (MI.getOperand(1).getReg() != MI.getOperand(2).getReg())
360 return false;
361
362 auto ZeroReg =
363 MI.getOpcode() == AArch64::CSELXr ? AArch64::XZR : AArch64::WZR;
364 auto OrOpcode =
365 MI.getOpcode() == AArch64::CSELXr ? AArch64::ORRXrs : AArch64::ORRWrs;
366
367 BuildMI(*MI.getParent(), MI, MI.getDebugLoc(), TII->get(OrOpcode))
368 .addReg(MI.getOperand(0).getReg(), RegState::Define)
369 .addReg(ZeroReg)
370 .addReg(MI.getOperand(1).getReg())
371 .addImm(0);
372
373 MI.eraseFromParent();
374 return true;
375}
376
377bool AArch64MIPeepholeOptImpl::visitINSERT(MachineInstr &MI) {
378 // Check this INSERT_SUBREG comes from below zero-extend pattern.
379 //
380 // From %reg = INSERT_SUBREG %reg(tied-def 0), %subreg, subidx
381 // To %reg:subidx = SUBREG_TO_REG %subreg, subidx
382 //
383 // We're assuming the first operand to INSERT_SUBREG is irrelevant because a
384 // COPY would destroy the upper part of the register anyway
385 if (!MI.isRegTiedToDefOperand(1))
386 return false;
387
388 Register DstReg = MI.getOperand(0).getReg();
389 const TargetRegisterClass *RC = MRI->getRegClass(DstReg);
390 MachineInstr *SrcMI = MRI->getUniqueVRegDef(MI.getOperand(2).getReg());
391 if (!SrcMI)
392 return false;
393
394 // From https://developer.arm.com/documentation/dui0801/b/BABBGCAC
395 //
396 // When you use the 32-bit form of an instruction, the upper 32 bits of the
397 // source registers are ignored and the upper 32 bits of the destination
398 // register are set to zero.
399 //
400 // If AArch64's 32-bit form of instruction defines the source operand of
401 // zero-extend, we do not need the zero-extend. Let's check the MI's opcode is
402 // real AArch64 instruction and if it is not, do not process the opcode
403 // conservatively.
404 if ((SrcMI->getOpcode() <= TargetOpcode::GENERIC_OP_END) ||
405 !AArch64::GPR64allRegClass.hasSubClassEq(RC))
406 return false;
407
408 // Build a SUBREG_TO_REG instruction
409 MachineInstr *SubregMI =
410 BuildMI(*MI.getParent(), MI, MI.getDebugLoc(),
411 TII->get(TargetOpcode::SUBREG_TO_REG), DstReg)
412 .add(MI.getOperand(2))
413 .add(MI.getOperand(3));
414 LLVM_DEBUG(dbgs() << MI << " replace by:\n: " << *SubregMI << "\n");
415 (void)SubregMI;
416 MI.eraseFromParent();
417
418 return true;
419}
420
421template <typename T>
422static bool splitAddSubImm(T Imm, unsigned RegSize, T &Imm0, T &Imm1) {
423 // The immediate must be in the form of ((imm0 << 12) + imm1), in which both
424 // imm0 and imm1 are non-zero 12-bit unsigned int.
425 if ((Imm & 0xfff000) == 0 || (Imm & 0xfff) == 0 ||
426 (Imm & ~static_cast<T>(0xffffff)) != 0)
427 return false;
428
429 // The immediate can not be composed via a single instruction.
432 if (Insn.size() == 1)
433 return false;
434
435 // Split Imm into (Imm0 << 12) + Imm1;
436 Imm0 = (Imm >> 12) & 0xfff;
437 Imm1 = Imm & 0xfff;
438 return true;
439}
440
441template <typename T>
442bool AArch64MIPeepholeOptImpl::visitADDSUB(unsigned PosOpc, unsigned NegOpc,
443 MachineInstr &MI) {
444 // Try below transformation.
445 //
446 // ADDWrr X, MOVi32imm ==> ADDWri + ADDWri
447 // ADDXrr X, MOVi64imm ==> ADDXri + ADDXri
448 //
449 // SUBWrr X, MOVi32imm ==> SUBWri + SUBWri
450 // SUBXrr X, MOVi64imm ==> SUBXri + SUBXri
451 //
452 // The mov pseudo instruction could be expanded to multiple mov instructions
453 // later. Let's try to split the constant operand of mov instruction into two
454 // legal add/sub immediates. It makes only two ADD/SUB instructions instead of
455 // multiple `mov` + `and/sub` instructions.
456
457 // We can sometimes have ADDWrr WZR, MULi32imm that have not been constant
458 // folded. Make sure that we don't generate invalid instructions that use XZR
459 // in those cases.
460 if (MI.getOperand(1).getReg() == AArch64::XZR ||
461 MI.getOperand(1).getReg() == AArch64::WZR)
462 return false;
463
464 return splitTwoPartImm<T>(
465 MI,
466 [PosOpc, NegOpc](T Imm, unsigned RegSize, T &Imm0,
467 T &Imm1) -> std::optional<OpcodePair> {
468 if (splitAddSubImm(Imm, RegSize, Imm0, Imm1))
469 return std::make_pair(PosOpc, PosOpc);
470 if (splitAddSubImm(-Imm, RegSize, Imm0, Imm1))
471 return std::make_pair(NegOpc, NegOpc);
472 return std::nullopt;
473 },
474 [&TII = TII](MachineInstr &MI, OpcodePair Opcode, unsigned Imm0,
475 unsigned Imm1, Register SrcReg, Register NewTmpReg,
476 Register NewDstReg) {
477 DebugLoc DL = MI.getDebugLoc();
478 MachineBasicBlock *MBB = MI.getParent();
479 BuildMI(*MBB, MI, DL, TII->get(Opcode.first), NewTmpReg)
480 .addReg(SrcReg)
481 .addImm(Imm0)
482 .addImm(12);
483 BuildMI(*MBB, MI, DL, TII->get(Opcode.second), NewDstReg)
484 .addReg(NewTmpReg)
485 .addImm(Imm1)
486 .addImm(0);
487 });
488}
489
490template <typename T>
491bool AArch64MIPeepholeOptImpl::visitADDSSUBS(OpcodePair PosOpcs,
492 OpcodePair NegOpcs,
493 MachineInstr &MI) {
494 // Try the same transformation as ADDSUB but with additional requirement
495 // that the condition code usages are only for Equal and Not Equal
496
497 if (MI.getOperand(1).getReg() == AArch64::XZR ||
498 MI.getOperand(1).getReg() == AArch64::WZR)
499 return false;
500
501 return splitTwoPartImm<T>(
502 MI,
503 [PosOpcs, NegOpcs, &MI, &TRI = TRI,
504 &MRI = MRI](T Imm, unsigned RegSize, T &Imm0,
505 T &Imm1) -> std::optional<OpcodePair> {
506 OpcodePair OP;
507 if (splitAddSubImm(Imm, RegSize, Imm0, Imm1))
508 OP = PosOpcs;
509 else if (splitAddSubImm(-Imm, RegSize, Imm0, Imm1))
510 OP = NegOpcs;
511 else
512 return std::nullopt;
513 // Check conditional uses last since it is expensive for scanning
514 // proceeding instructions
515 MachineInstr *SrcMI = MRI->getVRegDef(MI.getOperand(1).getReg());
516 if (!SrcMI)
517 return std::nullopt;
518 std::optional<UsedNZCV> NZCVUsed = examineCFlagsUse(*SrcMI, MI, *TRI);
519 if (!NZCVUsed || NZCVUsed->C || NZCVUsed->V)
520 return std::nullopt;
521 return OP;
522 },
523 [&TII = TII](MachineInstr &MI, OpcodePair Opcode, unsigned Imm0,
524 unsigned Imm1, Register SrcReg, Register NewTmpReg,
525 Register NewDstReg) {
526 DebugLoc DL = MI.getDebugLoc();
527 MachineBasicBlock *MBB = MI.getParent();
528 BuildMI(*MBB, MI, DL, TII->get(Opcode.first), NewTmpReg)
529 .addReg(SrcReg)
530 .addImm(Imm0)
531 .addImm(12);
532 BuildMI(*MBB, MI, DL, TII->get(Opcode.second), NewDstReg)
533 .addReg(NewTmpReg)
534 .addImm(Imm1)
535 .addImm(0);
536 });
537}
538
539// Checks if the corresponding MOV immediate instruction is applicable for
540// this peephole optimization.
541bool AArch64MIPeepholeOptImpl::checkMovImmInstr(MachineInstr &MI,
542 MachineInstr *&MovMI,
543 MachineInstr *&SubregToRegMI) {
544 // Check whether current MBB is in loop and the AND is loop invariant.
545 MachineBasicBlock *MBB = MI.getParent();
546 MachineLoop *L = MLI->getLoopFor(MBB);
547 if (L && !L->isLoopInvariant(MI))
548 return false;
549
550 // Check whether current MI's operand is MOV with immediate.
551 MovMI = MRI->getUniqueVRegDef(MI.getOperand(2).getReg());
552 if (!MovMI)
553 return false;
554
555 // If it is SUBREG_TO_REG, check its operand.
556 SubregToRegMI = nullptr;
557 if (MovMI->getOpcode() == TargetOpcode::SUBREG_TO_REG) {
558 SubregToRegMI = MovMI;
559 MovMI = MRI->getUniqueVRegDef(MovMI->getOperand(1).getReg());
560 if (!MovMI)
561 return false;
562 }
563
564 if (MovMI->getOpcode() != AArch64::MOVi32imm &&
565 MovMI->getOpcode() != AArch64::MOVi64imm)
566 return false;
567
568 // If the MOV has multiple uses, do not split the immediate because it causes
569 // more instructions.
570 if (!MRI->hasOneUse(MovMI->getOperand(0).getReg()))
571 return false;
572 if (SubregToRegMI && !MRI->hasOneUse(SubregToRegMI->getOperand(0).getReg()))
573 return false;
574
575 // It is OK to perform this peephole optimization.
576 return true;
577}
578
579template <typename T>
580bool AArch64MIPeepholeOptImpl::splitTwoPartImm(MachineInstr &MI,
581 SplitAndOpcFunc<T> SplitAndOpc,
582 BuildMIFunc BuildInstr) {
583 unsigned RegSize = sizeof(T) * 8;
584 assert((RegSize == 32 || RegSize == 64) &&
585 "Invalid RegSize for legal immediate peephole optimization");
586
587 // Perform several essential checks against current MI.
588 MachineInstr *MovMI, *SubregToRegMI;
589 if (!checkMovImmInstr(MI, MovMI, SubregToRegMI))
590 return false;
591
592 // Split the immediate to Imm0 and Imm1, and calculate the Opcode.
593 T Imm = static_cast<T>(MovMI->getOperand(1).getImm()), Imm0, Imm1;
594 // For the 32 bit form of instruction, the upper 32 bits of the destination
595 // register are set to zero. If there is SUBREG_TO_REG, set the upper 32 bits
596 // of Imm to zero. This is essential if the Immediate value was a negative
597 // number since it was sign extended when we assign to the 64-bit Imm.
598 if (SubregToRegMI)
599 Imm &= 0xFFFFFFFF;
600 OpcodePair Opcode;
601 if (auto R = SplitAndOpc(Imm, RegSize, Imm0, Imm1))
602 Opcode = *R;
603 else
604 return false;
605
606 // Create new MIs using the first and second opcodes. Opcodes might differ for
607 // flag setting operations that should only set flags on second instruction.
608 // NewTmpReg = Opcode.first SrcReg Imm0
609 // NewDstReg = Opcode.second NewTmpReg Imm1
610
611 // Determine register classes for destinations and register operands
612 const TargetRegisterClass *FirstInstrDstRC =
613 TII->getRegClass(TII->get(Opcode.first), 0);
614 const TargetRegisterClass *FirstInstrOperandRC =
615 TII->getRegClass(TII->get(Opcode.first), 1);
616 const TargetRegisterClass *SecondInstrDstRC =
617 (Opcode.first == Opcode.second)
618 ? FirstInstrDstRC
619 : TII->getRegClass(TII->get(Opcode.second), 0);
620 const TargetRegisterClass *SecondInstrOperandRC =
621 (Opcode.first == Opcode.second)
622 ? FirstInstrOperandRC
623 : TII->getRegClass(TII->get(Opcode.second), 1);
624
625 // Get old registers destinations and new register destinations
626 Register DstReg = MI.getOperand(0).getReg();
627 Register SrcReg = MI.getOperand(1).getReg();
628 Register NewTmpReg = MRI->createVirtualRegister(FirstInstrDstRC);
629 // In the situation that DstReg is not Virtual (likely WZR or XZR), we want to
630 // reuse that same destination register.
631 Register NewDstReg = DstReg.isVirtual()
632 ? MRI->createVirtualRegister(SecondInstrDstRC)
633 : DstReg;
634
635 // Constrain registers based on their new uses
636 MRI->constrainRegClass(SrcReg, FirstInstrOperandRC);
637 MRI->constrainRegClass(NewTmpReg, SecondInstrOperandRC);
638 if (DstReg != NewDstReg)
639 MRI->constrainRegClass(NewDstReg, MRI->getRegClass(DstReg));
640
641 // Call the delegating operation to build the instruction
642 BuildInstr(MI, Opcode, Imm0, Imm1, SrcReg, NewTmpReg, NewDstReg);
643
644 // replaceRegWith changes MI's definition register. Keep it for SSA form until
645 // deleting MI. Only if we made a new destination register.
646 if (DstReg != NewDstReg) {
647 MRI->replaceRegWith(DstReg, NewDstReg);
648 MI.getOperand(0).setReg(DstReg);
649 }
650
651 // Record the MIs need to be removed.
652 MI.eraseFromParent();
653 if (SubregToRegMI)
654 SubregToRegMI->eraseFromParent();
655 MovMI->eraseFromParent();
656
657 return true;
658}
659
660bool AArch64MIPeepholeOptImpl::visitINSviGPR(MachineInstr &MI, unsigned Opc) {
661 // Check if this INSvi[X]gpr comes from COPY of a source FPR128
662 //
663 // From
664 // %intermediate1:gpr64 = COPY %src:fpr128
665 // %intermediate2:gpr32 = COPY %intermediate1:gpr64
666 // %dst:fpr128 = INSvi[X]gpr %dst_vec:fpr128, dst_index, %intermediate2:gpr32
667 // To
668 // %dst:fpr128 = INSvi[X]lane %dst_vec:fpr128, dst_index, %src:fpr128,
669 // src_index
670 // where src_index = 0, X = [8|16|32|64]
671
672 MachineInstr *SrcMI = MRI->getUniqueVRegDef(MI.getOperand(3).getReg());
673
674 // For a chain of COPY instructions, find the initial source register
675 // and check if it's an FPR128
676 while (true) {
677 if (!SrcMI || SrcMI->getOpcode() != TargetOpcode::COPY)
678 return false;
679
680 if (!SrcMI->getOperand(1).getReg().isVirtual())
681 return false;
682
683 if (MRI->getRegClass(SrcMI->getOperand(1).getReg()) ==
684 &AArch64::FPR128RegClass) {
685 break;
686 }
687 SrcMI = MRI->getUniqueVRegDef(SrcMI->getOperand(1).getReg());
688 }
689
690 Register DstReg = MI.getOperand(0).getReg();
691 Register SrcReg = SrcMI->getOperand(1).getReg();
692 MachineInstr *INSvilaneMI =
693 BuildMI(*MI.getParent(), MI, MI.getDebugLoc(), TII->get(Opc), DstReg)
694 .add(MI.getOperand(1))
695 .add(MI.getOperand(2))
696 .addUse(SrcReg, getRegState(SrcMI->getOperand(1)))
697 .addImm(0);
698
699 LLVM_DEBUG(dbgs() << MI << " replace by:\n: " << *INSvilaneMI << "\n");
700 (void)INSvilaneMI;
701 MI.eraseFromParent();
702 return true;
703}
704
705// All instructions that set a FPR64 will implicitly zero the top bits of the
706// register. When the def is expressed as a COPY from a GPR, turn it into an
707// explicit FMOV so it cannot be elided later in further passes.
710 const AArch64InstrInfo *TII) {
711 if (!MI->getOperand(0).isReg() || !MI->getOperand(0).isDef())
712 return false;
713 const TargetRegisterClass *RC = MRI->getRegClass(MI->getOperand(0).getReg());
714 if (RC != &AArch64::FPR64RegClass)
715 return false;
716 if (MI->getOpcode() == TargetOpcode::COPY) {
717 MachineOperand &SrcOp = MI->getOperand(1);
718 if (!SrcOp.isReg())
719 return false;
720 if (SrcOp.getSubReg())
721 return false;
722 Register SrcReg = SrcOp.getReg();
723 auto IsGPR64Like = [&]() -> bool {
724 if (SrcReg.isVirtual())
725 return AArch64::GPR64allRegClass.hasSubClassEq(
726 MRI->getRegClass(SrcReg));
727 return AArch64::GPR64allRegClass.contains(SrcReg);
728 };
729 if (!IsGPR64Like())
730 return false;
731 assert(TII && "Expected InstrInfo when materializing COPYs");
732 // FMOVXDr insists on strict GPR64 operands, so fix up the COPY source.
733 MachineOperand &SrcMO = MI->getOperand(1);
734 bool SrcKill = SrcMO.isKill();
735 if (SrcReg.isVirtual()) {
736 if (MRI->getRegClass(SrcReg) != &AArch64::GPR64RegClass) {
737 // Pass the value through a temporary GPR64 vreg to satisfy the
738 // verifier.
739 Register NewSrc = MRI->createVirtualRegister(&AArch64::GPR64RegClass);
740 BuildMI(*MI->getParent(), MI, MI->getDebugLoc(),
741 TII->get(TargetOpcode::COPY), NewSrc)
742 .addReg(SrcReg, getKillRegState(SrcKill));
743 SrcReg = NewSrc;
744 SrcKill = true;
745 }
746 } else if (!AArch64::GPR64RegClass.contains(SrcReg)) {
747 return false;
748 }
749 SrcMO.setReg(SrcReg);
750 SrcMO.setSubReg(0);
751 SrcMO.setIsKill(SrcKill);
752 // Replace the COPY with an explicit FMOV so the zeroing behaviour stays
753 // visible.
754 MI->setDesc(TII->get(AArch64::FMOVXDr));
755 return true;
756 }
757 return MI->getOpcode() > TargetOpcode::GENERIC_OP_END;
758}
759
760bool AArch64MIPeepholeOptImpl::visitINSvi64lane(MachineInstr &MI) {
761 // Check the MI for low 64-bits sets zero for high 64-bits implicitly.
762 // We are expecting below case.
763 //
764 // %1:fpr64 = nofpexcept FCVTNv4i16 %0:fpr128, implicit $fpcr
765 // %6:fpr128 = IMPLICIT_DEF
766 // %5:fpr128 = INSERT_SUBREG %6:fpr128(tied-def 0), killed %1:fpr64, %subreg.dsub
767 // %7:fpr128 = INSvi64lane %5:fpr128(tied-def 0), 1, killed %3:fpr128, 0
768 MachineInstr *Low64MI = MRI->getVRegDef(MI.getOperand(1).getReg());
769 if (!Low64MI || Low64MI->getOpcode() != AArch64::INSERT_SUBREG)
770 return false;
771 Low64MI = MRI->getUniqueVRegDef(Low64MI->getOperand(2).getReg());
772 if (!Low64MI || !is64bitDefwithZeroHigh64bit(Low64MI, MRI, TII))
773 return false;
774
775 // Check there is `mov 0` MI for high 64-bits.
776 // We are expecting below cases.
777 //
778 // %2:fpr64 = MOVID 0
779 // %4:fpr128 = IMPLICIT_DEF
780 // %3:fpr128 = INSERT_SUBREG %4:fpr128(tied-def 0), killed %2:fpr64, %subreg.dsub
781 // %7:fpr128 = INSvi64lane %5:fpr128(tied-def 0), 1, killed %3:fpr128, 0
782 // or
783 // %5:fpr128 = MOVIv2d_ns 0
784 // %6:fpr64 = COPY %5.dsub:fpr128
785 // %8:fpr128 = IMPLICIT_DEF
786 // %7:fpr128 = INSERT_SUBREG %8:fpr128(tied-def 0), killed %6:fpr64, %subreg.dsub
787 // %11:fpr128 = INSvi64lane %9:fpr128(tied-def 0), 1, killed %7:fpr128, 0
788 MachineInstr *High64MI = MRI->getUniqueVRegDef(MI.getOperand(3).getReg());
789 if (!High64MI || High64MI->getOpcode() != AArch64::INSERT_SUBREG)
790 return false;
791 High64MI = MRI->getUniqueVRegDef(High64MI->getOperand(2).getReg());
792 if (High64MI && High64MI->getOpcode() == TargetOpcode::COPY)
793 High64MI = MRI->getUniqueVRegDef(High64MI->getOperand(1).getReg());
794 if (!High64MI || (High64MI->getOpcode() != AArch64::MOVID &&
795 High64MI->getOpcode() != AArch64::MOVIv2d_ns))
796 return false;
797 if (High64MI->getOperand(1).getImm() != 0)
798 return false;
799
800 // Let's remove MIs for high 64-bits.
801 Register OldDef = MI.getOperand(0).getReg();
802 Register NewDef = MI.getOperand(1).getReg();
803 LLVM_DEBUG(dbgs() << "Removing: " << MI << "\n");
804 MRI->constrainRegClass(NewDef, MRI->getRegClass(OldDef));
805 MRI->replaceRegWith(OldDef, NewDef);
806 MRI->clearKillFlags(NewDef);
807 MI.eraseFromParent();
808
809 return true;
810}
811
812bool AArch64MIPeepholeOptImpl::visitFMOVDr(MachineInstr &MI) {
813 // An FMOVDr sets the high 64-bits to zero implicitly, similar to ORR for GPR.
814 MachineInstr *Low64MI = MRI->getUniqueVRegDef(MI.getOperand(1).getReg());
815 if (!Low64MI || !is64bitDefwithZeroHigh64bit(Low64MI, MRI, TII))
816 return false;
817
818 // Let's remove MIs for high 64-bits.
819 Register OldDef = MI.getOperand(0).getReg();
820 Register NewDef = MI.getOperand(1).getReg();
821 LLVM_DEBUG(dbgs() << "Removing: " << MI << "\n");
822 MRI->clearKillFlags(OldDef);
823 MRI->clearKillFlags(NewDef);
824 MRI->constrainRegClass(NewDef, MRI->getRegClass(OldDef));
825 MRI->replaceRegWith(OldDef, NewDef);
826 MI.eraseFromParent();
827
828 return true;
829}
830
831bool AArch64MIPeepholeOptImpl::visitUBFMXri(MachineInstr &MI) {
832 // Check if the instruction is equivalent to a 32 bit LSR or LSL alias of
833 // UBFM, and replace the UBFMXri instruction with its 32 bit variant, UBFMWri.
834 int64_t Immr = MI.getOperand(2).getImm();
835 int64_t Imms = MI.getOperand(3).getImm();
836
837 bool IsLSR = Imms == 31 && Immr <= Imms;
838 bool IsLSL = Immr == Imms + 33;
839 if (!IsLSR && !IsLSL)
840 return false;
841
842 if (IsLSL) {
843 Immr -= 32;
844 }
845
846 const TargetRegisterClass *DstRC64 =
847 TII->getRegClass(TII->get(MI.getOpcode()), 0);
848 const TargetRegisterClass *DstRC32 =
849 TRI->getSubRegisterClass(DstRC64, AArch64::sub_32);
850 assert(DstRC32 && "Destination register class of UBFMXri doesn't have a "
851 "sub_32 subregister class");
852
853 const TargetRegisterClass *SrcRC64 =
854 TII->getRegClass(TII->get(MI.getOpcode()), 1);
855 const TargetRegisterClass *SrcRC32 =
856 TRI->getSubRegisterClass(SrcRC64, AArch64::sub_32);
857 assert(SrcRC32 && "Source register class of UBFMXri doesn't have a sub_32 "
858 "subregister class");
859
860 Register DstReg64 = MI.getOperand(0).getReg();
861 Register DstReg32 = MRI->createVirtualRegister(DstRC32);
862 Register SrcReg64 = MI.getOperand(1).getReg();
863 Register SrcReg32 = MRI->createVirtualRegister(SrcRC32);
864
865 BuildMI(*MI.getParent(), MI, MI.getDebugLoc(), TII->get(AArch64::COPY),
866 SrcReg32)
867 .addReg(SrcReg64, {}, AArch64::sub_32);
868 BuildMI(*MI.getParent(), MI, MI.getDebugLoc(), TII->get(AArch64::UBFMWri),
869 DstReg32)
870 .addReg(SrcReg32)
871 .addImm(Immr)
872 .addImm(Imms);
873 BuildMI(*MI.getParent(), MI, MI.getDebugLoc(),
874 TII->get(AArch64::SUBREG_TO_REG), DstReg64)
875 .addReg(DstReg32)
876 .addImm(AArch64::sub_32);
877 MI.eraseFromParent();
878 return true;
879}
880
881// Across a basic-block we might have in i32 extract from a value that only
882// operates on upper bits (for example a sxtw). We can replace the COPY with a
883// new version skipping the sxtw.
884bool AArch64MIPeepholeOptImpl::visitCopy(MachineInstr &MI) {
885 Register InputReg = MI.getOperand(1).getReg();
886 if (MI.getOperand(1).getSubReg() != AArch64::sub_32 ||
887 !MRI->hasOneNonDBGUse(InputReg))
888 return false;
889
890 MachineInstr *SrcMI = MRI->getUniqueVRegDef(InputReg);
891 SmallPtrSet<MachineInstr *, 4> DeadInstrs;
892 DeadInstrs.insert(SrcMI);
893 while (SrcMI && SrcMI->isFullCopy() &&
894 MRI->hasOneNonDBGUse(SrcMI->getOperand(1).getReg())) {
895 SrcMI = MRI->getUniqueVRegDef(SrcMI->getOperand(1).getReg());
896 DeadInstrs.insert(SrcMI);
897 }
898
899 if (!SrcMI)
900 return false;
901
902 // Look for SXTW(X) and return Reg.
903 auto getSXTWSrcReg = [](MachineInstr *SrcMI) -> Register {
904 if (SrcMI->getOpcode() != AArch64::SBFMXri ||
905 SrcMI->getOperand(2).getImm() != 0 ||
906 SrcMI->getOperand(3).getImm() != 31)
907 return AArch64::NoRegister;
908 return SrcMI->getOperand(1).getReg();
909 };
910 // Look for SUBREG_TO_REG(ORRWrr(WZR, COPY(X.sub_32)))
911 auto getUXTWSrcReg = [&](MachineInstr *SrcMI) -> Register {
912 if (SrcMI->getOpcode() != AArch64::SUBREG_TO_REG ||
913 SrcMI->getOperand(2).getImm() != AArch64::sub_32 ||
914 !MRI->hasOneNonDBGUse(SrcMI->getOperand(1).getReg()))
915 return AArch64::NoRegister;
916 MachineInstr *Orr = MRI->getUniqueVRegDef(SrcMI->getOperand(1).getReg());
917 if (!Orr || Orr->getOpcode() != AArch64::ORRWrr ||
918 Orr->getOperand(1).getReg() != AArch64::WZR ||
919 !MRI->hasOneNonDBGUse(Orr->getOperand(2).getReg()))
920 return AArch64::NoRegister;
921 MachineInstr *Cpy = MRI->getUniqueVRegDef(Orr->getOperand(2).getReg());
922 if (!Cpy || Cpy->getOpcode() != AArch64::COPY ||
923 Cpy->getOperand(1).getSubReg() != AArch64::sub_32)
924 return AArch64::NoRegister;
925 DeadInstrs.insert(Orr);
926 return Cpy->getOperand(1).getReg();
927 };
928
929 Register SrcReg = getSXTWSrcReg(SrcMI);
930 if (!SrcReg)
931 SrcReg = getUXTWSrcReg(SrcMI);
932 if (!SrcReg)
933 return false;
934
935 MRI->constrainRegClass(SrcReg, MRI->getRegClass(InputReg));
936 LLVM_DEBUG(dbgs() << "Optimizing: " << MI);
937 MI.getOperand(1).setReg(SrcReg);
938 LLVM_DEBUG(dbgs() << " to: " << MI);
939 for (auto *DeadMI : DeadInstrs) {
940 LLVM_DEBUG(dbgs() << " Removing: " << *DeadMI);
941 DeadMI->eraseFromParent();
942 }
943 return true;
944}
945
946bool AArch64MIPeepholeOptImpl::run(MachineFunction &MF) {
947 TII = static_cast<const AArch64InstrInfo *>(MF.getSubtarget().getInstrInfo());
948 TRI = static_cast<const AArch64RegisterInfo *>(
949 MF.getSubtarget().getRegisterInfo());
950 MRI = &MF.getRegInfo();
951
952 assert(MRI->isSSA() && "Expected to be run on SSA form!");
953
954 bool Changed = false;
955
956 for (MachineBasicBlock &MBB : MF) {
957 for (MachineInstr &MI : make_early_inc_range(MBB)) {
958 switch (MI.getOpcode()) {
959 default:
960 break;
961 case AArch64::INSERT_SUBREG:
962 Changed |= visitINSERT(MI);
963 break;
964 case AArch64::ANDWrr:
965 Changed |= trySplitLogicalImm<uint32_t>(AArch64::ANDWri, MI,
966 SplitStrategy::Intersect);
967 break;
968 case AArch64::ANDXrr:
969 Changed |= trySplitLogicalImm<uint64_t>(AArch64::ANDXri, MI,
970 SplitStrategy::Intersect);
971 break;
972 case AArch64::ANDSWrr:
973 Changed |= trySplitLogicalImm<uint32_t>(
974 AArch64::ANDWri, MI, SplitStrategy::Intersect, AArch64::ANDSWri);
975 break;
976 case AArch64::ANDSXrr:
977 Changed |= trySplitLogicalImm<uint64_t>(
978 AArch64::ANDXri, MI, SplitStrategy::Intersect, AArch64::ANDSXri);
979 break;
980 case AArch64::EORWrr:
981 Changed |= trySplitLogicalImm<uint32_t>(AArch64::EORWri, MI,
982 SplitStrategy::Disjoint);
983 break;
984 case AArch64::EORXrr:
985 Changed |= trySplitLogicalImm<uint64_t>(AArch64::EORXri, MI,
986 SplitStrategy::Disjoint);
987 break;
988 case AArch64::ORRWrr:
989 Changed |= trySplitLogicalImm<uint32_t>(AArch64::ORRWri, MI,
990 SplitStrategy::Disjoint);
991 break;
992 case AArch64::ORRXrr:
993 Changed |= trySplitLogicalImm<uint64_t>(AArch64::ORRXri, MI,
994 SplitStrategy::Disjoint);
995 break;
996 case AArch64::ORRWrs:
997 Changed |= visitORR(MI);
998 break;
999 case AArch64::ADDWrr:
1000 Changed |= visitADDSUB<uint32_t>(AArch64::ADDWri, AArch64::SUBWri, MI);
1001 break;
1002 case AArch64::SUBWrr:
1003 Changed |= visitADDSUB<uint32_t>(AArch64::SUBWri, AArch64::ADDWri, MI);
1004 break;
1005 case AArch64::ADDXrr:
1006 Changed |= visitADDSUB<uint64_t>(AArch64::ADDXri, AArch64::SUBXri, MI);
1007 break;
1008 case AArch64::SUBXrr:
1009 Changed |= visitADDSUB<uint64_t>(AArch64::SUBXri, AArch64::ADDXri, MI);
1010 break;
1011 case AArch64::ADDSWrr:
1012 Changed |=
1013 visitADDSSUBS<uint32_t>({AArch64::ADDWri, AArch64::ADDSWri},
1014 {AArch64::SUBWri, AArch64::SUBSWri}, MI);
1015 break;
1016 case AArch64::SUBSWrr:
1017 Changed |=
1018 visitADDSSUBS<uint32_t>({AArch64::SUBWri, AArch64::SUBSWri},
1019 {AArch64::ADDWri, AArch64::ADDSWri}, MI);
1020 break;
1021 case AArch64::ADDSXrr:
1022 Changed |=
1023 visitADDSSUBS<uint64_t>({AArch64::ADDXri, AArch64::ADDSXri},
1024 {AArch64::SUBXri, AArch64::SUBSXri}, MI);
1025 break;
1026 case AArch64::SUBSXrr:
1027 Changed |=
1028 visitADDSSUBS<uint64_t>({AArch64::SUBXri, AArch64::SUBSXri},
1029 {AArch64::ADDXri, AArch64::ADDSXri}, MI);
1030 break;
1031 case AArch64::CSELWr:
1032 case AArch64::CSELXr:
1033 Changed |= visitCSEL(MI);
1034 break;
1035 case AArch64::INSvi64gpr:
1036 Changed |= visitINSviGPR(MI, AArch64::INSvi64lane);
1037 break;
1038 case AArch64::INSvi32gpr:
1039 Changed |= visitINSviGPR(MI, AArch64::INSvi32lane);
1040 break;
1041 case AArch64::INSvi16gpr:
1042 Changed |= visitINSviGPR(MI, AArch64::INSvi16lane);
1043 break;
1044 case AArch64::INSvi8gpr:
1045 Changed |= visitINSviGPR(MI, AArch64::INSvi8lane);
1046 break;
1047 case AArch64::INSvi64lane:
1048 Changed |= visitINSvi64lane(MI);
1049 break;
1050 case AArch64::FMOVDr:
1051 Changed |= visitFMOVDr(MI);
1052 break;
1053 case AArch64::UBFMXri:
1054 Changed |= visitUBFMXri(MI);
1055 break;
1056 case AArch64::COPY:
1057 Changed |= visitCopy(MI);
1058 break;
1059 }
1060 }
1061 }
1062
1063 return Changed;
1064}
1065
1066bool AArch64MIPeepholeOptLegacy::runOnMachineFunction(MachineFunction &MF) {
1067 if (skipFunction(MF.getFunction()))
1068 return false;
1069
1070 MachineLoopInfo &MLI = getAnalysis<MachineLoopInfoWrapperPass>().getLI();
1071 return AArch64MIPeepholeOptImpl(MLI).run(MF);
1072}
1073
1075 return new AArch64MIPeepholeOptLegacy();
1076}
1077
1082 const bool Changed = AArch64MIPeepholeOptImpl(MLI).run(MF);
1083 if (!Changed)
1084 return PreservedAnalyses::all();
1087 return PA;
1088}
static const TargetRegisterClass * getRegClass(const MachineInstr &MI, Register Reg)
static bool is64bitDefwithZeroHigh64bit(MachineInstr *MI, MachineRegisterInfo *MRI, const AArch64InstrInfo *TII)
static bool splitDisjointBitmaskImm(T Imm, unsigned RegSize, T &Imm1Enc, T &Imm2Enc)
unsigned HighestBitSet
unsigned T T & Imm2Enc
unsigned T & Imm1Enc
unsigned RegSize
static bool splitAddSubImm(T Imm, unsigned RegSize, T &Imm0, T &Imm1)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned LowestBitSet
unsigned Imm
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
#define T
if(PassOpts->AAPipeline)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
#define OP(OPC)
Definition Instruction.h:46
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
Definition Value.cpp:484
#define LLVM_DEBUG(...)
Definition Debug.h:119
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition Pass.cpp:275
Represents analyses that only rely on functions' control flow.
Definition Analysis.h:73
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
LoopT * getLoopFor(const BlockT *BB) const
Return the inner most loop that BB lives in.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
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.
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 & addUse(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
bool isFullCopy() const
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
const MachineOperand & getOperand(unsigned i) const
LLVM_ABI MachineInstrBundleIterator< MachineInstr > eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
Analysis pass that exposes the MachineLoopInfo for a machine function.
MachineOperand class - Representation of each machine instruction operand.
void setSubReg(unsigned subReg)
unsigned getSubReg() const
int64_t getImm() const
LLVM_ABI void setReg(Register Reg)
Change the register this operand corresponds to.
void setIsKill(bool Val=true)
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI bool hasOneNonDBGUse(Register RegNo) const
hasOneNonDBGUse - Return true if there is exactly one non-Debug use of the specified register.
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
LLVM_ABI void clearKillFlags(Register Reg) const
clearKillFlags - Iterate over all the uses of the given register and clear the kill flag from the Mac...
LLVM_ABI LLVM_READONLY MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
bool hasOneUse(Register RegNo) const
hasOneUse - Return true if there is exactly one instruction using the specified register.
LLVM_ABI const TargetRegisterClass * constrainRegClass(Register Reg, const TargetRegisterClass *RC, unsigned MinNumRegs=0)
constrainRegClass - Constrain the register class of the specified virtual register to be a common sub...
LLVM_ABI void replaceRegWith(Register FromReg, Register ToReg)
replaceRegWith - Replace all instances of FromReg with ToReg in the machine function.
LLVM_ABI LLVM_READONLY MachineInstr * getUniqueVRegDef(Register Reg) const
getUniqueVRegDef - Return the unique machine instr that defines the specified virtual register or nul...
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
Definition Analysis.h:151
Wrapper class representing virtual and physical registers.
Definition Register.h:20
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:79
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Register getReg() const
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Changed
static bool isLogicalImmediate(uint64_t imm, unsigned regSize)
isLogicalImmediate - Return true if the immediate is valid for a logical immediate instruction of the...
static uint64_t encodeLogicalImmediate(uint64_t imm, unsigned regSize)
encodeLogicalImmediate - Return the encoded immediate value for a logical immediate instruction of th...
void expandMOVImm(uint64_t Imm, unsigned BitSize, SmallVectorImpl< ImmInsnModel > &Insn)
Expand a MOVi32imm or MOVi64imm pseudo instruction to one or more real move-immediate instructions to...
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.
constexpr RegState getKillRegState(bool B)
int countr_one(T Value)
Count the number of ones from the least significant bit to the first zero bit.
Definition bit.h:315
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...
Definition STLExtras.h:633
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
unsigned Log2_64(uint64_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
Definition MathExtras.h:332
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
Definition bit.h:204
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.
FunctionPass * createAArch64MIPeepholeOptLegacyPass()
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
std::optional< UsedNZCV > examineCFlagsUse(MachineInstr &MI, MachineInstr &CmpInstr, const TargetRegisterInfo &TRI, SmallVectorImpl< MachineInstr * > *CCUseInstrs=nullptr)
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
RegState getRegState(const MachineOperand &RegOp)
Get all register state flags from machine operand RegOp.
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58