fixes from review of first commit

llvm-svn: 47695
This commit is contained in:
Nick Kledzik 2008-02-27 22:25:36 +00:00
parent 5f1db0a8de
commit 91a6dcff32
6 changed files with 185 additions and 203 deletions

View File

@ -218,11 +218,12 @@ lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path);
/** /**
* Generates code for all added modules into one native object file. * Generates code for all added modules into one native object file.
* On sucess returns a pointer to a generated mach-o/ELF buffer and * On sucess returns a pointer to a generated mach-o/ELF buffer and
* length set to the buffer size. Client owns the buffer and should * length set to the buffer size. The buffer is owned by the
* free() it when done. * lto_code_gen_t and will be freed when lto_codegen_dispose()
* is called, or lto_codegen_compile() is called again.
* On failure, returns NULL (check lto_get_error_message() for details). * On failure, returns NULL (check lto_get_error_message() for details).
*/ */
extern void* extern const void*
lto_codegen_compile(lto_code_gen_t cg, size_t* length); lto_codegen_compile(lto_code_gen_t cg, size_t* length);

View File

@ -12,6 +12,10 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "LTOModule.h"
#include "LTOCodeGenerator.h"
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/PassManager.h" #include "llvm/PassManager.h"
#include "llvm/Linker.h" #include "llvm/Linker.h"
@ -19,18 +23,15 @@
#include "llvm/DerivedTypes.h" #include "llvm/DerivedTypes.h"
#include "llvm/ModuleProvider.h" #include "llvm/ModuleProvider.h"
#include "llvm/Bitcode/ReaderWriter.h" #include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/FileUtilities.h"
#include "llvm/Support/SystemUtils.h" #include "llvm/Support/SystemUtils.h"
#include "llvm/Support/Mangler.h" #include "llvm/Support/Mangler.h"
#include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/MemoryBuffer.h"
#include "llvm/System/Program.h"
#include "llvm/System/Signals.h" #include "llvm/System/Signals.h"
#include "llvm/Analysis/Passes.h" #include "llvm/Analysis/Passes.h"
#include "llvm/Analysis/LoopPass.h" #include "llvm/Analysis/LoopPass.h"
#include "llvm/Analysis/Verifier.h" #include "llvm/Analysis/Verifier.h"
#include "llvm/Analysis/LoadValueNumbering.h"
#include "llvm/CodeGen/FileWriters.h" #include "llvm/CodeGen/FileWriters.h"
#include "llvm/Target/SubtargetFeature.h"
#include "llvm/Target/TargetOptions.h" #include "llvm/Target/TargetOptions.h"
#include "llvm/Target/TargetData.h" #include "llvm/Target/TargetData.h"
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
@ -38,12 +39,8 @@
#include "llvm/Target/TargetAsmInfo.h" #include "llvm/Target/TargetAsmInfo.h"
#include "llvm/Transforms/IPO.h" #include "llvm/Transforms/IPO.h"
#include "llvm/Transforms/Scalar.h" #include "llvm/Transforms/Scalar.h"
#include "llvm/Analysis/LoadValueNumbering.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Config/config.h" #include "llvm/Config/config.h"
#include "LTOModule.h"
#include "LTOCodeGenerator.h"
#include <fstream> #include <fstream>
#include <unistd.h> #include <unistd.h>
@ -68,14 +65,16 @@ const char* LTOCodeGenerator::getVersionString()
LTOCodeGenerator::LTOCodeGenerator() LTOCodeGenerator::LTOCodeGenerator()
: _linker("LinkTimeOptimizer", "ld-temp.o"), _target(NULL), : _linker("LinkTimeOptimizer", "ld-temp.o"), _target(NULL),
_emitDwarfDebugInfo(false), _scopeRestrictionsDone(false), _emitDwarfDebugInfo(false), _scopeRestrictionsDone(false),
_codeModel(LTO_CODEGEN_PIC_MODEL_DYNAMIC) _codeModel(LTO_CODEGEN_PIC_MODEL_DYNAMIC),
_nativeObjectFile(NULL)
{ {
} }
LTOCodeGenerator::~LTOCodeGenerator() LTOCodeGenerator::~LTOCodeGenerator()
{ {
// FIXME delete _target;
delete _nativeObjectFile;
} }
@ -151,9 +150,9 @@ bool LTOCodeGenerator::writeMergedModules(const char* path, std::string& errMsg)
} }
void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg) const void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg)
{ {
// make unqiue temp .s file to put generated assembly code // make unique temp .s file to put generated assembly code
sys::Path uniqueAsmPath("lto-llvm.s"); sys::Path uniqueAsmPath("lto-llvm.s");
if ( uniqueAsmPath.createTemporaryFileOnDisk(true, &errMsg) ) if ( uniqueAsmPath.createTemporaryFileOnDisk(true, &errMsg) )
return NULL; return NULL;
@ -169,7 +168,7 @@ void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg)
return NULL; return NULL;
} }
// make unqiue temp .o file to put generated object file // make unique temp .o file to put generated object file
sys::PathWithStatus uniqueObjPath("lto-llvm.o"); sys::PathWithStatus uniqueObjPath("lto-llvm.o");
if ( uniqueObjPath.createTemporaryFileOnDisk(true, &errMsg) ) { if ( uniqueObjPath.createTemporaryFileOnDisk(true, &errMsg) ) {
if ( uniqueAsmPath.exists() ) if ( uniqueAsmPath.exists() )
@ -179,46 +178,27 @@ void* LTOCodeGenerator::compile(size_t* length, std::string& errMsg)
sys::RemoveFileOnSignal(uniqueObjPath); sys::RemoveFileOnSignal(uniqueObjPath);
// assemble the assembly code // assemble the assembly code
void* buffer = NULL; const std::string& uniqueObjStr = uniqueObjPath.toString();
bool asmResult = this->assemble(uniqueAsmPath.toString(), bool asmResult = this->assemble(uniqueAsmPath.toString(),
uniqueObjPath.toString(), errMsg); uniqueObjStr, errMsg);
if ( !asmResult ) { if ( !asmResult ) {
// remove old buffer if compile() called twice
delete _nativeObjectFile;
// read .o file into memory buffer // read .o file into memory buffer
const sys::FileStatus* objStatus; _nativeObjectFile = MemoryBuffer::getFile(&uniqueObjStr[0],
objStatus = uniqueObjPath.getFileStatus(false, &errMsg); uniqueObjStr.size(), &errMsg);
if ( objStatus != NULL ) {
*length = objStatus->getSize();
// use malloc() because caller will own this buffer and free() it
buffer = ::malloc(*length);
if ( buffer != NULL ) {
int fd = ::open(uniqueObjPath.c_str(), O_RDONLY, 0);
if ( fd != -1 ) {
// read object file contents into buffer
if ( ::read(fd, buffer, *length) != (ssize_t)*length ) {
errMsg = "error reading object file";
free(buffer);
buffer = NULL;
} }
close(fd);
} // remove temp files
else {
errMsg = "error opening object file";
free(buffer);
buffer = NULL;
}
}
else {
errMsg = "error mallocing space for object file";
}
}
else {
errMsg = "error stat'ing object file";
}
}
// clean up temp files
uniqueAsmPath.eraseFromDisk(); uniqueAsmPath.eraseFromDisk();
uniqueObjPath.eraseFromDisk(); uniqueObjPath.eraseFromDisk();
return buffer;
// return buffer, unless error
if ( _nativeObjectFile == NULL )
return NULL;
*length = _nativeObjectFile->getBufferSize();
return _nativeObjectFile->getBufferStart();
} }

View File

@ -18,6 +18,7 @@
#include "llvm/Linker.h" #include "llvm/Linker.h"
#include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringMap.h"
#include <string>
// //
@ -34,8 +35,9 @@ public:
bool setDebugInfo(lto_debug_model, std::string& errMsg); bool setDebugInfo(lto_debug_model, std::string& errMsg);
bool setCodePICModel(lto_codegen_model, std::string& errMsg); bool setCodePICModel(lto_codegen_model, std::string& errMsg);
void addMustPreserveSymbol(const char* sym); void addMustPreserveSymbol(const char* sym);
bool writeMergedModules(const char* path, std::string& errMsg); bool writeMergedModules(const char* path,
void* compile(size_t* length, std::string& errMsg); std::string& errMsg);
const void* compile(size_t* length, std::string& errMsg);
private: private:
bool generateAssemblyCode(std::ostream& out, bool generateAssemblyCode(std::ostream& out,
@ -53,6 +55,7 @@ private:
bool _scopeRestrictionsDone; bool _scopeRestrictionsDone;
lto_codegen_model _codeModel; lto_codegen_model _codeModel;
StringSet _mustPreserveSymbols; StringSet _mustPreserveSymbols;
llvm::MemoryBuffer* _nativeObjectFile;
}; };
#endif // LTO_CODE_GENERATOR_H #endif // LTO_CODE_GENERATOR_H

View File

@ -12,33 +12,21 @@
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#include "LTOModule.h"
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/PassManager.h"
#include "llvm/Linker.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
#include "llvm/ModuleProvider.h" #include "llvm/ModuleProvider.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/Bitcode/ReaderWriter.h" #include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/FileUtilities.h"
#include "llvm/Support/SystemUtils.h" #include "llvm/Support/SystemUtils.h"
#include "llvm/Support/Mangler.h" #include "llvm/Support/Mangler.h"
#include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/MemoryBuffer.h"
#include "llvm/System/Program.h" #include "llvm/Support/MathExtras.h"
#include "llvm/System/Path.h" #include "llvm/System/Path.h"
#include "llvm/System/Signals.h"
#include "llvm/Target/SubtargetFeature.h"
#include "llvm/Target/TargetOptions.h"
#include "llvm/Target/TargetData.h"
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetMachineRegistry.h" #include "llvm/Target/TargetMachineRegistry.h"
#include "llvm/Target/TargetAsmInfo.h" #include "llvm/Target/TargetAsmInfo.h"
#include "llvm/Transforms/IPO.h"
#include "llvm/Transforms/Scalar.h"
#include "llvm/Analysis/LoadValueNumbering.h"
#include "llvm/Support/MathExtras.h"
#include "LTOModule.h"
#include <fstream> #include <fstream>
@ -58,51 +46,35 @@ bool LTOModule::isBitcodeFile(const char* path)
bool LTOModule::isBitcodeFileForTarget(const void* mem, bool LTOModule::isBitcodeFileForTarget(const void* mem,
size_t length, const char* triplePrefix) size_t length, const char* triplePrefix)
{ {
bool result = false; MemoryBuffer* buffer = MemoryBuffer::getMemBuffer((char*)mem,
MemoryBuffer* buffer; (char*)mem+length);
buffer = MemoryBuffer::getMemBuffer((char*)mem, (char*)mem+length); if ( buffer == NULL )
if ( buffer != NULL ) { return false;
ModuleProvider* mp = getBitcodeModuleProvider(buffer); return isTargetMatch(buffer, triplePrefix);
if ( mp != NULL ) {
std::string actualTarget = mp->getModule()->getTargetTriple();
if ( strncmp(actualTarget.c_str(), triplePrefix,
strlen(triplePrefix)) == 0) {
result = true;
}
// mp destructor will delete buffer
delete mp;
}
else {
// if getBitcodeModuleProvider failed, we need to delete buffer
delete buffer;
}
}
return result;
} }
bool LTOModule::isBitcodeFileForTarget(const char* path, bool LTOModule::isBitcodeFileForTarget(const char* path,
const char* triplePrefix) const char* triplePrefix)
{ {
bool result = false; MemoryBuffer* buffer = MemoryBuffer::getFile(path, strlen(path));
MemoryBuffer* buffer; if ( buffer == NULL )
buffer = MemoryBuffer::getFile(path, strlen(path)); return false;
if ( buffer != NULL ) { return isTargetMatch(buffer, triplePrefix);
ModuleProvider* mp = getBitcodeModuleProvider(buffer); }
if ( mp != NULL ) {
std::string actualTarget = mp->getModule()->getTargetTriple(); // takes ownership of buffer
if ( strncmp(actualTarget.c_str(), triplePrefix, bool LTOModule::isTargetMatch(MemoryBuffer* buffer, const char* triplePrefix)
strlen(triplePrefix)) == 0) { {
result = true; OwningPtr<ModuleProvider> mp(getBitcodeModuleProvider(buffer));
} // on success, mp owns buffer and both are deleted at end of this method
// mp destructor will delete buffer if ( !mp ) {
delete mp;
}
else {
// if getBitcodeModuleProvider failed, we need to delete buffer
delete buffer; delete buffer;
return false;
} }
} std::string actualTarget = mp->getModule()->getTargetTriple();
return result; return ( strncmp(actualTarget.c_str(), triplePrefix,
strlen(triplePrefix)) == 0);
} }
@ -111,52 +83,40 @@ LTOModule::LTOModule(Module* m, TargetMachine* t)
{ {
} }
LTOModule::~LTOModule()
{
delete _module;
if ( _target != NULL )
delete _target;
}
LTOModule* LTOModule::makeLTOModule(const char* path, std::string& errMsg) LTOModule* LTOModule::makeLTOModule(const char* path, std::string& errMsg)
{ {
MemoryBuffer* buffer = MemoryBuffer::getFile(path, strlen(path)); OwningPtr<MemoryBuffer> buffer(MemoryBuffer::getFile(
if ( buffer != NULL ) { path, strlen(path), &errMsg));
Module* m = ParseBitcodeFile(buffer, &errMsg); if ( !buffer )
delete buffer;
if ( m != NULL ) {
const TargetMachineRegistry::entry* march =
TargetMachineRegistry::getClosestStaticTargetForModule(*m, errMsg);
if ( march != NULL ) {
std::string features;
TargetMachine* target = march->CtorFn(*m, features);
return new LTOModule(m, target);
}
}
}
return NULL; return NULL;
return makeLTOModule(buffer.get(), errMsg);
} }
LTOModule* LTOModule::makeLTOModule(const void* mem, size_t length, LTOModule* LTOModule::makeLTOModule(const void* mem, size_t length,
std::string& errMsg) std::string& errMsg)
{ {
MemoryBuffer* buffer; OwningPtr<MemoryBuffer> buffer(MemoryBuffer::getMemBuffer((char*)mem,
buffer = MemoryBuffer::getMemBuffer((char*)mem, (char*)mem+length); (char*)mem+length));
if ( buffer != NULL ) { if ( !buffer )
Module* m = ParseBitcodeFile(buffer, &errMsg); return NULL;
delete buffer; return makeLTOModule(buffer.get(), errMsg);
if ( m != NULL ) { }
LTOModule* LTOModule::makeLTOModule(MemoryBuffer* buffer, std::string& errMsg)
{
// parse bitcode buffer
OwningPtr<Module> m(ParseBitcodeFile(buffer, &errMsg));
if ( !m )
return NULL;
// find machine architecture for this module
const TargetMachineRegistry::entry* march = const TargetMachineRegistry::entry* march =
TargetMachineRegistry::getClosestStaticTargetForModule(*m, errMsg); TargetMachineRegistry::getClosestStaticTargetForModule(*m, errMsg);
if ( march != NULL ) { if ( march == NULL )
return NULL;
// construct LTModule, hand over ownership of module and target
std::string features; std::string features;
TargetMachine* target = march->CtorFn(*m, features); TargetMachine* target = march->CtorFn(*m, features);
return new LTOModule(m, target); return new LTOModule(m.take(), target);
}
}
}
return NULL;
} }
@ -165,14 +125,44 @@ const char* LTOModule::getTargetTriple()
return _module->getTargetTriple().c_str(); return _module->getTargetTriple().c_str();
} }
void LTOModule::addDefinedFunctionSymbol(Function* f, Mangler &mangler)
{
// add to list of defined symbols
addDefinedSymbol(f, mangler, true);
// add external symbols referenced by this function.
for (Function::iterator b = f->begin(); b != f->end(); ++b) {
for (BasicBlock::iterator i = b->begin(); i != b->end(); ++i) {
for (unsigned count = 0, total = i->getNumOperands();
count != total; ++count) {
findExternalRefs(i->getOperand(count), mangler);
}
}
}
}
void LTOModule::addDefinedDataSymbol(GlobalValue* v, Mangler &mangler)
{
// add to list of defined symbols
addDefinedSymbol(v, mangler, false);
// add external symbols referenced by this data.
for (unsigned count = 0, total = v->getNumOperands();\
count != total; ++count) {
findExternalRefs(v->getOperand(count), mangler);
}
}
void LTOModule::addDefinedSymbol(GlobalValue* def, Mangler &mangler, void LTOModule::addDefinedSymbol(GlobalValue* def, Mangler &mangler,
bool isFunction) bool isFunction)
{ {
// string is owned by _defines
const char* symbolName = ::strdup(mangler.getValueName(def).c_str()); const char* symbolName = ::strdup(mangler.getValueName(def).c_str());
// set alignment part log2() can have rounding errors // set alignment part log2() can have rounding errors
uint32_t align = def->getAlignment(); uint32_t align = def->getAlignment();
uint32_t attr = align ? __builtin_ctz(def->getAlignment()) : 0; uint32_t attr = align ? CountTrailingZeros_32(def->getAlignment()) : 0;
// set permissions part // set permissions part
if ( isFunction ) if ( isFunction )
@ -220,8 +210,9 @@ void LTOModule::addDefinedSymbol(GlobalValue* def, Mangler &mangler,
} }
void LTOModule::addUndefinedSymbol(const char* name) void LTOModule::addPotentialUndefinedSymbol(GlobalValue* decl, Mangler &mangler)
{ {
const char* name = mangler.getValueName(decl).c_str();
// ignore all llvm.* symbols // ignore all llvm.* symbols
if ( strncmp(name, "llvm.", 5) != 0 ) { if ( strncmp(name, "llvm.", 5) != 0 ) {
_undefines[name] = 1; _undefines[name] = 1;
@ -235,7 +226,7 @@ void LTOModule::findExternalRefs(Value* value, Mangler &mangler) {
if (GlobalValue* gv = dyn_cast<GlobalValue>(value)) { if (GlobalValue* gv = dyn_cast<GlobalValue>(value)) {
if ( !gv->hasExternalLinkage() ) if ( !gv->hasExternalLinkage() )
addUndefinedSymbol(mangler.getValueName(gv).c_str()); addPotentialUndefinedSymbol(gv, mangler);
} }
// GlobalValue, even with InternalLinkage type, may have operands with // GlobalValue, even with InternalLinkage type, may have operands with
@ -247,8 +238,7 @@ void LTOModule::findExternalRefs(Value* value, Mangler &mangler) {
} }
} }
void LTOModule::lazyParseSymbols()
uint32_t LTOModule::getSymbolCount()
{ {
if ( !_symbolsParsed ) { if ( !_symbolsParsed ) {
_symbolsParsed = true; _symbolsParsed = true;
@ -258,38 +248,19 @@ uint32_t LTOModule::getSymbolCount()
// add functions // add functions
for (Module::iterator f = _module->begin(); f != _module->end(); ++f) { for (Module::iterator f = _module->begin(); f != _module->end(); ++f) {
if ( f->isDeclaration() ) { if ( f->isDeclaration() )
addUndefinedSymbol(mangler.getValueName(f).c_str()); addPotentialUndefinedSymbol(f, mangler);
} else
else { addDefinedFunctionSymbol(f, mangler);
addDefinedSymbol(f, mangler, true);
// add external symbols referenced by this function.
for (Function::iterator b = f->begin(); b != f->end(); ++b) {
for (BasicBlock::iterator i = b->begin();
i != b->end(); ++i) {
for (unsigned count = 0, total = i->getNumOperands();
count != total; ++count) {
findExternalRefs(i->getOperand(count), mangler);
}
}
}
}
} }
// add data // add data
for (Module::global_iterator v = _module->global_begin(), for (Module::global_iterator v = _module->global_begin(),
e = _module->global_end(); v != e; ++v) { e = _module->global_end(); v != e; ++v) {
if ( v->isDeclaration() ) { if ( v->isDeclaration() )
addUndefinedSymbol(mangler.getValueName(v).c_str()); addPotentialUndefinedSymbol(v, mangler);
} else
else { addDefinedDataSymbol(v, mangler);
addDefinedSymbol(v, mangler, false);
// add external symbols referenced by this data
for (unsigned count = 0, total = v->getNumOperands();
count != total; ++count) {
findExternalRefs(v->getOperand(count), mangler);
}
}
} }
// make symbols for all undefines // make symbols for all undefines
@ -297,22 +268,28 @@ uint32_t LTOModule::getSymbolCount()
it != _undefines.end(); ++it) { it != _undefines.end(); ++it) {
// if this symbol also has a definition, then don't make an undefine // if this symbol also has a definition, then don't make an undefine
// because it is a tentative definition // because it is a tentative definition
if ( _defines.find(it->getKeyData(), it->getKeyData()+it->getKeyLength()) == _defines.end() ) { if ( _defines.count(it->getKeyData(), it->getKeyData()+
it->getKeyLength()) == 0 ) {
NameAndAttributes info; NameAndAttributes info;
info.name = it->getKeyData(); info.name = it->getKeyData();
info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED; info.attributes = LTO_SYMBOL_DEFINITION_UNDEFINED;
_symbols.push_back(info); _symbols.push_back(info);
} }
} }
} }
}
uint32_t LTOModule::getSymbolCount()
{
lazyParseSymbols();
return _symbols.size(); return _symbols.size();
} }
lto_symbol_attributes LTOModule::getSymbolAttributes(uint32_t index) lto_symbol_attributes LTOModule::getSymbolAttributes(uint32_t index)
{ {
lazyParseSymbols();
if ( index < _symbols.size() ) if ( index < _symbols.size() )
return _symbols[index].attributes; return _symbols[index].attributes;
else else
@ -321,6 +298,7 @@ lto_symbol_attributes LTOModule::getSymbolAttributes(uint32_t index)
const char* LTOModule::getSymbolName(uint32_t index) const char* LTOModule::getSymbolName(uint32_t index)
{ {
lazyParseSymbols();
if ( index < _symbols.size() ) if ( index < _symbols.size() )
return _symbols[index].name; return _symbols[index].name;
else else

View File

@ -15,15 +15,24 @@
#define LTO_MODULE_H #define LTO_MODULE_H
#include "llvm/Module.h" #include "llvm/Module.h"
#include "llvm/GlobalValue.h" #include "llvm/ADT/OwningPtr.h"
#include "llvm/Constants.h"
#include "llvm/Support/Mangler.h"
#include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachine.h"
#include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringMap.h"
#include "llvm-c/lto.h" #include "llvm-c/lto.h"
#include <vector> #include <vector>
#include <string>
// forward references to llvm classes
namespace llvm {
class Mangler;
class MemoryBuffer;
class GlobalValue;
class Value;
class Function;
}
// //
@ -44,25 +53,34 @@ public:
static LTOModule* makeLTOModule(const char* path, std::string& errMsg); static LTOModule* makeLTOModule(const char* path, std::string& errMsg);
static LTOModule* makeLTOModule(const void* mem, size_t length, static LTOModule* makeLTOModule(const void* mem, size_t length,
std::string& errMsg); std::string& errMsg);
~LTOModule();
const char* getTargetTriple(); const char* getTargetTriple();
uint32_t getSymbolCount(); uint32_t getSymbolCount();
lto_symbol_attributes getSymbolAttributes(uint32_t index); lto_symbol_attributes getSymbolAttributes(uint32_t index);
const char* getSymbolName(uint32_t index); const char* getSymbolName(uint32_t index);
llvm::Module * getLLVVMModule() { return _module; } llvm::Module * getLLVVMModule() { return _module.get(); }
bool targetSupported() { return (_target != NULL); }
private: private:
LTOModule(llvm::Module* m, llvm::TargetMachine* t); LTOModule(llvm::Module* m, llvm::TargetMachine* t);
void lazyParseSymbols();
void addDefinedSymbol(llvm::GlobalValue* def, void addDefinedSymbol(llvm::GlobalValue* def,
llvm::Mangler& mangler, llvm::Mangler& mangler,
bool isFunction); bool isFunction);
void addUndefinedSymbol(const char* name); void addPotentialUndefinedSymbol(llvm::GlobalValue* decl,
llvm::Mangler &mangler);
void findExternalRefs(llvm::Value* value, void findExternalRefs(llvm::Value* value,
llvm::Mangler& mangler); llvm::Mangler& mangler);
void addDefinedFunctionSymbol(llvm::Function* f,
llvm::Mangler &mangler);
void addDefinedDataSymbol(llvm::GlobalValue* v,
llvm::Mangler &mangler);
static bool isTargetMatch(llvm::MemoryBuffer* memBuffer,
const char* triplePrefix);
static LTOModule* makeLTOModule(llvm::MemoryBuffer* buffer,
std::string& errMsg);
typedef llvm::StringMap<uint8_t> StringSet; typedef llvm::StringMap<uint8_t> StringSet;
@ -71,12 +89,13 @@ private:
lto_symbol_attributes attributes; lto_symbol_attributes attributes;
}; };
llvm::Module * _module; llvm::OwningPtr<llvm::Module> _module;
llvm::TargetMachine * _target; llvm::OwningPtr<llvm::TargetMachine> _target;
bool _symbolsParsed; bool _symbolsParsed;
std::vector<NameAndAttributes> _symbols; std::vector<NameAndAttributes> _symbols;
StringSet _defines; // only needed to disambiguate tentative definitions // _defines and _undefines only needed to disambiguate tentative definitions
StringSet _undefines; // only needed to disambiguate tentative definitions StringSet _defines;
StringSet _undefines;
}; };
#endif // LTO_MODULE_H #endif // LTO_MODULE_H

View File

@ -33,7 +33,7 @@ extern const char* lto_get_version()
} }
// //
// returns the last error string or NULL if last operation was sucessful // returns the last error string or NULL if last operation was successful
// //
const char* lto_get_error_message() const char* lto_get_error_message()
{ {
@ -224,13 +224,14 @@ bool lto_codegen_write_merged_modules(lto_code_gen_t cg, const char* path)
// //
// generates code for all added modules into one object file // Generates code for all added modules into one native object file.
// On sucess returns a pointer to a generated mach-o buffer and // On sucess returns a pointer to a generated mach-o/ELF buffer and
// length set to the buffer size. Client must free() the buffer // length set to the buffer size. The buffer is owned by the
// when done. // lto_code_gen_t and will be freed when lto_codegen_dispose()
// On failure, returns NULL (check lto_get_error_message() for details) // is called, or lto_codegen_compile() is called again.
// On failure, returns NULL (check lto_get_error_message() for details).
// //
extern void* extern const void*
lto_codegen_compile(lto_code_gen_t cg, size_t* length) lto_codegen_compile(lto_code_gen_t cg, size_t* length)
{ {
return cg->compile(length, sLastErrorString); return cg->compile(length, sLastErrorString);