mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 08:50:22 -05:00
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
//===--- CodeGen/ModuleBuilder.h - Build LLVM from ASTs ---------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the ModuleBuilder interface.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_CODEGEN_MODULEBUILDER_H
|
|
#define LLVM_CLANG_CODEGEN_MODULEBUILDER_H
|
|
|
|
#include "clang/AST/ASTConsumer.h"
|
|
#include <string>
|
|
|
|
namespace llvm {
|
|
class LLVMContext;
|
|
class Module;
|
|
}
|
|
|
|
namespace clang {
|
|
class Diagnostic;
|
|
class LangOptions;
|
|
class CodeGenOptions;
|
|
|
|
class CodeGenerator : public ASTConsumer {
|
|
public:
|
|
virtual llvm::Module* GetModule() = 0;
|
|
virtual llvm::Module* ReleaseModule() = 0;
|
|
};
|
|
|
|
CodeGenerator *CreateLLVMCodeGen(Diagnostic &Diags,
|
|
const std::string &ModuleName,
|
|
const CodeGenOptions &CGO,
|
|
llvm::LLVMContext& C);
|
|
}
|
|
|
|
#endif
|