clang API Documentation

Functions
CompilerInstance.cpp File Reference
#include "clang/Frontend/CompilerInstance.h"
#include "clang/AST/ASTConsumer.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/Decl.h"
#include "clang/Basic/Diagnostic.h"
#include "clang/Basic/FileManager.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Basic/TargetInfo.h"
#include "clang/Basic/Version.h"
#include "clang/Config/config.h"
#include "clang/Frontend/ChainedDiagnosticConsumer.h"
#include "clang/Frontend/FrontendAction.h"
#include "clang/Frontend/FrontendActions.h"
#include "clang/Frontend/FrontendDiagnostic.h"
#include "clang/Frontend/LogDiagnosticPrinter.h"
#include "clang/Frontend/SerializedDiagnosticPrinter.h"
#include "clang/Frontend/TextDiagnosticPrinter.h"
#include "clang/Frontend/Utils.h"
#include "clang/Frontend/VerifyDiagnosticConsumer.h"
#include "clang/Lex/HeaderSearch.h"
#include "clang/Lex/PTHManager.h"
#include "clang/Lex/Preprocessor.h"
#include "clang/Sema/CodeCompleteConsumer.h"
#include "clang/Sema/Sema.h"
#include "clang/Serialization/ASTReader.h"
#include "clang/Serialization/GlobalModuleIndex.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/CrashRecoveryContext.h"
#include "llvm/Support/Errc.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Host.h"
#include "llvm/Support/LockFileManager.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/Program.h"
#include "llvm/Support/Signals.h"
#include "llvm/Support/Timer.h"
#include "llvm/Support/raw_ostream.h"
#include <sys/stat.h>
#include <system_error>
#include <time.h>
Include dependency graph for CompilerInstance.cpp:

Go to the source code of this file.

Functions

static void SetUpDiagnosticLog (DiagnosticOptions *DiagOpts, const CodeGenOptions *CodeGenOpts, DiagnosticsEngine &Diags)
static void SetupSerializedDiagnostics (DiagnosticOptions *DiagOpts, DiagnosticsEngine &Diags, StringRef OutputFile)
static void InitializeFileRemapping (DiagnosticsEngine &Diags, SourceManager &SourceMgr, FileManager &FileMgr, const PreprocessorOptions &InitOpts)
static bool EnableCodeCompletion (Preprocessor &PP, const std::string &Filename, unsigned Line, unsigned Column)
static InputKind getSourceInputKindFromOptions (const LangOptions &LangOpts)
 Determine the appropriate source input kind based on language options.
static bool compileModuleImpl (CompilerInstance &ImportingInstance, SourceLocation ImportLoc, Module *Module, StringRef ModuleFileName)
 Compile a module file for the given module, using the options provided by the importing compiler instance. Returns true if the module was built without errors.
static bool compileAndLoadModule (CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, StringRef ModuleFileName)
static void checkConfigMacro (Preprocessor &PP, StringRef ConfigMacro, Module *Mod, SourceLocation ImportLoc)
 Diagnose differences between the current definition of the given configuration macro and the definition provided on the command line.
static void writeTimestampFile (StringRef TimestampFile)
 Write a new timestamp file with the given path.
static void pruneModuleCache (const HeaderSearchOptions &HSOpts)
 Prune the module cache of modules that haven't been accessed in a long time.

Function Documentation

static void checkConfigMacro ( Preprocessor PP,
StringRef  ConfigMacro,
Module Mod,
SourceLocation  ImportLoc 
) [static]
static bool compileAndLoadModule ( CompilerInstance ImportingInstance,
SourceLocation  ImportLoc,
SourceLocation  ModuleNameLoc,
Module Module,
StringRef  ModuleFileName 
) [static]
static bool compileModuleImpl ( CompilerInstance ImportingInstance,
SourceLocation  ImportLoc,
Module Module,
StringRef  ModuleFileName 
) [static]

Compile a module file for the given module, using the options provided by the importing compiler instance. Returns true if the module was built without errors.

Definition at line 850 of file CompilerInstance.cpp.

References clang::FrontendOptions::DisableFree, clang::PreprocessorOptions::FailedModules, clang::FrontendOptions::GenerateGlobalModuleIndex, clang::ModuleMap::getContainingModuleMapFile(), clang::CompilerInstance::getDiagnosticClient(), clang::CompilerInstance::getDiagnostics(), clang::CompilerInstance::getFileManager(), clang::CompilerInstance::getFrontendOpts(), clang::Preprocessor::getHeaderSearchInfo(), clang::CompilerInstance::getInvocation(), clang::SourceManager::getModuleBuildStack(), clang::CompilerInstance::getModuleDepCollector(), clang::CompilerInvocation::getModuleHash(), clang::HeaderSearch::getModuleMap(), clang::ModuleMap::getModuleMapFileForUniquing(), clang::CompilerInstance::getPreprocessor(), clang::CompilerInvocationBase::getPreprocessorOpts(), getSourceInputKindFromOptions(), clang::CompilerInstance::getSourceManager(), clang::Module::getTopLevelModuleName(), clang::CompilerInstance::getVirtualFileSystem(), clang::FrontendOptions::Inputs, clang::Module::IsSystem, clang::PreprocessorOptions::Macros, clang::HeaderSearchOptions::ModulesIgnoreMacros, clang::Module::Name, clang::FrontendOptions::OutputFile, clang::SourceManager::overrideFileContents(), clang::Module::print(), clang::SourceManager::pushModuleBuildStack(), clang::DiagnosticsEngine::Report(), clang::PreprocessorOptions::resetNonModularOptions(), clang::PreprocessorOptions::RetainRemappedFileBuffers, clang::CompilerInstance::setBuildGlobalModuleIndex(), clang::SourceManager::setModuleBuildStack(), and SourceMgr.

Referenced by compileAndLoadModule().

static bool EnableCodeCompletion ( Preprocessor PP,
const std::string &  Filename,
unsigned  Line,
unsigned  Column 
) [static]
static InputKind getSourceInputKindFromOptions ( const LangOptions LangOpts) [static]

Determine the appropriate source input kind based on language options.

Definition at line 837 of file CompilerInstance.cpp.

References clang::IK_C, clang::IK_CUDA, clang::IK_CXX, clang::IK_ObjC, clang::IK_ObjCXX, and clang::IK_OpenCL.

Referenced by compileModuleImpl().

static void InitializeFileRemapping ( DiagnosticsEngine Diags,
SourceManager SourceMgr,
FileManager FileMgr,
const PreprocessorOptions InitOpts 
) [static]
static void pruneModuleCache ( const HeaderSearchOptions HSOpts) [static]
static void SetUpDiagnosticLog ( DiagnosticOptions DiagOpts,
const CodeGenOptions CodeGenOpts,
DiagnosticsEngine Diags 
) [static]
static void SetupSerializedDiagnostics ( DiagnosticOptions DiagOpts,
DiagnosticsEngine Diags,
StringRef  OutputFile 
) [static]
static void writeTimestampFile ( StringRef  TimestampFile) [static]

Write a new timestamp file with the given path.

Definition at line 1142 of file CompilerInstance.cpp.

Referenced by pruneModuleCache().