Halide 21.0.0
Halide compiler and libraries
Loading...
Searching...
No Matches
LLVM_Runtime_Linker.h
Go to the documentation of this file.
1#ifndef HALIDE_LLVM_RUNTIME_LINKER_H
2#define HALIDE_LLVM_RUNTIME_LINKER_H
3
4/** \file
5 * Support for linking LLVM modules that comprise the runtime.
6 */
7
8#include <cstdint>
9#include <memory>
10#include <string>
11#include <vector>
12
13namespace llvm {
14class GlobalValue;
15class Module;
16class LLVMContext;
17class Triple;
18} // namespace llvm
19
20namespace Halide {
21
22struct Target;
23
24namespace Internal {
25
26/** Return the llvm::Triple that corresponds to the given Halide Target */
27llvm::Triple get_triple_for_target(const Target &target);
28
29/** Create an llvm module containing the support code for a given target. */
30std::unique_ptr<llvm::Module> get_initial_module_for_target(Target, llvm::LLVMContext *, bool for_shared_jit_runtime = false, bool just_gpu = false);
31
32/** Create an llvm module containing the support code for ptx device. */
33std::unique_ptr<llvm::Module> get_initial_module_for_ptx_device(Target, llvm::LLVMContext *c);
34
35/** Link a block of llvm bitcode into an llvm module. */
36void add_bitcode_to_module(llvm::LLVMContext *context, llvm::Module &module,
37 const std::vector<uint8_t> &bitcode, const std::string &name);
38
39/** Take the llvm::Module(s) in extra_modules (if any), add the runtime modules needed for the WASM JIT,
40 * and link into a single llvm::Module. */
41std::unique_ptr<llvm::Module> link_with_wasm_jit_runtime(llvm::LLVMContext *c, const Target &t,
42 std::unique_ptr<llvm::Module> extra_module);
43
44} // namespace Internal
45} // namespace Halide
46
47#endif
llvm::Triple get_triple_for_target(const Target &target)
Return the llvm::Triple that corresponds to the given Halide Target.
std::unique_ptr< llvm::Module > get_initial_module_for_ptx_device(Target, llvm::LLVMContext *c)
Create an llvm module containing the support code for ptx device.
std::unique_ptr< llvm::Module > link_with_wasm_jit_runtime(llvm::LLVMContext *c, const Target &t, std::unique_ptr< llvm::Module > extra_module)
Take the llvm::Module(s) in extra_modules (if any), add the runtime modules needed for the WASM JIT,...
std::unique_ptr< llvm::Module > get_initial_module_for_target(Target, llvm::LLVMContext *, bool for_shared_jit_runtime=false, bool just_gpu=false)
Create an llvm module containing the support code for a given target.
void add_bitcode_to_module(llvm::LLVMContext *context, llvm::Module &module, const std::vector< uint8_t > &bitcode, const std::string &name)
Link a block of llvm bitcode into an llvm module.
This file defines the class FunctionDAG, which is our representation of a Halide pipeline,...
A struct representing a target machine and os to generate code for.
Definition Target.h:19