Spaces:
Sleeping
Sleeping
File size: 17,240 Bytes
66c9c8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | /** Copyright (c) 2023 NVIDIA CORPORATION. All rights reserved.
* NVIDIA CORPORATION and its licensors retain all intellectual property
* and proprietary rights in and to this software, related documentation
* and any modifications thereto. Any use, reproduction, disclosure or
* distribution of this software and related documentation without an express
* license agreement from NVIDIA CORPORATION is strictly prohibited.
*/
#include "../native/crt.h"
#include <clang/Frontend/CompilerInstance.h>
#include <clang/Basic/DiagnosticOptions.h>
#include <clang/Frontend/TextDiagnosticPrinter.h>
#include <clang/CodeGen/CodeGenAction.h>
#include <clang/Basic/TargetInfo.h>
#include <clang/Lex/PreprocessorOptions.h>
#include <llvm/Support/TargetSelect.h>
#include <llvm/IR/Module.h>
#include <llvm/IR/LLVMContext.h>
#include <llvm/ExecutionEngine/GenericValue.h>
#include <llvm/Target/TargetMachine.h>
#include <llvm/MC/TargetRegistry.h>
#include <llvm/Support/Host.h>
#include <llvm/PassRegistry.h>
#include <llvm/InitializePasses.h>
#include <llvm/IR/LegacyPassManager.h>
#include <llvm/IRReader/IRReader.h>
#include <llvm/Linker/Linker.h>
#include <llvm/ExecutionEngine/Orc/LLJIT.h>
#include <llvm/ExecutionEngine/JITEventListener.h>
#include <llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h>
#include <llvm/ExecutionEngine/Orc/ExecutionUtils.h>
#include <llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h>
#include <llvm/ExecutionEngine/Orc/TargetProcess/TargetExecutionUtils.h>
#include <llvm/ExecutionEngine/SectionMemoryManager.h>
#include <cmath>
#include <vector>
#include <iostream>
#include <string>
#include <cstring>
#if defined(_WIN64)
extern "C" void __chkstk();
#elif defined(__APPLE__)
extern "C" void __bzero(void*, size_t);
extern "C" __double2 __sincos_stret(double);
extern "C" __float2 __sincosf_stret(float);
#endif
extern "C" {
// GDB and LLDB support debugging of JIT-compiled code by observing calls to __jit_debug_register_code()
// by putting a breakpoint on it, and retrieving the debug info through __jit_debug_descriptor.
// On Linux it suffices for these symbols not to be stripped out, while for Windows a .pdb has to contain
// their information. LLVM defines them, but we don't want a huge .pdb with all LLVM source code's debug
// info. By forward-declaring them here it suffices to compile this file with /Zi.
extern struct jit_descriptor __jit_debug_descriptor;
extern void __jit_debug_register_code();
}
namespace wp {
#if defined (_WIN32)
// Windows defaults to using the COFF binary format (aka. "msvc" in the target triple).
// Override it to use the ELF format to support DWARF debug info, but keep using the
// Microsoft calling convention (see also https://llvm.org/docs/DebuggingJITedCode.html).
static const char* target_triple = "x86_64-pc-windows-elf";
#else
static const char* target_triple = LLVM_DEFAULT_TARGET_TRIPLE;
#endif
static void initialize_llvm()
{
llvm::InitializeAllTargetInfos();
llvm::InitializeAllTargets();
llvm::InitializeAllTargetMCs();
llvm::InitializeAllAsmPrinters();
}
static std::unique_ptr<llvm::Module> cpp_to_llvm(const std::string& input_file, const char* cpp_src, const char* include_dir, bool debug, llvm::LLVMContext& context)
{
// Compilation arguments
std::vector<const char*> args;
args.push_back(input_file.c_str());
args.push_back("-I");
args.push_back(include_dir);
args.push_back(debug ? "-O0" : "-O2");
args.push_back("-triple");
args.push_back(target_triple);
#if defined(__x86_64__) || defined(_M_X64)
args.push_back("-target-feature");
args.push_back("+f16c"); // Enables support for _Float16
#endif
clang::IntrusiveRefCntPtr<clang::DiagnosticOptions> diagnostic_options = new clang::DiagnosticOptions();
std::unique_ptr<clang::TextDiagnosticPrinter> text_diagnostic_printer =
std::make_unique<clang::TextDiagnosticPrinter>(llvm::errs(), &*diagnostic_options);
clang::IntrusiveRefCntPtr<clang::DiagnosticIDs> diagnostic_ids;
std::unique_ptr<clang::DiagnosticsEngine> diagnostic_engine =
std::make_unique<clang::DiagnosticsEngine>(diagnostic_ids, &*diagnostic_options, text_diagnostic_printer.release());
clang::CompilerInstance compiler_instance;
auto& compiler_invocation = compiler_instance.getInvocation();
clang::CompilerInvocation::CreateFromArgs(compiler_invocation, args, *diagnostic_engine.release());
if(debug)
{
compiler_invocation.getCodeGenOpts().setDebugInfo(clang::codegenoptions::FullDebugInfo);
}
// Map code to a MemoryBuffer
std::unique_ptr<llvm::MemoryBuffer> buffer = llvm::MemoryBuffer::getMemBufferCopy(cpp_src);
compiler_invocation.getPreprocessorOpts().addRemappedFile(input_file.c_str(), buffer.get());
if(!debug)
{
compiler_instance.getPreprocessorOpts().addMacroDef("NDEBUG");
}
compiler_instance.getLangOpts().MicrosoftExt = 1; // __forceinline / __int64
compiler_instance.getLangOpts().DeclSpecKeyword = 1; // __declspec
compiler_instance.createDiagnostics(text_diagnostic_printer.get(), false);
clang::EmitLLVMOnlyAction emit_llvm_only_action(&context);
bool success = compiler_instance.ExecuteAction(emit_llvm_only_action);
buffer.release();
return success ? std::move(emit_llvm_only_action.takeModule()) : nullptr;
}
static std::unique_ptr<llvm::Module> cuda_to_llvm(const std::string& input_file, const char* cpp_src, const char* include_dir, bool debug, llvm::LLVMContext& context)
{
// Compilation arguments
std::vector<const char*> args;
args.push_back(input_file.c_str());
args.push_back("-I");
args.push_back(include_dir);
args.push_back(debug ? "-O0" : "-O2");
args.push_back("-triple");
args.push_back("nvptx64-nvidia-cuda");
args.push_back("-target-cpu");
args.push_back("sm_70");
clang::IntrusiveRefCntPtr<clang::DiagnosticOptions> diagnostic_options = new clang::DiagnosticOptions();
std::unique_ptr<clang::TextDiagnosticPrinter> text_diagnostic_printer =
std::make_unique<clang::TextDiagnosticPrinter>(llvm::errs(), &*diagnostic_options);
clang::IntrusiveRefCntPtr<clang::DiagnosticIDs> diagnostic_ids;
std::unique_ptr<clang::DiagnosticsEngine> diagnostic_engine =
std::make_unique<clang::DiagnosticsEngine>(diagnostic_ids, &*diagnostic_options, text_diagnostic_printer.release());
clang::CompilerInstance compiler_instance;
auto& compiler_invocation = compiler_instance.getInvocation();
clang::CompilerInvocation::CreateFromArgs(compiler_invocation, args, *diagnostic_engine.release());
if(debug)
{
compiler_invocation.getCodeGenOpts().setDebugInfo(clang::codegenoptions::FullDebugInfo);
}
// Map code to a MemoryBuffer
std::unique_ptr<llvm::MemoryBuffer> buffer = llvm::MemoryBuffer::getMemBufferCopy(cpp_src);
compiler_invocation.getPreprocessorOpts().addRemappedFile(input_file.c_str(), buffer.get());
// According to https://llvm.org/docs/CompileCudaWithLLVM.html, "Both clang and nvcc define `__CUDACC__` during CUDA compilation."
// But this normally happens in the __clang_cuda_runtime_wrapper.h header, which we don't include.
// The __CUDA__ and __CUDA_ARCH__ macros are internally defined by llvm-project/clang/lib/Frontend/InitPreprocessor.cpp
compiler_instance.getPreprocessorOpts().addMacroDef("__CUDACC__");
if(!debug)
{
compiler_instance.getPreprocessorOpts().addMacroDef("NDEBUG");
}
compiler_instance.getLangOpts().CUDA = 1;
compiler_instance.getLangOpts().CUDAIsDevice = 1;
compiler_instance.getLangOpts().CUDAAllowVariadicFunctions = 1;
compiler_instance.createDiagnostics(text_diagnostic_printer.get(), false);
clang::EmitLLVMOnlyAction emit_llvm_only_action(&context);
bool success = compiler_instance.ExecuteAction(emit_llvm_only_action);
buffer.release();
return success ? std::move(emit_llvm_only_action.takeModule()) : nullptr;
}
extern "C" {
WP_API int compile_cpp(const char* cpp_src, const char *input_file, const char* include_dir, const char* output_file, bool debug)
{
initialize_llvm();
llvm::LLVMContext context;
std::unique_ptr<llvm::Module> module = cpp_to_llvm(input_file, cpp_src, include_dir, debug, context);
if(!module)
{
return -1;
}
std::string error;
const llvm::Target* target = llvm::TargetRegistry::lookupTarget(target_triple, error);
const char* CPU = "generic";
const char* features = "";
llvm::TargetOptions target_options;
llvm::Reloc::Model relocation_model = llvm::Reloc::PIC_; // Position Independent Code
llvm::CodeModel::Model code_model = llvm::CodeModel::Large; // Don't make assumptions about displacement sizes
llvm::TargetMachine* target_machine = target->createTargetMachine(target_triple, CPU, features, target_options, relocation_model, code_model);
module->setDataLayout(target_machine->createDataLayout());
std::error_code error_code;
llvm::raw_fd_ostream output(output_file, error_code, llvm::sys::fs::OF_None);
llvm::legacy::PassManager pass_manager;
llvm::CodeGenFileType file_type = llvm::CGFT_ObjectFile;
target_machine->addPassesToEmitFile(pass_manager, output, nullptr, file_type);
pass_manager.run(*module);
output.flush();
delete target_machine;
return 0;
}
WP_API int compile_cuda(const char* cpp_src, const char *input_file, const char* include_dir, const char* output_file, bool debug)
{
initialize_llvm();
llvm::LLVMContext context;
std::unique_ptr<llvm::Module> module = cuda_to_llvm(input_file, cpp_src, include_dir, debug, context);
if(!module)
{
return -1;
}
std::string error;
const llvm::Target* target = llvm::TargetRegistry::lookupTarget("nvptx64-nvidia-cuda", error);
const char* CPU = "sm_70";
const char* features = "+ptx75"; // Warp requires CUDA 11.5, which supports PTX ISA 7.5
llvm::TargetOptions target_options;
llvm::Reloc::Model relocation_model = llvm::Reloc::PIC_;
llvm::TargetMachine* target_machine = target->createTargetMachine("nvptx64-nvidia-cuda", CPU, features, target_options, relocation_model);
module->setDataLayout(target_machine->createDataLayout());
// Link libdevice
llvm::SMDiagnostic diagnostic;
std::string libdevice_path = std::string(include_dir) + "/libdevice/libdevice.10.bc";
std::unique_ptr<llvm::Module> libdevice(llvm::parseIRFile(libdevice_path, diagnostic, context));
if(!libdevice)
{
return -1;
}
llvm::Linker linker(*module.get());
if(linker.linkInModule(std::move(libdevice), llvm::Linker::Flags::LinkOnlyNeeded) == true)
{
return -1;
}
std::error_code error_code;
llvm::raw_fd_ostream output(output_file, error_code, llvm::sys::fs::OF_None);
llvm::legacy::PassManager pass_manager;
llvm::CodeGenFileType file_type = llvm::CGFT_AssemblyFile;
target_machine->addPassesToEmitFile(pass_manager, output, nullptr, file_type);
pass_manager.run(*module);
output.flush();
delete target_machine;
return 0;
}
// Global JIT instance
static llvm::orc::LLJIT* jit = nullptr;
// Load an object file into an in-memory DLL named `module_name`
WP_API int load_obj(const char* object_file, const char* module_name)
{
if(!jit)
{
initialize_llvm();
auto jit_expected = llvm::orc::LLJITBuilder()
.setObjectLinkingLayerCreator(
[&](llvm::orc::ExecutionSession &session, const llvm::Triple &triple) {
auto get_memory_manager = []() {
return std::make_unique<llvm::SectionMemoryManager>();
};
auto obj_linking_layer = std::make_unique<llvm::orc::RTDyldObjectLinkingLayer>(session, std::move(get_memory_manager));
// Register the event listener.
obj_linking_layer->registerJITEventListener(*llvm::JITEventListener::createGDBRegistrationListener());
// Make sure the debug info sections aren't stripped.
obj_linking_layer->setProcessAllSections(true);
return obj_linking_layer;
})
.create();
if(!jit_expected)
{
std::cerr << "Failed to create JIT instance: " << toString(jit_expected.takeError()) << std::endl;
return -1;
}
jit = (*jit_expected).release();
}
auto dll = jit->createJITDylib(module_name);
if(!dll)
{
std::cerr << "Failed to create JITDylib: " << toString(dll.takeError()) << std::endl;
return -1;
}
// Define symbols for Warp's CRT functions subset
{
#if defined(__APPLE__)
#define MANGLING_PREFIX "_"
#else
#define MANGLING_PREFIX ""
#endif
const auto flags = llvm::JITSymbolFlags::Exported | llvm::JITSymbolFlags::Absolute;
#define SYMBOL(sym) { jit->getExecutionSession().intern(MANGLING_PREFIX #sym), { llvm::pointerToJITTargetAddress(&::sym), flags} }
#define SYMBOL_T(sym, T) { jit->getExecutionSession().intern(MANGLING_PREFIX #sym), { llvm::pointerToJITTargetAddress(static_cast<T>(&::sym)), flags} }
auto error = dll->define(llvm::orc::absoluteSymbols({
SYMBOL(printf), SYMBOL(puts), SYMBOL(putchar),
SYMBOL_T(abs, int(*)(int)), SYMBOL(llabs),
SYMBOL(fmodf), SYMBOL_T(fmod, double(*)(double, double)),
SYMBOL(logf), SYMBOL_T(log, double(*)(double)),
SYMBOL(log2f), SYMBOL_T(log2, double(*)(double)),
SYMBOL(log10f), SYMBOL_T(log10, double(*)(double)),
SYMBOL(expf), SYMBOL_T(exp, double(*)(double)),
SYMBOL(sqrtf), SYMBOL_T(sqrt, double(*)(double)),
SYMBOL(cbrtf), SYMBOL_T(cbrt, double(*)(double)),
SYMBOL(powf), SYMBOL_T(pow, double(*)(double, double)),
SYMBOL(floorf), SYMBOL_T(floor, double(*)(double)),
SYMBOL(ceilf), SYMBOL_T(ceil, double(*)(double)),
SYMBOL(fabsf), SYMBOL_T(fabs, double(*)(double)),
SYMBOL(roundf), SYMBOL_T(round, double(*)(double)),
SYMBOL(truncf), SYMBOL_T(trunc, double(*)(double)),
SYMBOL(rintf), SYMBOL_T(rint, double(*)(double)),
SYMBOL(acosf), SYMBOL_T(acos, double(*)(double)),
SYMBOL(asinf), SYMBOL_T(asin, double(*)(double)),
SYMBOL(atanf), SYMBOL_T(atan, double(*)(double)),
SYMBOL(atan2f), SYMBOL_T(atan2, double(*)(double, double)),
SYMBOL(cosf), SYMBOL_T(cos, double(*)(double)),
SYMBOL(sinf), SYMBOL_T(sin, double(*)(double)),
SYMBOL(tanf), SYMBOL_T(tan, double(*)(double)),
SYMBOL(sinhf), SYMBOL_T(sinh, double(*)(double)),
SYMBOL(coshf), SYMBOL_T(cosh, double(*)(double)),
SYMBOL(tanhf), SYMBOL_T(tanh, double(*)(double)),
SYMBOL(fmaf),
SYMBOL(memcpy), SYMBOL(memset), SYMBOL(memmove),
SYMBOL(_wp_assert),
SYMBOL(_wp_isfinite),
#if defined(_WIN64)
// For functions with large stack frames the compiler will emit a call to
// __chkstk() to linearly touch each memory page. This grows the stack without
// triggering the stack overflow guards.
SYMBOL(__chkstk),
#elif defined(__APPLE__)
SYMBOL(__bzero),
SYMBOL(__sincos_stret), SYMBOL(__sincosf_stret),
#else
SYMBOL(sincosf), SYMBOL_T(sincos, void(*)(double,double*,double*)),
#endif
}));
if(error)
{
std::cerr << "Failed to define symbols: " << llvm::toString(std::move(error)) << std::endl;
return -1;
}
}
// Load the object file into a memory buffer
auto buffer = llvm::MemoryBuffer::getFile(object_file);
if(!buffer)
{
std::cerr << "Failed to load object file: " << buffer.getError().message() << std::endl;
return -1;
}
auto err = jit->addObjectFile(*dll, std::move(*buffer));
if(err)
{
std::cerr << "Failed to add object file: " << llvm::toString(std::move(err)) << std::endl;
return -1;
}
return 0;
}
WP_API int unload_obj(const char* module_name)
{
if(!jit) // If there's no JIT instance there are no object files loaded
{
return 0;
}
auto* dll = jit->getJITDylibByName(module_name);
llvm::Error error = jit->getExecutionSession().removeJITDylib(*dll);
if(error)
{
std::cerr << "Failed to unload: " << llvm::toString(std::move(error)) << std::endl;
return -1;
}
return 0;
}
WP_API uint64_t lookup(const char* dll_name, const char* function_name)
{
auto* dll = jit->getJITDylibByName(dll_name);
auto func = jit->lookup(*dll, function_name);
if(!func)
{
std::cerr << "Failed to lookup symbol: " << llvm::toString(func.takeError()) << std::endl;
return 0;
}
return func->getValue();
}
} // extern "C"
} // namespace wp
|