aout_object.cc (2665:a124942bacb8) aout_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;

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

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

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

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