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.
42 #ifndef _BPatch_module_h_
43 #define _BPatch_module_h_
45 #include "BPatch_dll.h"
46 #include <BPatch_Vector.h>
47 #include <BPatch_sourceObj.h>
52 class BPatch_function;
53 class BPatch_typeCollection;
54 class BPatch_builtInTypeCollection;
55 class LineInformation;
57 extern BPatch_builtInTypeCollection * builtInTypes;
60 class BPATCH_DLL_EXPORT BPatch_module: public BPatch_sourceObj {
63 friend class BPatch_function;
64 friend class BPatch_image;
65 friend class BPatch_thread;
66 friend class BPatch_flowGraph;
67 friend class InstrucIter;
72 BPatch_Vector<BPatch_function *> * BPfuncs;
73 LineInformation* lineInformation;
76 // The following functions are for internal use by the library only:
77 BPatch_module(process *_proc, pdmodule *_mod, BPatch_image *img);
78 BPatch_module() : mod(NULL), img(NULL), BPfuncs(NULL),lineInformation(NULL) {
79 _srcType = BPatch_sourceModule;
82 virtual ~BPatch_module();
84 bool getSourceObj(BPatch_Vector<BPatch_sourceObj *>&);
85 BPatch_sourceObj *getObjParent();
86 bool getVariables(BPatch_Vector<BPatch_variableExpr *> &);
88 BPatch_typeCollection *moduleTypes;
90 // End functions for internal use only
92 char *getName(char *buffer, int length);
93 char *getFullName(char *buffer, int length);
95 BPatch_Vector<BPatch_function *> *getProcedures();
97 BPatch_function *findFunction(const char * name);
99 // parse stab stuff when needed
102 bool isSharedLib() const;
104 char *parseStabStringSymbol(int line, char *stabstr, void *stabptr);
106 //function to get addresses for a line of the module
107 bool getLineToAddr(unsigned short lineNo,
108 BPatch_Vector<unsigned long>& buffer,
109 bool exactMatch = true);
111 LineInformation* getLineInformation();
113 #ifdef IBM_BPATCH_COMPAT
114 bool getLineNumbers(unsigned int &start, unsigned int &end);
115 char *getUniqueString(char *buffer, int length);
117 char *sharedLibraryName(char *buffer, int length) { getFullName(buffer, length); return buffer;}
118 char *getSharedLibName(char *buffer, int length) { getFullName(buffer, length); return buffer;}
119 int getSharedLibType();
120 int getBindingType();
127 #ifdef IBM_BPATCH_COMPAT
128 #define BPatch_sharedPublic 1
129 #define BPatch_sharedPrivate 2
130 #define BPatch_nonShared 3
132 #define BPatch_static 1
133 #define BPatch_dynamic 2
137 #endif /* _BPatch_module_h_ */