object_file.hh revision 6392
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
386214Snate@binkert.org#include "base/types.hh"
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,
535874Sgblack@eecs.umich.edu        X86_64,
545874Sgblack@eecs.umich.edu        I386,
555335Shines@cs.fsu.edu        Arm
56360SN/A    };
57360SN/A
58360SN/A    enum OpSys {
59360SN/A        UnknownOpSys,
60360SN/A        Tru64,
612207SN/A        Linux,
626392Ssaidi@eecs.umich.edu        Solaris,
636392Ssaidi@eecs.umich.edu        LinuxArmOABI
64360SN/A    };
65360SN/A
662SN/A  protected:
6712SN/A    const std::string filename;
682SN/A    int descriptor;
6912SN/A    uint8_t *fileData;
702SN/A    size_t len;
712SN/A
72360SN/A    Arch  arch;
73360SN/A    OpSys opSys;
74360SN/A
7512SN/A    ObjectFile(const std::string &_filename, int _fd,
76360SN/A               size_t _len, uint8_t *_data,
77360SN/A               Arch _arch, OpSys _opSys);
7812SN/A
792SN/A  public:
802SN/A    virtual ~ObjectFile();
812SN/A
822SN/A    void close();
832SN/A
842520SN/A    virtual bool loadSections(Port *memPort, Addr addrMask =
852520SN/A            std::numeric_limits<Addr>::max());
863812Ssaidi@eecs.umich.edu    virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
873812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
883812Ssaidi@eecs.umich.edu    virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
893812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
902SN/A
915070Ssaidi@eecs.umich.edu    virtual bool isDynamic() { return false; }
925070Ssaidi@eecs.umich.edu    virtual bool hasTLS() { return false; }
933917Ssaidi@eecs.umich.edu
94360SN/A    Arch  getArch()  const { return arch; }
95360SN/A    OpSys getOpSys() const { return opSys; }
96360SN/A
972SN/A  protected:
982SN/A
9912SN/A    struct Section {
1002420SN/A        Addr     baseAddr;
1012420SN/A        uint8_t *fileImage;
1022420SN/A        size_t   size;
10312SN/A    };
10412SN/A
10512SN/A    Addr entry;
10612SN/A    Addr globalPtr;
10712SN/A
10812SN/A    Section text;
10912SN/A    Section data;
11012SN/A    Section bss;
1112SN/A
1122520SN/A    bool loadSection(Section *sec, Port *memPort, Addr addrMask);
1132472SN/A    void setGlobalPointer(Addr global_ptr) { globalPtr = global_ptr; }
1142420SN/A
1152SN/A  public:
11612SN/A    Addr entryPoint() const { return entry; }
1172472SN/A
11812SN/A    Addr globalPointer() const { return globalPtr; }
1192SN/A
12012SN/A    Addr textBase() const { return text.baseAddr; }
12112SN/A    Addr dataBase() const { return data.baseAddr; }
12212SN/A    Addr bssBase() const { return bss.baseAddr; }
12312SN/A
12412SN/A    size_t textSize() const { return text.size; }
12512SN/A    size_t dataSize() const { return data.size; }
12612SN/A    size_t bssSize() const { return bss.size; }
1273584Ssaidi@eecs.umich.edu
1283584Ssaidi@eecs.umich.edu    void setTextBase(Addr a) { text.baseAddr = a; }
1292SN/A};
1302SN/A
1313584Ssaidi@eecs.umich.eduObjectFile *createObjectFile(const std::string &fname, bool raw = false);
1322SN/A
1332SN/A
1342SN/A#endif // __OBJECT_FILE_HH__
135