[InstCombine] Signed saturation patterns
[llvm-complete.git] / lib / Target / AMDGPU / SIFixVGPRCopies.cpp
blob29484668a01d9f17e31e69cb0b52def4aef63253
1 //===-- SIFixVGPRCopies.cpp - Fix VGPR Copies after regalloc --------------===//
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 /// \file
10 /// Add implicit use of exec to vector register copies.
11 ///
12 //===----------------------------------------------------------------------===//
14 #include "AMDGPU.h"
15 #include "AMDGPUSubtarget.h"
16 #include "SIInstrInfo.h"
17 #include "MCTargetDesc/AMDGPUMCTargetDesc.h"
18 #include "llvm/CodeGen/MachineFunctionPass.h"
20 using namespace llvm;
22 #define DEBUG_TYPE "si-fix-vgpr-copies"
24 namespace {
26 class SIFixVGPRCopies : public MachineFunctionPass {
27 public:
28 static char ID;
30 public:
31 SIFixVGPRCopies() : MachineFunctionPass(ID) {
32 initializeSIFixVGPRCopiesPass(*PassRegistry::getPassRegistry());
35 bool runOnMachineFunction(MachineFunction &MF) override;
37 StringRef getPassName() const override { return "SI Fix VGPR copies"; }
40 } // End anonymous namespace.
42 INITIALIZE_PASS(SIFixVGPRCopies, DEBUG_TYPE, "SI Fix VGPR copies", false, false)
44 char SIFixVGPRCopies::ID = 0;
46 char &llvm::SIFixVGPRCopiesID = SIFixVGPRCopies::ID;
48 bool SIFixVGPRCopies::runOnMachineFunction(MachineFunction &MF) {
49 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
50 const SIRegisterInfo *TRI = ST.getRegisterInfo();
51 const SIInstrInfo *TII = ST.getInstrInfo();
52 bool Changed = false;
54 for (MachineBasicBlock &MBB : MF) {
55 for (MachineInstr &MI : MBB) {
56 switch (MI.getOpcode()) {
57 case AMDGPU::COPY:
58 if (TII->isVGPRCopy(MI) && !MI.readsRegister(AMDGPU::EXEC, TRI)) {
59 MI.addOperand(MF,
60 MachineOperand::CreateReg(AMDGPU::EXEC, false, true));
61 LLVM_DEBUG(dbgs() << "Add exec use to " << MI);
62 Changed = true;
64 break;
65 default:
66 break;
71 return Changed;