56 SymbolTable::insert(
Addr address,
string symbol)
61 if (!symbolTable.insert(make_pair(symbol, address)).second)
66 addrTable.insert(make_pair(address, symbol));
73 SymbolTable::load(
const string &filename)
76 ifstream file(filename.c_str());
79 fatal(
"file error: Can't open symbol table file %s\n", filename);
82 getline(file, buffer);
87 if (idx == string::npos)
90 string address = buffer.substr(0, idx);
95 string symbol = buffer.substr(idx + 1);
104 if (!insert(addr, symbol))
116 paramOut(cp, base +
".size", addrTable.size());
119 ATable::const_iterator
p, end = addrTable.end();
120 for (p = addrTable.begin(); p != end; ++
p) {
132 paramIn(cp, base +
".size", size);
133 for (
int i = 0;
i < size; ++
i) {
139 insert(addr, symbol);
#define fatal(...)
This implements a cprintf based fatal() function.
Overload hash function for BasicBlockRange type.
std::string csprintf(const char *format, const Args &...args)
void paramOut(CheckpointOut &cp, const string &name, ExtMachInst const &machInst)
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
bool to_number(const std::string &value, VecPredRegContainer< NumBits, Packed > &p)
Helper functions used for serialization/de-serialization.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
std::ostream CheckpointOut
void eat_white(std::string &s)
void paramIn(CheckpointIn &cp, const string &name, ExtMachInst &machInst)
SymbolTable * debugSymbolTable
Global unified debugging symbol table (for target).
void unserialize(ThreadContext &tc, CheckpointIn &cp)