object_file.hh revision 2207
1/*
2 * Copyright (c) 2002-2004 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef __OBJECT_FILE_HH__
30#define __OBJECT_FILE_HH__
31
32#include <string>
33
34#include "sim/host.hh"	// for Addr
35
36class FunctionalMemory;
37class SymbolTable;
38
39class ObjectFile
40{
41  public:
42
43    enum Arch {
44        UnknownArch,
45        Alpha,
46        SPARC,
47        MIPS
48    };
49
50    enum OpSys {
51        UnknownOpSys,
52        Tru64,
53        Linux,
54        Solaris
55    };
56
57  protected:
58    const std::string filename;
59    int descriptor;
60    uint8_t *fileData;
61    size_t len;
62
63    Arch  arch;
64    OpSys opSys;
65
66    ObjectFile(const std::string &_filename, int _fd,
67               size_t _len, uint8_t *_data,
68               Arch _arch, OpSys _opSys);
69
70  public:
71    virtual ~ObjectFile();
72
73    void close();
74
75    virtual bool loadSections(FunctionalMemory *mem,
76                              bool loadPhys = false) = 0;
77    virtual bool loadGlobalSymbols(SymbolTable *symtab) = 0;
78    virtual bool loadLocalSymbols(SymbolTable *symtab) = 0;
79
80    Arch  getArch()  const { return arch; }
81    OpSys getOpSys() const { return opSys; }
82
83  protected:
84
85    struct Section {
86        Addr baseAddr;
87        size_t size;
88    };
89
90    Addr entry;
91    Addr globalPtr;
92
93    Section text;
94    Section data;
95    Section bss;
96
97  public:
98    Addr entryPoint() const { return entry; }
99    Addr globalPointer() const { return globalPtr; }
100
101    Addr textBase() const { return text.baseAddr; }
102    Addr dataBase() const { return data.baseAddr; }
103    Addr bssBase() const { return bss.baseAddr; }
104
105    size_t textSize() const { return text.size; }
106    size_t dataSize() const { return data.size; }
107    size_t bssSize() const { return bss.size; }
108};
109
110ObjectFile *createObjectFile(const std::string &fname);
111
112
113#endif // __OBJECT_FILE_HH__
114