2008-02-26 20:26:43 +00:00
|
|
|
//===-LTOCodeGenerator.h - LLVM Link Time Optimizer -----------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the LTOCodeGenerator class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef LTO_CODE_GENERATOR_H
|
|
|
|
#define LTO_CODE_GENERATOR_H
|
|
|
|
|
|
|
|
#include "llvm/Linker.h"
|
2009-07-01 16:58:40 +00:00
|
|
|
#include "llvm/LLVMContext.h"
|
2008-02-26 20:26:43 +00:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2008-07-03 22:53:14 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2008-02-27 22:25:36 +00:00
|
|
|
#include <string>
|
2008-02-26 20:26:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// C++ class which implements the opaque lto_code_gen_t
|
|
|
|
//
|
2008-08-21 00:14:44 +00:00
|
|
|
|
2008-02-26 20:26:43 +00:00
|
|
|
class LTOCodeGenerator {
|
|
|
|
public:
|
|
|
|
static const char* getVersionString();
|
|
|
|
|
2009-07-02 00:31:14 +00:00
|
|
|
LTOCodeGenerator();
|
2008-02-26 20:26:43 +00:00
|
|
|
~LTOCodeGenerator();
|
|
|
|
|
|
|
|
bool addModule(class LTOModule*, std::string& errMsg);
|
|
|
|
bool setDebugInfo(lto_debug_model, std::string& errMsg);
|
|
|
|
bool setCodePICModel(lto_codegen_model, std::string& errMsg);
|
2009-06-04 00:28:45 +00:00
|
|
|
void setAssemblerPath(const char* path);
|
2008-02-26 20:26:43 +00:00
|
|
|
void addMustPreserveSymbol(const char* sym);
|
2008-02-27 22:25:36 +00:00
|
|
|
bool writeMergedModules(const char* path,
|
|
|
|
std::string& errMsg);
|
|
|
|
const void* compile(size_t* length, std::string& errMsg);
|
2008-07-08 21:14:10 +00:00
|
|
|
void setCodeGenDebugOptions(const char *opts);
|
2008-02-26 20:26:43 +00:00
|
|
|
private:
|
2009-07-14 20:18:05 +00:00
|
|
|
bool generateAssemblyCode(llvm::formatted_raw_ostream& out,
|
2008-08-21 00:14:44 +00:00
|
|
|
std::string& errMsg);
|
2008-02-26 20:26:43 +00:00
|
|
|
bool assemble(const std::string& asmPath,
|
|
|
|
const std::string& objPath, std::string& errMsg);
|
|
|
|
void applyScopeRestrictions();
|
|
|
|
bool determineTarget(std::string& errMsg);
|
|
|
|
|
|
|
|
typedef llvm::StringMap<uint8_t> StringSet;
|
|
|
|
|
2009-07-01 23:13:44 +00:00
|
|
|
llvm::LLVMContext& _context;
|
2008-02-26 20:26:43 +00:00
|
|
|
llvm::Linker _linker;
|
|
|
|
llvm::TargetMachine* _target;
|
|
|
|
bool _emitDwarfDebugInfo;
|
|
|
|
bool _scopeRestrictionsDone;
|
|
|
|
lto_codegen_model _codeModel;
|
|
|
|
StringSet _mustPreserveSymbols;
|
2008-02-27 22:25:36 +00:00
|
|
|
llvm::MemoryBuffer* _nativeObjectFile;
|
2008-07-08 21:14:10 +00:00
|
|
|
std::vector<const char*> _codegenOptions;
|
2009-06-04 00:28:45 +00:00
|
|
|
llvm::sys::Path* _assemblerPath;
|
2008-02-26 20:26:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LTO_CODE_GENERATOR_H
|
|
|
|
|