Deleted Added
sdiff udiff text old ( 4155:4ac95b9c9149 ) new ( 5070:3d6a1e37b944 )
full compact
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() { return false; }
89 virtual bool hasTLS() { return false; }
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 ---