elf_object.hh (2976:371224501196) elf_object.hh (3812:eaa215123a26)
1/*
2 * Copyright (c) 2003-2005 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;

--- 39 unchanged lines hidden (view full) ---

48
49 ElfObject(const std::string &_filename, int _fd,
50 size_t _len, uint8_t *_data,
51 Arch _arch, OpSys _opSys);
52
53 public:
54 virtual ~ElfObject() {}
55
1/*
2 * Copyright (c) 2003-2005 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;

--- 39 unchanged lines hidden (view full) ---

48
49 ElfObject(const std::string &_filename, int _fd,
50 size_t _len, uint8_t *_data,
51 Arch _arch, OpSys _opSys);
52
53 public:
54 virtual ~ElfObject() {}
55
56 virtual bool loadGlobalSymbols(SymbolTable *symtab);
57 virtual bool loadLocalSymbols(SymbolTable *symtab);
56 virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
57 std::numeric_limits<Addr>::max());
58 virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
59 std::numeric_limits<Addr>::max());
58
59 static ObjectFile *tryFile(const std::string &fname, int fd,
60 size_t len, uint8_t *data);
61 Addr programHeaderTable() {return _programHeaderTable;}
62 uint16_t programHeaderSize() {return _programHeaderSize;}
63 uint16_t programHeaderCount() {return _programHeaderCount;}
64};
65
66#endif // __ELF_OBJECT_HH__
60
61 static ObjectFile *tryFile(const std::string &fname, int fd,
62 size_t len, uint8_t *data);
63 Addr programHeaderTable() {return _programHeaderTable;}
64 uint16_t programHeaderSize() {return _programHeaderSize;}
65 uint16_t programHeaderCount() {return _programHeaderCount;}
66};
67
68#endif // __ELF_OBJECT_HH__