2008-02-26 21:26:43 +01: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 18:58:40 +02:00
|
|
|
#include "llvm/LLVMContext.h"
|
2008-02-26 21:26:43 +01:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2008-07-04 00:53:14 +02:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2008-02-26 21:26:43 +01:00
|
|
|
|
2008-02-27 23:25:36 +01:00
|
|
|
#include <string>
|
2008-02-26 21:26:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// C++ class which implements the opaque lto_code_gen_t
|
|
|
|
//
|
2008-08-21 02:14:44 +02:00
|
|
|
|
2009-12-23 18:05:07 +01:00
|
|
|
struct LTOCodeGenerator {
|
2008-02-26 21:26:43 +01:00
|
|
|
static const char* getVersionString();
|
|
|
|
|
2009-07-02 02:31:14 +02:00
|
|
|
LTOCodeGenerator();
|
2008-02-26 21:26:43 +01:00
|
|
|
~LTOCodeGenerator();
|
|
|
|
|
2009-12-23 19:27:13 +01:00
|
|
|
bool addModule(struct LTOModule*, std::string& errMsg);
|
2008-02-26 21:26:43 +01:00
|
|
|
bool setDebugInfo(lto_debug_model, std::string& errMsg);
|
|
|
|
bool setCodePICModel(lto_codegen_model, std::string& errMsg);
|
2009-06-04 02:28:45 +02:00
|
|
|
void setAssemblerPath(const char* path);
|
2010-08-10 20:55:09 +02:00
|
|
|
void setAssemblerArgs(const char** args, int nargs);
|
2008-02-26 21:26:43 +01:00
|
|
|
void addMustPreserveSymbol(const char* sym);
|
2008-02-27 23:25:36 +01:00
|
|
|
bool writeMergedModules(const char* path,
|
|
|
|
std::string& errMsg);
|
|
|
|
const void* compile(size_t* length, std::string& errMsg);
|
2008-07-08 23:14:10 +02:00
|
|
|
void setCodeGenDebugOptions(const char *opts);
|
2008-02-26 21:26:43 +01:00
|
|
|
private:
|
2009-07-14 22:18:05 +02:00
|
|
|
bool generateAssemblyCode(llvm::formatted_raw_ostream& out,
|
2008-08-21 02:14:44 +02:00
|
|
|
std::string& errMsg);
|
2008-02-26 21:26:43 +01: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-02 01:13:44 +02:00
|
|
|
llvm::LLVMContext& _context;
|
2008-02-26 21:26:43 +01:00
|
|
|
llvm::Linker _linker;
|
|
|
|
llvm::TargetMachine* _target;
|
|
|
|
bool _emitDwarfDebugInfo;
|
|
|
|
bool _scopeRestrictionsDone;
|
|
|
|
lto_codegen_model _codeModel;
|
|
|
|
StringSet _mustPreserveSymbols;
|
2008-02-27 23:25:36 +01:00
|
|
|
llvm::MemoryBuffer* _nativeObjectFile;
|
2008-07-08 23:14:10 +02:00
|
|
|
std::vector<const char*> _codegenOptions;
|
2009-06-04 02:28:45 +02:00
|
|
|
llvm::sys::Path* _assemblerPath;
|
2010-08-10 20:55:09 +02:00
|
|
|
std::vector<std::string> _assemblerArgs;
|
2008-02-26 21:26:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LTO_CODE_GENERATOR_H
|
|
|
|
|