object_file.hh (9261:f795ce1feb5b) object_file.hh (9641:2285b98847d7)
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;

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

84 void close();
85
86 virtual bool loadSections(PortProxy& memProxy, Addr addrMask =
87 std::numeric_limits<Addr>::max());
88 virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
89 std::numeric_limits<Addr>::max()) = 0;
90 virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
91 std::numeric_limits<Addr>::max()) = 0;
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;

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

84 void close();
85
86 virtual bool loadSections(PortProxy& memProxy, Addr addrMask =
87 std::numeric_limits<Addr>::max());
88 virtual bool loadGlobalSymbols(SymbolTable *symtab, Addr addrMask =
89 std::numeric_limits<Addr>::max()) = 0;
90 virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
91 std::numeric_limits<Addr>::max()) = 0;
92 virtual bool loadWeakSymbols(SymbolTable *symtab, Addr addrMask =
93 std::numeric_limits<Addr>::max())
94 { return false; }
92
93 virtual bool isDynamic() { return false; }
94 virtual bool hasTLS() { return false; }
95
96 Arch getArch() const { return arch; }
97 OpSys getOpSys() const { return opSys; }
98
99 protected:

--- 42 unchanged lines hidden ---
95
96 virtual bool isDynamic() { return false; }
97 virtual bool hasTLS() { return false; }
98
99 Arch getArch() const { return arch; }
100 OpSys getOpSys() const { return opSys; }
101
102 protected:

--- 42 unchanged lines hidden ---