|
LLVM
4.0.0
|
#include "llvm/LTO/legacy/ThinLTOCodeGenerator.h"#include "llvm/ADT/Statistic.h"#include "llvm/ADT/StringExtras.h"#include "llvm/Analysis/ModuleSummaryAnalysis.h"#include "llvm/Analysis/ProfileSummaryInfo.h"#include "llvm/Analysis/TargetLibraryInfo.h"#include "llvm/Analysis/TargetTransformInfo.h"#include "llvm/Bitcode/BitcodeReader.h"#include "llvm/Bitcode/BitcodeWriter.h"#include "llvm/Bitcode/BitcodeWriterPass.h"#include "llvm/ExecutionEngine/ObjectMemoryBuffer.h"#include "llvm/IR/DiagnosticPrinter.h"#include "llvm/IR/LLVMContext.h"#include "llvm/IR/LegacyPassManager.h"#include "llvm/IR/Mangler.h"#include "llvm/IRReader/IRReader.h"#include "llvm/LTO/LTO.h"#include "llvm/Linker/Linker.h"#include "llvm/MC/SubtargetFeature.h"#include "llvm/Object/IRObjectFile.h"#include "llvm/Object/ModuleSummaryIndexObjectFile.h"#include "llvm/Support/CachePruning.h"#include "llvm/Support/Debug.h"#include "llvm/Support/Error.h"#include "llvm/Support/Path.h"#include "llvm/Support/SHA1.h"#include "llvm/Support/TargetRegistry.h"#include "llvm/Support/ThreadPool.h"#include "llvm/Support/Threading.h"#include "llvm/Support/ToolOutputFile.h"#include "llvm/Target/TargetMachine.h"#include "llvm/Transforms/IPO.h"#include "llvm/Transforms/IPO/FunctionImport.h"#include "llvm/Transforms/IPO/Internalize.h"#include "llvm/Transforms/IPO/PassManagerBuilder.h"#include "llvm/Transforms/ObjCARC.h"#include "llvm/Transforms/Utils/FunctionImportUtils.h"#include <numeric>Go to the source code of this file.
Namespaces | |
| llvm | |
| Compute iterated dominance frontiers using a linear time algorithm. | |
Macros | |
| #define | DEBUG_TYPE "thinlto" |
Functions | |
| static std::string | writeGeneratedObject (int count, StringRef CacheEntryPath, StringRef SavedObjectsDirectoryPath, const MemoryBuffer &OutputBuffer) |
| Write out the generated object file, either from CacheEntryPath or from OutputBuffer, preferring hard-link when possible. More... | |
| #define DEBUG_TYPE "thinlto" |
Definition at line 62 of file ThinLTOCodeGenerator.cpp.
|
static |
Write out the generated object file, either from CacheEntryPath or from OutputBuffer, preferring hard-link when possible.
Returns the path to the generated file in SavedObjectsDirectoryPath.
Definition at line 797 of file ThinLTOCodeGenerator.cpp.
References llvm::sys::path::append(), llvm::SmallString< InternalLen >::c_str(), llvm::sys::fs::copy_file(), llvm::sys::fs::create_hard_link(), llvm::StringRef::empty(), llvm::errs(), llvm::sys::fs::exists(), llvm::sys::fs::F_None, llvm::MemoryBuffer::getBuffer(), llvm::sys::fs::remove(), llvm::report_fatal_error(), and llvm::SmallString< InternalLen >::str().
Referenced by llvm::ThinLTOCodeGenerator::run().
1.8.6