symtab.hh (2632:1bb2f91485ea) symtab.hh (2650:a012c079984a)
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;

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

27 */
28
29#ifndef __SYMTAB_HH__
30#define __SYMTAB_HH__
31
32#include <iosfwd>
33#include <map>
34
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;

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

27 */
28
29#ifndef __SYMTAB_HH__
30#define __SYMTAB_HH__
31
32#include <iosfwd>
33#include <map>
34
35#include "arch/isa_traits.hh" // for Addr
35#include "sim/host.hh" // for Addr
36
37class Checkpoint;
38class SymbolTable
39{
40 public:
41 typedef std::map<Addr, std::string> ATable;
42 typedef std::map<std::string, Addr> STable;
43

--- 130 unchanged lines hidden ---
36
37class Checkpoint;
38class SymbolTable
39{
40 public:
41 typedef std::map<Addr, std::string> ATable;
42 typedef std::map<std::string, Addr> STable;
43

--- 130 unchanged lines hidden ---