clang 22.0.0git
ModuleBuilder.h
Go to the documentation of this file.
1//===--- CodeGen/ModuleBuilder.h - Build LLVM from ASTs ---------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the ModuleBuilder interface.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_CODEGEN_MODULEBUILDER_H
14#define LLVM_CLANG_CODEGEN_MODULEBUILDER_H
15
17#include "clang/Basic/LLVM.h"
18#include "llvm/ADT/StringRef.h"
19
20namespace llvm {
21 class Constant;
22 class LLVMContext;
23 class Module;
24 class StringRef;
25
26 namespace vfs {
27 class FileSystem;
28 }
29}
30
31// Prefix of the name of the artificial inline frame.
32inline constexpr llvm::StringRef ClangTrapPrefix = "__clang_trap_msg";
33
34namespace clang {
35 class CodeGenOptions;
36 class CoverageSourceInfo;
37 class Decl;
38 class DiagnosticsEngine;
39 class GlobalDecl;
40 class HeaderSearchOptions;
41 class LangOptions;
42 class PreprocessorOptions;
43
44namespace CodeGen {
45 class CodeGenModule;
46 class CGDebugInfo;
47}
48
49/// The primary public interface to the Clang code generator.
50///
51/// This is not really an abstract interface.
52class CodeGenerator : public ASTConsumer {
53 virtual void anchor();
54
55protected:
56 /// True if we've finished generating IR. This prevents us from generating
57 /// additional LLVM IR after emitting output in HandleTranslationUnit. This
58 /// can happen when Clang plugins trigger additional AST deserialization.
59 bool IRGenFinished = false;
60
61public:
62 /// Return an opaque reference to the CodeGenModule object, which can
63 /// be used in various secondary APIs. It is valid as long as the
64 /// CodeGenerator exists.
66
67 /// Return the module that this code generator is building into.
68 ///
69 /// This may return null after HandleTranslationUnit is called;
70 /// this signifies that there was an error generating code. A
71 /// diagnostic will have been generated in this case, and the module
72 /// will be deleted.
73 ///
74 /// It will also return null if the module is released.
75 llvm::Module *GetModule();
76
77 /// Release ownership of the module to the caller.
78 ///
79 /// It is illegal to call methods other than GetModule on the
80 /// CodeGenerator after releasing its module.
81 llvm::Module *ReleaseModule();
82
83 /// Return debug info code generator.
85
86 /// Given a mangled name, return a declaration which mangles that way
87 /// which has been added to this code generator via a Handle method.
88 ///
89 /// This may return null if there was no matching declaration.
90 const Decl *GetDeclForMangledName(llvm::StringRef MangledName);
91
92 /// Given a global declaration, return a mangled name for this declaration
93 /// which has been added to this code generator via a Handle method.
94 llvm::StringRef GetMangledName(GlobalDecl GD);
95
96 /// Return the LLVM address of the given global entity.
97 ///
98 /// \param isForDefinition If true, the caller intends to define the
99 /// entity; the object returned will be an llvm::GlobalValue of
100 /// some sort. If false, the caller just intends to use the entity;
101 /// the object returned may be any sort of constant value, and the
102 /// code generator will schedule the entity for emission if a
103 /// definition has been registered with this code generator.
104 llvm::Constant *GetAddrOfGlobal(GlobalDecl decl, bool isForDefinition);
105
106 /// Create a new \c llvm::Module after calling HandleTranslationUnit. This
107 /// enable codegen in interactive processing environments.
108 llvm::Module* StartModule(llvm::StringRef ModuleName, llvm::LLVMContext &C);
109};
110
111/// CreateLLVMCodeGen - Create a CodeGenerator instance.
112/// It is the responsibility of the caller to call delete on
113/// the allocated CodeGenerator instance.
115 llvm::StringRef ModuleName,
117 const HeaderSearchOptions &HeaderSearchOpts,
118 const PreprocessorOptions &PreprocessorOpts,
119 const CodeGenOptions &CGO,
120 llvm::LLVMContext &C,
121 CoverageSourceInfo *CoverageInfo = nullptr);
122
123} // end namespace clang
124
125#endif
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
constexpr llvm::StringRef ClangTrapPrefix
ASTConsumer()=default
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
This class gathers all debug information during compilation and is responsible for emitting to llvm g...
Definition CGDebugInfo.h:59
This class organizes the cross-function state that is used while generating LLVM code.
The primary public interface to the Clang code generator.
llvm::Module * ReleaseModule()
Release ownership of the module to the caller.
const Decl * GetDeclForMangledName(llvm::StringRef MangledName)
Given a mangled name, return a declaration which mangles that way which has been added to this code g...
llvm::Module * StartModule(llvm::StringRef ModuleName, llvm::LLVMContext &C)
Create a new llvm::Module after calling HandleTranslationUnit.
llvm::Constant * GetAddrOfGlobal(GlobalDecl decl, bool isForDefinition)
Return the LLVM address of the given global entity.
llvm::StringRef GetMangledName(GlobalDecl GD)
Given a global declaration, return a mangled name for this declaration which has been added to this c...
CodeGen::CGDebugInfo * getCGDebugInfo()
Return debug info code generator.
bool IRGenFinished
True if we've finished generating IR.
CodeGen::CodeGenModule & CGM()
Return an opaque reference to the CodeGenModule object, which can be used in various secondary APIs.
llvm::Module * GetModule()
Return the module that this code generator is building into.
Stores additional source code information like skipped ranges which is required by the coverage mappi...
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
Concrete class used by the front-end to report problems and issues.
Definition Diagnostic.h:232
GlobalDecl - represents a global declaration.
Definition GlobalDecl.h:57
HeaderSearchOptions - Helper class for storing options related to the initialization of the HeaderSea...
PreprocessorOptions - This class is used for passing the various options used in preprocessor initial...
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
The JSON file list parser is used to communicate input to InstallAPI.
CodeGenerator * CreateLLVMCodeGen(DiagnosticsEngine &Diags, llvm::StringRef ModuleName, IntrusiveRefCntPtr< llvm::vfs::FileSystem > FS, const HeaderSearchOptions &HeaderSearchOpts, const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, llvm::LLVMContext &C, CoverageSourceInfo *CoverageInfo=nullptr)
CreateLLVMCodeGen - Create a CodeGenerator instance.
@ Module
Module linkage, which indicates that the entity can be referred to from other translation units withi...
Definition Linkage.h:54
Diagnostic wrappers for TextAPI types for error reporting.
Definition Dominators.h:30