object_file.hh (4155:4ac95b9c9149) object_file.hh (5070:3d6a1e37b944)
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;

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

80
81 virtual bool loadSections(Port *memPort, Addr addrMask =
82 std::numeric_limits<Addr>::max());
83 virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
84 std::numeric_limits<Addr>::max()) = 0;
85 virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
86 std::numeric_limits<Addr>::max()) = 0;
87
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;

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

80
81 virtual bool loadSections(Port *memPort, Addr addrMask =
82 std::numeric_limits<Addr>::max());
83 virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
84 std::numeric_limits<Addr>::max()) = 0;
85 virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
86 std::numeric_limits<Addr>::max()) = 0;
87
88 virtual bool isDynamic();
88 virtual bool isDynamic() { return false; }
89 virtual bool hasTLS() { return false; }
89
90 Arch getArch() const { return arch; }
91 OpSys getOpSys() const { return opSys; }
92
93 protected:
94
95 struct Section {
96 Addr baseAddr;

--- 34 unchanged lines hidden ---
90
91 Arch getArch() const { return arch; }
92 OpSys getOpSys() const { return opSys; }
93
94 protected:
95
96 struct Section {
97 Addr baseAddr;

--- 34 unchanged lines hidden ---