object_file.hh revision 9641
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
408706Sandreas.hansson@arm.comclass PortProxy;
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,
556691Stjones1@inf.ed.ac.uk        Arm,
567095Sgblack@eecs.umich.edu        Thumb,
576691Stjones1@inf.ed.ac.uk        Power
58360SN/A    };
59360SN/A
60360SN/A    enum OpSys {
61360SN/A        UnknownOpSys,
62360SN/A        Tru64,
632207SN/A        Linux,
646392Ssaidi@eecs.umich.edu        Solaris,
656392Ssaidi@eecs.umich.edu        LinuxArmOABI
66360SN/A    };
67360SN/A
682SN/A  protected:
6912SN/A    const std::string filename;
702SN/A    int descriptor;
7112SN/A    uint8_t *fileData;
722SN/A    size_t len;
732SN/A
74360SN/A    Arch  arch;
75360SN/A    OpSys opSys;
76360SN/A
7712SN/A    ObjectFile(const std::string &_filename, int _fd,
78360SN/A               size_t _len, uint8_t *_data,
79360SN/A               Arch _arch, OpSys _opSys);
8012SN/A
812SN/A  public:
822SN/A    virtual ~ObjectFile();
832SN/A
842SN/A    void close();
852SN/A
868852Sandreas.hansson@arm.com    virtual bool loadSections(PortProxy& memProxy, Addr addrMask =
872520SN/A            std::numeric_limits<Addr>::max());
883812Ssaidi@eecs.umich.edu    virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
893812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
903812Ssaidi@eecs.umich.edu    virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
913812Ssaidi@eecs.umich.edu            std::numeric_limits<Addr>::max()) = 0;
929641Sguodeyuan@tsinghua.org.cn    virtual bool loadWeakSymbols(SymbolTable *symtab, Addr addrMask =
939641Sguodeyuan@tsinghua.org.cn            std::numeric_limits<Addr>::max())
949641Sguodeyuan@tsinghua.org.cn    { return false; }
952SN/A
965070Ssaidi@eecs.umich.edu    virtual bool isDynamic() { return false; }
975070Ssaidi@eecs.umich.edu    virtual bool hasTLS() { return false; }
983917Ssaidi@eecs.umich.edu
99360SN/A    Arch  getArch()  const { return arch; }
100360SN/A    OpSys getOpSys() const { return opSys; }
101360SN/A
1022SN/A  protected:
1032SN/A
10412SN/A    struct Section {
1052420SN/A        Addr     baseAddr;
1062420SN/A        uint8_t *fileImage;
1072420SN/A        size_t   size;
10812SN/A    };
10912SN/A
11012SN/A    Addr entry;
11112SN/A    Addr globalPtr;
11212SN/A
11312SN/A    Section text;
11412SN/A    Section data;
11512SN/A    Section bss;
1162SN/A
1178852Sandreas.hansson@arm.com    bool loadSection(Section *sec, PortProxy& memProxy, Addr addrMask);
1182472SN/A    void setGlobalPointer(Addr global_ptr) { globalPtr = global_ptr; }
1192420SN/A
1202SN/A  public:
12112SN/A    Addr entryPoint() const { return entry; }
1222472SN/A
12312SN/A    Addr globalPointer() const { return globalPtr; }
1242SN/A
12512SN/A    Addr textBase() const { return text.baseAddr; }
12612SN/A    Addr dataBase() const { return data.baseAddr; }
12712SN/A    Addr bssBase() const { return bss.baseAddr; }
12812SN/A
12912SN/A    size_t textSize() const { return text.size; }
13012SN/A    size_t dataSize() const { return data.size; }
13112SN/A    size_t bssSize() const { return bss.size; }
1323584Ssaidi@eecs.umich.edu
1339261Sdam.sunwoo@arm.com    /* This function allows you to override the base address where
1349261Sdam.sunwoo@arm.com     * a binary is going to be loaded or set it if the binary is just a
1359261Sdam.sunwoo@arm.com     * blob that doesn't include an object header.
1369261Sdam.sunwoo@arm.com     * @param a address to load the binary/text section at
1379261Sdam.sunwoo@arm.com     */
1383584Ssaidi@eecs.umich.edu    void setTextBase(Addr a) { text.baseAddr = a; }
1392SN/A};
1402SN/A
1413584Ssaidi@eecs.umich.eduObjectFile *createObjectFile(const std::string &fname, bool raw = false);
1422SN/A
1432SN/A
1442SN/A#endif // __OBJECT_FILE_HH__
145