2008-02-27 04:26:43 +08: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-02 00:58:40 +08:00
|
|
|
#include "llvm/LLVMContext.h"
|
2008-02-27 04:26:43 +08:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2008-07-04 06:53:14 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2011-03-02 12:14:42 +08:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2008-02-27 04:26:43 +08:00
|
|
|
|
2008-02-28 06:25:36 +08:00
|
|
|
#include <string>
|
2008-02-27 04:26:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// C++ class which implements the opaque lto_code_gen_t
|
|
|
|
//
|
2008-08-21 08:14:44 +08:00
|
|
|
|
2009-12-24 01:05:07 +08:00
|
|
|
struct LTOCodeGenerator {
|
2008-02-27 04:26:43 +08:00
|
|
|
static const char* getVersionString();
|
|
|
|
|
2009-07-02 08:31:14 +08:00
|
|
|
LTOCodeGenerator();
|
2008-02-27 04:26:43 +08:00
|
|
|
~LTOCodeGenerator();
|
|
|
|
|
2009-12-24 02:27:13 +08:00
|
|
|
bool addModule(struct LTOModule*, std::string& errMsg);
|
2008-02-27 04:26:43 +08:00
|
|
|
bool setDebugInfo(lto_debug_model, std::string& errMsg);
|
|
|
|
bool setCodePICModel(lto_codegen_model, std::string& errMsg);
|
2010-08-11 08:15:13 +08:00
|
|
|
void setCpu(const char *cpu);
|
2008-02-27 04:26:43 +08:00
|
|
|
void addMustPreserveSymbol(const char* sym);
|
2008-02-28 06:25:36 +08:00
|
|
|
bool writeMergedModules(const char* path,
|
|
|
|
std::string& errMsg);
|
2011-03-23 04:57:13 +08:00
|
|
|
bool compile_to_file(const char** name, std::string& errMsg);
|
2008-02-28 06:25:36 +08:00
|
|
|
const void* compile(size_t* length, std::string& errMsg);
|
2008-07-09 05:14:10 +08:00
|
|
|
void setCodeGenDebugOptions(const char *opts);
|
2008-02-27 04:26:43 +08:00
|
|
|
private:
|
2011-02-25 05:04:06 +08:00
|
|
|
bool generateObjectFile(llvm::raw_ostream& out,
|
|
|
|
std::string& errMsg);
|
2008-02-27 04:26:43 +08:00
|
|
|
void applyScopeRestrictions();
|
2011-03-02 12:14:42 +08:00
|
|
|
void applyRestriction(llvm::GlobalValue &GV,
|
|
|
|
std::vector<const char*> &mustPreserveList,
|
|
|
|
llvm::SmallPtrSet<llvm::GlobalValue*, 8> &asmUsed,
|
|
|
|
llvm::Mangler &mangler);
|
2008-02-27 04:26:43 +08:00
|
|
|
bool determineTarget(std::string& errMsg);
|
|
|
|
|
|
|
|
typedef llvm::StringMap<uint8_t> StringSet;
|
|
|
|
|
2009-07-02 07:13:44 +08:00
|
|
|
llvm::LLVMContext& _context;
|
2008-02-27 04:26:43 +08:00
|
|
|
llvm::Linker _linker;
|
|
|
|
llvm::TargetMachine* _target;
|
|
|
|
bool _emitDwarfDebugInfo;
|
|
|
|
bool _scopeRestrictionsDone;
|
|
|
|
lto_codegen_model _codeModel;
|
|
|
|
StringSet _mustPreserveSymbols;
|
2011-03-02 12:14:42 +08:00
|
|
|
StringSet _asmUndefinedRefs;
|
2008-02-28 06:25:36 +08:00
|
|
|
llvm::MemoryBuffer* _nativeObjectFile;
|
2008-07-09 05:14:10 +08:00
|
|
|
std::vector<const char*> _codegenOptions;
|
2010-08-11 08:15:13 +08:00
|
|
|
std::string _mCpu;
|
2011-03-23 04:57:13 +08:00
|
|
|
std::string _nativeObjectPath;
|
2008-02-27 04:26:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LTO_CODE_GENERATOR_H
|
|
|
|
|