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.
|
2012-03-31 11:10:35 +00:00
|
|
|
//
|
2008-02-26 20:26:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2012-03-31 11:10:35 +00:00
|
|
|
// This file declares the LTOCodeGenerator class.
|
2008-02-26 20:26:43 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LTO_CODE_GENERATOR_H
|
|
|
|
#define LTO_CODE_GENERATOR_H
|
|
|
|
|
|
|
|
#include "llvm/Linker.h"
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
2011-03-02 04:14:42 +00:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2012-03-31 11:10:35 +00:00
|
|
|
#include "llvm-c/lto.h"
|
2008-02-27 22:25:36 +00:00
|
|
|
#include <string>
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2012-03-31 11:10:35 +00:00
|
|
|
namespace llvm {
|
|
|
|
class LLVMContext;
|
|
|
|
class GlobalValue;
|
|
|
|
class Mangler;
|
|
|
|
class MemoryBuffer;
|
|
|
|
class TargetMachine;
|
|
|
|
class raw_ostream;
|
|
|
|
}
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2012-03-31 11:10:35 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// LTOCodeGenerator - C++ class which implements the opaque lto_code_gen_t
|
|
|
|
/// type.
|
|
|
|
///
|
2009-12-23 17:05:07 +00:00
|
|
|
struct LTOCodeGenerator {
|
2012-03-31 11:10:35 +00:00
|
|
|
static const char *getVersionString();
|
|
|
|
|
|
|
|
LTOCodeGenerator();
|
|
|
|
~LTOCodeGenerator();
|
|
|
|
|
|
|
|
bool addModule(struct LTOModule*, std::string &errMsg);
|
|
|
|
bool setDebugInfo(lto_debug_model, std::string &errMsg);
|
|
|
|
bool setCodePICModel(lto_codegen_model, std::string &errMsg);
|
2012-03-31 11:25:18 +00:00
|
|
|
|
|
|
|
void setCpu(const char* mCpu) { _mCpu = mCpu; }
|
|
|
|
|
|
|
|
void addMustPreserveSymbol(const char* sym) {
|
|
|
|
_mustPreserveSymbols[sym] = 1;
|
|
|
|
}
|
|
|
|
|
2012-03-31 11:10:35 +00:00
|
|
|
bool writeMergedModules(const char *path, std::string &errMsg);
|
|
|
|
bool compile_to_file(const char **name, std::string &errMsg);
|
|
|
|
const void *compile(size_t *length, std::string &errMsg);
|
|
|
|
void setCodeGenDebugOptions(const char *opts);
|
|
|
|
|
2008-02-26 20:26:43 +00:00
|
|
|
private:
|
2012-03-31 11:10:35 +00:00
|
|
|
bool generateObjectFile(llvm::raw_ostream &out, std::string &errMsg);
|
|
|
|
void applyScopeRestrictions();
|
|
|
|
void applyRestriction(llvm::GlobalValue &GV,
|
|
|
|
std::vector<const char*> &mustPreserveList,
|
2011-03-02 04:14:42 +00:00
|
|
|
llvm::SmallPtrSet<llvm::GlobalValue*, 8> &asmUsed,
|
2012-03-31 11:10:35 +00:00
|
|
|
llvm::Mangler &mangler);
|
|
|
|
bool determineTarget(std::string &errMsg);
|
|
|
|
|
|
|
|
typedef llvm::StringMap<uint8_t> StringSet;
|
2008-02-26 20:26:43 +00:00
|
|
|
|
2012-03-31 11:10:35 +00:00
|
|
|
llvm::LLVMContext& _context;
|
|
|
|
llvm::Linker _linker;
|
|
|
|
llvm::TargetMachine* _target;
|
|
|
|
bool _emitDwarfDebugInfo;
|
|
|
|
bool _scopeRestrictionsDone;
|
|
|
|
lto_codegen_model _codeModel;
|
|
|
|
StringSet _mustPreserveSymbols;
|
|
|
|
StringSet _asmUndefinedRefs;
|
|
|
|
llvm::MemoryBuffer* _nativeObjectFile;
|
|
|
|
std::vector<char*> _codegenOptions;
|
|
|
|
std::string _mCpu;
|
|
|
|
std::string _nativeObjectPath;
|
2008-02-26 20:26:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LTO_CODE_GENERATOR_H
|