object_file.hh revision 4155
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,
534155Sgblack@eecs.umich.edu        X86
54360SN/A    };
55360SN/A
56360SN/A    enum OpSys {
57360SN/A        UnknownOpSys,
58360SN/A        Tru64,
592207SN/A        Linux,
602207SN/A        Solaris
61360SN/A    };
62360SN/A
632SN/A  protected:
6412SN/A    const std::string filename;
652SN/A    int descriptor;
6612SN/A    uint8_t *fileData;
672SN/A    size_t len;
682SN/A
69360SN/A    Arch  arch;
70360SN/A    OpSys opSys;
71360SN/A
7212SN/A    ObjectFile(const std::string &_filename, int _fd,
73360SN/A               size_t _len, uint8_t *_data,
74360SN/A               Arch _arch, OpSys _opSys);
7512SN/A
762SN/A  public:
772SN/A    virtual ~ObjectFile();
782SN/A
792SN/A    void close();
802SN/A
812520SN/A    virtual bool loadSections(Port *memPort, Addr addrMask =
822520SN/A            std::numeric_limits<Addr>::max());
833812Ssaidi@eecs.umich.edu    virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
843812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
853812Ssaidi@eecs.umich.edu    virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
863812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
872SN/A
883917Ssaidi@eecs.umich.edu    virtual bool  isDynamic();
893917Ssaidi@eecs.umich.edu
90360SN/A    Arch  getArch()  const { return arch; }
91360SN/A    OpSys getOpSys() const { return opSys; }
92360SN/A
932SN/A  protected:
942SN/A
9512SN/A    struct Section {
962420SN/A        Addr     baseAddr;
972420SN/A        uint8_t *fileImage;
982420SN/A        size_t   size;
9912SN/A    };
10012SN/A
10112SN/A    Addr entry;
10212SN/A    Addr globalPtr;
10312SN/A
10412SN/A    Section text;
10512SN/A    Section data;
10612SN/A    Section bss;
1072SN/A
1082520SN/A    bool loadSection(Section *sec, Port *memPort, Addr addrMask);
1092472SN/A    void setGlobalPointer(Addr global_ptr) { globalPtr = global_ptr; }
1102420SN/A
1112SN/A  public:
11212SN/A    Addr entryPoint() const { return entry; }
1132472SN/A
11412SN/A    Addr globalPointer() const { return globalPtr; }
1152SN/A
11612SN/A    Addr textBase() const { return text.baseAddr; }
11712SN/A    Addr dataBase() const { return data.baseAddr; }
11812SN/A    Addr bssBase() const { return bss.baseAddr; }
11912SN/A
12012SN/A    size_t textSize() const { return text.size; }
12112SN/A    size_t dataSize() const { return data.size; }
12212SN/A    size_t bssSize() const { return bss.size; }
1233584Ssaidi@eecs.umich.edu
1243584Ssaidi@eecs.umich.edu    void setTextBase(Addr a) { text.baseAddr = a; }
1252SN/A};
1262SN/A
1273584Ssaidi@eecs.umich.eduObjectFile *createObjectFile(const std::string &fname, bool raw = false);
1282SN/A
1292SN/A
1302SN/A#endif // __OBJECT_FILE_HH__
131