1 //===-- SIFixVGPRCopies.cpp - Fix VGPR Copies after regalloc --------------===//
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
7 //===----------------------------------------------------------------------===//
10 /// Add implicit use of exec to vector register copies.
12 //===----------------------------------------------------------------------===//
15 #include "GCNSubtarget.h"
16 #include "MCTargetDesc/AMDGPUMCTargetDesc.h"
17 #include "llvm/CodeGen/MachineFunctionPass.h"
21 #define DEBUG_TYPE "si-fix-vgpr-copies"
25 class SIFixVGPRCopies
: public MachineFunctionPass
{
30 SIFixVGPRCopies() : MachineFunctionPass(ID
) {
31 initializeSIFixVGPRCopiesPass(*PassRegistry::getPassRegistry());
34 bool runOnMachineFunction(MachineFunction
&MF
) override
;
36 StringRef
getPassName() const override
{ return "SI Fix VGPR copies"; }
39 } // End anonymous namespace.
41 INITIALIZE_PASS(SIFixVGPRCopies
, DEBUG_TYPE
, "SI Fix VGPR copies", false, false)
43 char SIFixVGPRCopies::ID
= 0;
45 char &llvm::SIFixVGPRCopiesID
= SIFixVGPRCopies::ID
;
47 bool SIFixVGPRCopies::runOnMachineFunction(MachineFunction
&MF
) {
48 const GCNSubtarget
&ST
= MF
.getSubtarget
<GCNSubtarget
>();
49 const SIRegisterInfo
*TRI
= ST
.getRegisterInfo();
50 const SIInstrInfo
*TII
= ST
.getInstrInfo();
53 for (MachineBasicBlock
&MBB
: MF
) {
54 for (MachineInstr
&MI
: MBB
) {
55 switch (MI
.getOpcode()) {
57 if (TII
->isVGPRCopy(MI
) && !MI
.readsRegister(AMDGPU::EXEC
, TRI
)) {
59 MachineOperand::CreateReg(AMDGPU::EXEC
, false, true));
60 LLVM_DEBUG(dbgs() << "Add exec use to " << MI
);