Merge remote-tracking branch 'mesa-public/master' into vulkan
[mesa.git] / src / gallium / state_trackers / clover / llvm / invocation.cpp
1 //
2 // Copyright 2012 Francisco Jerez
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a
5 // copy of this software and associated documentation files (the "Software"),
6 // to deal in the Software without restriction, including without limitation
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 // and/or sell copies of the Software, and to permit persons to whom the
9 // Software is furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 // OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 // OTHER DEALINGS IN THE SOFTWARE.
21 //
22
23 #include "core/compiler.hpp"
24
25 #include <clang/Frontend/CompilerInstance.h>
26 #include <clang/Frontend/TextDiagnosticBuffer.h>
27 #include <clang/Frontend/TextDiagnosticPrinter.h>
28 #include <clang/CodeGen/CodeGenAction.h>
29 #include <clang/Basic/TargetInfo.h>
30 #include <llvm/Bitcode/BitstreamWriter.h>
31 #include <llvm/Bitcode/ReaderWriter.h>
32 #include <llvm/Linker/Linker.h>
33 #include <llvm/IR/DiagnosticInfo.h>
34 #include <llvm/IR/DiagnosticPrinter.h>
35 #include <llvm/IR/DerivedTypes.h>
36 #include <llvm/IR/LLVMContext.h>
37 #include <llvm/IR/Module.h>
38 #include <llvm/Support/SourceMgr.h>
39 #include <llvm/IRReader/IRReader.h>
40 #if HAVE_LLVM >= 0x0307
41 #include <llvm/IR/LegacyPassManager.h>
42 #else
43 #include <llvm/PassManager.h>
44 #endif
45 #include <llvm/Support/CodeGen.h>
46 #include <llvm/Support/TargetSelect.h>
47 #include <llvm/Support/MemoryBuffer.h>
48 #include <llvm/Support/FormattedStream.h>
49 #include <llvm/Support/TargetRegistry.h>
50 #include <llvm/Transforms/IPO.h>
51 #include <llvm/Transforms/IPO/PassManagerBuilder.h>
52 #include <llvm/Transforms/Utils/Cloning.h>
53
54
55 #include <llvm/IR/DataLayout.h>
56 #if HAVE_LLVM >= 0x0307
57 #include <llvm/Analysis/TargetLibraryInfo.h>
58 #else
59 #include <llvm/Target/TargetLibraryInfo.h>
60 #endif
61 #include <llvm/Target/TargetMachine.h>
62 #include <llvm/Target/TargetOptions.h>
63
64 #include <llvm-c/Target.h>
65 #include <llvm-c/TargetMachine.h>
66 #include <llvm-c/Core.h>
67
68 #include "pipe/p_state.h"
69 #include "util/u_memory.h"
70 #include "util/u_math.h"
71
72 #include <iostream>
73 #include <iomanip>
74 #include <fstream>
75 #include <cstdio>
76 #include <sstream>
77 #include <libelf.h>
78 #include <gelf.h>
79
80 using namespace clover;
81
82 namespace {
83 #if 0
84 void
85 build_binary(const std::string &source, const std::string &target,
86 const std::string &name) {
87 clang::CompilerInstance c;
88 clang::EmitObjAction act(&llvm::getGlobalContext());
89 std::string log;
90 llvm::raw_string_ostream s_log(log);
91
92 LLVMInitializeTGSITarget();
93 LLVMInitializeTGSITargetInfo();
94 LLVMInitializeTGSITargetMC();
95 LLVMInitializeTGSIAsmPrinter();
96
97 c.getFrontendOpts().Inputs.push_back(
98 std::make_pair(clang::IK_OpenCL, name));
99 c.getHeaderSearchOpts().UseBuiltinIncludes = false;
100 c.getHeaderSearchOpts().UseStandardIncludes = false;
101 c.getLangOpts().NoBuiltin = true;
102 c.getTargetOpts().Triple = target;
103 c.getInvocation().setLangDefaults(clang::IK_OpenCL);
104 c.createDiagnostics(0, NULL, new clang::TextDiagnosticPrinter(
105 s_log, c.getDiagnosticOpts()));
106
107 c.getPreprocessorOpts().addRemappedFile(
108 name, llvm::MemoryBuffer::getMemBuffer(source));
109
110 if (!c.ExecuteAction(act))
111 throw compile_error(log);
112 }
113
114 module
115 load_binary(const char *name) {
116 std::ifstream fs((name));
117 std::vector<unsigned char> str((std::istreambuf_iterator<char>(fs)),
118 (std::istreambuf_iterator<char>()));
119 compat::istream cs(str);
120 return module::deserialize(cs);
121 }
122 #endif
123 void debug_log(const std::string &msg, const std::string &suffix) {
124 const char *dbg_file = debug_get_option("CLOVER_DEBUG_FILE", "stderr");
125 if (!strcmp("stderr", dbg_file)) {
126 std::cerr << msg;
127 } else {
128 std::ofstream file(dbg_file + suffix, std::ios::app);
129 file << msg;
130 }
131 }
132
133 llvm::Module *
134 compile_llvm(llvm::LLVMContext &llvm_ctx, const std::string &source,
135 const header_map &headers,
136 const std::string &name, const std::string &triple,
137 const std::string &processor, const std::string &opts,
138 clang::LangAS::Map& address_spaces, unsigned &optimization_level,
139 std::string &r_log) {
140
141 clang::CompilerInstance c;
142 clang::EmitLLVMOnlyAction act(&llvm_ctx);
143 std::string log;
144 llvm::raw_string_ostream s_log(log);
145 std::string libclc_path = LIBCLC_LIBEXECDIR + processor + "-"
146 + triple + ".bc";
147
148 // Parse the compiler options:
149 std::vector<std::string> opts_array;
150 std::istringstream ss(opts);
151
152 while (!ss.eof()) {
153 std::string opt;
154 getline(ss, opt, ' ');
155 opts_array.push_back(opt);
156 }
157
158 opts_array.push_back(name);
159
160 std::vector<const char *> opts_carray;
161 for (unsigned i = 0; i < opts_array.size(); i++) {
162 opts_carray.push_back(opts_array.at(i).c_str());
163 }
164
165 llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs> DiagID;
166 llvm::IntrusiveRefCntPtr<clang::DiagnosticOptions> DiagOpts;
167 clang::TextDiagnosticBuffer *DiagsBuffer;
168
169 DiagID = new clang::DiagnosticIDs();
170 DiagOpts = new clang::DiagnosticOptions();
171 DiagsBuffer = new clang::TextDiagnosticBuffer();
172
173 clang::DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagsBuffer);
174 bool Success;
175
176 Success = clang::CompilerInvocation::CreateFromArgs(c.getInvocation(),
177 opts_carray.data(),
178 opts_carray.data() + opts_carray.size(),
179 Diags);
180 if (!Success) {
181 throw error(CL_INVALID_COMPILER_OPTIONS);
182 }
183 c.getFrontendOpts().ProgramAction = clang::frontend::EmitLLVMOnly;
184 c.getHeaderSearchOpts().UseBuiltinIncludes = true;
185 c.getHeaderSearchOpts().UseStandardSystemIncludes = true;
186 c.getHeaderSearchOpts().ResourceDir = CLANG_RESOURCE_DIR;
187
188 // Add libclc generic search path
189 c.getHeaderSearchOpts().AddPath(LIBCLC_INCLUDEDIR,
190 clang::frontend::Angled,
191 false, false
192 );
193
194 // Add libclc include
195 c.getPreprocessorOpts().Includes.push_back("clc/clc.h");
196
197 // clc.h requires that this macro be defined:
198 c.getPreprocessorOpts().addMacroDef("cl_clang_storage_class_specifiers");
199
200 c.getLangOpts().NoBuiltin = true;
201 c.getTargetOpts().Triple = triple;
202 c.getTargetOpts().CPU = processor;
203
204 // This is a workaround for a Clang bug which causes the number
205 // of warnings and errors to be printed to stderr.
206 // http://www.llvm.org/bugs/show_bug.cgi?id=19735
207 c.getDiagnosticOpts().ShowCarets = false;
208 c.getInvocation().setLangDefaults(c.getLangOpts(), clang::IK_OpenCL,
209 clang::LangStandard::lang_opencl11);
210 c.createDiagnostics(
211 new clang::TextDiagnosticPrinter(
212 s_log,
213 &c.getDiagnosticOpts()));
214
215 #if HAVE_LLVM >= 0x0306
216 c.getPreprocessorOpts().addRemappedFile(name,
217 llvm::MemoryBuffer::getMemBuffer(source).release());
218 #else
219 c.getPreprocessorOpts().addRemappedFile(name,
220 llvm::MemoryBuffer::getMemBuffer(source));
221 #endif
222
223 if (headers.size()) {
224 const std::string tmp_header_path = "/tmp/clover/";
225
226 c.getHeaderSearchOpts().AddPath(tmp_header_path,
227 clang::frontend::Angled,
228 false, false
229 );
230
231 for (header_map::const_iterator it = headers.begin();
232 it != headers.end(); ++it) {
233 const std::string path = tmp_header_path + std::string(it->first);
234 c.getPreprocessorOpts().addRemappedFile(path,
235 #if HAVE_LLVM >= 0x0306
236 llvm::MemoryBuffer::getMemBuffer(it->second.c_str()).release());
237 #else
238 llvm::MemoryBuffer::getMemBuffer(it->second.c_str()));
239 #endif
240 }
241 }
242
243 // Setting this attribute tells clang to link this file before
244 // performing any optimizations. This is required so that
245 // we can replace calls to the OpenCL C barrier() builtin
246 // with calls to target intrinsics that have the noduplicate
247 // attribute. This attribute will prevent Clang from creating
248 // illegal uses of barrier() (e.g. Moving barrier() inside a conditional
249 // that is no executed by all threads) during its optimizaton passes.
250 c.getCodeGenOpts().LinkBitcodeFile = libclc_path;
251
252 optimization_level = c.getCodeGenOpts().OptimizationLevel;
253
254 // Compile the code
255 bool ExecSuccess = c.ExecuteAction(act);
256 r_log = log;
257
258 if (!ExecSuccess)
259 throw compile_error();
260
261 // Get address spaces map to be able to find kernel argument address space
262 memcpy(address_spaces, c.getTarget().getAddressSpaceMap(),
263 sizeof(address_spaces));
264
265 #if HAVE_LLVM >= 0x0306
266 return act.takeModule().release();
267 #else
268 return act.takeModule();
269 #endif
270 }
271
272 std::vector<llvm::Function *>
273 find_kernels(const llvm::Module *mod) {
274 const llvm::NamedMDNode *kernel_node =
275 mod->getNamedMetadata("opencl.kernels");
276 // This means there are no kernels in the program. The spec does not
277 // require that we return an error here, but there will be an error if
278 // the user tries to pass this program to a clCreateKernel() call.
279 if (!kernel_node) {
280 return std::vector<llvm::Function *>();
281 }
282
283 std::vector<llvm::Function *> kernels;
284 kernels.reserve(kernel_node->getNumOperands());
285 for (unsigned i = 0; i < kernel_node->getNumOperands(); ++i) {
286 #if HAVE_LLVM >= 0x0306
287 kernels.push_back(llvm::mdconst::dyn_extract<llvm::Function>(
288 #else
289 kernels.push_back(llvm::dyn_cast<llvm::Function>(
290 #endif
291 kernel_node->getOperand(i)->getOperand(0)));
292 }
293 return kernels;
294 }
295
296 void
297 optimize(llvm::Module *mod, unsigned optimization_level) {
298
299 #if HAVE_LLVM >= 0x0307
300 llvm::legacy::PassManager PM;
301 #else
302 llvm::PassManager PM;
303 #endif
304
305 const std::vector<llvm::Function *> kernels = find_kernels(mod);
306
307 // Add a function internalizer pass.
308 //
309 // By default, the function internalizer pass will look for a function
310 // called "main" and then mark all other functions as internal. Marking
311 // functions as internal enables the optimizer to perform optimizations
312 // like function inlining and global dead-code elimination.
313 //
314 // When there is no "main" function in a module, the internalize pass will
315 // treat the module like a library, and it won't internalize any functions.
316 // Since there is no "main" function in our kernels, we need to tell
317 // the internalizer pass that this module is not a library by passing a
318 // list of kernel functions to the internalizer. The internalizer will
319 // treat the functions in the list as "main" functions and internalize
320 // all of the other functions.
321 std::vector<const char*> export_list;
322 for (std::vector<llvm::Function *>::const_iterator I = kernels.begin(),
323 E = kernels.end();
324 I != E; ++I) {
325 llvm::Function *kernel = *I;
326 export_list.push_back(kernel->getName().data());
327 }
328 #if HAVE_LLVM < 0x0306
329 PM.add(new llvm::DataLayoutPass(mod));
330 #elif HAVE_LLVM < 0x0307
331 PM.add(new llvm::DataLayoutPass());
332 #endif
333 PM.add(llvm::createInternalizePass(export_list));
334
335 llvm::PassManagerBuilder PMB;
336 PMB.OptLevel = optimization_level;
337 #if HAVE_LLVM < 0x0307
338 PMB.LibraryInfo = new llvm::TargetLibraryInfo(
339 #else
340 PMB.LibraryInfo = new llvm::TargetLibraryInfoImpl(
341 #endif
342 llvm::Triple(mod->getTargetTriple()));
343 PMB.populateModulePassManager(PM);
344 PM.run(*mod);
345 }
346
347 // Kernel metadata
348
349 struct kernel_arg_md {
350 llvm::StringRef type_name;
351 llvm::StringRef access_qual;
352 kernel_arg_md(llvm::StringRef type_name_, llvm::StringRef access_qual_):
353 type_name(type_name_), access_qual(access_qual_) {}
354 };
355
356 #if HAVE_LLVM >= 0x0306
357
358 const llvm::MDNode *
359 get_kernel_metadata(const llvm::Function *kernel_func) {
360 auto mod = kernel_func->getParent();
361 auto kernels_node = mod->getNamedMetadata("opencl.kernels");
362 if (!kernels_node) {
363 return nullptr;
364 }
365
366 const llvm::MDNode *kernel_node = nullptr;
367 for (unsigned i = 0; i < kernels_node->getNumOperands(); ++i) {
368 auto func = llvm::mdconst::dyn_extract<llvm::Function>(
369 kernels_node->getOperand(i)->getOperand(0));
370 if (func == kernel_func) {
371 kernel_node = kernels_node->getOperand(i);
372 break;
373 }
374 }
375
376 return kernel_node;
377 }
378
379 llvm::MDNode*
380 node_from_op_checked(const llvm::MDOperand &md_operand,
381 llvm::StringRef expect_name,
382 unsigned expect_num_args)
383 {
384 auto node = llvm::cast<llvm::MDNode>(md_operand);
385 assert(node->getNumOperands() == expect_num_args &&
386 "Wrong number of operands.");
387
388 auto str_node = llvm::cast<llvm::MDString>(node->getOperand(0));
389 assert(str_node->getString() == expect_name &&
390 "Wrong metadata node name.");
391
392 return node;
393 }
394
395 std::vector<kernel_arg_md>
396 get_kernel_arg_md(const llvm::Function *kernel_func) {
397 auto num_args = kernel_func->getArgumentList().size();
398
399 auto kernel_node = get_kernel_metadata(kernel_func);
400 auto aq = node_from_op_checked(kernel_node->getOperand(2),
401 "kernel_arg_access_qual", num_args + 1);
402 auto ty = node_from_op_checked(kernel_node->getOperand(3),
403 "kernel_arg_type", num_args + 1);
404
405 std::vector<kernel_arg_md> res;
406 res.reserve(num_args);
407 for (unsigned i = 0; i < num_args; ++i) {
408 res.push_back(kernel_arg_md(
409 llvm::cast<llvm::MDString>(ty->getOperand(i+1))->getString(),
410 llvm::cast<llvm::MDString>(aq->getOperand(i+1))->getString()));
411 }
412
413 return res;
414 }
415
416 #else
417
418 std::vector<kernel_arg_md>
419 get_kernel_arg_md(const llvm::Function *kernel_func) {
420 return std::vector<kernel_arg_md>(
421 kernel_func->getArgumentList().size(),
422 kernel_arg_md("", ""));
423 }
424
425 #endif // HAVE_LLVM >= 0x0306
426
427 std::vector<module::argument>
428 get_kernel_args(const llvm::Module *mod, const std::string &kernel_name,
429 const clang::LangAS::Map &address_spaces) {
430
431 std::vector<module::argument> args;
432 llvm::Function *kernel_func = mod->getFunction(kernel_name);
433 assert(kernel_func && "Kernel name not found in module.");
434 auto arg_md = get_kernel_arg_md(kernel_func);
435
436 llvm::DataLayout TD(mod);
437 llvm::Type *size_type =
438 TD.getSmallestLegalIntType(mod->getContext(), sizeof(cl_uint) * 8);
439
440 for (const auto &arg: kernel_func->args()) {
441
442 llvm::Type *arg_type = arg.getType();
443 const unsigned arg_store_size = TD.getTypeStoreSize(arg_type);
444
445 // OpenCL 1.2 specification, Ch. 6.1.5: "A built-in data
446 // type that is not a power of two bytes in size must be
447 // aligned to the next larger power of two". We need this
448 // alignment for three element vectors, which have
449 // non-power-of-2 store size.
450 const unsigned arg_api_size = util_next_power_of_two(arg_store_size);
451
452 llvm::Type *target_type = arg_type->isIntegerTy() ?
453 TD.getSmallestLegalIntType(mod->getContext(), arg_store_size * 8)
454 : arg_type;
455 unsigned target_size = TD.getTypeStoreSize(target_type);
456 unsigned target_align = TD.getABITypeAlignment(target_type);
457
458 llvm::StringRef type_name = arg_md[arg.getArgNo()].type_name;
459 llvm::StringRef access_qual = arg_md[arg.getArgNo()].access_qual;
460
461 // Image
462 const bool is_image2d = type_name == "image2d_t";
463 const bool is_image3d = type_name == "image3d_t";
464 if (is_image2d || is_image3d) {
465 const bool is_write_only = access_qual == "write_only";
466 const bool is_read_only = access_qual == "read_only";
467
468 typename module::argument::type marg_type;
469 if (is_image2d && is_read_only) {
470 marg_type = module::argument::image2d_rd;
471 } else if (is_image2d && is_write_only) {
472 marg_type = module::argument::image2d_wr;
473 } else if (is_image3d && is_read_only) {
474 marg_type = module::argument::image3d_rd;
475 } else if (is_image3d && is_write_only) {
476 marg_type = module::argument::image3d_wr;
477 } else {
478 assert(0 && "Wrong image access qualifier");
479 }
480
481 args.push_back(module::argument(marg_type,
482 arg_store_size, target_size,
483 target_align,
484 module::argument::zero_ext));
485 continue;
486 }
487
488 // Image size implicit argument
489 if (type_name == "__llvm_image_size") {
490 args.push_back(module::argument(module::argument::scalar,
491 sizeof(cl_uint),
492 TD.getTypeStoreSize(size_type),
493 TD.getABITypeAlignment(size_type),
494 module::argument::zero_ext,
495 module::argument::image_size));
496 continue;
497 }
498
499 // Image format implicit argument
500 if (type_name == "__llvm_image_format") {
501 args.push_back(module::argument(module::argument::scalar,
502 sizeof(cl_uint),
503 TD.getTypeStoreSize(size_type),
504 TD.getABITypeAlignment(size_type),
505 module::argument::zero_ext,
506 module::argument::image_format));
507 continue;
508 }
509
510 // Other types
511 if (llvm::isa<llvm::PointerType>(arg_type) && arg.hasByValAttr()) {
512 arg_type =
513 llvm::dyn_cast<llvm::PointerType>(arg_type)->getElementType();
514 }
515
516 if (arg_type->isPointerTy()) {
517 unsigned address_space = llvm::cast<llvm::PointerType>(arg_type)->getAddressSpace();
518 if (address_space == address_spaces[clang::LangAS::opencl_local
519 - clang::LangAS::Offset]) {
520 args.push_back(module::argument(module::argument::local,
521 arg_api_size, target_size,
522 target_align,
523 module::argument::zero_ext));
524 } else {
525 // XXX: Correctly handle constant address space. There is no
526 // way for r600g to pass a handle for constant buffers back
527 // to clover like it can for global buffers, so
528 // creating constant arguments will break r600g. For now,
529 // continue treating constant buffers as global buffers
530 // until we can come up with a way to create handles for
531 // constant buffers.
532 args.push_back(module::argument(module::argument::global,
533 arg_api_size, target_size,
534 target_align,
535 module::argument::zero_ext));
536 }
537
538 } else {
539 llvm::AttributeSet attrs = kernel_func->getAttributes();
540 enum module::argument::ext_type ext_type =
541 (attrs.hasAttribute(arg.getArgNo() + 1,
542 llvm::Attribute::SExt) ?
543 module::argument::sign_ext :
544 module::argument::zero_ext);
545
546 args.push_back(
547 module::argument(module::argument::scalar, arg_api_size,
548 target_size, target_align, ext_type));
549 }
550 }
551
552 // Append implicit arguments. XXX - The types, ordering and
553 // vector size of the implicit arguments should depend on the
554 // target according to the selected calling convention.
555 args.push_back(
556 module::argument(module::argument::scalar, sizeof(cl_uint),
557 TD.getTypeStoreSize(size_type),
558 TD.getABITypeAlignment(size_type),
559 module::argument::zero_ext,
560 module::argument::grid_dimension));
561
562 args.push_back(
563 module::argument(module::argument::scalar, sizeof(cl_uint),
564 TD.getTypeStoreSize(size_type),
565 TD.getABITypeAlignment(size_type),
566 module::argument::zero_ext,
567 module::argument::grid_offset));
568
569 return args;
570 }
571
572 module
573 build_module_llvm(llvm::Module *mod,
574 clang::LangAS::Map& address_spaces) {
575
576 module m;
577 struct pipe_llvm_program_header header;
578
579 llvm::SmallVector<char, 1024> llvm_bitcode;
580 llvm::raw_svector_ostream bitcode_ostream(llvm_bitcode);
581 llvm::BitstreamWriter writer(llvm_bitcode);
582 llvm::WriteBitcodeToFile(mod, bitcode_ostream);
583 #if HAVE_LLVM < 0x0308
584 bitcode_ostream.flush();
585 #endif
586
587 const std::vector<llvm::Function *> kernels = find_kernels(mod);
588 for (unsigned i = 0; i < kernels.size(); ++i) {
589 std::string kernel_name = kernels[i]->getName();
590 std::vector<module::argument> args =
591 get_kernel_args(mod, kernel_name, address_spaces);
592
593 m.syms.push_back(module::symbol(kernel_name, 0, i, args ));
594 }
595
596 header.num_bytes = llvm_bitcode.size();
597 std::vector<char> data;
598 data.insert(data.end(), (char*)(&header),
599 (char*)(&header) + sizeof(header));
600 data.insert(data.end(), llvm_bitcode.begin(),
601 llvm_bitcode.end());
602 m.secs.push_back(module::section(0, module::section::text,
603 header.num_bytes, data));
604
605 return m;
606 }
607
608 void
609 emit_code(LLVMTargetMachineRef tm, LLVMModuleRef mod,
610 LLVMCodeGenFileType file_type,
611 LLVMMemoryBufferRef *out_buffer,
612 std::string &r_log) {
613 LLVMBool err;
614 char *err_message = NULL;
615
616 err = LLVMTargetMachineEmitToMemoryBuffer(tm, mod, file_type,
617 &err_message, out_buffer);
618
619 if (err) {
620 r_log = std::string(err_message);
621 }
622
623 LLVMDisposeMessage(err_message);
624
625 if (err) {
626 throw compile_error();
627 }
628 }
629
630 std::vector<char>
631 compile_native(const llvm::Module *mod, const std::string &triple,
632 const std::string &processor, unsigned dump_asm,
633 std::string &r_log) {
634
635 std::string log;
636 LLVMTargetRef target;
637 char *error_message;
638 LLVMMemoryBufferRef out_buffer;
639 unsigned buffer_size;
640 const char *buffer_data;
641 LLVMModuleRef mod_ref = wrap(mod);
642
643 if (LLVMGetTargetFromTriple(triple.c_str(), &target, &error_message)) {
644 r_log = std::string(error_message);
645 LLVMDisposeMessage(error_message);
646 throw compile_error();
647 }
648
649 LLVMTargetMachineRef tm = LLVMCreateTargetMachine(
650 target, triple.c_str(), processor.c_str(), "",
651 LLVMCodeGenLevelDefault, LLVMRelocDefault, LLVMCodeModelDefault);
652
653 if (!tm) {
654 r_log = "Could not create TargetMachine: " + triple;
655 throw compile_error();
656 }
657
658 if (dump_asm) {
659 LLVMSetTargetMachineAsmVerbosity(tm, true);
660 LLVMModuleRef debug_mod = wrap(llvm::CloneModule(mod));
661 emit_code(tm, debug_mod, LLVMAssemblyFile, &out_buffer, r_log);
662 buffer_size = LLVMGetBufferSize(out_buffer);
663 buffer_data = LLVMGetBufferStart(out_buffer);
664 debug_log(std::string(buffer_data, buffer_size), ".asm");
665
666 LLVMSetTargetMachineAsmVerbosity(tm, false);
667 LLVMDisposeMemoryBuffer(out_buffer);
668 LLVMDisposeModule(debug_mod);
669 }
670
671 emit_code(tm, mod_ref, LLVMObjectFile, &out_buffer, r_log);
672
673 buffer_size = LLVMGetBufferSize(out_buffer);
674 buffer_data = LLVMGetBufferStart(out_buffer);
675
676 std::vector<char> code(buffer_data, buffer_data + buffer_size);
677
678 LLVMDisposeMemoryBuffer(out_buffer);
679 LLVMDisposeTargetMachine(tm);
680
681 return code;
682 }
683
684 std::map<std::string, unsigned>
685 get_kernel_offsets(std::vector<char> &code,
686 const std::vector<llvm::Function *> &kernels,
687 std::string &r_log) {
688
689 // One of the libelf implementations
690 // (http://www.mr511.de/software/english.htm) requires calling
691 // elf_version() before elf_memory().
692 //
693 elf_version(EV_CURRENT);
694
695 Elf *elf = elf_memory(&code[0], code.size());
696 size_t section_str_index;
697 elf_getshdrstrndx(elf, &section_str_index);
698 Elf_Scn *section = NULL;
699 Elf_Scn *symtab = NULL;
700 GElf_Shdr symtab_header;
701
702 // Find the symbol table
703 try {
704 while ((section = elf_nextscn(elf, section))) {
705 const char *name;
706 if (gelf_getshdr(section, &symtab_header) != &symtab_header) {
707 r_log = "Failed to read ELF section header.";
708 throw compile_error();
709 }
710 name = elf_strptr(elf, section_str_index, symtab_header.sh_name);
711 if (!strcmp(name, ".symtab")) {
712 symtab = section;
713 break;
714 }
715 }
716 if (!symtab) {
717 r_log = "Unable to find symbol table.";
718 throw compile_error();
719 }
720 } catch (compile_error &e) {
721 elf_end(elf);
722 throw e;
723 }
724
725
726 // Extract symbol information from the table
727 Elf_Data *symtab_data = NULL;
728 GElf_Sym *symbol;
729 GElf_Sym s;
730
731 std::map<std::string, unsigned> kernel_offsets;
732 symtab_data = elf_getdata(symtab, symtab_data);
733
734 // Determine the offsets for each kernel
735 for (int i = 0; (symbol = gelf_getsym(symtab_data, i, &s)); i++) {
736 char *name = elf_strptr(elf, symtab_header.sh_link, symbol->st_name);
737 for (std::vector<llvm::Function*>::const_iterator it = kernels.begin(),
738 e = kernels.end(); it != e; ++it) {
739 llvm::Function *f = *it;
740 if (f->getName() == std::string(name))
741 kernel_offsets[f->getName()] = symbol->st_value;
742 }
743 }
744 elf_end(elf);
745 return kernel_offsets;
746 }
747
748 module
749 build_module_native(std::vector<char> &code,
750 const llvm::Module *mod,
751 const clang::LangAS::Map &address_spaces,
752 std::string &r_log) {
753
754 const std::vector<llvm::Function *> kernels = find_kernels(mod);
755
756 std::map<std::string, unsigned> kernel_offsets =
757 get_kernel_offsets(code, kernels, r_log);
758
759 // Begin building the clover module
760 module m;
761 struct pipe_llvm_program_header header;
762
763 // Store the generated ELF binary in the module's text section.
764 header.num_bytes = code.size();
765 std::vector<char> data;
766 data.insert(data.end(), (char*)(&header),
767 (char*)(&header) + sizeof(header));
768 data.insert(data.end(), code.begin(), code.end());
769 m.secs.push_back(module::section(0, module::section::text,
770 header.num_bytes, data));
771
772 for (std::map<std::string, unsigned>::iterator i = kernel_offsets.begin(),
773 e = kernel_offsets.end(); i != e; ++i) {
774 std::vector<module::argument> args =
775 get_kernel_args(mod, i->first, address_spaces);
776 m.syms.push_back(module::symbol(i->first, 0, i->second, args ));
777 }
778
779 return m;
780 }
781
782 void
783 diagnostic_handler(const llvm::DiagnosticInfo &di, void *data) {
784 if (di.getSeverity() == llvm::DS_Error) {
785 std::string message = *(std::string*)data;
786 llvm::raw_string_ostream stream(message);
787 llvm::DiagnosticPrinterRawOStream dp(stream);
788 di.print(dp);
789 stream.flush();
790 *(std::string*)data = message;
791
792 throw compile_error();
793 }
794 }
795
796 void
797 init_targets() {
798 static bool targets_initialized = false;
799 if (!targets_initialized) {
800 LLVMInitializeAllTargets();
801 LLVMInitializeAllTargetInfos();
802 LLVMInitializeAllTargetMCs();
803 LLVMInitializeAllAsmPrinters();
804 targets_initialized = true;
805 }
806 }
807
808 #define DBG_CLC (1 << 0)
809 #define DBG_LLVM (1 << 1)
810 #define DBG_ASM (1 << 2)
811
812 unsigned
813 get_debug_flags() {
814 static const struct debug_named_value debug_options[] = {
815 {"clc", DBG_CLC, "Dump the OpenCL C code for all kernels."},
816 {"llvm", DBG_LLVM, "Dump the generated LLVM IR for all kernels."},
817 {"asm", DBG_ASM, "Dump kernel assembly code for targets specifying "
818 "PIPE_SHADER_IR_NATIVE"},
819 DEBUG_NAMED_VALUE_END // must be last
820 };
821 static const unsigned debug_flags =
822 debug_get_flags_option("CLOVER_DEBUG", debug_options, 0);
823
824 return debug_flags;
825 }
826
827 } // End anonymous namespace
828
829 module
830 clover::compile_program_llvm(const std::string &source,
831 const header_map &headers,
832 enum pipe_shader_ir ir,
833 const std::string &target,
834 const std::string &opts,
835 std::string &r_log) {
836
837 init_targets();
838
839 size_t processor_str_len = std::string(target).find_first_of("-");
840 std::string processor(target, 0, processor_str_len);
841 std::string triple(target, processor_str_len + 1,
842 target.size() - processor_str_len - 1);
843 clang::LangAS::Map address_spaces;
844 llvm::LLVMContext llvm_ctx;
845 unsigned optimization_level;
846
847 llvm_ctx.setDiagnosticHandler(diagnostic_handler, &r_log);
848
849 if (get_debug_flags() & DBG_CLC)
850 debug_log("// Build options: " + opts + '\n' + source, ".cl");
851
852 // The input file name must have the .cl extension in order for the
853 // CompilerInvocation class to recognize it as an OpenCL source file.
854 llvm::Module *mod = compile_llvm(llvm_ctx, source, headers, "input.cl",
855 triple, processor, opts, address_spaces,
856 optimization_level, r_log);
857
858 optimize(mod, optimization_level);
859
860 if (get_debug_flags() & DBG_LLVM) {
861 std::string log;
862 llvm::raw_string_ostream s_log(log);
863 mod->print(s_log, NULL);
864 s_log.flush();
865 debug_log(log, ".ll");
866 }
867
868 module m;
869 // Build the clover::module
870 switch (ir) {
871 case PIPE_SHADER_IR_TGSI:
872 //XXX: Handle TGSI
873 assert(0);
874 m = module();
875 break;
876 case PIPE_SHADER_IR_LLVM:
877 m = build_module_llvm(mod, address_spaces);
878 break;
879 case PIPE_SHADER_IR_NATIVE: {
880 std::vector<char> code = compile_native(mod, triple, processor,
881 get_debug_flags() & DBG_ASM,
882 r_log);
883 m = build_module_native(code, mod, address_spaces, r_log);
884 break;
885 }
886 }
887 #if HAVE_LLVM >= 0x0306
888 // LLVM 3.6 and newer, the user takes ownership of the module.
889 delete mod;
890 #endif
891
892 return m;
893 }