LLVM  8.0.1
NVPTXRegisterInfo.cpp
Go to the documentation of this file.
1 //===- NVPTXRegisterInfo.cpp - NVPTX Register Information -----------------===//
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 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the NVPTX implementation of the TargetRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "NVPTXRegisterInfo.h"
15 #include "NVPTX.h"
16 #include "NVPTXSubtarget.h"
17 #include "llvm/ADT/BitVector.h"
23 
24 using namespace llvm;
25 
26 #define DEBUG_TYPE "nvptx-reg-info"
27 
28 namespace llvm {
29 std::string getNVPTXRegClassName(TargetRegisterClass const *RC) {
30  if (RC == &NVPTX::Float32RegsRegClass)
31  return ".f32";
32  if (RC == &NVPTX::Float16RegsRegClass)
33  // Ideally fp16 registers should be .f16, but this syntax is only
34  // supported on sm_53+. On the other hand, .b16 registers are
35  // accepted for all supported fp16 instructions on all GPU
36  // variants, so we can use them instead.
37  return ".b16";
38  if (RC == &NVPTX::Float16x2RegsRegClass)
39  return ".b32";
40  if (RC == &NVPTX::Float64RegsRegClass)
41  return ".f64";
42  if (RC == &NVPTX::Int64RegsRegClass)
43  // We use untyped (.b) integer registers here as NVCC does.
44  // Correctness of generated code does not depend on register type,
45  // but using .s/.u registers runs into ptxas bug that prevents
46  // assembly of otherwise valid PTX into SASS. Despite PTX ISA
47  // specifying only argument size for fp16 instructions, ptxas does
48  // not allow using .s16 or .u16 arguments for .fp16
49  // instructions. At the same time it allows using .s32/.u32
50  // arguments for .fp16v2 instructions:
51  //
52  // .reg .b16 rb16
53  // .reg .s16 rs16
54  // add.f16 rb16,rb16,rb16; // OK
55  // add.f16 rs16,rs16,rs16; // Arguments mismatch for instruction 'add'
56  // but:
57  // .reg .b32 rb32
58  // .reg .s32 rs32
59  // add.f16v2 rb32,rb32,rb32; // OK
60  // add.f16v2 rs32,rs32,rs32; // OK
61  return ".b64";
62  if (RC == &NVPTX::Int32RegsRegClass)
63  return ".b32";
64  if (RC == &NVPTX::Int16RegsRegClass)
65  return ".b16";
66  if (RC == &NVPTX::Int1RegsRegClass)
67  return ".pred";
68  if (RC == &NVPTX::SpecialRegsRegClass)
69  return "!Special!";
70  return "INTERNAL";
71 }
72 
73 std::string getNVPTXRegClassStr(TargetRegisterClass const *RC) {
74  if (RC == &NVPTX::Float32RegsRegClass)
75  return "%f";
76  if (RC == &NVPTX::Float16RegsRegClass)
77  return "%h";
78  if (RC == &NVPTX::Float16x2RegsRegClass)
79  return "%hh";
80  if (RC == &NVPTX::Float64RegsRegClass)
81  return "%fd";
82  if (RC == &NVPTX::Int64RegsRegClass)
83  return "%rd";
84  if (RC == &NVPTX::Int32RegsRegClass)
85  return "%r";
86  if (RC == &NVPTX::Int16RegsRegClass)
87  return "%rs";
88  if (RC == &NVPTX::Int1RegsRegClass)
89  return "%p";
90  if (RC == &NVPTX::SpecialRegsRegClass)
91  return "!Special!";
92  return "INTERNAL";
93 }
94 }
95 
97 
98 #define GET_REGINFO_TARGET_DESC
99 #include "NVPTXGenRegisterInfo.inc"
100 
101 /// NVPTX Callee Saved Registers
102 const MCPhysReg *
104  static const MCPhysReg CalleeSavedRegs[] = { 0 };
105  return CalleeSavedRegs;
106 }
107 
109  BitVector Reserved(getNumRegs());
110  return Reserved;
111 }
112 
114  int SPAdj, unsigned FIOperandNum,
115  RegScavenger *RS) const {
116  assert(SPAdj == 0 && "Unexpected");
117 
118  MachineInstr &MI = *II;
119  int FrameIndex = MI.getOperand(FIOperandNum).getIndex();
120 
121  MachineFunction &MF = *MI.getParent()->getParent();
122  int Offset = MF.getFrameInfo().getObjectOffset(FrameIndex) +
123  MI.getOperand(FIOperandNum + 1).getImm();
124 
125  // Using I0 as the frame pointer
126  MI.getOperand(FIOperandNum).ChangeToRegister(NVPTX::VRFrame, false);
127  MI.getOperand(FIOperandNum + 1).ChangeToImmediate(Offset);
128 }
129 
131  return NVPTX::VRFrame;
132 }
This class represents lattice values for constants.
Definition: AllocatorList.h:24
void ChangeToRegister(unsigned Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isDebug=false)
ChangeToRegister - Replace this operand with a new register operand of the specified value...
const MCPhysReg * getCalleeSavedRegs(const MachineFunction *MF) const override
NVPTX Callee Saved Registers.
void eliminateFrameIndex(MachineBasicBlock::iterator MI, int SPAdj, unsigned FIOperandNum, RegScavenger *RS=nullptr) const override
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
void ChangeToImmediate(int64_t ImmVal)
ChangeToImmediate - Replace this operand with a new immediate operand of the specified value...
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
BitVector getReservedRegs(const MachineFunction &MF) const override
int64_t getImm() const
const MachineBasicBlock * getParent() const
Definition: MachineInstr.h:254
Representation of each machine instruction.
Definition: MachineInstr.h:64
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
unsigned getFrameRegister(const MachineFunction &MF) const override
std::string getNVPTXRegClassStr(TargetRegisterClass const *RC)
std::string getNVPTXRegClassName(TargetRegisterClass const *RC)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
IRTranslator LLVM IR MI
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:414