object_file.hh revision 3812
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,
502207SN/A        SPARC,
512472SN/A        Mips
52360SN/A    };
53360SN/A
54360SN/A    enum OpSys {
55360SN/A        UnknownOpSys,
56360SN/A        Tru64,
572207SN/A        Linux,
582207SN/A        Solaris
59360SN/A    };
60360SN/A
612SN/A  protected:
6212SN/A    const std::string filename;
632SN/A    int descriptor;
6412SN/A    uint8_t *fileData;
652SN/A    size_t len;
662SN/A
67360SN/A    Arch  arch;
68360SN/A    OpSys opSys;
69360SN/A
7012SN/A    ObjectFile(const std::string &_filename, int _fd,
71360SN/A               size_t _len, uint8_t *_data,
72360SN/A               Arch _arch, OpSys _opSys);
7312SN/A
742SN/A  public:
752SN/A    virtual ~ObjectFile();
762SN/A
772SN/A    void close();
782SN/A
792520SN/A    virtual bool loadSections(Port *memPort, Addr addrMask =
802520SN/A            std::numeric_limits<Addr>::max());
813812Ssaidi@eecs.umich.edu    virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
823812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
833812Ssaidi@eecs.umich.edu    virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
843812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
852SN/A
86360SN/A    Arch  getArch()  const { return arch; }
87360SN/A    OpSys getOpSys() const { return opSys; }
88360SN/A
892SN/A  protected:
902SN/A
9112SN/A    struct Section {
922420SN/A        Addr     baseAddr;
932420SN/A        uint8_t *fileImage;
942420SN/A        size_t   size;
9512SN/A    };
9612SN/A
9712SN/A    Addr entry;
9812SN/A    Addr globalPtr;
9912SN/A
10012SN/A    Section text;
10112SN/A    Section data;
10212SN/A    Section bss;
1032SN/A
1042520SN/A    bool loadSection(Section *sec, Port *memPort, Addr addrMask);
1052472SN/A    void setGlobalPointer(Addr global_ptr) { globalPtr = global_ptr; }
1062420SN/A
1072SN/A  public:
10812SN/A    Addr entryPoint() const { return entry; }
1092472SN/A
11012SN/A    Addr globalPointer() const { return globalPtr; }
1112SN/A
11212SN/A    Addr textBase() const { return text.baseAddr; }
11312SN/A    Addr dataBase() const { return data.baseAddr; }
11412SN/A    Addr bssBase() const { return bss.baseAddr; }
11512SN/A
11612SN/A    size_t textSize() const { return text.size; }
11712SN/A    size_t dataSize() const { return data.size; }
11812SN/A    size_t bssSize() const { return bss.size; }
1193584Ssaidi@eecs.umich.edu
1203584Ssaidi@eecs.umich.edu    void setTextBase(Addr a) { text.baseAddr = a; }
1212SN/A};
1222SN/A
1233584Ssaidi@eecs.umich.eduObjectFile *createObjectFile(const std::string &fname, bool raw = false);
1242SN/A
1252SN/A
1262SN/A#endif // __OBJECT_FILE_HH__
127