#ifndef HALIDE_LLVM_OUTPUTS_H
#define HALIDE_LLVM_OUTPUTS_H
#include <string>
#include <vector>
#include "Module.h"
#include "Target.h"
#include "Util.h"
namespace llvm {
class Module;
class TargetOptions;
class LLVMContext;
class raw_fd_ostream;
class raw_pwrite_stream;
class raw_ostream;
}
namespace Halide {
namespace Internal {
typedef llvm::raw_pwrite_stream LLVMOStream;
}
EXPORT std::unique_ptr<llvm::Module> compile_module_to_llvm_module(const Module &module, llvm::LLVMContext &context);
std::unique_ptr<llvm::raw_fd_ostream> make_raw_fd_ostream(const std::string &filename);
EXPORT void compile_llvm_module_to_object(llvm::Module &module, Internal::LLVMOStream& out);
EXPORT void compile_llvm_module_to_assembly(llvm::Module &module, Internal::LLVMOStream& out);
EXPORT void compile_llvm_module_to_llvm_bitcode(llvm::Module &module, Internal::LLVMOStream& out);
EXPORT void compile_llvm_module_to_llvm_assembly(llvm::Module &module, Internal::LLVMOStream& out);
EXPORT void create_static_library(const std::vector<std::string> &src_files, const Target &target,
const std::string &dst_file, bool deterministic = true);
}
#endif