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 #include "BPatch_type.h"
48 * BPatch_type::BPatch_type
50 * Constructor for BPatch_type. Creates a type object representing a type
51 * with the features given in the parameters.
53 BPatch_type::BPatch_type(const char *_name, bool _nullType) :
54 nullType(_nullType), name(_name)
61 * BPatch_type::isCompatible
63 * Returns true of the type is compatible with the other specified type, false
66 * oType The other type to check for compatibility.
68 bool BPatch_type::isCompatible(const BPatch_type &otype)
70 if (nullType || otype.nullType)
73 // XXX Just compare names for now, we'll have to fix this later.
74 if (name == otype.name) return true;
80 * BPatch_typeCollection::~BPatch_typeCollection
82 * Destructor for BPatch_typeCollection. Deletes all type objects that have
83 * been inserted into the collection.
85 BPatch_typeCollection::~BPatch_typeCollection()
87 dictionary_hash_iter<string, BPatch_type *> ti(typesByName);
92 while (ti.next(name, type))
98 * BPatch_typeCollection::findType
100 * Retrieve a pointer to a BPatch_type object representing the named type from
101 * the collection. If no such type exists and no such type can be derived
102 * from existing types, then the function returns NULL.
104 * name The name of the type to look up.
106 BPatch_type *BPatch_typeCollection::findType(const char *name)
108 return typesByName[name];
113 * BPatch_typeCollection::addType
115 * Add a new type to the type collection. Note that when a type is added to
116 * the collection, it becomes the collection's responsibility to delete it
117 * when it is no longer needed. For one thing, this means that a type
118 * allocated on the stack should *NEVER* be put into a BPatch_typeCollection.
120 void BPatch_typeCollection::addType(BPatch_type *type)
122 typesByName[type->getName()] = type;