elf_object.cc (2976:371224501196) elf_object.cc (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;

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

325 }
326
327 elf_end(elf);
328
329 return found;
330}
331
332bool
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;

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

325 }
326
327 elf_end(elf);
328
329 return found;
330}
331
332bool
333ElfObject::loadGlobalSymbols(SymbolTable *symtab)
333ElfObject::loadGlobalSymbols(SymbolTable *symtab, Addr addrMask)
334{
335 return loadSomeSymbols(symtab, STB_GLOBAL);
336}
337
338bool
334{
335 return loadSomeSymbols(symtab, STB_GLOBAL);
336}
337
338bool
339ElfObject::loadLocalSymbols(SymbolTable *symtab)
339ElfObject::loadLocalSymbols(SymbolTable *symtab, Addr addrMask)
340{
341 return loadSomeSymbols(symtab, STB_LOCAL);
342}
340{
341 return loadSomeSymbols(symtab, STB_LOCAL);
342}