3530bf088bef9fd28fcf2fa2be383294d7a79808
[mesa.git] / src / amd / common / ac_llvm_util.c
1 /*
2 * Copyright 2014 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
19 *
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
22 * of the Software.
23 *
24 */
25 /* based on pieces from si_pipe.c and radeon_llvm_emit.c */
26 #include "ac_llvm_util.h"
27 #include "ac_llvm_build.h"
28 #include "util/bitscan.h"
29 #include <llvm-c/Core.h>
30 #include <llvm-c/Support.h>
31 #include "c11/threads.h"
32 #include "util/u_math.h"
33
34 #include <assert.h>
35 #include <stdio.h>
36 #include <string.h>
37
38 static void ac_init_llvm_target()
39 {
40 LLVMInitializeAMDGPUTargetInfo();
41 LLVMInitializeAMDGPUTarget();
42 LLVMInitializeAMDGPUTargetMC();
43 LLVMInitializeAMDGPUAsmPrinter();
44
45 /* For inline assembly. */
46 LLVMInitializeAMDGPUAsmParser();
47
48 /* Workaround for bug in llvm 4.0 that causes image intrinsics
49 * to disappear.
50 * https://reviews.llvm.org/D26348
51 *
52 * "mesa" is the prefix for error messages.
53 */
54 const char *argv[2] = { "mesa", "-simplifycfg-sink-common=false" };
55 LLVMParseCommandLineOptions(2, argv, NULL);
56 }
57
58 static once_flag ac_init_llvm_target_once_flag = ONCE_FLAG_INIT;
59
60 LLVMTargetRef ac_get_llvm_target(const char *triple)
61 {
62 LLVMTargetRef target = NULL;
63 char *err_message = NULL;
64
65 call_once(&ac_init_llvm_target_once_flag, ac_init_llvm_target);
66
67 if (LLVMGetTargetFromTriple(triple, &target, &err_message)) {
68 fprintf(stderr, "Cannot find target for triple %s ", triple);
69 if (err_message) {
70 fprintf(stderr, "%s\n", err_message);
71 }
72 LLVMDisposeMessage(err_message);
73 return NULL;
74 }
75 return target;
76 }
77
78 const char *ac_get_llvm_processor_name(enum radeon_family family)
79 {
80 switch (family) {
81 case CHIP_TAHITI:
82 return "tahiti";
83 case CHIP_PITCAIRN:
84 return "pitcairn";
85 case CHIP_VERDE:
86 return "verde";
87 case CHIP_OLAND:
88 return "oland";
89 case CHIP_HAINAN:
90 return "hainan";
91 case CHIP_BONAIRE:
92 return "bonaire";
93 case CHIP_KABINI:
94 return "kabini";
95 case CHIP_KAVERI:
96 return "kaveri";
97 case CHIP_HAWAII:
98 return "hawaii";
99 case CHIP_MULLINS:
100 return "mullins";
101 case CHIP_TONGA:
102 return "tonga";
103 case CHIP_ICELAND:
104 return "iceland";
105 case CHIP_CARRIZO:
106 return "carrizo";
107 case CHIP_FIJI:
108 return "fiji";
109 case CHIP_STONEY:
110 return "stoney";
111 case CHIP_POLARIS10:
112 return "polaris10";
113 case CHIP_POLARIS11:
114 case CHIP_POLARIS12:
115 return "polaris11";
116 case CHIP_VEGA10:
117 case CHIP_RAVEN:
118 return "gfx900";
119 default:
120 return "";
121 }
122 }
123
124 LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family, enum ac_target_machine_options tm_options)
125 {
126 assert(family >= CHIP_TAHITI);
127 char features[256];
128 const char *triple = (tm_options & AC_TM_SUPPORTS_SPILL) ? "amdgcn-mesa-mesa3d" : "amdgcn--";
129 LLVMTargetRef target = ac_get_llvm_target(triple);
130
131 snprintf(features, sizeof(features),
132 "+DumpCode,+vgpr-spilling,-fp32-denormals,+fp64-denormals%s%s%s%s",
133 tm_options & AC_TM_SISCHED ? ",+si-scheduler" : "",
134 tm_options & AC_TM_FORCE_ENABLE_XNACK ? ",+xnack" : "",
135 tm_options & AC_TM_FORCE_DISABLE_XNACK ? ",-xnack" : "",
136 tm_options & AC_TM_PROMOTE_ALLOCA_TO_SCRATCH ? ",-promote-alloca" : "");
137
138 LLVMTargetMachineRef tm = LLVMCreateTargetMachine(
139 target,
140 triple,
141 ac_get_llvm_processor_name(family),
142 features,
143 LLVMCodeGenLevelDefault,
144 LLVMRelocDefault,
145 LLVMCodeModelDefault);
146
147 return tm;
148 }
149
150 static const char *attr_to_str(enum ac_func_attr attr)
151 {
152 switch (attr) {
153 case AC_FUNC_ATTR_ALWAYSINLINE: return "alwaysinline";
154 case AC_FUNC_ATTR_INREG: return "inreg";
155 case AC_FUNC_ATTR_NOALIAS: return "noalias";
156 case AC_FUNC_ATTR_NOUNWIND: return "nounwind";
157 case AC_FUNC_ATTR_READNONE: return "readnone";
158 case AC_FUNC_ATTR_READONLY: return "readonly";
159 case AC_FUNC_ATTR_WRITEONLY: return "writeonly";
160 case AC_FUNC_ATTR_INACCESSIBLE_MEM_ONLY: return "inaccessiblememonly";
161 case AC_FUNC_ATTR_CONVERGENT: return "convergent";
162 default:
163 fprintf(stderr, "Unhandled function attribute: %x\n", attr);
164 return 0;
165 }
166 }
167
168 void
169 ac_add_function_attr(LLVMContextRef ctx, LLVMValueRef function,
170 int attr_idx, enum ac_func_attr attr)
171 {
172 const char *attr_name = attr_to_str(attr);
173 unsigned kind_id = LLVMGetEnumAttributeKindForName(attr_name,
174 strlen(attr_name));
175 LLVMAttributeRef llvm_attr = LLVMCreateEnumAttribute(ctx, kind_id, 0);
176
177 if (LLVMIsAFunction(function))
178 LLVMAddAttributeAtIndex(function, attr_idx, llvm_attr);
179 else
180 LLVMAddCallSiteAttribute(function, attr_idx, llvm_attr);
181 }
182
183 void ac_add_func_attributes(LLVMContextRef ctx, LLVMValueRef function,
184 unsigned attrib_mask)
185 {
186 attrib_mask |= AC_FUNC_ATTR_NOUNWIND;
187 attrib_mask &= ~AC_FUNC_ATTR_LEGACY;
188
189 while (attrib_mask) {
190 enum ac_func_attr attr = 1u << u_bit_scan(&attrib_mask);
191 ac_add_function_attr(ctx, function, -1, attr);
192 }
193 }
194
195 void
196 ac_dump_module(LLVMModuleRef module)
197 {
198 char *str = LLVMPrintModuleToString(module);
199 fprintf(stderr, "%s", str);
200 LLVMDisposeMessage(str);
201 }
202
203 void
204 ac_llvm_add_target_dep_function_attr(LLVMValueRef F,
205 const char *name, int value)
206 {
207 char str[16];
208
209 snprintf(str, sizeof(str), "%i", value);
210 LLVMAddTargetDependentFunctionAttr(F, name, str);
211 }
212
213 unsigned
214 ac_count_scratch_private_memory(LLVMValueRef function)
215 {
216 unsigned private_mem_vgprs = 0;
217
218 /* Process all LLVM instructions. */
219 LLVMBasicBlockRef bb = LLVMGetFirstBasicBlock(function);
220 while (bb) {
221 LLVMValueRef next = LLVMGetFirstInstruction(bb);
222
223 while (next) {
224 LLVMValueRef inst = next;
225 next = LLVMGetNextInstruction(next);
226
227 if (LLVMGetInstructionOpcode(inst) != LLVMAlloca)
228 continue;
229
230 LLVMTypeRef type = LLVMGetElementType(LLVMTypeOf(inst));
231 /* No idea why LLVM aligns allocas to 4 elements. */
232 unsigned alignment = LLVMGetAlignment(inst);
233 unsigned dw_size = align(ac_get_type_size(type) / 4, alignment);
234 private_mem_vgprs += dw_size;
235 }
236 bb = LLVMGetNextBasicBlock(bb);
237 }
238
239 return private_mem_vgprs;
240 }