blob: 91e4721c1b9cb17fd73936a649682a7d37463faa [file] [log] [blame]
Reid Spencereb7116b2006-01-10 09:51:48 +00001//===-- TypeSymbolTable.cpp - Implement the TypeSymbolTable class ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencereb7116b2006-01-10 09:51:48 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the TypeSymbolTable class for the VMCore library.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/TypeSymbolTable.h"
15#include "llvm/DerivedTypes.h"
16#include "llvm/ADT/StringExtras.h"
Bill Wendling8f487662006-11-28 02:09:03 +000017#include "llvm/Support/Streams.h"
Jeff Cohendf46b262006-01-11 16:21:23 +000018#include <algorithm>
Reid Spencereb7116b2006-01-10 09:51:48 +000019using namespace llvm;
20
21#define DEBUG_SYMBOL_TABLE 0
22#define DEBUG_ABSTYPE 0
23
24TypeSymbolTable::~TypeSymbolTable() {
25 // Drop all abstract type references in the type plane...
26 for (iterator TI = tmap.begin(), TE = tmap.end(); TI != TE; ++TI) {
27 if (TI->second->isAbstract()) // If abstract, drop the reference...
28 cast<DerivedType>(TI->second)->removeAbstractTypeUser(this);
29 }
30}
31
32std::string TypeSymbolTable::getUniqueName(const std::string &BaseName) const {
33 std::string TryName = BaseName;
34 const_iterator End = tmap.end();
35
36 // See if the name exists
37 while (tmap.find(TryName) != End) // Loop until we find a free
38 TryName = BaseName + utostr(++LastUnique); // name in the symbol table
39 return TryName;
40}
41
42// lookup a type by name - returns null on failure
43Type* TypeSymbolTable::lookup(const std::string& Name) const {
44 const_iterator TI = tmap.find(Name);
45 if (TI != tmap.end())
46 return const_cast<Type*>(TI->second);
47 return 0;
48}
49
Reid Spencereb7116b2006-01-10 09:51:48 +000050// remove - Remove a type from the symbol table...
Reid Spencer78d033e2007-01-06 07:24:44 +000051Type* TypeSymbolTable::remove(iterator Entry) {
Reid Spencereb7116b2006-01-10 09:51:48 +000052 assert(Entry != tmap.end() && "Invalid entry to remove!");
53
54 const Type* Result = Entry->second;
55
56#if DEBUG_SYMBOL_TABLE
57 dump();
Bill Wendlinge8156192006-12-07 01:30:32 +000058 cerr << " Removing Value: " << Result->getName() << "\n";
Reid Spencereb7116b2006-01-10 09:51:48 +000059#endif
60
61 tmap.erase(Entry);
62
63 // If we are removing an abstract type, remove the symbol table from it's use
64 // list...
65 if (Result->isAbstract()) {
66#if DEBUG_ABSTYPE
Bill Wendlinge8156192006-12-07 01:30:32 +000067 cerr << "Removing abstract type from symtab" << Result->getDescription()<<"\n";
Reid Spencereb7116b2006-01-10 09:51:48 +000068#endif
69 cast<DerivedType>(Result)->removeAbstractTypeUser(this);
70 }
71
72 return const_cast<Type*>(Result);
73}
74
75
76// insert - Insert a type into the symbol table with the specified name...
77void TypeSymbolTable::insert(const std::string& Name, const Type* T) {
78 assert(T && "Can't insert null type into symbol table!");
79
Chris Lattner58f84d42007-02-07 05:35:58 +000080 if (tmap.insert(make_pair(Name, T)).second) {
81 // Type inserted fine with no conflict.
82
Reid Spencereb7116b2006-01-10 09:51:48 +000083#if DEBUG_SYMBOL_TABLE
Chris Lattner58f84d42007-02-07 05:35:58 +000084 dump();
85 cerr << " Inserted type: " << Name << ": " << T->getDescription() << "\n";
86#endif
87 } else {
88 // If there is a name conflict...
89
90 // Check to see if there is a naming conflict. If so, rename this type!
91 std::string UniqueName = Name;
92 if (lookup(Name))
93 UniqueName = getUniqueName(Name);
94
95#if DEBUG_SYMBOL_TABLE
96 dump();
97 cerr << " Inserting type: " << UniqueName << ": "
98 << T->getDescription() << "\n";
Reid Spencereb7116b2006-01-10 09:51:48 +000099#endif
100
Chris Lattner58f84d42007-02-07 05:35:58 +0000101 // Insert the tmap entry
102 tmap.insert(make_pair(UniqueName, T));
103 }
Reid Spencereb7116b2006-01-10 09:51:48 +0000104
105 // If we are adding an abstract type, add the symbol table to it's use list.
106 if (T->isAbstract()) {
107 cast<DerivedType>(T)->addAbstractTypeUser(this);
108#if DEBUG_ABSTYPE
Bill Wendlinge8156192006-12-07 01:30:32 +0000109 cerr << "Added abstract type to ST: " << T->getDescription() << "\n";
Reid Spencereb7116b2006-01-10 09:51:48 +0000110#endif
111 }
112}
113
Reid Spencereb7116b2006-01-10 09:51:48 +0000114// This function is called when one of the types in the type plane are refined
115void TypeSymbolTable::refineAbstractType(const DerivedType *OldType,
116 const Type *NewType) {
117
118 // Loop over all of the types in the symbol table, replacing any references
119 // to OldType with references to NewType. Note that there may be multiple
120 // occurrences, and although we only need to remove one at a time, it's
121 // faster to remove them all in one pass.
122 //
123 for (iterator I = begin(), E = end(); I != E; ++I) {
124 if (I->second == (Type*)OldType) { // FIXME when Types aren't const.
125#if DEBUG_ABSTYPE
Bill Wendlinge8156192006-12-07 01:30:32 +0000126 cerr << "Removing type " << OldType->getDescription() << "\n";
Reid Spencereb7116b2006-01-10 09:51:48 +0000127#endif
128 OldType->removeAbstractTypeUser(this);
129
130 I->second = (Type*)NewType; // TODO FIXME when types aren't const
131 if (NewType->isAbstract()) {
132#if DEBUG_ABSTYPE
Bill Wendlinge8156192006-12-07 01:30:32 +0000133 cerr << "Added type " << NewType->getDescription() << "\n";
Reid Spencereb7116b2006-01-10 09:51:48 +0000134#endif
135 cast<DerivedType>(NewType)->addAbstractTypeUser(this);
136 }
137 }
138 }
139}
140
141
142// Handle situation where type becomes Concreate from Abstract
143void TypeSymbolTable::typeBecameConcrete(const DerivedType *AbsTy) {
144 // Loop over all of the types in the symbol table, dropping any abstract
145 // type user entries for AbsTy which occur because there are names for the
146 // type.
147 for (iterator TI = begin(), TE = end(); TI != TE; ++TI)
148 if (TI->second == const_cast<Type*>(static_cast<const Type*>(AbsTy)))
149 AbsTy->removeAbstractTypeUser(this);
150}
151
152static void DumpTypes(const std::pair<const std::string, const Type*>& T ) {
Bill Wendlinge8156192006-12-07 01:30:32 +0000153 cerr << " '" << T.first << "' = ";
Reid Spencereb7116b2006-01-10 09:51:48 +0000154 T.second->dump();
Bill Wendlinge8156192006-12-07 01:30:32 +0000155 cerr << "\n";
Reid Spencereb7116b2006-01-10 09:51:48 +0000156}
157
158void TypeSymbolTable::dump() const {
Bill Wendlinge8156192006-12-07 01:30:32 +0000159 cerr << "TypeSymbolPlane: ";
Reid Spencereb7116b2006-01-10 09:51:48 +0000160 for_each(tmap.begin(), tmap.end(), DumpTypes);
161}
162
163// vim: sw=2 ai