radeonsi: drop support for LLVM 3.8
[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 "util/bitscan.h"
28 #include <llvm-c/Core.h>
29 #include <llvm-c/Support.h>
30 #include "c11/threads.h"
31
32 #include <assert.h>
33 #include <stdio.h>
34 #include <string.h>
35
36 static void ac_init_llvm_target()
37 {
38 LLVMInitializeAMDGPUTargetInfo();
39 LLVMInitializeAMDGPUTarget();
40 LLVMInitializeAMDGPUTargetMC();
41 LLVMInitializeAMDGPUAsmPrinter();
42
43 /*
44 * Workaround for bug in llvm 4.0 that causes image intrinsics
45 * to disappear.
46 * https://reviews.llvm.org/D26348
47 */
48 #if HAVE_LLVM >= 0x0400
49 const char *argv[2] = {"mesa", "-simplifycfg-sink-common=false"};
50 LLVMParseCommandLineOptions(2, argv, NULL);
51 #endif
52
53 }
54
55 static once_flag ac_init_llvm_target_once_flag = ONCE_FLAG_INIT;
56
57 static LLVMTargetRef ac_get_llvm_target(const char *triple)
58 {
59 LLVMTargetRef target = NULL;
60 char *err_message = NULL;
61
62 call_once(&ac_init_llvm_target_once_flag, ac_init_llvm_target);
63
64 if (LLVMGetTargetFromTriple(triple, &target, &err_message)) {
65 fprintf(stderr, "Cannot find target for triple %s ", triple);
66 if (err_message) {
67 fprintf(stderr, "%s\n", err_message);
68 }
69 LLVMDisposeMessage(err_message);
70 return NULL;
71 }
72 return target;
73 }
74
75 static const char *ac_get_llvm_processor_name(enum radeon_family family)
76 {
77 switch (family) {
78 case CHIP_TAHITI:
79 return "tahiti";
80 case CHIP_PITCAIRN:
81 return "pitcairn";
82 case CHIP_VERDE:
83 return "verde";
84 case CHIP_OLAND:
85 return "oland";
86 case CHIP_HAINAN:
87 return "hainan";
88 case CHIP_BONAIRE:
89 return "bonaire";
90 case CHIP_KABINI:
91 return "kabini";
92 case CHIP_KAVERI:
93 return "kaveri";
94 case CHIP_HAWAII:
95 return "hawaii";
96 case CHIP_MULLINS:
97 return "mullins";
98 case CHIP_TONGA:
99 return "tonga";
100 case CHIP_ICELAND:
101 return "iceland";
102 case CHIP_CARRIZO:
103 return "carrizo";
104 case CHIP_FIJI:
105 return "fiji";
106 case CHIP_STONEY:
107 return "stoney";
108 case CHIP_POLARIS10:
109 return "polaris10";
110 case CHIP_POLARIS11:
111 return "polaris11";
112 default:
113 return "";
114 }
115 }
116
117 LLVMTargetMachineRef ac_create_target_machine(enum radeon_family family, bool supports_spill)
118 {
119 assert(family >= CHIP_TAHITI);
120
121 const char *triple = supports_spill ? "amdgcn-mesa-mesa3d" : "amdgcn--";
122 LLVMTargetRef target = ac_get_llvm_target(triple);
123 LLVMTargetMachineRef tm = LLVMCreateTargetMachine(
124 target,
125 triple,
126 ac_get_llvm_processor_name(family),
127 "+DumpCode,+vgpr-spilling,-fp32-denormals,-xnack",
128 LLVMCodeGenLevelDefault,
129 LLVMRelocDefault,
130 LLVMCodeModelDefault);
131
132 return tm;
133 }
134
135
136 #if HAVE_LLVM < 0x0400
137 static LLVMAttribute ac_attr_to_llvm_attr(enum ac_func_attr attr)
138 {
139 switch (attr) {
140 case AC_FUNC_ATTR_ALWAYSINLINE: return LLVMAlwaysInlineAttribute;
141 case AC_FUNC_ATTR_BYVAL: return LLVMByValAttribute;
142 case AC_FUNC_ATTR_INREG: return LLVMInRegAttribute;
143 case AC_FUNC_ATTR_NOALIAS: return LLVMNoAliasAttribute;
144 case AC_FUNC_ATTR_NOUNWIND: return LLVMNoUnwindAttribute;
145 case AC_FUNC_ATTR_READNONE: return LLVMReadNoneAttribute;
146 case AC_FUNC_ATTR_READONLY: return LLVMReadOnlyAttribute;
147 default:
148 fprintf(stderr, "Unhandled function attribute: %x\n", attr);
149 return 0;
150 }
151 }
152
153 #else
154
155 static const char *attr_to_str(enum ac_func_attr attr)
156 {
157 switch (attr) {
158 case AC_FUNC_ATTR_ALWAYSINLINE: return "alwaysinline";
159 case AC_FUNC_ATTR_BYVAL: return "byval";
160 case AC_FUNC_ATTR_INREG: return "inreg";
161 case AC_FUNC_ATTR_NOALIAS: return "noalias";
162 case AC_FUNC_ATTR_NOUNWIND: return "nounwind";
163 case AC_FUNC_ATTR_READNONE: return "readnone";
164 case AC_FUNC_ATTR_READONLY: return "readonly";
165 case AC_FUNC_ATTR_WRITEONLY: return "writeonly";
166 case AC_FUNC_ATTR_INACCESSIBLE_MEM_ONLY: return "inaccessiblememonly";
167 case AC_FUNC_ATTR_CONVERGENT: return "convergent";
168 default:
169 fprintf(stderr, "Unhandled function attribute: %x\n", attr);
170 return 0;
171 }
172 }
173
174 #endif
175
176 void
177 ac_add_function_attr(LLVMContextRef ctx, LLVMValueRef function,
178 int attr_idx, enum ac_func_attr attr)
179 {
180 #if HAVE_LLVM < 0x0400
181 LLVMAttribute llvm_attr = ac_attr_to_llvm_attr(attr);
182 if (attr_idx == -1) {
183 LLVMAddFunctionAttr(function, llvm_attr);
184 } else {
185 LLVMAddAttribute(LLVMGetParam(function, attr_idx - 1), llvm_attr);
186 }
187 #else
188 const char *attr_name = attr_to_str(attr);
189 unsigned kind_id = LLVMGetEnumAttributeKindForName(attr_name,
190 strlen(attr_name));
191 LLVMAttributeRef llvm_attr = LLVMCreateEnumAttribute(ctx, kind_id, 0);
192
193 if (LLVMIsAFunction(function))
194 LLVMAddAttributeAtIndex(function, attr_idx, llvm_attr);
195 else
196 LLVMAddCallSiteAttribute(function, attr_idx, llvm_attr);
197 #endif
198 }
199
200 void ac_add_func_attributes(LLVMContextRef ctx, LLVMValueRef function,
201 unsigned attrib_mask)
202 {
203 attrib_mask |= AC_FUNC_ATTR_NOUNWIND;
204 attrib_mask &= ~AC_FUNC_ATTR_LEGACY;
205
206 while (attrib_mask) {
207 enum ac_func_attr attr = 1u << u_bit_scan(&attrib_mask);
208 ac_add_function_attr(ctx, function, -1, attr);
209 }
210 }
211
212 void
213 ac_dump_module(LLVMModuleRef module)
214 {
215 char *str = LLVMPrintModuleToString(module);
216 fprintf(stderr, "%s", str);
217 LLVMDisposeMessage(str);
218 }