2 * Copyright (c) 1996 Barton P. Miller
4 * We provide the Paradyn Parallel Performance Tools (below
5 * described as Paradyn") on an AS IS basis, and do not warrant its
6 * validity or performance. We reserve the right to update, modify,
7 * or discontinue this software at any time. We shall have no
8 * obligation to supply such updates or modifications or any other
9 * form of support to you.
11 * This license is for research uses. For such uses, there is no
12 * charge. We define "research use" to mean you may freely use it
13 * inside your organization for whatever purposes you see fit. But you
14 * may not re-distribute Paradyn or parts of Paradyn, in any form
15 * source or binary (including derivatives), electronic or otherwise,
16 * to any other organization or entity without our permission.
18 * (for other uses, please contact us at paradyn@cs.wisc.edu)
20 * All warranties, including without limitation, any warranty of
21 * merchantability or fitness for a particular purpose, are hereby
24 * By your use of Paradyn, you understand and agree that we (or any
25 * other person or entity with proprietary rights in Paradyn) are
26 * under no obligation to provide either maintenance services,
27 * update services, notices of latent defects, or correction of
28 * defects for Paradyn.
30 * Even if advised of the possibility of such damages, under no
31 * circumstances shall we (or any other person or entity with
32 * proprietary rights in the software licensed hereunder) be liable
33 * to you or any third party for direct, indirect, or consequential
34 * damages of any character regardless of type of action, including,
35 * without limitation, loss of profits, loss of use, loss of good
36 * will, or computer failure or malfunction. You agree to indemnify
37 * us (and any other person or entity with proprietary rights in the
38 * software licensed hereunder) for any and all liability it may
39 * incur to third parties resulting from your use of Paradyn.
44 #pragma implementation "Dictionary.h"
45 #include "util/src/Dictionary.C"
47 #include "util/h/String.h"
49 #include "dyninstAPI/src/symtab.h"
50 #include "dyninstAPI/src/process.h"
51 #include "dyninstAPI/src/inst.h"
52 #include "dyninstAPI/src/instP.h"
53 #include "dyninstAPI/src/dyninstP.h"
54 #include "dyninstAPI/src/ast.h"
55 #include "dyninstAPI/src/util.h"
56 #include "util/h/Object.h"
57 #include "dyninstAPI/src/sharedobject.h"
62 template class dictionary_hash <const instPoint *, trampTemplate *>;
63 template class vector<dictionary_hash <const instPoint *, trampTemplate *>::entry>;
64 template class dictionary_hash_iter <const instPoint *, trampTemplate *>;
66 template class dictionary_hash <instInstance *, instInstance *>;
67 template class vector<dictionary_hash <instInstance *, instInstance *>::entry>;
68 template class dictionary_hash <Address, Symbol*>;
69 template class vector<dictionary_hash <Address, Symbol*>::entry>;
70 template class dictionary_hash<const instPoint*, point*>;
71 template class vector<dictionary_hash<const instPoint*, point*>::entry>;
72 template class dictionary_hash <instPoint*, unsigned>;
73 template class vector<dictionary_hash <instPoint*, unsigned>::entry>;
74 template class dictionary_hash <string, internalSym*>;
75 template class vector<dictionary_hash <string, internalSym*>::entry>;
76 template class dictionary_hash <string, pdmodule *>;
77 template class vector<dictionary_hash <string, pdmodule *>::entry>;
78 template class dictionary_hash <string, pd_Function*>;
79 template class vector<dictionary_hash <string, pd_Function*>::entry>;
80 template class dictionary_hash <string, resource*>;
81 template class vector<dictionary_hash <string, resource*>::entry>;
82 template class dictionary_hash <string, unsigned>;
83 template class vector<dictionary_hash <string, unsigned>::entry>;
84 template class dictionary_hash <string, vector<pd_Function*>*>;
85 template class vector<dictionary_hash <string, vector<pd_Function*>*>::entry>;
86 template class dictionary_hash <unsigned, heapItem*>;
87 template class vector<dictionary_hash <unsigned, heapItem*>::entry>;
88 template class dictionary_hash <unsigned, metricDefinitionNode*>;
89 template class vector<dictionary_hash <unsigned, metricDefinitionNode*>::entry>;
90 template class dictionary_hash <string, metricDefinitionNode*>;
91 template class vector<dictionary_hash <string, metricDefinitionNode*>::entry>;
92 template class dictionary_hash_iter <string, metricDefinitionNode*>;
93 template class dictionary_hash <unsigned, pd_Function*>;
94 template class vector<dictionary_hash <unsigned, pd_Function*>::entry>;
95 template class dictionary_hash <unsigned, resource *>;
96 template class vector<dictionary_hash <unsigned, resource *>::entry>;
97 template class dictionary_hash <unsigned, unsigned>;
98 template class vector<dictionary_hash <unsigned, unsigned>::entry>;
99 template class dictionary_hash_iter <unsigned, unsigned>;
100 template class dictionary_hash <metricDefinitionNode*,metricDefinitionNode*>;
101 template class vector<dictionary_hash <metricDefinitionNode*,metricDefinitionNode*>::entry>;
103 template class dictionary_hash_iter <Address, Symbol*>;
104 template class dictionary_hash_iter <const instPoint*, point*>;
105 template class dictionary_hash_iter <instPoint*, unsigned>;
106 template class dictionary_hash_iter <string, Symbol>;
107 template class dictionary_hash_iter <string, internalSym*>;
108 template class dictionary_hash_iter <string, pdmodule *>;
109 template class dictionary_hash_iter <string, pd_Function*>;
110 template class dictionary_hash_iter <string, resource*>;
111 template class dictionary_hash_iter <string, unsigned>;
112 template class dictionary_hash_iter <string, vector<pd_Function*>*>;
113 template class dictionary_hash_iter <unsigned, heapItem*>;
114 template class dictionary_hash_iter <unsigned, metricDefinitionNode*>;
115 template class dictionary_hash_iter <unsigned, pd_Function*>;
116 template class vector<shared_object *> ;
119 /* ***************************************************************************** */
122 #include "fastInferiorHeap.C"
123 #include "fastInferiorHeapHKs.h"
125 template class vector<genericHK::trampRange>;
126 template class vector<states>;
128 template class fastInferiorHeap<intCounterHK, intCounter>;
129 template class fastInferiorHeap<wallTimerHK, tTimer>;
130 template class fastInferiorHeap<processTimerHK, tTimer>;
131 template class vector< fastInferiorHeap<intCounterHK, intCounter> >;
132 template class vector< fastInferiorHeap<wallTimerHK, tTimer> >;
133 template class vector< fastInferiorHeap<processTimerHK, tTimer> >;
135 #include "baseTable.C"
136 template class baseTable<intCounterHK, intCounter>;
137 template class baseTable<wallTimerHK, tTimer>;
138 template class baseTable<processTimerHK, tTimer>;
140 #include "superVector.C"
141 template class superVector<intCounterHK, intCounter>;
142 template class superVector<wallTimerHK, tTimer>;
143 template class superVector<processTimerHK, tTimer>;
144 template class vector<superVector<intCounterHK, intCounter> *>;
145 template class vector<superVector<wallTimerHK, tTimer> *>;
146 template class vector<superVector<processTimerHK, tTimer> *>;
149 #include "util/src/vectorSet.C"
150 template class vectorSet<process::inferiorRPCtoDo>;
151 template class vectorSet<process::inferiorRPCinProgress>;
154 #include "fastInferiorHeapMgr.h"
155 template class vector<fastInferiorHeapMgr::oneHeapStats>;
158 #ifdef BPATCH_LIBRARY
159 template class dictionary_hash <string, Symbol>;
161 template class dictionary_hash<string, BPatch_type *>;
162 template class dictionary_hash<int, BPatch_thread *>;
164 template class dictionary_hash_iter<string, BPatch_type *>;
165 template class vector<dictionary_hash <string, BPatch_type *>::entry>;
166 template class dictionary_hash_iter<int, BPatch_thread *>;
167 template class vector<dictionary_hash <int, BPatch_thread *>::entry>;
169 template class dictionary_hash <string, vector<string>*>;
171 template class vector<process::inferiorRPCtoDo>;
172 template class vector<process::inferiorRPCinProgress>;