summaryrefslogtreecommitdiff
path: root/other/Kermit/doc/API_doc/html/SymbolTable_8hpp-source.html
diff options
context:
space:
mode:
Diffstat (limited to 'other/Kermit/doc/API_doc/html/SymbolTable_8hpp-source.html')
-rw-r--r--other/Kermit/doc/API_doc/html/SymbolTable_8hpp-source.html82
1 files changed, 82 insertions, 0 deletions
diff --git a/other/Kermit/doc/API_doc/html/SymbolTable_8hpp-source.html b/other/Kermit/doc/API_doc/html/SymbolTable_8hpp-source.html
new file mode 100644
index 0000000..04dadd8
--- /dev/null
+++ b/other/Kermit/doc/API_doc/html/SymbolTable_8hpp-source.html
@@ -0,0 +1,82 @@
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3<title>SymbolTable.hpp Source File</title>
4<link href="doxygen.css" rel="stylesheet" type="text/css">
5</head><body bgcolor="#ffffff">
6<!-- Generated by Doxygen 1.2.9.1 -->
7<center>
8<a class="qindex" href="index.html">Main Page</a> &nbsp; <a class="qindex" href="annotated.html">Compound List</a> &nbsp; <a class="qindex" href="files.html">File List</a> &nbsp; <a class="qindex" href="functions.html">Compound Members</a> &nbsp; </center>
9<hr><h1>SymbolTable.hpp</h1><div class="fragment"><pre>00001 <font class="comment">/*</font>
1000002 <font class="comment"> * SymbolTable.hpp:</font>
1100003 <font class="comment"> * a container for "on-demand" symbol address fetching</font>
1200004 <font class="comment"> * written by palmers / teso</font>
1300005 <font class="comment"> */</font>
1400006 <font class="preprocessor">#ifndef __SYMBOL_TABLE_C</font>
1500007 <font class="preprocessor"></font><font class="preprocessor">#define __SYMBOL_TABLE_C</font>
1600008 <font class="preprocessor"></font>
1700009 <font class="preprocessor">#include &lt;SymbolFingp.hpp&gt;</font>
1800010 <font class="preprocessor">#include &lt;SystemMap.hpp&gt;</font>
1900011 <font class="preprocessor">#include &lt;DevMemPatt.hpp&gt;</font>
2000012 <font class="preprocessor">#include &lt;rwKernel.hpp&gt;</font>
2100013 <font class="preprocessor">#include &lt;list&gt;</font>
2200014 <font class="preprocessor">#include &lt;string&gt;</font>
2300015 <font class="preprocessor">#include &lt;iostream&gt;</font>
2400016 <font class="preprocessor">#include &lt;fstream&gt;</font>
2500017 <font class="preprocessor">#include &lt;algorithm&gt;</font>
2600018 <font class="preprocessor">#include &lt;iterator&gt;</font>
2700019
2800020 <font class="preprocessor">#define DEFAULTDUMP "SymbolTableDump"</font>
2900021 <font class="preprocessor"></font><font class="preprocessor">#define DEFAULTSYSTEMMAP "System.map"</font>
3000022 <font class="preprocessor"></font>
3100023 <font class="keyword">typedef</font> <font class="keyword">struct</font>
3200024 <font class="keyword"> </font>{
3300025 string Name;
3400026 <font class="keywordtype">unsigned</font> <font class="keywordtype">int</font> Address;
3500027 } zzSym;
3600028 <font class="keyword">typedef</font> list&lt;zzSym *&gt; zzSymList;
3700029
3800030
39<a name="l00034"></a><a class="code" href="classSymbolTable.html">00034</a> <font class="keyword">class </font><a class="code" href="classSymbolTable.html">SymbolTable</a>
4000035 {
4100036 <font class="keyword">private</font>:
4200037 <a class="code" href="classSymbolFingp.html">SymbolFingp</a> *fing;
4300038 <a class="code" href="classDevMemPatt.html">DevMemPatt</a> *patt;
4400039 <a class="code" href="classSystemMap.html">SystemMap</a> exported;
4500040 <a class="code" href="classSystemMap.html">SystemMap</a> mapp;
4600041 <a class="code" href="classSystemMap.html">SystemMap</a> rest;
4700042 string dump_file;
4800043
4900044 <font class="keywordtype">bool</font> createObjects (<a class="code" href="classrwKernel.html">rwKernel</a> *);
5000045 <font class="keywordtype">bool</font> loadFiles (string, string);
5100046
5200047 <font class="keyword">public</font>:
53<a name="l00051"></a><a class="code" href="classSymbolTable.html#m0">00051</a> zzSymList symList;
5400052
5500056 <a class="code" href="classSymbolTable.html#a0">SymbolTable</a> ();
5600057
5700063 <a class="code" href="classSymbolTable.html#a0">SymbolTable</a> (string res, string sys);
5800064
5900069 <a class="code" href="classSymbolTable.html#a0">SymbolTable</a> (<a class="code" href="classrwKernel.html">rwKernel</a> *);
6000070
6100074 <a class="code" href="classSymbolTable.html#a3">~SymbolTable</a> ();
6200075
6300080 <font class="keywordtype">void</font> <a class="code" href="classSymbolTable.html#a4">setSaveFile</a> (string);
6400081
6500088 <font class="keywordtype">unsigned</font> <font class="keywordtype">int</font> <a class="code" href="classSymbolTable.html#a5">getSymbol</a> (string);
6600089
6700096 <font class="keywordtype">bool</font> <a class="code" href="classSymbolTable.html#a6">findSymbol</a> (string);
6800097
6900101 <font class="keywordtype">void</font> <a class="code" href="classSymbolTable.html#a7">addSymbolToCache</a> (string, <font class="keywordtype">unsigned</font> <font class="keywordtype">int</font>);
7000102
7100106 <font class="keywordtype">void</font> <a class="code" href="classSymbolTable.html#a8">clearCache</a> ();
7200107
7300111 <font class="keywordtype">bool</font> <a class="code" href="classSymbolTable.html#a9">saveCache</a> ();
7400112 };
7500113 <font class="preprocessor">#endif </font><font class="comment">/* __SYMBOL_TABLE_C */</font>
76</pre></div><hr><address><small>Generated at Tue Aug 14 18:04:51 2001 for Kermit by
77<a href="http://www.doxygen.org/index.html">
78<img src="doxygen.gif" alt="doxygen" align="middle" border=0
79width=110 height=53></a>1.2.9.1 written by <a href="mailto:dimitri@stack.nl">Dimitri van Heesch</a>,
80 &copy;&nbsp;1997-2001</small></address>
81</body>
82</html>