gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
symtab.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-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;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include "base/loader/symtab.hh"
30 
31 #include <fstream>
32 #include <iostream>
33 
34 #include "base/logging.hh"
35 #include "base/str.hh"
36 
37 namespace Loader
38 {
39 
41 
42 void
44 {
45  addrMap.clear();
46  nameMap.clear();
47  symbols.clear();
48 }
49 
50 bool
52 {
53  if (symbol.name.empty())
54  return false;
55 
56  int idx = symbols.size();
57 
58  if (!nameMap.insert({ symbol.name, idx }).second)
59  return false;
60 
61  // There can be multiple symbols for the same address, so always
62  // update the addrTable multimap when we see a new symbol name.
63  addrMap.insert({ symbol.address, idx });
64 
65  symbols.emplace_back(symbol);
66 
67  return true;
68 }
69 
70 bool
72 {
73  // Check if any symbol in other already exists in our table.
74  NameMap intersection;
75  std::set_intersection(other.nameMap.begin(), other.nameMap.end(),
76  nameMap.begin(), nameMap.end(),
77  std::inserter(intersection, intersection.begin()),
78  nameMap.value_comp());
79  if (!intersection.empty())
80  return false;
81 
82  for (const Symbol &symbol: other)
83  insert(symbol);
84 
85  return true;
86 }
87 
88 void
89 SymbolTable::serialize(const std::string &base, CheckpointOut &cp) const
90 {
91  paramOut(cp, base + ".size", symbols.size());
92 
93  int i = 0;
94  for (auto &symbol: symbols) {
95  paramOut(cp, csprintf("%s.addr_%d", base, i), symbol.address);
96  paramOut(cp, csprintf("%s.symbol_%d", base, i), symbol.name);
97  paramOut(cp, csprintf("%s.binding_%d", base, i), (int)symbol.binding);
98  i++;
99  }
100 }
101 
102 void
104  Symbol::Binding default_binding)
105 {
106  clear();
107  int size;
108  paramIn(cp, base + ".size", size);
109  for (int i = 0; i < size; ++i) {
110  Addr address;
111  std::string name;
112  Symbol::Binding binding = default_binding;
113 
114  paramIn(cp, csprintf("%s.addr_%d", base, i), address);
115  paramIn(cp, csprintf("%s.symbol_%d", base, i), name);
116  if (!optParamIn(cp, csprintf("%s.binding_%d", base, i), binding))
117  binding = default_binding;
118  insert({binding, name, address});
119  }
120 }
121 
122 } // namespace Loader
Loader::Symbol::Binding
Binding
Definition: symtab.hh:47
Loader::Symbol::address
Addr address
Definition: symtab.hh:55
Loader::SymbolTable::addrMap
AddrMap addrMap
Definition: symtab.hh:71
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Loader::SymbolTable
Definition: symtab.hh:58
X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:138
Loader::SymbolTable::serialize
void serialize(const std::string &base, CheckpointOut &cp) const
Definition: symtab.cc:89
Loader::SymbolTable::nameMap
NameMap nameMap
Definition: symtab.hh:72
str.hh
Loader
Definition: process.hh:34
optParamIn
bool optParamIn(CheckpointIn &cp, const std::string &name, T &param, bool do_warn=true)
This function is used for restoring optional parameters from the checkpoint.
Definition: serialize.hh:363
Loader::debugSymbolTable
SymbolTable debugSymbolTable
Global unified debugging symbol table (for target).
Definition: symtab.cc:40
cp
Definition: cprintf.cc:37
Loader::SymbolTable::NameMap
std::map< std::string, int > NameMap
Definition: symtab.hh:68
Loader::SymbolTable::unserialize
void unserialize(const std::string &base, CheckpointIn &cp, Symbol::Binding default_binding=Symbol::Binding::Global)
Definition: symtab.cc:103
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
name
const std::string & name()
Definition: trace.cc:48
paramOut
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
Definition: types.cc:37
Loader::Symbol::name
std::string name
Definition: symtab.hh:54
Loader::Symbol
Definition: symtab.hh:45
Loader::SymbolTable::symbols
SymbolVector symbols
Definition: symtab.hh:70
Loader::SymbolTable::clear
void clear()
Definition: symtab.cc:43
logging.hh
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
Loader::SymbolTable::insert
bool insert(const Symbol &symbol)
Definition: symtab.cc:51
symtab.hh
paramIn
void paramIn(CheckpointIn &cp, const std::string &name, ExtMachInst &machInst)
Definition: types.cc:69
CheckpointIn
Definition: serialize.hh:68
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158

Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17