blob: 766380ead58618579c5e7109eff01cb1b9129c07 [file] [log] [blame]
Tom Stellard1bd80722014-04-30 15:31:33 +00001//===-- SILowerI1Copies.cpp - Lower I1 Copies -----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8/// i1 values are usually inserted by the CFG Structurize pass and they are
9/// unique in that they can be copied from VALU to SALU registers.
10/// This is not possible for any other value type. Since there are no
11/// MOV instructions for i1, we to use V_CMP_* and V_CNDMASK to move the i1.
12///
13//===----------------------------------------------------------------------===//
14//
15
16#define DEBUG_TYPE "si-i1-copies"
17#include "AMDGPU.h"
18#include "SIInstrInfo.h"
19#include "llvm/CodeGen/LiveIntervalAnalysis.h"
20#include "llvm/CodeGen/MachineDominators.h"
21#include "llvm/CodeGen/MachineFunctionPass.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
23#include "llvm/CodeGen/MachineRegisterInfo.h"
24#include "llvm/IR/LLVMContext.h"
25#include "llvm/IR/Function.h"
26#include "llvm/Support/Debug.h"
27#include "llvm/Target/TargetMachine.h"
28
29using namespace llvm;
30
31namespace {
32
33class SILowerI1Copies : public MachineFunctionPass {
34public:
35 static char ID;
36
37public:
38 SILowerI1Copies() : MachineFunctionPass(ID) {
39 initializeSILowerI1CopiesPass(*PassRegistry::getPassRegistry());
40 }
41
42 virtual bool runOnMachineFunction(MachineFunction &MF) override;
43
44 virtual const char *getPassName() const override {
45 return "SI Lower il Copies";
46 }
47
48 virtual void getAnalysisUsage(AnalysisUsage &AU) const override {
49 AU.addRequired<MachineDominatorTree>();
50 AU.setPreservesCFG();
51 MachineFunctionPass::getAnalysisUsage(AU);
52 }
53};
54
55} // End anonymous namespace.
56
57INITIALIZE_PASS_BEGIN(SILowerI1Copies, DEBUG_TYPE,
58 "SI Lower il Copies", false, false)
59INITIALIZE_PASS_DEPENDENCY(MachineDominatorTree)
60INITIALIZE_PASS_END(SILowerI1Copies, DEBUG_TYPE,
61 "SI Lower il Copies", false, false)
62
63char SILowerI1Copies::ID = 0;
64
65char &llvm::SILowerI1CopiesID = SILowerI1Copies::ID;
66
67FunctionPass *llvm::createSILowerI1CopiesPass() {
68 return new SILowerI1Copies();
69}
70
71bool SILowerI1Copies::runOnMachineFunction(MachineFunction &MF) {
72 MachineRegisterInfo &MRI = MF.getRegInfo();
73 const SIInstrInfo *TII = static_cast<const SIInstrInfo *>(
74 MF.getTarget().getInstrInfo());
75 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
76
77 for (MachineFunction::iterator BI = MF.begin(), BE = MF.end();
78 BI != BE; ++BI) {
79
80 MachineBasicBlock &MBB = *BI;
81 MachineBasicBlock::iterator I, Next;
82 for (I = MBB.begin(); I != MBB.end(); I = Next) {
83 Next = std::next(I);
84 MachineInstr &MI = *I;
85
86 if (MI.getOpcode() == AMDGPU::V_MOV_I1) {
87 MI.setDesc(TII->get(AMDGPU::V_MOV_B32_e32));
88 continue;
89 }
90
91 if (MI.getOpcode() != AMDGPU::COPY ||
92 !TargetRegisterInfo::isVirtualRegister(MI.getOperand(0).getReg()) ||
93 !TargetRegisterInfo::isVirtualRegister(MI.getOperand(1).getReg()))
94 continue;
95
96
97 const TargetRegisterClass *DstRC =
98 MRI.getRegClass(MI.getOperand(0).getReg());
99 const TargetRegisterClass *SrcRC =
100 MRI.getRegClass(MI.getOperand(1).getReg());
101
102 if (DstRC == &AMDGPU::VReg_1RegClass &&
103 TRI->getCommonSubClass(SrcRC, &AMDGPU::SGPR_64RegClass)) {
104 BuildMI(MBB, &MI, MI.getDebugLoc(), TII->get(AMDGPU::V_CNDMASK_B32_e64))
105 .addOperand(MI.getOperand(0))
106 .addImm(0)
107 .addImm(-1)
108 .addOperand(MI.getOperand(1))
109 .addImm(0)
110 .addImm(0)
111 .addImm(0)
112 .addImm(0);
113 MI.eraseFromParent();
114 } else if (TRI->getCommonSubClass(DstRC, &AMDGPU::SGPR_64RegClass) &&
115 SrcRC == &AMDGPU::VReg_1RegClass) {
116 BuildMI(MBB, &MI, MI.getDebugLoc(), TII->get(AMDGPU::V_CMP_NE_I32_e64))
117 .addOperand(MI.getOperand(0))
118 .addImm(0)
119 .addOperand(MI.getOperand(1))
120 .addImm(0)
121 .addImm(0)
122 .addImm(0)
123 .addImm(0);
124 MI.eraseFromParent();
125 }
126
127 }
128 }
129 return false;
130}