aout_object.cc (10880:61a56f76222b) aout_object.cc (11392:5967db4cff04)
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;

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

75
76 DPRINTFR(Loader, "text: 0x%x %d\ndata: 0x%x %d\nbss: 0x%x %d\n",
77 text.baseAddr, text.size, data.baseAddr, data.size,
78 bss.baseAddr, bss.size);
79}
80
81
82bool
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;

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

75
76 DPRINTFR(Loader, "text: 0x%x %d\ndata: 0x%x %d\nbss: 0x%x %d\n",
77 text.baseAddr, text.size, data.baseAddr, data.size,
78 bss.baseAddr, bss.size);
79}
80
81
82bool
83AoutObject::loadGlobalSymbols(SymbolTable *symtab, Addr addrMask)
83AoutObject::loadAllSymbols(SymbolTable *symtab, Addr base, Addr offset,
84 Addr addr_mask)
84{
85{
86 return false;
87}
88
89bool
90AoutObject::loadGlobalSymbols(SymbolTable *symtab, Addr base, Addr offset,
91 Addr addr_mask)
92{
85 // a.out symbols not supported yet
86 return false;
87}
88
89bool
93 // a.out symbols not supported yet
94 return false;
95}
96
97bool
90AoutObject::loadLocalSymbols(SymbolTable *symtab, Addr addrMask)
98AoutObject::loadLocalSymbols(SymbolTable *symtab, Addr base, Addr offset,
99 Addr addr_mask)
91{
92 // a.out symbols not supported yet
93 return false;
94}
100{
101 // a.out symbols not supported yet
102 return false;
103}