object_file.hh revision 5335
12SN/A/*
21762SN/A * Copyright (c) 2002-2004 The Regents of The University of Michigan
32SN/A * All rights reserved.
42SN/A *
52SN/A * Redistribution and use in source and binary forms, with or without
62SN/A * modification, are permitted provided that the following conditions are
72SN/A * met: redistributions of source code must retain the above copyright
82SN/A * notice, this list of conditions and the following disclaimer;
92SN/A * redistributions in binary form must reproduce the above copyright
102SN/A * notice, this list of conditions and the following disclaimer in the
112SN/A * documentation and/or other materials provided with the distribution;
122SN/A * neither the name of the copyright holders nor the names of its
132SN/A * contributors may be used to endorse or promote products derived from
142SN/A * this software without specific prior written permission.
152SN/A *
162SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Nathan Binkert
292665Ssaidi@eecs.umich.edu *          Steve Reinhardt
302SN/A */
312SN/A
322SN/A#ifndef __OBJECT_FILE_HH__
332SN/A#define __OBJECT_FILE_HH__
342SN/A
352520SN/A#include <limits>
362207SN/A#include <string>
372207SN/A
382207SN/A#include "sim/host.hh"	// for Addr
392SN/A
402519SN/Aclass Port;
412SN/Aclass SymbolTable;
422SN/A
432SN/Aclass ObjectFile
442SN/A{
45360SN/A  public:
46360SN/A
47360SN/A    enum Arch {
48360SN/A        UnknownArch,
492207SN/A        Alpha,
504111Sgblack@eecs.umich.edu        SPARC64,
514111Sgblack@eecs.umich.edu        SPARC32,
524155Sgblack@eecs.umich.edu        Mips,
535335Shines@cs.fsu.edu        X86,
545335Shines@cs.fsu.edu        Arm
55360SN/A    };
56360SN/A
57360SN/A    enum OpSys {
58360SN/A        UnknownOpSys,
59360SN/A        Tru64,
602207SN/A        Linux,
612207SN/A        Solaris
62360SN/A    };
63360SN/A
642SN/A  protected:
6512SN/A    const std::string filename;
662SN/A    int descriptor;
6712SN/A    uint8_t *fileData;
682SN/A    size_t len;
692SN/A
70360SN/A    Arch  arch;
71360SN/A    OpSys opSys;
72360SN/A
7312SN/A    ObjectFile(const std::string &_filename, int _fd,
74360SN/A               size_t _len, uint8_t *_data,
75360SN/A               Arch _arch, OpSys _opSys);
7612SN/A
772SN/A  public:
782SN/A    virtual ~ObjectFile();
792SN/A
802SN/A    void close();
812SN/A
822520SN/A    virtual bool loadSections(Port *memPort, Addr addrMask =
832520SN/A            std::numeric_limits<Addr>::max());
843812Ssaidi@eecs.umich.edu    virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
853812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
863812Ssaidi@eecs.umich.edu    virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
873812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
882SN/A
895070Ssaidi@eecs.umich.edu    virtual bool isDynamic() { return false; }
905070Ssaidi@eecs.umich.edu    virtual bool hasTLS() { return false; }
913917Ssaidi@eecs.umich.edu
92360SN/A    Arch  getArch()  const { return arch; }
93360SN/A    OpSys getOpSys() const { return opSys; }
94360SN/A
952SN/A  protected:
962SN/A
9712SN/A    struct Section {
982420SN/A        Addr     baseAddr;
992420SN/A        uint8_t *fileImage;
1002420SN/A        size_t   size;
10112SN/A    };
10212SN/A
10312SN/A    Addr entry;
10412SN/A    Addr globalPtr;
10512SN/A
10612SN/A    Section text;
10712SN/A    Section data;
10812SN/A    Section bss;
1092SN/A
1102520SN/A    bool loadSection(Section *sec, Port *memPort, Addr addrMask);
1112472SN/A    void setGlobalPointer(Addr global_ptr) { globalPtr = global_ptr; }
1122420SN/A
1132SN/A  public:
11412SN/A    Addr entryPoint() const { return entry; }
1152472SN/A
11612SN/A    Addr globalPointer() const { return globalPtr; }
1172SN/A
11812SN/A    Addr textBase() const { return text.baseAddr; }
11912SN/A    Addr dataBase() const { return data.baseAddr; }
12012SN/A    Addr bssBase() const { return bss.baseAddr; }
12112SN/A
12212SN/A    size_t textSize() const { return text.size; }
12312SN/A    size_t dataSize() const { return data.size; }
12412SN/A    size_t bssSize() const { return bss.size; }
1253584Ssaidi@eecs.umich.edu
1263584Ssaidi@eecs.umich.edu    void setTextBase(Addr a) { text.baseAddr = a; }
1272SN/A};
1282SN/A
1293584Ssaidi@eecs.umich.eduObjectFile *createObjectFile(const std::string &fname, bool raw = false);
1302SN/A
1312SN/A
1322SN/A#endif // __OBJECT_FILE_HH__
133