/* * Copyright 2011 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Authors: Tom Stellard * */ #include "radeon_llvm_emit.h" #if HAVE_LLVM < 0x0303 #include #include #include #include #else #include #include #include #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace llvm; namespace { class LLVMEnsureMultithreaded { public: LLVMEnsureMultithreaded() { llvm_start_multithreaded(); } }; static LLVMEnsureMultithreaded lLVMEnsureMultithreaded; } /** * Set the shader type we want to compile * * @param type shader type to set */ extern "C" void radeon_llvm_shader_type(LLVMValueRef F, unsigned type) { Function *Func = unwrap(F); int Idx = AttributeSet::FunctionIndex; AttrBuilder B; char Str[2]; sprintf(Str, "%1d", type); B.addAttribute("ShaderType", Str); AttributeSet Set = AttributeSet::get(Func->getContext(), Idx, B); Func->addAttributes(Idx, Set); } /** * Compile an LLVM module to machine code. * * @param bytes This function allocates memory for the byte stream, it is the * caller's responsibility to free it. */ extern "C" unsigned radeon_llvm_compile(LLVMModuleRef M, unsigned char ** bytes, unsigned * byte_count, const char * gpu_family, unsigned dump) { Triple AMDGPUTriple(sys::getDefaultTargetTriple()); LLVMInitializeR600TargetInfo(); LLVMInitializeR600Target(); LLVMInitializeR600TargetMC(); LLVMInitializeR600AsmPrinter(); std::string err; const Target * AMDGPUTarget = TargetRegistry::lookupTarget("r600", err); if(!AMDGPUTarget) { fprintf(stderr, "Can't find target: %s\n", err.c_str()); return 1; } Triple::ArchType Arch = Triple::getArchTypeForLLVMName("r600"); if (Arch == Triple::UnknownArch) { fprintf(stderr, "Unknown Arch\n"); } AMDGPUTriple.setArch(Arch); Module * mod = unwrap(M); std::string FS; TargetOptions TO; if (dump) { mod->dump(); FS += "+DumpCode"; } std::auto_ptr tm(AMDGPUTarget->createTargetMachine( AMDGPUTriple.getTriple(), gpu_family, FS, TO, Reloc::Default, CodeModel::Default, CodeGenOpt::Default )); TargetMachine &AMDGPUTargetMachine = *tm.get(); PassManager PM; PM.add(new DataLayout(*AMDGPUTargetMachine.getDataLayout())); PM.add(createPromoteMemoryToRegisterPass()); AMDGPUTargetMachine.setAsmVerbosityDefault(true); std::string CodeString; raw_string_ostream oStream(CodeString); formatted_raw_ostream out(oStream); /* Optional extra paramater true / false to disable verify */ if (AMDGPUTargetMachine.addPassesToEmitFile(PM, out, TargetMachine::CGFT_ObjectFile, true)){ fprintf(stderr, "AddingPasses failed.\n"); return 1; } PM.run(*mod); out.flush(); std::string &data = oStream.str(); *bytes = (unsigned char*)malloc(data.length() * sizeof(unsigned char)); memcpy(*bytes, data.c_str(), data.length() * sizeof(unsigned char)); *byte_count = data.length(); return 0; }