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.
43 * Generate all the templates in one file.
48 * This file (and the other templatesXXX.C files) exist for a single purpose:
49 * to explicitly instantiate code for all of the template classes we use.
50 * Although the C++ standard dictates that compilers should automatically
51 * instantiate all templates (and leaves the details to the implementation),
52 * g++ 2.7.2, which we currently use, doesn't do that correctly. So instead,
53 * we use a special compiler switch (-fno-implicit-templates or
54 * -fexternal-templates) which tells g++ not to try and automatically
55 * instantiate any templates. We manually instantiate the templates in this
56 * and the other templatesXXX.C files. If you are porting Paradyn, and are
57 * using a compiler that correctly and automatically instantiates its
58 * templates, then you don't need to use any of the templatesXXX.C files (so
59 * remove their entries from the appropriate make.module.tmpl file).
64 #pragma implementation "Pair.h"
65 #include "util/h/Pair.h"
67 #pragma implementation "Vector.h"
68 #include "util/h/Vector.h"
70 #pragma implementation "Symbol.h"
71 #include "util/h/Symbol.h"
73 #include "util/h/String.h"
75 #include "dyninstAPI/src/symtab.h"
76 #include "dyninstAPI/src/process.h"
77 #include "dyninstAPI/src/inst.h"
78 #include "dyninstAPI/src/instP.h"
79 #include "dyninstAPI/src/dyninstP.h"
80 #include "dyninstAPI/src/ast.h"
81 #include "dyninstAPI/src/util.h"
82 #include "util/h/Object.h"
83 #if !defined(BPATCH_LIBRARY) || defined(sparc_sun_sunos4_1_3) || defined(sparc_sun_solaris2_4)
84 #include "dyninstAPI/src/FunctionExpansionRecord.h"
87 template class vector<pdThread *>;
88 template class vector<reg>;
89 template class vector<bool>;
90 template class vector<AstNode>;
91 template class vector<AstNode *>;
92 template class vector<Symbol*>;
93 template class vector<Symbol>;
94 template class vector<float>;
95 template class vector<heapItem*>;
96 template class vector<image*>;
97 template class vector<instMapping*>;
98 template class vector<instPoint *>;
99 template class vector<const instPoint *>;
100 template class vector<int>;
101 template class vector<instruction>;
102 #ifndef BPATCH_LIBRARY
103 template class vector<metricDefinitionNode *>;
105 template class vector<module *>;
106 template class vector<pdmodule *>;
107 template class vector<function_base*>;
108 template class vector<pd_Function*>;
109 template class vector<process*>;
110 template class vector<string>;
111 template class vector<sym_data>;
112 template class vector<unsigned>;
113 template class vector<disabledItem>;
114 template class vector<unsigVecType>;
115 template class vector<vector<string> >;
116 template class vector<double>;
117 template class vector<point *>;
118 template class vector<instInstance *>;
119 template class vector<returnInstance *>; //XXX
120 template class vector<relocatedFuncInfo *>;
121 template class vector<relocationEntry>;
122 #if !defined(BPATCH_LIBRARY) || defined(sparc_sun_sunos4_1_3) || defined(sparc_sun_solaris2_4)
123 template class vector<FERNode>;