OpenCores
URL https://opencores.org/ocsvn/lxp32/lxp32/trunk

Subversion Repositories lxp32

[/] [lxp32/] [trunk/] [tools/] [src/] [lxp32asm/] [linker.cpp] - Diff between revs 2 and 6

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 2 Rev 6
Line 7... Line 7...
 */
 */
 
 
#include "linker.h"
#include "linker.h"
 
 
#include "linkableobject.h"
#include "linkableobject.h"
 
#include "utils.h"
 
 
#include <iostream>
#include <iostream>
#include <fstream>
#include <fstream>
#include <sstream>
#include <sstream>
#include <map>
#include <map>
#include <stdexcept>
#include <stdexcept>
#include <cassert>
#include <cassert>
 
#include <algorithm>
 
 
void Linker::addObject(LinkableObject &obj) {
void Linker::addObject(LinkableObject &obj) {
        _objects.push_back(&obj);
        _objects.push_back(&obj);
}
}
 
 
Line 27... Line 29...
// Merge symbol tables
// Merge symbol tables
        buildSymbolTable();
        buildSymbolTable();
 
 
// Determine entry point
// Determine entry point
        if(_objects.size()==1) _entryObject=_objects[0];
        if(_objects.size()==1) _entryObject=_objects[0];
        else {
        else if(_entryObject==nullptr)
                auto const it=_globalSymbolTable.find("entry");
                throw std::runtime_error("Entry point not defined: cannot find \"entry\" or \"Entry\" symbol");
                if(it==_globalSymbolTable.end())
 
                        throw std::runtime_error("Entry point not defined: cannot find \"entry\" symbol");
 
                if(it->second.rva!=0)
 
                        throw std::runtime_error(it->second.obj->name()+": Entry point must refer to the start of the object");
 
                _entryObject=it->second.obj;
 
        }
 
 
 
// Assign virtual addresses
// Assign virtual addresses
        placeObjects();
        placeObjects();
 
 
// Perform relocations
// Perform relocations
        for(auto &obj: _objects) relocateObject(obj);
        for(auto &obj: _objects) relocateObject(obj);
 
 
// Write binary data
// Write binary data
        writeObjects(writer);
        writeObjects(writer);
 
        _bytesWritten=writer.size();
}
}
 
 
void Linker::setBase(LinkableObject::Word base) {
void Linker::setBase(LinkableObject::Word base) {
        _base=base;
        _base=base;
}
}
Line 58... Line 55...
 
 
void Linker::setImageSize(std::size_t size) {
void Linker::setImageSize(std::size_t size) {
        _imageSize=size;
        _imageSize=size;
}
}
 
 
 
void Linker::generateMap(std::ostream &s) {
 
// Calculate the maximum length of a symbol name
 
        std::size_t len=0;
 
        for(auto const &obj: _objects) {
 
                for(auto const &sym: obj->symbols()) {
 
                        if(sym.second.type!=LinkableObject::Imported)
 
                                len=std::max(len,sym.first.size());
 
                }
 
        }
 
        len=std::max(len+3,std::size_t(8)); // width of the first column
 
 
 
        s<<"Image base address: "<<Utils::hex(_base)<<std::endl;
 
        s<<"Object alignment: "<<_align<<std::endl;
 
        s<<"Image size: "<<(_bytesWritten/4)<<" words"<<std::endl;
 
        s<<"Number of objects: "<<_objects.size()<<std::endl;
 
        s<<std::endl;
 
 
 
        for(auto const &obj: _objects) {
 
                s<<"Object \""<<obj->name()<<"\" at address "<<Utils::hex(obj->virtualAddress())<<std::endl;
 
                s<<std::endl;
 
                std::multimap<LinkableObject::Word,std::pair<std::string,LinkableObject::SymbolData> > sorted;
 
                for(auto const &sym: obj->symbols()) sorted.emplace(sym.second.rva,sym);
 
                for(auto const &sym: sorted) {
 
                        if(sym.second.second.type==LinkableObject::Imported) continue;
 
                        s<<sym.second.first;
 
                        s<<std::string(len-sym.second.first.size(),' ');
 
                        s<<Utils::hex(obj->virtualAddress()+sym.second.second.rva);
 
                        if(sym.second.second.type==LinkableObject::Local) s<<" Local";
 
                        else s<<" Exported";
 
                        s<<std::endl;
 
                }
 
                s<<std::endl;
 
        }
 
}
 
 
/*
/*
 * Private members
 * Private members
 */
 */
 
 
void Linker::buildSymbolTable() {
void Linker::buildSymbolTable() {
        _globalSymbolTable.clear();
        _globalSymbolTable.clear();
 
 
 
// Build a table of exported symbols from all modules
        for(auto const &obj: _objects) {
        for(auto const &obj: _objects) {
                auto const &table=obj->symbols();
                auto const &table=obj->symbols();
                for(auto const &item: table) {
                for(auto const &item: table) {
 
                        if((item.first=="entry"||item.first=="Entry")&&item.second.type!=LinkableObject::Imported) {
 
                                if(_entryObject) {
 
                                        std::ostringstream msg;
 
                                        msg<<obj->name()<<": Duplicate definition of the entry symbol ";
 
                                        msg<<"(previously defined in "<<_entryObject->name()<<")";
 
                                        throw std::runtime_error(msg.str());
 
                                }
 
                                if(item.second.rva!=0) {
 
                                        std::ostringstream msg;
 
                                        msg<<obj->name()<<": ";
 
                                        msg<<"Entry point must refer to the start of the object";
 
                                        throw std::runtime_error(msg.str());
 
                                }
 
                                _entryObject=obj;
 
                        }
 
                        if(item.second.type==LinkableObject::Local) continue;
// Insert item to the global symbol table if it doesn't exist yet
// Insert item to the global symbol table if it doesn't exist yet
                        auto it=_globalSymbolTable.emplace(item.first,GlobalSymbolData()).first;
                        auto it=_globalSymbolTable.emplace(item.first,GlobalSymbolData()).first;
 
 
// If the symbol is local, check that it has not been already defined in another object
// Check that the symbol has not been already defined in another object
                        if(item.second.type==LinkableObject::Local) {
                        if(item.second.type==LinkableObject::Exported) {
                                if(it->second.obj) {
                                if(it->second.obj) {
                                        std::ostringstream msg;
                                        std::ostringstream msg;
                                        msg<<obj->name()<<": Duplicate definition of \""<<item.first;
                                        msg<<obj->name()<<": Duplicate definition of \""<<item.first;
                                        msg<<"\" (previously defined in "<<it->second.obj->name()<<")";
                                        msg<<"\" (previously defined in "<<it->second.obj->name()<<")";
                                        throw std::runtime_error(msg.str());
                                        throw std::runtime_error(msg.str());
                                }
                                }
                                it->second.obj=obj;
                                it->second.obj=obj;
                                it->second.rva=item.second.rva;
                                it->second.rva=item.second.rva;
                        }
                        }
 
 
// Merge reference tables
                        if(!item.second.refs.empty()) it->second.refs.insert(obj);
                        for(auto const &ref: item.second.refs) it->second.refs.emplace(obj,ref.rva);
                }
 
        }
 
 
 
// Check that local symbols don't shadow the public ones
 
        for(auto const &obj: _objects) {
 
                auto const &table=obj->symbols();
 
                for(auto const &item: table) {
 
                        if(item.second.type!=LinkableObject::Local) continue;
 
                        auto it=_globalSymbolTable.find(item.first);
 
                        if(it==_globalSymbolTable.end()) continue;
 
                        if(!it->second.obj) continue;
 
                        if(item.first==it->first) {
 
                                std::ostringstream msg;
 
                                msg<<obj->name()<<": Local symbol \""<<item.first<<"\" shadows the public one ";
 
                                msg<<"(defined in "<<it->second.obj->name()<<")";
 
                                throw std::runtime_error(msg.str());
 
                        }
                }
                }
        }
        }
 
 
// Check that no undefined symbols remain
// Check that no undefined symbols remain
        for(auto const &item: _globalSymbolTable) {
        for(auto const &item: _globalSymbolTable) {
                if(item.second.obj==nullptr&&!item.second.refs.empty()) {
                if(item.second.obj==nullptr&&!item.second.refs.empty()) {
                        std::ostringstream msg;
                        std::ostringstream msg;
                        msg<<"Undefined symbol: \""<<item.first<<"\"";
                        msg<<"Undefined symbol: \""<<item.first<<"\"";
                        auto const it=item.second.refs.begin();
                        auto const it=item.second.refs.begin();
                        msg<<" (referenced from "<<it->first->name()<<")";
                        msg<<" (referenced from "<<(*it)->name()<<")";
                        throw std::runtime_error(msg.str());
                        throw std::runtime_error(msg.str());
                }
                }
        }
        }
}
}
 
 
Line 107... Line 172...
 
 
// Make entry object the first
// Make entry object the first
        if(_objects.size()>1) {
        if(_objects.size()>1) {
                for(auto it=_objects.begin();it!=_objects.end();++it) {
                for(auto it=_objects.begin();it!=_objects.end();++it) {
                        if(*it==_entryObject) {
                        if(*it==_entryObject) {
                                std::swap(*it,_objects[0]);
                                _objects.erase(it);
                                break;
                                break;
                        }
                        }
                }
                }
 
                _objects.insert(_objects.begin(),_entryObject);
 
        }
 
 
 
// Remove unreferenced objects
 
        if(_objects.size()>1) {
 
                std::set<const LinkableObject*> used;
 
                markAsUsed(_objects[0],used);
 
                for(auto it=_objects.begin();it!=_objects.end();) {
 
                        if(used.find(*it)==used.end()) {
 
                                std::cerr<<"Linker warning: skipping an unreferenced object \"";
 
                                std::cerr<<(*it)->name()<<"\""<<std::endl;
 
                                for(auto sym=_globalSymbolTable.begin();sym!=_globalSymbolTable.end();) {
 
                                        if(sym->second.obj==*it) sym=_globalSymbolTable.erase(sym);
 
                                        else ++sym;
 
                                }
 
                                it=_objects.erase(it);
 
                        }
 
                        else ++it;
 
                }
        }
        }
 
 
// Set base addresses
// Set base addresses
        for(auto it=_objects.begin();it!=_objects.end();++it) {
        for(auto it=_objects.begin();it!=_objects.end();++it) {
                (*it)->setVirtualAddress(currentBase);
                (*it)->setVirtualAddress(currentBase);
Line 124... Line 208...
        }
        }
}
}
 
 
void Linker::relocateObject(LinkableObject *obj) {
void Linker::relocateObject(LinkableObject *obj) {
        for(auto const &sym: obj->symbols()) {
        for(auto const &sym: obj->symbols()) {
 
                LinkableObject::Word addr;
 
                if(sym.second.refs.empty()) continue;
 
 
 
                if(sym.second.type==LinkableObject::Local) addr=obj->virtualAddress()+sym.second.rva;
 
                else {
                auto it=_globalSymbolTable.find(sym.first);
                auto it=_globalSymbolTable.find(sym.first);
                assert(it!=_globalSymbolTable.end());
                assert(it!=_globalSymbolTable.end());
                if(it->second.refs.empty()) continue;
 
                assert(it->second.obj);
                assert(it->second.obj);
                auto addr=it->second.obj->virtualAddress()+it->second.rva;
                        addr=it->second.obj->virtualAddress()+it->second.rva;
 
                }
 
 
                for(auto const &ref: sym.second.refs) {
                for(auto const &ref: sym.second.refs) {
                        auto offset=obj->getWord(ref.rva);
                        if(ref.type==LinkableObject::Regular) obj->replaceWord(ref.rva,addr+ref.offset);
                        obj->replaceWord(ref.rva,addr+offset);
                        else {
 
                                auto target=static_cast<LinkableObject::Word>(addr+ref.offset);
 
                                if(target>0xFFFFF&&target<0xFFF00000) {
 
                                        std::ostringstream msg;
 
                                        msg<<"Address 0x"<<Utils::hex(target)<<" is out of the range for a short reference";
 
                                        msg<<" (referenced from "<<ref.source<<":"<<ref.line<<")";
 
                                        throw std::runtime_error(msg.str());
 
                                }
 
                                target&=0x1FFFFF;
 
                                auto w=obj->getWord(ref.rva);
 
                                w|=(target&0xFFFF);
 
                                w|=((target<<8)&0x1F000000);
 
                                obj->replaceWord(ref.rva,w);
 
                        }
                }
                }
        }
        }
}
}
 
 
void Linker::writeObjects(OutputWriter &writer) {
void Linker::writeObjects(OutputWriter &writer) {
Line 156... Line 259...
                        throw std::runtime_error("Image size exceeds the specified value");
                        throw std::runtime_error("Image size exceeds the specified value");
                else if(currentSize<_imageSize) writer.pad(_imageSize-currentSize);
                else if(currentSize<_imageSize) writer.pad(_imageSize-currentSize);
        }
        }
}
}
 
 
 No newline at end of file
 No newline at end of file
 
void Linker::markAsUsed(const LinkableObject *obj,std::set<const LinkableObject*> &used) {
 
        if(used.find(obj)!=used.end()) return; // already processed
 
        used.insert(obj);
 
        for(auto const &sym: _globalSymbolTable) {
 
                for(auto const &ref: sym.second.refs) {
 
                        if(ref==obj) markAsUsed(sym.second.obj,used);
 
                }
 
        }
 
}
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.