aout_object.cc revision 3812
112SN/A/*
21762SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
312SN/A * All rights reserved.
412SN/A *
512SN/A * Redistribution and use in source and binary forms, with or without
612SN/A * modification, are permitted provided that the following conditions are
712SN/A * met: redistributions of source code must retain the above copyright
812SN/A * notice, this list of conditions and the following disclaimer;
912SN/A * redistributions in binary form must reproduce the above copyright
1012SN/A * notice, this list of conditions and the following disclaimer in the
1112SN/A * documentation and/or other materials provided with the distribution;
1212SN/A * neither the name of the copyright holders nor the names of its
1312SN/A * contributors may be used to endorse or promote products derived from
1412SN/A * this software without specific prior written permission.
1512SN/A *
1612SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1712SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1812SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1912SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2012SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2112SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2212SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2312SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2412SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2512SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2612SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt
2912SN/A */
3012SN/A
3112SN/A#include <string>
3212SN/A
3356SN/A#include "base/loader/aout_object.hh"
3412SN/A
3556SN/A#include "base/loader/symtab.hh"
3612SN/A
3756SN/A#include "base/trace.hh"	// for DPRINTF
3812SN/A
3956SN/A#include "base/loader/exec_aout.h"
4012SN/A
4112SN/Ausing namespace std;
4212SN/A
4312SN/AObjectFile *
4412SN/AAoutObject::tryFile(const string &fname, int fd, size_t len, uint8_t *data)
4512SN/A{
4612SN/A    if (!N_BADMAG(*(aout_exechdr *)data)) {
47360SN/A        // right now this is only used for Alpha PAL code
48360SN/A        return new AoutObject(fname, fd, len, data,
49360SN/A                              ObjectFile::Alpha, ObjectFile::UnknownOpSys);
5012SN/A    }
5112SN/A    else {
5212SN/A        return NULL;
5312SN/A    }
5412SN/A}
5512SN/A
5612SN/A
5712SN/AAoutObject::AoutObject(const string &_filename, int _fd,
58360SN/A                       size_t _len, uint8_t *_data,
59360SN/A                       Arch _arch, OpSys _opSys)
60360SN/A    : ObjectFile(_filename, _fd, _len, _data, _arch, _opSys)
6112SN/A{
6212SN/A    execHdr = (aout_exechdr *)fileData;
6312SN/A
6412SN/A    entry = execHdr->entry;
6512SN/A
6612SN/A    text.baseAddr = N_TXTADDR(*execHdr);
6712SN/A    text.size = execHdr->tsize;
682420SN/A    text.fileImage = fileData + N_TXTOFF(*execHdr);
6912SN/A
7012SN/A    data.baseAddr = N_DATADDR(*execHdr);
7112SN/A    data.size = execHdr->dsize;
722420SN/A    data.fileImage = fileData + N_DATOFF(*execHdr);
7312SN/A
7412SN/A    bss.baseAddr = N_BSSADDR(*execHdr);
7512SN/A    bss.size = execHdr->bsize;
762420SN/A    bss.fileImage = NULL;
7712SN/A
7812SN/A    DPRINTFR(Loader, "text: 0x%x %d\ndata: 0x%x %d\nbss: 0x%x %d\n",
7912SN/A             text.baseAddr, text.size, data.baseAddr, data.size,
8012SN/A             bss.baseAddr, bss.size);
8112SN/A}
8212SN/A
8312SN/A
8412SN/Abool
853812Ssaidi@eecs.umich.eduAoutObject::loadGlobalSymbols(SymbolTable *symtab, Addr addrMask)
8612SN/A{
8712SN/A    // a.out symbols not supported yet
8812SN/A    return false;
8912SN/A}
9012SN/A
9112SN/Abool
923812Ssaidi@eecs.umich.eduAoutObject::loadLocalSymbols(SymbolTable *symtab, Addr addrMask)
9312SN/A{
9412SN/A    // a.out symbols not supported yet
9512SN/A    return false;
9612SN/A}
97