AMDGPU: Remove SIPrepareScratchRegs
[oota-llvm.git] / lib / Target / AMDGPU / AMDGPU.h
1 //===-- AMDGPU.h - MachineFunction passes hw codegen --------------*- C++ -*-=//
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 /// \file
9 //===----------------------------------------------------------------------===//
10
11 #ifndef LLVM_LIB_TARGET_R600_AMDGPU_H
12 #define LLVM_LIB_TARGET_R600_AMDGPU_H
13
14 #include "llvm/Support/TargetRegistry.h"
15 #include "llvm/Target/TargetMachine.h"
16
17 namespace llvm {
18
19 class AMDGPUInstrPrinter;
20 class AMDGPUSubtarget;
21 class AMDGPUTargetMachine;
22 class FunctionPass;
23 class MCAsmInfo;
24 class raw_ostream;
25 class Target;
26 class TargetMachine;
27
28 // R600 Passes
29 FunctionPass *createR600VectorRegMerger(TargetMachine &tm);
30 FunctionPass *createR600TextureIntrinsicsReplacer();
31 FunctionPass *createR600ExpandSpecialInstrsPass(TargetMachine &tm);
32 FunctionPass *createR600EmitClauseMarkers();
33 FunctionPass *createR600ClauseMergePass(TargetMachine &tm);
34 FunctionPass *createR600Packetizer(TargetMachine &tm);
35 FunctionPass *createR600ControlFlowFinalizer(TargetMachine &tm);
36 FunctionPass *createAMDGPUCFGStructurizerPass();
37
38 // SI Passes
39 FunctionPass *createSITypeRewriter();
40 FunctionPass *createSIAnnotateControlFlowPass();
41 FunctionPass *createSIFoldOperandsPass();
42 FunctionPass *createSILowerI1CopiesPass();
43 FunctionPass *createSIShrinkInstructionsPass();
44 FunctionPass *createSILoadStoreOptimizerPass(TargetMachine &tm);
45 FunctionPass *createSILowerControlFlowPass(TargetMachine &tm);
46 FunctionPass *createSIFixControlFlowLiveIntervalsPass();
47 FunctionPass *createSIFixSGPRCopiesPass();
48 FunctionPass *createSIFixSGPRLiveRangesPass();
49 FunctionPass *createSICodeEmitterPass(formatted_raw_ostream &OS);
50 FunctionPass *createSIInsertWaits(TargetMachine &tm);
51
52 ModulePass *createAMDGPUAnnotateKernelFeaturesPass();
53 void initializeAMDGPUAnnotateKernelFeaturesPass(PassRegistry &);
54 extern char &AMDGPUAnnotateKernelFeaturesID;
55
56 void initializeSIFoldOperandsPass(PassRegistry &);
57 extern char &SIFoldOperandsID;
58
59 void initializeSIFixSGPRCopiesPass(PassRegistry &);
60 extern char &SIFixSGPRCopiesID;
61
62 void initializeSILowerI1CopiesPass(PassRegistry &);
63 extern char &SILowerI1CopiesID;
64
65 void initializeSILoadStoreOptimizerPass(PassRegistry &);
66 extern char &SILoadStoreOptimizerID;
67
68 // Passes common to R600 and SI
69 FunctionPass *createAMDGPUPromoteAlloca(const AMDGPUSubtarget &ST);
70 Pass *createAMDGPUStructurizeCFGPass();
71 FunctionPass *createAMDGPUISelDag(TargetMachine &tm);
72 ModulePass *createAMDGPUAlwaysInlinePass();
73 ModulePass *createAMDGPUOpenCLImageTypeLoweringPass();
74
75 void initializeSIFixControlFlowLiveIntervalsPass(PassRegistry&);
76 extern char &SIFixControlFlowLiveIntervalsID;
77
78 void initializeSIFixSGPRLiveRangesPass(PassRegistry&);
79 extern char &SIFixSGPRLiveRangesID;
80
81
82 extern Target TheAMDGPUTarget;
83 extern Target TheGCNTarget;
84
85 namespace AMDGPU {
86 enum TargetIndex {
87   TI_CONSTDATA_START,
88   TI_SCRATCH_RSRC_DWORD0,
89   TI_SCRATCH_RSRC_DWORD1,
90   TI_SCRATCH_RSRC_DWORD2,
91   TI_SCRATCH_RSRC_DWORD3
92 };
93 }
94
95 #define END_OF_TEXT_LABEL_NAME "EndOfTextLabel"
96
97 } // End namespace llvm
98
99 namespace ShaderType {
100   enum Type {
101     PIXEL = 0,
102     VERTEX = 1,
103     GEOMETRY = 2,
104     COMPUTE = 3
105   };
106 }
107
108 /// OpenCL uses address spaces to differentiate between
109 /// various memory regions on the hardware. On the CPU
110 /// all of the address spaces point to the same memory,
111 /// however on the GPU, each address space points to
112 /// a separate piece of memory that is unique from other
113 /// memory locations.
114 namespace AMDGPUAS {
115 enum AddressSpaces : unsigned {
116   PRIVATE_ADDRESS  = 0, ///< Address space for private memory.
117   GLOBAL_ADDRESS   = 1, ///< Address space for global memory (RAT0, VTX0).
118   CONSTANT_ADDRESS = 2, ///< Address space for constant memory
119   LOCAL_ADDRESS    = 3, ///< Address space for local memory.
120   FLAT_ADDRESS     = 4, ///< Address space for flat memory.
121   REGION_ADDRESS   = 5, ///< Address space for region memory.
122   PARAM_D_ADDRESS  = 6, ///< Address space for direct addressible parameter memory (CONST0)
123   PARAM_I_ADDRESS  = 7, ///< Address space for indirect addressible parameter memory (VTX1)
124
125   // Do not re-order the CONSTANT_BUFFER_* enums.  Several places depend on this
126   // order to be able to dynamically index a constant buffer, for example:
127   //
128   // ConstantBufferAS = CONSTANT_BUFFER_0 + CBIdx
129
130   CONSTANT_BUFFER_0 = 8,
131   CONSTANT_BUFFER_1 = 9,
132   CONSTANT_BUFFER_2 = 10,
133   CONSTANT_BUFFER_3 = 11,
134   CONSTANT_BUFFER_4 = 12,
135   CONSTANT_BUFFER_5 = 13,
136   CONSTANT_BUFFER_6 = 14,
137   CONSTANT_BUFFER_7 = 15,
138   CONSTANT_BUFFER_8 = 16,
139   CONSTANT_BUFFER_9 = 17,
140   CONSTANT_BUFFER_10 = 18,
141   CONSTANT_BUFFER_11 = 19,
142   CONSTANT_BUFFER_12 = 20,
143   CONSTANT_BUFFER_13 = 21,
144   CONSTANT_BUFFER_14 = 22,
145   CONSTANT_BUFFER_15 = 23,
146   ADDRESS_NONE = 24, ///< Address space for unknown memory.
147   LAST_ADDRESS = ADDRESS_NONE,
148
149   // Some places use this if the address space can't be determined.
150   UNKNOWN_ADDRESS_SPACE = ~0u
151 };
152
153 } // namespace AMDGPUAS
154
155 #endif