object_file.hh revision 4111
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,
522472SN/A        Mips
53360SN/A    };
54360SN/A
55360SN/A    enum OpSys {
56360SN/A        UnknownOpSys,
57360SN/A        Tru64,
582207SN/A        Linux,
592207SN/A        Solaris
60360SN/A    };
61360SN/A
622SN/A  protected:
6312SN/A    const std::string filename;
642SN/A    int descriptor;
6512SN/A    uint8_t *fileData;
662SN/A    size_t len;
672SN/A
68360SN/A    Arch  arch;
69360SN/A    OpSys opSys;
70360SN/A
7112SN/A    ObjectFile(const std::string &_filename, int _fd,
72360SN/A               size_t _len, uint8_t *_data,
73360SN/A               Arch _arch, OpSys _opSys);
7412SN/A
752SN/A  public:
762SN/A    virtual ~ObjectFile();
772SN/A
782SN/A    void close();
792SN/A
802520SN/A    virtual bool loadSections(Port *memPort, Addr addrMask =
812520SN/A            std::numeric_limits<Addr>::max());
823812Ssaidi@eecs.umich.edu    virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
833812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
843812Ssaidi@eecs.umich.edu    virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
853812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
862SN/A
873917Ssaidi@eecs.umich.edu    virtual bool  isDynamic();
883917Ssaidi@eecs.umich.edu
89360SN/A    Arch  getArch()  const { return arch; }
90360SN/A    OpSys getOpSys() const { return opSys; }
91360SN/A
922SN/A  protected:
932SN/A
9412SN/A    struct Section {
952420SN/A        Addr     baseAddr;
962420SN/A        uint8_t *fileImage;
972420SN/A        size_t   size;
9812SN/A    };
9912SN/A
10012SN/A    Addr entry;
10112SN/A    Addr globalPtr;
10212SN/A
10312SN/A    Section text;
10412SN/A    Section data;
10512SN/A    Section bss;
1062SN/A
1072520SN/A    bool loadSection(Section *sec, Port *memPort, Addr addrMask);
1082472SN/A    void setGlobalPointer(Addr global_ptr) { globalPtr = global_ptr; }
1092420SN/A
1102SN/A  public:
11112SN/A    Addr entryPoint() const { return entry; }
1122472SN/A
11312SN/A    Addr globalPointer() const { return globalPtr; }
1142SN/A
11512SN/A    Addr textBase() const { return text.baseAddr; }
11612SN/A    Addr dataBase() const { return data.baseAddr; }
11712SN/A    Addr bssBase() const { return bss.baseAddr; }
11812SN/A
11912SN/A    size_t textSize() const { return text.size; }
12012SN/A    size_t dataSize() const { return data.size; }
12112SN/A    size_t bssSize() const { return bss.size; }
1223584Ssaidi@eecs.umich.edu
1233584Ssaidi@eecs.umich.edu    void setTextBase(Addr a) { text.baseAddr = a; }
1242SN/A};
1252SN/A
1263584Ssaidi@eecs.umich.eduObjectFile *createObjectFile(const std::string &fname, bool raw = false);
1272SN/A
1282SN/A
1292SN/A#endif // __OBJECT_FILE_HH__
130